diff --git a/.gitignore b/.gitignore index a08f648c..b01ddf27 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,6 @@ notebooks/.ipynb_checkpoints .vscode /docs/_build *.log +metadata_dump/ +notebooks/output_dir/ +output_dir/ diff --git a/app.py b/app.py index 15f29b8f..929087a9 100644 --- a/app.py +++ b/app.py @@ -58,8 +58,19 @@ from profiles.bioschemas_shape_gen import validate_any_from_microdata from metrics.util import SOURCE from metrics.F1B_Impl import F1B_Impl +from metrics.F1B_Impl import F1B_Impl from urllib.parse import urlparse +from profiles.Profile import Profile +from profiles.ProfileFactory import ( + ProfileFactory, + find_conformsto_subkg, + load_profiles, + update_profiles, + evaluate_profile_with_conformsto, + evaluate_profile_from_type, + dyn_evaluate_profile_with_conformsto, +) import time import atexit @@ -126,6 +137,9 @@ def index(): # Prevent DEV logger from output dev_logger.propagate = False + + # Update bioschemas profile when starting server in production + # update_profiles() else: app.config.from_object("config.DevelopmentConfig") @@ -213,6 +227,8 @@ def index(): {"name": "a2", "category": "A"}, ] +# Load bs profils dict (from github if not already in local) +load_profiles() METRICS = {} # json_metrics = test_metric.getMetrics() @@ -307,6 +323,8 @@ def display_vocab_status(): scheduler.add_job( func=F1B_Impl.update_identifiers_org_dump, trigger="interval", seconds=604800 ) +scheduler.add_job(func=update_profiles, trigger="interval", seconds=604800) + scheduler.start() # Shut down the scheduler when exiting the app @@ -471,10 +489,16 @@ def get(self): web_res = WebResource(url) - results = [] - for key in METRICS_CUSTOM.keys(): - metric = METRICS_CUSTOM[key] + metrics_collection = [] + for metric_key in METRICS_CUSTOM.keys(): + metric = METRICS_CUSTOM[metric_key] metric.set_web_resource(web_res) + metrics_collection.append(metric) + + # metrics_collection = FAIRMetricsFactory.get_FC_impl(web_res) + + results = [] + for metric in metrics_collection: result = metric.evaluate() data = { "metric": result.get_metrics(), @@ -610,6 +634,7 @@ def get(self): return check_kg(kg, True) +# TODO update method @fc_inspect_namespace.route("/bioschemas_validation") class InspectBioschemas(Resource): @fc_inspect_namespace.expect(reqparse) @@ -620,10 +645,64 @@ def get(self): web_res = WebResource(url) kg = web_res.get_rdf() - results = validate_any_from_KG(kg) + results = {} + + # Evaluate only profile with conformsTo + results_conformsto = dyn_evaluate_profile_with_conformsto(kg) + + # Try to match and evaluate all found corresponding profiles + results_type = evaluate_profile_from_type(kg) + + for result_key in results_conformsto.keys(): + results[result_key] = results_conformsto[result_key] + + for result_key in results_type.keys(): + if result_key not in results: + results[result_key] = results_type[result_key] + + # TODO Try similarity match her for profiles that are not matched + return results +@fc_inspect_namespace.route("/bioschemas_validation_by_conformsto") +class InspectBioschemasConformsTo(Resource): + @fc_inspect_namespace.expect(reqparse) + def get(self): + """Validate an RDF JSON-LD graph against Bioschemas profiles using dct:conformsTo""" + args = reqparse.parse_args() + url = args["url"] + + web_res = WebResource(url) + kg = web_res.get_rdf() + + # Evaluate only profile with conformsTo + results_conformsto = dyn_evaluate_profile_with_conformsto(kg) + + # TODO Try similarity match her for profiles that are not matched + + return results_conformsto + + +@fc_inspect_namespace.route("/bioschemas_validation_by_types") +class InspectBioschemasTypesMatch(Resource): + @fc_inspect_namespace.expect(reqparse) + def get(self): + """Validate an RDF JSON-LD graph against Bioschemas profiles using types""" + args = reqparse.parse_args() + url = args["url"] + + web_res = WebResource(url) + kg = web_res.get_rdf() + + # Try to match and evaluate all found corresponding profiles + results_type = evaluate_profile_from_type(kg) + + # TODO Try similarity match her for profiles that are not matched + + return results_type + + def list_routes(): return ["%s" % rule for rule in app.url_map.iter_rules()] @@ -1522,6 +1601,49 @@ def check_kg_shape(data): # print(results) +@DeprecationWarning +@socketio.on("check_kg_shape_old") +def check_kg_shape_old(data): + print("shape validation started") + sid = request.sid + print(sid) + kg = KGS[sid] + + if not kg: + print("cannot access current knowledge graph") + elif len(kg) == 0: + print("cannot validate an empty knowledge graph") + + results = validate_any_from_KG(kg) + emit("done_check_shape", results) + + +def evaluate_bioschemas_profiles(kg): + # A instancier au lancement du serveur et actualiser lors d'updates + # profiles = ProfileFactory.create_all_profiles_from_specifications() + + results = {} + + # Evaluate only profile with conformsTo + results_conformsto = dyn_evaluate_profile_with_conformsto(kg) + + # Try to match and evaluate all found corresponding profiles + results_type = evaluate_profile_from_type(kg) + + for result_key in results_conformsto.keys(): + results[result_key] = results_conformsto[result_key] + + for result_key in results_type.keys(): + if result_key not in results: + results[result_key] = results_type[result_key] + + # TODO Try similarity match her for profiles that are not matched + + print(results.keys()) + + return results + + @socketio.on("check_kg_shape_2") def check_kg_shape_2(data): print("shape validation started") @@ -1534,10 +1656,57 @@ def check_kg_shape_2(data): elif len(kg) == 0: print("cannot validate an empty knowledge graph") - results = validate_any_from_KG(kg) + results = evaluate_bioschemas_profiles(kg) + + # results = validate_any_from_KG(kg) + emit("done_check_shape", results) +def update_bioschemas_valid(func): + @functools.wraps(func) + def wrapper_decorator(*args, **kwargs): + # Do something before + start_time = time.time() + + value = func(*args, **kwargs) + + # Do something after + elapsed_time = round((time.time() - start_time), 2) + logging.info(f"Bioschemas validation processed in {elapsed_time} s") + # emit("done_check_shape", res, namespace="/validate_bioschemas") + # socketio.emit("done_check_shape", res, namespace="/inspect") + return value + + return wrapper_decorator + + +@app.route("/bioschemas_validation") +@update_bioschemas_valid +def validate_bioschemas(): + uri = request.args.get("url") + logging.info(f"Validating Bioschemas markup for {uri}") + + kg = WebResource(uri).get_rdf() + print(len(kg)) + + results = evaluate_bioschemas_profiles(kg) + + # res, kg = validate_any_from_microdata(input_url=uri) + + m = [] + return render_template( + "bioschemas.html", + results=results, + kg=kg, + f_metrics=m, + sample_data=sample_resources, + title="Inspect", + subtitle="to enhance metadata quality", + jld=buildJSONLD(), + ) + + ####################################### ####################################### @@ -1707,45 +1876,6 @@ def base_metrics(): # return response -def update_bioschemas_valid(func): - @functools.wraps(func) - def wrapper_decorator(*args, **kwargs): - # Do something before - start_time = time.time() - - value = func(*args, **kwargs) - - # Do something after - elapsed_time = round((time.time() - start_time), 2) - logging.info(f"Bioschemas validation processed in {elapsed_time} s") - # emit("done_check_shape", res, namespace="/validate_bioschemas") - # socketio.emit("done_check_shape", res, namespace="/inspect") - return value - - return wrapper_decorator - - -@app.route("/validate_bioschemas") -@update_bioschemas_valid -def validate_bioschemas(): - uri = request.args.get("uri") - logging.debug(f"Validating Bioschemas markup fr {uri}") - - res, kg = validate_any_from_microdata(input_url=uri) - - m = [] - return render_template( - "bioschemas.html", - results=res, - kg=kg, - f_metrics=m, - sample_data=sample_resources, - title="Inspect", - subtitle="to enhance metadata quality", - jld=buildJSONLD(), - ) - - @app.route("/inspect") def kg_metrics_2(): # m = [{ "name": "i1", @@ -1867,6 +1997,10 @@ def get_result_style(result) -> str: sys.exit(1) args = parser.parse_args() + print(args) + + if args.update: + print("UPDATE BS her") if args.debug: logging.basicConfig( @@ -1901,20 +2035,10 @@ def get_result_style(result) -> str: web_res = WebResource(url) metrics_collection = [] - metrics_collection.append(FAIRMetricsFactory.get_F1A(web_res)) - metrics_collection.append(FAIRMetricsFactory.get_F1B(web_res)) - metrics_collection.append(FAIRMetricsFactory.get_F2A(web_res)) - metrics_collection.append(FAIRMetricsFactory.get_F2B(web_res)) - metrics_collection.append(FAIRMetricsFactory.get_I1(web_res)) - metrics_collection.append(FAIRMetricsFactory.get_I1A(web_res)) - metrics_collection.append(FAIRMetricsFactory.get_I1B(web_res)) - metrics_collection.append(FAIRMetricsFactory.get_I2(web_res)) - metrics_collection.append(FAIRMetricsFactory.get_I2A(web_res)) - metrics_collection.append(FAIRMetricsFactory.get_I2B(web_res)) - metrics_collection.append(FAIRMetricsFactory.get_I3(web_res)) - metrics_collection.append(FAIRMetricsFactory.get_R11(web_res)) - metrics_collection.append(FAIRMetricsFactory.get_R12(web_res)) - metrics_collection.append(FAIRMetricsFactory.get_R13(web_res)) + for metric_key in METRICS_CUSTOM.keys(): + metric = METRICS_CUSTOM[metric_key] + metric.set_web_resource(web_res) + metrics_collection.append(metric) if args.bioschemas: logging.info("Bioschemas eval") diff --git a/bioschemas-dump.ttl b/bioschemas-dump.ttl index 296f1b59..bc48749f 100644 --- a/bioschemas-dump.ttl +++ b/bioschemas-dump.ttl @@ -1,49 +1,13 @@ @prefix biotools: . @prefix bsc: . @prefix bsct: . -@prefix dcterms: . +@prefix dct: . @prefix edam: . @prefix sc: . -@prefix schema: . @prefix xsd: . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3169, - edam:topic_3295, - edam:topic_3474 ; - sc:citation , - "pubmed:31742318" ; - sc:description """An Integrative Approach for Fine-Mapping Chromatin Interactions. - -Computational method for fine-mapping chromatin interactions, e.g., Hi-C. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CNN', 'Hi-C'""" ; - sc:featureList edam:operation_3215, - edam:operation_3222, - edam:operation_3439 ; - sc:license "MIT" ; - sc:name "-CNN" ; - sc:url "https://github.com/ernstlab/X-CNN" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0199, - edam:topic_2229, - edam:topic_3379 ; - sc:citation , - "pubmed:31589304" ; - sc:description """a graph-algorithm for comprehensive identification of vector genomic insertion sites. - -SUMMARY:Retroviruses and their vector derivatives integrate semi-randomly in the genome of host cells and are inherited by their progeny as stable genetic marks. The retrieval and mapping of the sequences flanking the virus-host DNA junctions allows the identification of insertion sites in gene therapy or virally infected patients, essential for monitoring the evolution of genetically modified cells in vivo. However, since ∼30% of insertions land in low complexity or repetitive regions of the host cell genome, they cannot be correctly assigned and are currently discarded, limiting the accuracy and predictive power of clonal tracking studies. Here, we present γ-TRIS, a new graph-based genome-free alignment tool for identifying insertion sites even if embedded in low complexity regions. By using γ-TRIS to reanalyze clinical studies, we observed improvements in clonal quantification and tracking""" ; - sc:featureList edam:operation_2422, - edam:operation_3198, - edam:operation_3799 ; - sc:name "-TRIS" ; - sc:url "https://bitbucket.org/bereste/g-tris" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -52,9 +16,18 @@ SUMMARY:Retroviruses and their vector derivatives integrate semi-randomly in the edam:topic_3325, edam:topic_3365, edam:topic_3473 ; - sc:citation , + sc:citation , + , + , + , + "pmcid:PMC3042601", + "pmcid:PMC3498066", + "pmcid:PMC4617611", "pmcid:PMC4750478", - "pubmed:26432245" ; + "pubmed:20981092", + "pubmed:23128226", + "pubmed:26432245", + "pubmed:26432246" ; sc:description "The 1000 Genomes Project ran between 2008 and 2015, creating a deep catalogue of human genetic variation. The International Genome Sample Resource (IGSR) was set up to ensure the future usability and accessibility of this data." ; sc:featureList edam:operation_0306, edam:operation_3196, @@ -71,10 +44,10 @@ SUMMARY:Retroviruses and their vector derivatives integrate semi-randomly in the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3007" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102 ; sc:author "Ensembl team" ; @@ -93,10 +66,10 @@ SUMMARY:Retroviruses and their vector derivatives integrate semi-randomly in the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence coordinates" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Ensembl Genomes team" ; @@ -116,14 +89,12 @@ SUMMARY:Retroviruses and their vector derivatives integrate semi-randomly in the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2610" ; - sc:name "Ensembl ID" ; - sc:sameAs "http://edamontology.org/data_2610" ] ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:name "Ensembl ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2610" ; - sc:name "Ensembl ID" ; - sc:sameAs "http://edamontology.org/data_2610" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:name "Ensembl ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3345 ; sc:author "Ensembl team" ; @@ -143,10 +114,10 @@ SUMMARY:Retroviruses and their vector derivatives integrate semi-randomly in the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199 ; sc:author "Ensembl Genomes team", @@ -168,10 +139,10 @@ SUMMARY:Retroviruses and their vector derivatives integrate semi-randomly in the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199 ; @@ -189,7 +160,7 @@ SUMMARY:Retroviruses and their vector derivatives integrate semi-randomly in the biotools:primaryContact "Ensembl Genomes webteam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0593, @@ -209,7 +180,7 @@ SUMMARY:Retroviruses and their vector derivatives integrate semi-randomly in the "J. A. Vila" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3534 ; sc:citation "pubmed:25735772" ; @@ -224,31 +195,8 @@ SUMMARY:Retroviruses and their vector derivatives integrate semi-randomly in the sc:url "http://www.compbio.dundee.ac.uk/1433pred" ; biotools:primaryContact "The Barton Group" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_3277, - edam:topic_3697 ; - sc:citation , - "pmcid:PMC6894433", - "pubmed:31824766" ; - sc:description """The impact of storage conditions on human stool 16S rRNA microbiome composition and diversity. - -Background:Multiple factors can influence stool sample integrity upon sample collection. Preservation of faecal samples for microbiome studies is therefore an important step, particularly in tropical regions where resources are limited and high temperatures may significantly influence microbiota profiles. Freezing is the accepted standard to preserve faecal samples however, cold chain methods are often unfeasible in fieldwork scenarios particularly in low and middle-income countries and alternatives are required. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'stool', 'time-to-freezing', 'microbiome' (bio.tools/microbiome), 'fieldwork'""" ; - sc:featureList edam:operation_3192, - edam:operation_3435, - edam:operation_3799 ; - sc:name "16S" ; - sc:url "https://support.illumina.com/documents/documentation/chemistry_documentation/16s/16s-metagenomic-library-prep-guide-15044223-b.pdf" . - - a sc:SoftwareApplication ; - sc:description "As a leading provider of NGS services and a partner of Illumina, CD Genomics offers a portfolio of solutions for metagenomics sequencing. 16S/18S/ITS amplicon sequencing is characterized by cost-efficiency, high-speed and practicability to help you identify and investigate the microbial community. With over 10 years of experience, we can totally meet your project requirements and budgets in the exploration of microbial biodiversity. If you are interested in what CD Genomics can do with the 16S/18S/ITS Amplicon Sequencing, please do not hesitate to contact us. We are more than happy to be of assistance!" ; - sc:name "16S Amplicon Sequencing" ; - sc:url "https://www.cd-genomics.com/16S-18S-ITS-Amplicon-Sequencing.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -264,7 +212,7 @@ Background:Multiple factors can influence stool sample integrity upon sample col biotools:primaryContact "MetaBioSys Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -278,20 +226,15 @@ Background:Multiple factors can influence stool sample integrity upon sample col sc:url "http://16spip.mypathogen.cn/" ; biotools:primaryContact "Wen Zhang" . - a sc:SoftwareApplication ; - sc:description "As a leading provider of NGS services and a partner of Illumina, CD Genomics offers a portfolio of solutions for metagenomics sequencing. 16S/18S/ITS amplicon sequencing is characterized by cost-efficiency, high-speed and practicability to help you identify and investigate the microbial community. With over 10 years of experience, we can totally meet your project requirements and budgets in the exploration of microbial biodiversity. If you are interested in what CD Genomics can do with the 16S/18S/ITS Amplicon Sequencing, please do not hesitate to contact us. We are more than happy to be of assistance!" ; - sc:name "18S Amplicon Sequencing" ; - sc:url "https://www.cd-genomics.com/16S-18S-ITS-Amplicon-Sequencing.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Cloud-based platform. Providing bioinformatic analysis of bacteria. Species identification (16S, WGS), typing (MLST, cgMLST, SNP), antibiotic resistance profiling, virulence. Possibility to add metadata for transmission analysis." ; sc:name "1928 Diagnostics" ; sc:softwareHelp ; sc:url "https://www.1928diagnostics.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0634, @@ -307,18 +250,8 @@ Background:Multiple factors can influence stool sample integrity upon sample col sc:url "https://19andme.covid19.mathematica.org" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0194, - edam:topic_0780 ; - sc:citation ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE '1KP capstone', 'WGDs' | Inferring putative ancient whole genome duplications in the 1000 Plants (1KP) initiative | Polyploidy or whole genome duplications (WGDs) repeatedly occurred during green plant evolution. To examine the evolutionary history of green plants in a phylogenomic framework, the 1KP project sequenced over 1000 transcriptomes across the Viridiplantae. The 1KP project provided a unique opportunity to study the distribution and occurrence of WGDs across the green plants. In the 1KP capstone analyses, we used a total evidence approach that combined inferences of WGDs from Ks and phylogenomic methods to infer and place ancient WGDs. Overall, 244 putative ancient WGDs were inferred across the Viridiplantae. Here, we describe these analyses and evaluate the consistency of the WGD inferences by comparing them to evidence from published syntenic analyses of plant genome assemblies" ; - sc:featureList edam:operation_3891 ; - sc:name "1KP" ; - sc:url "https://bitbucket.org/barkerlab/1kp/src/master/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -335,7 +268,7 @@ Background:Multiple factors can influence stool sample integrity upon sample col biotools:primaryContact "Michael Chan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0199, @@ -355,48 +288,8 @@ Background:Multiple factors can influence stool sample integrity upon sample col sc:name "2-kupl" ; sc:url "https://github.com/yunfengwang0317/2-kupl" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3382, - edam:topic_3474, - edam:topic_3794 ; - sc:citation , - "pmcid:PMC6919559", - "pubmed:31636459" ; - sc:description """Nucleus segmentation across imaging experiments. - -Deep Retina 3th place solution to Kaggle's 2018 Data Science Bowl. - -This solution is based on Matterport's Mask_RCNN implementation on keras/tensorflow. Please look at the original repository (https://github.com/matterport/Mask_RCNN) for specific details. This is an implementation of Mask R-CNN on Python 3, Keras, and TensorFlow. The model generates bounding boxes and segmentation masks for each instance of an object in the image. It's based on Feature Pyramid Network (FPN) and a ResNet101 backbone. I have used the pretrained COCO weights as the starting point for my training on the nuclei segmentation dataset. - -Find the nuclei in divergent images to advance medical discovery. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Nucleus segmentation across imaging experiments', 'Bowl', 'configuration-free', 'deep-learning-based'""" ; - sc:featureList edam:operation_3192, - edam:operation_3436, - edam:operation_3443, - edam:operation_3552, - edam:operation_3553 ; - sc:name "2018" ; - sc:url "https://www.kaggle.com/c/data-science-bowl-2018" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0601, - edam:topic_3520 ; - sc:citation , - "pmcid:PMC6824964", - "pubmed:31556620" ; - sc:description "> MEDIUM CONFIDENCE! | A Case Study in Characterizing an Unknown Protein Sample | YPIC challenge 2018 data analysis" ; - sc:featureList edam:operation_0417, - edam:operation_0476, - edam:operation_3644 ; - sc:license "Apache-2.0" ; - sc:name "2018 YPIC Challenge" ; - sc:url "https://github.com/bittremieux/ypic_challenge_2018" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3324, @@ -411,7 +304,7 @@ Find the nuclei in divergent images to advance medical discovery. sc:url "http://www.combio-lezhang.online/2019ncov/home.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0622, @@ -436,31 +329,16 @@ Find the nuclei in divergent images to advance medical discovery. sc:url "https://github.com/KarchinLab/2020plus" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_2640, - edam:topic_2840 ; - sc:citation "pubmed:31305969" ; - sc:description """A Perinatal and Chronic Extended-Dose-Range Study of Bisphenol A in Rats. - -Bisphenol A (BPA, CAS #80-05-7) is a high-production-volume industrial chemical used as a monomer for polycarbonate plastics and epoxy resins that have broad applications in consumer products, including storage containers for foods and beverages and medical devices. The potential toxicity resulting from chronic exposure to BPA as an indirect food additive is the concern addressed in this study. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ug BPA kg bw day', 'ug EE2 kg bw day', 'EE2 kg bw day dose', 'stop-dose males terminal stop-dose BPA'""" ; - sc:name "25,000 ug BPA kg bw" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31305969" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1475" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2992" ; - sc:name "Protein structure image" ; - sc:sameAs "http://edamontology.org/data_2992" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2992" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Protein structure image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_1317 ; @@ -475,7 +353,7 @@ Bisphenol A (BPA, CAS #80-05-7) is a high-production-volume industrial chemical sc:url "https://2dprots.ncbr.muni.cz/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0166, @@ -499,8 +377,29 @@ Bisphenol A (BPA, CAS #80-05-7) is a high-production-volume industrial chemical biotools:primaryContact "Elliot Drew", "Robert W. Janes" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2815, + edam:topic_3318, + edam:topic_3520 ; + sc:citation , + , + "pmcid:PMC5103804", + "pmcid:PMC8832274", + "pubmed:27634801", + "pubmed:35084336" ; + sc:description "2B-Alert Web, an open-access tool for predicting neurobehavioral performance, which accounts for the effects of sleep/wake schedules, time of day, and caffeine consumption, while incorporating the latest scientific findings in sleep restriction, sleep extension, and recovery sleep." ; + sc:featureList edam:operation_2426 ; + sc:isAccessibleForFree true ; + sc:name "2B-Alert Web" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://2b-alert-web.bhsai.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -519,7 +418,7 @@ Bisphenol A (BPA, CAS #80-05-7) is a high-production-volume industrial chemical biotools:primaryContact "Pavel Paunov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154 ; @@ -538,38 +437,31 @@ Bisphenol A (BPA, CAS #80-05-7) is a high-production-volume industrial chemical a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2091" ; - sc:name "Accession" ; - sc:sameAs "http://edamontology.org/data_2091" ], + sc:additionalType "http://edamontology.org/data_2091" ; + sc:name "Accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1528" ; - sc:name "Protein isoelectric point" ; - sc:sameAs "http://edamontology.org/data_1528" ], + sc:additionalType "http://edamontology.org/data_1519" ; + sc:name "Peptide molecular weights" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2373" ; - sc:name "Spot ID" ; - sc:sameAs "http://edamontology.org/data_2373" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1519" ; - sc:name "Peptide molecular weights" ; - sc:sameAs "http://edamontology.org/data_1519" ], + sc:additionalType "http://edamontology.org/data_2373" ; + sc:name "Spot ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_1528" ; + sc:name "Protein isoelectric point" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0942" ; - sc:name "2D PAGE image" ; - sc:sameAs "http://edamontology.org/data_0942" ], + sc:additionalType "http://edamontology.org/data_0942" ; + sc:name "2D PAGE image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1528" ; - sc:name "Protein isoelectric point" ; - sc:sameAs "http://edamontology.org/data_1528" ], + sc:additionalType "http://edamontology.org/data_0897" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0897" ; - sc:name "Protein property" ; - sc:sameAs "http://edamontology.org/data_0897" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1528" ; + sc:name "Protein isoelectric point" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -585,7 +477,7 @@ Bisphenol A (BPA, CAS #80-05-7) is a high-production-volume industrial chemical biotools:primaryContact "Luca Bini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0082, @@ -607,7 +499,7 @@ Bisphenol A (BPA, CAS #80-05-7) is a high-production-volume industrial chemical biotools:primaryContact "Juliana S.. Bernardes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Algorithms for 2D AR and 2D ARMA parameters estimation." ; sc:isAccessibleForFree true ; @@ -620,7 +512,7 @@ Bisphenol A (BPA, CAS #80-05-7) is a high-production-volume industrial chemical biotools:primaryContact "Simona Maggio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -634,7 +526,7 @@ Bisphenol A (BPA, CAS #80-05-7) is a high-production-volume industrial chemical sc:url "http://2de-pattern.pnpi.nrcki.ru" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -654,7 +546,7 @@ Bisphenol A (BPA, CAS #80-05-7) is a high-production-volume industrial chemical sc:url "https://github.com/zky0708/2DImpute" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0634, @@ -672,10 +564,9 @@ Bisphenol A (BPA, CAS #80-05-7) is a high-production-volume industrial chemical a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3424" ; - sc:name "Raw image" ; - sc:sameAs "http://edamontology.org/data_3424" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3424" ; + sc:name "Raw image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0611, edam:topic_1317 ; @@ -692,7 +583,7 @@ Bisphenol A (BPA, CAS #80-05-7) is a high-production-volume industrial chemical sc:url "http://www.2dx.unibas.ch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053 ; @@ -708,7 +599,7 @@ Bisphenol A (BPA, CAS #80-05-7) is a high-production-volume industrial chemical biotools:primaryContact "Team MacLean" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0798, edam:topic_3512 ; @@ -722,7 +613,7 @@ Bisphenol A (BPA, CAS #80-05-7) is a high-production-volume industrial chemical sc:url "https://github.com/JianyuanLin/2lpiRNApred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3170, @@ -741,7 +632,7 @@ Bisphenol A (BPA, CAS #80-05-7) is a high-production-volume industrial chemical sc:url "https://github.com/bartongroup/2passtools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0659, @@ -763,7 +654,7 @@ Genomic island (GI) is a cluster of genes in prokaryotic genomes that have proba sc:url "http://bioinfo.zstu.edu.cn/2SigFinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3176 ; sc:citation , @@ -777,7 +668,7 @@ Genomic island (GI) is a cluster of genes in prokaryotic genomes that have proba sc:url "http://3cdb.big.ac.cn/index.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , @@ -789,7 +680,7 @@ Genomic island (GI) is a cluster of genes in prokaryotic genomes that have proba sc:url "https://github.com/xulabs/aitom/tree/master/aitom/classify/deep/supervised/cnn/domain_adaptation_adversarial" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -805,7 +696,7 @@ Genomic island (GI) is a cluster of genes in prokaryotic genomes that have proba sc:url "http://3d-cardiomics.erc.monash.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2814, @@ -821,7 +712,7 @@ Genomic island (GI) is a cluster of genes in prokaryotic genomes that have proba sc:url "https://github.com/ishidalab-titech/3DCNN_MQA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -839,7 +730,7 @@ Genomic island (GI) is a cluster of genes in prokaryotic genomes that have proba sc:url "http://dna.cs.miami.edu/3DChrom/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0122, edam:topic_3173 ; @@ -856,7 +747,7 @@ Genomic island (GI) is a cluster of genes in prokaryotic genomes that have proba biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382, @@ -875,29 +766,8 @@ Genomic island (GI) is a cluster of genes in prokaryotic genomes that have proba "Windows" ; sc:url "https://github.com/ElisaYork/3DMorph" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0160, - edam:topic_0196, - edam:topic_0204, - edam:topic_0621, - edam:topic_3169 ; - sc:citation , - "pubmed:31605131" ; - sc:description """Studying 3D genome evolution using genomic sequence. - -MOTIVATION:The 3D genome is essential to numerous key processes such as the regulation of gene expression and the replication-timing program. In vertebrates, chromatin looping is often mediated by CTCF, and marked by CTCF motif pairs in convergent orientation. Comparative Hi-C recently revealed that chromatin looping evolves across species. However, Hi-C experiments are complex and costly, which currently limits their use for evolutionary studies over a large number of species. RESULTS:Here, we propose a novel approach to study the 3D genome evolution in vertebrates using the genomic sequence only, e.g. without the need for Hi-C data. The approach is simple and relies on comparing the distances between convergent and divergent CTCF motifs by computing a ratio we named the 3D ratio or "3DR". - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'PhyloCTCFLooping', 'CTCF', 'looping', 'AVAILABILITY:The'""" ; - sc:featureList edam:operation_0481, - edam:operation_0525, - edam:operation_3745 ; - sc:name "3DR" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31605131" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3315, @@ -910,36 +780,8 @@ Related to bio.tools/fossilj.""" ; sc:softwareHelp ; sc:url "https://www.slicer.org/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3303, - edam:topic_3452 ; - sc:citation , - "pubmed:31843280" ; - sc:description """In-House Surgeon-Led Virtual Surgical Planning for Maxillofacial Reconstruction. - -PURPOSE:Virtual surgical planning (VSP) and custom fabricated cutting guides for maxillofacial reconstruction have been shown to improve the accuracy of bony reconstruction and overall surgical efficiency and decrease the ischemia time. Our aim was to describe an in-house VSP technique for maxillofacial reconstructive procedures. MATERIALS AND METHODS:We used 2 free software applications. 3DSlicer (available at: http: www. 3dslicer.org) was used to extract the bones of interest for the recipient and the donor sites from the computed tomography scan's DICOM (digital imaging and communications in medicine) data. The Autodesk Meshmixer (Autodesk Inc, San Rafael, CA) was used to perform VSP and fabrication of the cutting guides. - -||| HOMEPAGE BROKEN!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'VSP', 'in-house VSP', 'maxillofacial'""" ; - sc:featureList edam:operation_3431 ; - sc:name "3DSlicer_autogenerated" ; - sc:url "http://www.3dslicer.org" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_3169, - edam:topic_3474 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE '3D Genome Browser', 'Peakachu' | A supervised learning framework for chromatin loop detection in genome-wide contact maps | visualize Hi-C, ChIA-PET, HiCHiP, PLAC-Seq, Capture Hi-C data | 3D genome browser, Hi-C browser, ChIA-PET browser, Capture Hi-C browser | Welcome to 3D Genome Browser, where you can join 50,000 other users from over 100 countries to explore chromatin interaction data, such as Hi-C, ChIA-PET, Capture Hi-C, PLAC-Seq, and more. Up till Dec. 2017, we have been visited more than 500,000 times!" ; - sc:featureList edam:operation_0441, - edam:operation_3208, - edam:operation_3501 ; - sc:name "3D Genome" ; - sc:url "http://www.3dgenome.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3382 ; @@ -960,22 +802,22 @@ PURPOSE:Virtual surgical planning (VSP) and custom fabricated cutting guides for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ], + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Gene expression matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_3768" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Clustered expression profiles" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3768" ; - sc:name "Clustered expression profiles" ; - sc:sameAs "http://edamontology.org/data_3768" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3308 ; sc:author , @@ -1024,7 +866,7 @@ If secondary analysis has been asked (providing a comparisons file), the express biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -1046,8 +888,26 @@ If secondary analysis has been asked (providing a comparisons file), the express "Windows" ; sc:url "https://wlcb.oit.uci.edu/3aQTLatlas" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0798, + edam:topic_3174, + edam:topic_3697 ; + sc:citation ; + sc:description "3CAC is a three-class classifier designed to classify contigs in mixed metagenome assemblies as phages, plasmids, chromosomes, or uncertain. 3CAC generates its initial classification by existing classifiers: viralVerify, PPR-Meta, PlasClass, and deepVirFinder. Thus, prior to running 3CAC, installation of these tools are required." ; + sc:featureList edam:operation_0310, + edam:operation_3472, + edam:operation_3731 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "3CAC" ; + sc:url "https://github.com/Shamir-Lab/3CAC" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -1068,7 +928,7 @@ If secondary analysis has been asked (providing a comparisons file), the express sc:url "https://zenodo.org/record/4716879#.YIO-xqkzZH1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3300, edam:topic_3304 ; @@ -1081,8 +941,27 @@ If secondary analysis has been asked (providing a comparisons file), the express sc:name "3d-SPADE" ; sc:url "https://elephant.readthedocs.io/en/latest/reference/spade.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web API", + "Web service" ; + sc:applicationSubCategory edam:topic_1317, + edam:topic_2275 ; + sc:citation ; + sc:description "The 3D-Beacons Network provides unified programmatic access to experimentally determined and predicted structure models." ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "3D-Beacons" ; + sc:softwareHelp , + , + ; + sc:softwareVersion "1.0.0" ; + sc:url "https://3d-beacons.org" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -1102,7 +981,7 @@ If secondary analysis has been asked (providing a comparisons file), the express sc:url "http://3d-blast.life.nctu.edu.tw/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3383, @@ -1116,7 +995,7 @@ If secondary analysis has been asked (providing a comparisons file), the express sc:url "http://www.3D-cell-annotator.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3344, @@ -1135,7 +1014,7 @@ If secondary analysis has been asked (providing a comparisons file), the express biotools:primaryContact "Gang Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0097, @@ -1159,7 +1038,7 @@ If secondary analysis has been asked (providing a comparisons file), the express biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -1177,7 +1056,7 @@ If secondary analysis has been asked (providing a comparisons file), the express biotools:primaryContact "Khaled Khairy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -1193,7 +1072,7 @@ If secondary analysis has been asked (providing a comparisons file), the express biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0154, @@ -1218,7 +1097,7 @@ If secondary analysis has been asked (providing a comparisons file), the express "S. Verhoeven" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -1239,7 +1118,7 @@ If secondary analysis has been asked (providing a comparisons file), the express biotools:primaryContact "3D-Footprint Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3344, @@ -1256,7 +1135,7 @@ If secondary analysis has been asked (providing a comparisons file), the express biotools:primaryContact "Daniel Markel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -1274,7 +1153,7 @@ If secondary analysis has been asked (providing a comparisons file), the express sc:url "http://3dfun.bioinfo.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -1295,7 +1174,7 @@ If secondary analysis has been asked (providing a comparisons file), the express sc:url "https://3dgnome.cent.uw.edu.pl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -1312,7 +1191,7 @@ If secondary analysis has been asked (providing a comparisons file), the express biotools:primaryContact "boyexex" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -1331,7 +1210,7 @@ If secondary analysis has been asked (providing a comparisons file), the express sc:url "http://meta.bioinfo.pl/submit_wizard.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Computations of joint angles and displacements, moments and forces (lower / upper limb)" ; sc:isAccessibleForFree true ; @@ -1344,7 +1223,7 @@ If secondary analysis has been asked (providing a comparisons file), the express biotools:primaryContact "Raphael Dumas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -1370,7 +1249,7 @@ If secondary analysis has been asked (providing a comparisons file), the express "Yu-Shu Lo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3383, edam:topic_3384, @@ -1389,7 +1268,7 @@ Bio Optics and Acoustics Laboratory.""" ; sc:url "http://www.boa-lab.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -1412,7 +1291,7 @@ Bio Optics and Acoustics Laboratory.""" ; biotools:primaryContact "Lawrence Kelley" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2258, edam:topic_2275, @@ -1429,7 +1308,7 @@ The underlying idea of any field-based 3-D QSAR is that differences in a target sc:url "http://www.3d-qsar.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0780, @@ -1450,7 +1329,7 @@ The underlying idea of any field-based 3-D QSAR is that differences in a target sc:url "https://3drnaseq.hutton.ac.uk/app_direct/3DRNAseq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -1467,7 +1346,7 @@ The underlying idea of any field-based 3-D QSAR is that differences in a target biotools:primaryContact "Patrick Bolan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0166 ; sc:citation "pubmed:24573477" ; @@ -1480,7 +1359,7 @@ The underlying idea of any field-based 3-D QSAR is that differences in a target sc:url "http://kiharalab.org/3d-surfer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3067, edam:topic_3444, @@ -1496,7 +1375,7 @@ The underlying idea of any field-based 3-D QSAR is that differences in a target sc:url "https://github.com/ExCaVI-Ulm/3D-XGuide" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -1513,20 +1392,25 @@ The underlying idea of any field-based 3-D QSAR is that differences in a target sc:url "http://biophy.hust.edu.cn/3dRNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3382 ; - sc:citation ; + sc:citation , + "pubmed:34743262" ; sc:description "An interactive software for 3D segmentation and analysis of dendritic spines." ; sc:featureList edam:operation_3450, edam:operation_3799 ; sc:name "3D Spine Analysis Software (3dSpAn)" ; sc:softwareHelp ; - sc:url "https://sites.google.com/view/3dSpAn/" . + sc:url "https://sites.google.com/view/3dSpAn/" ; + biotools:primaryContact , + , + "Ewa Baczynska", + "Nirmal Das" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -1543,31 +1427,38 @@ The underlying idea of any field-based 3-D QSAR is that differences in a target a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_1146" ; + sc:name "EMDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1146" ; - sc:name "EMDB ID" ; - sc:sameAs "http://edamontology.org/data_1146" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0219, edam:topic_3047, edam:topic_3366 ; - sc:author "Joan Segura" ; + sc:author , + "Joan Segura" ; sc:citation , + , , ; sc:description "Web based application designed to integrate protein structure, protein sequence and protein annotations in a unique graphical environment. The current version of the application offers a unified, enriched and interactive view of EMDB volumes, PDB structures and Uniprot sequences where the protein annotations stored in Uniprot, Immune Epitope DB, Phospho Site Plus, BioMuta and dSysMap can be explored interactively at sequence and structural level." ; sc:featureList edam:operation_0564, edam:operation_0570, edam:operation_2422 ; + sc:funder "CORBEL", + "CSIC", + "Comunidad de Madrid", + "EOSC-Life", + "Instituto de Salud Carlos III", + "Spanish Ministry of Science and Innovation" ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; sc:name "3DBIONOTES" ; sc:operatingSystem "Linux", "Mac", @@ -1577,10 +1468,34 @@ The underlying idea of any field-based 3-D QSAR is that differences in a target "cnb.csic.es" ; sc:softwareHelp ; sc:softwareVersion "v3" ; - sc:url "http://3dbionotes.cnb.csic.es/ws" . + sc:url "http://3dbionotes.cnb.csic.es/ws" ; + biotools:primaryContact . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench", + "Workflow" ; + sc:applicationSubCategory edam:topic_0780, + edam:topic_2229, + edam:topic_3382, + edam:topic_3474, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8748745", + "pubmed:35013443" ; + sc:description "A light and robust tool to do 3D cell instance segmentation for cell membrane images. It is useful when the cells clump together." ; + sc:featureList edam:operation_3443, + edam:operation_3552, + edam:operation_3553 ; + sc:isAccessibleForFree true ; + sc:name "3DCellSeg" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/AntonotnaWang/3DCellSeg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation ; @@ -1593,7 +1508,7 @@ The underlying idea of any field-based 3-D QSAR is that differences in a target sc:url "http://ttic.uchicago.edu/~jinbo/software.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2269, @@ -1613,7 +1528,7 @@ An important unanswered question in chromatin biology is the extent to which lon sc:url "https://bitbucket.org/creminslab/5c3defdr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0611, @@ -1633,7 +1548,7 @@ An important unanswered question in chromatin biology is the extent to which lon biotools:primaryContact "3DEM Loupe Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3569 ; @@ -1649,8 +1564,71 @@ An important unanswered question in chromatin biology is the extent to which lon sc:url "http://i2pc.cnb.csic.es/3dembenchmark/LoadHome.htm" ; biotools:primaryContact "Joan Segura" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0121, + edam:topic_0769, + edam:topic_2814, + edam:topic_3400 ; + sc:citation , + "pmcid:PMC9162058", + "pubmed:35664289" ; + sc:description "The 3DFI pipeline predicts the 3D structure of proteins and searches for structural homology in the 3D space." ; + sc:featureList edam:operation_0303, + edam:operation_0474, + edam:operation_0570, + edam:operation_3663, + edam:operation_3767 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "3DFI" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/PombertLab/3DFI" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0199, + edam:topic_0621, + edam:topic_3169, + edam:topic_3912 ; + sc:citation , + "pmcid:PMC9252746", + "pubmed:35639501" ; + sc:description "A web-server to benchmark computational models for 3D Genomics." ; + sc:featureList edam:operation_0475, + edam:operation_2483, + edam:operation_3435 ; + sc:license "GPL-3.0" ; + sc:name "3DGenBench" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://3dgenbench.net/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0202, + edam:topic_3336, + edam:topic_3375, + edam:topic_3474 ; + sc:citation , + "pubmed:35511112" ; + sc:description "3D graph and text based neural network for drug-drug interaction prediction." ; + sc:featureList edam:operation_3625, + edam:operation_3927, + edam:operation_4009 ; + sc:license "Apache-2.0" ; + sc:name "3DGT-DDI" ; + sc:url "https://github.com/hehh77/3DGT-DDI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0128, @@ -1669,7 +1647,7 @@ An important unanswered question in chromatin biology is the extent to which lon sc:url "http://3diana.cnb.csic.es/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -1692,7 +1670,7 @@ An important unanswered question in chromatin biology is the extent to which lon biotools:primaryContact "Patrick Aloy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0204, @@ -1712,7 +1690,7 @@ An important unanswered question in chromatin biology is the extent to which lon sc:url "http://3div.kr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -1733,7 +1711,7 @@ An important unanswered question in chromatin biology is the extent to which lon biotools:primaryContact "Mark Wass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -1752,7 +1730,7 @@ An important unanswered question in chromatin biology is the extent to which lon sc:url "http://3dlogo.uniroma2.it/3dLOGO/home.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workbench" ; sc:applicationSubCategory edam:topic_0821, @@ -1771,12 +1749,19 @@ An important unanswered question in chromatin biology is the extent to which lon biotools:primaryContact "Vassilios Burganos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; - sc:applicationSubCategory edam:topic_2275 ; - sc:citation "pubmed:25505090" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2275, + edam:topic_3314, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9416521", + "pubmed:25505090", + "pubmed:36035779" ; sc:description "Object-oriented, webGL based JavaScript library for online molecular visualization – No Java required! With 3Dmol.js, you can add beautifully rendered molecular visualizations to your web applications." ; sc:featureList edam:operation_0570 ; + sc:license "BSD-3-Clause" ; sc:name "3Dmol.js" ; sc:operatingSystem "Linux", "Mac", @@ -1785,7 +1770,7 @@ An important unanswered question in chromatin biology is the extent to which lon sc:url "http://3dmol.csb.pitt.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0082, @@ -1804,14 +1789,13 @@ An important unanswered question in chromatin biology is the extent to which lon a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3176, @@ -1825,7 +1809,7 @@ An important unanswered question in chromatin biology is the extent to which lon sc:url "https://bitbucket.org/creminslab/3dnetmod_method_v1.0_10_06_17" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0621, @@ -1844,7 +1828,7 @@ An important unanswered question in chromatin biology is the extent to which lon sc:url "https://github.com/lyh24k/3DPhenoFish/tree/master" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -1860,7 +1844,7 @@ An important unanswered question in chromatin biology is the extent to which lon sc:url "http://bicompute.appspot.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation "pubmed:26471454" ; @@ -1873,22 +1857,22 @@ An important unanswered question in chromatin biology is the extent to which lon a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1459" ; - sc:name "Nucleic acid structure" ; - sc:sameAs "http://edamontology.org/data_1459" ], + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3910" ; + sc:name "Trajectory data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1459" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Nucleic acid structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0092, @@ -1910,8 +1894,32 @@ An important unanswered question in chromatin biology is the extent to which lon sc:softwareVersion "1.0" ; sc:url "https://mmb.irbbarcelona.org/3dRS/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web API" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0749, + edam:topic_2885, + edam:topic_3295, + edam:topic_3940 ; + sc:citation , + "pmcid:PMC8728236", + "pubmed:34723317" ; + sc:description "3DSNP is a database linking noncoding Variants to 3D interacting genes. It is an integrated annotation database linking genome-wide noncoding SNPs and small INDELs to 3D interacting genes via chromatin loops." ; + sc:featureList edam:operation_0224, + edam:operation_3227, + edam:operation_3431, + edam:operation_3661 ; + sc:name "3DSNP" ; + sc:softwareHelp , + ; + sc:url "https://omic.tech/3dsnpv2/" ; + biotools:primaryContact , + . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -1932,7 +1940,7 @@ An important unanswered question in chromatin biology is the extent to which lon biotools:primaryContact "Sara Nasso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -1955,7 +1963,7 @@ An important unanswered question in chromatin biology is the extent to which lon biotools:primaryContact "K Sekar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -1977,20 +1985,8 @@ An important unanswered question in chromatin biology is the extent to which lon sc:url "http://gene-regulation.com/pub/programs/3dtf/" ; biotools:primaryContact "Denitsa Alamanova" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0780, - edam:topic_3382, - edam:topic_3810 ; - sc:citation , - "pmcid:PMC6731382", - "pubmed:31516936" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Gujrat Citrus', 'citrus', 'citrus fruits', 'Gujrat' | A citrus fruits and leaves dataset for detection and classification of citrus diseases through machine learning | (1) In agriculture, plant diseases are primarily responsible for the reduction in production which causes economic losses | Published: 28 May 2019 : Version 2 : DOI: 10.17632/3f83gxmv57.2 | Rauf, Hafiz Tayyab; Saleem, Basharat ALi ; Lali, M" ; - sc:featureList edam:operation_3891 ; - sc:name "3f83gxmv57" ; - sc:url "https://data.mendeley.com/datasets/3f83gxmv57/2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -2006,8 +2002,28 @@ An important unanswered question in chromatin biology is the extent to which lon sc:softwareVersion "1.0" ; sc:url "http://statgen.psu.edu/software/3funmap.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0199, + edam:topic_3168, + edam:topic_3315 ; + sc:citation , + "pmcid:PMC8934446", + "pubmed:35307007" ; + sc:description "Optimized Levenshtein distance for clustering third-generation sequencing data." ; + sc:featureList edam:operation_0491, + edam:operation_3096, + edam:operation_3432 ; + sc:license "Not licensed" ; + sc:name "3GOLD" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/roblogan6/3GOLD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, @@ -2031,7 +2047,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford sc:url "https://ahs2202.github.io/3M/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -2053,7 +2069,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford biotools:primaryContact "Douglas L. Brutlag" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3172, @@ -2073,7 +2089,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -2096,7 +2112,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford biotools:primaryContact "Douglas L. Brutlag" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0121, @@ -2117,7 +2133,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford biotools:primaryContact "Yufeng Jane Tseng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation "pubmed:20874409" ; @@ -2129,7 +2145,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford sc:url "http://www.bx.psu.edu/miller_lab/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0099, @@ -2149,7 +2165,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford biotools:primaryContact "Biocomputing Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -2171,20 +2187,8 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford sc:url "http://3vee.molmovdb.org" ; biotools:primaryContact "R. Neil" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3173, - edam:topic_3399, - edam:topic_3400 ; - sc:citation ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'men', 'sexes', 'late-sixties', 'forties' | Sexual-dimorphism in human immune system aging | Ucar Human Immune Aging Data" ; - sc:featureList edam:operation_3185, - edam:operation_3501, - edam:operation_3891 ; - sc:name "44c0a53ebb13f7fd5e2ddbced1a37f51" ; - sc:url "https://shinyapps.jax.org/44c0a53ebb13f7fd5e2ddbced1a37f51/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3173, @@ -2203,8 +2207,31 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford sc:softwareHelp ; sc:url "https://4dgenome.research.chop.edu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal", + "Web API" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0654, + edam:topic_3173, + edam:topic_3382, + edam:topic_3940 ; + sc:citation ; + sc:description "4D Nucleome Data Portal is a resource for searching and visualizing curated nucleomics data. The 4D Nucleome program aims to understand the principles behind the 3D organization of the nucleus in space and time (the 4th dimension). The 4DN Data Visualization Workspace allows users to create 1D or 2D genome displays. Registered users can save and share the displays they create. The Visualization Workspace is powered by HiGlass. The 4D Nucleome Data Portal hosts data generated by the 4DN Network and other reference nucleomics data sets, and an expanding tool set for open data processing and visualization." ; + sc:featureList edam:operation_0337, + edam:operation_2421, + edam:operation_3431, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:name "4D Nucleome Data Portal" ; + sc:softwareHelp , + , + ; + sc:url "https://data.4dnucleome.org/" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -2223,22 +2250,19 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ], + sc:additionalType "http://edamontology.org/data_1796" ; + sc:name "Gene ID (FlyBase)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1796" ; - sc:name "Gene ID (FlyBase)" ; - sc:sameAs "http://edamontology.org/data_1796" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623 ; sc:citation , @@ -2256,7 +2280,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford biotools:primaryContact "Yannick Haudry" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -2270,7 +2294,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford sc:url "http://thegleelab.org/4mCpred-EL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -2285,7 +2309,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford biotools:primaryContact "Kil To Chong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0749, @@ -2309,7 +2333,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford "Shasha Luan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -2322,7 +2346,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford sc:url "http://nsclbio.jbnu.ac.kr/tools/4mCNLP-Deep/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "Allows viewing sequencing trace files, motif searching trimming, BLAST and exporting sequences." ; @@ -2335,14 +2359,14 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -2363,7 +2387,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford biotools:primaryContact "Francisco Pina Martins" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0081, @@ -2382,7 +2406,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford sc:url "http://4sale.bioapps.biozentrum.uni-wuerzburg.de/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -2402,7 +2426,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford sc:url "https://github.com/TomSexton00/4See" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3053 ; @@ -2421,7 +2445,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford sc:url "https://4specid.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3512 ; sc:citation , @@ -2438,20 +2462,30 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford sc:softwareVersion "2.0.1" ; sc:url "http://apollo11.isto.unibo.it/software/5'_ORF_Extender/5'_ORF_Extender_2.0/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0637, - edam:topic_3452, - edam:topic_3500 ; - sc:citation , - "pmcid:PMC6662808", - "pubmed:31358795" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Taxonomy Arabian Temnothorax Mayr Formicidae', 'cybertype' | Myrmicinae) with description of a new species enhanced by x-ray microtomography | 3D model by Economolab (@arilab) | Temnothorax sp. New species from the Asir Mountains in Saudi Arabia (located at OIST: CASENT0790240) - Temnothorax sp. - 3D model by Economolab (@arilab) | November Challenge: Retro Electronics | Prize: 3 months of Sketchfab PRO + $100 | Orbit navigation Move camera: 1 finger drag or Left Mouse Button" ; - sc:featureList edam:operation_0337 ; - sc:name "6HYRz" ; - sc:url "https://skfb.ly/6HYRz" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_3305, + edam:topic_3324, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC9252726", + "pubmed:35639518" ; + sc:description "A web server for nosocomial bacterial antibiogram investigation and epidemiology survey." ; + sc:featureList edam:operation_0337, + edam:operation_2421, + edam:operation_3482 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "5NosoAE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://nosoae.imst.nsysu.edu.tw" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2640, @@ -2465,7 +2499,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford sc:url "https://bioinfo.uth.edu/6mA_Finder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3295 ; sc:citation , @@ -2477,7 +2511,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford sc:url "http://39.100.246.211:5004/6mA_Pred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0780, @@ -2495,17 +2529,8 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford sc:name "6mAPred-FO" ; sc:url "http://server.malab.cn/6mAPred-FO" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0611, - edam:topic_2830, - edam:topic_3304 ; - sc:citation ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'STORM' (bio.tools/storm), 'cholesterol-sensitive', 'mAb35-crosslinked', 'nAChRs' | Antibody-induced crosslinking and cholesterol-sensitive, anomalous diffusion of nicotinic acetylcholine receptors | Antibody-induced crosslinking immobilizes acetylcholine receptors. Mobile receptors exhibit anomalous, cholesterol-sensitive diffusion and clustering | Synaptic strength depends on the number of cell-surface neurotransmitter receptors in dynamic equilibrium with intracellular pools" ; - sc:name "744664v1" ; - sc:url "https://www.biorxiv.org/content/10.1101/744664v1" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0621, @@ -2527,7 +2552,7 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford biotools:primaryContact "Mark Blaxter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, edam:topic_0749, @@ -2541,25 +2566,8 @@ Liu, G., Carter, B., Bricken, T., Jain, S., Viard, M., Carrington, M., & Gifford sc:name "9aaTAD" ; sc:url "https://www.med.muni.cz/9aaTAD/index.php" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0154, - edam:topic_2640, - edam:topic_3474 ; - sc:citation , - "pubmed:31870207" ; - sc:description """A Tool for Anti-Cancer and Antimicrobial Peptide Generation. - -Anti-cancer peptides (ACPs) play a vital role in the cell signaling process. Antimicrobial peptides (AMPs) provide immunity against pathogenic microbes, AMPs present activity against pathogenic microbes. Some of them are known to possess both anticancer and antimicrobial activity. However, so far, no tools have been developed that could predict potential ACPs from wild and mutated cancerous protein sequences in the numerous public databases. In the present study, we developed a A-CaMP tool that allows rapid fingerprinting of the anti-cancer and antimicrobial peptides, which play a crucial role in current bioinformatics research. Besides, we compared the performance and functionality of our A-CaMP tool with those of other methods available online. A-CaMP scans the target protein sequences provided by the user against the datasets. - -||| HOMEPAGE BROKEN!""" ; - sc:featureList edam:operation_3435, - edam:operation_3631 ; - sc:name "A-CaMP" ; - sc:url "http://weislab.com/WeiDOCK/include/content/A-CaMP/A-CaMPv1.1.pm" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0108, @@ -2577,32 +2585,14 @@ Anti-cancer peptides (ACPs) play a vital role in the cell signaling process. Ant sc:name "A-Lister" ; sc:url "https://github.com/staslist/A-Lister" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3377, - edam:topic_3390 ; - sc:citation , - "pmcid:PMC6896730", - "pubmed:31806037" ; - sc:description """Action, actor, context, target, time (AACTT). - -BACKGROUND:Designing implementation interventions to change the behaviour of healthcare providers and other professionals in the health system requires detailed specification of the behaviour(s) targeted for change to ensure alignment between intervention components and measured outcomes. Detailed behaviour specification can help to clarify evidence-practice gaps, clarify who needs to do what differently, identify modifiable barriers and enablers, design interventions to address these and ultimately provides an indicator of what to measure to evaluate an intervention's effect on behaviour change. An existing behaviour specification framework proposes four domains (Target, Action, Context, Time; TACT), but insufficiently clarifies who is performing the behaviour (i.e. the Actor). - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'interventions', 'Action Actor Context Target Time', 'intervention'""" ; - sc:featureList edam:operation_3435, - edam:operation_3799 ; - sc:name "AACTT" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31806037" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "AAI-profiler [1] is a fast homology search tool that takes a query proteome (protein sequences in FASTA format) as input and plots the AAI (Average Amino-acid Identity) values of species in the Uniprot database. AAI-profiler is powered by SANS [2] and the processing time for a bacterial proteome is a few minutes." ; sc:name "AAI-profiler" ; sc:url "http://ekhidna2.biocenter.helsinki.fi/AAI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0199, @@ -2623,40 +2613,8 @@ BACKGROUND:Designing implementation interventions to change the behaviour of hea sc:url "https://github.com/WhittakerLab/AAScatterPlot" ; biotools:primaryContact "Gary R. Whittaker" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3334, - edam:topic_3360, - edam:topic_3379, - edam:topic_3384, - edam:topic_3407 ; - sc:citation ; - sc:description """Scientific Context, Study Design, and Progress towards Biomarker Qualification. - -Clinical research in neurodevelopmental disorders remains reliant upon clinician and caregiver measures. Limitations of these approaches indicate a need for objective, quantitative, and reliable biomarkers to advance clinical research. Extant research suggests the potential utility of multiple candidate biomarkers; however, effective application of these markers in trials requires additional understanding of replicability, individual differences, and intra-individual stability over time. The Autism Biomarkers Consortium for Clinical Trials (ABC-CT) is a multi-site study designed to investigate a battery of electrophysiological (EEG) and eye-tracking (ET) indices as candidate biomarkers for autism spectrum disorder (ASD). - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Autism Biomarkers Consortium Clinical Trials', 'Biomarker Qualification'""" ; - sc:featureList edam:operation_3196, - edam:operation_3799 ; - sc:name "ABC-CT" ; - sc:url "https://doi.org/10.1101/2019.12.18.19014548" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0659, - edam:topic_3360 ; - sc:citation , - "pmcid:PMC6722159", - "pubmed:31501752" ; - sc:description "> NAME (ABCD) SIMILAR TO (PUB. DIFFERENT) bio.tools/abcd (AbCD) | Alzheimer's disease Biomarkers Comprehensive Database | Genes, Proteins, Pathways and Drugs Database | ABCD is a Alzheimer's Disease Biomarker Comprehensive Database for Humans.It include the information for all the Genetic Parameters like Mitochondrial Genes, Polymorphic Genes (SNP's) , Transcription factors, Proteins, miRNAs, Associative pathway, and AD brain images. It provide the user To Search by Browsing through Different Mode" ; - sc:featureList edam:operation_2495, - edam:operation_3501 ; - sc:name "ABCD_autogenerated" ; - sc:url "http://www.bioinfoindia.org/abcd" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0749, @@ -2669,7 +2627,7 @@ Clinical research in neurodevelopmental disorders remains reliant upon clinician sc:url "https://web.expasy.org/abcd/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593 ; sc:citation , "pmcid:PMC6648237", @@ -2679,7 +2637,7 @@ Clinical research in neurodevelopmental disorders remains reliant upon clinician sc:url "https://github.com/troelsring/ABCharge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3334 ; sc:description "Experimental Brain Computer Interface Software for the ModularEEG." ; @@ -2692,7 +2650,7 @@ Clinical research in neurodevelopmental disorders remains reliant upon clinician "Pedro Ortega" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -2711,7 +2669,7 @@ Clinical research in neurodevelopmental disorders remains reliant upon clinician biotools:primaryContact "Xing Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3408, edam:topic_3474 ; @@ -2731,18 +2689,18 @@ Clinical research in neurodevelopmental disorders remains reliant upon clinician a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3301 ; @@ -2758,78 +2716,8 @@ Clinical research in neurodevelopmental disorders remains reliant upon clinician sc:softwareVersion "0.9.8" ; sc:url "https://github.com/tseemann/abricate" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3322, - edam:topic_3400, - edam:topic_3421 ; - sc:citation , - "pmcid:PMC6730761" ; - sc:description """Study of resources in asthma and COPD in the community of Madrid (Spain). - -Introduction:Respiratory medicine is developing in primary care. We describe the resources available. In a second phase, we will study health results. Aims and objectives:To learn about resources (infrastructure and process) related with Asthma and COPD in the public centers of the Community of Madrid (Spain). Subjects and methodology: A descriptive, cross-sectional study. A postal survey addressed (2 mailings) to the leaders of all the health centers (227), between November (2000) and April (2001). Response: 156 (68.7%). A previous study over 44 coordinators (nominal group), added 10 items and changed 4. - -||| HOMEPAGE MISSING!. - -||| NAME (ABS50) SIMILAR TO (PUB. DIFFERENT) bio.tools/abs (ABS). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'COPD', 'pneumology', 'oximeter', 'CPRE'""" ; - sc:featureList edam:operation_2428, - edam:operation_3454 ; - sc:name "ABS50" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6730761/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3322, - edam:topic_3421 ; - sc:citation , - "pmcid:PMC6730778" ; - sc:description """Use of a call centre to conduct clinical research. - -Introduction:Call centres are increasingly utilised to provide health-care services and advice. Their use in research to monitor and track individuals with long-term health conditions such as asthma without subjecting them to regular clinic visits has yet to be validated. Aim:As part of an asthma health outcomes study a call centre conducted monthly interviews with patients over one year. The relationship between the research team and the call centre, as well as data quality, was reviewed. Method:344 patients from 31 randomly selected UK practices were called on a monthly basis. - -||| HOMEPAGE MISSING!. - -||| NAME (ABS68) SIMILAR TO (PUB. DIFFERENT) bio.tools/abs (ABS). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'monthly', 'interviews', 'interview', 'monthly interviews'""" ; - sc:featureList edam:operation_3435 ; - sc:name "ABS68" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6730778/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3305, - edam:topic_3322, - edam:topic_3418, - edam:topic_3421 ; - sc:citation , - "pmcid:PMC6730781" ; - sc:description """A survey on pediatirc asthma management in primary care in Mallorca (Spain). - -Introduction:Asthma is the most frequent long term disease in children. The prevalence in our environment is approximately 10% [1]. The knowledge of the real situation of professionals in different primary health centres could help to encourage a future program to increase the quality of management of asthmatic children. Aims and objectives:To obtain information on the real situation on asthma management among medical professionals in paediatric primary care in Mallorca. - -||| HOMEPAGE MISSING!. - -||| NAME (ABS72) SIMILAR TO (PUB. DIFFERENT) bio.tools/abs (ABS). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'paediatric asthma', 'paediatric', 'Mallorca', 'salbutamol'""" ; - sc:name "ABS72" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6730781/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_2640, - edam:topic_3382 ; - sc:citation , - "pubmed:31442972" ; - sc:description "> MEDIUM CONFIDENCE! | Deeply-Supervised Networks with Threshold Loss for Cancer Detection in Automated Breast Ultrasound | 3D-DUnet-DDS-TM to detection breast cancer in abus" ; - sc:name "ABUS" ; - sc:url "https://github.com/nawang0226/abus_code" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2885, edam:topic_3305, @@ -2847,7 +2735,7 @@ Introduction:Asthma is the most frequent long term disease in children. The prev sc:url "https://github.com/lguillier/AB_SA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0632, @@ -2868,7 +2756,7 @@ Introduction:Asthma is the most frequent long term disease in children. The prev biotools:primaryContact "Pablo S.C. Santos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3169, @@ -2880,7 +2768,7 @@ Introduction:Asthma is the most frequent long term disease in children. The prev sc:url "https://bitbucket.org/noblelab/accost" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3295, @@ -2902,7 +2790,7 @@ Introduction:Asthma is the most frequent long term disease in children. The prev sc:url "https://github.com/GrabherrGroup/ACES" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -2919,39 +2807,8 @@ Introduction:Asthma is the most frequent long term disease in children. The prev sc:name "ACID" ; sc:url "http://chemyang.ccnu.edu.cn/ccb/server/ACID" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0202, - edam:topic_0209, - edam:topic_2275, - edam:topic_3373 ; - sc:citation , - "pmcid:PMC6882193" ; - sc:description """a free tool for drug repurposing using consensus inverse docking strategy. - -Auto in silico Consensus Inverse Docking(ACID) is a web server mainly for drug repurposing based on the consensus inverse docking method, which is designed to evaluate the binding affinities between each protein and the given small molecule. ACID is open to the public and shows great potential. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/acid""" ; - sc:featureList edam:operation_0337, - edam:operation_0482, - edam:operation_3899 ; - sc:name "ACID_autogenerated" ; - sc:url "http://chemyang.ccnu.edu.cn/ccb/server/ACID" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_3337, - edam:topic_3384 ; - sc:citation ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE BROKEN! | > CORRECT NAME OF TOOL COULD ALSO BE 'parcels', 'parcellating', 'brain-behaviour', 'widely-accepted' | Optimising network modelling methods for fMRI | Abstract A major goal of neuroimaging studies is to develop predictive models to analyse the relationship between whole brain functional connectivity patterns and behavioural traits. However, there is no single widely-accepted standard pipeline for analyzing functional connectivity. The common procedure for designing functional connectivity based predictive models entails three main steps: parcellating the brain, estimating the interaction between defined parcels, and lastly, using these integrated associations between brain parcels as features fed to a classifier for predicting non-imaging variables e.g., behavioural traits, demographics, emotional measures, etc" ; - sc:featureList edam:operation_2425, - edam:operation_3660, - edam:operation_3745 ; - sc:name "ACPI" ; - sc:url "http://projects.nitrc.org/indi/ACPI/html/index.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091 ; sc:author ; @@ -2965,7 +2822,7 @@ Auto in silico Consensus Inverse Docking(ACID) is a web server mainly for drug r sc:url "https://github.com/brsaran/ACPP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0749, @@ -2984,7 +2841,7 @@ Auto in silico Consensus Inverse Docking(ACID) is a web server mainly for drug r sc:url "http://codes.bio/acpred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -2999,13 +2856,13 @@ Auto in silico Consensus Inverse Docking(ACID) is a web server mainly for drug r sc:url "http://server.malab.cn/ACPred-Fuse/Server.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "A multi-scale resource of biological maps to study disease mechanisms." ; sc:name "Atlas of Cancer Signalling Network (ACSN)" ; sc:url "https://acsn.curie.fr/ACSN2/ACSN2.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3474 ; @@ -3017,7 +2874,7 @@ Auto in silico Consensus Inverse Docking(ACID) is a web server mainly for drug r sc:url "https://github.com/mafeiyang/ACTINN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, edam:topic_3170, @@ -3034,7 +2891,7 @@ actor is an R package which takes transcript expression as input and uses a late sc:url "https://github.com/mccabes292/actor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769 ; sc:citation , @@ -3045,20 +2902,8 @@ OBJECTIVES:To introduce a novel software-library called Actigraphy Manager (ACTm sc:name "ACTman" ; sc:url "https://github.com/compsy/ACTman" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0154, - edam:topic_3407 ; - sc:citation "pmcid:PMC6698788" ; - sc:description "> HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'E373Q ADAMTS7 WT ADAMTS7 E373Q', 'ADAMTS7 E373Q ADAMTS7', 'Luciferase ADAMTS7 E373Q ADAMTS7', 'ADAMTS7 WT ADAMTS7 E373Q' | Introduction: The identification of corticotropin-releasing hormone (CRH) has led to the discovery of a growing family of ligands and receptors. CRH receptor 1 (CRHR1) and CRHR2 are mammalian G-protein coupled receptors (GPCRs) with high affinity for CRH and the CRH family of peptides. CRHR1 is predominantly expressed in the brain and plays a vital role in the hypothalamic-pituitary-adrenal (HPA) axis stress responses by secreting adrenal corticotropic hormone (ACTH). CRHR2 is predominantly expressed in the periphery and urocortin 2 (UCN2), a CRHR2-specific ligand, has been involved in the regulation of glucose metabolism. Ucn-2, a 38 aa peptide, shows reasonable homology between rat and human CRH (∼34%), Ucn-1 (43%) and Ucn-3 (37 40%)" ; - sc:featureList edam:operation_3638, - edam:operation_3639, - edam:operation_3649 ; - sc:name "ADAMTS7 E373Q ADAMTS7 WT ADAMTS7" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6698788/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3168 ; @@ -3074,18 +2919,8 @@ Antimicrobial peptides (AMPs) are part of the innate immune response to pathogen sc:name "ADAPTABLE" ; sc:url "http://gec.u-picardie.fr/adaptable/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_3303 ; - sc:citation , - "pubmed:31566316" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'AGREE', 'commentaries' | [Three ways to develop clinical guidelines. ADAPTE and AGREE GRS procedures] | ADAPTE Resource Toolkit for Guideline Adaptation Version 2.0 — Guidelines International Network | ADAPTE Resource Toolkit for Guideline Adaptation Version 2.0 | We are sorry, but signing in with LinkedIn is not possible at this time" ; - sc:featureList edam:operation_3237 ; - sc:name "ADAPTE" ; - sc:url "https://www.g-i-n.net/document-store/working-groups-documents/adaptation/adapte-resource-toolkit-guideline-adaptation-2-0.pdf/view" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, edam:topic_3474 ; @@ -3100,7 +2935,7 @@ Antimicrobial peptides (AMPs) are part of the innate immune response to pathogen sc:url "http://www.bic.kyoto-u.ac.jp/pathway/tools/ADAPTIVE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -3121,7 +2956,7 @@ Antimicrobial peptides (AMPs) are part of the innate immune response to pathogen biotools:primaryContact "Samuel A. Danziger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_0769, @@ -3142,7 +2977,7 @@ Additivity and dominance are the major genetic components underlying variations sc:url "https://github.com/LeileiCui/ADDO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -3161,7 +2996,7 @@ Additivity and dominance are the major genetic components underlying variations biotools:primaryContact "Ron Shamir" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3334, @@ -3180,7 +3015,7 @@ Additivity and dominance are the major genetic components underlying variations sc:url "https://ufrgs.br/prodah/adhd-calculator/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation "pmcid:PMC6890416", @@ -3191,84 +3026,8 @@ There exist many problems in science and engineering that involve optimization o sc:name "ADMMBO" ; sc:url "https://github.com/SetarehAr/ADMMBO" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3384, - edam:topic_3444 ; - sc:citation , - "pmcid:PMC6700386", - "pubmed:31456676" ; - sc:description "> CORRECT NAME OF TOOL COULD ALSO BE 'AD N', 'associated dementia', 'thevirtualbrain.org neuroinformatics', 'Virtual Brain' | Linking Molecular Pathways and Large-Scale Computational Modeling to Assess Candidate Disease Mechanisms and Pharmacodynamics in Alzheimer's Disease | Alzheimer's Disease Neuroimaging Initiative | Alzheimer’s Disease Neuroimaging Initiative | ADNI3 began in 2016 and includes scientists at 59 research centers in the United States and Canada. Between 1070-2000 participants will be enrolled: approximately 700-800 rollover participants from ADNI2 and 370-1200 newly enrolled subjects. Clinical, cognitive, imaging, biomarker and genetic characteristics will be assessed across three cohorts: Cognitively normal, MCI and mild AD dementia | The Alzheimer’s Disease Neuroimaging Initiative (ADNI) unites researchers with study data as they work to define the progression of Alzheimer’s disease (AD)" ; - sc:featureList edam:operation_3629, - edam:operation_3891 ; - sc:name "ADNI-3" ; - sc:softwareHelp ; - sc:url "http://adni.loni.usc.edu" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3172, - edam:topic_3384, - edam:topic_3407, - edam:topic_3444 ; - sc:citation , - "pmcid:PMC6797798", - "pubmed:31624257" ; - sc:description """Bile acids targeted metabolomics and medication classification data in the ADNI1 and ADNIGO/2 cohorts. - -Alzheimer's Disease Neuroimaging Initiative. - -Alzheimer’s Disease Neuroimaging Initiative. - -The Alzheimer’s Disease Neuroimaging Initiative (ADNI) unites researchers with study data as they work to define the progression of Alzheimer’s disease (AD). ADNI researchers collect, validate and utilize data, including MRI and PET images, genetics, cognitive tests, CSF and blood biomarkers as predictors of the disease. Study resources and data from the North American ADNI study are available through this website, including Alzheimer’s disease patients, mild cognitive impairment subjects, and elderly controls. - -Click below to learn more or to join the ADNI study as a participant. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/LONI-QC (LONI.USC.EDU), bio.tools/ADNI-3 (ADNI.LONI.USC.EDU ; LONI.USC.EDU). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ADNI1', 'ADNI'""" ; - sc:featureList edam:operation_2428, - edam:operation_3435, - edam:operation_3799 ; - sc:name "ADNIGO" ; - sc:url "http://adni.loni.ucla.edu/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0202, - edam:topic_0209, - edam:topic_3377, - edam:topic_3379, - edam:topic_3474 ; - sc:citation , - , - "pubmed:31838499", - "pubmed:31868917" ; - sc:description """Broad-Spectrum Profiling of Drug Safety via Learning Complex Network. - -A survey on adverse drug reaction studies. - -A comparison of machine learning models in adverse drug side effect prediction. - -Duc Anh Nguyen, Canh Hao Nguyen and Hiroshi Mamitsuka. - -Adverse Drug Reaction Classification System. - -An adverse drug reaction (ADR) is described by the World Health Organization (WHO) as a 'response to a medicine which is noxious and unintended, and which occurs at doses normally used in man.' ADRs are sometimes called side effects. - -Create and activate a python environment using anaconda:. - -For better access experience, the webserver may take several minutes to initiate the working evironment at your first visit. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'survey adverse drug reaction studies'""" ; - sc:featureList edam:operation_0478, - edam:operation_2426, - edam:operation_3435, - edam:operation_3439 ; - sc:name "ADR" ; - sc:url "http://www.bio-add.org/ADRAlert/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0202, @@ -3289,7 +3048,7 @@ For better access experience, the webserver may take several minutes to initiate sc:url "http://www.bio-add.org/ADRAlert/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0091, @@ -3305,7 +3064,7 @@ For better access experience, the webserver may take several minutes to initiate sc:url "http://ekhidna2.biocenter.helsinki.fi/ADS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3168, @@ -3324,20 +3083,8 @@ For better access experience, the webserver may take several minutes to initiate sc:softwareHelp ; sc:url "https://github.com/SCUT-CCNL/ADS-HCSpark.git" . - a sc:SoftwareApplication ; - sc:citation "pubmed:31581184" ; - sc:description """Availability of automated external defibrillators in Hamilton, New Zealand. - -BACKGROUND:Last year, there were 2,000 out-of-hospital cardiac arrests (OHCA) in New Zealand, 74% received CPR but only 5.1% accessed an automated external defibrillator (AED). The average survival rate of OHCA is 13%. The aim of this study was to visit all 50 AED locations shown on www.hamiltoncentral.co.nz to assess their true availability and visibility to the public in the event of an OHCA. METHOD:All premises were visited and the first staff member encountered was asked if they were aware an AED was onsite, its location, hours of availability, if restricted access applied and whether it had been used. RESULTS:Of the 50 locations, three sites no longer exist and two AEDs were listed twice. Therefore, only 45 AEDs exist. Two sites had grossly inaccurate locations. Three AEDs (7%) were continuously available. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Hamilton'""" ; - sc:name "AEDs" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31581184" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -3352,19 +3099,8 @@ BACKGROUND:Last year, there were 2,000 out-of-hospital cardiac arrests (OHCA) in sc:name "Advanced Expression Survival Analysis (AESA)" ; sc:url "http://innovebioinfo.com/Databases/TCGA_Mutation_ExpressionDB/Mutationdb_Search5.php" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3399, - edam:topic_3577 ; - sc:citation ; - sc:description "Cross-Sectional Study Aimed at validating a new taxonomy of Neurodegenerative Diseases | Organising Knowledge about Neurodegenerative Disease Mechanisms for the Improvement of Drug Development and Therapy | Final AETIONOMY Symposium on Neurodegeneration and General Assembly | The Final AETIONOMY Symposium on Neurodegenerative Research of Dementia, Alzheimer's and Parkinson's Disease and General Assembly took place on November 29 and 30, 2018 at the Congresshotel Collegium Leoninum, Bonn, Germany" ; - sc:featureList edam:operation_3435, - edam:operation_3891 ; - sc:name "AETIONOMY" ; - sc:url "http://www.aetionomy.eu" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3169, edam:topic_3170, @@ -3382,7 +3118,7 @@ Generating heatmaps of genetic datasets is a 2D graphical visualization of data sc:url "https://mohammadtarek.shinyapps.io/AFCMHeatMap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -3399,7 +3135,7 @@ Generating heatmaps of genetic datasets is a 2D graphical visualization of data sc:url "http://www.allelefrequencies.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:description """Another Gff Analysis Toolkit (AGAT) Suite of tools to handle gene annotations in any GTF/GFF format.""" ; @@ -3411,7 +3147,7 @@ Suite of tools to handle gene annotations in any GTF/GFF format.""" ; sc:url "https://github.com/NBISweden/AGAT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0621, @@ -3429,7 +3165,7 @@ Welcome to AgoNotes home page! AGONOTES is an online service tool to identify Ar sc:url "http://i.uestc.edu.cn/agonotes/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3399, edam:topic_3697 ; @@ -3444,60 +3180,8 @@ Welcome to AgoNotes home page! AGONOTES is an online service tool to identify Ar sc:name "AGS ACN" ; sc:url "https://github.com/pereiramemo/AGS-and-ACN-tools" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_3170, - edam:topic_3308 ; - sc:citation , - "pmcid:PMC6660963", - "pubmed:31372182" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'Vp AHPND' | Differential transcriptome analysis of the disease tolerant Madagascar-Malaysia crossbred black tiger shrimp, Penaeus monodon hepatopancreas in response to acute hepatopancreatic necrosis disease (AHPND) infection | Background:Penaeus monodon is the second most widely cultured marine shrimp species in the global shrimp aquaculture industry. However, the growth of P. monodon production has been constantly impaired by disease outbreaks. Recently, there is a lethal bacterial infection, known as acute hepatopancreatic necrosis disease (AHPND) caused by Vibrio parahaemolyticus AHPND strain (Vp AHPND), which led to mass mortalities in P. monodon. Unfortunately, there is still insufficient knowledge about the underlying immune response of P. monodon upon AHPND infection" ; - sc:featureList edam:operation_3501, - edam:operation_3891 ; - sc:name "AHPND" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31372182" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3301, - edam:topic_3377, - edam:topic_3403 ; - sc:citation , - "pmcid:PMC6809119" ; - sc:description """1881. The Agency for Healthcare Research and Quality (AHRQ) Safety Program for Improving Antibiotic Use. - -AbstractBackgroundThe AHRQ Safety Program for Improving Antibiotic Use aims to improve antibiotic (abx) use in acute, long-term, and outpatient care settings by enhancing abx stewardship programs (ASP) and engaging frontline providers to incorporate stewardship into daily abx decision-making, with an emphasis on viewing appropriate prescribing as a patient safety issue. We report on the impact of implementation of the Acute Care Safety Program on abx use and Clostridioides difficile in a cohort of US hospitals. MethodsThe Acute Care Safety Program was implemented from December 2017 to November 2018. At least one unit from each hospital participated. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'abx', 'difficile LabID', 'LabID', 'abx prescribing'""" ; - sc:featureList edam:operation_2409, - edam:operation_3482, - edam:operation_3803 ; - sc:name "AHRQ" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6809119/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3303, - edam:topic_3500 ; - sc:citation , - "pmcid:PMC6890601", - "pubmed:31828080" ; - sc:description """Development of Reporting Guidelines for Animal Health Surveillance-AHSURED. - -The objective of the present project is to produce a set of reporting guidelines to facilitate consistent and credible reporting of surveillance activities and their outcomes. - -The rationale behind it is that by moving towards more output−based standards for surveillance, and allowing greater flexibility in surveillance design, there will be an increased need for transparency about design features as well as how the activities are actually implemented. - -The choice of a Wiki format was motivated by the fact that refinements and improvements of the guidelines are both expected and welcome, so feel free to contribute by sending your comments to ahsured@sva.se. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Surveillance-AHSURED', 'Animal Health Surveillance-AHSURED'""" ; - sc:featureList edam:operation_3907 ; - sc:name "AHSURED" ; - sc:url "https://github.com/SVA-SE/AHSURED/wiki" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -3522,7 +3206,7 @@ The choice of a Wiki format was motivated by the fact that refinements and impro "Zaoyuan Kuang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3512 ; @@ -3541,7 +3225,7 @@ AIDE is a statistical method which identifies full-length mRNA isoforms from a n sc:url "https://github.com/Vivianstats/AIDE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, edam:topic_3173, @@ -3559,7 +3243,7 @@ BACKGROUND:The data deluge can leverage sophisticated ML techniques for function sc:url "https://bitbucket.org/cellsandmachines/aikyatan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3474, @@ -3583,7 +3267,7 @@ BACKGROUND:The data deluge can leverage sophisticated ML techniques for function "Yujian Shi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3384, @@ -3602,7 +3286,7 @@ BACKGROUND:The data deluge can leverage sophisticated ML techniques for function biotools:primaryContact "Mateusz Buda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0102, @@ -3615,7 +3299,7 @@ BACKGROUND:The data deluge can leverage sophisticated ML techniques for function sc:url "https://github.com/lyotvincent/AJIA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, edam:topic_0659, @@ -3633,13 +3317,13 @@ ALACD is to get the drug-lncRNA assoications via bi-level optimization and decod sc:url "https://github.com/wangyc82/ALACD-v1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Rapid detection of candidate horizontal gene transfers across the tree of life." ; sc:name "ALIENNESS" ; sc:url "http://alienness.sophia.inra.fr/cgi/index.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pmcid:PMC6686235", "pubmed:31391091" ; @@ -3649,7 +3333,7 @@ ALACD is to get the drug-lncRNA assoications via bi-level optimization and decod sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31391091" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, edam:topic_3474 ; @@ -3664,7 +3348,7 @@ ALACD is to get the drug-lncRNA assoications via bi-level optimization and decod sc:url "https://github.com/byin-cwi/ALS-Deeplearning" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3421, edam:topic_3452 ; @@ -3675,7 +3359,7 @@ ALACD is to get the drug-lncRNA assoications via bi-level optimization and decod sc:url "http://lids.ic.unicamp.br/downloads" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3174, @@ -3697,7 +3381,7 @@ ALACD is to get the drug-lncRNA assoications via bi-level optimization and decod biotools:primaryContact "Xiang Zhan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3068, @@ -3712,14 +3396,14 @@ ALACD is to get the drug-lncRNA assoications via bi-level optimization and decod a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Trajectory data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259 ; sc:citation , @@ -3743,7 +3427,7 @@ The interface was designed to provide routines for efficient gradient computatio "Fabian Fröhlich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, edam:topic_3366, @@ -3769,7 +3453,7 @@ AMON includes two scripts. extract_ko_genome_from_organism.py takes a KEGG organ sc:url "https://github.com/lozuponelab/AMON" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3301, edam:topic_3305, @@ -3785,7 +3469,7 @@ AMON includes two scripts. extract_ko_genome_from_organism.py takes a KEGG organ sc:url "https://msberends.github.io/AMR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0749, edam:topic_2828 ; @@ -3798,7 +3482,7 @@ AMON includes two scripts. extract_ko_genome_from_organism.py takes a KEGG organ sc:url "https://doi.org/10.1107/S2053230X19009853" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3304, @@ -3821,7 +3505,7 @@ AMON includes two scripts. extract_ko_genome_from_organism.py takes a KEGG organ "Qiaoying Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0736, @@ -3843,14 +3527,14 @@ AMON includes two scripts. extract_ko_genome_from_organism.py takes a KEGG organ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2042" ; - sc:name "Evidence" ; - sc:sameAs "http://edamontology.org/data_2042" ] ; + sc:additionalType "http://edamontology.org/data_2042" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Evidence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2042" ; - sc:name "Evidence" ; - sc:sameAs "http://edamontology.org/data_2042" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2042" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Evidence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Ontology", "Web API", @@ -3896,22 +3580,8 @@ iii) a Genomicus gene synteny browser.""" ; biotools:primaryContact , . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_2885, - edam:topic_3517 ; - sc:citation , - "pmcid:PMC6662680", - "pubmed:31372216" ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE BROKEN! | > CORRECT NAME OF TOOL COULD ALSO BE 'PoO', 'PoOxE', 'triads', 'lip' | A genome-wide scan of cleft lip triads identifies parent-of-origin interaction effects between ANK3 and maternal smoking, and between ARHGEF10 and alcohol consumption | Background: Although both genetic and environmental factors have been reported to influence the risk of isolated cleft lip with or without cleft palate (CL P), the exact mechanisms behind CL P are still largely unaccounted for. We recently developed new methods to identify parent-of-origin (PoO) interactions with environmental exposures (PoOxE) and applied them to families with children born with isolated cleft palate only. Here, we used the same genome-wide association study (GWAS) dataset and methodology to screen for PoOxE effects in the larger sample of CL P triads" ; - sc:featureList edam:operation_0487, - edam:operation_0488, - edam:operation_3196 ; - sc:name "ANK3" ; - sc:url "https://github.com/oeh041/A-genome-wide-scan-of-cleft-lip-triads-identifies-parent-of-origin-interaction-effects-between-ANK3" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3336, edam:topic_3379, edam:topic_3474 ; @@ -3924,7 +3594,7 @@ iii) a Genomicus gene synteny browser.""" ; sc:url "https://github.com/MortySn/ANMF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, @@ -3946,7 +3616,7 @@ iii) a Genomicus gene synteny browser.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -3966,7 +3636,7 @@ iii) a Genomicus gene synteny browser.""" ; biotools:primaryContact "Wout Bittremieux" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3172, @@ -3990,7 +3660,7 @@ iii) a Genomicus gene synteny browser.""" ; "Yunxia Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -4011,7 +3681,7 @@ iii) a Genomicus gene synteny browser.""" ; sc:url "https://aoe.dbcls.jp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2840, edam:topic_3343 ; @@ -4023,7 +3693,7 @@ iii) a Genomicus gene synteny browser.""" ; sc:url "https://aopwiki.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2840, edam:topic_3314 ; @@ -4034,27 +3704,8 @@ iii) a Genomicus gene synteny browser.""" ; sc:name "AOPERA" ; sc:url "https://igbb.github.io/AOPERA_HTML" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0602, - edam:topic_2840, - edam:topic_3172, - edam:topic_3378 ; - sc:citation , - "pubmed:31707421" ; - sc:description """Integrating adverse outcome pathways (AOPs) and high throughput in vitro assays for better risk evaluations. - -The emergence of high throughput in vitro assays has the potential to significantly improve toxicological evaluations and lead to more efficient, accurate, and less animal-intensive testing. However, directly using all available in vitro assays in a model is usually impractical and inefficient. On the other hand, mechanistic knowledge has always been critical for toxicological evaluations and should not be ignored even with the increasing availability of data. In this paper, we illustrate a promising approach to integrating mechanistic knowledge with multiple data sources for in vitro assays, using drug-induced liver injury (DILI) as an example. The adverse outcome pathway (AOP) framework was used as a source for mechanistic knowledge and as a selection tool for high throughput predictors. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'AOPwiki'""" ; - sc:featureList edam:operation_3659 ; - sc:name "AOPs" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31707421" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, edam:topic_3474 ; @@ -4073,7 +3724,7 @@ Input your sequence:(FASTA format)""" ; sc:url "http://server.malab.cn/AOPs-SVM/index.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3318, edam:topic_3382 ; @@ -4086,7 +3737,7 @@ Input your sequence:(FASTA format)""" ; sc:url "https://github.com/AOtools/aotools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -4106,23 +3757,8 @@ Input your sequence:(FASTA format)""" ; biotools:primaryContact "Cheng Chang", "Zhiqiang Gao" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3170, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6821429", - "pubmed:31501864" ; - sc:description "> VERY_LOW CONFIDENCE! | Cell-type-specific analysis of alternative polyadenylation using single-cell transcriptomics data | This is a package and a shell script for alternative polyadenylation (APA) analysis of 3' tag single-cell RNA-seq data | This is a package and a shell script for alternative polyadenylation (APA) analysis of 3' tag single-cell RNA-seq data. The shell script \"scAPAscript.R\" takes as input BAM files generated by 10x 3' tag RNA seq pipline and the results of cell clustering" ; - sc:featureList edam:operation_0428, - edam:operation_2495, - edam:operation_3222 ; - sc:license "BSD-3-Clause" ; - sc:name "APA" ; - sc:url "https://github.com/ElkonLab/scAPA" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, edam:topic_0625, @@ -4139,30 +3775,8 @@ The APA atlas refers to " A lternative P oly A denylation atlas in human tissues sc:name "APAatlas" ; sc:url "https://hanlab.uth.edu/apa/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0077, - edam:topic_0121, - edam:topic_0154, - edam:topic_3390, - edam:topic_3697 ; - sc:citation , - "pmcid:PMC6795089", - "pubmed:31649628" ; - sc:description """Peptide Antimicrobials in the Eco-Active Intestinal Chemosphere. - -The Antimicrobial Peptide Database (APD) contains 3156 antimicrobial peptides from six kingdoms (349 bacteriocins/peptide antibiotics from bacteria, 5 from archaea, 8 from protists, 20 from fungi, 352 from plants, and 2342 from animals, including some synthetic peptides) with the following activity:. - -Antibacterial peptides; Antibiofilm peptides; Anti-MRSA peptides;. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Microcins Enterobacteriaceae', 'microcins', 'intestinal', 'chemosphere'""" ; - sc:featureList edam:operation_0407, - edam:operation_2478, - edam:operation_3646 ; - sc:name "APD3" ; - sc:url "http://aps.unmc.edu/AP/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -4181,7 +3795,7 @@ Antibacterial peptides; Antibiofilm peptides; Anti-MRSA peptides;. biotools:primaryContact "Bin Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3318, edam:topic_3416, @@ -4194,7 +3808,7 @@ Antibacterial peptides; Antibiofilm peptides; Anti-MRSA peptides;. sc:url "http://www.aphirm.org.au" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, edam:topic_2885, @@ -4212,7 +3826,7 @@ Parentage assignment package. Parentage assignment is performed based on observe sc:url "https://cran.r-project.org/package=APIS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3500 ; sc:citation ; @@ -4228,22 +3842,8 @@ Parentage assignment package. Parentage assignment is performed based on observe biotools:primaryContact "Federico Busato", "Nicola Bombieri" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_3174, - edam:topic_3293 ; - sc:citation , - "pubmed:31545363" ; - sc:description "> NAME EQUAL TO (PUB. DIFFERENT) bio.tools/apples | Scalable Distance-based Phylogenetic Placement with or without Alignments | distance based phylogenetic placement | APPLES stands for Accurate Phylogenetic Placement with LEast Squares and addresses the problem of phylogenetic placement of DNA and protein sequences into an already existing reference tree. APPLES is a command-line tool and it can run on Linux, Mac OSX, and Windows" ; - sc:featureList edam:operation_0545, - edam:operation_0547, - edam:operation_3478 ; - sc:license "MIT" ; - sc:name "APPLES_autogenerated" ; - sc:url "http://github.com/balabanmetin/apples" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, edam:topic_2229, @@ -4262,7 +3862,7 @@ A web portal using the Shiny framework in R has been developed to visualize rank sc:url "https://apsic.shinyapps.io/APSiC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0659, edam:topic_0749, @@ -4281,7 +3881,7 @@ This repo contains python processing scripts for AQRNA-seq data analysis. The sc sc:url "https://github.com/dedonlab/aqrnaseq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602 ; @@ -4301,7 +3901,7 @@ This repo contains python processing scripts for AQRNA-seq data analysis. The sc sc:url "http://www.aquaduct.pl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3068, @@ -4317,7 +3917,7 @@ AQUA-MER is useful for researchers who want to investigate mercury speciation in sc:url "https://aquamer.ornl.gov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0749, @@ -4337,7 +3937,7 @@ AQUA-MER is useful for researchers who want to investigate mercury speciation in biotools:primaryContact "Sambit Mishra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3382, edam:topic_3474 ; @@ -4356,26 +3956,8 @@ ARA stands for Accurate, Reliable and Active. Any method that works on patient d sc:name "ARA" ; sc:url "https://github.com/animgoeth/ARA-CNN" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_3322, - edam:topic_3384, - edam:topic_3403 ; - sc:citation , - "pmcid:PMC6798517" ; - sc:description """2303 Trauma-related acute respiratory distress syndrome (ARDS) in India. - -OBJECTIVES SPECIFIC AIMS: Aim 1: To determine the true incidence of trauma-related acute respiratory distress syndrome (ARDS) in India. We propose to perform a prospective observational study to determine the incidence of ARDS in India. Aim 2: To perform a preliminary assessment of risk factors for ARDS in the Indian trauma population. We will leverage these findings against the global ARDS data to provide a foundation for further interventional studies. Aim 3: To evaluate the current management strategies and patient outcomes from ARDS in trauma subjects admitted to the Jai Prakash Narayan Apex Trauma Center (JPNATC). These findings will identify areas in need of practice-based performance improvement in ARDS therapies in India. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ARDS trauma', 'incidence ARDS trauma'""" ; - sc:featureList edam:operation_3799 ; - sc:name "ARDS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6798517/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3575, edam:topic_3673 ; @@ -4387,21 +3969,8 @@ OBJECTIVES SPECIFIC AIMS: Aim 1: To determine the true incidence of trauma-relat sc:name "ARDaP" ; sc:url "http://github.com/dsarov/ARDaP" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3174, - edam:topic_3301, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6716844", - "pubmed:31466530" ; - sc:description "> LOW CONFIDENCE! | Identification of discriminatory antibiotic resistance genes among environmental resistomes using extremely randomized tree algorithm | Extract discriminatory ARGs from metagenomics samples" ; - sc:featureList edam:operation_3891 ; - sc:license "BSD-2-Clause" ; - sc:name "ARG" ; - sc:url "https://github.com/gaarangoa/ExtrARG" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3168, @@ -4421,7 +3990,7 @@ OBJECTIVES SPECIFIC AIMS: Aim 1: To determine the true incidence of trauma-relat biotools:primaryContact "Ye Deng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3170, @@ -4444,43 +4013,8 @@ OBJECTIVES SPECIFIC AIMS: Aim 1: To determine the true incidence of trauma-relat biotools:primaryContact , . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3334, - edam:topic_3337, - edam:topic_3384, - edam:topic_3400, - edam:topic_3577 ; - sc:citation , - "pubmed:31755111" ; - sc:description """Research Methods and Baseline Data for an Initial Patient Cohort. - -The American Registry for Migraine Research (ARMR). - -The American Migraine Foundation (AMF) is a non-profit organization dedicated to the advancement of research and awareness surrounding migraine. - -The American Migraine Foundation (AMF) is a non-profit organization dedicated to the advancement of research and awareness surrounding migraine. - -Learn more about the American Registry for Migraine Research. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'American Registry Migraine Research'""" ; - sc:featureList edam:operation_3431 ; - sc:name "ARMR" ; - sc:url "http://www.armr.org" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0632, - edam:topic_3168, - edam:topic_3174 ; - sc:citation ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | A New and Conceptually Different Approach for 16S-based Taxonomic Profiling | Here we describe ARSA-16S, a tool and accompanying reference database for the analysis of bacterial 16S amplicons. Among other features, ARSA-16S is based on a new model, approach, and algorithm for sequence-level assignment of reads understood as probability distributions, assigns reads individually, and is designed with non-overlapping amplicons covering two non-contiguous regions. A new set of primers for the amplification and sequencing of the V4 and V6 regions is also provided" ; - sc:featureList edam:operation_0308, - edam:operation_2495, - edam:operation_3460 ; - sc:name "ARSA-16S" ; - sc:url "https://doi.org/10.20944/PREPRINTS201909.0170.V1" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_2269, edam:topic_3318, @@ -4498,7 +4032,7 @@ BACKGROUND:The American Society of Anesthesiologists Physical Status (ASA-PS) cl sc:url "https://s-spire-clintools.shinyapps.io/ASA_PS_Estimator/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0152, @@ -4516,10 +4050,10 @@ BACKGROUND:The American Society of Anesthesiologists Physical Status (ASA-PS) cl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_3590" ; + sc:name "DNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -4546,7 +4080,7 @@ BACKGROUND:The American Society of Anesthesiologists Physical Status (ASA-PS) cl biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3419, edam:topic_3444, @@ -4563,57 +4097,39 @@ This repository contains the implementation of ASD-DiagNet algorithm""" ; sc:name "ASD-DiagNet" ; sc:url "https://github.com/pcdslab/ASD-DiagNet" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_0632, - edam:topic_3168, - edam:topic_3305, - edam:topic_3810 ; - sc:citation , - "pmcid:PMC6935939", - "pubmed:31694969" ; - sc:description """Rapid Sequence-Based Characterization of African Swine Fever Virus by Use of the Oxford Nanopore MinION Sequence Sensing Device and a Companion Analysis Software Tool. - -https://www.ncbi.nlm.nih.gov/pubmed/?term=31694969. - -O'Donnell VK, Grau FR, Mayr GA, Sturgill Samayoa, Dodd KA, Barrette RW., RAPID SEQUENCE-BASED CHARACTERIZATION OF AFRICAN SWINE FEVER VIRUS USING THE OXFORD NANOPORE MINION SEQUENCE SENSING DEVICE AND A COMPANION ANALYSIS SOFTWARE TOOL. J Clin Microbiol. 2019 Nov 6. pii: JCM.01104-19. doi: 10.1128/JCM.01104-19. - -Foreign Animal Disease Diagnostic Laboratory, National Veterinary Services Laboratories, Animal and Plant Health Inspection Service, United States Department of Agriculture, Plum Island Animal Disease Center, New York. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ASF-FAST', 'swine fever', 'swine'""" ; - sc:featureList edam:operation_0310, - edam:operation_3185, - edam:operation_3200, - edam:operation_3211 ; - sc:license "MIT" ; - sc:name "ASFV" ; - sc:url "https://github.com/rwbarrette/ASFV_MinION_RapidAssembler" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Command-line tool" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Library", + "Web application" ; sc:applicationSubCategory edam:topic_0749, + edam:topic_1317, edam:topic_2640, edam:topic_3360, edam:topic_3382, - edam:topic_3400 ; + edam:topic_3400, + edam:topic_3500 ; sc:citation , + , "pmcid:PMC6917801", - "pubmed:31848351" ; + "pubmed:31848351", + "pubmed:35972352" ; sc:description """Alignment by Simultaneous Harmonization of Layer/Adjacency Registration. Highly multiplexed immunofluorescence images and single-cell data of immune markers in tonsil and lung cancer.""" ; sc:featureList edam:operation_0337, edam:operation_3435, edam:operation_3443 ; + sc:isAccessibleForFree true ; sc:license "MIT" ; sc:name "ASHLAR" ; sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:url "https://github.com/jmuhlich/ashlar" . + sc:softwareHelp ; + sc:url "https://labsyspharm.github.io/ashlar/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320, edam:topic_3512 ; @@ -4627,44 +4143,8 @@ Highly multiplexed immunofluorescence images and single-cell data of immune mark sc:name "ASJA" ; sc:url "https://github.com/HuangLab-Fudan/ASJA" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3384, - edam:topic_3401, - edam:topic_3444 ; - sc:citation , - "pmcid:PMC6690842", - "pubmed:31406952" ; - sc:description "Imaging Clinically Relevant Pain States Using Arterial Spin Labeling | The Center for Functional Neuroimaging at the University of Pennsylvania provides unification for currently distributed medical center efforts in physiological and clinical brain imaging and advance the general interests of the brain imaging community through targeted methods development, symposia and colloquia, handling of regulatory issues, and fund-raising efforts | Updated manual, ASL MoCo code, and asl_perf_subtract.m. Major new features include: | asl_perf_subtract.m has been updated with new parameters (T1b, T2wm, Rwm-blood) from the latest literature. CBF quantification for PASL using voxelwise M0 value has been updated. Please see the document therein for the details | Made a new version for SPM12. Major new features include: | 1) wraper functors for most of the processing steps," ; - sc:featureList edam:operation_3799 ; - sc:name "ASL" ; - sc:url "https://cfn.upenn.edu/~zewang/ASLtbx.php" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0749, - edam:topic_2885, - edam:topic_3295, - edam:topic_3674 ; - sc:citation ; - sc:description """Allele-specific DNA methylation is increased in cancers and its dense mapping in normal plus neoplastic cells increases the yield of disease-associated regulatory SNPs. - -Human hg19 chr10:122795171-122795171 UCSC Genome Browser v391. - -UCSC Genome Browser on Human Feb. 2009 (GRCh37/hg19) Assembly. - -chr10:122,795,171-122,795,171 1 bp. - -Click on a feature for details. Click or drag in the base position track to zoom in. Click side bars for track options. Drag side bars or labels up or down to reorder tracks. Drag tracks left or right to new position. Press "?" for keyboard shortcuts""" ; - sc:featureList edam:operation_0308, - edam:operation_0484, - edam:operation_0487, - edam:operation_3196, - edam:operation_3435 ; - sc:name "ASM" ; - sc:url "https://genome.ucsc.edu/s/TyckoLab/High%20Confidence%20ASM" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0610, edam:topic_0623, @@ -4682,7 +4162,7 @@ ASM-Clust is implemented in bash with two helper scripts in perl, and will take sc:url "https://github.com/dspeth/ASM_clust" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0610, @@ -4704,7 +4184,7 @@ ASM-Clust is implemented in bash with two helper scripts in perl, and will take biotools:primaryContact "Shweta Bansal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0659, @@ -4721,7 +4201,7 @@ ASM-Clust is implemented in bash with two helper scripts in perl, and will take sc:url "http://ipf.sustech.edu.cn/pub/asrd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0820, edam:topic_3324, edam:topic_3384 ; @@ -4742,7 +4222,7 @@ Please Cite: Jiangpeng Wu, Jun Bai, Wei Wang, Lili Xi, Pengyi Zhang, Jingfeng La sc:url "http://lishuyan.lzu.edu.cn/ATB/ATBdiscrimination.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0209, edam:topic_3474 ; @@ -4756,7 +4236,7 @@ Please Cite: Jiangpeng Wu, Jun Bai, Wei Wang, Lili Xi, Pengyi Zhang, Jingfeng La sc:url "https://github.com/dqwei-lab/ATC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3474 ; sc:citation , @@ -4769,23 +4249,8 @@ Please Cite: Jiangpeng Wu, Jun Bai, Wei Wang, Lili Xi, Pengyi Zhang, Jingfeng La sc:name "ATEN" ; sc:url "https://github.com/ningshi/ATEN" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3174, - edam:topic_3308, - edam:topic_3517 ; - sc:citation , - , - "pubmed:31427789" ; - sc:description "> NAME (ATLAS) SIMILAR TO (PUB. DIFFERENT) bio.tools/atlas2 (Atlas2), bio.tools/atlas (Atlas) | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/pymzml (GITHUB.COM) | > CORRECT NAME OF TOOL COULD ALSO BE 'GWASs' | a Snakemake workflow for assembly, annotation, and genomic binning of metagenome sequence data | A global overview of pleiotropy and genetic architecture in complex traits | ATLAS - Three commands to start analysing your metagenome data | Genome wide association study ATLAS | Welcome to the Atlas of GWAS Summary Statistics | This atlas is a database of publicly available GWAS summary statistics | All databases and dependencies are installed on the fly in the directory db-dir | Free document hosting provided by Read the Docs" ; - sc:featureList edam:operation_0310, - edam:operation_0362, - edam:operation_3798 ; - sc:license "BSD-3-Clause" ; - sc:name "ATLAS_autogenerated" ; - sc:url "https://atlas.ctglab.nl" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3421, edam:topic_3474 ; @@ -4796,7 +4261,7 @@ Please Cite: Jiangpeng Wu, Jun Bai, Wei Wang, Lili Xi, Pengyi Zhang, Jingfeng La sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31468306" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3517, @@ -4816,7 +4281,7 @@ Please Cite: Jiangpeng Wu, Jun Bai, Wei Wang, Lili Xi, Pengyi Zhang, Jingfeng La biotools:primaryContact "Patrik Waldmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0218, edam:topic_3474 ; @@ -4831,7 +4296,7 @@ Please Cite: Jiangpeng Wu, Jun Bai, Wei Wang, Lili Xi, Pengyi Zhang, Jingfeng La sc:url "http://bejerano.stanford.edu/AVADA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3512, edam:topic_3676 ; @@ -4845,153 +4310,8 @@ Please Cite: Jiangpeng Wu, Jun Bai, Wei Wang, Lili Xi, Pengyi Zhang, Jingfeng La sc:name "AVA,Dx" ; sc:url "https://bromberglab.org/project/avadx/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0749, - edam:topic_3169 ; - sc:citation , - "pubmed:31504203" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'TFARM' (bio.tools/tfarm), 'MOTIVATION:Genome' | Association rule mining to identify transcription factor interactions in genomic regions | MOTIVATION:Genome regulatory networks have different layers and ways to modulate cellular processes, such as cell differentiation, proliferation and adaptation to external stimuli. Transcription factors and other chromatin associated proteins act as combinatorial protein complexes that control gene transcription. Thus, identifying functional interaction networks among these proteins is a fundamental task to understand the genome regulation framework. RESULTS:We developed a novel approach to infer interactions among transcription factors in user selected genomic regions, by combining the computation of association rules and of a novel Importance Index on ChIP-seq data sets" ; - sc:name "AVAILABILITY:A" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31504203" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0632, - edam:topic_3512, - edam:topic_3697 ; - sc:citation , - "pubmed:31504180" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Distanced' | Accurate estimation of microbial sequence diversity with Distanced | Distanced is a bioinformatics tool that estimates diversity of microbes. Specifically, it estimates the diversity of ribosomal DNA sequences within microbial communities. Estimating diversity of microbes is a challenge because errors in sequence create false sequences and inflate diversity. Distanced overcomes this problem by correcting values of mean pairwise distance, a measure of within-sample diversity, for the expected increase after sequencing | Distanced requires a set a DNA sequence reads in fastq format. A set of reference sequences in fasta format is optional. If reference sequences are provided, Distanced will report the actual diversity of the DNA sequences, providing a check on accuracy" ; - sc:featureList edam:operation_0289, - edam:operation_3192, - edam:operation_3237 ; - sc:name "AVAILABILITY:Distanced" ; - sc:url "https://github.com/thackmann/Distanced" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196 ; - sc:citation , - "pubmed:31504206" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Elmeri', 'Elmeri improves', 'Elmeri required', 'Rmaps' | Fast and Accurate Correction of Optical Mapping Data via Spaced Seeds | Elmeri is a program to correct errors in raw optical map data (Rmaps) | L. Salmela, K. Mukherjee, S.J. Puglisi, M.D. Muggli, and C. Boucher: Fast and accurate correction of optical mapping data with spaced seeds" ; - sc:featureList edam:operation_0524, - edam:operation_3216, - edam:operation_3472 ; - sc:license "AGPL-3.0" ; - sc:name "AVAILABILITY:Elmeri" ; - sc:url "https://github.com/LeenaSalmela/Elmeri" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_0203, - edam:topic_0621, - edam:topic_3170, - edam:topic_3512 ; - sc:citation , - "pubmed:31750902" ; - sc:description """Accurate detection of short and long active ORFs using Ribo-seq data. - -A tool for accurately detecting actively translating ORFs from Ribo-seq data. - -We highly recommend that you install ribotricer via conda:. - -conda install -c bioconda ribotricer. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ribotricer', 'ribotricer-results'""" ; - sc:featureList edam:operation_0436, - edam:operation_3359, - edam:operation_3454 ; - sc:license "GPL-3.0" ; - sc:name "AVAILABILITY:Ribotricer" ; - sc:url "https://github.com/smithlabcode/ribotricer" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0091, - edam:topic_0218, - edam:topic_3303, - edam:topic_3474 ; - sc:citation , - "pubmed:31730202" ; - sc:description """Cross-lingual Semantic Annotation of Biomedical Literature. - -× Looking for UMLSmapper's demo? Follow this link. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'annotation transfer'""" ; - sc:featureList edam:operation_2422, - edam:operation_3778 ; - sc:name "AVAILABILITY:UMLSmapper" ; - sc:url "https://snlt.vicomtech.org/umlsmapper" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0196, - edam:topic_3673 ; - sc:citation , - "pubmed:31693070" ; - sc:description """Influenza Classification from Short Reads with VAPOR Facilitates Robust Mapping Pipelines and Zoonotic Strain Detection for Routine Surveillance Applications. - -VAPOR is a tool for classification of Influenza samples from raw short read sequence data for downstream bioinformatics analysis. VAPOR is provided with a fasta file of full-length sequences (> 20,000) for a given segment, a set of reads, and attempts to retrieve a reference that is closest to the sample strain. - -The VAPOR module executable script can be installed with pip:. - -sudo pip3 install git+https://github.com/connor-lab/vapor. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'VAPOR', 'VAPOR Facilitates', 'VAPOR retrieved', 'VAPOR Facilitates Robust'""" ; - sc:featureList edam:operation_0524, - edam:operation_2422, - edam:operation_3198 ; - sc:license "GPL-3.0" ; - sc:name "AVAILABILITY:VAPOR" ; - sc:url "https://github.com/connor-lab/vapor" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2275 ; - sc:citation , - "pubmed:31393558" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'ZING', 'template-free' | Integrating ab initio and template-based algorithms for protein-protein complex structure prediction | ZING is a method to identify and combine high-confidence protein-protein complex structure predictions of a template-free method (ZDOCK) with a template-based method (SPRING) | python ZING.py [-h] [-zdir zdres] [-sdir spres] | -h, --help show this help message and exit" ; - sc:featureList edam:operation_0476, - edam:operation_2492, - edam:operation_3899 ; - sc:name "AVAILABILITY:ZING" ; - sc:url "https://github.com/weng-lab/ZING.git" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2229, - edam:topic_3170 ; - sc:citation , - "pubmed:31794001" ; - sc:description """schex avoids overplotting for large single cell RNA-sequencing datasets. - -Hexbin plots for single cell omics data. - -Builds hexbin plots for variables and dimension reduction stored in single cell omics data such as SingleCellExperiment and SeuratObject. The ideas used in this package are based on the excellent work of Dan Carr, Nicholas Lewin-Koh, Martin Maechler and Thomas Lumley. - -The goal of schex is to provide easy plotting of hexagon cell representations of single cell data stored in SingleCellExperiment or Seurat objects. - -You can install schex using the Bioconductor project:. - -# install.packages("BiocManager"). - -DimensionReduction, Sequencing, SingleCell, Software, Visualization. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'schex'""" ; - sc:featureList edam:operation_0337 ; - sc:license "GPL-3.0" ; - sc:name "AVAILABILITY:schex" ; - sc:url "http://bioconductor.org/packages/release/bioc/html/schex.html" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3308, - edam:topic_3360, - edam:topic_3518 ; - sc:citation , - "pubmed:31359040" ; - sc:description "P-value evaluation, variability index and biomarker categorization for adaptively weighted Fisher's meta-analysis method in omics applications | fast computing for adaptively weighted fisher's method | Github repository for adaptively weighted fisher's method (AW-Fisher)" ; - sc:featureList edam:operation_3501 ; - sc:name "AW-Fisher" ; - sc:url "https://github.com/Caleb-Huo/AWFisher" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, @@ -5005,18 +4325,8 @@ DimensionReduction, Sequencing, SingleCell, Software, Visualization. sc:name "AbLIFT" ; sc:url "http://AbLIFT.weizmann.ac.il" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3399, - edam:topic_3403 ; - sc:citation , - "pubmed:31487467" ; - sc:description "> HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'Aboriginal Torres Strait Islander', 'Torres Strait Islander stroke survivors', 'Torres Strait Islander stroke', 'Aboriginal Torres Strait' | Are we there yet? Exploring the journey to quality stroke care for Aboriginal and Torres Strait Islander peoples in rural and remote Queensland | INTRODUCTION:The burden of stroke for Aboriginal and Torres Strait Islander peoples in Australia is significant. The National Stroke Foundation has identified that Aboriginal and Torres Strait Islander people are more likely to have a stroke at a younger age than the non-Indigenous population and are twice as likely for stroke to result in death, and that those Aboriginal and Torres Strait Islander people living in rural and remote areas are less likely to have access to an acute stroke unit" ; - sc:name "Aboriginal Torres Strait Islander stroke" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31487467" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602 ; @@ -5035,7 +4345,7 @@ DimensionReduction, Sequencing, SingleCell, Software, Visualization. biotools:primaryContact "Val F. Lanza" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -5050,38 +4360,8 @@ DimensionReduction, Sequencing, SingleCell, Software, Visualization. sc:name "AcRanker" ; sc:url "https://github.com/amina01/AcRanker" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2269, - edam:topic_2640, - edam:topic_3379 ; - sc:citation , - "pubmed:31451012" ; - sc:description "A web-based clinical trials tool for monitoring and predicting accrual for early-phase cancer studies | BACKGROUND:Monitoring subject recruitment is key to the success of a clinical trial. Accordingly, researchers have developed accrual-monitoring tools to support the design and conduct of trials. At an institutional level, delays in identifying studies with high risk of accrual failure can lead to inefficient and costly trials with little chances of meeting study objectives. Comprehensive accrual monitoring is necessary to the success of the research enterprise. METHODS:This article describes the design and implementation of the University of Kansas Cancer Center Accrual Prediction Program, a web-based platform was developed to support comprehensive accrual monitoring and prediction for all active clinical trials" ; - sc:name "Accrual Prediction Program" ; - sc:url "https://journals.sagepub.com/doi/10.1177/1740774519871474" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3334, - edam:topic_3384, - edam:topic_3403, - edam:topic_3419, - edam:topic_3575 ; - sc:citation , - "pmcid:PMC6798712" ; - sc:description """2047 Mental illness public stigma, culture, and acculturation among Vietnamese Americans. - -OBJECTIVES SPECIFIC AIMS: Stigma has been recognized as a major impediment to accessing mental health care among Vietnamese and Asian Americans (Leong and Lau, 2001; Sadavoy et al., 2004; Wynaden et al., 2005; Fong and Tsuang, 2007). The underutilization of mental health care, and disparities in both access and outcomes have been attributed to a large extent to stigma and cultural characteristics of this population (Wynaden et al., 2005; Jang et al., 2009; Leung et al., 2010; Spencer et al., 2010; Jimenez et al., 2013; Augsberger et al., 2015). - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'mental illness stigma Acculturation', 'Acculturation mental illness stigma'""" ; - sc:featureList edam:operation_3435, - edam:operation_3659 ; - sc:name "Acculturation mental illness stigma Acculturation" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6798712/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0632, @@ -5098,23 +4378,8 @@ OBJECTIVES SPECIFIC AIMS: Stigma has been recognized as a major impediment to ac sc:name "AcetoBase" ; sc:url "https://acetobase.molbio.slu.se" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3318, - edam:topic_3337 ; - sc:citation , - "pubmed:31834945" ; - sc:description """24-Hour Activity Cycle in Older Adults Using Wrist-Worn Accelerometers. - -ActiGraph is dedicated to providing our clients with highly accurate, innovative, and cost effective objective monitoring solutions to help them achieve their research and clinical data collection, analysis, and management objectives. Through close collaborative relationships with our clients, we strive to proactively identify emerging trends and understand the changing landscape of our industry, allowing us to deliver cutting edge hardware, software, and data management solutions to meet the evolving needs of the scientific community. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'GGIR', 'LPA MVPA', 'MVPA', '24-Hour Activity Cycle Older Adults Using Wrist-Worn Accelerometers'""" ; - sc:featureList edam:operation_3435 ; - sc:name "ActiGraph" ; - sc:url "https://www.actigraphcorp.com/actigraph-link/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2269, @@ -5140,31 +4405,8 @@ ActiGraph is dedicated to providing our clients with highly accurate, innovative sc:url "http://reimandlab.org/software/activedriver/" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_2640, - edam:topic_2830, - edam:topic_3379, - edam:topic_3676 ; - sc:citation , - "pmcid:PMC6217363" ; - sc:description """EXTH-49. NOVEL AD-REIC VECTOR WITH THE SUPER GENE EXPRESSION (SGE) SYSTEM (AD-SGE-REIC) AS A PROMISING THERAPEUTIC AGENT FOR MALIGNANT GLIOMA. - -AbstractINTRODUCTIONReduced expression in immortalized cells Dickkopf-3 (REIC Dkk-3) is a tumor suppressor and therapeutic gene in many human cancers. We have investigated the anti-glioma effect of the adenovirus vector carrying REIC Dkk-3 (Ad-CAG-REIC). Recently an Ad-REIC vector with the super gene expression (SGE) system (Ad-SGE-REIC) has been developed for higher protein expression and therapeutic effects than the conventional adenoviral vector (Ad-CAG-REIC). In this study, we evaluated the anti-glioma effect of the Ad-SGE-REIC against malignant glioma. - -||| HOMEPAGE BROKEN!. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/Diffeomorphic (IC.OUP.COM). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Ad-CAG-REIC', 'REIC', 'Ad-SGE-REIC Ad-CAG-REIC Ad-LacZ', 'Ad-REIC'""" ; - sc:featureList edam:operation_0416, - edam:operation_2495, - edam:operation_3454 ; - sc:name "Ad-SGE-REIC" ; - sc:url "http://ic.oup.com" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3315 ; sc:citation ; @@ -5176,7 +4418,7 @@ AbstractINTRODUCTIONReduced expression in immortalized cells Dickkopf-3 (REIC Dk sc:url "https://github.com/tudelft3d/adtree" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, @@ -5191,52 +4433,8 @@ AbstractINTRODUCTIONReduced expression in immortalized cells Dickkopf-3 (REIC Dk sc:name "AdaReg" ; sc:url "https://github.com/mwgrassgreen/AdaReg" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_0632, - edam:topic_0654, - edam:topic_0780, - edam:topic_3511 ; - sc:citation ; - sc:description """Repository-based plasmid design Cost-optimal Gibson Assembly with repository DNA selection and primer generation. - -Addgene, the nonprofit global plasmid repository, archives and distributes plasmids for scientists, while also providing free molecular biology resources. - -Please note: Your browser does not support the features used on Addgene's website. You may not be able to create an account or request plasmids through this website until you upgrade your browser. Learn more. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Repository-based plasmid', 'iGEM', 'repository-based', 'DNASU'""" ; - sc:featureList edam:operation_0308, - edam:operation_0310, - edam:operation_3431, - edam:operation_3891 ; - sc:name "Addgene" ; - sc:url "https://www.addgene.org/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0209, - edam:topic_3292, - edam:topic_3474, - edam:topic_3489 ; - sc:citation , - "pubmed:31604014" ; - sc:description """Development of New Methods Needs Proper Evaluation-Benchmarking Sets for Machine Learning Experiments for Class A GPCRs. - -Machine Learning meets Biochemistry. - -Required python packages: numpy numba scipy tqdm scikit-learn rdkit openbabel mordred matplotlib. - -Create three separate directories for storing ananas database, results of the experiments, and external data. Set the following environment variables as full paths to the newly created directories: CRISPER_DATA_PATH ANANAS_RESULTS_PATH BANANAS_EXTERNAL_DATA_PATH. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'gmum'""" ; - sc:featureList edam:operation_0269, - edam:operation_3216, - edam:operation_3659 ; - sc:name "Additionally analogous" ; - sc:url "https://github.com/lesniak43/ananas" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2840, edam:topic_3407 ; @@ -5256,7 +4454,7 @@ Fields searchable in this way are:CAS number,JECFA number,FEMA number,CoE number sc:url "http://www.rxnfinder.org/additivechem/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3474 ; sc:citation , @@ -5266,18 +4464,8 @@ Fields searchable in this way are:CAS number,JECFA number,FEMA number,CoE number sc:name "AdequacyModel" ; sc:url "https://github.com/prdm0/AdequacyModel" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3394 ; - sc:citation , - "pubmed:31438176" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/adherer | An Open Science Approach to Estimating Adherence to Medications Using Electronic Healthcare Databases | Adherence to medications is a key performance indicator and behavioral outcome in healthcare. Electronic healthcare databases represent rich data sources for estimating adherence in both research and practice. To build a solid evidence base for adherence management across clinical settings, it is necessary to standardize adherence estimation and facilitate its appropriate use. We present the recent development and oportunities offered by AdhereR, an R package for visualisation of medication histories and computation of adherence" ; - sc:featureList edam:operation_0337 ; - sc:name "AdhereR_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31438176" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3068 ; sc:citation ; @@ -5294,7 +4482,7 @@ Fields searchable in this way are:CAS number,JECFA number,FEMA number,CoE number biotools:primaryContact "Anamaria Crisan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3304 ; sc:description "A Web resource enabling to inspect the neuroanatomy of the fruit fly, equipped with a graphical interface enabling users to color structures on brain sections." ; @@ -5302,7 +4490,7 @@ Fields searchable in this way are:CAS number,JECFA number,FEMA number,CoE number sc:url "https://fruitfly.tefor.net/#/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, edam:topic_3474 ; @@ -5321,7 +4509,7 @@ Afann (Alignment-Free methods Adjusted by Neural Network) is an alignment-free s sc:url "https://github.com/GeniusTang/Afann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -5341,55 +4529,8 @@ Afann (Alignment-Free methods Adjusted by Neural Network) is an alignment-free s sc:url "http://afumid.shinyapps.io/afumID" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0194, - edam:topic_0196 ; - sc:citation , - "pmcid:PMC6778795", - "pubmed:31371382" ; - sc:description "> HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'Agaricus bisporus var bisporus', 'bisporus var bisporus ARP23', 'Agaricus bisporus' | Whole Genome Sequence of the Commercially Relevant Mushroom Strain Agaricus bisporus var. bisporus ARP23 | Agaricus bisporus is an extensively cultivated edible mushroom. Demand for cultivation is continuously growing and difficulties associated with breeding programs now means strains are effectively considered monoculture. While commercial growing practices are highly efficient and tightly controlled, the over-use of a single strain has led to a variety of disease outbreaks from a range of pathogens including bacteria, fungi and viruses. To address this, the Agaricus Resource Program (ARP) was set up to collect wild isolates from diverse geographical locations through a bounty-driven scheme to create a repository of wild Agaricus germplasm" ; - sc:featureList edam:operation_3192, - edam:operation_3196, - edam:operation_3216 ; - sc:name "Agaricus bisporus var bisporus ARP23" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31371382" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3360, - edam:topic_3399, - edam:topic_3474, - edam:topic_3489 ; - sc:citation , - "pmcid:PMC6823431", - "pubmed:31672994" ; - sc:description """open online resource on chronological and perceived ages of people aged 5-100. - -How Old Do I Look? AgeGuess is a citizen science project on human biological and chronological age. - -Login or Create Your AgeGuess Account. - -AgeGuess is a simple on-line game in which you can post your photos, have other people guess your age, as well as guess the age of other users. - -Don't have an AgeGuess account yet?. - -Register for one by clicking on the button below or use your Facebook account to connect with AgeGuess. - -AgeGuess is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. - -A citizen science project on human biological and chronological age. - -Wow, that person looks really young, what is their real age?. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'age guesses'""" ; - sc:featureList edam:operation_0337, - edam:operation_3435 ; - sc:name "AgeGuess database" ; - sc:url "http://www.ageguess.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, edam:topic_3292, @@ -5410,7 +4551,7 @@ AggreRATE-Pred is a linear regression based tool which can predict the change in sc:url "http://www.iitm.ac.in/bioinfo/aggrerate-pred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0130, @@ -5434,7 +4575,7 @@ AggreRATE-Pred is a linear regression based tool which can predict the change in "Rafael Zambran" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3810 ; sc:description "The RDF Knowledge-based Database for plant molecular networks." ; @@ -5442,13 +4583,13 @@ AggreRATE-Pred is a linear regression based tool which can predict the change in sc:url "http://agrold.southgreen.fr/agrold/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Browser for ontologies for agricultural science based on NBCO BioPortal." ; sc:name "AgroPortal" ; sc:url "http://agroportal.lirmm.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170, @@ -5471,7 +4612,7 @@ AggreRATE-Pred is a linear regression based tool which can predict the change in "Rob Patro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0622, edam:topic_3293, @@ -5495,7 +4636,7 @@ Read the documentation at readthedocs""" ; sc:url "https://github.com/AliTVTeam/AliTV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -5517,31 +4658,8 @@ Read the documentation at readthedocs""" ; sc:url "https://github.com/KhiabanianLab/All-FIT" ; biotools:primaryContact "Khiabanian Lab" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_2229, - edam:topic_2640, - edam:topic_3299, - edam:topic_3384 ; - sc:citation , - "pubmed:31750888" ; - sc:description """Allele-Frequency-based Imputation of Tumor Purity from High-Depth Sequencing Data. - -MOTIVATION:Clinical sequencing aims to identify somatic mutations in cancer cells for accurate diagnosis and treatment. However, most widely used clinical assays lack patient-matched control DNA and additional analysis is needed to distinguish somatic and unfiltered germline variants. Such computational analyses require accurate assessment of tumor cell content in individual specimens. Histological estimates often do not corroborate with results from computational methods that are primarily designed for normal-tumor matched data and can be confounded by genomic heterogeneity and presence of sub-clonal mutations. - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/All-FIT. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'IMPLEMENTATION:Freely'""" ; - sc:featureList edam:operation_0249, - edam:operation_3227, - edam:operation_3557 ; - sc:name "All-FIT_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31750888" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3421, edam:topic_3912 ; @@ -5556,43 +4674,8 @@ MOTIVATION:Clinical sequencing aims to identify somatic mutations in cancer cell sc:name "AlleleAnalyzer" ; sc:url "https://github.com/keoughkath/AlleleAnalyzer" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_0621, - edam:topic_3068, - edam:topic_3489, - edam:topic_3571 ; - sc:citation , - "pmcid:PMC6893393", - "pubmed:31796553" ; - sc:description """Building a Modern Data Ecosystem for Model Organism Databases. - -Alliance of Genome Resources. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/Alliance_Genome_Resources_Portal (ALLIANCEGENOME.ORG)""" ; - sc:featureList edam:operation_2421, - edam:operation_2422, - edam:operation_3431 ; - sc:name "Alliance Genome Resources" ; - sc:url "http://www.alliancegenome.org" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_0621, - edam:topic_0625 ; - sc:citation , - "pubmed:31552413" ; - sc:description "> COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/pymzml (GITHUB.COM) | > CORRECT NAME OF TOOL COULD ALSO BE 'Alliance Genome' | unified model organism research platform | This repo is for generating files from Alliance resources | Concise gene descriptions generator | Data loader for the Alliance of Genome Resources website | 25: 50: 75: 100: 125: 150: 175: 200: 225: 250: 275: 300: 325: 350: 375: 400: 425: 450: 475: 500: 525: 550: 575: 600: 625: 650: 675: 700: 725: 750: 775: 800: 825: 850: 875: 900: 925: 950: 975: 1000: 1025: 1050: 1075: 1100: 1125: 1150: 1175: 1200: 1225: 1250: 1275: 1300: 1325: 1350: 1375: 1400: 1425: 1450: 1475: 1500: 1525: 1550: | SF36-SONIC HEDGEHOG PROTEIN (AN47)" ; - sc:featureList edam:operation_2422, - edam:operation_3192, - edam:operation_3431 ; - sc:name "Alliance Genome Resources Portal" ; - sc:softwareHelp , - ; - sc:url "http://www.alliancegenome.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -5614,7 +4697,7 @@ Alliance of Genome Resources. biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, edam:topic_0654, @@ -5632,7 +4715,7 @@ AlphaBeta is a computational method for estimating epimutation rates and spectra sc:url "http://bioconductor.org/packages/3.10/bioc/html/AlphaBeta.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_2885, @@ -5648,7 +4731,7 @@ AlphaBeta is a computational method for estimating epimutation rates and spectra sc:url "http://www.AlphaGenes.roslin.ed.ac.uk/AlphaFamImpute" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3382, edam:topic_3474 ; @@ -5659,20 +4742,8 @@ AlphaBeta is a computational method for estimating epimutation rates and spectra sc:name "AlphaSeq" ; sc:url "https://github.com/lynshao/AlphaSeq" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0204, - edam:topic_0749, - edam:topic_3176 ; - sc:citation , - "pubmed:31511305" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'chromatin-mediated' | Accessibility of promoter DNA is not the primary determinant of chromatin-mediated gene regulation | Custom MATLAB code for analyzing AluI cleavage data" ; - sc:featureList edam:operation_0366, - edam:operation_0445 ; - sc:name "AluI" ; - sc:url "https://github.com/rchereji/AluI_accessibility_analysis" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_3673 ; @@ -5688,7 +4759,7 @@ AlphaBeta is a computational method for estimating epimutation rates and spectra sc:url "https://github.com/bioinfo-ut/AluMine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3168, @@ -5706,7 +4777,7 @@ AlphaBeta is a computational method for estimating epimutation rates and spectra biotools:primaryContact "Taobo Hu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3050, @@ -5727,7 +4798,7 @@ AlphaBeta is a computational method for estimating epimutation rates and spectra biotools:primaryContact "Robert Bossy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3365, edam:topic_3489 ; @@ -5747,7 +4818,7 @@ The setup.py script sets up postgres (it creates the database and postgres user) sc:url "https://github.com/cortex-lab/alyx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3168, edam:topic_3342 ; @@ -5762,7 +4833,7 @@ The setup.py script sets up postgres (it creates the database and postgres user) sc:url "https://github.com/dkleftogi/AmpliSolve" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0769, @@ -5787,14 +4858,14 @@ By Julien Tremblay - julien.tremblay_at_nrc-cnrc.gc.ca""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622 ; sc:author ; @@ -5815,7 +4886,7 @@ By Julien Tremblay - julien.tremblay_at_nrc-cnrc.gc.ca""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3337, @@ -5835,7 +4906,7 @@ By Julien Tremblay - julien.tremblay_at_nrc-cnrc.gc.ca""" ; sc:url "http://bioinformatics.biol.uoa.gr/amyco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, @@ -5852,21 +4923,8 @@ By Julien Tremblay - julien.tremblay_at_nrc-cnrc.gc.ca""" ; sc:name "Anabel" ; sc:url "https://skscience.org/anabel" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3169, - edam:topic_3474 ; - sc:citation ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'DNase1-seq' | Predicting transcription factor binding using ensemble random forest models | processing and analysis of transcription factor binding sites" ; - sc:featureList edam:operation_0335, - edam:operation_0445, - edam:operation_3903 ; - sc:license "MIT" ; - sc:name "Analysis" ; - sc:url "https://github.com/SchulzLab/TFAnalysis" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0780, @@ -5888,7 +4946,7 @@ By Julien Tremblay - julien.tremblay_at_nrc-cnrc.gc.ca""" ; biotools:primaryContact "Dr M.D. Fricker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168, @@ -5907,7 +4965,7 @@ By Julien Tremblay - julien.tremblay_at_nrc-cnrc.gc.ca""" ; sc:url "https://github.com/GuanLab/Anchor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3305 ; @@ -5925,24 +4983,8 @@ By Julien Tremblay - julien.tremblay_at_nrc-cnrc.gc.ca""" ; sc:url "http://anchoredmultiplier.ucsf.edu/" ; biotools:primaryContact "Paul D. Wesson" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3277, - edam:topic_3382 ; - sc:citation ; - sc:description """On the impact of sampling frequency on software energy measurements. - -There is a pre-built image by Andrew Henderson that allows you to boot Android 4.2.2 Jelly Bean on your BeagleBone Black. This is just an extra option for users and is not officially supported by Circuitco or BeagleBoard.org. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'consumption', 'kHz', 'energy consumption', 'mobile'""" ; - sc:featureList edam:operation_2422, - edam:operation_3435, - edam:operation_3454 ; - sc:name "Android" ; - sc:url "http://elinux.org/Beagleboard:Android" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -5965,7 +5007,7 @@ There is a pre-built image by Andrew Henderson that allows you to boot Android 4 biotools:primaryContact "Daniel Pique" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -5985,14 +5027,14 @@ There is a pre-built image by Andrew Henderson that allows you to boot Android 4 a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ] ; + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3867" ; + sc:name "Trajectory data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2087" ; - sc:name "Molecular property" ; - sc:sameAs "http://edamontology.org/data_2087" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2087" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecular property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3892 ; sc:citation , @@ -6015,7 +5057,7 @@ There is a pre-built image by Andrew Henderson that allows you to boot Android 4 biotools:primaryContact "Vojtech Spiwok" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -6037,7 +5079,7 @@ There is a pre-built image by Andrew Henderson that allows you to boot Android 4 sc:url "http://annotree.uwaterloo.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0121, edam:topic_0203, @@ -6067,7 +5109,7 @@ Summary: Annot is a web application, developed for biological wetlab experiment sc:url "https://gitlab.com/biotransistor/annot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -6075,7 +5117,8 @@ Summary: Annot is a web application, developed for biological wetlab experiment edam:topic_3053, edam:topic_3168, edam:topic_3175 ; - sc:citation ; + sc:citation , + ; sc:description "Integrated tool for annotation and ranking of structural variations." ; sc:featureList edam:operation_0226, edam:operation_3197 ; @@ -6089,7 +5132,7 @@ Summary: Annot is a web application, developed for biological wetlab experiment biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3315, edam:topic_3474 ; @@ -6104,7 +5147,7 @@ Keras library package (version 2.0.6)""" ; sc:url "https://github.com/hobae/AnomiGAN/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0632, edam:topic_3168 ; @@ -6118,20 +5161,8 @@ AnthOligo is a web-based application developed to automatically generate oligo s sc:name "AnthOligo" ; sc:url "http://antholigo.chop.edu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0798 ; - sc:citation , - "pubmed:31673149" ; - sc:description """Nature Methods, doi:10.1038 s41592-019-0633-2. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 's41592-019-0633-2'""" ; - sc:name "Anti-anti-CRISPR" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31673149" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, edam:topic_0209, @@ -6154,31 +5185,15 @@ antiBac-Pred allows user to predict the fact that chemical compound can inhibit sc:url "http://www.way2drug.com/antibac" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:31418763" ; sc:description "Web-resource for in silico prediction of anti-HIV/AIDS activity | MOTIVATION:Identification of new molecules promising for treatment of HIV-infection and HIV-associated disorders remains an important task in order to provide safer and more effective therapies. Utilization of prior knowledge by application of computer-aided drug discovery approaches reduces time & financial expenses and increases the chances of positive results in anti-HIV R&D. To provide the scientific community with a tool that allows estimating of potential agents for treatment of HIV-infection and its comorbidities, we have created a freely-available web-resource for prediction of relevant biological activities based on the structural formulae of drug-like molecules" ; sc:name "AntiHIV-Pred" ; sc:url "http://www.way2drug.com/hiv/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0154, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6929291", - "pubmed:31870282" ; - sc:description """Antimicrobial peptide identification using multi-scale convolutional network. - -BACKGROUND:Antibiotic resistance has become an increasingly serious problem in the past decades. As an alternative choice, antimicrobial peptides (AMPs) have attracted lots of attention. To identify new AMPs, machine learning methods have been commonly used. More recently, some deep learning methods have also been applied to this problem. RESULTS:In this paper, we designed a deep learning model to identify AMP sequences. We employed the embedding layer and the multi-scale convolutional network in our model. The multi-scale convolutional network, which contains multiple convolutional layers of varying filter lengths, could utilize all latent features captured by the multiple convolutional layers. To further improve the performance, we also incorporated additional information into the designed model and proposed a fusion model""" ; - sc:featureList edam:operation_3092, - edam:operation_3631, - edam:operation_3695 ; - sc:name "Antimicrobial peptide identification" ; - sc:url "https://github.com/zhanglabNKU/APIN" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0623, edam:topic_0749 ; @@ -6191,7 +5206,7 @@ BACKGROUND:Antibiotic resistance has become an increasingly serious problem in t sc:url "http://bioinfo.icgeb.res.in/PtDB/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_2830, @@ -6215,21 +5230,8 @@ BACKGROUND:Antibiotic resistance has become an increasingly serious problem in t "Minh N Nguyen", "Pingyu Zhong" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3335, - edam:topic_3399, - edam:topic_3422 ; - sc:citation , - "pmcid:PMC6705850", - "pubmed:31437231" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'dialysis', 'all-cause', 'NRI', 'CV-related' | Prediction model for cardiovascular events or all-cause mortality in incident dialysis patients | Some variables including age, comorbidity of diabetes, and so on at dialysis initiation are associated with patient prognosis. Cardiovascular (CV) events are a major cause of death, and adequate models that predict prognosis in dialysis patients are warranted. Therefore, we created models using some variables at dialysis initiation. We used a database of 1,520 consecutive dialysis patients (median age, 70 years; 492 women [32.4%]) from a multicenter prospective cohort study. We established the primary endpoint as a composite of the incidence of first CV events or all-cause death. A multivariable Cox proportional hazard regression model was used to construct a model. We considered a complex and a simple model" ; - sc:featureList edam:operation_3503, - edam:operation_3659 ; - sc:name "App inaguma 20190717" ; - sc:url "https://statacademy.shinyapps.io/App_inaguma_20190717/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_3169, @@ -6248,7 +5250,7 @@ AppleMDO is a multi-dimensional omics database. Users can submit locus IDs to qu sc:url "http://bioinformatics.cau.edu.cn/AppleMDO/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2885, edam:topic_3673 ; @@ -6260,67 +5262,8 @@ AppleMDO is a multi-dimensional omics database. Users can submit locus IDs to qu sc:name "Aquila_stLFR" ; sc:url "https://github.com/maiziex/Aquila_stLFR" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3382, - edam:topic_3399, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6661066", - "pubmed:31372425" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'y7pckrw6z2', 'ArSL2018', 'ArSL', 'fully-labelled' | Arabic Alphabets Sign Language Dataset | A fully-labelled dataset of Arabic Sign Language (ArSL) images is developed for research related to sign language recognition. The dataset will provide researcher the opportunity to investigate and develop automated systems for the deaf and hard of hearing people using machine learning, computer vision and deep learning algorithms. The contribution is a large fully-labelled dataset for Arabic Sign Language (ArSL) which is made publically available and free for all researchers. The dataset which is named ArSL2018 consists of 54,049 images for the 32 Arabic sign language sign and alphabets collected from 40 participants in different age groups. Different dimensions and different variations were present in images which can be cleared using pre-processing techniques to remove noise, center the image, etc" ; - sc:name "ArASL" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31372425" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0625, - edam:topic_0780, - edam:topic_3170, - edam:topic_3517 ; - sc:citation , - "pubmed:31642487" ; - sc:description """a major database update including RNA-Seq and knockout mutation data for Arabidopsis thaliana. - -AraPheno source code for http://arapheno.1001genomes.org. - -GWAS catalogue for Arabidopsis thaliana. - -A public phenotype database for Arabidopsis thaliana. - -AraPheno is a public database collection of Arabidopsis thaliana phenotypes. - -AraPheno also contains Arabidopsis thaliana RNASeq measurements. - -edit General information on how to cite AraPheno and its phenotypes. - -Citing AraPheno (Two Publications, 2016, 2019). - -help_outline General FAQ about AraPheno. - -AraPheno python code based on Django 1.9.6. - -This is a Single Page App (SPA) that consists of a django backend and a VueJS frontend The Django backend acts as a REST endpoint for the VueJS frontend. - -This Database allows to search and filter for public phenotypes and to obtain additional meta-information. - -This database allows to look for them. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'AraPheno', 'AraGWAS', 'AraGWAS Catalog'""" ; - sc:featureList edam:operation_2422, - edam:operation_3196, - edam:operation_3283, - edam:operation_3431, - edam:operation_3557 ; - sc:license "MIT" ; - sc:name "AraPheno AraGWAS Catalog 2020" ; - sc:softwareHelp , - , - , - ; - sc:url "https://arapheno.1001genomes.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -6340,28 +5283,16 @@ This database allows to look for them. sc:url "http://bar.utoronto.ca/interactions2/" ; biotools:primaryContact "Nicholas Provart" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_0632, - edam:topic_3305 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'butzleri', 'Virulence antibiotic resistance plasticity Arcobacter butzleri', 'Arcobacter butzleri', 'diarrhoeal-causing Arcobacter butzleri' | Virulence and antibiotic resistance plasticity of Arcobacter butzleri | Multilocus sequence typing (MLST) databases and software | This site uses two linked databases powered by the BIGSdb genomics platform. The sequence definition database contains allele sequence and MLST profile definitions whereas the isolate database contains provenance and epidemiological information. Further details about BIGSdb can be found in Jolley & Maiden 2010, BMC Bioinformatics 11:595 | Recent publications using MLST in Arcobacter research | Primers used for amplification and sequencing | This publication made use of the Arcobacter MLST website (https: pubmlst.org arcobacter ) sited at the University of Oxford (Jolley & Maiden 2010, BMC Bioinformatics, 11:595)" ; - sc:featureList edam:operation_3431, - edam:operation_3461, - edam:operation_3840 ; - sc:name "Arcobacter" ; - sc:url "https://pubmlst.org/arcobacter/" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175, edam:topic_3320, @@ -6377,7 +5308,7 @@ This database allows to look for them. sc:url "https://github.com/suhrig/arriba/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3673, edam:topic_3676 ; sc:citation , @@ -6389,7 +5320,7 @@ This database allows to look for them. sc:url "https://github.com/abs-tudelft/ArrowSAM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, edam:topic_3068, @@ -6416,7 +5347,7 @@ Handling sequencing data from massive parallel sequencing can be a daunting task sc:url "https://arteria-project.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3512 ; @@ -6426,28 +5357,8 @@ Handling sequencing data from massive parallel sequencing can be a daunting task sc:name "ArtiFuse" ; sc:url "https://github.com/TRON-Bioinformatics/ArtiFusion" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3384, - edam:topic_3394, - edam:topic_3474 ; - sc:citation , - "pubmed:31578624" ; - sc:description """A helpful tool for radiologists?]. - -Artificial Intelligence and Machine Learning in Software as a Medical Device. - -Medical device manufacturers are using these technologies to innovate their products to better assist health care providers and improve patient care. - -Artificial intelligence and machine learning technologies have the potential to transform health care by deriving new and important insights from the vast amount of data generated during the delivery of health care every day. Medical device manufacturers are using these technologies to innovate their products to better assist health care providers and improve patient care. The FDA is considering a total product lifecycle-based regulatory framework for these technologies that would allow for modifications to be made from real-world learning and adaptation, while still ensuring that the safety and effectiveness of the software as a medical device is maintained. - -An official website of the United States government. - -U S""" ; - sc:name "Artificial intelligence" ; - sc:url "https://www.fda.gov/medical-devices/software-medical-device-samd/artificial-intelligence-and-machine-learning-software-medical-device" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0780 ; @@ -6463,7 +5374,7 @@ U S""" ; sc:url "http://cab.unina.it/asanet/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3399, edam:topic_3577 ; @@ -6475,7 +5386,7 @@ U S""" ; sc:url "http://www.genemed.tech/ascrispr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0152, edam:topic_0780, @@ -6494,7 +5405,7 @@ U S""" ; biotools:primaryContact "Ewa Mellerowicz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -6514,7 +5425,7 @@ U S""" ; biotools:primaryContact "Maria Nattestad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , "pubmed:31532487" ; @@ -6525,7 +5436,7 @@ U S""" ; sc:url "http://www.bioconductor.org/packages/release/bioc/html/AssessORF.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0196, edam:topic_3512 ; @@ -6539,48 +5450,8 @@ U S""" ; sc:name "Assexon" ; sc:url "https://github.com/yhadevol/Assexon" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0099, - edam:topic_0102, - edam:topic_0199, - edam:topic_0749, - edam:topic_3170 ; - sc:citation , - "pubmed:31665473" ; - sc:description """Direct sequencing of RNA with MinION Nanopore. - -Finding associated variants in MinION data. - -This is the repository accompanying the paper Sequencing Complete Genomes of RNA Viruses With MinION Nanopore: Finding Associations Between Mutations (bioRxiv 2019; DOI https://doi.org/10.1101/575480) and is subject to the paper user license""" ; - sc:featureList edam:operation_0337, - edam:operation_0487, - edam:operation_3196, - edam:operation_3202 ; - sc:name "AssociVar" ; - sc:url "https://github.com/SternLabTAU/AssociVar" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0084, - edam:topic_0610, - edam:topic_0625, - edam:topic_0780, - edam:topic_2885 ; - sc:citation , - "pmcid:PMC6790504", - "pubmed:31608375" ; - sc:description """Progress in the study of genome size evolution in Asteraceae. - -Genome Size in Asteraceae database. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Progress study genome size evolution Asteraceae', 'GSAD'""" ; - sc:featureList edam:operation_0327, - edam:operation_0544, - edam:operation_3478 ; - sc:name "Asteraceae" ; - sc:url "http://www.asteraceaegenomesize.com" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0634, edam:topic_3512 ; @@ -6593,14 +5464,14 @@ Genome Size in Asteraceae database. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -6619,7 +5490,7 @@ Genome Size in Asteraceae database. sc:url "https://github.com/yu-lab-vt/aqua" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_1775, edam:topic_3168 ; @@ -6630,30 +5501,8 @@ Genome Size in Asteraceae database. sc:name "AsyRW" ; sc:url "http://mlda.swu.edu.cn/codes.php?name=AsyRW" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0736, - edam:topic_0749, - edam:topic_0780, - edam:topic_3295 ; - sc:citation , - "pubmed:31807785" ; - sc:description """a chimeric histone chaperone with functional nucleoplasmin and PPIase domains. - -FKBP53 is one of the seven multi-domain FK506-binding proteins present in Arabidopsis thaliana, and it is known to get targeted to the nucleus. It has a conserved PPIase domain at the C-terminus and a highly charged N-terminal stretch, which has been reported to bind to histone H3 and perform the function of a histone chaperone. To better understand the molecular details of this PPIase with histone chaperoning activity, we have solved the crystal structures of its terminal domains and functionally characterized them. The C-terminal domain showed strong PPIase activity, no role in histone chaperoning and revealed a monomeric five-beta palm-like fold that wrapped over a helix, typical of an FK506-binding domain. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'PPIase', 'nucleoplasmin', 'FK506-binding', 'chaperoning'""" ; - sc:featureList edam:operation_0303, - edam:operation_0310, - edam:operation_0337, - edam:operation_0432 ; - sc:name "AtFKBP53" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31807785" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -6676,7 +5525,7 @@ FKBP53 is one of the seven multi-domain FK506-binding proteins present in Arabid biotools:primaryContact "Dr. Shailesh Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, edam:topic_3169, @@ -6697,7 +5546,7 @@ AtacWorks trains a deep neural network to learn a mapping between noisy (low cov sc:url "https://github.com/clara-genomics/AtacWorks" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3297, edam:topic_3300, edam:topic_3697 ; @@ -6709,7 +5558,7 @@ AtacWorks trains a deep neural network to learn a mapping between noisy (low cov sc:url "https://www.atacamadb.cl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2269, edam:topic_2830 ; @@ -6720,26 +5569,8 @@ AtacWorks trains a deep neural network to learn a mapping between noisy (low cov sc:name "AtbPpred" ; sc:url "http://thegleelab.org/AtbPpred" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_0218, - edam:topic_3168 ; - sc:citation , - "pmcid:PMC6834855", - "pubmed:31695060" ; - sc:description """Automated Tuning of k-mer based Genomic Error Correction Algorithms using Language Models. - -The performance of most error-correction (EC) algorithms that operate on genomics reads is dependent on the proper choice of its configuration parameters, such as the value of k in k-mer based techniques. In this work, we target the problem of finding the best values of these configuration parameters to optimize error correction and consequently improve genome assembly. We perform this in an adaptive manner, adapted to different datasets and to EC tools, due to the observation that different configuration parameters are optimal for different datasets, i.e., from different platforms and species, and vary with the EC algorithm being applied. We use language modeling techniques from the Natural Language Processing (NLP) domain in our algorithmic suite, Athena, to automatically tune the performance-sensitive configuration parameters. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0524, - edam:operation_0525, - edam:operation_3472 ; - sc:name "Athena" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31695060" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0196, edam:topic_3168 ; @@ -6759,7 +5590,7 @@ Atropos is tool for specific, sensitive, and speedy trimming of NGS reads. It is sc:url "https://github.com/jdidion/atropos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2229, edam:topic_3170, @@ -6778,7 +5609,7 @@ Augur is an R package to prioritize cell types involved in the response to an ex sc:url "https://github.com/neurorestore/Augur" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2830, edam:topic_3314 ; @@ -6789,38 +5620,8 @@ Augur is an R package to prioritize cell types involved in the response to an ex sc:name "Auto-CHO" ; sc:url "https://sites.google.com/view/auto-cho/home" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3318, - edam:topic_3382, - edam:topic_3393, - edam:topic_3474 ; - sc:citation ; - sc:description """“Universal” Physical and Statistical Model-Based 2D Spatial Topology-Preserving Software Toolbox for Cloud/Cloud-Shadow Detection in Multi-Sensor Single-Date Earth Observation Multi-Spectral Imagery Eligible for Systematic ESA EO Level 2 Product Generation. - -The European Space Agency (ESA) defines as Earth observation (EO) Level 2 information product a single-date multi-spectral (MS) image corrected for atmospheric, adjacency and topographic effects, stacked with its data-derived scene classification map (SCM), whose thematic map legend includes quality layers cloud and cloud-shadow. ESA EO Level 2 product generation is an inherently ill-posed computer vision (CV) problem never accomplished to date in operating mode by any EO data provider at the ground segment. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ARD', 'ESA EO', 'EO', 'multi-sensor EO'""" ; - sc:featureList edam:operation_2422, - edam:operation_2428, - edam:operation_3443 ; - sc:name "AutoCloud+" ; - sc:url "https://doi.org/10.20944/PREPRINTS201808.0352.V2" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_2275, - edam:topic_3336 ; - sc:citation ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'AutoDock4', 'OpenCL' | Accelerating AutoDock4 with GPUs and Gradient-Based Local Search | AutoDock-GPU: AutoDock for GPUs using OpenCL | Molecular Graphics Laboratory, TSRI | Besides the legacy Solis-Wets local search method, AutoDock-GPU adds newly implemented local-search methods based on gradients of the scoring function. One of these methods, ADADELTA, has proven to increase significantly the docking quality in terms of RMSDs and scores" ; - sc:featureList edam:operation_0478, - edam:operation_3798 ; - sc:name "AutoDock-GPU" ; - sc:url "https://autodock.scripps.edu" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -6838,26 +5639,8 @@ The European Space Agency (ESA) defines as Earth observation (EO) Level 2 inform sc:name "AutoEncoder" ; sc:url "https://github.com/BeautyOfWeb/Multiview-AutoEncoder" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0218, - edam:topic_3170, - edam:topic_3474, - edam:topic_3512 ; - sc:citation ; - sc:description """An AutoML Tool for Genomic Research. - -Abstract Deep learning have made great successes in traditional fields like computer vision (CV), natural language processing (NLP) and speech processing. Those achievements greatly inspire researchers in genomic study and make deep learning in genomics a very hot topic. Convolutional neural network (CNN) and recurrent neural network (RNN) are frequently used for genomic sequence prediction problems; multiple layer perception (MLP) and auto-encoders (AE) are frequently used for genomic profiling data like RNA expression data and gene mutation data. Here, we introduce a new neural network architecture, named residual fully-connected neural network (RFCN) and demonstrate its advantage for modeling genomic profiling data. We further incorporate AutoML algorithms and implement AutoGenome, an end-to-end automated genomic deep learning framework. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'RFCN'""" ; - sc:featureList edam:operation_2495 ; - sc:name "AutoGenome" ; - sc:url "https://doi.org/10.1101/842526" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0219, edam:topic_2275 ; @@ -6871,7 +5654,7 @@ Abstract Deep learning have made great successes in traditional fields like comp sc:url "http://adfr.scripps.edu/AutoDockFR/agfr.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3168, edam:topic_3320 ; @@ -6882,7 +5665,7 @@ Abstract Deep learning have made great successes in traditional fields like comp sc:url "http://autopvs1.genetics.bgi.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3407, @@ -6896,20 +5679,8 @@ Abstract Deep learning have made great successes in traditional fields like comp sc:name "AutoTuner" ; sc:url "https://github.com/crmclean/Autotuner" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3170, - edam:topic_3308, - edam:topic_3474 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'autoencoder-based cluster ensemble', 'ensemble', 'autoencoder-based', 'feature-dimensionality' | Autoencoder-based cluster ensembles for single-cell RNA-seq data analysis | autoencoder_cluster_ensemble" ; - sc:featureList edam:operation_3432, - edam:operation_3680, - edam:operation_3891 ; - sc:name "Autoencoder-based cluster ensembles" ; - sc:url "https://github.com/gedcom/autoencoder_cluster_ensemble" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3361, edam:topic_3678 ; @@ -6920,7 +5691,7 @@ Abstract Deep learning have made great successes in traditional fields like comp sc:url "https://github.com/wehr-lab/autopilot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Suite" ; sc:applicationSubCategory edam:topic_2885, @@ -6942,7 +5713,7 @@ Abstract Deep learning have made great successes in traditional fields like comp biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3474 ; sc:citation ; @@ -6952,87 +5723,8 @@ Abstract Deep learning have made great successes in traditional fields like comp sc:name "B-SOiD" ; sc:url "https://github.com/YttriLab/B-SOiD" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_2640, - edam:topic_3421 ; - sc:citation , - "pubmed:31567922" ; - sc:description """Comparison of Patient-Reported Outcomes in Laparoscopic and Open Right Hemicolectomy. - -The requested resource https://links.lww.com/_redirect.aspx?404;https://links.lww.com:443/DCR/B27.REPORTE was not found!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'los pacientes sometidos resecciones abiertas', 'resultados relevantes para los pacientes', 'sintomas en el periodo temprano', 'Los pacientes sometidos reseccion laparoscopica'""" ; - sc:name "B27" ; - sc:url "http://links.lww.com/DCR/B27" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3384 ; - sc:citation , - "pubmed:31569095" ; - sc:description """Current Management of Malignant Colorectal Polyps Across a Regional United Kingdom Cancer Network. - -The requested resource https://links.lww.com/_redirect.aspx?404;https://links.lww.com:443/DCR/B47.MANEJO was not found!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'polipos colorrectales malignos', 'polipos colorrectales malignos presentados'""" ; - sc:name "B47" ; - sc:url "http://links.lww.com/DCR/B47" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_3403, - edam:topic_3421 ; - sc:citation , - "pubmed:31842161" ; - sc:description """The Association of Enhanced Recovery Pathway and Acute Kidney Injury in Patients Undergoing Colorectal Surgery. - -BACKGROUND:Acute kidney injury is associated with increased postoperative length of hospital stay and increases the risk of postoperative mortality. The association between the development of postoperative acute kidney injury and the implementation of an enhanced recovery after surgery protocol remains unclear. OBJECTIVE:This study aimed to examine the relationship between the implementation of an enhanced recovery pathway and the development of postoperative acute kidney injury. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'recovery', 'enhanced recovery', 'enhanced', 'postoperative acute kidney injury'""" ; - sc:name "B69" ; - sc:url "http://links.lww.com/DCR/B69" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634 ; - sc:citation , - "pubmed:31842162" ; - sc:description """Does Smoking Cessation Reduce Surgical Recurrence After Primary Ileocolic Resection for Crohn's Disease?. - -BACKGROUND:Tobacco smoking is a known risk factor for recurrence of Crohn's disease after surgical resection. OBJECTIVE:This study assessed the effect of smoking cessation on long-term surgical recurrence after primary ileocolic resection for Crohn's disease. DESIGN:A retrospective review of a prospectively maintained database was conducted. SETTINGS:Patient demographic data and medical and surgical details were combined from 2 specialist centers. After ethical approval, patients were contacted in case of missing data regarding smoking habit. PATIENTS:All patients undergoing ileocolic resection between 2000 and 2012 for histologically confirmed Crohn's disease were included. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ileocolic resection', 'ileocolic resection Crohn', 'ileocolic', 'resection'""" ; - sc:name "B86" ; - sc:url "http://links.lww.com/DCR/B86" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3384, - edam:topic_3444, - edam:topic_3474 ; - sc:citation , - "pubmed:31842158" ; - sc:description """Evaluation of Rectal Cancer Circumferential Resection Margin Using Faster Region-based Convolutional Neural Network in High-Resolution Magnetic Resonance Images. - -BACKGROUND:High-resolution MRI is regarded as the best method to evaluate whether there is an involved circumferential resection margin in rectal cancer. OBJECTIVE:We explored the application of the Faster Region-based Convolutional Neural Network to identify positive circumferential resection margins in high-resolution MRI images. DESIGN AND SETTINGS:This was a retrospective study conducted at a single surgical unit of a public university hospital. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'circumferential resection', 'circumferential resection margin', 'circumferential', 'resection margin'""" ; - sc:name "B88" ; - sc:url "http://links.lww.com/DCR/B88" . - - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31876646" ; - sc:description """Drivers of High-Cost Medical Complexity in a Medicaid Population. - -BACKGROUND:Efforts to improve outcomes for the 10% of patients using two thirds of health care expenditures increasingly include addressing social determinants. Empiric evidence is needed to identify the highest impact nonmedical drivers of medical complexity and cost. OBJECTIVES:This study examines whether complex, highest cost patients have different patterns of critical life adversity than those with better health and lower utilization. RESEARCH DESIGN:Using a validated algorithm we constructed a complexity cost risk patient profile. We developed and fielded a life experience survey (Supplemental Digital Content 1, http: links.lww.com MLR B920) to a representative sample, then examined how the prevalence of specific adversities varied between complex, high-cost individuals, and others. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'maltreatment', 'Medicaid', 'incarceration', 'adversities'""" ; - sc:name "B920" ; - sc:url "http://links.lww.com/MLR/B920" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3382, edam:topic_3855 ; @@ -7046,7 +5738,7 @@ BACKGROUND:Efforts to improve outcomes for the 10% of patients using two thirds sc:url "https://github.com/jeanollion/bacmman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, edam:topic_3170, @@ -7066,7 +5758,7 @@ This repository contains the software package BAGSE designed for gene set enrich sc:url "https://github.com/xqwen/bagse/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3168, @@ -7085,7 +5777,7 @@ This repository contains the software package BAGSE designed for gene set enrich biotools:primaryContact "Paul P.S. Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -7110,7 +5802,7 @@ This repository contains the software package BAGSE designed for gene set enrich "Zhe Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3673, @@ -7126,7 +5818,7 @@ This repository contains the software package BAGSE designed for gene set enrich sc:url "https://github.com/heinc1010/BAMixChecker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, edam:topic_3320 ; @@ -7140,7 +5832,7 @@ This repository contains the software package BAGSE designed for gene set enrich sc:url "https://bioconductor.org/packages/BANDITS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3170, edam:topic_3308 ; @@ -7155,27 +5847,8 @@ This repository contains the software package BAGSE designed for gene set enrich sc:name "BART-Seq" ; sc:url "https://github.com/theislab/bartSeq" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0632, - edam:topic_0804, - edam:topic_3168, - edam:topic_3304 ; - sc:citation ; - sc:description """an easy-to-use software for complete data analysis in single cell immunoglobulin cloning. - -Brain Antibody Sequence Evaluation. - -download the germline V D and J genes (see https://ncbi.github.io/igblast/cook/How-to-set-up.html), and set up the blast databases and name them accordingly (e.g. V_without_orphon). - -install igblast (see https://ncbi.github.io/igblast/cook/How-to-set-up.html). - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/base""" ; - sc:license "GPL-3.0" ; - sc:name "BASE_autogenerated" ; - sc:url "https://github.com/automatedSequencing/BASE" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0593, @@ -7199,7 +5872,7 @@ install igblast (see https://ncbi.github.io/igblast/cook/How-to-set-up.html). biotools:primaryContact "M. Barski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_2640, @@ -7217,7 +5890,7 @@ The early detection of cancer holds the key to combat and control the increasing sc:url "http://bbcancer.renlab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091 ; sc:author ; @@ -7232,7 +5905,7 @@ The early detection of cancer holds the key to combat and control the increasing sc:url "https://github.com/brsaran/BCIgePred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, edam:topic_3047, @@ -7250,7 +5923,7 @@ Select all Deselect all Toggle select. sc:url "http://www.rxnfinder.org/bcsexplorer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, edam:topic_0121, @@ -7269,7 +5942,7 @@ The training set is readily available for ease of use at: https://drive.google.c sc:url "https://github.com/raghvendra5688/BCrystal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, edam:topic_3314, @@ -7283,36 +5956,8 @@ The training set is readily available for ease of use at: https://drive.google.c sc:name "BDE" ; sc:url "https://ml.nrel.gov/bde" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_3047, - edam:topic_3314, - edam:topic_3407, - edam:topic_3474 ; - sc:citation ; - sc:description """Prediction of Homolytic Bond Dissociation Enthalpies for Organic Molecules at near Chemical Accuracy with Sub-Second Computational Cost. - -Code and data to replicate the figures in doi:10.26434/chemrxiv.10052048. - -A machine- L earning derived, F ast, A ccurate B ond dissociation E nthalpy T ool. - -Machine learning predictions of bond dissociation energies (BDEs). - -Code and jupyter notebooks to reproduce the figures in. - -This tool predicts BDEs for single, noncyclic bonds in neutral organic molecules consisting of C, H, O, and N atoms. Mean absolute errors are typically less than 1 kcal/mol for most compounds. To use, enter a SMILES string above (or use the drawing tool) and press submit. Reference DFT-calculated BDEs used as training can be displayed for any predicted bond using the neighbors link. - -St John, P., Guan, Y., Kim, Y., Kim, S., & Paton, R. (2019). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ALFABET', 'Bond Dissociation Enthalpies', 'Bond dissociation Enthalpy'""" ; - sc:featureList edam:operation_0394, - edam:operation_0417, - edam:operation_3439 ; - sc:name "BDE_autogenerated" ; - sc:url "https://ml.nrel.gov/bde" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3168, @@ -7333,7 +5978,7 @@ St John, P., Guan, Y., Kim, Y., Kim, S., & Paton, R. (2019). biotools:primaryContact "Myers Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -7355,51 +6000,8 @@ St John, P., Guan, Y., Kim, Y., Kim, S., & Paton, R. (2019). sc:url "http://discovery.informatics.uab.edu/beere/" ; biotools:primaryContact "Jake Y Chen" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3068, - edam:topic_3420, - edam:topic_3421 ; - sc:citation , - "pmcid:PMC6819618", - "pubmed:31660965" ; - sc:description """development and alpha testing of a fertility tool for premenopausal breast cancer patients. - -BACKGROUND:Premenopausal breast cancer patients are at risk of treatment-related infertility. Many patients do not receive sufficient fertility information before treatment. As such, our team developed and alpha tested the Begin Exploring Fertility Options, Risks, and Expectations decision aid (BEFORE DA). METHODS:The BEFORE DA development process was guided by the International Patient Decision Aids Standards and the Ottawa Decision Support Framework. Our team used integrated knowledge translation by collaborating with multiple stakeholders throughout the development process including breast cancer survivors, multi-disciplinary health care providers (HCPs), advocates, and cancer organization representatives. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'fertilityaid', 'fertility', 'fertility fertility', 'premenopausal'""" ; - sc:featureList edam:operation_3359 ; - sc:name "BEFORE" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31660965" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_0218, - edam:topic_0625, - edam:topic_0769, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6787548", - "pubmed:31603193" ; - sc:description """The extraction of complex relationships and their conversion to biological expression language (BEL) overview of the BioCreative VI (2017) BEL track. - -A semi-automated workflow for BEL network creation. - -BELIEF (Biological Expression Language Information Extraction WorkFlow) is a semi-automated workflow for BEL network creation. It embeds an information extraction workflow with state-of-the-art named entity recognition (NER) and relation extraction (RE) methods. This dashboard provides an interface to the BELIEF system. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/BEL_Commons (SCAI.FRAUNHOFER.DE), bio.tools/PathMe (SCAI.FRAUNHOFER.DE). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'BioCreative'""" ; - sc:featureList edam:operation_2422, - edam:operation_3280, - edam:operation_3625 ; - sc:name "BEL" ; - sc:url "http://belief.scai.fraunhofer.de/BeliefDashboard" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -7421,7 +6023,7 @@ BELIEF (Biological Expression Language Information Extraction WorkFlow) is a sem sc:url "https://bel-commons.scai.fraunhofer.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170 ; @@ -7435,30 +6037,8 @@ BELIEF (Biological Expression Language Information Extraction WorkFlow) is a sem sc:name "BERMUDA" ; sc:url "https://github.com/txWang/BERMUDA" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_3295, - edam:topic_3419, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6896511", - "pubmed:31805847" ; - sc:description """a web server for brain expression Spatio-temporal pattern analysis. - -Brain Expression Spatio-Temporal pattern. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/best_literature, bio.tools/best. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/i-gsea4gwas (PSYCH.AC.CN), bio.tools/icsnpathway (PSYCH.AC.CN)""" ; - sc:featureList edam:operation_0337, - edam:operation_2495, - edam:operation_3799 ; - sc:name "BEST_autogenerated" ; - sc:url "http://best.psych.ac.cn" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -7478,7 +6058,7 @@ Brain Expression Spatio-Temporal pattern. sc:url "http://www.picb.ac.cn/rnomics/BEable-GPS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3320, edam:topic_3523 ; @@ -7491,7 +6071,7 @@ Brain Expression Spatio-Temporal pattern. sc:url "https://github.com/GrosseLab/BGSC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3125, edam:topic_3534 ; @@ -7504,7 +6084,7 @@ Brain Expression Spatio-Temporal pattern. sc:url "http://202.119.84.36:3079/BGSVM-NUC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -7522,7 +6102,7 @@ Brain Expression Spatio-Temporal pattern. sc:url "http://animal.nwsuaf.edu.cn/code/index.php/BosVar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0196, @@ -7543,27 +6123,8 @@ Brain Expression Spatio-Temporal pattern. sc:url "http://www.bigsi.io/" ; biotools:primaryContact "Phelim Bradley" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0821, - edam:topic_2885, - edam:topic_3305 ; - sc:citation , - "pmcid:PMC6810522" ; - sc:description """234. Reversal of Carbapenem and Amikacin Susceptibilities in Isogenic Klebsiella pneumoniae From a Patient with Persistent Bacteriuria. - -Institut Pasteur MLST databases and software. - -This site hosts databases of multilocus sequence typing (MLST) and whole-genome based typing schemes, which are used for genotyping of bacterial isolates. They provide reference nomenclatures of microbial strains and are mainly intended for molecular epidemiology of pathogens of public health importance, detection of virulence and antimicrobial resistance genes, and for population biology research. This site is powered by the BIGSdb software. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CGE', 'CLC Genomics', 'CLSI guidelines', 'cultures grew'""" ; - sc:featureList edam:operation_3482, - edam:operation_3803, - edam:operation_3840 ; - sc:name "BIGsDB" ; - sc:url "https://bigsdb.pasteur.fr" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, edam:topic_0749 ; @@ -7578,21 +6139,8 @@ This site hosts databases of multilocus sequence typing (MLST) and whole-genome sc:name "BINDER" ; sc:url "http://github.com/ptrcksn/BINDER" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0821, - edam:topic_3292, - edam:topic_3315 ; - sc:citation , - "pubmed:31532881" ; - sc:description "Designing and developing a biomolecular interactive tutorial (BIOMINT) learning tool for undergraduate students | Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube | About Press Copyright Contact us Creators Advertise Developers Terms Privacy Policy & Safety Test new features | [[getSimpleString(data.promoText)]] | [[computeRestrictedModeText_(clientSettings_.restrictedMode)]]" ; - sc:featureList edam:operation_0334, - edam:operation_0337, - edam:operation_3216 ; - sc:name "BIOMINT" ; - sc:url "https://bit.ly/biomint" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, edam:topic_2269 ; @@ -7607,30 +6155,30 @@ This site hosts databases of multilocus sequence typing (MLST) and whole-genome a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_0966" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology term" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0966" ; - sc:name "Ontology term" ; - sc:sameAs "http://edamontology.org/data_0966" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0949" ; - sc:name "Workflow metadata" ; - sc:sameAs "http://edamontology.org/data_0949" ], + sc:additionalType "http://edamontology.org/data_1731" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Ontology concept definition" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2337" ; - sc:name "Resource metadata" ; - sc:sameAs "http://edamontology.org/data_2337" ], + sc:additionalType "http://edamontology.org/data_3669" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Training material" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3669" ; - sc:name "Training material" ; - sc:sameAs "http://edamontology.org/data_3669" ], + sc:additionalType "http://edamontology.org/data_2337" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Resource metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1731" ; - sc:name "Ontology concept definition" ; - sc:sameAs "http://edamontology.org/data_1731" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0949" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Workflow metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Database portal", "Web application" ; @@ -7661,7 +6209,7 @@ This site hosts databases of multilocus sequence typing (MLST) and whole-genome biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3384, edam:topic_3444 ; @@ -7672,17 +6220,8 @@ This site hosts databases of multilocus sequence typing (MLST) and whole-genome sc:name "BISON" ; sc:url "http://nist.mni.mcgill.ca/?p=2148" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3304, - edam:topic_3384, - edam:topic_3444 ; - sc:citation ; - sc:description "> HOMEPAGE MISSING! | > NAME (BISON) SIMILAR TO (PUB. DIFFERENT) bio.tools/bison (Bison) | Brain tISue segmentatiON pipeline using T1-weighted magnetic resonance images and a random forests classifier | Abstract Introduction Accurate differentiation of brain tissue types from T1-weighted magnetic resonance images (MRIs) is a critical requirement in many neuroscience and clinical applications. Accurate automated tissue segmentation is challenging due to the variabilities in the tissue intensity profiles caused by differences in scanner models and acquisition protocols, in addition to the varying age of the subjects and potential presence of pathology. In this paper, we present BISON (Brain tISue segmentatiON), a new pipeline for tissue segmentation. Methods BISON performs tissue segmentation using a random forests classifier and a set of intensity and location priors obtained based on T1-weighted images" ; - sc:name "BISON_autogenerated" ; - sc:url "https://doi.org/10.1101/747998" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3170, edam:topic_3308, @@ -7703,7 +6242,7 @@ Submission files for the ICIBM2019 conference""" ; sc:url "https://code.bmi.osumc.edu/gadepalli.3/BISR-RNAseq-ICIBM2019" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0623, edam:topic_3512 ; @@ -7718,23 +6257,8 @@ Submission files for the ICIBM2019 conference""" ; sc:name "BITACORA" ; sc:url "http://www.ub.edu/softevol/bitacora" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0091, - edam:topic_0203, - edam:topic_3318 ; - sc:citation , - "pmcid:PMC6873652", - "pubmed:31757202" ; - sc:description """the fifteenth annual meeting of the Italian Society of Bioinformatics. - -This preface introduces the content of the BioMed Central Bioinformatics journal Supplement related to the 15th annual meeting of the Bioinformatics Italian Society, BITS2018. The Conference was held in Torino, Italy, from June 27th to 29th, 2018. - -||| HOMEPAGE MISSING!""" ; - sc:name "BITS2018" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31757202" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:31359834" ; sc:description "A new joint screening method for right-censored time-to-event data with ultra-high dimensional covariates | Liu, Y., Chen, X., & Li, G. (2019). A new joint screening method for right-censored time-to-event data with ultra-high dimensional covariates. Statistical methods in medical research, 0962280219864710 | This program implements the BJASS joint screening method for DLBCL data (stored in matlab.mat) described in Section 4 of the paper" ; @@ -7745,7 +6269,7 @@ This preface introduces the content of the BioMed Central Bioinformatics journal sc:url "https://github.com/yiucla/BJASS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0602 ; @@ -7760,28 +6284,8 @@ This preface introduces the content of the BioMed Central Bioinformatics journal sc:url "https://github.com/waynebhayes/BLANT" ; biotools:primaryContact "Wayne B. Hayes" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0078, - edam:topic_0080, - edam:topic_0081, - edam:topic_3297 ; - sc:citation , - "pubmed:31581096" ; - sc:description """Parallel Architecture and Hardware Accelerator Design for BLAST-based Protein Sequence Alignment. - -In this study, we design a hardware accelerator for a widely used sequence alignment algorithm, the basic local alignment search tool for proteins (BLASTP). The architecture of the proposed accelerator consists of five stages: a new systolic-array-based one-hit finding stage, a novel RAM-REG-based two-hit finding stage, a refined ungapped extension stage, a faster gapped extension stage, and a highly efficient parallel sorter. The system is implemented on an Altera Stratix V FPGA with a processing speed of more than 500 giga cell updates per second (GCUPS). It can receive a query sequence, compare it with the sequences in the database, and generate a list sorted in descending order of the similarity scores between the query sequence and the subject sequences. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'accelerator', 'Altera', 'Stratix', 'RAM-REG-based'""" ; - sc:featureList edam:operation_0495, - edam:operation_2421, - edam:operation_3802 ; - sc:name "BLASTP-ACC" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31581096" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3517, @@ -7804,7 +6308,7 @@ In this study, we design a hardware accelerator for a widely used sequence align "Yao Zhou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, edam:topic_2885, @@ -7827,7 +6331,7 @@ This R package provide a powerful and flexiable method (BLMRM) to detect ASE gen sc:url "https://github.com/JingXieMIZZOU/BLMRM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0176, edam:topic_3306, @@ -7853,7 +6357,7 @@ Gill, S; Lim, N. M.; Grinaway, P.; Rustenburg, A. S.; Fass, J.; Ross, G.; Choder sc:url "http://github.com/MobleyLab/blues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_2840, @@ -7870,7 +6374,7 @@ Gill, S; Lim, N. M.; Grinaway, P.; Rustenburg, A. S.; Fass, J.; Ross, G.; Choder sc:url "http://invitrotox.uni-konstanz.de/BMC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, edam:topic_3173 ; @@ -7886,7 +6390,7 @@ Gill, S; Lim, N. M.; Grinaway, P.; Rustenburg, A. S.; Fass, J.; Ross, G.; Choder sc:url "http://bmeg.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2640, @@ -7903,7 +6407,7 @@ Gill, S; Lim, N. M.; Grinaway, P.; Rustenburg, A. S.; Fass, J.; Ross, G.; Choder biotools:primaryContact "Jianhua Xuan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -7922,7 +6426,7 @@ Gill, S; Lim, N. M.; Grinaway, P.; Rustenburg, A. S.; Fass, J.; Ross, G.; Choder sc:url "http://www.bioeng.nus.edu.sg/engbio/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3810, @@ -7942,30 +6446,8 @@ Gill, S; Lim, N. M.; Grinaway, P.; Rustenburg, A. S.; Fass, J.; Ross, G.; Choder sc:url "https://cran.r-project.org/package=BMTME" ; biotools:primaryContact "Francisco Javier Luna-Vazquez" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_3077, - edam:topic_3174, - edam:topic_3673, - edam:topic_3837 ; - sc:citation , - "pmcid:PMC6879543", - "pubmed:31772173" ; - sc:description """Shotgun metagenome data of a defined mock community using Oxford Nanopore, PacBio and Illumina technologies. - -Metagenomic sequence data from defined mock communities is crucial for the assessment of sequencing platform performance and downstream analyses, including assembly, binning and taxonomic assignment. We report a comparison of shotgun metagenome sequencing and assembly metrics of a defined microbial mock community using the Oxford Nanopore Technologies (ONT) MinION, PacBio and Illumina sequencing platforms. Our synthetic microbial community BMock12 consists of 12 bacterial strains with genome sizes spanning 3.2-7.2 Mbp, 40-73% GC content, and 1.5-7.3% repeats. Size selection of both PacBio and ONT sequencing libraries prior to sequencing was essential to yield comparable relative abundances of organisms among all sequencing technologies. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ONT', 'PacBio', 'PacBio ONT'""" ; - sc:featureList edam:operation_0310, - edam:operation_3180, - edam:operation_3185, - edam:operation_3192, - edam:operation_3218 ; - sc:name "BMock12" ; - sc:url "https://bitbucket.org/volkansevim/bmock12/src/master/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0209, edam:topic_3377, edam:topic_3379 ; @@ -7977,7 +6459,7 @@ Metagenomic sequence data from defined mock communities is crucial for the asses sc:url "https://github.com/BioinformaticsCSU/BNNR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -7997,7 +6479,7 @@ Metagenomic sequence data from defined mock communities is crucial for the asses biotools:primaryContact "BioTM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -8016,7 +6498,7 @@ Metagenomic sequence data from defined mock communities is crucial for the asses biotools:primaryContact "Lee Korshoj" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3308, edam:topic_3336 ; @@ -8031,7 +6513,7 @@ Metagenomic sequence data from defined mock communities is crucial for the asses sc:url "https://github.com/thakar-lab/BONITA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0084 ; @@ -8040,7 +6522,7 @@ Metagenomic sequence data from defined mock communities is crucial for the asses sc:url "https://booster.pasteur.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -8058,21 +6540,8 @@ Transmission network reconstruction for foot-and-mouth disease outbreaks incorpo sc:name "BORIS" ; sc:url "https://github.com/sfires/BORIS" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3263 ; - sc:citation , - "pmcid:PMC6894850", - "pubmed:31805089" ; - sc:description """Blockchain-based privacy-preserving reputation framework for participatory sensing systems. - -Basic operations of BPRF have been tested and evaluated using the Java Pairing Based Cryptography Library (JPBC, http://gas.dia.unisa.it/projects/jpbc/index.html#.XXePsygzaUk)""" ; - sc:featureList edam:operation_3283 ; - sc:name "BPRF" ; - sc:url "https://github.com/emsecurity/BPRF" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3300, @@ -8091,14 +6560,14 @@ Basic operations of BPRF have been tested and evaluated using the Java Pairing B a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2830 ; @@ -8115,39 +6584,16 @@ Basic operations of BPRF have been tested and evaluated using the Java Pairing B sc:url "https://github.com/YosefLab/BRAPeS" ; biotools:primaryContact "Shaked Afik" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0176, - edam:topic_0749, - edam:topic_2275, - edam:topic_2640 ; - sc:citation , - "pubmed:31587361" ; - sc:description """In silico design and molecular basis for the selectivity of Olinone toward the first over the second bromodomain of BRD4. - -Bromodomains (BrDs), a conserved structural module in chromatin-associated proteins, are well known for recognizing ε-N-acetyl lysine residues on histones. One of the most relevant BrDs is BRD4, a tandem BrD containing protein (BrD1 and BrD2) that plays a critical role in numerous diseases including cancer. Growing evidence shows that the two BrDs of BRD4 have different biological functions; hence selective ligands that can be used to study their functions are of great interest. Here, as a follow-up of our previous work, we first provide a detailed characterization study of the in silico rational design of Olinone as part of a series of five tetrahydropyrido indole-based compounds as BRD4 BrD1 inhibitors. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'BrD1 Olinone BrD2 Olinone', 'BRD4 BrD1 Olinone BrD2', 'Olinone BrD2 Olinone', 'BrD1 Olinone BrD2'""" ; - sc:featureList edam:operation_0244, - edam:operation_0394, - edam:operation_0478, - edam:operation_2476, - edam:operation_3893 ; - sc:name "BRD4 BrD1 Olinone BrD2 Olinone" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31587361" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2084" ; - sc:name "Nucleic acid report" ; - sc:sameAs "http://edamontology.org/data_2084" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2084" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Nucleic acid report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3320 ; sc:citation , @@ -8167,7 +6613,7 @@ Bromodomains (BrDs), a conserved structural module in chromatin-associated prote biotools:primaryContact "Yuanhua Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0659, @@ -8191,7 +6637,7 @@ Bromodomains (BrDs), a conserved structural module in chromatin-associated prote "Katrina M. Waters" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_0780, @@ -8209,32 +6655,8 @@ Bromodomains (BrDs), a conserved structural module in chromatin-associated prote sc:name "Block Regression Mapping (BRM)" ; sc:url "https://github.com/huanglikun/BRM" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0625, - edam:topic_0780, - edam:topic_2269, - edam:topic_2885 ; - sc:citation , - "pubmed:31742317" ; - sc:description """A statistical method for QTL mapping based on bulked segregant analysis by deep sequencing. - -Block Regression Mapping (BRM) is a statistical method for QTL mapping based on bulked segregant analysis by deep sequencing. - -Block Regression Mapping (BRM) is a statistical method for QTL mapping based on bulked segregant analysis by deep sequencing. The core function is programmed by R language. For the detailed description of the method, please see the original article "BRM: A statistical method for QTL mapping based on bulked segregant analysis by deep sequencing" (submitted to Bioinformatics). - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/BRM""" ; - sc:featureList edam:operation_0282, - edam:operation_0283, - edam:operation_3196, - edam:operation_3435, - edam:operation_3659 ; - sc:license "GPL-3.0" ; - sc:name "BRM_autogenerated" ; - sc:url "https://github.com/huanglikun/BRM" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0154, @@ -8257,7 +6679,7 @@ Block Regression Mapping (BRM) is a statistical method for QTL mapping based on biotools:primaryContact "Horacio Pérez-Sánchez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -8279,42 +6701,8 @@ Block Regression Mapping (BRM) is a statistical method for QTL mapping based on sc:url "https://bsa4yeast.lcsb.uni.lu" ; biotools:primaryContact "Zhi Zhang" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3336, - edam:topic_3373, - edam:topic_3375, - edam:topic_3379 ; - sc:citation ; - sc:description """Discovery and Development of Safe-in-Man Broad-Spectrum Antiviral Agents. - -Viral diseases are the leading cause of morbidity and mortality in developing countries. Broad-spectrum antiviral agents (BSAA) are key players in control of viral diseases. Here, we reviewed the discovery and development process of BSAAs, focusing on compounds with available safety profiles in human. We summarized the information on approved, investigational and experimental safe-in-man BSAAs in freely accessible database at https: drugvirus.info. The number of these BSAAs will be increased as well as their spectrum of indications will be expanded pending the results of further pre-clinical and clinical studies. This will ultimately reinforce the arsenal of available antiviral options and provide better protection of general population from emerging and re-emerging viral diseases. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'drugvirus', 'safe-in-man BSAAs', 'safe-in-man'""" ; - sc:name "BSAAs" ; - sc:url "https://doi.org/10.20944/PREPRINTS201910.0144.V1" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3324, - edam:topic_3336, - edam:topic_3373, - edam:topic_3375, - edam:topic_3379 ; - sc:citation ; - sc:description """Discovery and Development of Safe-in-Man Broad-Spectrum Antiviral Agents. - -Viral diseases are one of the leading causes of morbidity and mortality in the world. Broad-spectrum antiviral agents (BSAAs) are key players in control of human viral diseases. Here, we reviewed the discovery and development process of BSAAs, focusing on compounds with available safety profiles in human. In addition, we summarized the information on approved, investigational and experimental safe-in-man BSAAs in freely accessible database at https: drugvirus.info. The number of approved BSAAs will be increased as well as their spectrum of indications will be expanded pending the results of further pre-clinical and clinical studies. This will ultimately reinforce the arsenal of available antiviral options and provide better protection of general population from emerging and re-emerging viral diseases. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'drugvirus', 'safe-in-man BSAAs', 'safe-in-man'""" ; - sc:name "BSAAs_autogenerated" ; - sc:url "https://doi.org/10.20944/PREPRINTS201910.0144.V2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0659, edam:topic_0749, @@ -8330,34 +6718,8 @@ On this website we provide access to our annotation integration efforts for Baci sc:name "BSGatlas" ; sc:url "http://rth.dk/resources/bsgatlas" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0625, - edam:topic_0654, - edam:topic_3295, - edam:topic_3674 ; - sc:citation , - "pmcid:PMC6873545", - "pubmed:31752687" ; - sc:description """Analyses of inter-individual variations of sperm DNA methylation and their potential implications in cattle. - -This Cattle Quantitative Trait Locus (QTL) Database (Cattle QTLdb) contains cattle QTL and association data curated from published data. The database is designed to facilitate the process for users to compare, confirm, and locate the most plausible location for genes responsible for quantitative traits important to cattle production. We have been striving our best to curate all available data, and adding tools to the QTLdb for users to accomplish many data meta-analysis and comparison tasks. - -The current release of the Cattle QTLdb contains 130,407 QTLs associations from 983 publications. - -All data by bp (on Btau4.6 in bed format ). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'HVMRs', 'sperm', 'VMRs', 'CMRs'""" ; - sc:featureList edam:operation_0282, - edam:operation_3196, - edam:operation_3206, - edam:operation_3207, - edam:operation_3766 ; - sc:name "BTA18" ; - sc:url "https://www.animalgenome.org/cgi-bin/QTLdb/BT/index" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, edam:topic_3068 ; @@ -8379,7 +6741,7 @@ BUGSnet is a new feature-rich R package to conduct high-quality Bayesian NMA ana sc:url "https://bugsnetsoftware.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -8404,7 +6766,7 @@ BUGSnet is a new feature-rich R package to conduct high-quality Bayesian NMA ana "Vasilis Ntranos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625 ; sc:citation , , @@ -8417,7 +6779,7 @@ BUGSnet is a new feature-rich R package to conduct high-quality Bayesian NMA ana sc:url "https://cran.r-project.org/web/packages/BWGS/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0625, edam:topic_2269, @@ -8439,7 +6801,7 @@ BWMR (Bayesian Weighted Mendelian Randomization), is an efficient statistical me sc:url "https://github.com/jiazhao97/BWMR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3334 ; sc:description "Application designed to view the frequency content of recorded brainwave files. It uses wavelets rather than a conventional FFT to analyse the data for maximum flexibility and resolution." ; @@ -8452,7 +6814,7 @@ BWMR (Bayesian Weighted Mendelian Randomization), is an efficient statistical me biotools:primaryContact "Jim Peters" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0736, edam:topic_0798, @@ -8471,7 +6833,7 @@ Host species Any host species Cow (Bos taurus) Chicken (Gallus gallus) Mouse (Mu sc:url "http://www.tartaglialab.com/bacfitbase" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749, @@ -8489,7 +6851,7 @@ Host species Any host species Cow (Bos taurus) Chicken (Gallus gallus) Mouse (Mu sc:url "http://www.bachberryexp.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3305, @@ -8512,7 +6874,7 @@ Host species Any host species Cow (Bos taurus) Chicken (Gallus gallus) Mouse (Mu biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, edam:topic_3382 ; @@ -8522,7 +6884,7 @@ Host species Any host species Cow (Bos taurus) Chicken (Gallus gallus) Mouse (Mu sc:url "https://veeninglab.com/bactmap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2885, @@ -8543,7 +6905,7 @@ Host species Any host species Cow (Bos taurus) Chicken (Gallus gallus) Mouse (Mu biotools:primaryContact "Takehiko Itoh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3373, edam:topic_3474 ; @@ -8554,7 +6916,7 @@ Host species Any host species Cow (Bos taurus) Chicken (Gallus gallus) Mouse (Mu sc:url "https://github.com/QUST-AIBBDRC/GA-Bagging-SVM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0781, @@ -8573,22 +6935,20 @@ Host species Any host species Cow (Bos taurus) Chicken (Gallus gallus) Mouse (Mu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -8614,7 +6974,7 @@ Host species Any host species Cow (Bos taurus) Chicken (Gallus gallus) Mouse (Mu biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -8634,7 +6994,7 @@ Host species Any host species Cow (Bos taurus) Chicken (Gallus gallus) Mouse (Mu biotools:primaryContact "Small RNAs in silico" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3325, @@ -8659,7 +7019,7 @@ Host species Any host species Cow (Bos taurus) Chicken (Gallus gallus) Mouse (Mu biotools:primaryContact "Riku Katainen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0654, @@ -8681,7 +7041,7 @@ Host species Any host species Cow (Bos taurus) Chicken (Gallus gallus) Mouse (Mu biotools:primaryContact "Guoliang Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2640, edam:topic_3308 ; @@ -8692,28 +7052,8 @@ Host species Any host species Cow (Bos taurus) Chicken (Gallus gallus) Mouse (Mu sc:name "BayICE" ; sc:url "https://github.com/AshTai/BayICE" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0154, - edam:topic_2269, - edam:topic_3172, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6923847", - "pubmed:31861984" ; - sc:description """Treatment of missing values in metabolomic studies using a Bayesian modeling approach. - -BACKGROUND:With the rise of metabolomics, the development of methods to address analytical challenges in the analysis of metabolomics data is of great importance. Missing values (MVs) are pervasive, yet the treatment of MVs can have a substantial impact on downstream statistical analyses. The MVs problem in metabolomics is quite challenging and can arise because the metabolite is not biologically present in the sample, or is present in the sample but at a concentration below the lower limit of detection (LOD), or is present in the sample but undetected due to technical issues related to sample pre-processing steps. The former is considered missing not at random (MNAR) while the latter is an example of missing at random (MAR). Typically, such MVs are substituted by a minimum value, which may lead to severely biased results in downstream analyses. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3435, - edam:operation_3557, - edam:operation_3658 ; - sc:name "BayesMetab" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31861984" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0749, @@ -8732,23 +7072,8 @@ BACKGROUND:With the rise of metabolomics, the development of methods to address biotools:primaryContact "Junbai Wang", "Kirill Batmanov" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2269, - edam:topic_3325, - edam:topic_3379 ; - sc:citation , - "pubmed:31799737" ; - sc:description """Optimizing interim analysis timing for Bayesian adaptive commensurate designs. - -R package for "Optimizing Interim Analysis Timing for Bayesian Adaptive Commensurate Designs". A innovative Bayesian adaptive commensurate designs that borrows adaptively from historical information and also uses a payoff function to optimize the timing of the study’s interim analysis. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'optimIA'""" ; - sc:featureList edam:operation_3435 ; - sc:name "Bayesian" ; - sc:url "https://github.com/wxwx1993/Bayesian_IA_Timing" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3379 ; sc:citation , @@ -8759,22 +7084,8 @@ R package for "Optimizing Interim Analysis Timing for Bayesian Adaptive Commensu sc:name "BayesianPredictiveFutility" ; sc:url "https://github.com/dungtsa/BayesianPredictiveFutility" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_2269, - edam:topic_3407 ; - sc:citation , - "pmcid:PMC6612884", - "pubmed:31510676" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'balance methods FBA', 'flux', 'FBA', 'flux couplings' | Bayesian metabolic flux analysis reveals intracellular flux couplings | Bayesian metabolic flux analysis | Bayesian Metabolic Flux Analysis MATLAB package by Markus Heinonen, Maria Osmala, Henrik Mannerström, Juho Rousu, Samuel Kaski and Harri Lähdesmäki from the CSB research group of Aalto University" ; - sc:featureList edam:operation_2238, - edam:operation_2940, - edam:operation_3660 ; - sc:name "Bayesian metabolic flux analysis" ; - sc:url "http://github.com/markusheinonen/bamfa" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation , @@ -8794,7 +7105,7 @@ R package for "Optimizing Interim Analysis Timing for Bayesian Adaptive Commensu biotools:primaryContact "Simon Sadedin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0102, edam:topic_0196, @@ -8816,7 +7127,7 @@ Bcool clone and compile Bcalm2 Bgreat2 Btrim and Ntcard""" ; sc:url "http://github.com/Malfoy/BCOOL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0196, edam:topic_3068, @@ -8837,44 +7148,23 @@ We include a suggested parts list in BeamDelta-parts-list.csv which enables the sc:name "BeamDelta" ; sc:url "https://github.com/MicronOxford/BeamDelta" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0081, - edam:topic_0196, - edam:topic_3385 ; - sc:citation ; - sc:description """simple alignment tool for optical systems. - -BeamDelta is a tool to help align optical systems. It greatly assists in assembling bespoke optical systems by providing a live view of the current laser beam position and a reference position. Even a simple optical setup has multiple degrees of freedom that affect the alignment of beam paths. These degrees of freedom rise exponentially with the complexity of the system. The process of aligning all the optical components for a specific system is often esoteric and poorly documented, if it is documented at all. Alignment methods used often rely on visual inspection of beams impinging on pinholes in the beam path, typically requiring an experienced operator staring at diffuse reflections for extended periods of time. This can lead to a decline in accuracy due to eye strain, flash blindness as well as symptoms such as headaches and, possibly, more serious retinal damage. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0295, - edam:operation_0310, - edam:operation_3435 ; - sc:name "BeamDelta_autogenerated" ; - sc:url "https://doi.org/10.12688/WELLCOMEOPENRES.15576.1" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -8897,25 +7187,8 @@ BeamDelta is a tool to help align optical systems. It greatly assists in assembl sc:softwareVersion "0.10" ; sc:url "https://mines.legumeinfo.org/beanmine" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3305, - edam:topic_3394 ; - sc:citation , - "pubmed:31441445" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'behavioural addictions' | a digital platform for prevention and management of behavioural addictions | Behavioral addictions Resource hub-" ; - sc:name "BehavioR" ; - sc:url "http://www.behavior.co.in" . - - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31463629" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'Practitioners', 'forthwith', 'Interpersonal' | Examining the Relationship Between the Interpersonal Skills and Effective Practice Repertoires of Applied Behavior Analysis Practitioners | The article Behavioral Artistry: Examining the Relationship Between the Interpersonal Skills and Effective Practice Repertoires of Applied Behavior Analysis Practitioners, written by Kevin Callahan, was originally published electronically on the publisher's internet portal (currently SpringerLink) on August 29, 2019 without open access" ; - sc:name "Behavioral Artistry" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31463629" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, edam:topic_3170, @@ -8936,34 +7209,8 @@ The pipeline can be downloaded as a vragrant virtual machine (https://app.vagran sc:name "Bellerophon" ; sc:url "https://github.com/JesseKerkvliet/Bellerophon" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3314, - edam:topic_3318 ; - sc:citation , - "pmcid:PMC6911961", - "pubmed:31872009" ; - sc:description """A database for evaluating the InMAP, APEEP, and EASIUR reduced complexity air-quality modeling tools. - -Environmental Benefits Mapping and Analysis Program. - -An official website of the United States government. - -We've made some changes to EPA.gov . If the information you are looking for is not here, you may be able to find it on the EPA Web Archive or the January 19, 2017 Web Snapshot . - -United States Environmental Protection Agency. - -BenMAP-CE is an open-source computer program that calculates the number and economic value of air pollution-related deaths and illnesses. The software incorporates a database that includes many of the concentration-response relationships, population files, and health and economic data needed to quantify these impacts. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'RFMEVAL', 'CMAQ', 'Air Pollution', 'CAMx'""" ; - sc:featureList edam:operation_2426, - edam:operation_3096, - edam:operation_3659 ; - sc:name "BenMAP-CE" ; - sc:url "https://www.epa.gov/benmap" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -8985,7 +7232,7 @@ BenMAP-CE is an open-source computer program that calculates the number and econ "Rebecca Fine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0154, @@ -9005,28 +7252,8 @@ BenMAP-CE is an open-source computer program that calculates the number and econ biotools:primaryContact "Andrey V. Kajava", "Stanislav A. Bondarev" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0605, - edam:topic_0610, - edam:topic_0637, - edam:topic_0659, - edam:topic_3168 ; - sc:citation ; - sc:description """integration of ecological responses to a soil bacterial 16S rRNA gene database. - -Abstract High-throughput sequencing 16S rRNA gene surveys have enabled new insights into the diversity of soil bacteria, and furthered understanding of the ecological drivers of abundances across landscapes. However, current analytical approaches are of limited use in formalising syntheses of the ecological attributes of taxa discovered, because derived taxonomic units are typically unique to individual studies and sequence identification databases only characterise taxonomy. To address this, we used sequences obtained from a large nationwide soil survey (GB Countryside Survey, henceforth CS) to create a comprehensive soil specific 16S reference database, with coupled ecological information derived from the survey metadata. - -||| HOMEPAGE BROKEN!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ID-TaxER'""" ; - sc:featureList edam:operation_0224, - edam:operation_3200, - edam:operation_3659 ; - sc:name "Beyond taxonomic identification" ; - sc:url "https://shiny-apps.ceh.ac.uk/ID-35" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -9049,7 +7276,7 @@ Abstract High-throughput sequencing 16S rRNA gene surveys have enabled new insig "Sebastian Will" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0091, @@ -9071,7 +7298,7 @@ BiG-SCAPE and CORASON provide a set of tools to explore the diversity of biosynt sc:url "https://bigscape-corason.secondarymetabolites.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -9091,7 +7318,7 @@ BiGG Models is a knowledgebase of genome-scale metabolic network reconstructions sc:url "http://bigg.ucsd.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -9112,7 +7339,7 @@ BiGG Models is a knowledgebase of genome-scale metabolic network reconstructions sc:url "https://github.com/bhi-kimlab/BiSpark/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_3170, @@ -9131,7 +7358,7 @@ $ python3 BiTSC.py ./data/orthologs_data_uniq.csv ./data/dm_timecourse_FPKMs.csv sc:url "https://github.com/edensunyidan/BiTSC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, edam:topic_0634, @@ -9155,7 +7382,7 @@ normFun.m: Laplacian normalization""" ; sc:url "https://github.com/screamer/BiwalkLDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, edam:topic_0209 ; @@ -9167,7 +7394,7 @@ normFun.m: Laplacian normalization""" ; sc:url "https://biasdb.drug-design.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3500 ; sc:citation , @@ -9181,7 +7408,7 @@ normFun.m: Laplacian normalization""" ; sc:url "https://imagej.net/BigStitcher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0601 ; @@ -9202,7 +7429,7 @@ Preprocessing_BigramPGK.m file was used to carry out preprocessing for Bigram_PG sc:url "https://github.com/abelavit/Bigram-PGK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -9220,7 +7447,7 @@ Preprocessing_BigramPGK.m file was used to carry out preprocessing for Bigram_PG biotools:primaryContact "XiaoFei Zhao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, edam:topic_3179 ; @@ -9235,7 +7462,7 @@ Preprocessing_BigramPGK.m file was used to carry out preprocessing for Bigram_PG sc:url "https://bitbucket.org/hy395/bindspace" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0154, @@ -9250,7 +7477,7 @@ It takes a numerical feature table obtained from any preprocessing software (e.g sc:url "http://binner.med.umich.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2258, edam:topic_3372 ; @@ -9261,7 +7488,7 @@ It takes a numerical feature table obtained from any preprocessing software (e.g sc:url "https://ucrania.imd.ufrn.br/biodia-app/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -9282,7 +7509,7 @@ It takes a numerical feature table obtained from any preprocessing software (e.g biotools:primaryContact "Charles Tapley Hoyt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, edam:topic_3303 ; @@ -9295,7 +7522,7 @@ It takes a numerical feature table obtained from any preprocessing software (e.g sc:url "https://github.com/naver/biobert-pretrained" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382 ; sc:citation , @@ -9314,7 +7541,7 @@ It takes a numerical feature table obtained from any preprocessing software (e.g "Markus Pennerstorfer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, edam:topic_0593, @@ -9334,7 +7561,7 @@ BioEn integrates a broad range of experimental data to refine ensembles of struc sc:url "http://github.com/bio-phys/BioEn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3382 ; @@ -9347,22 +7574,8 @@ BioEn integrates a broad range of experimental data to refine ensembles of struc sc:softwareHelp ; sc:url "http://bioera.net/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0769, - edam:topic_3316, - edam:topic_3892 ; - sc:citation , - "pmcid:PMC6736963", - "pubmed:31506435" ; - sc:description "> LOW CONFIDENCE! | software library for interoperable biomolecular simulation workflows | Centre of Excellence for Computational Biomolecular Research | Supporting the Pharmaceutical Industry: BioExcel experts visit AstraZeneca site in Sweden | Hear from our 2019 BioExcel/PRACE Seasonal School travel grant beneficiaries" ; - sc:featureList edam:operation_0478, - edam:operation_2476, - edam:operation_3431 ; - sc:name "BioExcel Building Blocks" ; - sc:url "http://bioexcel.eu" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3334 ; sc:description "Program for real-time biophysical data acquisition, processing, and display." ; @@ -9376,7 +7589,7 @@ BioEn integrates a broad range of experimental data to refine ensembles of struc sc:url "http://www.cyberevolution.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0602, edam:topic_3474, @@ -9390,7 +7603,7 @@ BioEn integrates a broad range of experimental data to refine ensembles of struc sc:url "https://github.com/wjrl/BioFabric" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation , @@ -9408,7 +7621,7 @@ BioEn integrates a broad range of experimental data to refine ensembles of struc sc:url "https://orcs.thebiogrid.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "SPARQL endpoint" ; sc:applicationSubCategory edam:topic_0089, @@ -9429,7 +7642,7 @@ BioEn integrates a broad range of experimental data to refine ensembles of struc sc:url "https://www.biogateway.eu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3300, edam:topic_3314, @@ -9450,7 +7663,7 @@ BioEn integrates a broad range of experimental data to refine ensembles of struc sc:url "https://biogearsengine.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_2258, @@ -9476,14 +7689,14 @@ Calculating 293 chemical descriptors and 14 kinds of chemical fingerprints, 9920 a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1860" ; - sc:name "QTL map" ; - sc:sameAs "http://edamontology.org/data_1860" ], + sc:additionalType "http://edamontology.org/data_1860" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "QTL map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1288" ; - sc:name "Genome map" ; - sc:sameAs "http://edamontology.org/data_1288" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1288" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Genome map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3055 ; @@ -9501,7 +7714,7 @@ Calculating 293 chemical descriptors and 14 kinds of chemical fingerprints, 9920 sc:url "https://sourcesup.renater.fr/projects/biomercator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3295, @@ -9522,7 +7735,7 @@ Calculating 293 chemical descriptors and 14 kinds of chemical fingerprints, 9920 "Yue Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0084, edam:topic_0154, @@ -9534,20 +7747,8 @@ Biomineralization is the process by which living organisms construct hard skelet sc:name "BioMine-DB" ; sc:url "http://biomine.net/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0218, - edam:topic_0602, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6697996", - "pubmed:31419937" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'biomedical named entity recognition cross-sharing' | Multitask learning for biomedical named entity recognition with cross-sharing structure | This repository is a Biomedical Named Entity Recognition model. The code is based on XuezheMax/NeuroNLP2 | Python 3+, PyTorch < 1.0, Gensim >= 0.12.0 | In the root of the repository, first make the tmp directory:" ; - sc:featureList edam:operation_3280 ; - sc:name "BioNER cross-sharing" ; - sc:url "https://github.com/JogleLew/bioner-cross-sharing" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -9566,7 +7767,7 @@ The repository contains the scripts for a workflow that identifies frequent stru sc:url "https://github.com/FabienneL/BioNet-Mining" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769 ; @@ -9579,23 +7780,8 @@ The repository contains the scripts for a workflow that identifies frequent stru sc:url "http://github.com/PapenfussLab/bionix" ; biotools:primaryContact "Mailing list" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3071, - edam:topic_3337, - edam:topic_3372 ; - sc:citation , - "pmcid:PMC6791335", - "pubmed:31609452" ; - sc:description """Biobank Sample Communication Protocol. New approach for the transfer of information between biobanks. - -The idea behind BioSCOOP is to create a standard of information interchange for Biobanks. Similar ideas are already present, however are not very widespread and their development pace doesn’t seem to be very fast. BioSCOOP is not supposed to be yet another Biobank data format, it aims to provide the data format together with the methods of data interchange. BioSCOOP is created with following principles in mind: It should conform to the modern IT industrial standards. It should not be tightly coupled to any specific programming language or data storage. It should be easy to integrate BioSCOOP capabilities into existing BBMS""" ; - sc:featureList edam:operation_2421, - edam:operation_3435 ; - sc:name "BioSCOOP" ; - sc:url "https://github.com/BiobankLab/BioSCOOP" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Web application", "Web service" ; @@ -9619,7 +7805,7 @@ The idea behind BioSCOOP is to create a standard of information interchange for "Dr. Paul Ramsland" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3070 ; sc:citation , @@ -9635,7 +7821,7 @@ BioSwitch is a Matlab software tool for detection of multi-steady state behaviou sc:url "https://sites.google.com/view/bioswitch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3489, edam:topic_3500 ; @@ -9647,7 +7833,7 @@ BioSwitch is a Matlab software tool for detection of multi-steady state behaviou sc:url "https://www.github.com/tamerh/biobtree" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0218, @@ -9668,7 +7854,7 @@ BioSwitch is a Matlab software tool for detection of multi-steady state behaviou biotools:primaryContact "Sean Davis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3697, edam:topic_3810 ; @@ -9681,7 +7867,7 @@ BioSwitch is a Matlab software tool for detection of multi-steady state behaviou sc:url "https://drescherlab.org/data/biofilmQ" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Suite", @@ -9707,7 +7893,7 @@ BioSwitch is a Matlab software tool for detection of multi-steady state behaviou biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, edam:topic_0780, @@ -9727,34 +7913,15 @@ BiomeNet is a database of scored functional networks enabling network biology fo sc:name "BiomeNet" ; sc:url "http://kobic.re.kr/biomenet/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0781, - edam:topic_3174, - edam:topic_3500, - edam:topic_3697, - edam:topic_3837 ; - sc:citation ; - sc:description """A Tool for the Characterization of Animal Microbiomes from Metagenomic Data. - -Abstract The complete characterization of a microbiome is critical in elucidating the complex ecology of the microbial composition within healthy and diseased animals. Many microbiome studies characterize only the bacterial component, for which there are several well-developed sequencing methods, bioinformatics tools and databases available. The lack of comprehensive bioinformatics workflows and databases have limited efforts to characterize the other components existing in a microbiome. BiomeSeq is a tool for the analysis of the complete animal microbiome using metagenomic sequencing data. With its comprehensive workflow, customizable parameters and microbial databases, BiomeSeq can rapidly quantify the viral, fungal, bacteriophage and bacterial components of a sample and produce informative tables for analysis. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3211, - edam:operation_3435, - edam:operation_3799 ; - sc:name "BiomeSeq" ; - sc:url "https://doi.org/10.1101/800995" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_3746" ; + sc:name "Database search results" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174 ; sc:description "A Shiny R app for microbiome visualization, built around the \"microbiome\" package." ; @@ -9768,7 +7935,7 @@ Abstract The complete characterization of a microbiome is critical in elucidatin sc:url "https://github.com/BioData-PT/Biome-Shiny" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:author "Vid Podpečan" ; sc:citation ; @@ -9788,7 +7955,7 @@ The most prominent feature of Biomine Explorer is interactive exploration of its biotools:primaryContact "Vid Podpečan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0102 ; sc:citation , @@ -9801,7 +7968,7 @@ The most prominent feature of Biomine Explorer is interactive exploration of its sc:url "https://github.com/bionitio-team/bionitio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3518 ; @@ -9820,7 +7987,7 @@ BitEpi performs an exhaustive search that means it tests all possible combinatio sc:url "https://github.com/aehrc/BitEpi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3474, @@ -9844,7 +8011,7 @@ BitEpi performs an exhaustive search that means it tests all possible combinatio biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -9880,44 +8047,8 @@ Requirements (automatically taken care of with pip and conda)""" ; sc:softwareHelp ; sc:url "https://github.com/ruggleslab/blackSheep" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0081, - edam:topic_3489 ; - sc:citation , - "pubmed:31650686" ; - sc:description """BlastGUI:A Python-Based Cross-Platform Local BLAST Visualization Software. - -A Python-based Cross-platform Local Blast Visualization Software. - -BlastGUI is A Python-Based Cross-Platform Local BLAST Visualization Software. - -Users can build databases and perform sequence filtering and sequence alignment through a graphical user interface. The operation visualization, automatic sequence filtering, and cross-platform use can significantly facilitate the analysis of biological data and the mining of biological information. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'BlastGUI', 'BlastGUI:A Python-Based Cross-Platform', 'BlastGUI:A Python-Based Cross-Platform Local', 'BlastGUI:A Python-Based Cross-Platform Local BLAST'""" ; - sc:featureList edam:operation_0292, - edam:operation_0337, - edam:operation_3695 ; - sc:license "GPL-3.0" ; - sc:name "BlastGUI:A" ; - sc:url "https://github.com/byemaxx/BlastGUI" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_2640, - edam:topic_2840, - edam:topic_3168, - edam:topic_3305 ; - sc:citation , - "pubmed:31720691" ; - sc:description """occupational exposure limits are insufficiently protecting individual worker health. - -In an editorial in an earlier issue of this journal, Johanson & Tinnerberg (1) expressed serious and well-founded concern over the large number of future occupational cancer cases that will result if exposures for a number of substances are not reduced below the so-called "binding occupational exposure limit values" (BOELV) issued by the EU (2). The balance between what is perceived as possible to comply with and the foreseeable health gain when setting BOELV is further discussed in a letter to the Editor by Cherrie (3). This debate raises several important aspects of how to protect workers from cancer as well as other potentially lethal diseases. Herewith, we discuss some of these aspects. One problem in setting OEL is that levels that are considered safe may not be seen as feasible when accounting for technological and societal aspects""" ; - sc:name "BlobServlet" ; - sc:url "http://ec.europa.eu/social/BlobServlet?docId=10161&langId=en" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0196, @@ -9938,49 +8069,8 @@ In an editorial in an earlier issue of this journal, Johanson & Tinnerberg (1) e sc:name "BlobToolKit" ; sc:url "https://blobtoolkit.genomehubs.org/view" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3394, - edam:topic_3474, - edam:topic_3489, - edam:topic_3810 ; - sc:citation ; - sc:description """An Exploration into the Opportunities for Blockchain in the Fresh Produce Supply Chain. - -Festival of Content & Collaboration. - -Blockchain Live 2020 is a festival of content & collaboration, driving discussion & debate on how best to accelerate global adoption of blockchain & DLT. - -Blockchain Live is a ground-breaking festival of content and collaboration that connects the fragmented ecosystem to drive meaningful discussion and debate on how best to accelerate global adoption of blockchain. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Bitcoin'""" ; - sc:featureList edam:operation_2422, - edam:operation_3435 ; - sc:name "Blockchain" ; - sc:url "http://www.blockchainlive.com" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3372 ; - sc:citation ; - sc:description """Analysis of Test Driven Development on sentiment and coding activities in GitHub repositories. - -Public Information for Job 30188. - -Mining Ultra-Large-Scale Software Repositories. - -Nov '18 : Boa hits over 1,000 users!. - -Oct '19 : new 2019-10 dataset including support for advanced static program analysis !. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'sentiment', 'TDD', '256572', 'TDD repositories'""" ; - sc:featureList edam:operation_1812, - edam:operation_3096 ; - sc:name "Boa" ; - sc:url "http://boa.cs.iastate.edu/boa/?q=boa/job/public/30188" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -9998,26 +8088,21 @@ Oct '19 : new 2019-10 dataset including support for advanced static program anal a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -10040,30 +8125,8 @@ Oct '19 : new 2019-10 dataset including support for advanced static program anal sc:softwareVersion "1.4" ; sc:url "http://genomes.missouri.edu/bovinemine" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_0602, - edam:topic_0621, - edam:topic_0622 ; - sc:citation , - "pubmed:31647100" ; - sc:description """new annotation tools for a new reference genome. - -The Bovine Genome Database supports the efforts of bovine genomics researchers by providing data mining, genome navigation and annotation tools for the bovine reference genome based on the hereford cow, L1 Dominette 01449. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/bgd (BOVINEGENOME.ORG). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'LSAA'""" ; - sc:featureList edam:operation_0362, - edam:operation_0525, - edam:operation_2421, - edam:operation_2422, - edam:operation_3208 ; - sc:name "Bovine Genome Database" ; - sc:url "http://bovinegenome.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -10078,7 +8141,7 @@ The Bovine Genome Database supports the efforts of bovine genomics researchers b sc:url "https://github.com/ddimucci/BowSaw" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3334 ; sc:description "Bio and Neurofeedback Application, designed to work with various Electroencephalography (EEG) amplifiers. It supports Human-Computer-Interface functions and NeuroServer Software Framework to transmit live recordings via Internet or LAN." ; @@ -10095,7 +8158,7 @@ The Bovine Genome Database supports the efforts of bovine genomics researchers b biotools:primaryContact "Chris Veigl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3334, edam:topic_3384 ; @@ -10111,7 +8174,7 @@ The Bovine Genome Database supports the efforts of bovine genomics researchers b sc:url "http://github.com/MICA-MNI/BrainSpace" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_2229, @@ -10128,7 +8191,7 @@ Since the generation of cell-type specific knockout models, the importance of in sc:url "https://mpi-ie.shinyapps.io/braininteractomeexplorer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3399, @@ -10148,28 +8211,8 @@ Since the generation of cell-type specific knockout models, the importance of in biotools:primaryContact "Andrew I. Su", "Benjamin M. Good" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0153, - edam:topic_0736, - edam:topic_0820 ; - sc:citation , - "pubmed:31652399" ; - sc:description """A Graph-Based Algorithm to Analyze Dynamic H-Bond Networks in Membrane Proteins. - -Membrane proteins that function as transporters or receptors must communicate with both sides of the lipid bilayer in which they sit. This long distance communication enables transporters to move protons or other ions and small molecules across the bilayer and receptors to transmit an external signal to the cell. Hydrogen bonds, hydrogen-bond networks, and lipid-protein interactions are essential for the motions and functioning of the membrane protein and, consequently, of outmost interest to structural biology and numerical simulations. We present here Bridge, an algorithm tailored for efficient analyses of hydrogen-bond networks in membrane transporter and receptor proteins. - -||| HOMEPAGE MISSING!. - -||| NAME (Bridge) SIMILAR TO (PUB. DIFFERENT) bio.tools/bridge (bridge)""" ; - sc:featureList edam:operation_0394, - edam:operation_2476, - edam:operation_3891 ; - sc:name "Bridge_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31652399" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0769, edam:topic_3293, @@ -10188,18 +8231,8 @@ Broccoli, a user-friendly pipeline designed to infer with high precision ortholo sc:name "Broccoli" ; sc:url "https://github.com/rderelle/Broccoli" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3474, - edam:topic_3518 ; - sc:citation , - "pubmed:31416551" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'SSA' (bio.tools/ssa), 'MOSHO', 'salp', 'SSA MOSHO' | Gene selection for cancer classification using multi-objective meta-heuristic and machine learning methods | BACKGROUND AND OBJECTIVE:Over the last two decades, DNA microarray technology has emerged as a powerful tool for early cancer detection and prevention. It helps to provide a detailed overview of disease complex microenvironment. Moreover, online availability of thousands of gene expression assays made microarray data classification an active research area. A common goal is to find a minimum subset of genes and maximizing the classification accuracy. METHODS:In pursuit of a similar objective, we have proposed framework (C-HMOSHSSA) for gene selection using multi-objective spotted hyena optimizer (MOSHO) and salp swarm algorithm (SSA)" ; - sc:name "C-HMOSHSSA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31416551" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0736, edam:topic_0749 ; @@ -10214,7 +8247,7 @@ Broccoli, a user-friendly pipeline designed to infer with high precision ortholo sc:url "https://zhanglab.ccmb.med.umich.edu/C-I-TASSER/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3292 ; @@ -10232,7 +8265,7 @@ Broccoli, a user-friendly pipeline designed to infer with high precision ortholo biotools:primaryContact "M. Nuriddinov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3170, edam:topic_3517 ; @@ -10251,7 +8284,7 @@ We provide a computationally efficient and robust implementation of the recently sc:url "https://cran.r-project.org/web/packages/CJAMP/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, edam:topic_3168 ; @@ -10263,7 +8296,7 @@ We provide a computationally efficient and robust implementation of the recently sc:url "http://drivergene.rwebox.com/c3/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168, @@ -10280,18 +8313,8 @@ We provide a computationally efficient and robust implementation of the recently sc:url "https://github.com/LupienLab/C3D" ; biotools:primaryContact "Tahmid Mehdi" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749 ; - sc:citation , - "pmcid:PMC6767114", - "pubmed:31510098" ; - sc:description "> CORRECT NAME OF TOOL COULD ALSO BE 'Cloud-based Acoustic Beamforming', 'Cloud-based Acoustic Beamforming Emulator' | A Cloud-Based Acoustic Beamforming Emulator for FPGA-Based Sound Source Localization | Microphone array online emulator | Welcome to the Microphone Array Emulator platform of the RAPPTORlab at the Vrije Universiteit Brussel. From this website one can emulate the behaviour of a microphone array along with the required Signal Processing Chain. It is also possible to compute captured samples from measurements with microphones. After computation, the results can be visualized in both 2D and 3D. Launching emulations and visualizing results can be done by using the tools provided at the download section | A few steps are required before one can launch emulations and visualize results: | Create an account on our platform. We kindly ask to provide the full name, e-mail address and institution of affiliation | Each account needs to be approved by the administrator of the tool" ; - sc:featureList edam:operation_0337 ; - sc:name "CABE" ; - sc:url "https://projects.rapptor.vub.ac.be/CABE/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -10313,7 +8336,7 @@ We provide a computationally efficient and robust implementation of the recently sc:url "http://biocomp.chem.uw.edu.pl/CABSdock" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3067, edam:topic_3474 ; sc:citation , @@ -10322,28 +8345,8 @@ We provide a computationally efficient and robust implementation of the recently sc:name "CADOES" ; sc:url "http://osteomics.com/CADOES/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0749, - edam:topic_3168, - edam:topic_3173, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6834773", - "pubmed:31737053" ; - sc:description """The Local Context of Cis-Regulatory Modules Complicates Prediction of Regulatory Variants. - -Many problems of modern genetics and functional genomics require the assessment of functional effects of sequence variants, including gene expression changes. Machine learning is considered to be a promising approach for solving this task, but its practical applications remain a challenge due to the insufficient volume and diversity of training data. A promising source of valuable data is a saturation mutagenesis massively parallel reporter assay, which quantitatively measures changes in transcription activity caused by sequence variants. Here, we explore the computational predictions of the effects of individual single-nucleotide variants on gene transcription measured in the massively parallel reporter assays, based on the data from the recent "Regulation Saturation" Critical Assessment of Genome Interpretation challenge. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'expression-variants'""" ; - sc:featureList edam:operation_0331, - edam:operation_0438, - edam:operation_3799 ; - sc:name "CAGI" ; - sc:url "https://bitbucket.org/autosomeru_cagi2018/cagi2018_regsat" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3382 ; sc:citation , @@ -10356,7 +8359,7 @@ Many problems of modern genetics and functional genomics require the assessment sc:url "https://aethelraed.nl/calima" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -10376,18 +8379,8 @@ Many problems of modern genetics and functional genomics require the assessment sc:url "https://github.com/ridgelab/cam" ; biotools:primaryContact "Justin Miller" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0611 ; - sc:citation , - "pubmed:31393838" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'G-code', 'machining', 'beam', 'FIB machining' | Computer-aided manufacturing and focused ion beam technology enable machining of complex micro- and nano-structures | Interpretation and interpolation of G-code for creating stream files for FIB/SEM instruments | Program for interpretation and interpolation of G-code to create stream files for FIB/SEM instruments | The currently implemented output format is designed for use with an FEI Helios NanoLab G3 instrument, but may easily be adapted to other instruments. This code accepts most G-code files as an input and was tested with the G-code dialects RS274D, WinCNC and FreeCAD. In its current implementation the overall patterning time is equally distributed over all patterning points. Machining or printing of 3D-structures is therefore currently limited to layered structures. Please read the manual for further instructions on installing and running the interpreter program" ; - sc:license "MIT" ; - sc:name "CAM2FIB" ; - sc:url "https://github.com/frankNiessen/CAM2FIB" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0196, edam:topic_0610, @@ -10409,7 +8402,7 @@ For full Installation instructions and initial uses, refer to vignette ‘CAMI_I sc:url "https://github.com/ruffleymr/CAMI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697, @@ -10430,7 +8423,7 @@ For full Installation instructions and initial uses, refer to vignette ‘CAMI_I sc:url "https://github.com/CAMI-challenge/CAMISIM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, edam:topic_3407 ; @@ -10444,31 +8437,8 @@ Metabolic networks can model the behavior of metabolism in the cell. Since analy sc:name "CAMND" ; sc:url "http://eslahchilab.ir/softwares/dmn" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0654, - edam:topic_0769, - edam:topic_3168, - edam:topic_3303 ; - sc:citation , - "pubmed:31628139" ; - sc:description """Multicenter Evaluation of Circulating Cell-Free DNA Extraction and Downstream Analyses for the Development of Standardized (Pre)analytical Work Flows. - -CANCER-ID – Innovation in Medicine. - -Cancer Treatment and monitoring through identification of cCTCs and tumor related nucleic acids in blood. - -In this section you can find out more about the scientific objectives and the workplan of CANCER-ID. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'mnDNA', 'ccfDNA preanalytical', 'ccfDNA' (bio.tools/ccfDNA), 'ctDNA'""" ; - sc:featureList edam:operation_3202, - edam:operation_3435, - edam:operation_3799 ; - sc:name "CANCER-ID" ; - sc:url "http://www.cancer-id.eu" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3384, @@ -10490,7 +8460,7 @@ In this section you can find out more about the scientific objectives and the wo biotools:primaryContact "M. A. Badgeley" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -10508,26 +8478,8 @@ In this section you can find out more about the scientific objectives and the wo sc:name "Computational Analysis of Novel Drug Opportunities (CANDO)" ; sc:url "https://github.com/ram-compbio/CANDO" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0769, - edam:topic_3172, - edam:topic_3343, - edam:topic_3407 ; - sc:citation ; - sc:description """Computer-Assisted Natural Products Anticipation. - -

Traditional natural products discovery workflows implying a combination of different targeting strategies including structure- and or bioactivity-based approaches, afford no information about new compound structure until late in the discovery pipeline. By integrating a MS MS prediction module and a collaborative library of (bio)chemical transformations, we have developed a new platform, coined MetWork, that is able of anticipating the structural identity of metabolites starting from any identified compound. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'MetWork' (bio.tools/MetWork), 'networking-based', 'alkaloids'""" ; - sc:featureList edam:operation_3803 ; - sc:name "CANPA" ; - sc:url "https://doi.org/10.26434/CHEMRXIV.8015039.V2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3063 ; sc:citation , @@ -10539,20 +8491,8 @@ Diabetic retinopathy (DR) and diabetic macular edema (DME) are the leading cause sc:name "CANet" ; sc:url "https://github.com/xmengli999/CANet" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0780, - edam:topic_3170 ; - sc:citation ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'RNA-CAP-I-seq' | High-resolution Expression Profiling of Selected Gene Sets during Plant Immune Activation | 1_CAP_I_time_series_visualisation | Each folder contains raw datasets, scripts, outputs" ; - sc:featureList edam:operation_2495, - edam:operation_3223, - edam:operation_3800 ; - sc:name "CAP-I" ; - sc:url "https://github.com/slt666666/Ding_etal_2019_CAP_I" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3320, edam:topic_3384, @@ -10570,7 +8510,7 @@ Diabetic retinopathy (DR) and diabetic macular edema (DME) are the leading cause sc:url "https://molgenis43.gcc.rug.nl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_2885, @@ -10589,26 +8529,8 @@ Diabetic retinopathy (DR) and diabetic macular edema (DME) are the leading cause sc:softwareHelp ; sc:url "https://card.mcmaster.ca" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0625, - edam:topic_2885, - edam:topic_3173, - edam:topic_3517 ; - sc:citation ; - sc:description """Computational Assessment of the Regulation-Modulating Potential for Noncoding Variants. - -Large-scale genome-wide association and expression quantitative trait loci studies have identified multiple noncoding variants associated with genetic diseases via affecting gene expression. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/carmen""" ; - sc:featureList edam:operation_0331, - edam:operation_3225, - edam:operation_3799 ; - sc:name "CARMEN_autogenerated" ; - sc:url "http://carmen.gao-lab.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, edam:topic_0749, @@ -10629,7 +8551,7 @@ CARNIVAL is an R-package providing a framework to perform causal reasoning to in sc:url "https://github.com/saezlab/CARNIVAL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3292, edam:topic_3315, edam:topic_3452 ; @@ -10641,112 +8563,8 @@ CARNIVAL is an R-package providing a framework to perform causal reasoning to in sc:name "Colored Abstract Simplicial Complex (CASC)" ; sc:url "https://github.com/ctlee/casc" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_0621, - edam:topic_0749 ; - sc:citation , - "pmcid:PMC6774392", - "pubmed:31579279" ; - sc:description """Advancing Coordinated Cyber-investigations and Tool Interoperability using a Community Developed Specification Language. - -Source files for the CASE website. - -API used for instantiating CASE objects (includes ontological verification and type checking). - -Cyber-investigation Analysis Standard Expression (CASE). - -Read the CASE Wiki tab to learn everything you need to know about the Cyber-investigation Analysis Standard Expression (CASE) ontology. For learning about the Unified Cyber Ontology, CASE's parent, see UCO. - -"@vocab": "http://case.example.org/core#",. - -DET ER DINE PENGER DET DREIER SEG OM... - -Vi er ikke st�rst, men garanterer effektiv behandling. - -Last ned v�r brosjyre i PDF format. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/pymzml (GITHUB.COM). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'UCO', 'cyber-investigation', 'cyber-investigations', 'plaso'""" ; - sc:featureList edam:operation_3435, - edam:operation_3436, - edam:operation_3559 ; - sc:name "CASE" ; - sc:softwareHelp , - ; - sc:url "http://CASE.as" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0082, - edam:topic_0154, - edam:topic_0593, - edam:topic_2814 ; - sc:citation , - "pubmed:31603581" ; - sc:description """Protein structure prediction assisted with sparse NMR data in CASP13. - -13th Community Wide Experiment on the. - -Critical Assessment of Techniques for Protein Structure Prediction. - -CASP13 provides an independent mechanism for the assessment of methods of protein structure modeling. - -||| NAME (CASP13) SIMILAR TO (PUB. DIFFERENT) bio.tools/casp (CASP). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'NMR-assisted'""" ; - sc:featureList edam:operation_0303, - edam:operation_0320, - edam:operation_0321, - edam:operation_0474, - edam:operation_3215 ; - sc:name "CASP13" ; - sc:url "http://www.predictioncenter.org/casp13/index.cgi" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0128, - edam:topic_0196, - edam:topic_0593, - edam:topic_2275 ; - sc:citation , - "pubmed:31612567" ; - sc:description """Blind prediction of homo- and hetero-protein complexes. - -PDBe, Protein Data Bank in Europe. - -Your browser does not support inline frames or is currently configured not to display inline frames. Content can be viewed at actual source page: https://www.ebi.ac.uk/inc/head.html. - -CAPRI: Critical Assessment of PRediction of Interactions. - -CAPRI communitywide experiment on the comparative evaluation of protein-protein docking for structure prediction. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CASP-CAPRI', 'CAPRI', 'Blind prediction homo- hetero-protein complexes'""" ; - sc:featureList edam:operation_0474, - edam:operation_2492, - edam:operation_3899 ; - sc:name "CASP13-CAPRI" ; - sc:url "http://pdbe.org/capri/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0625, - edam:topic_0659, - edam:topic_3170, - edam:topic_3512 ; - sc:citation , - "pubmed:31681950" ; - sc:description """analysis pipeline for single and paired guide RNA CRISPR screens, reveals optimal target selection for long noncoding RNAs. - -Welcome to CASPR. Available resources:. - -||| NAME (CASPR) SIMILAR TO (PUB. DIFFERENT) bio.tools/caspr (CaspR)""" ; - sc:featureList edam:operation_2422 ; - sc:name "CASPR_autogenerated" ; - sc:url "https://judithbergada.github.io/CASPR/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, edam:topic_2640 ; @@ -10764,7 +8582,7 @@ MOTIVATION:There has been recent increased interest in using algorithmic methods sc:url "https://bitbucket.org/oesperlab/stereodist/src/master/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -10786,7 +8604,7 @@ Authors: Frances Sabanes Zariquiey, Joao V. de Souza, Agnieszka K. Bronowska.""" sc:url "https://github.com/ammvitor/CAT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3320, @@ -10807,7 +8625,7 @@ Authors: Frances Sabanes Zariquiey, Joao V. de Souza, Agnieszka K. Bronowska.""" sc:url "https://github.com/shiauck/CATANA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, edam:topic_0102 ; @@ -10823,7 +8641,7 @@ CATHER is a threading algorithm for template-based modeling. It uses an iterativ sc:url "http://yanglab.nankai.edu.cn/CATHER/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2830, edam:topic_3170 ; @@ -10836,7 +8654,7 @@ CATHER is a threading algorithm for template-based modeling. It uses an iterativ sc:url "http://bioinfo.life.hust.edu.cn/CATT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_2885, @@ -10855,7 +8673,7 @@ CAUSALdb integrates large numbers of GWAS summary statistics and identifies cred sc:url "http://mulinlab.org/causaldb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -10875,7 +8693,7 @@ CAUSALdb integrates large numbers of GWAS summary statistics and identifies cred . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -10892,27 +8710,8 @@ CAUSALdb integrates large numbers of GWAS summary statistics and identifies cred sc:name "CBNA" ; sc:url "https://github.com/pvvhoang/CancerDriver" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3376, - edam:topic_3403, - edam:topic_3409, - edam:topic_3421 ; - sc:citation , - "pubmed:31685480" ; - sc:description """Telephone or internet delivered talking therapy can alleviate irritable bowel symptoms. - -Irritable bowel syndrome helped by telephone or internet CBT. - -People with irritable bowel syndrome may find cognitive behavioural therapy (a talking therapy) delivered via telephone or internet improves their symptoms. - -NIHR Signal Telephone or internet delivered talking therapy can alleviate irritable bowel symptoms. - -People with irritable bowel syndrome may find cognitive behavioural therapy (a talking therapy) delivered via telephone or internet improves their symptoms. Compared with usual care alone, both interventions were shown to be more effective, with telephone delivery resulting in greater symptom reduction and web-based therapy being more cost-effective""" ; - sc:name "CBT" ; - sc:url "https://discover.dc.nihr.ac.uk/content/signal-000784/irritable-bowel-syndrome-helped-by-telephone-or-internet-cbt" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, edam:topic_3673 ; @@ -10928,7 +8727,7 @@ People with irritable bowel syndrome may find cognitive behavioural therapy (a t sc:url "https://github.com/jade-nhri/CCBGpipe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3315, @@ -10943,7 +8742,7 @@ People with irritable bowel syndrome may find cognitive behavioural therapy (a t sc:url "https://ccctool.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, edam:topic_2640, @@ -10962,7 +8761,7 @@ Abstract Cancer cell lines (CCLs) as important model systems play critical roles sc:url "http://bioinfo.life.hust.edu.cn/web/CCLA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3697 ; sc:citation , @@ -10973,7 +8772,7 @@ Abstract Cancer cell lines (CCLs) as important model systems play critical roles sc:url "https://ccmp.usc.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -10994,27 +8793,8 @@ Abstract Cancer cell lines (CCLs) as important model systems play critical roles sc:url "https://cge.cbs.dtu.dk/services/ccmetagen/" ; biotools:primaryContact "Vanessa R. Marcelino" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3318, - edam:topic_3384, - edam:topic_3452 ; - sc:citation , - "pubmed:31869822" ; - sc:description """A GATE module for Compton Camera imaging simulation. - -Compton cameras are gamma-ray imaging systems which have been proposed for a wide variety of applications such as medical imaging, nuclear decommissioning or homeland security. In the design and optimization of such a system Monte Carlo simulations play an essential role. In this work, we propose a generic module to perform Monte Carlo simulations and analyses of Compton Camera imaging which is included in the open-source GATE Geant4 platform. Several digitization stages have been implemented within the module to mimic the performance of the most commonly employed detectors (e.g. monolithic blocks, pixelated scintillator crystals, strip detectors...). - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Compton', 'Compton Camera', 'scintillator'""" ; - sc:featureList edam:operation_3435, - edam:operation_3891 ; - sc:name "CCMod" ; - sc:softwareHelp ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31869822" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0621, edam:topic_0749, @@ -11030,40 +8810,8 @@ Abstract 0.1 Motivation Potential transcription factor (TF) complexes may be ide sc:name "CCSeq" ; sc:url "https://cran.r-project.org/web/packages/colocalized/index.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_0749, - edam:topic_3303, - edam:topic_3304, - edam:topic_3379 ; - sc:citation , - "pmcid:PMC6798507" ; - sc:description """3222 University of Mississippi Center for Clinical and Translational Science (CCTS). - -OBJECTIVES SPECIFIC AIMS: To introduce CCTS to the clinical and translational research community. METHODS STUDY POPULATION: Established in the summer of 2017, the Center for Clinical and Translational Science (CCTS) fosters cooperative clinical and translational sciences between the University of Mississippi School of Pharmacy (UMSOP) and the University of Mississippi Medical Center (UMMC). CCTS facilitates the translation of basic research discoveries into clinically validated therapies to improve the health of populations in Mississippi and beyond. Priority areas of investigation in CCTS include Cardiometabolic disorders, Cancer, Neuroscience, Infectious diseases, Precision Medicine, and Community-Based Research. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3435, - edam:operation_3454 ; - sc:name "CCTS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6798507/" . - - a sc:SoftwareApplication ; - sc:citation , - "pmcid:PMC6874365", - "pubmed:31763625" ; - sc:description """Design and Evaluation of a Cochlear Implant and Hearing Aid Research Platform for Speech Scientists and Engineers. - -Hearing loss is an increasingly prevalent condition resulting from damage to the inner ear which causes a reduction in speech intelligibility. The societal need for assistive hearing devices has increased exponentially over the past two decades; however, actual human performance with such devices has only seen modest gains relative to advancements in digital signal processing (DSP) technology. A major challenge with clinical hearing technologies is the limited ability to run complex signal processing algorithms requiring high computation power. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'UT-Dallas', 'speech', 'hearing', 'software-mediated'""" ; - sc:name "CCi-MOBILE" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31763625" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0637 ; sc:citation , @@ -11076,7 +8824,7 @@ Hearing loss is an increasingly prevalent condition resulting from damage to the sc:url "http://www.eslahchilab.ir/softwares/cdap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3379, @@ -11096,7 +8844,7 @@ Hearing loss is an increasingly prevalent condition resulting from damage to the sc:url "https://cde.nlm.nih.gov/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3336, edam:topic_3373, edam:topic_3379 ; @@ -11110,21 +8858,8 @@ Hearing loss is an increasingly prevalent condition resulting from damage to the sc:softwareHelp ; sc:url "http://cdek.wustl.edu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3170, - edam:topic_3411 ; - sc:citation , - "pmcid:PMC6713069", - "pubmed:31497289" ; - sc:description "> LOW CONFIDENCE! | Analysis of CDKN1C in fetal growth restriction and pregnancy loss | Summary of CDKN1C (BWCR, BWS, KIP2, P57) expression in human tissue. Nuclear expression in placenta and a subset of tissues including adrenal gland and glomeruli in kidney | We use cookies to enhance the usability of our website. If you continue, we'll assume that you are happy to receive all cookies. More information. Don't show this again" ; - sc:featureList edam:operation_3196, - edam:operation_3501 ; - sc:name "CDKN1C" ; - sc:url "https://www.proteinatlas.org/ENSG00000129757-CDKN1C/tissue" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0621, edam:topic_3053 ; @@ -11144,7 +8879,7 @@ Baseline Requirements. CDMetaPOP requires the Python2.7.x interpreter, NumPy pac sc:url "https://github.com/ComputationalEcologyLab/CDMetaPOP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_2640, @@ -11166,26 +8901,8 @@ Baseline Requirements. CDMetaPOP requires the Python2.7.x interpreter, NumPy pac sc:softwareHelp ; sc:url "http://cdrgator.ewha.ac.kr" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3263, - edam:topic_3303, - edam:topic_3360, - edam:topic_3379, - edam:topic_3393 ; - sc:citation ; - sc:description """A target product profile for electronic clinical decision support algorithms combined with point-of-care diagnostic test results to support evidence-based decisions during patient consultations by health workers. - -Health workers in low-resource settings often lack the support and tools to follow evidence-based clinical recommendations for diagnosing, treating and managing sick patients. Digital technologies, by combining patient health information and point of care diagnostics with evidence-based clinical protocols, can help improve the quality of care, the rational use of resources (humans, diagnostics and medicines) and save patient lives. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CDSA', 'LMICs', 'evidence-based', 'consultations'""" ; - sc:featureList edam:operation_2428 ; - sc:name "CDSAs" ; - sc:url "https://doi.org/10.1101/19008433" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_2269, @@ -11210,7 +8927,7 @@ Added data-dilution option to speed up the algorithm. We provided explaination i sc:url "https://github.com/kkang7/CDSeq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3050, @@ -11224,19 +8941,8 @@ Added data-dilution option to speed up the algorithm. We provided explaination i sc:name "CEBA geoportail" ; sc:url "http://vmcebagn-dev.ird.fr" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0153, - edam:topic_0602, - edam:topic_2229 ; - sc:citation , - "pmcid:PMC6798854", - "pubmed:31560649" ; - sc:description "> COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/CmPIweb (CELLMICROCOSMOS.ORG), bio.tools/cmpi (CELLMICROCOSMOS.ORG) | A Small History of Java-Based Cell and Membrane Modelling Open Source Software Development | The aim of CELLmicrocosmos is the interactive 3D stereoscopic visualization of biological cells for a better understanding of their internal structures and their functioning" ; - sc:name "CELLmicrocosmos tools" ; - sc:url "https://www.CELLmicrocosmos.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3325, @@ -11252,7 +8958,7 @@ Added data-dilution option to speed up the algorithm. We provided explaination i sc:url "https://cemara.org/presentation/show.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2640, edam:topic_3382 ; @@ -11270,7 +8976,7 @@ There are two comparison strategies for the NMI and ARI depending on the availab sc:url "https://github.com/GaoLabXDU/CEPICS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3474, @@ -11293,7 +8999,7 @@ There are two comparison strategies for the NMI and ARI depending on the availab biotools:primaryContact "Stephen Ramsey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3384, edam:topic_3444 ; @@ -11307,7 +9013,7 @@ There are two comparison strategies for the NMI and ARI depending on the availab sc:url "https://www.github.com/cerr/CERR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0625, edam:topic_3308 ; @@ -11322,7 +9028,7 @@ There are two comparison strategies for the NMI and ARI depending on the availab sc:url "https://saezlab.shinyapps.io/ceviche/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0102, edam:topic_0130, @@ -11345,7 +9051,7 @@ CEthreader (Contact Eigenvector-based threader) is a new threading algorithm tha sc:url "https://zhanglab.ccmb.med.umich.edu/CEthreader" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_3407 ; @@ -11358,7 +9064,7 @@ CEthreader (Contact Eigenvector-based threader) is a new threading algorithm tha sc:url "http://www.rxnfinder.org/cf_targeter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -11378,7 +9084,7 @@ CFD itself is implemented in Go (source code is in the go/src/ directory), and f sc:url "https://github.com/Kingsford-Group/cfd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3173, edam:topic_3176 ; @@ -11392,40 +9098,8 @@ CFD itself is implemented in Go (source code is in the go/src/ directory), and f sc:name "Cell-Free Epigenome Atlas (CFEA)" ; sc:url "http://www.bio-data.cn/CFEA" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3377, - edam:topic_3810 ; - sc:citation , - , - "pubmed:31365746", - "pubmed:31445878" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'PCD', 'Incorporating patient-generated contextual data care', 'ROPS', 'NRRP', 'EHR', 'facilitators' | Key factors for successful implementation of the National Rollover Protection Structure Rebate Program | Clinician perspectives using the Consolidated Framework for Implementation Science | The Consolidated Framework for Implementation Research | You have come to the right place if you are looking for more information about the Consolidated Framework for Implementation Research (CFIR) that was originally published in Implementation Science in 2009. This site is created for individuals considering using the CFIR to evaluate an implementation or design an implementation study. Supported Web Browsers: Google Chrome,… | The Consolidated Framework for Implementation Research Technical Assistance for users of the CFIR framework" ; - sc:featureList edam:operation_3436 ; - sc:name "CFIR" ; - sc:url "http://www.cfirguide.org/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3324, - edam:topic_3335, - edam:topic_3379 ; - sc:citation ; - sc:description """Exploring barriers and facilitators to integrated hypertension-HIV management in Ugandan HIV clinics using the Consolidated Framework for Implementation Research (CFIR). - -Background: Persons Living with HIV (PLHIV) receiving antiretroviral therapy have increased risk of cardiovascular disease (CVD). Integration of services for hypertension (HTN), the primary CVD risk factor, into HIV clinics is recommended in Uganda. Our prior work demonstrated multiple gaps in implementation of integrated HTN care along the HIV treatment cascade. In this study, we sought to explore barriers to, and facilitators of, integrating HTN screening and treatment into HIV clinics in Eastern Uganda. Methods: We conducted a qualitative study at three HIV clinics with low, intermediate, and high HTN care cascade performance, which we classified based on our prior work. - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/CFIR. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'HTN', 'HTN HIV'""" ; - sc:featureList edam:operation_3283, - edam:operation_3760 ; - sc:name "CFIR_autogenerated" ; - sc:url "https://doi.org/10.1101/19013920" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3382, edam:topic_3474 ; @@ -11438,7 +9112,7 @@ Background: Persons Living with HIV (PLHIV) receiving antiretroviral therapy hav sc:url "https://github.com/bchidest/CFNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3301, edam:topic_3382 ; @@ -11458,7 +9132,7 @@ Background: Persons Living with HIV (PLHIV) receiving antiretroviral therapy hav biotools:primaryContact "Eyal Dafni" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0625, edam:topic_2640, @@ -11477,7 +9151,7 @@ Clinical Genome & Ancestry Report (CGAR) enables users to identify and prioritiz sc:url "https://tom.tch.harvard.edu/apps/cgar/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation , "pubmed:31443042" ; @@ -11489,7 +9163,7 @@ Clinical Genome & Ancestry Report (CGAR) enables users to identify and prioritiz sc:url "http://www.combio-lezhang.online/cgidla/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0208, edam:topic_2640, edam:topic_3360 ; @@ -11502,7 +9176,7 @@ Clinical Genome & Ancestry Report (CGAR) enables users to identify and prioritiz sc:url "http://www.medsysbio.org/CGIdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0196, edam:topic_3542 ; @@ -11516,7 +9190,7 @@ Clinical Genome & Ancestry Report (CGAR) enables users to identify and prioritiz sc:url "https://github.com/iobio-zjut/CGLFold" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3320, @@ -11536,7 +9210,7 @@ Project description: We propose to use chaos game representation and neural netw sc:url "https://github.com/thoang3/portfolio/tree/SpliceSites_ANN_CGR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, @@ -11559,48 +9233,19 @@ Project description: We propose to use chaos game representation and neural netw "Ramil Nugmanov", "Timur Madzhidov" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0077, - edam:topic_0199, - edam:topic_3796 ; - sc:citation , - "pubmed:31733055" ; - sc:description """a genomic variation database for Chinese populations. - -Nucleic Acids Research, gkz952, doi:10.1093 nar gkz952. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'gkz952'""" ; - sc:name "CGVD" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31733055" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3305, - edam:topic_3324, - edam:topic_3411, - edam:topic_3418 ; - sc:citation , - "pmcid:PMC6785670", - "pubmed:31598661" ; - sc:description """Overview and Development of the Child Health and Mortality Prevention Surveillance Determination of Cause of Death (DeCoDe) Process and DeCoDe Diagnosis Standards. - -Mortality surveillance and cause of death data are instrumental in improving health, identifying diseases and conditions that cause a high burden of preventable deaths, and allocating resources to prevent these deaths. The Child Health and Mortality Prevention Surveillance (CHAMPS) network uses a standardized process to define, assign, and code causes of stillbirth and child death (<5 years of age) across the CHAMPS network. A Determination of Cause of Death (DeCoDe) panel composed of experts from a local CHAMPS site analyzes all available individual information, including laboratory, histopathology, abstracted clinical records, and verbal autopsy findings for each case and, if applicable, also for the mother. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'DeCoDe'""" ; - sc:featureList edam:operation_3435, - edam:operation_3503 ; - sc:name "CHAMPS" ; - sc:url "https://champshealth.org/protocols/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0152, edam:topic_0153 ; - sc:citation , + sc:citation , + , + , + , + "pubmed:18351591", + "pubmed:25130509", + "pubmed:26631602", "pubmed:30525595" ; sc:description "Membrane Builder for Complex Biological Membrane Simulations with Glycolipids and Lipoglycans." ; sc:featureList edam:operation_0417, @@ -11614,7 +9259,7 @@ Mortality surveillance and cause of death data are instrumental in improving hea sc:url "http://www.charmm-gui.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0102, @@ -11639,26 +9284,21 @@ Mortality surveillance and cause of death data are instrumental in improving hea a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -11681,25 +9321,8 @@ Mortality surveillance and cause of death data are instrumental in improving hea sc:softwareVersion "1.0.0" ; sc:url "https://chomine.boku.ac.at/chomine" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_0749, - edam:topic_3068, - edam:topic_3344 ; - sc:citation , - "pmcid:PMC6799287" ; - sc:description """National Partnership for Training Community Health Workers in Patient-Centered Outcomes Research (PCOR) in 4 States. - -OBJECTIVES SPECIFIC AIMS: To mobilize and engage CHWs promotores as stakeholders, we aim to promote the capacity for CHWs participate in patient centered research (PCOR) by locally implementing a structured research training curriculum for CHWs. Main Questions: How the process of mobilization and engagement would be implemented at local state level. What would be project challenges, risks and barriers at each and across sites. What modifications would be made to the initial PCOR for CHWs training curriculum and toolkit based on local feedback from collaborators, in both English and Spanish. What would be lessons learned on mobilization, engagement of, and sustainability for CHW training organizations as partners in PCOR. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CHWs promotores PCOR CHW', 'promotores PCOR CHW Champions'""" ; - sc:name "CHWs promotores PCOR CHW Champions" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6799287/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -11719,7 +9342,7 @@ OBJECTIVES SPECIFIC AIMS: To mobilize and engage CHWs promotores as stakeholders biotools:primaryContact "O. S. Burren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, edam:topic_2640 ; @@ -11734,7 +9357,7 @@ OBJECTIVES SPECIFIC AIMS: To mobilize and engage CHWs promotores as stakeholders sc:url "https://cibersort.stanford.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0625, edam:topic_0749, @@ -11758,30 +9381,8 @@ Causal Inference Engine: Directional Enrichment Analysis on Biological Networks. sc:name "Causal Inference Enrichment (CIE)" ; sc:url "https://umbibio.math.umb.edu/cie/app" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3067, - edam:topic_3384, - edam:topic_3421 ; - sc:citation , - "pubmed:31506882" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'robotic', 'hybrid', 'Rhinospider', 'end-effector' | in situ augmented reality laser guidance | PURPOSE : A robotic intraoperative laser guidance system with hybrid optic-magnetic tracking for skull base surgery is presented. It provides in situ augmented reality guidance for microscopic interventions at the lateral skull base with minimal mental and workload overhead on surgeons working without a monitor and dedicated pointing tools. METHODS : Three components were developed: a registration tool (Rhinospider), a hybrid magneto-optic-tracked robotic feedback control scheme and a modified robotic end-effector. Rhinospider optimizes registration of patient and preoperative CT data by excluding user errors in fiducial localization with magnetic tracking" ; - sc:featureList edam:operation_3552 ; - sc:name "CIGuide" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31506882" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3390, - edam:topic_3399, - edam:topic_3810 ; - sc:citation , - "pmcid:PMC6719118", - "pubmed:31405023" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | Validation of the CIMI-Ethiopia Program and Seasonal Variation in Maternal Nutrient Intake in Enset (False Banana) Growing Areas of Southern Ethiopia | BACKGROUND:Tools for the rapid and accurate analysis of nutrient intakes from diets of individuals in Southern Ethiopia are lacking. The Calculator of Inadequate Micronutrient Intake program for Ethiopia (CIMI-Ethiopia) has been developed to overcome this problem. CIMI-Ethiopia also computes protein and energy intakes from the diet. The objectives of the current study were to validate CIMI-Ethiopia for the dietary pattern of Southern Ethiopia, and assess the nutrient intakes in postharvest dry and lean wet seasons. METHODS:24-h dietary recall (24HR) data was collected from 578 women of a reproductive age in postharvest dry and lean wet seasons in 2017. For analysis, 24HR data was entered into NutriSurvey (NS), which was the reference nutrition software, and then into CIMI-Ethiopia" ; - sc:name "CIMI-Ethiopia" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31405023" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation , @@ -11802,7 +9403,7 @@ Causal Inference Engine: Directional Enrichment Analysis on Biological Networks. biotools:primaryContact "Minoo Ashtiani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3320, @@ -11821,7 +9422,7 @@ Causal Inference Engine: Directional Enrichment Analysis on Biological Networks. sc:url "https://circexplorer2.readthedocs.io/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3320, @@ -11844,7 +9445,7 @@ Causal Inference Engine: Directional Enrichment Analysis on Biological Networks. "Jinyang Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3379 ; @@ -11863,22 +9464,22 @@ Causal Inference Engine: Directional Enrichment Analysis on Biological Networks. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ], + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "RNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1022" ; - sc:name "Sequence feature label" ; - sc:sameAs "http://edamontology.org/data_1022" ] ; + sc:additionalType "http://edamontology.org/data_1022" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Sequence feature label" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3750" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2084" ; - sc:name "Nucleic acid report" ; - sc:sameAs "http://edamontology.org/data_2084" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2084" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Nucleic acid report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3308 ; @@ -11894,7 +9495,7 @@ Causal Inference Engine: Directional Enrichment Analysis on Biological Networks. sc:url "https://hoohm.github.io/CITE-seq-Count/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0219, @@ -11914,7 +9515,7 @@ Causal Inference Engine: Directional Enrichment Analysis on Biological Networks. sc:url "http://bionlp.bcgsc.ca/civicmine/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3379, @@ -11929,23 +9530,8 @@ Causal Inference Engine: Directional Enrichment Analysis on Biological Networks. sc:name "CIViCpy" ; sc:url "https://docs.civicpy.org/en/1.1/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3379, - edam:topic_3418, - edam:topic_3419 ; - sc:citation , - "pubmed:31759471" ; - sc:description """A pilot study to examine the feasibility and acceptability of a coordinated intervention design to address treatment engagement challenges in school mental health services. - -Treatment engagement is a significant challenge in school mental health services. Despite a growing evidence base on effective interventions for treatment engagement, attempts to address these challenges rarely leverage the available relevant research. To close this gap, this pilot study examined the feasibility, acceptability, and initial implementation outcomes of a coordinated knowledge system (CKS) designed to support the efforts of school mental health (SMH) professionals to address treatment engagement challenges. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3799 ; - sc:name "CKS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31759471" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_2229 ; @@ -11960,22 +9546,8 @@ Treatment engagement is a significant challenge in school mental health services sc:url "https://web.expasy.org/cellosaurus-str-search/" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_2229, - edam:topic_3340 ; - sc:citation , - "pubmed:31444973" ; - sc:description "> NAME EQUAL TO (PUB. DIFFERENT) bio.tools/CLASTR | > CORRECT NAME OF TOOL COULD ALSO BE 'Cellosaurus STR', 'Cellosaurus' (bio.tools/cellosaurus) | A precious help for cell line authentication | Website for the Childhood Cancer Repository Searchable Database of Short-Tandem Repeat Genotyping Data for Cell-Lines | Searchable Database of Short-Tandem Repeat Genotyping Data for Cell-Lines | Search Programs for the STR profile database of the JCRB Cell Bank | Simple comparison among JCRB cells | Welcome to the Childhood Cancer Repository Cell Line and Xenograft STR Database | Pick up one human cell from the database and compare with all other human cells in the database | This database contains the STR profiles (8 STR loci + Amelogenin) for cell lines in the Childhood Cancer Repository and also for many cell lines established at Texas Tech University Health Sciences Center and Children's Hospital Los Angeles | Mutual comparison between selected JCRB cells" ; - sc:featureList edam:operation_2421, - edam:operation_3187, - edam:operation_3196 ; - sc:license "GPL-3.0" ; - sc:name "CLASTR_autogenerated" ; - sc:url "https://strdb.cccells.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3372, @@ -11993,7 +9565,7 @@ CLIJ is an OpenCL - ImageJ bridge and a Fiji plugin allowing users with entry-le sc:url "https://clij.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3168, @@ -12012,13 +9584,13 @@ CLIJ is an OpenCL - ImageJ bridge and a Fiji plugin allowing users with entry-le sc:url "http://mizuguchilab.org/cline/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Galaxy CLIP-Explorer can process large CLIP-Seq data of eCLIP, iCLIP, and with simple changes to the iCLIP workflows also FLASH, and uvCLAP." ; sc:name "CLIP-Explorer" ; sc:url "https://clipseq.usegalaxy.eu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2640, @@ -12042,68 +9614,8 @@ We have developed a database and search application for protocol structure retri sc:name "CLIPS" ; sc:url "https://corus.kaist.edu/clips" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0634, - edam:topic_3170, - edam:topic_3337, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6900386", - "pubmed:31568712" ; - sc:description """The CLN3 gene and protein. - -Error: the hgg_gene parameter is missing from the cart and the CGI params. - -NCL RESOURCE - A GATEWAY FOR BATTEN DISEASE. - -The Genotype-Tissue Expression (GTEx) project is an ongoing effort to build a comprehensive public resource to study tissue-specific gene expression and regulation. Samples were collected from 53 non-diseased tissue sites across nearly 1000 individuals, primarily for molecular assays including WGS, WES and RNA-seq. Remaining samples are stored in the GTEx Biobank. The GTEx Portal provides open access to data including gene expression, QTLs, and histology images. - -CLN3 mutation table in excel format to download. - -Pa-cln3.001-80, Pa-cln3.081-139, Pa-cln3.178-190,. - -p.[Gly154Alafs*29, Val155_Gly264del]. - -The International Batten Disease Consortium, 1995 Munroe et al., 1997. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'protein'""" ; - sc:featureList edam:operation_0265, - edam:operation_0331, - edam:operation_2495 ; - sc:name "CLN3" ; - sc:url "http://genome.ucsc.edu/cgi-bin/hgGene?db=hg19%26hgg_gene=CLN3" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0204, - edam:topic_0634, - edam:topic_3170, - edam:topic_3337 ; - sc:citation , - "pmcid:PMC6900386", - "pubmed:31568712" ; - sc:description """The CLN3 gene and protein. - -Error: the hgg_gene parameter is missing from the cart and the CGI params. - -NCL RESOURCE - A GATEWAY FOR BATTEN DISEASE. - -The Genotype-Tissue Expression (GTEx) project is an ongoing effort to build a comprehensive public resource to study tissue-specific gene expression and regulation. Samples were collected from 53 non-diseased tissue sites across nearly 1000 individuals, primarily for molecular assays including WGS, WES and RNA-seq. Remaining samples are stored in the GTEx Biobank. The GTEx Portal provides open access to data including gene expression, QTLs, and histology images. - -CLN3 mutation table in excel format to download. - -CLN3 patient table in excel format to download. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CLN3'""" ; - sc:featureList edam:operation_0282, - edam:operation_2495, - edam:operation_3800 ; - sc:name "CLN3 gene" ; - sc:url "http://genome.ucsc.edu/cgi-bin/hgGene?db=hg19%26hgg_gene=CLN3" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3376, edam:topic_3474 ; sc:citation , @@ -12114,7 +9626,7 @@ CLN3 patient table in excel format to download. sc:url "https://github.com/isoviita/CLOBNET" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0153, @@ -12133,21 +9645,8 @@ CLN3 patient table in excel format to download. biotools:primaryContact "Jonikas lab", "Matt Laudon" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3473, - edam:topic_3474 ; - sc:citation , - "pubmed:31841418" ; - sc:description """Closed-loop multi-amplitude control for robust and dexterous performance of myoelectric prosthesis. - -In the case of a hand amputation, the affected person can use a myoelectric prosthesis to substitute the missing limb and regain motor functions. Unfortunately, commercial methods for myoelectric control, although robust and simple, are unintuitive and cognitively taxing when applied to an advanced multifunctional prosthesis. The state-of-the-art methods developed in academia are based on machine learning and therefore require long training and suffer from a lack of robustness. This work presents a novel closed-loop multi-level amplitude controller (CMAC), which aims at overcoming these drawbacks. The CMAC implements three degrees-of-freedom (DoF) control by thresholding the muscle contraction intensity during wrist flexion and extension movements. - -||| HOMEPAGE MISSING!""" ; - sc:name "CMAC" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31841418" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3379, @@ -12162,37 +9661,8 @@ In the case of a hand amputation, the affected person can use a myoelectric pros sc:name "Clinical MetaData Ontology (CMDO)" ; sc:url "http://www.snubi.org/software/CMDO/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_2229, - edam:topic_3172, - edam:topic_3382, - edam:topic_3473 ; - sc:citation ; - sc:description """Community Standards for Open Cell Migration Data. - -The above publication describes two experiments. Metadata included here refers to the first experiment on Ba/F3 cells. Image data (not included here) consists of 12 144-frame TIFF movies, each relative to a well in a 48-well plate. - -Cell Migration Standardisation Organization (CMSO). - -The Cell Migration Standardisation Organisation. - -The Cell Migration Standardisation Organisation (CMSO) is a young organization that has a specific goal: to facilitate the development of community standards for the field of cell migration. - -This document contains the working draft of the Tracks specification being developed by the Cell Migration Standardisation Organisation (CMSO). - -An OME-TIFF companion XML file that groups the 12 image data files, including information on the plate layout. - -An ISA-tab dataset containing the experimental metadata, compliant with the MIACME minimum information guideline""" ; - sc:featureList edam:operation_3431, - edam:operation_3435, - edam:operation_3446, - edam:operation_3799 ; - sc:name "CMSO" ; - sc:url "http://cmso.science" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0804, @@ -12212,36 +9682,8 @@ Cytomegalovirus Treatment & Management Kauser Akhter, MD Assistant Professor, De sc:name "CytoMegaloVirus DataBase (CMVdb)" ; sc:url "http://shaktisahislab.com/include/CMV/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_3360, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6768254", - "pubmed:31407623" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'diabetes', 'IRO', 'DEGs', 'omental' | Identification of biomarkers, pathways and potential therapeutic agents for white adipocyte insulin resistance using bioinformatics analysis | Update September 12, 2017: A new version of the Connectivity Map using the L1000 assay has been accepted for publication, and is currently available as a pre-print (see Subramanian et. al). Tools for analysis of these data are at clue.io | The earlier Affymetrix-microarray based Connectivity Map data (build02) is available in archive mode on this page (see below) | The Connectivity Map (also known as cmap) is a collection of genome-wide transcriptional expression data from cultured human cells treated with bioactive small molecules and simple pattern-matching algorithms that together enable the discovery of functional connections between drugs, genes and diseases through the transitory feature of common gene-expression changes" ; - sc:featureList edam:operation_2436, - edam:operation_3223 ; - sc:name "CMap" ; - sc:url "https://portals.broadinstitute.org/cmap" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0769, - edam:topic_3384 ; - sc:citation , - "pubmed:31751242" ; - sc:description """Crowd Analytics for Medical Imaging Data. - -We present a visual analytics framework, CMed, for exploring medical image data annotations acquired from crowdsourcing. CMed can be used to visualize, classify, and filter crowdsourced clinical data based on a number of different metrics such as detection rate, logged events, and clustering of the annotations. CMed provides several interactive linked visualization components to analyze the crowd annotation results for a particular video and the associated workers. Additionally, all results of an individual worker can be inspected using multiple linked views in our CMed framework. We allow a crowdsourcing application analyst to observe patterns and gather insights into the crowdsourced medical data, helping him her design future crowdsourcing applications for optimal output from the workers. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0337, - edam:operation_3553 ; - sc:name "CMed" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31751242" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2885, edam:topic_3170, @@ -12261,7 +9703,7 @@ Copy number alterations (CNAs) are important features of human cancer. While the sc:url "https://github.com/WangLabHKUST/CNAPE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2640, @@ -12280,7 +9722,7 @@ Copy number alterations (CNAs) are important features of human cancer. While the biotools:primaryContact "Ahmed Khalil" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3318, edam:topic_3382, edam:topic_3474 ; @@ -12298,7 +9740,7 @@ Three pretrained CNN neural network models are provided based on all of the brai sc:url "https://github.com/Jilab-biomechanics/CNN-brain-strains" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, @@ -12316,7 +9758,7 @@ CNN-SuccSite is a web server for characterization and identification succinylati sc:url "http://csb.cse.yzu.edu.tw/CNN-SuccSite/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -12340,7 +9782,7 @@ The CNN-T4SE is a tool that can be run in windows and linux operating systems. I sc:url "https://idrblab.org/cnnt4se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -12357,7 +9799,7 @@ Abstract Motivation Whole genome sequencing (WGS) is widely used for copy number sc:url "https://github.com/LinjieWu/CNV-BAC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -12373,7 +9815,7 @@ Abstract Motivation Whole genome sequencing (WGS) is widely used for copy number sc:url "http://bioconductor.org/packages/CNVRanger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -12400,7 +9842,7 @@ CNVScope is a visualization toolkit for seeing copy number data in a relationshi sc:url "http://cnvscope.nci.nih.gov/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -12422,7 +9864,7 @@ CNVScope is a visualization toolkit for seeing copy number data in a relationshi biotools:primaryContact "Zhongming Zhao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0602, @@ -12445,7 +9887,7 @@ CNVScope is a visualization toolkit for seeing copy number data in a relationshi biotools:primaryContact "ChengF-Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2258, @@ -12466,7 +9908,7 @@ CNVScope is a visualization toolkit for seeing copy number data in a relationshi biotools:primaryContact "Ronan Fleming on behalf of the COBRA Toolbox Development Community" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3300, @@ -12483,33 +9925,8 @@ CNVScope is a visualization toolkit for seeing copy number data in a relationshi "Windows" ; sc:url "https://github.com/MijinKwon/CODA-ML" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_2640, - edam:topic_3168, - edam:topic_3512, - edam:topic_3577 ; - sc:citation ; - sc:description """Benchmark of tools for CNV detection from NGS panel data in a genetic diagnostics context. - -Full-spectrum copy number variation detection by high-throughput DNA sequencing. - -High-throughput DNA sequencing enables detection of copy number variations (CNVs) on the genome-wide scale with finer resolution compared to array-based methods, but suffers from biases and artifacts that lead to false discoveries and low sensitivity. - -Yuchao Jiang yuchaoj@email.unc.edu. - -||| NAME (CODEX2) SIMILAR TO (PUB. DIFFERENT) bio.tools/codex_ngs (CODEX), bio.tools/codex (CODEX). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'DECoN', 'CNV', 'panelcn', 'Benchmarking-optimization'""" ; - sc:featureList edam:operation_0337, - edam:operation_3211, - edam:operation_3227 ; - sc:license "GPL-2.0" ; - sc:name "CODEX2" ; - sc:url "https://github.com/yuchaojiang/CODEX2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3172, @@ -12526,7 +9943,7 @@ Yuchao Jiang yuchaoj@email.unc.edu. sc:url "http://spin.ccic.ohio-state.edu/index.php/colmarm/index" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3382, @@ -12546,19 +9963,8 @@ Yuchao Jiang yuchaoj@email.unc.edu. ; sc:url "https://www.COMBIgor.com" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3295, - edam:topic_3512 ; - sc:citation ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | > NAME (COMET) SIMILAR TO (PUB. DIFFERENT) bio.tools/comet (Comet), bio.tools/comet_visualisation (coMET), bio.tools/comet-universe (CoMet) | A toolkit for composing customizable genetic programs in mammalian cells | ABSTRACT Engineering mammalian cells to carry out sophisticated and customizable genetic programs requires a toolkit of multiple orthogonal and well-characterized transcription factors (TFs). To address this need, we developed the COmposable Mammalian Elements of Transcription (COMET) an ensemble of TFs and promoters that enable the design and tuning of gene expression to an extent not previously possible. COMET currently comprises 44 activating and 12 inhibitory zinc-finger TFs and 83 cognate promoters, combined in a framework that readily accommodates new parts. This system can tune gene expression over three orders of magnitude, provides chemically inducible control of TF activity, and enables single-layer Boolean logic" ; - sc:featureList edam:operation_0420, - edam:operation_3891 ; - sc:name "COMET_autogenerated" ; - sc:url "https://doi.org/10.1101/769794" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -12580,7 +9986,7 @@ Yuchao Jiang yuchaoj@email.unc.edu. biotools:primaryContact "Marco Moretto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, edam:topic_2229, @@ -12600,7 +10006,7 @@ Abstract Intercellular communication plays an essential role in multicellular or sc:url "https://github.com/ScialdoneLab/COMUNET" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3295, @@ -12621,24 +10027,8 @@ Abstract Intercellular communication plays an essential role in multicellular or sc:url "https://github.com/cozygene/CONFINED" ; biotools:primaryContact "Mike Thompson" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_3068, - edam:topic_3372 ; - sc:citation ; - sc:description """Smart Process Optimization and Adaptive Execution with Semantic Services in Cloud Manufacturing ‡. - -A new requirement for the manufacturing companies in Industry 4.0 is to be flexible with respect to changes in demands, requiring them to react rapidly and efficiently on the production capacities. Together with the trend to use Service-Oriented Architectures (SOA), this requirement induces a need for agile collaboration among supply chain partners, but also between different divisions or branches of the same company. In order to address this collaboration challenge, we~propose a novel pragmatic approach for the process analysis, implementation and execution. This~is achieved through sets of semantic annotations of business process models encoded into BPMN 2.0 extensions. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'manufacturing', 'Service-Oriented', 'BPMN', 'service-based'""" ; - sc:featureList edam:operation_2409, - edam:operation_3761, - edam:operation_3762 ; - sc:name "COP" ; - sc:url "http://jacop.osolpro.com/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3174, @@ -12653,7 +10043,7 @@ A new requirement for the manufacturing companies in Industry 4.0 is to be flexi sc:url "http://copo-project.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0602, @@ -12668,23 +10058,8 @@ A new requirement for the manufacturing companies in Industry 4.0 is to be flexi sc:name "CORDERLY" ; sc:url "https://github.com/adrena-lab/CORDERLY" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2229 ; - sc:citation , - "pubmed:31751284" ; - sc:description """A Tripartite Glutamate-IP3-Ca2+ Interaction Dynamics on FPGA. - -Real-time, large-scale simulation of biological systems is challenging due to different types of nonlinear functions describing biochemical reactions in the cells. The promise of the high speed, cost-effectiveness, and power efficiency in addition to parallel processing has made application-specific hardware an attractive simulation platform. This paper proposes high-speed and low-cost digital hardware to emulate a biological-plausible astrocyte and glutamate-release mechanism. The nonlinear terms of these models were calculated using a high-precision and cost-effective algorithm. Subsequently, the modified models were simulated to study and validate their functions. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'biological-plausible', 'FPGA', 'Glutamate-IP3-Ca2+', 'glutamate-release'""" ; - sc:featureList edam:operation_2426 ; - sc:name "CORDIC-Astrocyte" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31751284" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0654, @@ -12704,7 +10079,7 @@ Real-time, large-scale simulation of biological systems is challenging due to di biotools:primaryContact "Guoli Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175, edam:topic_3407 ; @@ -12724,7 +10099,7 @@ Real-time, large-scale simulation of biological systems is challenging due to di biotools:primaryContact "J. P. Kocher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -12748,7 +10123,7 @@ Real-time, large-scale simulation of biological systems is challenging due to di biotools:primaryContact "Computational Omics and Systems Biology Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0154, @@ -12770,7 +10145,7 @@ COUSIN is a bioinformatic tool which aims to calculate the Codon Usage Preferenc sc:url "http://cousin.ird.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -12786,23 +10161,8 @@ COUSIN is a bioinformatic tool which aims to calculate the Codon Usage Preferenc sc:name "COXMEG" ; sc:url "https://CRAN.R-project.org/package=coxmeg" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3305, - edam:topic_3420 ; - sc:citation , - "pmcid:PMC6797311", - "pubmed:31575533" ; - sc:description """living life in the Nordic countries? A retrospective register research protocol on individuals with cerebral palsy and their parents living in Sweden, Norway, Denmark, Finland and Iceland. - -Living life with cerebral palsy in the Nordic countries. - -Sixty-three applicants applied for the doctoral position with CPNorth that recently closed. Health economist, and will be supervisor Associate Professor Johan Jarl was pleased with the turn-out “We are delighted that there were so many qualified applicants who were interested in working with CPNorth” Now, the journey has begun to select the candidate who will become the first official CPNorth PhD student""" ; - sc:name "CP-North" ; - sc:url "http://rdi.arcada.fi/cpnorth/en/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_2885, @@ -12825,19 +10185,8 @@ Sixty-three applicants applied for the doctoral position with CPNorth that recen sc:url "http://www.herbalgenomics.org/cpgavas2" ; biotools:primaryContact "Chang Liu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0208, - edam:topic_0625, - edam:topic_3063 ; - sc:citation , - "pubmed:31562822" ; - sc:description "The Clinical Pharmacogenetics Implementation Consortium | PGx Dissemination Working Group – CPIC | The Clinical Pharmacogenetics Implementation Consortium (CPIC®) is an international consortium of individual volunteers and a small dedicated staff who are interested in facilitating use of pharmacogenetic tests for patient care | CPIC guidelines are designed to help clinicians understand HOW available genetic test results should be used to optimize drug therapy, rather than WHETHER tests should be ordered | The following is a list of PGx implementers who are using CPIC guidelines as part of a program to facilitate use of genetic tests to guide prescribing for patients in clinical care settings: | A formal working group within CPIC, PharmGKB, PharmVar, and the PGRN was formed in 2018 to focus on the dissemination of resources available for pharmacogenetic implementation such as CPIC guidelines, PharmGKB, PGRN and PharmVar resources, and implementation strategies of pharmacogenetics" ; - sc:featureList edam:operation_3196 ; - sc:name "CPIC" ; - sc:url "http://www.cpicpgx.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3305 ; @@ -12856,27 +10205,8 @@ Sixty-three applicants applied for the doctoral position with CPNorth that recen sc:softwareVersion "1.2" ; sc:url "https://cran.r-project.org/package=CPMCGLM" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0202, - edam:topic_2640, - edam:topic_3068 ; - sc:citation ; - sc:description """an online tool for summarizing and searching human cancer-genomic publications. - -This file contains scripts for setting up CPP, which is a work in progress. - -This is the homepage of the Cancer Publication Portal (CPP) [AACR 2019 Abstract], a tool for searching and summarizing the biomedical literature based on a gene of interest, with filters available for cancer types, mutations, additional genes, and additional cancer-related terms. CPP can answer questions such as. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Cancer Publication Portal'""" ; - sc:featureList edam:operation_0305, - edam:operation_2422, - edam:operation_3695 ; - sc:license "GPL-2.0" ; - sc:name "CPP" ; - sc:url "https://gdancik.github.io/bioinformatics/CPP/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3343, @@ -12893,25 +10223,48 @@ CPPE is an open-source, light-weight C-Plus-Plus library for Polarizable Embeddi sc:url "https://github.com/maxscheurer/CPPE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; - sc:applicationSubCategory edam:topic_0769, + sc:applicationSubCategory edam:topic_0622, + edam:topic_0769, edam:topic_2640, edam:topic_3168, edam:topic_3360, - edam:topic_3517 ; - sc:citation ; - sc:description "The Cancer Predisposition Sequencing Reporter (CPSR) is a computational workflow that interprets germline variants identified from next-generation sequencing in the context of cancer predisposition. The workflow is integrated with the framework that underlies the Personal Cancer Genome Reporter (PCGR), utilizing the Docker environment for encapsulation of code and software dependencies. While PCGR is intended for reporting and analysis of somatic variants detected in a tumor, CPSR is intended for reporting and ranking of germline variants in protein-coding genes that are implicated in cancer predisposition and inherited cancer syndromes" ; - sc:featureList edam:operation_3225, + edam:topic_3577 ; + sc:author , + ; + sc:citation , + "pubmed:34310709" ; + sc:contributor ; + sc:description "The Cancer Predisposition Sequencing Reporter (CPSR) is a computational workflow that interprets and classifies germline DNA variants identified from next-generation sequencing in the context of cancer predisposition and inherited cancer syndromes. The workflow can also report incidental findings (ACMG v3.0) as well as the genotypes of common germline variants associated with cancer risk, as reported in the NHGRI-EBI GWAS catalog." ; + sc:featureList edam:operation_0331, + edam:operation_3225, edam:operation_3226, - edam:operation_3227 ; + edam:operation_3661, + edam:operation_3672 ; + sc:isAccessibleForFree true ; sc:license "MIT" ; sc:name "Cancer Predisposition Sequencing Reporter (CPSR)" ; - sc:url "https://github.com/sigven/cpsr" . + sc:softwareHelp , + , + , + , + ; + sc:softwareVersion "1.0.0" ; + sc:url "https://github.com/sigven/cpsr" ; + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3300, edam:topic_3810, @@ -12931,7 +10284,7 @@ Simulation output of CPlantBox-PiafMunch coupling. Example 2-4""" ; sc:url "https://github.com/Plant-Root-Soil-Interactions-Modelling/CPlantBox/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3173 ; @@ -12943,29 +10296,8 @@ Simulation output of CPlantBox-PiafMunch coupling. Example 2-4""" ; sc:name "CQF-deNoise" ; sc:url "https://github.com/Christina-hshi/CQF-deNoise" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0166 ; - sc:citation , - "pubmed:31419629" ; - sc:description "Cluster Quality based Non-Reductional (CQNR) oversampling technique and effector protein predictor based on 3D structure (EPP3D) of proteins | CQNR: Cluster Quality based Non-Reductional over-sampling technique and EPP3D: Effector Protein Predictor based on 3D structure of proteins | Rishika Sen, Somnath Tagore, Rajat K. De | CQNR - The phenomenon of the imbalanced dataset is common in classification. The existence of this problem is visible in many real-life domains, especially for biological datasets. Data imbalance problem can be tackled either by reducing the samples of the majority class or increasing the number of samples in the minority class. In this paper, we have introduced Cluster Quality based Non-Reductional over-sampling technique (CQNR). CQNR generates new samples proportional to the distribution of samples of the minority classes, without eliminating any sample of the minority class as noise" ; - sc:name "CQNR" ; - sc:url "http://projectphd.droppages.com/CQNR.html" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3489 ; - sc:citation , - "pubmed:31711193" ; - sc:description """PUBLIC DATABASE OF COSMIC RADIATION MEASUREMENTS AT AVIATION ALTITUDES OF ABOUT 10 KM. - -When using these data, please read this info""" ; - sc:featureList edam:operation_0337, - edam:operation_3435 ; - sc:license "CC-BY-4.0" ; - sc:name "CR10" ; - sc:url "http://cr10.odz.ujf.cas.cz" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -12982,7 +10314,7 @@ When using these data, please read this info""" ; sc:url "https://github.com/UCDenver-ccp/CRAFT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640 ; @@ -12999,7 +10331,7 @@ When using these data, please read this info""" ; sc:url "http://gitlab.ict4life.com/SysBiOThe/CRA-Matlab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3500 ; sc:description "CRB-Anim is the online catalog of biological resources of the french national infrastructure supporting research on domestic animals." ; @@ -13007,7 +10339,7 @@ When using these data, please read this info""" ; sc:url "https://www.crb-anim.fr/crb-anim_eng/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2259, edam:topic_2269, @@ -13024,7 +10356,7 @@ When using these data, please read this info""" ; biotools:primaryContact "Fortunato Bianconi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, @@ -13042,7 +10374,7 @@ When using these data, please read this info""" ; biotools:primaryContact "Gajendra P. S. Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -13055,7 +10387,7 @@ When using these data, please read this info""" ; sc:url "http://pbil.kaist.ac.kr/CRDS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -13071,34 +10403,8 @@ When using these data, please read this info""" ; sc:name "CREAM" ; sc:url "https://cran.r-project.org/web/packages/CREAM/index.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0621, - edam:topic_3305 ; - sc:citation , - "pmcid:PMC6799104" ; - sc:description """3575 Assessing Research Activity and Capacity of Community Based Organizations. - -OBJECTIVES SPECIFIC AIMS: 1. To assess the acceptability and feasibility and of an online self-assessment version of the Community REsearch Activity Assessment Tool (CREAT), an instrument to measure research capacity of CBOs. 2. To elicit CBO perspectives on their research and knowledge generation activities. METHODS STUDY POPULATION: Thirteen CBOs who had previously partnered with an academic course on practice-based community health research were contacted and asked to participate in the field testing of the CREAT and provide feedback on areas of strength and areas for potential improvement. Eleven organizations completed the field testing, which began and ended with an in-person semi-structured interview with the online self-administration of the CREAT in the middle. - -||| HOMEPAGE MISSING!""" ; - sc:name "CREAT" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6799104/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3489 ; - sc:citation ; - sc:description """a GIS tool to support decision making in case of aquifer contamination emergency. - -GIS technology has been used for many years in environmental risk analysis due to its capability to focus on the management and analysis of geographic and alphanumeric data to support spatial decision-making (Vairavamoorthy et al, 2007). Especially in emergency management, a DSS (Decision Support System) constitutes an important task to provide quick responses, though not completely exhaustive, to immediately handle a critical scenario and limit the possible damage. In the framework of a collaboration between the Water Research Institute and the National Civil Protection Department, a customized tool called CREGIS (ContaminazioneRisorseEvento-GIS) has been developed in order to facilitate the emergency management of accidental contamination of aquifers and support decision making (Preziosi et al, 2013). - -||| HOMEPAGE MISSING!""" ; - sc:name "CREGIS-Q" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.2235V2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0160, @@ -13117,37 +10423,8 @@ GIS technology has been used for many years in environmental risk analysis due t biotools:primaryContact "Ian Sillitoe", "Tony E Lewis" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_0749, - edam:topic_0780, - edam:topic_3512, - edam:topic_3912 ; - sc:citation , - "pmcid:PMC6912757", - "pubmed:31689989" ; - sc:description """Exploration of Technological Advancements and Challenges. - -Design of target-specific guide RNAs in CRISPR-Cas9, genome-editing systems. - -The package includes functions to find potential guide RNAs for input target sequences, optionally filter guide RNAs without restriction enzyme cut site, or without paired guide RNAs, genome-wide search for off-targets, score, rank, fetch flank sequence and indicate whether the target and off-targets are located in exon region or not. Potential guide RNAs are annotated with total score of the top5 and topN off-targets, detailed topN mismatch sites, restriction enzyme cut sites, and paired guide RNAs. This package leverages Biostrings and BSgenome packages. - -CRISPR/Cas9 target online predictor. - -— Rational design of CRISPR/Cas target. - -Enter an accession number (e.g. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Cas', 'Genome Editing Plants', 'CRISPR Cas', 'review'""" ; - sc:featureList edam:operation_0308, - edam:operation_0440, - edam:operation_3096 ; - sc:license "GPL-2.0" ; - sc:name "CRISPR" ; - sc:url "http://crispr.dbcls.jp/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0621, @@ -13166,7 +10443,7 @@ Enter an accession number (e.g. biotools:primaryContact "Honglei Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0780, @@ -13187,7 +10464,7 @@ Enter an accession number (e.g. "Ling-Ling Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Suite of web applications for analysing Clustered Regularly Interspaced Short Palindromic Repeats." ; @@ -13195,7 +10472,7 @@ Enter an accession number (e.g. sc:url "https://crisprcas.i2bc.paris-saclay.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0160, @@ -13215,54 +10492,8 @@ Enter an accession number (e.g. "David Couvin", "Marie Touchon" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_0621, - edam:topic_0637, - edam:topic_3174 ; - sc:citation , - "pubmed:31624845" ; - sc:description """CRISPRCasdb a successor of CRISPRdb containing CRISPR arrays and cas genes from complete genome sequences, and tools to download and query lists of repeats and spacers. - -The CRISPRCasFinder program enables the easy detection of CRISPRs and cas genes in user-submitted sequence data. - -Welcome to CRISPR-Cas++ ! Please select a tool... - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/CRISPRCasFinder. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/CRISPRCas (CRISPRCAS.I2BC.PARIS-SACLAY.FR), bio.tools/parameciumdb (I2BC.PARIS-SACLAY.FR), bio.tools/CRISPRs_Database (I2BC.PARIS-SACLAY.FR). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CRISPRCasdb', 'CRISPR-Cas++', 'CRISPR', 'CRISPRs cas'""" ; - sc:featureList edam:operation_0435, - edam:operation_0525, - edam:operation_2421 ; - sc:name "CRISPRCasFinder_autogenerated" ; - sc:url "https://crisprcas.i2bc.paris-saclay.fr/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0632, - edam:topic_2229, - edam:topic_3168, - edam:topic_3512 ; - sc:citation , - "pubmed:31875277" ; - sc:description """Construction of an Inducible CRISPR/Cas9 System for CXCR4 Gene and Demonstration of its Effects on MKN-45 Cells. - -Guide design resources — Zhang Lab. - -Biodiscovery and engineering to improve human health. - -Thank you to the thousands of users who visited our guide design tool over the past five years. We recently shut down crispr.mit.edu, but there are many other guide design tools available that we hope you will find helpful. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CRISPR'""" ; - sc:featureList edam:operation_3096, - edam:operation_3446 ; - sc:name "CRISPR Cas9" ; - sc:url "http://crispr.mit.edu" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3173, edam:topic_3512, @@ -13277,7 +10508,7 @@ Thank you to the thousands of users who visited our guide design tool over the p sc:url "http://crisprexplorer.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -13294,20 +10525,8 @@ Thank you to the thousands of users who visited our guide design tool over the p sc:url "http://crispr.dbcls.jp/" ; biotools:primaryContact "Yuki Naito" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3297, - edam:topic_3512 ; - sc:citation , - "pubmed:31491085" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | A Broad-Host-Range CRISPRi Toolkit for Silencing Gene Expression in Burkholderia | Genetic tools are critical to dissecting the mechanisms governing cellular processes, from fundamental physiology to pathogenesis. Members of the genus Burkholderia have potential for biotechnological applications but can also cause disease in humans with a debilitated immune system. The lack of suitable genetic tools to edit Burkholderia GC-rich genomes has hampered the exploration of useful capacities and the understanding of pathogenic features. To address this, we have developed CRISPR interference (CRISPRi) technology for gene silencing in Burkholderia, testing it in B. cenocepacia, B. multivorans, and B. thailandensis. Tunable expression was provided by placing a codon-optimized dcas9 from Streptococcus pyogenes under control of a rhamnose-inducible promoter" ; - sc:featureList edam:operation_0308, - edam:operation_3192 ; - sc:name "CRISPRi" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31491085" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, edam:topic_3512, @@ -13327,31 +10546,8 @@ CRISPRitz is a software package containing 5 different tools dedicated to perfor sc:name "CRISPRitz" ; sc:url "https://github.com/pinellolab/CRISPRitz" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_0632, - edam:topic_0798, - edam:topic_3168, - edam:topic_3512 ; - sc:citation , - "pubmed:31722958" ; - sc:description """CRISPR-based modular assembly of a UAS-cDNA/ORF plasmid library for over 5,500 Drosophila genes conserved in humans. - -Guide design resources — Zhang Lab. - -Biodiscovery and engineering to improve human health. - -Thank you to the thousands of users who visited our guide design tool over the past five years. We recently shut down crispr.mit.edu, but there are many other guide design tools available that we hope you will find helpful. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CRISPR-based'""" ; - sc:featureList edam:operation_0308, - edam:operation_0310, - edam:operation_3096 ; - sc:name "CRISPRmass" ; - sc:url "http://crispr.mit.edu" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0749, @@ -13362,19 +10558,8 @@ Thank you to the thousands of users who visited our guide design tool over the p sc:url "http://crispr.i2bc.paris-saclay.fr/crispr/" ; biotools:primaryContact "Christine Pourcel" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0659, - edam:topic_0749 ; - sc:citation ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'miR-18b miR-155 miR-142-3p miR-890', 'miR-890', 'miR-18b', 'MAN-10030-03' | Differential gene expression and functional pathway enrichment in colon cell line CCD 841 CoN (CRL-1790) transfected with miR-mimics miR-18b, miR-142-3p, miR-155, and miR-890 | CCD 841 CoN ATCC ® CRL-1790™ Homo sapiens colon normal | CCD 841 CoN ATCC ® CRL-1790™ Homo sapiens colon normal" ; - sc:featureList edam:operation_2436, - edam:operation_3792 ; - sc:name "CRL-1790" ; - sc:url "https://www.atcc.org/Products/All/CRL-1790.aspx#characteristics" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3383, edam:topic_3452 ; sc:citation , @@ -13384,7 +10569,7 @@ Thank you to the thousands of users who visited our guide design tool over the p sc:url "https://github.com/icthrm/CRM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0082, @@ -13406,22 +10591,8 @@ Thank you to the thousands of users who visited our guide design tool over the p sc:url "http://service.tartaglialab.com/new_submission/crossalive" ; biotools:primaryContact "Gian Tartaglia" . - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31714223" ; - sc:description """Class-specific Reconstruction Transfer Learning for Visual Recognition Across Domains. - -This is a matlab code for CRTL in ICCV Workshop 2107. We use the matlab R2015b version. - -Class-specific Reconstruction Transfer Learning via Sparse Low-rank Constraint on matlab. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CRTL three-fold', 'Class-specific Reconstruction Transfer Learning', 'Class-specific'""" ; - sc:featureList edam:operation_0337 ; - sc:name "CRTL" ; - sc:url "https://github.com/wangshanshanCQU/CRTL" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -13436,7 +10607,7 @@ Class-specific Reconstruction Transfer Learning via Sparse Low-rank Constraint o sc:url "https://github.com/tamarcrum/CRUMBLER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0634, @@ -13456,7 +10627,7 @@ We present the software Condition-specific Regulatory Units Prediction (CRUP) to sc:url "https://github.com/VerenaHeinrich/CRUP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3068, @@ -13477,23 +10648,8 @@ We present the software Condition-specific Regulatory Units Prediction (CRUP) to ; sc:url "http://crysplot.crystalsolutions.eu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3382, - edam:topic_3489 ; - sc:citation ; - sc:description """Open source geoprocessing tools and meteorological satellite data for crop risk zones monitoring in Sub-Saharan Africa. - -In Sub-Saharan Africa analysis tools and models based on meteorological satellites data have been developed within different national and international cooperation initiatives, with the aim of allowing a better monitoring of the cropping season. In most cases, the software was a stand-alone application and the upgrading, in terms of analysis functions, database and hardware maintenance, was difficult for the National Meteorological Services (NMSs) in charge of agro-hydro-meteorological monitoring. The web-based solution proposed in this work intends to improve and ensure the sustainability of applications to support national Early Warning Systems (EWSs) for food security. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Niger', 'meteorological', 'NMSs', 'RFE'""" ; - sc:featureList edam:operation_3454 ; - sc:name "CRZ" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.2265V2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -13516,7 +10672,7 @@ In Sub-Saharan Africa analysis tools and models based on meteorological satellit biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -13533,82 +10689,8 @@ In Sub-Saharan Africa analysis tools and models based on meteorological satellit sc:name "CS2Structure" ; sc:url "https://github.com/atfrank/CS2Structure" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0202, - edam:topic_2229, - edam:topic_3377, - edam:topic_3382, - edam:topic_3500 ; - sc:citation , - , - "pubmed:31749424", - "pubmed:31782362" ; - sc:description """Comprehensive Cardiac Safety Assessment using hiPS-cardiomyocytes (Consortium for Safety Assessment using Human iPS cells. - -Consortium for Safety Assessment using Human iPS Cells. - -Aug. 22, 2018 Latest exhibition information of "Sony Cell Motion Imaging System SI8000". - -Aug. 22, 2018 Publications and Members information were updated. - -Oct. 11, 2017 Working Members, Advisory and Publication information was updated. - -Aug. 16, 2016 Latest exhibition information of "Sony Cell Motion Imaging System SI8000". - -Feb. 1, 2016 CSAHi introduce the activity in the Public Symposium of Regulatory. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CSAHi HEART', 'hiPS-CMs hiPS-CMs', 'immaturity hiPS-CMs hiPS-CMs', 'hiPS-CMs', 'Approach Neurotoxicity using Human iPSC Neurons', 'MEA' (bio.tools/mea), 'neurotoxicity'""" ; - sc:name "CSAHi" ; - sc:url "http://csahi.org/en/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0749, - edam:topic_2885, - edam:topic_3169, - edam:topic_3179 ; - sc:citation , - "pmcid:PMC6929326", - "pubmed:31874601" ; - sc:description """a web service for the complete process of ChIP-Seq analysis. - -BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology that combines chromatin immunoprecipitation (ChIP) with next generation of sequencing technology (NGS) to analyze protein interactions with DNA. At present, most ChIP-seq analysis tools adopt the command line, which lacks user-friendly interfaces. Although some web services with graphical interfaces have been developed for ChIP-seq analysis, these sites cannot provide a comprehensive analysis of ChIP-seq from raw data to downstream analysis. RESULTS:In this study, we develop a web service for the whole process of ChIP-Seq Analysis (CSA), which covers mapping, quality control, peak calling, and downstream analysis. In addition, CSA provides a customization function for users to define their own workflows. - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/csa""" ; - sc:featureList edam:operation_0337, - edam:operation_2428, - edam:operation_3222 ; - sc:name "CSA_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31874601" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0659, - edam:topic_2640, - edam:topic_3360, - edam:topic_3489 ; - sc:citation , - "pmcid:PMC6842961", - "pubmed:31750237" ; - sc:description """Up-Regulation of hsa_circ_0000517 Predicts Adverse Prognosis of Hepatocellular Carcinoma. - -Cancer Specific CircRNA Database. - -C ancer- S pecific C ircRNA D atabase. - -GRCh37 GRCh38 TUTORIAL CONTACT US DOWNLOAD. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'miRDB' (bio.tools/miRDB), 'miRTarBase' (bio.tools/mirtarbase), 'hsa_circ_0000517', 'HCC'""" ; - sc:featureList edam:operation_3431, - edam:operation_3766, - edam:operation_3792 ; - sc:name "CSCD" ; - sc:url "http://gb.whu.edu.cn/CSCD" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0804, @@ -13629,7 +10711,7 @@ GRCh37 GRCh38 TUTORIAL CONTACT US DOWNLOAD. sc:url "https://cran.r-project.org/package=CSESA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3360, @@ -13643,7 +10725,7 @@ GRCh37 GRCh38 TUTORIAL CONTACT US DOWNLOAD. sc:url "https://proteomics.uib.no/csf-pr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_2229, @@ -13665,7 +10747,7 @@ GRCh37 GRCh38 TUTORIAL CONTACT US DOWNLOAD. biotools:primaryContact "Ziv Bar-Joseph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Workflow" ; @@ -13685,7 +10767,7 @@ CSI NGS Portal uses a single, randomly generated, persistent, secure and http-on sc:url "https://csibioinfo.nus.edu.sg/csingsportal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0196, @@ -13709,7 +10791,7 @@ CSMD will work with a series of libraries listed in Table 2, including human-rel sc:url "https://github.com/liuyu8721/csmd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, edam:topic_3318, @@ -13727,61 +10809,8 @@ Kai Yao, Nash D Rochman, Sean X Sun (*ssun@jhu.edu) @ Johns Hopkins University"" sc:name "Cell Topography Regression Learner (CTRL)" ; sc:url "https://GitHub.com/sxslabjhu/CTRL" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_2269, - edam:topic_3305, - edam:topic_3379 ; - sc:citation , - "pmcid:PMC6799201" ; - sc:description """Integrating Epidemiology and Biostatistics teaching using the case method. - -Journal of Clinical and Translational Science. - -Journal of Clinical and Translational Science - Lars F. Berglund, M.D., Ph.D, George A. Mashour, MD, PhD. - -Skip to main content Accessibility help. - -We use cookies to distinguish you from other users and to provide you with a better experience on our websites. Close this message to accept cookies or find out how to manage your cookie settings . - -The mission of the Journal of Clinical and Translational Science (JCTS) is to provide a forum for disseminating advances in clinical and translational science""" ; - sc:featureList edam:operation_3659 ; - sc:name "CTS" ; - sc:url "http://cambridge.org/jcts" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3305, - edam:topic_3335, - edam:topic_3421 ; - sc:citation , - "pubmed:31883027" ; - sc:description """towards a wider use of basic echo applications in Africa. - -BACKGROUND:Point-of-care ultrasound is increasingly being used as a diagnostic tool in resource-limited settings. The majority of existing ultrasound protocols have been developed and implemented in high-resource settings. In sub-Saharan Africa (SSA), patients with heart failure of various etiologies commonly present late in the disease process, with a similar syndrome of dyspnea, edema and cardiomegaly on chest X-ray. The causes of heart failure in SSA differ from those in high-resource settings. Point-of-care ultrasound has the potential to identify the underlying etiology of heart failure, and lead to targeted therapy. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ultrasound', 'Cardiac ultrasound resource-limited settings', 'high-resource', 'cardiomegaly SSA'""" ; - sc:name "CURLS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31883027" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3169, - edam:topic_3534 ; - sc:citation , - "pmcid:PMC6734249", - "pubmed:31500663" ; - sc:description "a flexible pipeline for CUT&RUN processing and footprint analysis | We introduce CUT&RUNTools as a flexible, general pipeline for facilitating the identification of chromatin-associated protein binding and genomic footprinting analysis from antibody-targeted CUT&RUN primary cleavage data. CUT&RUNTools extracts endonuclease cut site information from sequences of short-read fragments and produces single-locus binding estimates, aggregate motif footprints, and informative visualizations to support the high-resolution mapping capability of CUT&RUN. CUT&RUNTools is available at https: bitbucket.org qzhudfci cutruntools" ; - sc:featureList edam:operation_3192, - edam:operation_3222, - edam:operation_3436 ; - sc:name "CUT and RUNTools" ; - sc:url "https://bitbucket.org/qzhudfci/cutruntools/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3360, @@ -13795,7 +10824,7 @@ BACKGROUND:Point-of-care ultrasound is increasingly being used as a diagnostic t sc:url "https://github.com/gtayana/CVRMS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:author "Felix Xavier Amaladoss" ; sc:description "CWL VM environment is a repository which can be deployed on cloud to execute Biobb Mutations Workflow." ; @@ -13806,7 +10835,7 @@ BACKGROUND:Point-of-care ultrasound is increasingly being used as a diagnostic t sc:url "https://github.com/EMBL-EBI-TSI/cpa-bioexcel-cwl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2269, @@ -13823,7 +10852,7 @@ CYBERTRACK is an R package for CYtometry-Based Estimation and Reasoning for cell sc:url "https://github.com/kodaim1115/CYBERTRACK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0634, @@ -13849,19 +10878,8 @@ If you are dealing with the genetics of cystic fibrosis or CFTR-related disorder sc:name "CYSMA" ; sc:url "https://cftr.iurc.montp.inserm.fr/cysma/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_3361 ; - sc:citation ; - sc:description "> LOW CONFIDENCE! | A platform for the exchange of innovations in cytometry | CYTO Lab Hacks – A platform for the exchange of innovations in cytometry | This program applies predefined sort templates to your BD Influx workspace. Applying a complex sort layout to a cell sorter… | Automatic Monitor of Sample Acquisition Quality" ; - sc:featureList edam:operation_3431, - edam:operation_3695, - edam:operation_3802 ; - sc:name "CYTO Lab Hacks" ; - sc:url "http://bit.ly/CytoLabHacks" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0209, @@ -13882,7 +10900,7 @@ If you are dealing with the genetics of cystic fibrosis or CFTR-related disorder biotools:primaryContact "Tingjun Hou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3298, edam:topic_3384, @@ -13911,7 +10929,7 @@ CaPTk is a software platform for analysis of radiographic cancer images, current sc:url "http://www.cbica.upenn.edu/captk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3068 ; @@ -13928,7 +10946,7 @@ CaPTk is a software platform for analysis of radiographic cancer images, current biotools:primaryContact "Alexander Skupin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3325, @@ -13947,7 +10965,7 @@ CaPTk is a software platform for analysis of radiographic cancer images, current sc:url "https://www.cafevariome.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3360, @@ -13970,14 +10988,13 @@ CaPTk is a software platform for analysis of radiographic cancer images, current a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3242" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602 ; sc:author "Elisa Micarelli", "Prisca Lo SUrdo" ; @@ -13993,7 +11010,7 @@ CaPTk is a software platform for analysis of radiographic cancer images, current biotools:primaryContact "Luana Licata" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3173, edam:topic_3375 ; @@ -14008,7 +11025,7 @@ CaPTk is a software platform for analysis of radiographic cancer images, current sc:url "http://webs.iiitd.edu.in/raghava/cancerlsp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0218, @@ -14031,7 +11048,7 @@ CaPTk is a software platform for analysis of radiographic cancer images, current biotools:primaryContact "Jake Lever" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0659, edam:topic_2640, @@ -14059,7 +11076,7 @@ CancerSPP is a web-bench for skin cutaneous melanoma (SKCM) progression predicti sc:url "http://webs.iiitd.edu.in/raghava/cancerspp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0219, edam:topic_2640, @@ -14078,30 +11095,30 @@ CancerTracer is a manually curated and integrated database aims to help research a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3307 ; sc:description "Using existing tools in the Galaxy environment we generated the workflow CandiMeth (CANDIdate feature METHylation). This takes as input a differential methylation table from an R-based package and maps it to a reference genome build. A simple interface then allows the user to query the dataset with inputs as straightforward as lists of gene names, or as detailed as bed files containing specific chromosomal coordinates, for more sophisticated analyses." ; @@ -14114,51 +11131,8 @@ CancerTracer is a manually curated and integrated database aims to help research sc:url "http://bit.do/candimeth-github" ; biotools:primaryContact "Colum Walsh" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0121, - edam:topic_0154, - edam:topic_0780, - edam:topic_3520 ; - sc:citation ; - sc:description """The First Publicly Available Annotated Genome for Cannabis plants. - -Interactive Proteome Draft Map Portal. - -Cannabis science is still in it's infancy. - -Click here to enter the Draft Portal V1.0.0. - -Please note, this database only includes the 3,421 gene products that can be perfectly aligned to the C.sativa genome. Error tolerant alignment is coming soon. - -We are currently constructing protein FASTA databases for use in Cannabis proteomics. The lack of annotated sequences has impeded the study of Cannabis. We have worked to create a resource to enable and advance future research. - -We have utilized high pressure ultra high resolution mass spectrometry (LC-MS MS) to acquire millions of mass spectra from proteins of dozens of cannabis materials. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/CannabisDraftMap (CANNABISDRAFTMAP.ORG). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Draft Map'""" ; - sc:featureList edam:operation_0362, - edam:operation_3208, - edam:operation_3431 ; - sc:name "Cannabis" ; - sc:url "http://www.CannabisDraftmap.org" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0780, - edam:topic_3172 ; - sc:citation , - ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Cannabis', 'Cannabis flower', 'cannabinoids', 'CannabisDraftMap Org' | The Cannabis Multi-Omics Draft Map Project | Cannabis science is still in it's infancy | Here you will find the current status and access to:" ; - sc:featureList edam:operation_0417, - edam:operation_3501, - edam:operation_3645 ; - sc:name "CannabisDraftMap" ; - sc:url "http://www.CannabisDraftMap.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -14174,7 +11148,7 @@ We have utilized high pressure ultra high resolution mass spectrometry (LC-MS MS sc:url "https://tripod.nih.gov/canvass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0634, edam:topic_0654 ; @@ -14190,7 +11164,7 @@ Citation: MA Y F, ADEOLA A C, SUN Y B, et al. 2020. CaptureProbe: a java tool fo sc:url "https://sourceforge.net/projects/captureprobe/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, edam:topic_3300, @@ -14215,7 +11189,7 @@ physiologically based pharmacokinetic-quantitative system. sc:url "https://github.com/jszlek/CardiacPBPK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0625, @@ -14237,7 +11211,7 @@ physiologically based pharmacokinetic-quantitative system. biotools:primaryContact "Victor Chang Cardiac Research Institute" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3444 ; @@ -14254,73 +11228,8 @@ physiologically based pharmacokinetic-quantitative system. sc:url "https://github.com/YasharVahedein/CardioFAN" ; biotools:primaryContact "Yashar Seyed Vahedein" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_2640, - edam:topic_3376, - edam:topic_3403, - edam:topic_3420 ; - sc:citation , - "pubmed:31744378" ; - sc:description """Development and Implementation of the Family Caregiver Decision Guide. - -The purpose of this website is to guide us through the decisions that we make every day as we care for a family member or friend who has a serious illness. - -I am a caregiver for a family member living with a life-limiting illness. - -I would like to plan for possible changes in caregiving for my family member. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Caregiver', 'FCDG'""" ; - sc:name "Caregiver Decision Guide" ; - sc:url "https://www.caregiverdecisionguide.ca" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0625, - edam:topic_3174 ; - sc:citation , - ; - sc:description """Enabling landscape genomics for forest trees. - -Forest trees cover just over 30% of the earth's surface and are studied by researchers around the world for both their conservation and economic value. With the onset of high throughput technologies, tremendous phenotypic and genomic data sets have been generated for hundreds of species. These long-lived and immobile individuals serve as ideal models to assess population structure and adaptation to environment. Despite the availability of comprehensive data, researchers are challenged to integrate genotype, phenotype, and environment in one place. Towards this goal, CartograTree was designed and implemented as an open repository and open-source analytic framework for genomic, phenotypic, and environmental data for forest trees. - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/cartogratree""" ; - sc:featureList edam:operation_0282, - edam:operation_2422, - edam:operation_3196 ; - sc:name "CartograTree_autogenerated" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.2345V4" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_0632, - edam:topic_0780, - edam:topic_2885, - edam:topic_3168 ; - sc:citation , - "pmcid:PMC6811913", - "pubmed:31667304" ; - sc:description """Data on the draft genome sequence of Caryocar brasiliense Camb. (Caryocaraceae). - -A BioProject is a collection of biological data related to a single initiative, originating from a single organization or from a consortium. A BioProject record provides users a single place to find links to the diverse data types generated for that project. - -Caryocar brasiliense isolate:Cbr1_UFG_LGBio. - -See also 1 genome matching your organism search. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/bioproject (NLM.NIH.GOV/bioproject). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'brasiliense', 'Data draft genome sequence Caryocar brasiliense Camb Caryocaraceae', 'Caryocar brasiliense'""" ; - sc:featureList edam:operation_0308, - edam:operation_0525, - edam:operation_3695 ; - sc:name "Caryocar" ; - sc:url "https://www.ncbi.nlm.nih.gov/bioproject/?term=caryocar" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168, @@ -14339,35 +11248,8 @@ See also 1 genome matching your organism search. biotools:primaryContact "Jin-Soo Kim", "Sangsu Bae" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0659, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6718102", - "pubmed:31524268" ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'MALAT1 miR175p FZD2', 'MALAT1 miR175p FZD2 Wnt', 'CasIIgly MALAT1 miR175p', 'miR175p FZD2' | Casiopeina II‑gly acts on lncRNA MALAT1 by miR‑17‑5p to inhibit FZD2 expression via the Wnt signaling pathway during the treatment of cervical carcinoma | The present study investigated the underlying regulatory network involved in the differential expression of metastasis associated lung adenocarcinoma transcript 1 (MALAT1) long non‑coding (lnc)RNA, microRNA‑17‑5p (miR‑17‑5p) and frizzled class receptor 2 (FZD2) mRNA under the influence of Casiopeina II‑gly (Cas‑II‑gly) via the Wnt signaling pathway in cervical carcinoma (CC). The gene expression data were obtained from the Gene Expression Omnibus database (https: www.ncbi.nlm.nih.gov geo ), and the differentially expressed genes were determined using R software" ; - sc:featureList edam:operation_2436, - edam:operation_3223, - edam:operation_3642 ; - sc:name "CasIIgly MALAT1 miR175p FZD2" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31524268" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0623, - edam:topic_3174 ; - sc:citation , - "pmcid:PMC6693189", - "pubmed:31411686" ; - sc:description "an integrated and annotated database for Cas proteins from bacteria and archaea | Expanding the Catalog of cas Geness with Metagenomes | Expanding the Catalog of cas Genes with Metagenomes | CRISPR-Cas systems are RNA-based immune systems present in many bacteria and most archaea, almost composed of the CRISPR loci and cas gene | This website deposites the Cas proteins predicted from complete/draft genomes and metagenomes | Please cite this paper: Quan Zhang, Thomas G" ; - sc:featureList edam:operation_0435, - edam:operation_3431 ; - sc:name "CasPDB" ; - sc:url "http://omics.informatics.indiana.edu/mg/CAS" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_0780, edam:topic_3168, @@ -14386,7 +11268,7 @@ CASCABEL is a pipeline designed to run amplicon sequence analysis across single sc:url "https://github.com/AlejandroAb/CASCABEL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0749, edam:topic_2229 ; @@ -14411,7 +11293,7 @@ Target Site Sequencing Pipeline: a pipeline for extracing lineage information fr sc:url "http://www.github.com/YosefLab/Cassiopeia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, @@ -14435,7 +11317,7 @@ Target Site Sequencing Pipeline: a pipeline for extracing lineage information fr "Thomas Bligaard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3407, edam:topic_3577 ; @@ -14459,7 +11341,7 @@ CauseMap is an implementation of Convergent Cross Mapping (CCM) [1], written in sc:url "http://cyrusmaher.github.io/CauseMap.jl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, edam:topic_3399 ; @@ -14472,7 +11354,7 @@ CauseMap is an implementation of Convergent Cross Mapping (CCM) [1], written in sc:url "https://genomics.senescence.info/cells/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2830, edam:topic_3170 ; @@ -14486,7 +11368,7 @@ CauseMap is an implementation of Convergent Cross Mapping (CCM) [1], written in sc:url "https://github.com/irrationone/cellassign" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, edam:topic_3170 ; @@ -14506,7 +11388,7 @@ This package contains infrastructure for benchmarking analysis methods and acces sc:url "https://bioconductor.org/packages/CellBench" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, edam:topic_3170 ; @@ -14529,7 +11411,7 @@ Stephen J Fleming, John C Marioni, and Mehrtash Babadi. CellBender remove-backgr sc:url "https://github.com/broadinstitute/CellBender" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2229, edam:topic_3292, @@ -14548,30 +11430,8 @@ Working_with_CellCounter.ipynb — this notebook contains the examples of pretra sc:name "CellCountCV" ; sc:url "http://cellcounter.nprog.ru/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0121, - edam:topic_0208, - edam:topic_2640, - edam:topic_3520 ; - sc:citation , - "pmcid:PMC6889472", - "pubmed:31733513" ; - sc:description """Quantitative Proteome Landscape of the NCI-60 Cancer Cell Lines. - -CellMiner Cross Database (CellMinerCDB) is the first web application to allow translational researchers to conduct analyses across all major cancer cell line pharmacogenomic data sources from NCI-DTP NCI-60, Sanger GDSC, and Broad CCLE/CTRP. - -Skip over navigation CellMiner NCI-60 NCI/DCTD/DTP. - -This page provides automation of several commonly done analyses. For a complete description of the CellMiner options, go to the "Home" tab above""" ; - sc:featureList edam:operation_3083, - edam:operation_3629, - edam:operation_3799 ; - sc:name "CellMiner" ; - sc:url "http://discover.nci.nih.gov/cellminercdb" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0208, edam:topic_3170, @@ -14596,7 +11456,7 @@ This page provides automation of several commonly done analyses. For a complete sc:url "https://discover.nci.nih.gov/cellminercdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3382, @@ -14616,7 +11476,7 @@ This page provides automation of several commonly done analyses. For a complete sc:url "https://cellprofiler.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, @@ -14636,7 +11496,7 @@ This page provides automation of several commonly done analyses. For a complete sc:url "http://www.cellsim.nwsuaflmz.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2229, @@ -14656,7 +11516,7 @@ This page provides automation of several commonly done analyses. For a complete biotools:primaryContact "Keith E. J. Tyo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_2229, @@ -14679,25 +11539,8 @@ This page provides automation of several commonly done analyses. For a complete sc:url "https://github.com/morris-lab/CellTag-Classifier" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_3300, - edam:topic_3368, - edam:topic_3382 ; - sc:citation ; - sc:description """A micropatterned biphasic nanocomposite platform for culturing chondrocytes. - -Graphical Abstract Abstract We present a unique micropatterned nanocomposite cell culture platform to model articular cartilage that is suitable for high-throughput single-cell analyses using standard imaging techniques. This platform, the CellWell, is constructed out of a thin, optically transparent substrate that is lithographically micropatterned with a network of wells sized to fit individual cells. The substrate material consists of a thin layer of agarose hydrogel embedded with polyvinyl alcohol nanofibers. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'xmlns:xlink', 'xlink:href790030v1_ufig1', 'micropatterned'""" ; - sc:featureList edam:operation_3216 ; - sc:name "CellWell" ; - sc:url "https://doi.org/10.1101/790030" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0804, edam:topic_2229, @@ -14717,28 +11560,8 @@ Graphical Abstract a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0605, - edam:topic_0621, - edam:topic_2229, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6779297", - "pubmed:31589649" ; - sc:description """A similarity based approach and machine learning strategy for multiple cell lines-compound sensitivity prediction. - -The prediction of cell-lines sensitivity to a given set of compounds is a very important factor in the optimization of in-vitro assays. To date, the most common prediction strategies are based upon machine learning or other quantitative structure-activity relationships (QSAR) based approaches. In the present research, we propose and discuss a straightforward strategy not based on any learning modelling but exclusively relying upon the chemical similarity of a query compound to reference compounds with annotated activity against cell lines. We also compare the performance of the proposed method to machine learning predictions on the same problem. A curated database of compounds-cell lines associations derived from ChemBL version 22 was created for algorithm construction and cross-validation. - -||| HOMEPAGE BROKEN!""" ; - sc:featureList edam:operation_0224, - edam:operation_2495, - edam:operation_3799 ; - sc:name "Cell fishing" ; - sc:url "http://bioquimio.udla.edu.ec/cellfishing" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3305, @@ -14759,7 +11582,7 @@ The prediction of cell-lines sensitivity to a given set of compounds is a very i biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -14776,20 +11599,8 @@ The prediction of cell-lines sensitivity to a given set of compounds is a very i "Windows" ; sc:url "https://github.com/romanhaa/Cerebro" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0610, - edam:topic_0625, - edam:topic_0780 ; - sc:citation ; - sc:description """Individual-based field observations of breeding snowy plovers Charadrius nivosus. - -(Sorry about that, but we can’t show files that are this big right now.)""" ; - sc:featureList edam:operation_3196 ; - sc:name "CeutaOPEN" ; - sc:url "https://github.com/leberhartphillips/Ceuta_OPEN/blob/master/R/Ceuta_OPEN.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3444, edam:topic_3473 ; @@ -14805,10 +11616,10 @@ The prediction of cell-lines sensitivity to a given set of compounds is a very i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_3006" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3173 ; sc:citation , @@ -14833,7 +11644,7 @@ The prediction of cell-lines sensitivity to a given set of compounds is a very i biotools:primaryContact "Hamid Younesy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, @@ -14856,7 +11667,7 @@ The prediction of cell-lines sensitivity to a given set of compounds is a very i biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3169, @@ -14876,22 +11687,8 @@ The prediction of cell-lines sensitivity to a given set of compounds is a very i sc:url "https://github.com/GuoliangLi-HZAU/ChIA-PET_Tool_V3/" ; biotools:primaryContact "Guoliang Li" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0749, - edam:topic_3169 ; - sc:citation , - "pmcid:PMC6715275", - "pubmed:31465497" ; - sc:description "> LOW CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/chip-seq | > NAME (ChIP-Seq) SIMILAR TO (PUB. DIFFERENT) bio.tools/chipseq (chipseq) | Population size estimation for quality control of ChIP-Seq datasets | If you are not redirected automatically, follow the link" ; - sc:featureList edam:operation_0389, - edam:operation_2428, - edam:operation_3435 ; - sc:name "ChIP-Seq_autogenerated" ; - sc:url "https://ict.biouml.org/bioumlweb/chipseq_analysis.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -14914,7 +11711,7 @@ The prediction of cell-lines sensitivity to a given set of compounds is a very i biotools:primaryContact "Endre Barta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, edam:topic_3295 ; @@ -14928,7 +11725,7 @@ The prediction of cell-lines sensitivity to a given set of compounds is a very i sc:url "https://github.com/rmesse/ChIPdig" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3179, edam:topic_3295 ; @@ -14944,7 +11741,7 @@ The prediction of cell-lines sensitivity to a given set of compounds is a very i sc:url "https://pecan.stjude.cloud/permalink/spikefree" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -14966,7 +11763,7 @@ The prediction of cell-lines sensitivity to a given set of compounds is a very i biotools:primaryContact "Vishaka Datta S" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation , "pmcid:PMC6980795", @@ -14979,24 +11776,8 @@ BACKGROUND:Decision-making is the process of choosing and performing actions in sc:name "ChaRTr" ; sc:url "https://github.com/mailchand/CHaRTr" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0659, - edam:topic_3308, - edam:topic_3320, - edam:topic_3512 ; - sc:citation ; - sc:description """Global Transcriptome Characterization and Assembly of Thermophilic Ascomycete Chaetomium thermophilum. - -A correct genome annotation is fundamental for research in the field of molecular and structural biology. The annotation of the reference genome Chaetomium thermophilum has been reported previously, but it is limited to open reading frames (ORFs) of genes and contains only a few noncoding transcripts. In this study, we identified and annotated by deep RNA sequencing full-length transcripts of C.thermophilum. We annotated 7044 coding genes and a large number of noncoding genes (n=4567). Astonishingly, 23% of the coding genes are alternatively spliced. We identified 679 novel coding genes and corrected the structural organization of more than 50% of the previously annotated genes. Furthermore, we substantially extended the Gene Ontology (GO) and Enzyme Commission (EC) lists, which provide comprehensive search tools for potential industrial applications and basic research""" ; - sc:featureList edam:operation_0362, - edam:operation_0558, - edam:operation_3258 ; - sc:name "Chaetomium thermophilum" ; - sc:url "https://www.bzh.uni-heidelberg.de/brunner/Chaetomium_thermophilum" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0749 ; sc:citation , @@ -15007,26 +11788,8 @@ A correct genome annotation is fundamental for research in the field of molecula sc:name "ChaperISM" ; sc:url "https://github.com/BioinfLab/ChaperISM" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_3305, - edam:topic_3390, - edam:topic_3421 ; - sc:citation , - "pmcid:PMC6799081" ; - sc:description """A checklist for developing and implementing a high-impact monitoring and evaluation system in clinical and translational science programs. - -WHO surgical safety checklist and implementation manual. - -The focus of the Challenge is the WHO Safe Surgery Checklist. The checklist identifies three phases of an operation, each corresponding to a specific period in the normal flow of work: Before the induction of anaesthesia (“sign in”), before the incision of the skin (“time out”) and before the patient leaves the operating room (“sign out”). In each phase, a checklist coordinator must confirm that the surgery team has completed the listed tasks before it proceeds with the operation. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'organiziationevalcapacity', 'Surgical Safety Checklist', 'M and E', 'M and E Checklist'""" ; - sc:featureList edam:operation_3454 ; - sc:name "Checklist" ; - sc:url "http://www.who.int/patientsafety/safesurgery/ss_checklist/en/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, edam:topic_3373 ; @@ -15039,7 +11802,7 @@ The focus of the Challenge is the WHO Safe Surgery Checklist. The checklist iden sc:url "http://admet.scbdd.com/ChemAGG/index" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593, edam:topic_2258, edam:topic_3316, @@ -15061,7 +11824,7 @@ ChemDataExtractor toolkit tailored towards UV/vis absorption spectroscopy peak d sc:url "http://chemdataextractor.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , , "pmcid:PMC7412753", @@ -15073,7 +11836,7 @@ Coordination or local environments have been used to describe, analyze, and unde sc:url "https://doi.org/10.26434/CHEMRXIV.11294480.V1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3314 ; sc:citation , @@ -15084,7 +11847,7 @@ Coordination or local environments have been used to describe, analyze, and unde sc:url "https://www.ingentaconnect.com/content/scs/chimia/2019/00000073/00000009/art00007/supp-data/content-2019_73_9_724" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3474 ; @@ -15102,7 +11865,7 @@ Coordination or local environments have been used to describe, analyze, and unde sc:url "http://14.139.57.41/chemsuiteweb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -15125,7 +11888,7 @@ Coordination or local environments have been used to describe, analyze, and unde "Y. Ben Zouari" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3070, edam:topic_3361 ; @@ -15139,26 +11902,21 @@ By combining heating, stirring, liquid handling, spectrometry, and optogenetics a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -15182,7 +11940,7 @@ By combining heating, stirring, liquid handling, spectrometry, and optogenetics sc:url "https://mines.legumeinfo.org/chickpeamine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3500, @@ -15200,22 +11958,8 @@ By combining heating, stirring, liquid handling, spectrometry, and optogenetics "Fiona M McCarthy", "Shane C Burgess" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0130, - edam:topic_3382, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6789601", - "pubmed:31390767" ; - sc:description "> VERY_LOW CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/chimera | > NAME (Chimera) SIMILAR TO (PUB. DIFFERENT) bio.tools/chimera_fusion (chimera) | > CORRECT NAME OF TOOL COULD ALSO BE 'HBOS', 'cryo-EM', 'histogram-based', 'assistant' | A Visualization Tool for Cryo-EM Protein Validation with an Unsupervised Machine Learning Model in Chimera Platform | Visualization Tool for Protein Validation in Chimera Platform" ; - sc:featureList edam:operation_0249, - edam:operation_0321, - edam:operation_0450 ; - sc:name "Chimera_autogenerated" ; - sc:url "https://github.com/lin-chen-VA/chimeraplugin" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3489, edam:topic_3500 ; @@ -15231,7 +11975,7 @@ Abstract Audio recording devices h sc:url "https://github.com/asearfos/chipper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0797, edam:topic_3293, @@ -15254,7 +11998,7 @@ Problems and errors encountered on the ChlamDB website can be announced on the g sc:url "https://chlamdb.ch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0121, edam:topic_3697 ; @@ -15268,7 +12012,7 @@ Problems and errors encountered on the ChlamDB website can be announced on the g sc:url "https://kmcd.shinyapps.io/chordomics/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, edam:topic_3474 ; @@ -15284,7 +12028,7 @@ Problems and errors encountered on the ChlamDB website can be announced on the g sc:url "https://github.com/kundajelab/ChromDragoNN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0749, edam:topic_2815, @@ -15305,7 +12049,7 @@ ChromaClade is a desktop bioinformatics application that produces visualisations sc:url "http://github.com/chrismonit/chroma_clade" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0798, edam:topic_3382 ; @@ -15328,7 +12072,7 @@ Will run chromatiblock on all fasta or genbank files in /path/to/fasta_directory sc:url "https://github.com/mjsull/chromatiblock/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2640, @@ -15350,7 +12094,7 @@ Will run chromatiblock on all fasta or genbank files in /path/to/fasta_directory biotools:primaryContact "Paul Scheet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, edam:topic_3308 ; @@ -15365,7 +12109,7 @@ Will run chromatiblock on all fasta or genbank files in /path/to/fasta_directory sc:url "http://www.ciiider.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0625, @@ -15387,33 +12131,16 @@ Will run chromatiblock on all fasta or genbank files in /path/to/fasta_directory biotools:primaryContact , "Martijn A. Huynen" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0769, - edam:topic_3318, - edam:topic_3382 ; - sc:citation , - "pubmed:31868729" ; - sc:description """a visualization application for beamline science demonstrated on XFEL shock physics experiments. - -A new visualization tool, Cinema:Bandit, and its demonstration with a continuous workflow for analyzing shock physics experiments and visually exploring the data in real time at X-ray light sources is presented. Cinema:Bandit is an open-source, web-based visualization application in which the experimenter may explore an aggregated dataset to inform real-time beamline decisions and enable post hoc data analysis. The tool integrates with experimental workflows that process raw detector data into a simple database format, and it allows visualization of disparate data types, including experimental parameters, line graphs, and images. Use of parallel coordinates accommodates the irregular sampling of experimental parameters and allows for display and filtering of both experimental inputs and measurements. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/pymzml (GITHUB.COM)""" ; - sc:featureList edam:operation_0337, - edam:operation_3436, - edam:operation_3695 ; - sc:name "Cinema:Bandit" ; - sc:url "https://github.com/cinema" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3505" ; - sc:name "Bibliography" ; - sc:sameAs "http://edamontology.org/data_3505" ] ; + sc:additionalType "http://edamontology.org/data_3505" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Bibliography" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1087" ; - sc:name "Ontology concept ID" ; - sc:sameAs "http://edamontology.org/data_1087" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1087" ; + sc:encodingFormat "http://edamontology.org/format_2196" ; + sc:name "Ontology concept ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_3064 ; sc:citation , @@ -15427,7 +12154,7 @@ A new visualization tool, Cinema:Bandit, and its demonstration with a continuous sc:url "https://www.aniseed.cnrs.fr/aniseed/anatomy/find_devstage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0089, @@ -15451,7 +12178,7 @@ A new visualization tool, Cinema:Bandit, and its demonstration with a continuous "Irina Kuznetsova" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0659, edam:topic_0749, @@ -15473,7 +12200,7 @@ CircCode is a Python3-base pipeline for translated circular RNA identification. sc:url "https://github.com/PSSUN/CircCode" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -15500,7 +12227,7 @@ CircCode is a Python3-base pipeline for translated circular RNA identification. biotools:primaryContact "Ming Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -15520,7 +12247,7 @@ CircCode is a Python3-base pipeline for translated circular RNA identification. "Xianwen Meng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, edam:topic_3512 ; @@ -15535,7 +12262,7 @@ CircCode is a Python3-base pipeline for translated circular RNA identification. sc:url "https://hanlab.uth.edu/cRic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3070 ; sc:citation , @@ -15552,7 +12279,7 @@ Rex Parsons, Richard Parsons, Nicholas Garner, Henrik Oster, Oliver Rawashdeh, C sc:url "https://github.com/RWParsons/circacompare/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0654, @@ -15575,7 +12302,7 @@ Circle-Map is an easy to install, python package that implements all the steps r sc:url "https://github.com/iprada/Circle-Map" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -15601,7 +12328,7 @@ Circle-Map is an easy to install, python package that implements all the steps r "X Shirley Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3170, edam:topic_3308, @@ -15621,7 +12348,7 @@ CiteFuse is a streamlined package consisting of a suite of tools for pre-process sc:url "http://SydneyBioX.github.io/CiteFuse/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053, @@ -15641,7 +12368,7 @@ CiteFuse is a streamlined package consisting of a suite of tools for pre-process biotools:primaryContact "D. Rahat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -15665,7 +12392,7 @@ Single-molecule sequencing technologies have emerged in recent years and revolut sc:url "https://github.com/HKU-BAL/Clair" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474, edam:topic_3500 ; @@ -15682,7 +12409,7 @@ Single-molecule sequencing technologies have emerged in recent years and revolut sc:url "https://classifymeapp.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -15700,7 +12427,7 @@ Single-molecule sequencing technologies have emerged in recent years and revolut sc:url "http://classyfire.wishartlab.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -15715,28 +12442,8 @@ Single-molecule sequencing technologies have emerged in recent years and revolut sc:softwareHelp ; sc:url "http://www.clickgenome.org/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_3050, - edam:topic_3489 ; - sc:citation , - "pmcid:PMC6783616", - "pubmed:31594943" ; - sc:description """spatially, temporally and climatically explicit distribution database for the Italian fauna. - -Understanding and counteracting biodiversity losses requires quantitative knowledge on species distribution and abundance across space and time, as well as integrated and interoperable information on climate conditions and climatic changes. In this paper we developed a new biodiversity-climate database for Italy, ClimCKmap, based on the critical analysis, quality estimation and subsequent integration of the CKmap database with several high-resolution climate datasets. The original database was quality-checked for errors in toponym, species name and dating; the retained records were georeferenced and their distribution polygonised via Voronoi tessellation. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'a91f85cb befd 4e14 8e83 24f17c4a0491', 'temporally climatically', 'biodiversity-climate', 'climatically'""" ; - sc:featureList edam:operation_0310, - edam:operation_3659, - edam:operation_3799 ; - sc:name "ClimCKmap" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31594943" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2269, @@ -15757,7 +12464,7 @@ A tool for large-scale CNV and CNA detection.""" ; sc:url "https://github.com/imgag/ClinCNV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, edam:topic_3305, @@ -15776,7 +12483,7 @@ The concept of open data has been gaining traction as a mechanism to increase da sc:url "https://clinepidb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0208, edam:topic_2640, @@ -15794,7 +12501,7 @@ The concept of open data has been gaining traction as a mechanism to increase da sc:url "https://clinomicstrail.bioinf.uni-sb.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0208, @@ -15817,7 +12524,7 @@ The concept of open data has been gaining traction as a mechanism to increase da sc:url "https://clinomicstrail.bioinf.uni-sb.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3325, edam:topic_3676 ; @@ -15834,7 +12541,7 @@ The concept of open data has been gaining traction as a mechanism to increase da "Najmeh Alirezaie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -15852,7 +12559,7 @@ The concept of open data has been gaining traction as a mechanism to increase da sc:url "https://www.clintad.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -15871,20 +12578,8 @@ The concept of open data has been gaining traction as a mechanism to increase da sc:name "ClinVAP" ; sc:url "https://github.com/PersonalizedOncology/ClinVAP" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0634, - edam:topic_0749 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/clinvar | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/clinvar (NCBI.NLM.NIH.GOV/clinvar ; NLM.NIH.GOV/clinvar), bio.tools/ncbi_resources (NLM.NIH.GOV), bio.tools/genbank (NLM.NIH.GOV) | > CORRECT NAME OF TOOL COULD ALSO BE 'MAPP' (bio.tools/mapp), 'APC', 'PMSA', 'PMSA-based' | Curated Multiple Sequence Alignment for the Adenomatous Polyposis Coli (APC) Gene and Accuracy of In Silico Pathogenicity Predictions | U.S. National Library of Medicine | ClinVar archives and aggregates information about relationships among variation and human health | National Center for Biotechnology Information | ClinVar Genomic variation as it relates to human health | National Center for Biotechnology Information. ClinVar; [VCV000428186.1], https://www.ncbi.nlm.nih.gov/clinvar/variation/VCV000428186.1 (accessed Nov. 14, 2019) | Access keys NCBI Homepage MyNCBI Homepage Main Content Main Navigation" ; - sc:featureList edam:operation_0446, - edam:operation_3225, - edam:operation_3461 ; - sc:name "ClinVar_autogenerated" ; - sc:url "https://preview.ncbi.nlm.nih.gov/clinvar/variation/428186/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -15905,7 +12600,7 @@ The concept of open data has been gaining traction as a mechanism to increase da biotools:primaryContact "Oriol Senan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -15928,7 +12623,7 @@ The Clirc software is designed to identify RBP-bound circRNAs in CLIP-Seq data. sc:url "https://github.com/Minzhe/Clirc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -15950,7 +12645,7 @@ Usage: python3 ClonalTREE.py a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -15970,88 +12665,14 @@ Usage: python3 ClonalTREE.py a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0637, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6755698", - "pubmed:31547800" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'HMC', 'HMC-GA', 'Machine learning discovering missing wrong protein function annotations', 'FunCat' | Machine learning for discovering missing or wrong protein function annotations | Clus is a decision tree and rule induction system that implements the predictive clustering framework. This framework unifies unsupervised clustering and predictive modelling and allows for a natural extension to more complex prediction settings such as multi-task learning and multi-label classification | Clus is co-developed by the Declarative Languages and Artificial Intelligence group of the Katholieke Universiteit Leuven, Belgium, and the Department of Knowledge Technologies of the Jožef Stefan Institute, Ljubljana, Slovenia | Clus is free software (licensed under the GPL) and can be obtained from this website" ; - sc:featureList edam:operation_3432 ; - sc:name "Clus-Ensemble" ; - sc:url "https://dtai.cs.kuleuven.be/clus/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0130, - edam:topic_0154, - edam:topic_0199, - edam:topic_2275, - edam:topic_2830 ; - sc:citation , - "pmcid:PMC6912172", - "pubmed:31857969" ; - sc:description """The Comparison Between the Mutated HuIFN-β 27-101 and the Wild Type Interferon β. - -ClusPro should only be used for noncommercial purposes. - -Use the server without the benefits of your own account. - -||| NAME (ClusPro2) SIMILAR TO (PUB. DIFFERENT) bio.tools/cluspro (ClusPro). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'asaview', 'verify3D', 'HuIFN-b mHuIFN-b-27 mHuIFN-b-101', 'HuIFN-b mHuIFN-b-27 mHuIFN-b-101 mHuIFN-b-27-101'""" ; - sc:featureList edam:operation_0307, - edam:operation_0480, - edam:operation_3899 ; - sc:name "ClusPro2" ; - sc:url "https://cluspro.org" . - - a sc:SoftwareApplication ; - sc:additionalType "Web application" ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0209, - edam:topic_2275, - edam:topic_3047 ; - sc:citation , - "pubmed:31863748" ; - sc:description """Automated Template-Based Small Molecule Docking. - -Automated server for template-based small-molecule docking. - -Use the server without the benefits of your own account ». - -LigTBM should only be used for noncommercial purposes. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'LigTBM'""" ; - sc:featureList edam:operation_2421, - edam:operation_2492, - edam:operation_3899 ; - sc:name "ClusPro LigTBM" ; - sc:url "https://ligtbm.cluspro.org/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634 ; - sc:citation , - "pubmed:31596789" ; - sc:description """A Space-Time Cluster Analysis R Package for Individual-level Data. - -BACKGROUND:Until recently, large individual-level longitudinal data were unavailable to investigate clusters of disease, driving a need for suitable statistical tools. We introduce a robust, efficient, intuitive R package, ClustR, for space-time cluster analysis of individual-level data. METHODS:We developed ClustR and evaluated the tool using a simulated dataset mirroring the population of California with constructed clusters. We assessed ClustR's performance under various conditions and compared it to another space-time clustering algorithm: SaTScan. RESULTS:ClustR mostly exhibited high sensitivity for urban clusters and low sensitivity for rural clusters. Specificity was generally high. Compared to SaTScan, ClustR ran faster and demonstrated similar sensitivity, but had lower specificity. Select cluster types were detected better by ClustR than SaTScan and vice versa. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3432 ; - sc:name "ClustR" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31596789" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3293 ; @@ -16067,7 +12688,7 @@ BACKGROUND:Until recently, large individual-level longitudinal data were unavail sc:url "https://www.ebi.ac.uk/seqdb/confluence/pages/viewpage.action?pageId=54651945" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation , @@ -16087,7 +12708,7 @@ BACKGROUND:Until recently, large individual-level longitudinal data were unavail sc:url "https://cran.r-project.org/package=ClusterBootstrap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, @@ -16110,7 +12731,7 @@ This method is designed for case-control studies where the condition under inves sc:url "https://github.com/adamwaring/ClusterBurden" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622 ; @@ -16127,31 +12748,22 @@ This method is designed for case-control studies where the condition under inves sc:url "https://github.com/pyrevo/ClusterScan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:28187414" ; sc:description "The CELLmicrocosmos 4.2 PathwayIntegration (CmPI) is a tool which provides hybrid-dimensional visualization and analysis of intracellular protein and gene localizations in the context of a virtual 3D environment. This tool is developed based on Java/Java3D/JOGL and provides a standalone application compatible to all relevant operating systems. However, it requires Java and the local installation of the software. Here we present the prototype of an alternative web-based visualization approach, using Three.js and D3.js. In this way it is possible to visualize and explore CmPI-generated localization scenarios including networks mapped to 3D cell components by just providing a URL to a collaboration partner. This publication describes the integration of the different technologies – Three.js, D3.js and PHP – as well as an application case: a localization scenario of the citrate cycle. The CmPI web viewer is available at: http://CmPIweb.CELLmicrocosmos.org." ; sc:name "CmPIweb" ; sc:url "http://CmPIweb.CELLmicrocosmos.org" . - a sc:SoftwareApplication ; - sc:citation , - "pmcid:PMC6696228", - "pubmed:31387304" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'CoCo-RED', 'congestion' | Congestion Control in CoAP Observe Group Communication | The Constrained Application Protocol (CoAP) is a simple and lightweight machine-to-machine (M2M) protocol for constrained devices for use in lossy networks which offers a small memory capacity and limited processing. Designed and developed by the Internet Engineering Task Force (IETF), it functions as an application layer protocol and benefits from reliable delivery and simple congestion control. It is implemented for request response message exchanges over the User Datagram Protocol (UDP) to support the Internet of Things (IoT). CoAP also provides a basic congestion control mechanism. In dealing with its own congestion, it relies on a fixed interval retransmission timeout (RTO) and binary exponential backoff (BEB)" ; - sc:name "CoAP" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31387304" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Script" ; @@ -16176,7 +12788,7 @@ This method is designed for case-control studies where the condition under inves biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -16198,7 +12810,7 @@ This method is designed for case-control studies where the condition under inves sc:url "http://gitlabscottgroup.med.usherbrooke.ca/scott-group/coco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3336, @@ -16212,18 +12824,18 @@ This method is designed for case-control studies where the condition under inves a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_1963" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ] ; + sc:additionalType "http://edamontology.org/data_2295" ; + sc:encodingFormat "http://edamontology.org/format_1963" ; + sc:name "Gene ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0121, @@ -16257,7 +12869,7 @@ function.""" ; biotools:primaryContact "Veit Schwämmle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, @@ -16278,7 +12890,7 @@ function.""" ; biotools:primaryContact "Jin Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3308, @@ -16300,7 +12912,7 @@ function.""" ; "Muhammad Zohaib Anwar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3407 ; @@ -16322,7 +12934,7 @@ function.""" ; biotools:primaryContact "Alexandra Zaharia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -16339,7 +12951,7 @@ function.""" ; sc:url "http://conekt.plant.tools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, @@ -16362,7 +12974,7 @@ function.""" ; "Marzieh Ayati" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -16379,7 +12991,7 @@ function.""" ; sc:url "https://github.com/krits04/cornea" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3520 ; @@ -16398,22 +13010,8 @@ function.""" ; sc:url "https://github.com/ChristopherAMyers/CoSIMS" ; biotools:primaryContact "Alan A. Chen" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0769, - edam:topic_3068, - edam:topic_3474 ; - sc:citation , - "pubmed:31835743" ; - sc:description """Efficient Execution of Complex Context Queries to Enable Near Real-Time Smart IoT Applications. - -As the Internet of Things (IoT) is evolving at a fast pace, the need for contextual intelligence has become more crucial for delivering IoT intelligence, efficiency, effectiveness, performance, and sustainability. Contextual intelligence enables interactions between IoT devices such as sensors actuators, smartphones and connected vehicles, to name but a few. Context management platforms (CMP) are emerging as a promising solution to deliver contextual intelligence for IoT. However, the development of a generic solution that allows IoT devices and services to publish, consume, monitor, and share context is still in its infancy. In this paper, we propose, validate and explain the details of a novel mechanism called Context Query Engine (CQE), which is an integral part of a pioneering CMP called Context-as-a-Service (CoaaS)""" ; - sc:featureList edam:operation_0224, - edam:operation_3761 ; - sc:name "CoaaS" ; - sc:url "https://hub.docker.com/r/coaas" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -16438,7 +13036,7 @@ As the Internet of Things (IoT) is evolving at a fast pace, the need for context . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -16458,7 +13056,7 @@ CodAn (Coding sequence Annotator) is a computational tool designed to characteri sc:url "https://github.com/pedronachtigall/CodAn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -16480,7 +13078,7 @@ CodAn (Coding sequence Annotator) is a computational tool designed to characteri "Lars Ronnegard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -16496,7 +13094,7 @@ CodAn (Coding sequence Annotator) is a computational tool designed to characteri biotools:primaryContact "Iddo Weiner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_3512 ; @@ -16510,7 +13108,7 @@ CodAn (Coding sequence Annotator) is a computational tool designed to characteri sc:url "http://apollo11.isto.unibo.it/software/Codonome/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0780 ; @@ -16529,7 +13127,7 @@ CodAn (Coding sequence Annotator) is a computational tool designed to characteri sc:url "https://coffee-genome-hub.southgreen.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, @@ -16555,7 +13153,7 @@ Written in collaboration with Martin Rusilowicz""" ; sc:url "https://github.com/fwhelan/coinfinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3316, edam:topic_3382 ; @@ -16576,7 +13174,7 @@ Written in collaboration with Martin Rusilowicz""" ; biotools:primaryContact "J. H. Smit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -16597,7 +13195,7 @@ Written in collaboration with Martin Rusilowicz""" ; biotools:primaryContact "Jaewoo Kang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application", "Web service" ; @@ -16620,7 +13218,7 @@ Written in collaboration with Martin Rusilowicz""" ; "Oriol L. Massaguer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474, edam:topic_3520 ; @@ -16635,7 +13233,7 @@ Written in collaboration with Martin Rusilowicz""" ; sc:url "https://github.com/metaspace2020/coloc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2640, @@ -16658,7 +13256,7 @@ Written in collaboration with Martin Rusilowicz""" ; sc:url "https://github.com/sbhoyar1/ColonySizeDistributions" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, @@ -16675,7 +13273,7 @@ Abstract Summary Hub transcription factors, regulating many target genes in gene sc:url "https://gitlab.com/Gustafsson-lab/comhub" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0085, @@ -16691,56 +13289,8 @@ Abstract Summary Hub transcription factors, regulating many target genes in gene sc:softwareVersion "1" ; sc:url "http://biosrv.cab.unina.it/comparalogs/gene/search" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0621 ; - sc:citation , - "pmcid:PMC6820954", - "pubmed:31664899" ; - sc:description """Exploring the implementation of the Community for Successful Ageing (ComSA)program in Singapore. - -BACKGROUND:The Community for Successful Ageing (ComSA) program has implemented overlapping BioPsychoSocial (BPS) components as part of a Community Development (CD) grassroots and volunteer-led initiative. Implementation of such multi-component programming is influenced by known program characteristics including novelty, complexity and observability as well as related organizational factors. As such, we explored ComSA CD's implementation from the organizational perspective, seeking to inform program improvements. METHODS:We conducted four focus groups with program staff, partners and trainers (total N = 21 participants). - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Exploring implementation Community Successful Ageing Singapore', 'ComSA', 'BioPsychoSocial', 'organizational'""" ; - sc:name "ComSA)program" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31664899" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3390, - edam:topic_3810 ; - sc:citation , - "pubmed:31783608" ; - sc:description """The Use of Tablet-Based Multiple-Pass 24-Hour Dietary Recall Application (MP24Diet) to Collect Dietary Intake of Children under Two Years Old in the Prospective Cohort Study in Indonesia. - -Please sign in below to continue. - -Learn more about how CommCare HQ can be your mobile solution for your frontline workforce. - -No account? Sign up today, it's free!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'MP24Diet', 'multiple-pass 24-h dietary', 'dietary', 'Indonesia'""" ; - sc:name "CommCare" ; - sc:url "http://www.commcarehq.org" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_3170, - edam:topic_3173 ; - sc:citation , - "pmcid:PMC6760149", - "pubmed:31551426" ; - sc:description "> CORRECT NAME OF TOOL COULD ALSO BE 'CommonMind Consortium' | CommonMind Consortium provides transcriptomic and epigenomic data for Schizophrenia and Bipolar Disorder | CommonMind Consortium Knowledge Portal | Synapse is a collaborative compute space that allows scientists to share and analyze data together | The CommonMind Consortium is a public-private partnership bringing together area knowledge, large scale and well-curated brain sample collections, data management and analysis expertise | Any data created will be deleted | This site uses Cookies to enhance your experience and to analyze our traffic" ; - sc:featureList edam:operation_3192, - edam:operation_3196, - edam:operation_3431 ; - sc:name "CommonMind" ; - sc:url "http://CommonMind.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3068, @@ -16757,7 +13307,7 @@ No account? Sign up today, it's free!. sc:url "http://comorbidity.eu/comorbidity4web/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3372 ; @@ -16776,7 +13326,7 @@ Interaction networks are a convenient way of representing the complex nature of sc:url "https://web.rniapps.net/compnet/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3336 ; @@ -16791,18 +13341,18 @@ CompScore is a web application for boosting structure-based virtual screening pe a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2872" ; - sc:name "ID list" ; - sc:sameAs "http://edamontology.org/data_2872" ], + sc:additionalType "http://edamontology.org/data_2872" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "ID list" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2872" ; - sc:name "ID list" ; - sc:sameAs "http://edamontology.org/data_2872" ] ; + sc:additionalType "http://edamontology.org/data_2872" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "ID list" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3307 ; sc:author ; @@ -16813,7 +13363,7 @@ CompScore is a web application for boosting structure-based virtual screening pe sc:url "https://rnact.crg.eu/compare" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0749, @@ -16834,40 +13384,28 @@ CompScore is a web application for boosting structure-based virtual screening pe sc:softwareHelp ; sc:url "https://sourceforge.net/projects/complexchange/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0605, - edam:topic_3300 ; - sc:citation ; - sc:description "> MEDIUM CONFIDENCE! | Aided Decision-Making for the Study of Protein Complexes | Abstract Proteins are the chief effectors of cell biology and their functions are typically carried out in the context of multi-protein assemblies; large collections of such interacting protein assemblies are often referred to as interactomes. Knowing the constituents of protein complexes is therefore important for investigating their molecular biology. Many experimental methods are capable of producing data of use for detecting and inferring the existence of physiological protein complexes. Each method has associated pros and cons, affecting the potential quality and utility of the data. Numerous informatic resources exist for the curation, integration, retrieval, and processing of protein interactions data. While each resource may possess different merits, none are definitive and few are wieldy, potentially limiting their effective use by non-experts" ; - sc:featureList edam:operation_2492, - edam:operation_3439, - edam:operation_3901 ; - sc:name "Complex" ; - sc:url "https://github.com/moghbaie/ComplexPlus" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Protein interaction data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0121, @@ -16902,22 +13440,22 @@ CompScore is a web application for boosting structure-based virtual screening pe a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ], + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Protein interaction data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_3158" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -16936,7 +13474,7 @@ CompScore is a web application for boosting structure-based virtual screening pe sc:url "https://www.ebi.ac.uk/complexportal/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2640, @@ -16959,23 +13497,8 @@ CompScore is a web application for boosting structure-based virtual screening pe sc:url "https://github.com/khuranalab/CompositeDriver" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3303, - edam:topic_3318, - edam:topic_3384 ; - sc:citation ; - sc:description """Computer-assisted craniometric evaluation for diagnosis and follow-up of craniofacial asymmetries. - -Purpose: The current assessment of patients with craniofacial asymmetries is accomplished by physical examination, anamnesis and radiological imaging. We propose a semi-automated, computer-assisted craniofacial evaluation (SymMetric v 1.0) based on orthogonal photography of the patient's head in 3 positions. The system is simple, low-cost, no-radiation or special resources needed. Although it does not substitute CT in cases of doubt between craniosynostosis and positional plagiocephaly, multiple numeric evaluations indicate regional deformities and severity of the asymmetry, which can help in the clinical decision of indicating or not the orthosis in positional deformities, determining treatment duration or evaluating surgical outcomes after correction. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'deformities', 'orthosis', 'asymmetries', 'craniofacial'""" ; - sc:name "Computer-assisted craniometric evaluation diagnosis follow-up craniofacial asymmetries" ; - sc:url "https://doi.org/10.1101/19007054" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0610, @@ -17001,7 +13524,7 @@ Purpose: The current assessment of patients with craniofacial asymmetries is acc "Junhui Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -17024,75 +13547,8 @@ Purpose: The current assessment of patients with craniofacial asymmetries is acc biotools:primaryContact "Ezeddin Al Hakim", "Marie Kindblom" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0202, - edam:topic_0821, - edam:topic_2830, - edam:topic_3407 ; - sc:citation , - , - , - , - "pmcid:PMC6844575", - "pmcid:PMC6844576", - "pmcid:PMC6844577", - "pmcid:PMC6844579", - "pubmed:31710713", - "pubmed:31710714", - "pubmed:31710716", - "pubmed:31710718" ; - sc:description """THE CONCISE GUIDE TO PHARMACOLOGY 2019/20. - -Nitric oxide synthase, endothelial. - -Aromatic-L-amino-acid decarboxylase. - -Amine oxidase [flavin-containing] A. - -Amine oxidase [flavin-containing] B. - -cAMP-specific 3',5'-cyclic phosphodiesterase 4A. - -Liver carboxylesterase 1 precursor. - -Prostaglandin G/H synthase 1 precursor. - -Arachidonate 5-lipoxygenase-activating protein. - -Interleukin-4 receptor subunit alpha precursor. - -Interleukin-3 receptor subunit alpha precursor. - -Ciliary neurotrophic factor receptor subunit alpha precursor. - -Interleukin-12 subunit alpha precursor. - -Interleukin-12 subunit beta precursor. - -Interleukin-1 receptor type 2 precursor. - -Atrial natriuretic peptide receptor 2 precursor. - -Heat-stable enterotoxin receptor precursor. - -C-type natriuretic peptide precursor. - -Receptor tyrosine-protein kinase erbB-3 precursor. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/uniprotkb (UNIPROT.ORG/uniprot). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'PHARMACOLOGY'""" ; - sc:featureList edam:operation_0269, - edam:operation_0303, - edam:operation_0337, - edam:operation_0482, - edam:operation_2995 ; - sc:name "Concise Guide PHARMACOLOGY 2019 20" ; - sc:url "http://www.uniprot.org/uniprot/P28329" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, @@ -17103,23 +13559,8 @@ Receptor tyrosine-protein kinase erbB-3 precursor. sc:name "ConnectedReads" ; sc:url "https://github.com/atgenomix/connectedreads" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0780, - edam:topic_3068, - edam:topic_3315 ; - sc:citation , - "pubmed:31603436" ; - sc:description """[Assessment of consumer exposure to chemical agents on the example of the ConsExpo model]. - -Contact the administrator. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ConsExpo Web'""" ; - sc:featureList edam:operation_2426 ; - sc:name "ConsExpo" ; - sc:url "http://consexpoweb.nl" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0610, @@ -17133,30 +13574,30 @@ Contact the administrator. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1179" ; - sc:name "NCBI taxonomy ID" ; - sc:sameAs "http://edamontology.org/data_1179" ], + sc:additionalType "http://edamontology.org/data_1179" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "NCBI taxonomy ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ], + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1179" ; - sc:name "NCBI taxonomy ID" ; - sc:sameAs "http://edamontology.org/data_1179" ] ; + sc:additionalType "http://edamontology.org/data_1179" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "NCBI taxonomy ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2042" ; - sc:name "Evidence" ; - sc:sameAs "http://edamontology.org/data_2042" ], + sc:additionalType "http://edamontology.org/data_2042" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Evidence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2042" ; - sc:name "Evidence" ; - sc:sameAs "http://edamontology.org/data_2042" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2042" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Evidence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:author ; @@ -17176,7 +13617,7 @@ Contact the administrator. biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -17198,7 +13639,7 @@ Contact the administrator. biotools:primaryContact "Joel Ostblom" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0176, @@ -17218,7 +13659,7 @@ This plugin provides HEMNMA and StructMap protocols and is frequently updated."" sc:url "https://pypi.org/project/scipion-em-continuousflex" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -17236,29 +13677,8 @@ In recent years, machine learning techniques have been widely used in biomedical sc:name "ContraDRG" ; sc:url "https://cdrg.mathematik.uni-marburg.de/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_2229, - edam:topic_2640, - edam:topic_3305, - edam:topic_3315 ; - sc:citation , - "pmcid:PMC6886869", - "pubmed:31738747" ; - sc:description """Contrasting the impact of cytotoxic and cytostatic drug therapies on tumour progression. - -contrasting-cytotoxic-cytostatic. - -Source codes for 'Contrasting the impact of cytotoxic and cytostatic drug therapies on tumour progression'. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'cytostatic', 'tumour', 'birth', 'therapy'""" ; - sc:featureList edam:operation_2426, - edam:operation_3503 ; - sc:name "Contrasting" ; - sc:url "https://github.com/mustonen-group/contrasting-cytotoxic-cytostatic" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2229, @@ -17277,30 +13697,8 @@ BACKGROUND:The spatial distributions of different types of cells could reveal a sc:softwareHelp ; sc:url "https://qbrc.swmed.edu/projects/cnn/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3050, - edam:topic_3489, - edam:topic_3810 ; - sc:citation , - "pmcid:PMC6771653", - "pubmed:31598037" ; - sc:description """A global on-line tool to assess water use in crop production. - -An online greenhouse gas, water, and biodiversity calculator. - -COOL FARM TOOL AN ONLINE GREENHOUSE GAS, WATER, AND BIODIVERSITY CALCULATOR FOR FARMERS FREE FOR FARMERS THE COOL FARM ALLIANCE AN INDUSTRY PLATFORM FOR SUSTAINABLE AGRICULTURE METRIC DEVELOPMENT AND USE LEARN MORE News & Resources STAY UP TO DATE WITH OUR CASE STUDIES, RESOURCES, NEWS & BLOGS READ MORE. - -The Cool Farm Alliance is Hiring. - -The Cool Farm Alliance is looking to contract for two new roles. Due to the growth of the Alliance, we are looking for two new project management roles, one to support the Development & Operations Committee and one to lead the support to..""" ; - sc:featureList edam:operation_0387, - edam:operation_3435, - edam:operation_3436 ; - sc:name "Cool Farm Tool Water" ; - sc:url "https://coolfarmtool.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2269, edam:topic_3678 ; @@ -17318,7 +13716,7 @@ We describe four different summary statistics, to ensure power and flexibility u sc:url "https://cran.r-project.org/web/packages/CorDiff/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -17339,7 +13737,7 @@ This website began as an extension of work applying the CorEx machine learning a sc:url "http://corex.isi.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3170, @@ -17363,7 +13761,7 @@ This website began as an extension of work applying the CorEx machine learning a "Jianliang Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_3384, @@ -17385,18 +13783,8 @@ This website began as an extension of work applying the CorEx machine learning a sc:url "https://coreslicer.com/" ; biotools:primaryContact "Louis Mullie" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0593, - edam:topic_0769, - edam:topic_3318 ; - sc:citation , - "pubmed:31490161" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | a framework for interfacing scientific software for spectroscopic and materials science applications | Corvus, a Python-based package designed for managing workflows of physical simulations that utilize multiple scientific software packages, is presented. Corvus can be run as an executable script with an input file and automatically generated or custom workflows, or interactively, in order to build custom workflows with a set of Corvus-specific tools. Several prototypical examples are presented that link density functional, vibrational and X-ray spectroscopy software packages and are of interest to the synchrotron community. These examples highlight the simplification of complex spectroscopy calculations that were previously limited to expert users, and demonstrate the flexibility of the Corvus infrastructure to tackle more general problems in other research areas" ; - sc:name "Corvus" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31490161" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0102, @@ -17418,7 +13806,7 @@ This website began as an extension of work applying the CorEx machine learning a sc:url "http://cottongen.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -17435,26 +13823,21 @@ This website began as an extension of work applying the CorEx machine learning a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -17478,7 +13861,7 @@ This website began as an extension of work applying the CorEx machine learning a sc:url "https://mines.legumeinfo.org/cowpeamine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, edam:topic_3360, @@ -17499,7 +13882,7 @@ Cox-PASNet is a pathway-based sparse deep neural network for survival analysis"" sc:url "https://github.com/DataX-JieHao/Cox-PASNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -17520,7 +13903,7 @@ $ pip3 install git+https://github.com/liguowang/cpgtools.git""" ; sc:url "https://github.com/liguowang/cpgtools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0780, edam:topic_2885, @@ -17534,26 +13917,8 @@ $ pip3 install git+https://github.com/liguowang/cpgtools.git""" ; sc:name "CpnClassiPhyR" ; sc:url "http://cpnclassiphyr.ca" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0625, - edam:topic_2269, - edam:topic_3168 ; - sc:citation , - "pubmed:31792509" ; - sc:description """Clustering and variable selection evaluation of 13 unsupervised methods for multi-omics data integration. - -Simulation of heterogeneous datasets to compare unsupervised integrative methods. - -Morgane Pierre-Jean, Jean-François Deleuze, Edith Le Floch, Florence Mauger, Clustering and variable selection evaluation of 13 unsupervised methods for multi-omics data integration, Briefings in Bioinformatics, , bbz138, https://doi.org/10.1093/bib/bbz138""" ; - sc:featureList edam:operation_3432, - edam:operation_3435, - edam:operation_3891 ; - sc:name "CrIMMix" ; - sc:url "https://github.com/CNRGH/crimmix" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3673, edam:topic_3676 ; @@ -17573,7 +13938,7 @@ Morgane Pierre-Jean, Jean-François Deleuze, Edith Le Floch, Florence Mauger, Cl biotools:primaryContact "Robert Buels" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation ; @@ -17587,57 +13952,8 @@ Morgane Pierre-Jean, Jean-François Deleuze, Edith Le Floch, Florence Mauger, Cl sc:url "https://github.com/crisflash/crisflash" ; biotools:primaryContact "Margus Lukk" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_3520 ; - sc:citation , - "pubmed:31562766" ; - sc:description "> NAME EQUAL TO (PUB. DIFFERENT) bio.tools/croco | > CORRECT NAME OF TOOL COULD ALSO BE 'CroCo cross-link converter' | a user-centred tool to convert results from crosslinking mass spectrometry experiments | Convert data formats from chemical cross-linking mass spectrometry (XL-MS) | The CroCo cross-link converter — CroCo documentation | CroCo converts multiple data format from cross-linking mass spectrometry software tools to xTable format (in csv format) | The CroCo cross-link converter ¶ | CroCo converts multiple data format from cross-linking mass spectrometry software tools to xTable format (in csv format). It is distributed as graphical programme to be run from an executable and as a Python module to be integrated into workflows" ; - sc:featureList edam:operation_1812, - edam:operation_3631, - edam:operation_3694 ; - sc:license "GPL-3.0" ; - sc:name "CroCo_autogenerated" ; - sc:url "https://cschmidtlab.github.io/CroCo" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602 ; - sc:citation , - "pubmed:31504214" ; - sc:description "> MEDIUM CONFIDENCE! | > NAME (CroP) SIMILAR TO (PUB. DIFFERENT) bio.tools/crop (crop) | > CORRECT NAME OF TOOL COULD ALSO BE 'cdv', 'AVAILABILITY:CroP', 'SUMMARY:CroP' | Coordinated Panel Visualization for Biological Networks Analysis | CroP – Coordinated Panels Visualization | The Computational Design and Visualization Lab focuses on multidisciplinary research bringing together Computer Science, Graphic Design and New Media Art | CroP is a visualization tool aimed at highlighting patterns of data in networks integrated with temporal data and analyzing their behaviors over time through dynamic visualization models in a coordinated multiple views layout" ; - sc:featureList edam:operation_1812, - edam:operation_2497 ; - sc:name "CroP_autogenerated" ; - sc:url "https://cdv.dei.uc.pt/crop/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0084, - edam:topic_0154, - edam:topic_0632, - edam:topic_3390, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6920972", - "pubmed:31726673" ; - sc:description """Prevalence, Distribution, and Phylogeny of Type Two Toxin-Antitoxin Genes Possessed by Cronobacter Species where C. sakazakii Homologs Follow Sequence Type Lineages. - -Multilocus sequence typing (MLST) databases and software. - -This site uses two linked databases powered by the BIGSdb genomics platform. The sequence definition database contains allele sequence and MLST profile definitions whereas the isolate database contains provenance and epidemiological information. Further details about BIGSdb can be found in Jolley & Maiden 2010, BMC Bioinformatics 11:595. - -Recent publications using MLST in Cronobacter research. - -Primers and protocol used for amplification and sequencing [Note: new primer recommendations]. - -This publication made use of the Cronobacter Multi Locus Sequence Typing website (https: pubmlst.org cronobacter ) sited at the University of Oxford (Jolley et al""" ; - sc:featureList edam:operation_0308, - edam:operation_3431, - edam:operation_3840 ; - sc:name "Cronobacter" ; - sc:url "http://www.pubmlst.org/cronobacter" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -17659,7 +13975,7 @@ This publication made use of the Cronobacter Multi Locus Sequence Typing website "Hongwei Zhao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3517 ; @@ -17679,7 +13995,7 @@ This publication made use of the Cronobacter Multi Locus Sequence Typing website biotools:primaryContact "T. Haller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3174, @@ -17696,7 +14012,7 @@ This publication made use of the Cronobacter Multi Locus Sequence Typing website sc:url "https://github.com/Gabaldonlab/crossmapper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0610 ; @@ -17706,17 +14022,8 @@ This publication made use of the Cronobacter Multi Locus Sequence Typing website sc:name "CrowdGO" ; sc:url "https://gitlab.com/mreijnders/CrowdGO" . - a sc:SoftwareApplication ; - sc:citation , - "pmcid:PMC6763123", - "pubmed:31557184" ; - sc:description "A playful way to improve the accuracy of crowdsourced water level class data | If the game is not displayed correctly, please click here" ; - sc:featureList edam:operation_2428 ; - sc:name "CrowdWater game" ; - sc:url "https://crowdwater.ch/en/crowdwater-game/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3305, @@ -17739,7 +14046,7 @@ This publication made use of the Cronobacter Multi Locus Sequence Typing website "Martin Müller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3263 ; sc:citation ; @@ -17755,7 +14062,7 @@ This publication made use of the Cronobacter Multi Locus Sequence Typing website biotools:primaryContact "Morteza Hosseini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3077, edam:topic_3382 ; @@ -17780,7 +14087,7 @@ Import data from EPU or SerialEM""" ; sc:url "http://www.cryoflare.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0611, edam:topic_2828, @@ -17803,7 +14110,7 @@ Import data from EPU or SerialEM""" ; biotools:primaryContact "Thomas White" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3314, edam:topic_3474 ; @@ -17823,19 +14130,8 @@ CyrstaLattE is a software that automates the computation of crystal lattice ener sc:name "CrystaLattE" ; sc:url "https://github.com/carlosborca/CrystaLattE" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3304, - edam:topic_3855 ; - sc:citation , - "pmcid:PMC6707000", - "pubmed:31497307" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'Open Up' | the Mission Statement of the Control of Impulsive Action (Ctrl-ImpAct) Lab on Open Science | The present paper is the mission statement of the Control of Impulsive Action (Ctrl-ImpAct) Lab regarding Open Science. As early-career researchers (ECRs) in the lab, we first state our personal motivation to conduct research based on the principles of Open Science. We then describe how we incorporate four specific Open Science practices (i.e., Open Methodology, Open Data, Open Source, and Open Access) into our scientific workflow. In more detail, we explain how Open Science practices are embedded into the so-called 'co-pilot' system in our lab. The 'co-pilot' researcher is involved in all tasks of the 'pilot' researcher, that is designing a study, double-checking experimental and data analysis scripts, as well as writing the manuscript" ; - sc:featureList edam:operation_3431 ; - sc:name "Ctrl-ImpAct" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31497307" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, @@ -17865,7 +14161,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/klarman-cell-observatory/cumulus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0804, edam:topic_3379, @@ -17878,22 +14174,8 @@ Free document hosting provided by Read the Docs""" ; sc:softwareHelp ; sc:url "https://www.curatopes.com" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0204, - edam:topic_0749, - edam:topic_3656 ; - sc:citation , - "pmcid:PMC6664727", - "pubmed:31357933" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | cleavage under tethered nuclease for conformational capture | BACKGROUND:Deciphering the 3D structure of the genome is essential for elucidating the regulatory mechanisms of gene expression in detail. Existing methods, such as chromosome conformation capture (3C) and Hi-C have enabled the identification of novel aspects of chromatin structure. Further identification of protein-centric chromatin conformation is enabled by coupling the Hi-C procedure with a conventional chromatin immunoprecipitation assay. However, these methods are time-consuming and require independent methods for validation. RESULTS:To simultaneously identify protein-centric chromatin conformation and target protein localization, we have developed Cut-C, a method that combines antibody-mediated cleavage by tethered nuclease with chromosome conformation capture to identify chromatin interactions mediated by a protein of interest" ; - sc:featureList edam:operation_3192, - edam:operation_3222, - edam:operation_3501 ; - sc:name "Cut-C" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31357933" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3315 ; @@ -17915,14 +14197,14 @@ Free document hosting provided by Read the Docs""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2984" ; - sc:name "Pathway or network report" ; - sc:sameAs "http://edamontology.org/data_2984" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2984" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Pathway or network report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0204 ; sc:author ; @@ -17943,7 +14225,7 @@ Free document hosting provided by Read the Docs""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, @@ -17966,7 +14248,7 @@ Free document hosting provided by Read the Docs""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, edam:topic_3474 ; @@ -17985,22 +14267,8 @@ Free document hosting provided by Read the Docs""" ; ; sc:url "https://cytargetlinker.github.io/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0204, - edam:topic_0602, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6707396", - "pubmed:31489175" ; - sc:description "> CORRECT NAME OF TOOL COULD ALSO BE 'CyTargetLinker app update' | A flexible solution for network extension in Cytoscape | **Now released with Cytoscape automation feature** The CyTargetLinker app extends biological networks with regulatory interactions, for example miRNA-target, TF-target or drug-target interactions | CyTargetLinker website and tutorials | CyTargetLinker - Extend your biological networks in Cytoscape" ; - sc:featureList edam:operation_0277, - edam:operation_1781, - edam:operation_3439 ; - sc:name "CyTargetLinker_autogenerated" ; - sc:url "https://cytargetlinker.github.io/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -18020,7 +14288,7 @@ CycloNovo is a new algorithm that identifies spectra generated from cyclopeptide sc:url "https://github.com/bbehsaz/cyclonovo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2269, @@ -18039,7 +14307,7 @@ CycloNovo is a new algorithm that identifies spectra generated from cyclopeptide sc:url "https://github.com/KChen-lab/cyclum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -18054,7 +14322,7 @@ CycloNovo is a new algorithm that identifies spectra generated from cyclopeptide sc:url "https://jxw773.shinyapps.io/Cytogenetic__software/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0654, @@ -18075,7 +14343,7 @@ CycloNovo is a new algorithm that identifies spectra generated from cyclopeptide biotools:primaryContact "Institute for Informatics, Washington University School of Medicine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3934 ; sc:citation , @@ -18093,7 +14361,7 @@ CycloNovo is a new algorithm that identifies spectra generated from cyclopeptide sc:url "http://www.github.com/saeyslab/CytoNorm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382 ; @@ -18111,7 +14379,7 @@ CycloNovo is a new algorithm that identifies spectra generated from cyclopeptide sc:url "https://cbia.fi.muni.cz/simulator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3308, @@ -18132,7 +14400,7 @@ CycloNovo is a new algorithm that identifies spectra generated from cyclopeptide sc:url "https://cytotrace.stanford.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3360, @@ -18148,7 +14416,7 @@ CycloNovo is a new algorithm that identifies spectra generated from cyclopeptide sc:url "https://github.com/hammerlab/cytokit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3382 ; @@ -18168,7 +14436,7 @@ to support next-generation digital pathology bridged to molecular investigations sc:url "https://cytomine.be/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite", "Workflow" ; @@ -18186,39 +14454,8 @@ to support next-generation digital pathology bridged to molecular investigations sc:name "Cytoscape Automation" ; sc:url "http://automation.cytoscape.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_0121, - edam:topic_0128, - edam:topic_0749, - edam:topic_3489 ; - sc:citation , - "pubmed:31710663" ; - sc:description """explorative network building from the BioGateway triple store. - -BioGateway – A Semantic Systems Biology Resource. - -A Semantic Systems Biology Database. - -BioGateway consists of a graph-based database built on Semantic Web principles, a SPARQL endpoint allowing users to query it, and a Cytoscape app which integrates the query functionality directly into your network building workflow. - -To install the App, use the App Manager in Cytoscape (version 3.7.0 or later), click “Install from File…”, and select the downloaded file. - -BioGateway is an initiative that enables a Semantic Systems Biology approach. - -BioGateway is an RDF Graph Database or ‘triple store’, and can be searched by building a query consisting of a set of questions that together specify what you are looking for. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/BioGateway (BIOGATEWAY.EU ; BIOGATEWAY.EU/app). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'BioGateway' (bio.tools/BioGateway), 'BioGateway RDF', 'BioGateway App'""" ; - sc:featureList edam:operation_0224, - edam:operation_0306, - edam:operation_3083 ; - sc:name "Cytoscape BioGateway App" ; - sc:url "http://www.biogateway.eu" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -18235,14 +14472,14 @@ BioGateway is an RDF Graph Database or ‘triple store’, and can be searched b a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3308 ; @@ -18260,7 +14497,7 @@ BioGateway is an RDF Graph Database or ‘triple store’, and can be searched b sc:url "https://www.sanger.ac.uk/science/tools/discrete-distributional-differential-expression-d3e" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_2259, @@ -18281,51 +14518,8 @@ D3GRN is a Data Driven Dynamic network construction method to infer Gene Regulat sc:name "D3GRN" ; sc:url "https://github.com/chenxofhit/D3GRN" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_0659, - edam:topic_3168, - edam:topic_3174, - edam:topic_3697 ; - sc:citation , - "pubmed:31680682" ; - sc:description """Microbiota Analysis Using Two-step PCR and Next-generation 16S rRNA Gene Sequencing. - -Here we walk through version 1.12 of the DADA2 pipeline on a small multi-sample dataset. Our starting point is a set of Illumina-sequenced paired-end fastq files that have been split (or “demultiplexed”) by sample and from which the barcodes/adapters have already been removed. The end product is an amplicon sequence variant (ASV) table, a higher-resolution analogue of the traditional OTU table, which records the number of times each exact amplicon sequence variant was observed in each sample. We also assign taxonomy to the output sequences, and demonstrate how the data can be imported into the popular phyloseq R package for the analysis of microbiome data. - -||| NAME (DADA2) SIMILAR TO (PUB. DIFFERENT) bio.tools/dada2 (dada2). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Denoising Algorithm-2 DADA2'""" ; - sc:featureList edam:operation_3200, - edam:operation_3359, - edam:operation_3460 ; - sc:name "DADA2_autogenerated" ; - sc:url "https://benjjneb.github.io/dada2/tutorial.html" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3263, - edam:topic_3303, - edam:topic_3489 ; - sc:citation , - "pmcid:PMC6892452", - "pubmed:31800037" ; - sc:description """A Data Information System for accountability under the General Data Protection Regulation. - -Data Information System (DAISY) is a data bookkeeping application designed to help Biomedical Research institutions with their GDPR compliance. - -In addition to loading of initial data, DAISY database can be populated by importing Project and Dataset records from JSON files. The commands for import are given below:. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/Data_Information_System_DAISY (GITHUB.COM/elixir-luxembourg/daisy)""" ; - sc:featureList edam:operation_0224, - edam:operation_3096, - edam:operation_3283 ; - sc:license "AGPL-3.0" ; - sc:name "DAISY" ; - sc:url "https://github.com/elixir-luxembourg/daisy" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, @@ -18344,7 +14538,7 @@ In addition to loading of initial data, DAISY database can be populated by impor sc:url "https://github.com/markrobinsonuzh/DAMEfinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, edam:topic_3301, @@ -18366,21 +14560,8 @@ DAMIAN provides capabilities to detect known and novel pathogens in RNA and DNA sc:name "DAMIAN" ; sc:url "https://sourceforge.net/projects/damian-pd" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3170, - edam:topic_3295, - edam:topic_3308 ; - sc:citation , - "pubmed:31548708" ; - sc:description "> HOMEPAGE MISSING! | an antibody-free method for global m6A detection | N6-methyladenosine (m6A) is a widespread RNA modification that influences nearly every aspect of the messenger RNA lifecycle. Our understanding of m6A has been facilitated by the development of global m6A mapping methods, which use antibodies to immunoprecipitate methylated RNA. However, these methods have several limitations, including high input RNA requirements and cross-reactivity to other RNA modifications. Here, we present DART-seq (deamination adjacent to RNA modification targets), an antibody-free method for detecting m6A sites. In DART-seq, the cytidine deaminase APOBEC1 is fused to the m6A-binding YTH domain. APOBEC1-YTH expression in cells induces C-to-U deamination at sites adjacent to m6A residues, which are detected using standard RNA-seq. DART-seq identifies thousands of m6A sites in cells from as little as 10 ng of total RNA and can detect m6A accumulation in cells over time" ; - sc:featureList edam:operation_2495, - edam:operation_3096, - edam:operation_3258 ; - sc:name "DART-seq" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31548708" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation , @@ -18400,22 +14581,8 @@ DAMIAN provides capabilities to detect known and novel pathogens in RNA and DNA sc:url "https://github.com/Dowell-Lab/DAStk" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3263, - edam:topic_3303 ; - sc:citation , - "pmcid:PMC6835476", - "pubmed:31647475" ; - sc:description """Building a Secure Biomedical Data Sharing Decentralized App (DApp). - -Decentralized apps (DApps) are computer programs that run on a distributed computing system, such as a blockchain network. Unlike the client-server architecture that powers most internet apps, DApps that are integrated with a blockchain network can execute app logic that is guaranteed to be transparent, verifiable, and immutable. This new paradigm has a number of unique properties that are attractive to the biomedical and health care communities. However, instructional resources are scarcely available for biomedical software developers to begin building DApps on a blockchain. Such apps require new ways of thinking about how to build, maintain, and deploy software. This tutorial serves as a complete working prototype of a DApp, motivated by a real use case in biomedical research requiring data privacy. - -||| HOMEPAGE MISSING!""" ; - sc:name "DApp" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31647475" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3474, edam:topic_3810 ; @@ -18425,7 +14592,7 @@ Decentralized apps (DApps) are computer programs that run on a distributed compu sc:url "https://doi.org/10.20944/PREPRINTS201907.0158.V1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3474, @@ -18442,31 +14609,16 @@ Decentralized apps (DApps) are computer programs that run on a distributed compu sc:url "https://panoramaweb.org/DBTL-ML-for-dodencanol-production-in-e-coli.url" ; biotools:primaryContact "Harry R. Beller" . - a sc:SoftwareApplication ; - sc:citation "pmcid:PMC6818515", - "pubmed:31662706" ; - sc:description """A New Algorithm and Theory for Penalized Regression-based Clustering. - -Clustering is unsupervised and exploratory in nature. Yet, it can be performed through penalized regression with grouping pursuit, as demonstrated in Pan et al. (2013). In this paper, we develop a more efficient algorithm for scalable computation and a new theory of clustering consistency for the method. This algorithm, called DC-ADMM, combines difference of convex (DC) programming with the alternating direction method of multipliers (ADMM). This algorithm is shown to be more computationally efficient than the quadratic penalty based algorithm of Pan et al. (2013) because of the former's closed-form updating formulas. Numerically, we compare the DC-ADMM algorithm with the quadratic penalty algorithm to demonstrate its utility and scalability. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'prclust'""" ; - sc:featureList edam:operation_3432, - edam:operation_3659 ; - sc:name "DC-ADMM" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31662706" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3308 ; @@ -18485,17 +14637,8 @@ Clustering is unsupervised and exploratory in nature. Yet, it can be performed t sc:softwareHelp ; sc:url "https://github.com/theislab/dca" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0593, - edam:topic_3474 ; - sc:citation , - "pubmed:31502970" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'data computation', 'deep cascade model', 'deep-layered', 'Deep Cascade Model based Face Recognition' | When Deep-layered Learning Meets Small Data | Author : Lei Zhang, Ji Liu, Bob Zhang, David Zhang, and Ce Zhu | This package contains codes for the two submodels DCM(S) and DCM(N) | Published in IEEE Transactions on Image Processing" ; - sc:name "DCM" ; - sc:url "https://github.com/liuji93/DCM" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0780, @@ -18515,7 +14658,7 @@ Clustering is unsupervised and exploratory in nature. Yet, it can be performed t biotools:primaryContact "R. J. Edwards" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal" ; sc:applicationSubCategory edam:topic_0154, @@ -18536,7 +14679,7 @@ Clustering is unsupervised and exploratory in nature. Yet, it can be performed t sc:url "https://tylii.github.io/ddap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0602, @@ -18550,26 +14693,8 @@ Clustering is unsupervised and exploratory in nature. Yet, it can be performed t sc:name "DDI" ; sc:url "http://way2drug.com/ddi/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0209, - edam:topic_3373 ; - sc:citation , - "pmcid:PMC6929327", - "pubmed:31870276" ; - sc:description """a positive-unlabeled learning method for large-scale prediction of drug-drug interactions. - -BACKGROUND:Drug-drug interactions (DDIs) are a major concern in patients' medication. It's unfeasible to identify all potential DDIs using experimental methods which are time-consuming and expensive. Computational methods provide an effective strategy, however, facing challenges due to the lack of experimentally verified negative samples. RESULTS:To address this problem, we propose a novel positive-unlabeled learning method named DDI-PULearn for large-scale drug-drug-interaction predictions. DDI-PULearn first generates seeds of reliable negatives via OCSVM (one-class support vector machine) under a high-recall constraint and via the cosine-similarity based KNN (k-nearest neighbors) as well. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0417, - edam:operation_2238, - edam:operation_3891 ; - sc:name "DDI-PULearn" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31870276" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -18583,30 +14708,8 @@ BACKGROUND:Drug-drug interactions (DDIs) are a major concern in patients' medica sc:name "Data dependent-independent acquisition proteomics (DDIA)" ; sc:url "https://zenodo.org/deposit/3466997" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0202, - edam:topic_0625, - edam:topic_3373, - edam:topic_3375 ; - sc:citation , - "pmcid:PMC6929542", - "pubmed:31874609" ; - sc:description """predicting drug-drug interactions based on Gaussian interaction profile kernels. - -BACKGROUND:A drug-drug interaction (DDI) is defined as a drug effect modified by another drug, which is very common in treating complex diseases such as cancer. Many studies have evidenced that some DDIs could be an increase or a decrease of the drug effect. However, the adverse DDIs maybe result in severe morbidity and even morality of patients, which also cause some drugs to withdraw from the market. As the multi-drug treatment becomes more and more common, identifying the potential DDIs has become the key issue in drug development and disease treatment. However, traditional biological experimental methods, including in vitro and vivo, are very time-consuming and expensive to validate new DDIs. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'DDRGIP', 'DDIs'""" ; - sc:featureList edam:operation_2428, - edam:operation_2492, - edam:operation_3439 ; - sc:name "DDIGIP" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31874609" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3375, edam:topic_3399, @@ -18620,7 +14723,7 @@ BACKGROUND:A drug-drug interaction (DDI) is defined as a drug effect modified by sc:url "https://github.com/cran/DDPGPSurv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -18638,7 +14741,7 @@ BACKGROUND:A drug-drug interaction (DDI) is defined as a drug effect modified by sc:url "https://github.com/idellyzhang/DDR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2275, @@ -18658,7 +14761,7 @@ BACKGROUND:A drug-drug interaction (DDI) is defined as a drug effect modified by biotools:primaryContact "Vittorio Limongelli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3382, edam:topic_3474 ; @@ -18672,40 +14775,8 @@ BACKGROUND:A drug-drug interaction (DDI) is defined as a drug effect modified by sc:name "DDVFA" ; sc:url "http://github.com/ACIL-Group/DVFA" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_3306, - edam:topic_3316, - edam:topic_3520, - edam:topic_3676 ; - sc:citation , - , - "pmcid:PMC6787990", - "pmcid:PMC6885705", - "pubmed:31594786", - "pubmed:31604420" ; - sc:description """Comprehensive, Automatic Post-processing Program for HDX-MS Data. - -scalable XHMM exome copy-number variant calling with ADAM and Apache Spark. - -DECA: Deuterium Exchange Correction and Analysis. - -Distributed exome CNV analyzer. Apache 2 licensed. - -DECA: Distributed Exome CNV Analyzer. - -Linderman MD, Chia D, Wallace F, Nothaft FA. DECA: scalable XHMM exome copy-number variant calling with ADAM and Apache Spark. BMC Bioinformatics. 2019;20:493. doi:10.1186/s12859-019-3108-7. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/deca""" ; - sc:featureList edam:operation_2476, - edam:operation_3227, - edam:operation_3629, - edam:operation_3891 ; - sc:name "DECA_autogenerated" ; - sc:url "http://github.com/komiveslab/DECA" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3325, @@ -18729,7 +14800,7 @@ Linderman MD, Chia D, Wallace F, Nothaft FA. DECA: scalable XHMM exome copy-numb biotools:primaryContact "Ganesh Swaminathan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3474 ; @@ -18742,7 +14813,7 @@ Linderman MD, Chia D, Wallace F, Nothaft FA. DECA: scalable XHMM exome copy-numb sc:url "https://github.com/ba-lab/DEEPCON" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0199, edam:topic_0749, @@ -18759,7 +14830,7 @@ data and material In this folder, we include all the material and data used in t sc:url "https://github.com/1991Troy/DEEPSEN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -18781,7 +14852,7 @@ data and material In this folder, we include all the material and data used in t "Volkan Atalay" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3293, edam:topic_3837 ; @@ -18801,7 +14872,7 @@ data and material In this folder, we include all the material and data used in t biotools:primaryContact "Bioinformatics, Molecular Microbiology and Infection Unit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_2258, @@ -18822,7 +14893,7 @@ data and material In this folder, we include all the material and data used in t sc:url "https://github.com/denoptim-project/DENOPTIM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -18840,10 +14911,9 @@ data and material In this folder, we include all the material and data used in t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:author "Daniele Raimondi", "Ibrahim Tanyalcin" ; @@ -18856,22 +14926,22 @@ data and material In this folder, we include all the material and data used in t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3768" ; - sc:name "Clustered expression profiles" ; - sc:sameAs "http://edamontology.org/data_3768" ], + sc:additionalType "http://edamontology.org/data_3768" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Clustered expression profiles" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3308 ; sc:author , @@ -18892,7 +14962,7 @@ data and material In this folder, we include all the material and data used in t biotools:primaryContact "Eric Charpentier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3334, @@ -18912,7 +14982,7 @@ DEPICTER : DisorderEd PredictIon CenTER""" ; sc:url "http://biomine.cs.vcu.edu/servers/DEPICTER/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -18930,7 +15000,7 @@ DEPICTER : DisorderEd PredictIon CenTER""" ; sc:url "http://depod.bioss.uni-freiburg.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3322, @@ -18949,25 +15019,8 @@ DEPICTER : DisorderEd PredictIon CenTER""" ; sc:url "https://depot.tbportals.niaid.nih.gov" ; biotools:primaryContact "Andrei Gabrielian" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0634, - edam:topic_0820, - edam:topic_3305, - edam:topic_3517 ; - sc:citation , - "pmcid:PMC6836538", - "pubmed:31694669" ; - sc:description """estimating driver tissues by selective expression of genes associated with complex diseases or traits. - -The driver tissues or cell types in which susceptibility genes initiate diseases remain elusive. We develop a unified framework to detect the causal tissues of complex diseases or traits according to selective expression of disease-associated genes in genome-wide association studies (GWASs). This framework consists of three components which run iteratively to produce a converged prioritization list of driver tissues. Additionally, this framework also outputs a list of prioritized genes as a byproduct. We apply the framework to six representative complex diseases or traits with GWAS summary statistics, which leads to the estimation of the lung as an associated tissue of rheumatoid arthritis""" ; - sc:featureList edam:operation_2495, - edam:operation_3659 ; - sc:name "DESE" ; - sc:url "http://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=pubmed&term=“DiseaseNames" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal", "Web application" ; @@ -18985,7 +15038,7 @@ The driver tissues or cell types in which susceptibility genes initiate diseases sc:url "https://bmbl.bmi.osumc.edu/DESSO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0659, @@ -19009,29 +15062,12 @@ The driver tissues or cell types in which susceptibility genes initiate diseases sc:url "http://ibis.helmholtz-muenchen.de/deus/" ; biotools:primaryContact "Tim Jeske" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_0749, - edam:topic_3063, - edam:topic_3068 ; - sc:citation , - "pubmed:31842242" ; - sc:description """Development of an Online Tool to Support Systematic Evaluation of Intervention Projects in Prevention and Health Promotion]. - -OBJECTIVES:To date, knowledge about the effects and implementation quality of disease prevention and health promotion projects in Germany is limited. Only a few structured evaluation systems exist that can be easily used and which include features for evaluating research and practice projects. The aim of the current project was to develop and carry out a pilot study of an online evaluation tool that enables structured self-evaluation of projects in disease prevention and health promotion practice and contributes to an improved documentation and cyclical development of projects. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'prevention' (bio.tools/prevention), 'disease', 'RE-AIM' (bio.tools/RE-AIM), 'practice-oriented'""" ; - sc:name "DEVASYS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31842242" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3496" ; - sc:name "RNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3496" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3496" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "RNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -19050,31 +15086,8 @@ DEWE offers built-in, easy-to-configure workflows that facilitate the execution sc:softwareVersion "1.2.0" ; sc:url "https://www.sing-group.org/dewe/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_2640, - edam:topic_3360, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6913280", - "pubmed:31871878" ; - sc:description """A Circulating miRNA-Based Scoring System Established by WGCNA to Predict Colon Cancer. - -Introduction:Circulation microRNAs (miRNAs) perform as potential diagnostic biomarkers of many kinds of cancers. This study is aimed at identifying circulation miRNAs as diagnostic biomarkers in colon cancer. Methods:We conducted a weighted gene coexpression network analysis (WGCNA) in miRNAs to find out the expression pattern among circulation miRNAs by using a "WGCNA" package in R. Correlation analysis was performed to find cancer-related modules. Differentially expressed miRNAs (DEmiRs) in colon cancer were identified by a "limma" package in R. Hub gene analysis was conducted for these DEmiRs in the cancer-related modules by the "closeness" method in cytoscape software. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'WGCNA' (bio.tools/wgcna)""" ; - sc:featureList edam:operation_0463, - edam:operation_3463, - edam:operation_3659, - edam:operation_3766, - edam:operation_3792 ; - sc:name "DEmiRs" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31871878" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308 ; @@ -19095,48 +15108,8 @@ Introduction:Circulation microRNAs (miRNAs) perform as potential diagnostic biom sc:url "https://cran.r-project.org/package=DEVis" ; biotools:primaryContact "Adam Price" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3399 ; - sc:citation , - "pubmed:31398302" ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'hearing bilingual learners', 'DHH hearing bilingual', 'bilingual learners', 'DHH learners' | Evidence-Based Interventions for Learners Who Are Deaf and/or Multilingual | Purpose Many educators and speech-language pathologists have difficulty providing effective interventions to the growing population of d Deaf and hard-of-hearing (DHH) learners who use more than 1 language. The purpose of this review article was to identify evidence-based interventions for speech, language, and literacy used with DHH multilingual learners (DMLs), monolingual DHH learners, and hearing bilingual learners without hearing loss. Interventions used with these groups can inform the practice of professionals providing services to DMLs. Method This review article considered speech, language, and literacy interventions used with DHH and hearing bilingual learners from birth to 21 years of age" ; - sc:name "DHH hearing bilingual learners" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31398302" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0593, - edam:topic_0634, - edam:topic_0749, - edam:topic_3384, - edam:topic_3444 ; - sc:citation ; - sc:description """Diffusion Histology Imaging to Improve Lesion Detection and Classification in Multiple Sclerosis. - -Background: Diagnosing MS through magnetic resonance imaging (MRI) requires extensive clinical experience and tedious work. Furthermore, MRI-indicated MS lesion locations rarely align with the patients' symptoms and often contradict with pathology studies. Our lab has developed and modified a novel diffusion basis spectrum imaging (DBSI) technique to address the shortcomings of MRI-based MS diagnoses. Although primary DBSI metrics have been demonstrated to be associated with axonal injury loss, demyelination and inflammation, a more detailed analysis using multiple DBSI-structural metrics to improve the accuracy of MS lesion detection and differentiation is still needed. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'DBSI'""" ; - sc:featureList edam:operation_3359, - edam:operation_3435, - edam:operation_3443 ; - sc:name "DHI" ; - sc:url "https://doi.org/10.1101/19009126" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0154, - edam:topic_3520 ; - sc:citation "pmcid:PMC6698785" ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'PASEF', 'diaPASEF', 'Mobi-DIK' | Our goal is to develop high throughput method for sampling peptides with a mass spectrometer that can be used as a quantitative measure of the phenotype. To do this we would like a tandem mass spectrometry (MS MS) method that can comprehensively sample all peptides in a sample continuously throughout the chromatographic elution. MS MS acquired using data independent acquisition (DIA) offers significant advantages in terms of selectivity, sensitivity, and dynamic range over a single stage of mass analysis. Quantitative analysis using MS MS has significant technical advantages over MS1 analysis and we are just now in a situation where we can get high selectivity (<4 m z) across a majority of the mass range (i.e. 400 1000 m z) using a rapid duty cycle (<3 sec). That said, this does not mean that there are not substantial challenges to overcome" ; - sc:featureList edam:operation_0417, - edam:operation_3639, - edam:operation_3755 ; - sc:name "DIA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6698785/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0780, @@ -19163,7 +15136,7 @@ Background: Diagnosing MS through magnetic resonance imaging (MRI) requires exte "Zeno Apostolides" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Library" ; @@ -19188,54 +15161,30 @@ None required (for .raw, .mzML and .dia processing). Two executables are provide a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3747" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -19260,56 +15209,8 @@ None required (for .raw, .mzML and .dia processing). Two executables are provide sc:url "https://sourceforge.net/projects/diaumpire/" ; biotools:primaryContact "Chih-Chiang Tsou" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3379 ; - sc:citation , - "pmcid:PMC6799722" ; - sc:description """A Digital Platform for Workforce Development. - -OBJECTIVES SPECIFIC AIMS: The DIAMOND project encourages study team workforce development through the creation of a digital learning space that brings together resources from across the CTSA consortium. This allows for widespread access to and dissemination of training and assessment materials. DIAMOND also includes access to an ePortfolio that encourages CRPs to define career goals and document professional skills and training. METHODS STUDY POPULATION: Four CTSA institutions (the University of Michigan, the Ohio State University, University of Rochester, and Tufts CTSI) collaborated to develop and implement the DIAMOND portal. The platform is structured around eight competency domains, making it easy for users to search for research training and assessment materials. - -||| HOMEPAGE MISSING!. - -||| NAME (DIAMOND) SIMILAR TO (PUB. DIFFERENT) bio.tools/diamond (Diamond). - -||| CORRECT NAME OF TOOL COULD ALSO BE '3143 DIAMOND', 'ePortfolio'""" ; - sc:name "DIAMOND_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6799722/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0605, - edam:topic_3360, - edam:topic_3384, - edam:topic_3444, - edam:topic_3452 ; - sc:citation , - "pmcid:PMC4888317", - "pubmed:27257542" ; - sc:description """A standards based approach to sharing of clinical data and structured PET/CT analysis results in head and neck cancer research. - -Scripts used for conversion of the data for the PET/CT quantitative imaging biomarker development project by the Iowa site of NCI QIN. - -NOTE: these scripts were used for conversion of the Iowa QIN-HEADNECK derived data. - -Documentation/Nightly/Modules/DICOMPETSUVPlugin. - -They are not maintained, and instead the general purpose functionality is being. - -migrated into the Reporting repository https://github.com/fedorov/Reporting. - -Pieper S, Kikinis R, Buatti J, Beichel RR. (2016) DICOM for quantitative imaging. - -Acknowledgments: The UIowa QIN PET DICOM Extension was funded in part by Quantitative Imaging to Assess Response in Cancer Therapy Trials NIH grant U01-CA140206 and Quantitative Image Informatics for Cancer Research (QIICR) NIH grant U24 CA180918""" ; - sc:featureList edam:operation_1812, - edam:operation_3431, - edam:operation_3443, - edam:operation_3799 ; - sc:name "DICOM" ; - sc:softwareHelp ; - sc:url "https://github.com/QIICR/Iowa2DICOM" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3170, @@ -19328,7 +15229,7 @@ Acknowledgments: The UIowa QIN PET DICOM Extension was funded in part by Quantit sc:url "https://github.com/marcalva/diem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3320, edam:topic_3474, edam:topic_3512 ; @@ -19343,33 +15244,8 @@ Acknowledgments: The UIowa QIN PET DICOM Extension was funded in part by Quantit sc:name "DIFFUSE" ; sc:url "https://github.com/haochenucr/DIFFUSE" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3324, - edam:topic_3379, - edam:topic_3403 ; - sc:citation , - "pubmed:31786964" ; - sc:description """Drug-Induced Liver Injury (DILI) With Micafungin. - -Background: Micafungin is increasingly used in the treatment and prevention of candidiasis in hospitalized patients. Limited data are available from which to assess the risk of drug-induced liver injury (DILI) with micafungin. No studies, to date, have applied a standardized causality assessment method to the study of micafungin-associated DILI. Objective: This study aimed to identify the frequency and clinical pattern of DILI in micafungin-treated patients as determined using 2 standardized causality assessment algorithms. Methods: A retrospective analysis was conducted of micafungin-treated patients at a single center between May 15, 2017, and May 15, 2018. DILI was defined on the basis of liver test elevations and the presence of associated signs and symptoms. The Roussel UClaf Causality Assessment Method (RUCAM) and the Naranjo algorithm were applied to each case. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3435 ; - sc:name "DILI" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31786964" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_3399, - edam:topic_3419 ; - sc:citation , - "pubmed:31450249" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'OBJECTIVES:Since', 'RESULTS:At' | Can Routine Data be used to Determine the Target Population of Patients with Type 2 Diabetes in Early Benefit Assessments in Germany? | Bestellanfrage für die ICF-Buchausgabe | Informationssystem Versorgungsdaten | Medizinprodukte-Informationssystem" ; - sc:name "DIMDI" ; - sc:url "https://www.dimdi.de/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0625, @@ -19386,7 +15262,7 @@ Is a Shiny app.""" ; sc:url "https://bitbucket.org/systemsimmunology/dime" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0153, @@ -19406,7 +15282,7 @@ Is a Shiny app.""" ; sc:url "http://lmc.uab.es/dimerbow/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_3384, @@ -19422,7 +15298,7 @@ Is a Shiny app.""" ; sc:url "http://dipy.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0099 ; @@ -19440,7 +15316,7 @@ It is widely believed that tertiary nucleotide-nucleotide interactions are essen sc:url "https://zhaolab.com.cn/DIRECT/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3174, @@ -19453,30 +15329,16 @@ It is widely believed that tertiary nucleotide-nucleotide interactions are essen sc:name "Design of an Identifiable Synthetic Community of Microbes (DISCo-microbe)" ; sc:url "https://github.com/dlcarper/DISCo-microbe" . - a sc:SoftwareApplication ; - sc:citation ; - sc:description """Weather events identification in social media streams. - -Severe weather impact identification and monitoring through social media data is a good challenge for data science. In last years we assisted to an increase of natural disasters, also due to climate change. Many works showed that during such events people tend to share specific messages by of mean of social media platforms, especially Twitter. Not only they contribute to"situational" awareness also improving the dissemination of information during emergency but can be used to assess social impact of crisis events. We present in this work preliminary findings concerning how temporal distribution of weather related messages may help the identification of severe events that impacted a community. - -||| HOMEPAGE BROKEN!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'DISIT-Twitter Vigilance', 'weather', 'Weather events identification social media streams', 'parallel-wise'""" ; - sc:featureList edam:operation_0337, - edam:operation_3280 ; - sc:name "DISIT-Twitter" ; - sc:url "http://www.disit.org/tv/" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3242" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3242" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3325 ; @@ -19501,7 +15363,7 @@ Severe weather impact identification and monitoring through social media data is biotools:primaryContact "Livia Perfetto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0123, @@ -19517,7 +15379,7 @@ Severe weather impact identification and monitoring through social media data is sc:url "http://biomine.cs.vcu.edu/servers/DISOselect/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3168, @@ -19533,28 +15395,8 @@ Severe weather impact identification and monitoring through social media data is sc:name "Distribution-based modeling of Sequence space time dynamics (DISSEQT)" ; sc:url "https://github.com/rasmushenningsson/DISSEQT.jl" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3489, - edam:topic_3810, - edam:topic_3855 ; - sc:citation , - "pmcid:PMC6880016", - "pubmed:31788512" ; - sc:description """An open dataset about georeferenced harmonized national agricultural censuses and surveys of seven mediterranean countries. - -Divercrop – The DIVERCROP project aims to highlight interactions between current dynamics of the Mediterranean agricultural practices, species diversity and local food systems. - -Index of /gn_plateau_ressources/divercrop. - -The DIVERCROP project aims to highlights interactions between current dynamics of the Mediterranean agricultural practices, species diversity and local food systems at multiple spatial scales. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/phylosift (WORDPRESS.COM), bio.tools/WATCLUST (WORDPRESS.COM), bio.tools/PinMol (WORDPRESS.COM), bio.tools/imdev (WORDPRESS.COM), bio.tools/graphdtl (WORDPRESS.COM)""" ; - sc:featureList edam:operation_3359 ; - sc:name "DIVERCROP" ; - sc:url "https://divercropblog.wordpress.com/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169 ; @@ -19570,7 +15412,7 @@ The DIVERCROP project aims to highlights interactions between current dynamics o sc:url "https://github.com/Mohammad-Vahed/DIpartite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3050, edam:topic_3474 ; @@ -19581,7 +15423,7 @@ The DIVERCROP project aims to highlights interactions between current dynamics o sc:url "https://github.com/naturalis/trait-geo-diverse-dl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -19598,7 +15440,7 @@ The DIVERCROP project aims to highlights interactions between current dynamics o sc:url "https://github.com/sysu-yanglab/DLIGAND2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229 ; sc:citation , @@ -19612,7 +15454,7 @@ Cell shapes and connectivities evolve over time as the colony changes shape or e sc:url "https://github.com/AllenCellModeling/DLITE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -19629,28 +15471,8 @@ Cell shapes and connectivities evolve over time as the colony changes shape or e sc:operatingSystem "Linux" ; sc:url "https://github.com/GuoliangLi-HZAU/DLO-Hi-C-Tool" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0084, - edam:topic_0625, - edam:topic_0654, - edam:topic_2229, - edam:topic_3673 ; - sc:citation , - "pmcid:PMC6912164", - "pubmed:31730858" ; - sc:description """Clonal Decomposition and DNA Replication States Defined by Scaled Single-Cell Genome Sequencing. - -Collection of Standard Operating Procedures (SOPs) for DLP+""" ; - sc:featureList edam:operation_0487, - edam:operation_3196, - edam:operation_3435, - edam:operation_3436, - edam:operation_3629 ; - sc:name "DLP+" ; - sc:url "https://github.com/shahcompbio/dlpplus_protocols" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0736, edam:topic_3474 ; @@ -19665,22 +15487,8 @@ Collection of Standard Operating Procedures (SOPs) for DLP+""" ; sc:name "DMPfold" ; sc:url "https://github.com/psipred/DMPfold" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0654, - edam:topic_3295, - edam:topic_3399 ; - sc:citation , - "pmcid:PMC6708158", - "pubmed:31443728" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'non-blood' | Improved precision of epigenetic clock estimates across tissues and its implication for biological ageing | A chronological age predictor based on DNA methylation | input_file: a R object file which contains the DNA methylation information for individuals (N * M matrix). N is the number of individuals and M is the number of CpG sites. Beta value is used as DNA methylation measurement" ; - sc:featureList edam:operation_3196, - edam:operation_3501, - edam:operation_3891 ; - sc:name "DNA" ; - sc:url "https://github.com/qzhang314/DNAm-based-age-predictor" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0196, @@ -19704,7 +15512,7 @@ Users looking to implement the DNA-BOT workflow are encouraged to consult the in sc:url "https://github.com/BASIC-DNA-ASSEMBLY/dnabot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -19727,7 +15535,7 @@ Users looking to implement the DNA-BOT workflow are encouraged to consult the in biotools:primaryContact "Céline Trébeau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Web application" ; @@ -19748,7 +15556,7 @@ DNA Chisel is a Python library for optimizing DNA sequences with respect to a se sc:url "https://edinburgh-genome-foundry.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3169, @@ -19761,31 +15569,8 @@ DNA Chisel is a Python library for optimizing DNA sequences with respect to a se sc:name "DNA Rchitect" ; sc:url "http://shiny.immgen.org/DNARchitect/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0632, - edam:topic_0654, - edam:topic_3168 ; - sc:citation , - "pubmed:31784718" ; - sc:description """Reading and writing digital data in DNA. - -Error correction scheme for storing information on DNA using Reed Solomon codes. - -For the inner code we decide on a symbol size mi of 6 bit, for the outer code the symbol size mo is 14 bit. These values reflect considerations on accessible DNA sequence lengths and optimal code length. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/DNA. - -||| CORRECT NAME OF TOOL COULD ALSO BE 're-obtaining', 'digital', 'error-correcting', 'decodes'""" ; - sc:featureList edam:operation_0308, - edam:operation_0371, - edam:operation_2422, - edam:operation_2520 ; - sc:license "Apache-2.0" ; - sc:name "DNA_autogenerated" ; - sc:url "https://github.com/reinhardh/dna_rs_coding" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -19801,7 +15586,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "https://github.com/qzhang314/DNAm-based-age-predictor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Workflow" ; @@ -19833,7 +15618,7 @@ DNAproDB is a database, structure processing pipeline and web-based visualizatio sc:url "https://dnaprodb.usc.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3316, edam:topic_3673, @@ -19857,30 +15642,8 @@ DNAproDB is a database, structure processing pipeline and web-based visualizatio sc:url "https://github.com/KHP-Informatics/DNAscan" ; biotools:primaryContact "KCL IoPPN: NIHR BRC-MH Bioinformatics Group" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2885, - edam:topic_3170, - edam:topic_3173, - edam:topic_3673, - edam:topic_3676 ; - sc:citation ; - sc:description """Advanced Whole Genome Sequencing Using a Complete PCR-free Massively Parallel Sequencing (MPS) Workflow. - -High-speed,high flexibility and ultra-high throughput sequencer-MGI. - -DNBSEQ-T7 can generate 1-6Tb of high quality data per day, for a wide range of applications including Whole Genome Sequencing, Deep Exome Sequencing, Epigenome Sequencing, Transcriptome Sequencing, and targeted panel projects. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'MGI', 'PCR-free', 'PCR-free WGS', 'PCR-free DNBSEQ'""" ; - sc:featureList edam:operation_0484, - edam:operation_3192, - edam:operation_3196, - edam:operation_3211, - edam:operation_3227 ; - sc:name "DNBSEQ" ; - sc:url "https://en.mgitech.cn/product/detail/DNBSEQ-T7.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3174, @@ -19896,7 +15659,7 @@ DNBSEQ-T7 can generate 1-6Tb of high quality data per day, for a wide range of a sc:url "http://sysbio.rnet.missouri.edu/dncon2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, edam:topic_0602, @@ -19915,7 +15678,7 @@ Using Local Moran's I for detection of differential network local consistency""" sc:url "https://cran.r-project.org/web/packages/DNLC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2640, @@ -19933,22 +15696,8 @@ DNA methylation is strongly related to cancer, currently, no resource integrativ sc:name "DNA Methylation Interactive Visualization Database (DNMIVD)" ; sc:url "http://www.unimd.org/dnmivd/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0166, - edam:topic_0209, - edam:topic_3474 ; - sc:citation , - "pubmed:31553186" ; - sc:description "> CORRECT NAME OF TOOL COULD ALSO BE 'ESP' (bio.tools/esp) | Practical High-Quality Electrostatic Potential Surfaces for Drug Discovery Using a Graph-Convolutional Deep Neural Network | A Graph-Convolutional Deep Neural Network for predicting electrostatic potential surfaces | For generating ligand PQR files, a graph convolutional deep neural network (DNN) model, trained on ESP surfaces derived using DFT calculations for ~100,000 molecules, is used. For proteins, parametrized charges for amino acids are used, which are fully compatible with the ligand ESP surfaces generated using the DNN model" ; - sc:featureList edam:operation_0387, - edam:operation_0394, - edam:operation_0480 ; - sc:license "Apache-2.0" ; - sc:name "DNN" ; - sc:url "https://github.com/AstexUK/ESP_DNN" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0160, @@ -19967,7 +15716,7 @@ DNA methylation is strongly related to cancer, currently, no resource integrativ biotools:primaryContact "Jianlin Cheng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -19991,14 +15740,16 @@ DNA methylation is strongly related to cancer, currently, no resource integrativ biotools:primaryContact "Nikolai Slavov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0736, edam:topic_3308 ; sc:citation , + , "pmcid:PMC6602495", + "pubmed:27153665", "pubmed:31076763" ; sc:description "Domain-based transcriptome and proteome quality assessment." ; sc:featureList edam:operation_3218 ; @@ -20012,24 +15763,8 @@ DNA methylation is strongly related to cancer, currently, no resource integrativ sc:url "https://domainworld-services.uni-muenster.de/dogma/" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3263, - edam:topic_3520 ; - sc:citation , - "pmcid:PMC6777511", - "pubmed:31632229" ; - sc:description """ensuring web page integrity against malicious browser extensions. - -In this paper, we address an unsolved problem in the real world: how to ensure the integrity of the web content in a browser in the presence of malicious browser extensions. The problem of exposing confidential user credentials to malicious extensions has been widely understood, which has prompted major banks to deploy two-factor authentication. However, the importance of the "integrity" of the web content has received little attention. We implement two attacks on real-world online banking websites and show that ignoring the "integrity" of the web content can fundamentally defeat two-factor solutions. To address this problem, we propose a cryptographic protocol called DOMtegrity to ensure the end-to-end integrity of the DOM structure of a web page from delivering at a web server to the rendering of the page in the user's browser. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0337, - edam:operation_3435 ; - sc:name "DOMtegrity" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31632229" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3068, @@ -20046,7 +15781,7 @@ We apologize for the inconvenience, but it appears that an internal error has oc sc:url "http://ciceklab.cs.bilkent.edu.tr/dorman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3423, edam:topic_3512, @@ -20066,38 +15801,8 @@ We apologize for the inconvenience, but it appears that an internal error has oc sc:url "http://www.dmd.nl/DOVE" ; biotools:primaryContact "Mitch Bailey" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0166, - edam:topic_2269, - edam:topic_2275, - edam:topic_3474 ; - sc:citation , - "pubmed:31746961" ; - sc:description """Protein Docking Model Evaluation by 3D Deep Convolutional Neural Networks. - -A Deep-learning based dOcking decoy eValuation mEthod. - -Dove evaluates computational protein-protein docking models by 8 deep learning networks and provides the probability that the decoy is correct. - -Online platform: http://kiharalab.org/dove/. - -title={Protein Docking Model Evaluation by 3D Deep Convolutional Neural Networks},. - -(1) Dove is a protein docking model evaluation method, which distinguish good quality (acceptable quality in the CAPRI-criteria) from incorrect models. It is trained on around 2 million examples. - -author={Wang, Xiao and Terashi, Genki and Christoffer, Charles W and Zhu, Mengmeng and Kihara, Daisuke},. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/DOVE""" ; - sc:featureList edam:operation_0321, - edam:operation_0477, - edam:operation_3899 ; - sc:license "GPL-3.0" ; - sc:name "DOVE_autogenerated" ; - sc:url "http://kiharalab.org/dove/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -20114,7 +15819,7 @@ DPre is a bioinformatic tool that enables the user to explore cell type conversi sc:url "https://github.com/LoaloaF/DPre" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3063, @@ -20128,7 +15833,7 @@ DPre is a bioinformatic tool that enables the user to explore cell type conversi sc:url "https://github.com/stormliucong/dquest-flask" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3318, edam:topic_3489 ; @@ -20145,7 +15850,7 @@ The DR-thermo algorithm can be used to curate experimental thermodynamic data fr sc:url "https://github.com/samansalike/DR-thermo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3301, @@ -20162,7 +15867,7 @@ The DR-thermo algorithm can be used to curate experimental thermodynamic data fr sc:url "http://dramp.cpu-bioinfor.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -20183,7 +15888,7 @@ The DR-thermo algorithm can be used to curate experimental thermodynamic data fr sc:url "https://github.com/Yi-Jiang/DRAMS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3855 ; sc:citation , @@ -20192,21 +15897,8 @@ The DR-thermo algorithm can be used to curate experimental thermodynamic data fr sc:name "DREAP" ; sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31515012" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0176, - edam:topic_3474 ; - sc:citation ; - sc:description "> MEDIUM CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/droids | > CORRECT NAME OF TOOL COULD ALSO BE 'MD', 'maxDemon' | Machine learning based detection of genetic and drug class variant impact on functionally conserved protein binding dynamics | DROIDS-3.0-comparative-protein-dynamics | The Babbitt Lab at RIT has developed DROIDS 3.0 + maxDemon 1.0, a software package for comparative protein dynamics and measure of genetic and drug class impacts on functional dynamics. Vist our website for more details.. | a GUI based script PATHS.pl will prompt paths to working directories for UCSF Chimera, Amber forcefields, and Amber Home directory and write a .ctl file. Then the main DROIDS menu will pop up. Requires Amber 16/18 license and some dependencies in R, python and perl (see user doc with download)" ; - sc:featureList edam:operation_0244, - edam:operation_0417, - edam:operation_2476 ; - sc:license "GPL-3.0" ; - sc:name "DROIDS_autogenerated" ; - sc:url "https://github.com/gbabbitt/DROIDS-3.0-comparative-protein-dynamics" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -20223,7 +15915,7 @@ The DR-thermo algorithm can be used to curate experimental thermodynamic data fr sc:url "https://github.com/marcrusso/DROPA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -20238,30 +15930,24 @@ The DR-thermo algorithm can be used to curate experimental thermodynamic data fr sc:url "http://www.drudit.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, edam:topic_0166 ; sc:citation , "pubmed:31793988" ; - sc:description "DNA Readout Viewer is a free on-line service providing novel and intuitive visualisation modes for displaying sequence specific DNA-protein interactions.", - """visualisation of specificity determining patterns of protein binding DNA segments. - -SUMMARY:The sequence specific recognition of DNA by regulatory proteins typically occurs by establishing hydrogen bonds and non-bonded contacts between chemical substructures of nucleotides and amino acids forming the compatible interacting surfaces. The recognition process is also influenced by the physicochemical and conformational character of the target oligonucleotide motif. Although the role of these mechanisms in DNA-protein interactions is well-established, bioinformatical methods rarely address them directly, instead binding specificity is mostly assessed at nucleotide level. DNA Readout Viewer (DRV) aims to provide a novel DNA representation, facilitating in-depth view into these mechanisms by the concurrent visualisation of functional groups and a diverse collection of DNA descriptors. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'AVAILABILITY:DRV', 'DNA Readout Viewer'""" ; + sc:description "DNA Readout Viewer is a free on-line service providing novel and intuitive visualisation modes for displaying sequence specific DNA-protein interactions." ; sc:featureList edam:operation_0239, edam:operation_0337, edam:operation_3894 ; - sc:name "DNA Readout Viewer", - "DRV" ; + sc:name "DNA Readout Viewer" ; sc:softwareHelp , ; sc:url "https://drv.brc.hu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0821, edam:topic_3336, @@ -20284,7 +15970,7 @@ SUMMARY:The sequence specific recognition of DNA by regulatory proteins typicall sc:url "http://www.structuralchemistry.org/pcsb/drfit.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -20304,22 +15990,8 @@ SUMMARY:The sequence specific recognition of DNA by regulatory proteins typicall "Diego di Bernardo", "Francesco Napolitano" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3370, - edam:topic_3390 ; - sc:citation , - , - "pubmed:31505676", - "pubmed:31505677" ; - sc:description "> CORRECT NAME OF TOOL COULD ALSO BE 'DSID DSLD' | Dietary Supplement Ingredient Database (DSID) and the Application of Analytically Based Estimates of Ingredient Amount to Intake Calculations | Challenges in Developing Analytically Validated Laboratory-Derived Dietary Supplement Databases | Dietary Supplement Ingredient Database | Dietary Supplement Ingridient Database | The Dietary Supplement Ingredient Database (DSID) provides estimated levels of ingredients in dietary supplement products sold in the United States" ; - sc:featureList edam:operation_2428, - edam:operation_3891 ; - sc:name "DSID" ; - sc:url "https://dsid.usda.nih.gov" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_1317 ; sc:description "A collection of databases, tools and web servers for structural biology." ; @@ -20327,7 +15999,7 @@ SUMMARY:The sequence specific recognition of DNA by regulatory proteins typicall sc:url "http://www.dsimb.inserm.fr/tools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, edam:topic_3308, @@ -20348,7 +16020,7 @@ The RNA-seq has revolutionized our ability to transcripts reconstruction""" ; sc:url "https://github.com/Jane110111107/DTA-SiST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0209, @@ -20367,7 +16039,7 @@ The RNA-seq has revolutionized our ability to transcripts reconstruction""" ; sc:url "http://teqip.jdvu.ac.in/QSAR_Tools/DTCLab/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, edam:topic_3336, @@ -20382,24 +16054,8 @@ The RNA-seq has revolutionized our ability to transcripts reconstruction""" ; sc:name "DTI-CDF" ; sc:url "https://github.com//a96123155/DTI-CDF" . - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31840251" ; - sc:description """A Python program to process and visualize fiber-optic distributed temperature sensing data. - -Fiber-optic distributed temperature sensing (FO-DTS) has proven to be a transformative technology for the hydrologic sciences, with application to diverse problems including hyporheic exchange, groundwater surface-water interaction, fractured-rock characterization, and cold-regions hydrology. FO-DTS produces large, complex, and information-rich datasets. Despite the potential of FO-DTS, adoption of the technology has been impeded by lack of tools for data processing, analysis, and visualization. New tools are needed to efficiently and fully capitalize on the information content of FO-DTS datasets. To this end, we present DTSGUI, a public-domain Python-based software package for editing, parsing, processing, statistical analysis, georeferencing, and visualization of FO-DTS data. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'FO-DTS', 'fiber-optic'""" ; - sc:featureList edam:operation_0337, - edam:operation_1812, - edam:operation_3096 ; - sc:name "DTSGUI" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31840251" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099, edam:topic_0749 ; @@ -20412,25 +16068,8 @@ Fiber-optic distributed temperature sensing (FO-DTS) has proven to be a transfor sc:name "DUETT" ; sc:url "https://github.com/BagheriLab/DUETT" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_3489, - edam:topic_3572 ; - sc:citation , - "pubmed:31725882" ; - sc:description """An overview of a nation-wide, multi-level analysis of relationships between quality management systems and patient factors in 32 hospitals. - -OBJECTIVE:The Deepening our Understanding of Quality in Australia (DUQuA) project is a multisite, multilevel, cross-sectional study of 32 of the largest hospitals in Australia. This overview examines relationships between (i) organization-level quality management systems and department-level quality management strategies and (ii) patient-level measures (clinical treatment processes, patient-reported perceptions of care and clinical outcomes) within Australian hospitals. DESIGN:We examined hospital quality improvement structures, processes and outcomes, collecting data at organization, department and patient levels for acute myocardial infarction (AMI), hip fracture and stroke. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Deepening our Understanding Quality Australia', 'department-level', 'patient-level', 'DUQuE'""" ; - sc:featureList edam:operation_3891 ; - sc:name "DUQuA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31725882" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -20454,18 +16093,18 @@ OBJECTIVE:The Deepening our Understanding of Quality in Australia (DUQuA) projec a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3542 ; @@ -20483,7 +16122,7 @@ OBJECTIVE:The Deepening our Understanding of Quality in Australia (DUQuA) projec "Sjoerd de Vries" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3174, @@ -20500,7 +16139,7 @@ OBJECTIVE:The Deepening our Understanding of Quality in Australia (DUQuA) projec sc:url "https://github.com/dnbaker/dashing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2828, edam:topic_3794 ; sc:author "Natasha Stander" ; @@ -20519,37 +16158,23 @@ DatView displays plots of tabular data and syncs selections across plots. It was ; sc:url "https://github.com/nstander/DatView" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0623 ; - sc:citation , - "pmcid:PMC6702380", - "pubmed:31453280" ; - sc:description "> LOW CONFIDENCE! | Data set on the influence of members of a couple on family vacation decision-making | This article describes a database on the perceptions of members of a couple regarding the influence exerted in three stages (initiation, search, and final decision) and seven sub-decisions (destination, accommodation, transport, budget, date, activities, restaurants) in the family vacation decision-making process. We obtained responses from 375 couples, whose members each completed the questionnaire individually, which also enables researchers to obtain information about the consensus between the perceptions of both regarding said influence. To complement this information, we also included sociodemographic and travel behavior variables for the couples analyzed. The data are publicly available at https: github.com mmrojasgracia Data-in-Brief_Influence" ; - sc:name "Data" ; - sc:url "https://github.com/mmrojasgracia/Data-in-Brief_Influence" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application", @@ -20581,7 +16206,7 @@ This tool is expected to be easily customizable for specific filters, environmen biotools:primaryContact "urgi-support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3394, @@ -20611,7 +16236,7 @@ This tool is expected to be easily customizable for specific filters, environmen "Regina Becker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0605 ; sc:author , @@ -20626,25 +16251,15 @@ This tool is expected to be easily customizable for specific filters, environmen sc:isAccessibleForFree true ; sc:license "Apache-2.0" ; sc:name "Data Stewardship Wizard" ; - sc:softwareHelp , - ; + sc:softwareHelp , + , + ; sc:url "https://ds-wizard.org" ; biotools:primaryContact , . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3318, - edam:topic_3390 ; - sc:citation , - "pmcid:PMC6795071", - "pubmed:31560645" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'DTM', 'Data Decision-Making' | Exploring the Division of Nutrition, Physical Activity, and Obesity's Data, Trends, and Maps | Nutrition, Physical Activity, and Obesity | Data, Trends and Maps is an interactive database that provides data on weight status as well as select behavioral, environmental and policy data in the areas of breastfeeding, diet and physical activity | Centers for Disease Control and Prevention. CDC twenty four seven. Saving Lives, Protecting People" ; - sc:name "Data Trends Maps" ; - sc:url "https://www.cdc.gov/nccdphp/dnpao/data-trends-maps/index.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0108, @@ -20664,7 +16279,7 @@ This tool is expected to be easily customizable for specific filters, environmen sc:url "https://datab.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0769, @@ -20686,7 +16301,7 @@ This tool is expected to be easily customizable for specific filters, environmen "Rich FitzJohn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3421, @@ -20702,27 +16317,8 @@ This tool is expected to be easily customizable for specific filters, environmen sc:name "De-smokeGCN" ; sc:url "https://github.com/melights/cnn_desmoke" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0130, - edam:topic_0154, - edam:topic_0654, - edam:topic_0821, - edam:topic_3512 ; - sc:citation ; - sc:description """degenerate codon design for complete protein-coding DNA libraries. - -To run DeCoDe, you will need a local installation of Gurobi with an appropriate lisence (academic licenses are provided for free direct from Gurobi). You will also need to install gurobipy and make sure that you are able to import it from within your local environment. - -||| NAME (DeCoDe) SIMILAR TO (PUB. DIFFERENT) bio.tools/decode (deCODE)""" ; - sc:featureList edam:operation_0416, - edam:operation_3745, - edam:operation_3795 ; - sc:license "MIT" ; - sc:name "DeCoDe_autogenerated" ; - sc:url "http://github.com/OrensteinLab/DeCoDe" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2275, @@ -20745,7 +16341,7 @@ We provide two settings of DeLinker. The first setting generates linkers with th sc:url "https://github.com/oxpig/DeLinker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -20763,7 +16359,7 @@ We provide two settings of DeLinker. The first setting generates linkers with th sc:url "https://bitbucket.org/skibbe/DeTerm/wiki/Home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3370, @@ -20777,21 +16373,8 @@ We provide two settings of DeLinker. The first setting generates linkers with th sc:name "DecoMetDIA" ; sc:url "https://github.com/ZhuMSLab/DecoMetDIA" . - a sc:SoftwareApplication ; - sc:additionalType "Script" ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0634, - edam:topic_3697 ; - sc:citation ; - sc:description "Leveraging Patterns in 16S Public Data using Word-Embedding Techniques and Applications in Inflammatory Bowel Disease | Microbiomarkers Discovery in Inflammatory Bowel Diseases using Network-Based Feature Selection | Help Design Your New ACM Digital Library | We're upgrading the ACM DL, and would like your input. Please sign up to review new features, functionality and page designs | Danmarks Tekniske Informationscenter | Check out the beta version of the next ACM DL" ; - sc:featureList edam:operation_3501, - edam:operation_3798, - edam:operation_3891 ; - sc:name "Decoding Language Microbiomes" ; - sc:url "https://github.com/MaudeDavidLab/gut_microbiome_embeddings" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3173, @@ -20812,7 +16395,7 @@ We provide two settings of DeLinker. The first setting generates linkers with th sc:url "http://www-labgtp.na.icar.cnr.it/decontaminer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -20832,7 +16415,7 @@ We provide two settings of DeLinker. The first setting generates linkers with th sc:url "http://glycopro.chem.ku.edu/JHome.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, edam:topic_2640, @@ -20852,7 +16435,7 @@ Authors: Behrooz Azarkhalili, Ali Saberi, Hamidreza Chitsaz, Ali Sharifi-Zarchi" sc:url "https://github.com/SharifBioinf/DeePathology" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3382, @@ -20875,7 +16458,7 @@ Neural network learns fluorescence wave propagation and time-reversal to propaga sc:url "https://github.com/puppy101puppy/Deep-Z" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -20895,22 +16478,12 @@ Usage: the codes can be used to train our models, output results on the testing sc:name "DeepAttentionPan" ; sc:url "https://github.com/jjin49/DeepAttentionPan" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6692019", - "pubmed:31408477" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'NDN', 'ISP', 'congestion', 'auction' | Joint deep learning and auction for congestion-aware caching in Named Data Networking | Over the last few decades, the Internet has experienced tremendous growth in data traffic. This continuous growth due to the increase in the number of connected devices and platforms has dramatically boosted content consumption. However, retrieving content from the servers of Content Providers (CPs) can increase network traffic and incur high network delay and congestion. To address these challenges, we propose a joint deep learning and auction-based approach for congestion-aware caching in Named Data Networking (NDN), which aims to prevent congestion and minimize the content downloading delays. First, using recorded network traffic data on the Internet Service Provider (ISP) network, we propose a deep learning model to predict future traffic over transit links" ; - sc:name "DeepAuC" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31408477" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -20926,7 +16499,7 @@ Usage: the codes can be used to train our models, output results on the testing sc:url "https://github.com/Merck/deepbgc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275, edam:topic_3474 ; @@ -20940,7 +16513,7 @@ Usage: the codes can be used to train our models, output results on the testing sc:url "https://github.com/haiping1010/DeepBindRG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -20955,7 +16528,7 @@ Usage: the codes can be used to train our models, output results on the testing sc:url "https://cityuhk-compbio.github.io/DeepCC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Workflow" ; sc:applicationSubCategory edam:topic_2229, @@ -20979,22 +16552,22 @@ Abstract Two-photon calcium imaging is now widely used to indirectly infer multi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3585" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_4002" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0128, @@ -21018,7 +16591,7 @@ Abstract Two-photon calcium imaging is now widely used to indirectly infer multi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0204, edam:topic_2640 ; @@ -21031,7 +16604,7 @@ Abstract Two-photon calcium imaging is now widely used to indirectly infer multi sc:url "https://github.com/godwinwoo/DeepCOP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2640, @@ -21047,7 +16620,7 @@ Abstract Two-photon calcium imaging is now widely used to indirectly infer multi sc:url "http://deepcalpain.cancerbio.info/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3320, edam:topic_3474, @@ -21070,7 +16643,7 @@ Abstract Two-photon calcium imaging is now widely used to indirectly infer multi "Liangjiang Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, @@ -21084,7 +16657,7 @@ Abstract Two-photon calcium imaging is now widely used to indirectly infer multi sc:url "http://deepcleave.erc.monash.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0654, @@ -21100,7 +16673,7 @@ Abstract Two-photon calcium imaging is now widely used to indirectly infer multi sc:url "https://github.com/antorkhan/DNABinding" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2269, edam:topic_2815, @@ -21118,7 +16691,7 @@ Abstract Two-photon calcium imaging is now widely used to indirectly infer multi sc:url "https://github.com/rongjiewang/DeepDNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0121, @@ -21137,7 +16710,7 @@ DNA-binding proteins (DBPs) and RNA-binding proteins (RBPs) are two kinds of cru sc:url "http://bliulab.net/DeepDRBP-2L" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, edam:topic_3170, @@ -21154,7 +16727,7 @@ DNA-binding proteins (DBPs) and RNA-binding proteins (RBPs) are two kinds of cru sc:url "https://github.com/CSUBioGroup/DeepEP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0099, @@ -21171,7 +16744,7 @@ DNA-binding proteins (DBPs) and RNA-binding proteins (RBPs) are two kinds of cru sc:url "http://www.DeepHF.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2640, @@ -21200,7 +16773,7 @@ DeepHLApan is a deep learning approach used for predicting high-confidence neoan sc:url "http://biopharm.zju.edu.cn/deephlapan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0605, @@ -21219,7 +16792,7 @@ DeepImageJ is a user-friendly plugin that enables the use of a variety of pre-tr sc:url "https://deepimagej.github.io/deepimagej/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -21237,7 +16810,7 @@ DeepImageJ is a user-friendly plugin that enables the use of a variety of pre-tr sc:url "https://github.com/lanagarmire/DeepImpute" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3382, @@ -21252,7 +16825,7 @@ DeepImageJ is a user-friendly plugin that enables the use of a variety of pre-tr sc:url "https://github.com/CYHSM/DeepInsight" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_2830 ; @@ -21266,7 +16839,7 @@ DeepImageJ is a user-friendly plugin that enables the use of a variety of pre-tr sc:url "https://github.com/gifford-lab/DeepLigand" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -21281,7 +16854,7 @@ DeepImageJ is a user-friendly plugin that enables the use of a variety of pre-tr sc:url "https://github.com/leylabmpi/DeepMAsED" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, @@ -21296,28 +16869,8 @@ DeepImageJ is a user-friendly plugin that enables the use of a variety of pre-tr sc:name "DeepMF" ; sc:url "https://github.com/paprikachan/DeepMF" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0659, - edam:topic_2640, - edam:topic_3474, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6933662", - "pubmed:31881818" ; - sc:description """deciphering the latent patterns in omics profiles with a deep learning method. - -BACKGROUND:With recent advances in high-throughput technologies, matrix factorization techniques are increasingly being utilized for mapping quantitative omics profiling matrix data into low-dimensional embedding space, in the hope of uncovering insights in the underlying biological processes. Nevertheless, current matrix factorization tools fall short in handling noisy data and missing entries, both deficiencies that are often found in real-life data. RESULTS:Here, we propose DeepMF, a deep neural network-based factorization model. DeepMF disentangles the association between molecular feature-associated and sample-associated latent matrices, and is tolerant to noisy and missing values. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/DeepMF""" ; - sc:featureList edam:operation_2495, - edam:operation_3557, - edam:operation_3799 ; - sc:name "DeepMF_autogenerated" ; - sc:url "https://github.com/paprikachan/DeepMF" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -21340,7 +16893,7 @@ DeepMSA is a composite approach to generate high quality multiple sequence align sc:url "https://zhanglab.ccmb.med.umich.edu/DeepMSA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -21356,7 +16909,7 @@ DeepMSA is a composite approach to generate high quality multiple sequence align sc:url "https://github.com/vsegurar/DeepMSPeptide" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3305, @@ -21375,7 +16928,7 @@ DeepMicro is a deep representation learning framework exploiting various autoenc sc:url "https://github.com/minoh0201/DeepMicro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -21393,14 +16946,14 @@ DeepMicro is a deep representation learning framework exploiting various autoenc a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0140 ; sc:citation ; @@ -21410,11 +16963,10 @@ DeepMicro is a deep representation learning framework exploiting various autoenc sc:isAccessibleForFree true ; sc:name "DeepMito" ; sc:softwareVersion "1.0" ; - sc:url "http://busca.biocomp.unibo.it/deepmito" ; - sc:version "1.0" . + sc:url "http://busca.biocomp.unibo.it/deepmito" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3474, @@ -21434,7 +16986,7 @@ DeepMicro is a deep representation learning framework exploiting various autoenc biotools:primaryContact "Ashraful Arefeen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -21460,7 +17012,7 @@ The PSSMs, raw sequences, secondary structures and labels are given in data_cach sc:url "http://bioinformatics.csu.edu.cn/PPISP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -21481,7 +17033,7 @@ The PSSMs, raw sequences, secondary structures and labels are given in data_cach biotools:primaryContact "Bio-Ontology Research Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -21501,7 +17053,7 @@ The PSSMs, raw sequences, secondary structures and labels are given in data_cach sc:url "https://github.com/bio-ontology-research-group/deeppheno" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3304, @@ -21520,7 +17072,7 @@ DeepPoseKit is a software toolkit with a high-level API for 2D pose estimation o sc:url "https://github.com/jgraving/deepposekit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -21541,14 +17093,14 @@ RNA post-transcriptional modifications play a crucial role in a myriad of biolog a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1461" ; - sc:name "Protein-ligand complex" ; - sc:sameAs "http://edamontology.org/data_1461" ] ; + sc:additionalType "http://edamontology.org/data_1461" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein-ligand complex" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0888" ; - sc:name "Structure similarity score" ; - sc:sameAs "http://edamontology.org/data_0888" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0888" ; + sc:encodingFormat "http://edamontology.org/format_3590" ; + sc:name "Structure similarity score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_2814 ; @@ -21568,7 +17120,7 @@ DeepRank contains useful APIs for pre-processing PPIs data, computing features a sc:url "https://github.com/DeepRank/deeprank" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2229, @@ -21586,7 +17138,7 @@ Deepginsen is a lantipeptide that is genomically encoded distantly from its modi sc:url "http://deepripp.magarveylab.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3168, @@ -21609,7 +17161,7 @@ DeepSV, an approach based on deep learning for calling long deletions from seque sc:url "https://github.com/CSuperlei/DeepSV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0632, @@ -21628,7 +17180,7 @@ DeepScreening is a user-friendly web server for constructing deep learning model sc:url "http://deepscreening.xielab.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2830, edam:topic_3474 ; @@ -21641,7 +17193,7 @@ DeepScreening is a user-friendly web server for constructing deep learning model sc:url "https://github.com/pcpLiu/DeepSeqPanII" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -21660,7 +17212,7 @@ For the estimation of Isoform-Level Ribosome Abundance and Distribution Accurate sc:url "https://github.com/cuihf06/DeepShape" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0208, edam:topic_0209, @@ -21674,7 +17226,7 @@ For the estimation of Isoform-Level Ribosome Abundance and Distribution Accurate sc:url "http://github.com/OnurUner/DeepSide" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0749, @@ -21688,25 +17240,8 @@ For the estimation of Isoform-Level Ribosome Abundance and Distribution Accurate sc:softwareHelp ; sc:url "http://deepcrispr.info/DeepSpCas9" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0157, - edam:topic_0749, - edam:topic_3168 ; - sc:citation , - "pmcid:PMC6834390", - "pubmed:31723604" ; - sc:description """deep learning-based model with high generalization performance. - -We evaluated SpCas9 activities at 12,832 target sequences using a high-throughput approach based on a human cell library containing single-guide RNA-encoding and target sequence pairs. Deep learning-based training on this large dataset of SpCas9-induced indel frequencies led to the development of a SpCas9 activity-predicting model named DeepSpCas9. When tested against independently generated datasets (our own and those published by other groups), DeepSpCas9 showed high generalization performance. DeepSpCas9 is available at http: deepcrispr.info DeepSpCas9. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/DeepSpCas9. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'SpCas9 activity prediction DeepSpCas9'""" ; - sc:name "DeepSpCas9_autogenerated" ; - sc:url "http://deepcrispr.info/DeepSpCas9" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320, @@ -21728,7 +17263,7 @@ We evaluated SpCas9 activities at 12,832 target sequences using a high-throughpu biotools:primaryContact "Yi Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3360, edam:topic_3384, @@ -21746,7 +17281,7 @@ A data-driven method based that identifies longitudinal changes in 3D structural sc:url "https://gitlab.com/lgianca/longitudinal-deepsymnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, @@ -21762,7 +17297,7 @@ A data-driven method based that identifies longitudinal changes in 3D structural sc:url "http://github.com/wangshenguiuc/DeepSyn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2640, @@ -21780,7 +17315,7 @@ A data-driven method based that identifies longitudinal changes in 3D structural biotools:primaryContact "Yijun Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -21801,7 +17336,7 @@ A data-driven method based that identifies longitudinal changes in 3D structural sc:url "https://github.com/Sunmile/DeepUbi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0154, @@ -21822,7 +17357,7 @@ Drug discovery is an extensive and rigorous process that requires up to 2 billio sc:url "https://github.com/vibudh2209/D2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3320, edam:topic_3512 ; @@ -21837,7 +17372,7 @@ Drug discovery is an extensive and rigorous process that requires up to 2 billio sc:url "https://home.jbnu.ac.kr/NSCL/dsc.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, @@ -21857,7 +17392,7 @@ DeltaNeTS+ is a major improvement to our previous method DeltaNet. DeltaNeTS+ is sc:url "http://www.github.com/cabsel/deltanetsplus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3399, edam:topic_3405 ; sc:citation , @@ -21867,7 +17402,7 @@ DeltaNeTS+ is a major improvement to our previous method DeltaNet. DeltaNeTS+ is sc:url "http://dentareport.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_2269, @@ -21882,7 +17417,7 @@ DeltaNeTS+ is a major improvement to our previous method DeltaNet. DeltaNeTS+ is sc:url "https://depmap.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3295, edam:topic_3321, @@ -21899,17 +17434,8 @@ DeltaNeTS+ is a major improvement to our previous method DeltaNet. DeltaNeTS+ is sc:url "https://bitbucket.org/jerlar73/depthfinder/src/master/" ; biotools:primaryContact "Jerome Laroche" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3399, - edam:topic_3400, - edam:topic_3404 ; - sc:citation "pubmed:31553870" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'JPF02549', 'E-Verify', 'Act', 'equity_inclusion' | Advertisement for Assistant/Associate/Full ClinX/HSCP (4 Positions) UC Davis School of Medicine, Department of Dermatology | Our team of board-certified dermatologists treats common conditions such as acne, eczema and skin allergies, as well as complex and uncommon skin disorders | Our Experts in Dermatological Care | Welcome to the Department of Dermatology | Patients throughout the region count on the UC Davis Department of Dermatology to treat their common conditions such as acne, eczema and skin allergies, as well as complex and uncommon skin disorders | Call for an Appointment: 916-734-6111" ; - sc:name "Dermatology" ; - sc:url "http://www.ucdmc.ucdavis.edu/dermatology" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0632, @@ -21928,7 +17454,7 @@ DeltaNeTS+ is a major improvement to our previous method DeltaNet. DeltaNeTS+ is biotools:primaryContact "Kalin H. Vetsigian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154 ; @@ -21946,25 +17472,8 @@ DeltaNeTS+ is a major improvement to our previous method DeltaNet. DeltaNeTS+ is sc:url "https://github.com/andymlau/Deuteros" ; biotools:primaryContact "Argyris Politis" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2269, - edam:topic_2640 ; - sc:citation , - "pmcid:PMC6771109", - "pubmed:31570101" ; - sc:description """spatial modelling, visualisation, and reporting of estimates. - -An interactive, online atlas designed to show how the burden of cancer varies across small geographical areas for the whole country, using the latest available data. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Atlas' (bio.tools/atlas), 'Atlas September', 'Australian Statistical'""" ; - sc:featureList edam:operation_3435, - edam:operation_3503, - edam:operation_3659 ; - sc:name "Development Australian Cancer Atlas" ; - sc:url "https://atlas.cancer.org.au" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0798, @@ -21983,7 +17492,7 @@ An interactive, online atlas designed to show how the burden of cancer varies ac sc:url "https://github.com/W-L/deviaTE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -22000,7 +17509,7 @@ DiNGO is a standalone application based on open source code from BiNGO a Java ba sc:url "https://www.vin.bg.ac.rs/180/tools/DiNGO.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -22024,22 +17533,8 @@ DiNGO is a standalone application based on open source code from BiNGO a Java ba "Yinbing Ge", "Zach Robinson" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3382, - edam:topic_3393, - edam:topic_3417, - edam:topic_3474 ; - sc:citation ; - sc:description """Towards implementation of AI in New Zealand national screening program. - -Identify signs of diabetic retinopathy in eye images. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CNN', 'Towards implementation AI New Zealand national screening program', 'CNNs', 'post-training'""" ; - sc:name "Diabetic Retinopathy" ; - sc:url "https://www.kaggle.com/c/diabetic-retinopathy-detection/data" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3474, @@ -22057,39 +17552,8 @@ Identify signs of diabetic retinopathy in eye images. sc:url "http://patternlabforproteomics.org/diagnoprot/" ; biotools:primaryContact "André R.F Silva" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3305 ; - sc:citation , - "pubmed:31850486" ; - sc:description """the DianaWeb study to prevent breast cancer recurrences. - -ISCRIVITI IL TUO CONTRIBUTO E' IMPORTANTE. - -DIANAWEB: articolo del SOLE 24 ORE. 16 dicembre 2019. - -Studio clinico per saggiare l’ipotesi che il nuovo stile di vita possa ridurre. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'E-Coaching'""" ; - sc:name "DianaWeb" ; - sc:url "http://www.dianaweb.org/" . - - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31600471" ; - sc:description """Development of an Individualized, Web-Based, Vocabulary Instruction Program. - -Purpose Improving vocabulary knowledge is important for many adolescents, but there are few evidence-based vocabulary instruction programs available for high school students. The purpose of this article is to describe the iterative development of the DictionarySquared research platform, a web-based vocabulary program that provides individualized vocabulary instruction, and to report the results of 2 pilot studies examining the feasibility of implementation and potential effectiveness with high school students. Method We describe our theory of change and 5 phases of iterative development. In Phases 1 and 2, we evaluated the initial implementation of DictionarySquared and revised the instructional materials. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Accelerating Adolescent Vocabulary Growth', 'vocabulary', 'individualized'""" ; - sc:featureList edam:operation_3454 ; - sc:name "DictionarySquared" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31600471" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0593 ; sc:description "Software package able to obtain quantitative self-diffusion data in a very straightforward manner allowing the calculation of radii including different molecular models which is not only restricted to spheres." ; @@ -22102,7 +17566,7 @@ Purpose Improving vocabulary knowledge is important for many adolescents, but th sc:url "http://www.diffatonce.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -22126,21 +17590,8 @@ Purpose Improving vocabulary knowledge is important for many adolescents, but th biotools:primaryContact "Cintia C. Palu", "Paul Walsh" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3306, - edam:topic_3444 ; - sc:citation , - "pmcid:PMC6144466" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE BROKEN! | > CORRECT NAME OF TOOL COULD ALSO BE 'P)arametric', 'TTFields', 'TTField', 'Stupp' | P01.051 Imaging based analysis of changes in grey and white matter in glioblastoma patients treated with tumor treating fields | AbstractBackgroundAfter a positive randomized clinical trial showing significant survival benefits, Tumor Treating Fields (TTFields) have been implemented in the management of newly diagnosed glioblastoma (GBM). Biophysical modeling of TTField application has demonstrated a heterogeneous electric field distribution within the intracranial space, reaching maximal intensities at tissue borders with different electric conductivity. However, no imaging modality is available to visualize the impact of TTField treatment within the tumor and the bordering normal brain in each individual patient" ; - sc:featureList edam:operation_0417, - edam:operation_3206, - edam:operation_3207 ; - sc:name "D(iffeomorphic" ; - sc:url "http://ic.oup.com" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -22162,7 +17613,7 @@ Purpose Improving vocabulary knowledge is important for many adolescents, but th biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_2229 ; sc:citation ; @@ -22178,26 +17629,8 @@ Purpose Improving vocabulary knowledge is important for many adolescents, but th sc:url "https://github.com/bihealth/digestiflow-server" ; biotools:primaryContact "Manuel Holtgrewe" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2229, - edam:topic_3071, - edam:topic_3168 ; - sc:citation ; - sc:description """from BCL to FASTQ with ease. - -Management raw sequencing data and its preprocessing (conversion into sequences and demultiplexing) remains a challenging topic for groups running sequencing devices. They face many challenges in such efforts and solutions ranging from manual management of spreadsheets to very complex and customized LIMS systems handling much more than just sequencing raw data. In this manuscript, we describe the software package DigestiFlow that focuses on the management of Illumina flow cell sample sheets and raw data. It allows for automated extraction of information from flow cell data and management of sample sheets. Furthermore, it allows for the automated and reproducible conversion of Illumina base calls to sequences and the demultiplexing thereof using bcl2fastq and Picard Tools, followed by quality control report generation. - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/DigestiFlow""" ; - sc:featureList edam:operation_0233, - edam:operation_3185, - edam:operation_3218 ; - sc:name "DigestiFlow_autogenerated" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.27717V4" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0804, edam:topic_2640, @@ -22223,7 +17656,7 @@ conda create env -n digitalDLSorter""" ; sc:url "https://github.com/cartof/digitalDLSorter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3305, @@ -22238,7 +17671,7 @@ conda create env -n digitalDLSorter""" ; sc:url "https://bioinformatics.cvr.ac.uk/software/discvr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3384, @@ -22258,34 +17691,8 @@ conda create env -n digitalDLSorter""" ; "1.01.2" ; sc:url "https://bitbucket.org/masauburn/disconica/src/master/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0625, - edam:topic_0634, - edam:topic_3063, - edam:topic_3335 ; - sc:citation , - "pubmed:31680165" ; - sc:description """The DisGeNET knowledge platform for disease genomics. - -a database of gene-disease associations. - -DisGeNET is a discovery platform containing one of the largest publicly available collections of genes and variants associated to human diseases (Piñero et al., 2019; Piñero et al., 2016; Piñero et al., 2015). - -The current version of DisGeNET (v6.0) contains 628,685 gene-disease associations (GDAs), between 17,549 genes and 24,166 diseases, disorders, traits, and clinical or abnormal human phenotypes, and 210,498 variant-disease associations (VDAs), between 117,337 variants and 10,358 diseases, traits, and phenotypes. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/disgenet (DISGENET.ORG ; DISGENET.ORG/downloads). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'DisGeNET' (bio.tools/disgenet)""" ; - sc:featureList edam:operation_2421, - edam:operation_2422, - edam:operation_3196 ; - sc:name "DisGeNET knowledge platform disease genomics" ; - sc:softwareHelp ; - sc:url "http://www.disgenet.org/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3170, @@ -22304,7 +17711,7 @@ The current version of DisGeNET (v6.0) contains 628,685 gene-disease association sc:url "https://github.com/ybq1204/DisV-HPV16" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -22325,7 +17732,7 @@ DiscoRhythm is available as a web application or an R/Bioconductor package for e sc:url "https://disco.camh.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -22345,7 +17752,7 @@ DiscoRhythm is available as a web application or an R/Bioconductor package for e sc:url "https://github.com/shaoli86/DiscoverSL/releases/tag/V1.0" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, @@ -22362,7 +17769,7 @@ DiscoRhythm is available as a web application or an R/Bioconductor package for e sc:url "https://github.com/makovalab-psu/DiscoverY" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0659, @@ -22379,7 +17786,7 @@ DiscoRhythm is available as a web application or an R/Bioconductor package for e sc:url "https://github.com/ObedRamirez/Disentangling-sRNA-Seq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -22396,7 +17803,7 @@ Three-dimensional structure of a protein chain is determined by its amino acid i sc:url "http://andromeda.matf.bg.ac.rs/aadis_dynamic/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3174, @@ -22411,22 +17818,22 @@ Three-dimensional structure of a protein chain is determined by its amino acid i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3071 ; @@ -22445,26 +17852,27 @@ Three-dimensional structure of a protein chain is determined by its amino acid i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3736" ; - sc:name "Ecological data" ; - sc:sameAs "http://edamontology.org/data_3736" ], + sc:additionalType "http://edamontology.org/data_3707" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Biodiversity data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3707" ; - sc:name "Biodiversity data" ; - sc:sameAs "http://edamontology.org/data_3707" ] ; + sc:additionalType "http://edamontology.org/data_3736" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ecological data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3736" ; - sc:name "Ecological data" ; - sc:sameAs "http://edamontology.org/data_3736" ], + sc:additionalType "http://edamontology.org/data_3736" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Ecological data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3707" ; - sc:name "Biodiversity data" ; - sc:sameAs "http://edamontology.org/data_3707" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3707" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Biodiversity data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web service" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0780, + edam:topic_3050, edam:topic_3071, edam:topic_3299, edam:topic_3301, @@ -22494,32 +17902,33 @@ Three-dimensional structure of a protein chain is determined by its amino acid i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3736" ; - sc:name "Ecological data" ; - sc:sameAs "http://edamontology.org/data_3736" ], + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Experimental measurement" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3707" ; - sc:name "Biodiversity data" ; - sc:sameAs "http://edamontology.org/data_3707" ], + sc:additionalType "http://edamontology.org/data_3707" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Biodiversity data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3736" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Ecological data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ], + sc:additionalType "http://edamontology.org/data_3707" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Biodiversity data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3736" ; - sc:name "Ecological data" ; - sc:sameAs "http://edamontology.org/data_3736" ], + sc:additionalType "http://edamontology.org/data_3736" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Ecological data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3707" ; - sc:name "Biodiversity data" ; - sc:sameAs "http://edamontology.org/data_3707" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Experimental measurement" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0610, + edam:topic_3050, edam:topic_3070, edam:topic_3071, edam:topic_3391, @@ -22547,18 +17956,18 @@ Three-dimensional structure of a protein chain is determined by its amino acid i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Desktop application", "Web service" ; @@ -22583,30 +17992,30 @@ Three-dimensional structure of a protein chain is determined by its amino acid i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_1274" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1274" ; - sc:name "Map" ; - sc:sameAs "http://edamontology.org/data_1274" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_1274" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1274" ; - sc:name "Map" ; - sc:sameAs "http://edamontology.org/data_1274" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3855 ; @@ -22627,22 +18036,22 @@ Three-dimensional structure of a protein chain is determined by its amino acid i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_2350" ; + sc:name "Image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ], + sc:additionalType "http://edamontology.org/data_3671" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3071 ; @@ -22661,33 +18070,34 @@ Three-dimensional structure of a protein chain is determined by its amino acid i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3707" ; - sc:name "Biodiversity data" ; - sc:sameAs "http://edamontology.org/data_3707" ], + sc:additionalType "http://edamontology.org/data_3736" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ecological data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3736" ; - sc:name "Ecological data" ; - sc:sameAs "http://edamontology.org/data_3736" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3579" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; + sc:additionalType "http://edamontology.org/data_3707" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Biodiversity data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3707" ; - sc:name "Biodiversity data" ; - sc:sameAs "http://edamontology.org/data_3707" ], + sc:additionalType "http://edamontology.org/data_3707" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Biodiversity data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3579" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3736" ; - sc:name "Ecological data" ; - sc:sameAs "http://edamontology.org/data_3736" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3736" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ecological data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web service" ; - sc:applicationSubCategory edam:topic_3070, + sc:applicationSubCategory edam:topic_3050, + edam:topic_3070, edam:topic_3071 ; sc:author "University of Bayreuth, Chair of Databases and Information Systems" ; sc:contributor "Universität Bayreuth, Department of Mycology" ; @@ -22705,22 +18115,22 @@ Three-dimensional structure of a protein chain is determined by its amino acid i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web service" ; sc:applicationSubCategory edam:topic_3070, @@ -22742,14 +18152,14 @@ Three-dimensional structure of a protein chain is determined by its amino acid i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3070, @@ -22770,14 +18180,14 @@ Three-dimensional structure of a protein chain is determined by its amino acid i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3736" ; - sc:name "Ecological data" ; - sc:sameAs "http://edamontology.org/data_3736" ] ; + sc:additionalType "http://edamontology.org/data_3736" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ecological data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3736" ; - sc:name "Ecological data" ; - sc:sameAs "http://edamontology.org/data_3736" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3736" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ecological data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3855 ; @@ -22797,22 +18207,22 @@ Three-dimensional structure of a protein chain is determined by its amino acid i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Ontology data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3070, @@ -22836,14 +18246,14 @@ Three-dimensional structure of a protein chain is determined by its amino acid i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Taxonomy" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web API", "Web service" ; @@ -22869,14 +18279,14 @@ Three-dimensional structure of a protein chain is determined by its amino acid i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1274" ; - sc:name "Map" ; - sc:sameAs "http://edamontology.org/data_1274" ] ; + sc:additionalType "http://edamontology.org/data_1274" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Map" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1274" ; - sc:name "Map" ; - sc:sameAs "http://edamontology.org/data_1274" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1274" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3071, @@ -22897,7 +18307,7 @@ Three-dimensional structure of a protein chain is determined by its amino acid i biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3068, @@ -22928,7 +18338,7 @@ Three-dimensional structure of a protein chain is determined by its amino acid i biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3068 ; @@ -22945,7 +18355,7 @@ Three-dimensional structure of a protein chain is determined by its amino acid i biotools:primaryContact "Stuart Aitken" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3068, @@ -22970,7 +18380,7 @@ The Dmipy software package facilitates the reproducible estimation of diffusion sc:url "https://github.com/AthenaEPI/dmipy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3385, @@ -22991,7 +18401,7 @@ The Dmipy software package facilitates the reproducible estimation of diffusion biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -23015,26 +18425,8 @@ The Dmipy software package facilitates the reproducible estimation of diffusion biotools:primaryContact , "Kai Wang" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0160, - edam:topic_3169, - edam:topic_3179, - edam:topic_3676 ; - sc:citation ; - sc:description """a High-Throughput Method to Profile Different Types of Protein-DNA Interactions. - -ABSTRACT DNA-protein interactions play pivotal roles in many cellular activities, such as replication, development, and DNA repair. Here we report a DNB-based on-chip Motif Finding (DocMF) system that utilizes next-generation-sequencing chips to profile protein binding or cleaving activity toward several hundred millions or billions of DNA sequences. Using DocMF, we successfully identified a variety of endonuclease recognition sites and the protospacer-adjacent motif (PAM) sequences of different CRISPR effector proteins. Compared with the widely used PAM depletion assay, our DocMF platform can simultaneously screen both 5’ and 3’ sequences adjacent to the protospacer to identify PAMs with high coverage using the same DNB library pool. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0239, - edam:operation_3092, - edam:operation_3900 ; - sc:name "DocMF" ; - sc:url "https://doi.org/10.1101/827428" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -23053,7 +18445,7 @@ DockBox is a python wrapper library designed to facilitate the use of standard d sc:url "https://pypi.org/project/dockbox" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -23067,7 +18459,7 @@ DockBox is a python wrapper library designed to facilitate the use of standard d sc:url "https://dockthor.lncc.br/v2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation , @@ -23084,7 +18476,7 @@ Bioinformatics Project (RBP, http://reproducible-bioinformatics.org/).""" ; sc:url "https://github.com/kendomaniac/docker4seq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -23104,7 +18496,7 @@ BACKGROUND:Orthology inference is normally based on full-length protein sequence sc:url "https://bitbucket.org/sonnhammergroup/domainoid/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3474, edam:topic_3500, edam:topic_3679 ; @@ -23119,14 +18511,14 @@ Animals use a wide variety of strategies to reduce or avoid aggression in confli a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3572 ; @@ -23143,7 +18535,7 @@ Animals use a wide variety of strategies to reduce or avoid aggression in confli sc:url "https://github.com/JonathanShor/DoubletDetection" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3318, edam:topic_3892 ; @@ -23156,7 +18548,7 @@ Animals use a wide variety of strategies to reduce or avoid aggression in confli sc:url "https://github.com/ronaldolab/DrDiff" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -23177,24 +18569,8 @@ Phase separation, or liquid-liquid phase separation (LLPS), is a ubiquitous and sc:softwareHelp ; sc:url "http://llps.biocuckoo.cn/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_3300, - edam:topic_3343 ; - sc:citation , - "pmcid:PMC6927112", - "pubmed:31865907" ; - sc:description """Enhancing the drug ontology with semantically-rich representations of National Drug Codes and RxNorm unique concept identifiers. - -BACKGROUND:The Drug Ontology (DrOn) is a modular, extensible ontology of drug products, their ingredients, and their biological activity created to enable comparative effectiveness and health services researchers to query National Drug Codes (NDCs) that represent products by ingredient, by molecular disposition, by therapeutic disposition, and by physiological effect (e.g., diuretic). It is based on the RxNorm drug terminology maintained by the U. S. National Library of Medicine, and on the Chemical Entities of Biological Interest ontology. Both national drug codes (NDCs) and RxNorm unique concept identifiers (RXCUIS) can undergo changes over time that can obfuscate their meaning when these identifiers occur in historic data""" ; - sc:featureList edam:operation_2422, - edam:operation_3096, - edam:operation_3359 ; - sc:name "DrOn" ; - sc:url "http://purl.org/dron/identifiers/dron-identifiers.owl" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0154, @@ -23218,27 +18594,8 @@ If you use this software, please cite: Cheng, K. et al., 'DrawGlycan-SNFG: a rob sc:softwareHelp ; sc:url "https://virtualglycome.org/drawglycan" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0154, - edam:topic_0749, - edam:topic_3512, - edam:topic_3557 ; - sc:citation , - "pubmed:31724707" ; - sc:description """structurally novel ssDNA-binding transcription regulator of N4-related bacterial viruses. - -Bacterial viruses encode a vast number of ORFan genes that lack similarity to any other known proteins. Here, we present a 2.20 Å crystal structure of N4-related Pseudomonas virus LUZ7 ORFan gp14, and elucidate its function. We demonstrate that gp14, termed here as Drc (ssDNA-binding RNA Polymerase Cofactor), preferentially binds single-stranded DNA, yet contains a structural fold distinct from other ssDNA-binding proteins (SSBs). By comparison with other SSB folds and creation of truncation and amino acid substitution mutants, we provide the first evidence for the binding mechanism of this unique fold. From a biological perspective, Drc interacts with the phage-encoded RNA Polymerase complex (RNAPII), implying a functional role as an SSB required for the transition from early to middle gene transcription during phage infection. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0279, - edam:operation_0303, - edam:operation_3454 ; - sc:name "Drc" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31724707" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0199, @@ -23255,7 +18612,7 @@ Bacterial viruses encode a vast number of ORFan genes that lack similarity to an sc:url "http://ngs.ym.edu.tw/driverdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, edam:topic_2640, @@ -23277,7 +18634,7 @@ After the raw data are loaded, the script ./GenerateInputData.m with function ./ sc:url "https://github.com/JianingXi/DriverSub" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0605, @@ -23302,7 +18659,7 @@ After the raw data are loaded, the script ./GenerateInputData.m with function ./ biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0154, @@ -23321,7 +18678,7 @@ After the raw data are loaded, the script ./GenerateInputData.m with function ./ sc:url "http://drugcombdb.denglab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -23346,7 +18703,7 @@ After the raw data are loaded, the script ./GenerateInputData.m with function ./ "Yosef Masoudi-Sobhanzadeh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -23369,7 +18726,7 @@ After the raw data are loaded, the script ./GenerateInputData.m with function ./ biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -23384,7 +18741,7 @@ After the raw data are loaded, the script ./GenerateInputData.m with function ./ sc:url "http://drugtargets.insight-centre.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3304 ; sc:citation , @@ -23402,7 +18759,7 @@ After the raw data are loaded, the script ./GenerateInputData.m with function ./ biotools:primaryContact "Don van den Bergh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0084, @@ -23423,7 +18780,7 @@ After the raw data are loaded, the script ./GenerateInputData.m with function ./ biotools:primaryContact "Milan Malinsky" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0780, @@ -23442,7 +18799,7 @@ After the raw data are loaded, the script ./GenerateInputData.m with function ./ biotools:primaryContact "Xin Qiao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:author ; sc:description "Dwarna ('about us' in Maltese) is a blockchain-based dynamic consent application for biobanking. The application, which is served through a WordPress plugin, uses a Hyperledger Fabric blockchain, through Hyperledger Composer, to store research participants' consent changes. In this way, the blockchain stores an immutable consent trail. The application contains functionality to manage research studies, research participants and researchers in WordPress." ; @@ -23452,20 +18809,8 @@ After the raw data are loaded, the script ./GenerateInputData.m with function ./ sc:softwareHelp ; sc:url "https://github.com/NicholasMamo/dwarna" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3384, - edam:topic_3474 ; - sc:citation , - "pubmed:31505982" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'BCBSLA', 'DxCG risk-score', 'risk-score', 'member-specific' | Evaluating the performance of a predictive modeling approach to identifying members at high-risk of hospitalization | The evolution of DxCG, the gold standard in risk adjustment and predictive modeling | Our white paper explores how DxCG risk-based predictive modeling has transformed the way healthcare is evaluated, delivered, and paid for, leading the way for value-based care initiatives across the country" ; - sc:featureList edam:operation_3557, - edam:operation_3891 ; - sc:name "DxCG" ; - sc:url "https://resources.cotiviti.com/white-paper/the-evolution-of-dxcg" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3384, @@ -23480,7 +18825,7 @@ After the raw data are loaded, the script ./GenerateInputData.m with function ./ sc:url "https://braindynamicslab.github.io/dyneusr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3173 ; @@ -23494,7 +18839,7 @@ After the raw data are loaded, the script ./GenerateInputData.m with function ./ sc:url "https://tjmkuijpers.shinyapps.io/dynovistool/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0153, edam:topic_3172, @@ -23516,7 +18861,7 @@ After the raw data are loaded, the script ./GenerateInputData.m with function ./ biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -23543,7 +18888,7 @@ Please import your dataset or dowlnoad the sample dataset""" ; sc:url "https://dynalogo.cam.uchc.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174, @@ -23562,7 +18907,7 @@ Dynamic Meta-Storms calculates comprehensive taxonomic and phylogenetic distance sc:url "https://github.com/qibebt-bioinfo/dynamic-meta-storms" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749, @@ -23579,7 +18924,7 @@ Dynamic Meta-Storms calculates comprehensive taxonomic and phylogenetic distance sc:url "https://github.com/molevol-ub/Dysdera_silvatica_genome" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0121, @@ -23603,69 +18948,8 @@ This package has been designed to process FCM data by removing non viable cells, sc:name "E-Flow" ; sc:url "https://github.com/vanNimwegenLab/E-Flow" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3263 ; - sc:citation , - "pmcid:PMC6891635", - "pubmed:31726675" ; - sc:description """An Energy-Efficient OpenHIP-Based Security in Internet of Things Networks. - -4-way hand-shake protocol that provides mobility enhanced with security, in particular authentication and authorisation. - -http://homebase.htt-consult.com/ hip/. - -key -- generated using the HIP_Trans and DH. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'OpenHIP', 'OpenHIP-Based', 'HIP'""" ; - sc:name "E-HIP" ; - sc:url "http://www.avispa-project.org/library/hip.html" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0610, - edam:topic_3304, - edam:topic_3318 ; - sc:citation ; - sc:description """Detecting Behavioral Patterns for Diagnosis and Rehabilitation of Visual Neglect. - -ABSTRACT Visual neglect is a frequent and disabling consequence of right brain damage. Traditional paper- and-pencil tests of neglect have limitations in sensitivity and ecological validity. The Baking Tray Task (BTT), instead, approaches real-life situations, because it requires participants to place 16 physical objects on a board. The number of objects placed on the left and right portions of the board provides a clinical index of visual neglect. Here we present E-TOKEN, a technology-enhanced https: www.overleaf.com project 5dc6d9c64de4e60001116764 version of the BTT. E-TOKEN automatically determines the object locations on the board, and also records the sequence and timing of their placement. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'technology-enhanced', 'Detecting Behavioral Patterns Diagnosis Rehabilitation Visual Neglect', 'E-TOKEN technology-enhanced', 'BTT'""" ; - sc:featureList edam:operation_0337 ; - sc:name "E-TOKEN" ; - sc:url "https://doi.org/10.1101/849505" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0202, - edam:topic_3375, - edam:topic_3377, - edam:topic_3379 ; - sc:citation , - "pubmed:31667657" ; - sc:description """Cardiac risk assessment based on early Phase I data and PK-QTc analysis is concordant with the outcome of thorough QTc trials. - -Cardiac safety assessment is a key regulatory requirement for almost all new drugs. Until recently, one evaluation aspect was via a specifically designated, expensive, and resource intensive thorough QTc study, and a by-time-point analysis using an intersection-union test (IUT). ICH E14 Q&A (R3) (http: www.ich.org fileadmin Public_Web_Site ICH_Products Guidelines Efficacy E14 E14_Q_As_R3__Step4.pdf) allows for analysis of the PK-QTc relationship using early Phase I data to assess QTc liability. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ICH', 'QTc', 'thorough QTc', 'Cardiac risk assessment based early Phase I data PK-QTc analysis concordant outcome thorough QTc ...'""" ; - sc:featureList edam:operation_3435, - edam:operation_3454 ; - sc:name "E14" ; - sc:url "http://www.ich.org/fileadmin/Public_Web_Site/ICH_Products/Guidelines/Efficacy/E14/E14_Q_As_R3__Step4.pdf" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0749, - edam:topic_3295 ; - sc:citation ; - sc:description "> NAME EQUAL TO (PUB. DIFFERENT) bio.tools/eagle_gxe | > NAME (EAGLE) SIMILAR TO (PUB. DIFFERENT) bio.tools/eagle (Eagle) | an algorithm that utilizes a small number of genomic features to predict tissue/cell type-specific enhancer-gene interactions | Enhancer And Gene Learning Ensemble method | EAGLE: an algorithm that utilizes small number of genomic features to predict tissue/cell type specific enhancer-gene interactions | EAGLE used all six features only derived from the enhancers and gene expression datasets, without providing more information like histone modification, methylation or other enhancer-gene (EG) detection datasets" ; - sc:featureList edam:operation_0438, - edam:operation_3501 ; - sc:name "EAGLE_autogenerated" ; - sc:url "https://github.com/EvansGao/EAGLE" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3474, @@ -23688,7 +18972,7 @@ Cardiac safety assessment is a key regulatory requirement for almost all new dru biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3295, @@ -23705,32 +18989,20 @@ Cardiac safety assessment is a key regulatory requirement for almost all new dru biotools:primaryContact "Jason H. Moore", "Patryk Orzechowski" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_3070, - edam:topic_3407 ; - sc:citation , - "pubmed:31384918" ; - sc:description "> NAME EQUAL TO (PUB. DIFFERENT) bio.tools/echo | an Application for Detection and Analysis of Oscillators Identifies Metabolic Regulation on Genome-Wide Circadian Output | An application to find and visualize circadian rhythms in time course data using extended harmonic oscillators | Finding Rhythms Using Extended Circadian Harmonic Oscillators (ECHO) | Provides a function (echo_find()) designed to find rhythms from data using extended harmonic oscillators. For more information, see H. De los Santos et al. (2017) | This is the first step in the PAICE (Pipeline for Amplitude Integration of Circadian Exploration) Suite! This suite of tools provides high-throughput applications for circadian, ultradian, and infradian rhythms | ECHO (Extended Circadian Harmonic Oscillators) is an R-powered application designed to find and visualize circadian rhythms from your data using extended harmonic oscillators | Use and First-Time Set-Up Instructions" ; - sc:featureList edam:operation_1812 ; - sc:license "MIT" ; - sc:name "ECHO_autogenerated" ; - sc:url "https://github.com/delosh653/ECHO" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3768" ; - sc:name "Clustered expression profiles" ; - sc:sameAs "http://edamontology.org/data_3768" ], + sc:additionalType "http://edamontology.org/data_3768" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Clustered expression profiles" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3308 ; sc:citation , @@ -23749,7 +19021,7 @@ Cardiac safety assessment is a key regulatory requirement for almost all new dru sc:url "https://github.com/GGiecold/ECLAIR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -23769,7 +19041,7 @@ Abstract Gene expression and regulation, a key molecular mechanism driving human sc:url "https://github.com/daifengwanglab/ECMarker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3068 ; @@ -23785,7 +19057,7 @@ Abstract Gene expression and regulation, a key molecular mechanism driving human sc:url "https://github.com/djpt999/ECOTOOL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0194, @@ -23804,7 +19076,7 @@ Abstract Gene expression and regulation, a key molecular mechanism driving human sc:url "https://github.com/dschrempf/edcluster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0749, @@ -23822,7 +19094,7 @@ Abstract Gene expression and regulation, a key molecular mechanism driving human sc:url "https://github.com/oushujun/EDTA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304 ; sc:citation , "pmcid:PMC6413114", @@ -23832,7 +19104,7 @@ Abstract Gene expression and regulation, a key molecular mechanism driving human sc:url "http://openeeg.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3334 ; sc:description "Prototype neurofeedback application." ; @@ -23845,7 +19117,7 @@ Abstract Gene expression and regulation, a key molecular mechanism driving human biotools:primaryContact "Jim Peters" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3334 ; sc:citation , "pmcid:PMC6815881", @@ -23856,7 +19128,7 @@ License either MIT or GLP-2.0""" ; sc:url "https://github.com/svndl/EEGSourceSim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -23870,7 +19142,7 @@ License either MIT or GLP-2.0""" ; sc:url "https://efi.igb.illinois.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -23884,7 +19156,7 @@ License either MIT or GLP-2.0""" ; sc:url "http://www.idruglab.com/drd/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Ensemble Learning Approach for Stability Prediction of Interface and Core mutations." ; sc:featureList edam:operation_0250, edam:operation_0331, @@ -23894,7 +19166,7 @@ License either MIT or GLP-2.0""" ; sc:url "http://elaspic.kimlab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0607, edam:topic_3324, @@ -23912,7 +19184,7 @@ License either MIT or GLP-2.0""" ; sc:url "https://sparclex.github.io/elimu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0610, @@ -23932,7 +19204,7 @@ In 1988, the Centre for Research on the Epidemiology of Disasters (CRED) launche sc:url "https://www.emdat.be/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0780, @@ -23954,25 +19226,8 @@ In 1988, the Centre for Research on the Epidemiology of Disasters (CRED) launche sc:url "https://github.com/michaelgruenstaeudl/EMBL2checklists" ; biotools:primaryContact "Michael Gruenstaeudl" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_3293, - edam:topic_3489 ; - sc:citation , - "pubmed:31775077" ; - sc:description """Forensic data from a mixed West African sample, Côte d'Ivoire (Ivory Coast), and Rwanda. - -In total, the EMPOP Release 13 holds 48,572 quality-controlled mitotypes with at least HVS-I variation (16024-16365). Thereof,. - -The EMPOP project and database arose from collaborative studies that were established and discussed at scientific meetings. We continue this tradition to inspire and facilitate research""" ; - sc:featureList edam:operation_2421, - edam:operation_2428, - edam:operation_3894 ; - sc:name "EMPOP" ; - sc:url "https://empop.online" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3324, @@ -23986,45 +19241,8 @@ The EMPOP project and database arose from collaborative studies that were establ sc:softwareHelp ; sc:url "https://sourcesup.renater.fr/www/emulsion-public" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0622, - edam:topic_0654, - edam:topic_3277, - edam:topic_3474 ; - sc:citation , - "pubmed:31713622" ; - sc:description """New developments on the Encyclopedia of DNA Elements (ENCODE) data portal. - -Encyclopedia of DNA Elements – ENCODE. - -Encyclopedia of DNA Elements (ENCODE). - -ENCODE: Encyclopedia of DNA Elements. - -About ENCODE ProjectGetting StartedExperiments. - -bioinformatics biology deep learning genetic genomic life sciences machine learning. - -Enter search terms to filter the annotations included in the matrix. - -The Encyclopedia of DNA Elements (ENCODE) Consortium is an international collaboration of research groups funded by the National Human Genome Research Institute (NHGRI). - -Enter search terms to filter the experiments included in the matrix. - -ENCODE Consortium Analysis Working Group. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/encode_dcc (ENCODEPROJECT.ORG)""" ; - sc:featureList edam:operation_0441, - edam:operation_0525, - edam:operation_2421, - edam:operation_3196, - edam:operation_3695 ; - sc:name "ENCODE" ; - sc:url "https://www.encodeproject.org/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0749, @@ -24041,7 +19259,7 @@ ENCODE Consortium Analysis Working Group. sc:url "http://www.licpathway.net/ENdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3293, @@ -24061,37 +19279,8 @@ ENCODE Consortium Analysis Working Group. sc:url "https://github.com/Pbdas/epa-ng" ; biotools:primaryContact "Pierre Barbera" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0659, - edam:topic_0749, - edam:topic_3169, - edam:topic_3500 ; - sc:citation , - "pubmed:31680159" ; - sc:description """enhanced data visualization and extension to ncRNA promoters. - -EPD The Eukaryotic Promoter Database. - -2019-04-26 -- First EPDnew release of non-coding RNA promoter collection for H. sapiens. - -Swiss Institute of Bioinformatics. - -This resource allows the access to several databases of experimentally validated promoters: EPD and EPDnew databases. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/epd. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/webprinses (EPFL.CH), bio.tools/tuberculist (EPFL.CH), bio.tools/psychoprot (EPFL.CH), bio.tools/cgdnaweb (EPFL.CH), bio.tools/lapmix (EPFL.CH). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'EPD 2020'""" ; - sc:featureList edam:operation_0224, - edam:operation_0337, - edam:operation_0440 ; - sc:name "EPD_autogenerated" ; - sc:url "https://epd.epfl.ch" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -24111,25 +19300,8 @@ This resource allows the access to several databases of experimentally validated sc:url "https://github.com/Cobanoglu-Lab/EPEE" ; biotools:primaryContact "Murat Can Çobanoğlu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_3168, - edam:topic_3678 ; - sc:citation , - "pubmed:31603794" ; - sc:description """A framework for de novo assembly of single-cell sequencing reads. - -Assembling genomes from single-cell sequencing data is essential for single-cell studies. However, single-cell assemblies are challenging due to (i) the highly non-uniform read coverage and (ii) the elevated levels of sequencing errors and chimeric reads. In this study, we present a new framework called EPGA-SC for de novo assembly of single-cell sequencing reads. The EPGA assembler has designed strategies to solve the problems caused by sequencing errors, sequencing biases and repetitive regions. However, the extremely unbalanced and richer error types prevent EPGA to achieve high performance in single-cell sequencing data. In this study, we designed EPGA-SC based on EPGA. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0524, - edam:operation_0525, - edam:operation_3644 ; - sc:name "EPGA-SC" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31603794" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2830, @@ -24150,7 +19322,7 @@ Assembling genomes from single-cell sequencing data is essential for single-cell biotools:primaryContact "Viart Benjamin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3173, edam:topic_3518, @@ -24174,7 +19346,7 @@ Assembling genomes from single-cell sequencing data is essential for single-cell "Stephan Pabinger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -24194,7 +19366,7 @@ Assembling genomes from single-cell sequencing data is essential for single-cell sc:url "https://OpenMS.de/epifany" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0203, @@ -24220,7 +19392,7 @@ The network is funded by the Canadian Institutes of Health Research (CIHR) and G sc:url "https://github.com/imbbLab/EPIGENE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0102, @@ -24236,7 +19408,7 @@ The network is funded by the Canadian Institutes of Health Research (CIHR) and G sc:url "http://www.cs.ucf.edu/~xiaoman/EPIP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168, edam:topic_3474 ; @@ -24253,7 +19425,7 @@ EPIVAN is a new deep learning method that enables predicting long-range EPIs usi sc:url "https://github.com/hzy95/EPIVAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_3168 ; @@ -24269,7 +19441,7 @@ Next generation sequencing technology has led to the development of methods for sc:url "https://github.com/BDanalysis/ERINS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3318 ; sc:citation , @@ -24286,21 +19458,8 @@ Next generation sequencing technology has led to the development of methods for sc:url "http://erosdock.loria.fr" ; biotools:primaryContact "Isaure Chauvot de Beauchêne" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3315, - edam:topic_3322, - edam:topic_3403 ; - sc:citation , - "pmcid:PMC6701711", - "pubmed:31428882" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'effective shunt', 'ES should', 'equation standard' | Predictive validity of a novel non-invasive estimation of effective shunt fraction in critically ill patients | Baillie & Bretherick, 2018. Presented as is with no guarantees | Enter an ABG to calculate the effective shunt (ES)- an intuitive measure of pulmonary oxygenation calculated using assumed values for key variables including VO2 and cardiac ouput (Q). This equation summarises the effective shunt approach:" ; - sc:featureList edam:operation_0446, - edam:operation_3799 ; - sc:name "ES" ; - sc:url "http://baillielab.net/es" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3399 ; @@ -24315,7 +19474,7 @@ Next generation sequencing technology has led to the development of methods for sc:url "https://hiv.biozentrum.unibas.ch/ETI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3403, edam:topic_3407, @@ -24329,83 +19488,8 @@ Next generation sequencing technology has led to the development of methods for sc:name "ETM-DB" ; sc:url "http://biosoft.kaist.ac.kr/etm" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_3303, - edam:topic_3378, - edam:topic_3379, - edam:topic_3393 ; - sc:citation , - "pmcid:PMC6906985", - "pubmed:31650560" ; - sc:description """The global Edoxaban Treatment in routine cliNical prActice (ETNA) noninterventional study program. - -BACKGROUND:Randomized controlled trials showed the nonvitamin K oral anticoagulant (NOAC) edoxaban was effective and safe for stroke and systemic embolism prevention in nonvalvular atrial fibrillation (AF) and for the prevention and treatment of venous thromboembolism (VTE; including pulmonary embolism and deep vein thrombosis). Additional research is needed to evaluate the effects of edoxaban in routine clinical practice. Therefore, the Edoxaban Treatment in routine cliNical prActice (ETNA) program is being conducted to provide routine clinical care data on characteristics and outcomes in patients with AF or VTE receiving edoxaban. - -||| HOMEPAGE MISSING!""" ; - sc:name "ETNA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31650560" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3303, - edam:topic_3360, - edam:topic_3373, - edam:topic_3375, - edam:topic_3379 ; - sc:citation , - "pmcid:PMC6897335", - "pubmed:31849649" ; - sc:description """European Federation for Exploratory Medicines Development Lyon Conference 2019. - -Download presentations of the Lyon conference 2019. - -European Federation for Exploratory Medicines Development. - -Presentations by invited Speakers and Oral Presenters Our speakers and oral presenters delivered some very compelling and thought provoking presentations at the EUFEMED 2019 conference and we’re pleased to be… Read More. - -Eufemed - European Federation for Exploratory Medicines Development - consulted for revision of European regulations & guidelines related to clinical drug development. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'European Federation Exploratory Medicines Development Lyon Conference 2019'""" ; - sc:featureList edam:operation_2426, - edam:operation_3283, - edam:operation_3454 ; - sc:name "EUFEMED" ; - sc:softwareHelp ; - sc:url "https://www.eufemed.eu/download-presentations-of-the-lyon-conference-2019/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3067, - edam:topic_3382, - edam:topic_3412, - edam:topic_3421 ; - sc:citation , - "pubmed:31591654" ; - sc:description """preliminary results from the IHU-IRCAD-EAES EURO-FIGS registry. - -Login – European Fluorescence Imaging Guided Surgery. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Fluorescence-based cholangiography', 'METHODS:EURO-FIGS', 'ICG dose timing NIRF-C', 'NIRF-C'""" ; - sc:featureList edam:operation_0337, - edam:operation_3283 ; - sc:name "EURO-FIGS" ; - sc:url "http://www.euro-figs.eu" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3305, - edam:topic_3376 ; - sc:citation , - "pmcid:PMC6686464", - "pubmed:31391120" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'indicators' | Evaluation of data availability on population health indicators at the regional level across the European Union | Welcome to the eurohealthydata portal! | This portal aggregates the data collected within the scope of the Project EURO-HEALTHY – Shaping EUROpean policies to promote HEALTH equitY, coordinated by the Centre of Studies for Geography and Spatial Planning (CEGOT) at the University of Coimbra and funded by the European Union’s Horizon 2020 research and innovation programme under grant agreement number 643398. Access to this portal is protected and subject to authorization" ; - sc:featureList edam:operation_3435, - edam:operation_3436 ; - sc:name "EURO-HEALTHY" ; - sc:url "http://www.eurohealthydata.uc.pt" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3855 ; @@ -24417,7 +19501,7 @@ Login – European Fluorescence Imaging Guided Surgery. sc:url "https://github.com/vishhvaan/eve-pi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -24434,7 +19518,7 @@ Login – European Fluorescence Imaging Guided Surgery. sc:url "https://github.com/mbglab/EVR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -24458,7 +19542,7 @@ Predict protein structure, function and mutations using evolutionary sequence co sc:url "https://evcouplings.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0780, @@ -24478,7 +19562,7 @@ Predict protein structure, function and mutations using evolutionary sequence co "Yaoqi Zhou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0625, @@ -24501,7 +19585,7 @@ Predict protein structure, function and mutations using evolutionary sequence co "Yongshuai Jiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0654, @@ -24519,7 +19603,7 @@ Predict protein structure, function and mutations using evolutionary sequence co sc:url "https://bigd.big.ac.cn/ewas/datahub" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0128, @@ -24534,19 +19618,8 @@ Predict protein structure, function and mutations using evolutionary sequence co sc:name "EWCA" ; sc:url "https://github.com/RongquanWang/EWCA" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3318, - edam:topic_3375 ; - sc:citation , - "pmcid:PMC6639690", - "pubmed:31360782" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'photon', 'buildup' | A program for calculating photon exposure and energy absorption buildup factors | This research presents a new Windows compatible program (EXABCal) for photon exposure and energy absorption buildup factors for standard energy grid from 0.015- 15 MeV for elements, mixtures and compound. This program was written using Python programming language and the calculation of buildup factors was based on the well-known Geometric Progression (GP) fitting procedure. The equivalent atomic numbers and GP fitting parameters of mixtures and compounds can also be evaluated using this program" ; - sc:name "EXABCal" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31360782" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3170, @@ -24567,7 +19640,7 @@ Predict protein structure, function and mutations using evolutionary sequence co sc:url "http://acgt.cs.tau.ac.il/expander/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -24591,7 +19664,7 @@ HLA-Upgrade uses the power of haplotypes to predict full high resolution HLA-A, sc:url "https://hla.univ-nantes.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , @@ -24606,7 +19679,7 @@ You can use the editor on GitHub to maintain and preview the content for your we sc:url "https://tonywu2018.github.io/EasyMEG/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -24622,7 +19695,7 @@ You can use the editor on GitHub to maintain and preview the content for your we sc:url "https://easymodel.udl.cat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -24646,7 +19719,7 @@ You can use the editor on GitHub to maintain and preview the content for your we biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3172, @@ -24666,7 +19739,7 @@ You can use the editor on GitHub to maintain and preview the content for your we biotools:primaryContact "Mattia Zampieri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -24683,7 +19756,7 @@ You can use the editor on GitHub to maintain and preview the content for your we sc:url "https://github.com/bhusain/EdgeScaping" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3172, @@ -24701,7 +19774,7 @@ You can use the editor on GitHub to maintain and preview the content for your we sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31119671" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3334 ; sc:description "Program for neurofeedback that supports modularEEG. Uses fast Fourier transform to extract frequency bands from the raw signal." ; @@ -24711,7 +19784,7 @@ You can use the editor on GitHub to maintain and preview the content for your we sc:url "https://realization.org/old/page/topics/electric_guru.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3407, @@ -24733,32 +19806,8 @@ You can use the editor on GitHub to maintain and preview the content for your we biotools:primaryContact "Di Du", "Xiaoyang Su" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3318, - edam:topic_3855 ; - sc:citation , - "pmcid:PMC6767676", - "pubmed:31540360" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | An Open-Source Wireless Hardware and Software Platform for Building Energy and Indoor Environmental Monitoring and Control | This work demonstrates an open-source hardware and software platform for monitoring the performance of buildings, called Elemental, that is designed to provide data on indoor environmental quality, energy usage, HVAC operation, and other factors to its users. It combines: (i) custom printed circuit boards (PCBs) with RFM69 frequency shift keying (FSK) radio frequency (RF) transceivers for wireless sensors, control nodes, and USB gateway, (ii) a Raspberry Pi 3B with custom firmware acting as either a centralized or distributed backhaul, and (iii) a custom dockerized application for the backend called Brood that serves as the director software managing message brokering via Message Queuing Telemetry Transport (MQTT) protocol using VerneMQ, database storage using InfluxDB, and data visualization using Grafana" ; - sc:name "Elemental" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31540360" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_2229 ; - sc:citation ; - sc:description """A theoretical explanation for Lewis’s law and Aboav-Weaire’s law. - -Background: Lewis’s law and Aboav-Weaire’s law are two fundamental laws used to describe the topology of two-dimensional (2D) structures; however, their theoretical bases remain unclear. Methods: We used R package Conicfit software to fit ellipses based on the geometric parameters of polygonal cells with ten different kinds of natural and artificial 2D structures. Results: Our results indicated that the cells could be classified as ellipse’s inscribed polygon (EIP) and that they tended to form ellipse’s maximal inscribed polygon (EMIP). This phenomenon was named as ellipse packing. On the basis of the number of cell edges, cell area, and semi-axes of fitted ellipses, we derived and verified new relations of Lewis’s law and Aboav-Weaire’s law. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ellipse', 'packing', 'ellipse packing', 'Conicfit'""" ; - sc:name "Ellipse packing two-dimensional celltessellation" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.27421V3" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0736, edam:topic_3382, @@ -24774,19 +19823,8 @@ Background: Lewis’s law and Aboav-Weaire’s law are two fundamental laws used sc:name "Emap2sec" ; sc:url "http://www.kiharalab.org/emap2sec/index.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0218, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6736772", - "pubmed:31516953" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Lastra-Diaz', 'Chirigati', 'HESML', 'word-similarity' | Reproducibility dataset for a large experimental survey on word embeddings and ontology-based methods for word similarity | Symmetric Pattern Based Word Embeddings for Improved Word Similarity Prediction | In proceedings of CoNLL 2015 (long paper) | We present a novel word level vector representation based on symmetric patterns (SPs)" ; - sc:featureList edam:operation_3436 ; - sc:name "Embeddings" ; - sc:url "https://homes.cs.washington.edu/~roysch/papers/sp_embeddings/sp_embeddings.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -24801,7 +19839,7 @@ Background: Lewis’s law and Aboav-Weaire’s law are two fundamental laws used sc:url "https://github.com/xy-chen16/EnClaSC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3474 ; @@ -24821,7 +19859,7 @@ Background: Lewis’s law and Aboav-Weaire’s law are two fundamental laws used biotools:primaryContact "Xiao-Fei Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -24842,26 +19880,26 @@ Background: Lewis’s law and Aboav-Weaire’s law are two fundamental laws used a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3246" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3621" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3621" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -24885,7 +19923,7 @@ Background: Lewis’s law and Aboav-Weaire’s law are two fundamental laws used biotools:primaryContact "Brian Searle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -24909,7 +19947,7 @@ Background: Lewis’s law and Aboav-Weaire’s law are two fundamental laws used biotools:primaryContact "Z. Guo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web service" ; @@ -24943,7 +19981,7 @@ Background: Lewis’s law and Aboav-Weaire’s law are two fundamental laws used sc:url "http://www.ensembl.org/info/genome/compara/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3318 ; @@ -24961,7 +19999,7 @@ Background: Lewis’s law and Aboav-Weaire’s law are two fundamental laws used biotools:primaryContact "Bowman Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3305, @@ -24976,7 +20014,7 @@ Background: Lewis’s law and Aboav-Weaire’s law are two fundamental laws used sc:url "http://enterobase.warwick.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0602, @@ -24996,38 +20034,14 @@ Background: Lewis’s law and Aboav-Weaire’s law are two fundamental laws used sc:url "https://pypi.org/project/entrezpy/" ; biotools:primaryContact "Jan buchmann" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_3810, - edam:topic_3855 ; - sc:citation ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Enviromics breeding', 'GIS-GE' | applications and perspectives on envirotypic-assisted selection | Data files used in Resende, RT et al. 2019" ; - sc:featureList edam:operation_3196, - edam:operation_3557 ; - sc:name "Enviromics" ; - sc:url "https://figshare.com/articles/Enviromics_data/8264132" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0821, - edam:topic_2275, - edam:topic_3534 ; - sc:citation , - "pubmed:31386808" ; - sc:description "> HOMEPAGE MISSING! | Protein-Ligand Docking of Multiple Reactive States along a Reaction Coordinate in Enzymes | Enzymes play a pivotal role in all biological systems. These biomachines are the most effective catalysts known, dramatically enhancing the rate of reactions by more than 10 orders of magnitude relative to the uncatalyzed reactions in solution. Predicting the correct, mechanistically appropriate binding modes for substrate and product, as well as all reaction intermediates and transition states, along a reaction pathway is immensely challenging and remains an unsolved problem. In the present work, we developed an effective methodology for identifying probable binding modes of multiple ligand states along a reaction coordinate in an enzyme active site" ; - sc:featureList edam:operation_0482, - edam:operation_3896, - edam:operation_3899 ; - sc:name "EnzyDock" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31386808" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "A versatile framework based on the Hadoop implementation of the MapReduce algorithm, dedicated to high throughput sequencing data analysis on distributed computers. With Eoulsan, users can easily set up a cloud computing cluster and automate the analysis of several samples at once using various software solutions available. Working either on standalone workstations or cloud computing clusters, Eoulsan provides an integrated and flexible solution for RNA-Seq data analysis of differential expression." ; sc:name "Eoulsan" ; sc:url "http://outils.genomique.biologie.ens.fr/eoulsan/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168, @@ -25043,7 +20057,7 @@ Background: Lewis’s law and Aboav-Weaire’s law are two fundamental laws used sc:url "https://github.com/m4merg/EphaGen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -25058,7 +20072,7 @@ Background: Lewis’s law and Aboav-Weaire’s law are two fundamental laws used sc:url "http://122.205.95.139/Epi-GTBN/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3170, @@ -25080,7 +20094,7 @@ Background: Lewis’s law and Aboav-Weaire’s law are two fundamental laws used "Haowen Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3169, @@ -25100,7 +20114,7 @@ Background: Lewis’s law and Aboav-Weaire’s law are two fundamental laws used biotools:primaryContact "Sheng Zhong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -25122,23 +20136,8 @@ Background: Lewis’s law and Aboav-Weaire’s law are two fundamental laws used sc:url "https://epigenome.wustl.edu/EpiCompare/" ; biotools:primaryContact "Yu He" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3295 ; - sc:citation , - "pubmed:31710662" ; - sc:description """Epigenetic Dissection of Intra-Sample-Heterogeneity with online GUI. - -Epigenetic Dissection of Intra-Sample-Heterogeneity. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/epidish. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'IMPLEMENTATION:EpiDISH'""" ; - sc:featureList edam:operation_3629 ; - sc:name "EpiDISH_autogenerated" ; - sc:url "https://www.biosino.org/EpiDISH/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_3305, @@ -25157,18 +20156,8 @@ This web application generates an estimate of infectious disease transmissibilit sc:softwareHelp ; sc:url "https://shiny.dide.imperial.ac.uk/epiestim" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_3382 ; - sc:citation , - "pubmed:31544932" ; - sc:description "> NAME (EpiGraph) SIMILAR TO (PUB. DIFFERENT) bio.tools/epigraph (EpiGRAPH) | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/imagej (IMAGEJ.NET) | an open-source platform to quantify epithelial organization | EpiGraph is a Fiji plugin that combines computational geometry and graph theory to measure the degree of arrangement in any computational or natural tessellation | The EpiGraph is a Fiji plugin that combines computational geometry and graph theory to measure the degree of arrangement in any made by computational or natural tessellation" ; - sc:license "GPL-3.0" ; - sc:name "EpiGraph_autogenerated" ; - sc:url "https://imagej.net/EpiGraph" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3295, @@ -25187,7 +20176,7 @@ This web application generates an estimate of infectious disease transmissibilit sc:url "https://github.com/giupardeb/EpiMethEx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -25206,7 +20195,7 @@ Activation of regulatory elements is thought to be inversely correlated with DNA sc:url "https://github.com/skoklab/EpiMethylTag" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3295, @@ -25229,7 +20218,7 @@ Activation of regulatory elements is thought to be inversely correlated with DNA biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, edam:topic_3295 ; @@ -25243,7 +20232,7 @@ Activation of regulatory elements is thought to be inversely correlated with DNA sc:url "https://github.com/harmancilab/EpiSAFARI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -25257,22 +20246,22 @@ Activation of regulatory elements is thought to be inversely correlated with DNA a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "RNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3125, edam:topic_3173, @@ -25288,7 +20277,7 @@ Activation of regulatory elements is thought to be inversely correlated with DNA sc:url "https://github.com/wilkinsonlab/epigenomics_pipeline" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, edam:topic_3170, @@ -25312,7 +20301,7 @@ This pakage is for estimating m5c level by using Kallisto in Episo""" ; sc:url "https://github.com/liujunfengtop/Episo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0602, @@ -25332,26 +20321,8 @@ This pakage is for estimating m5c level by using Kallisto in Episo""" ; sc:url "http://epithelial-modelling-platform.nectar.auckland.ac.nz/" ; biotools:primaryContact "Dewan M. Sarwar" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_2269, - edam:topic_3295, - edam:topic_3308 ; - sc:citation , - "pubmed:31782758" ; - sc:description """Proactive Visual and Statistical Analysis of Genomic Data in Epiviz. - -Epiviz is an interactive visualization tool for functional genomics data. It supports genome navigation like other genome browsers, but allows multiple visualizations of data within genomic regions using scatterplots, heatmaps and other user-supplied visualizations. It also includes data from the Gene Expression Barcode project for transcriptome visualization. It has a flexible plugin framework so users can add d3 visualizations. You can see a video tour here. - -Epiviz is a scientific information visualization tool for genetic and epigenetic data, used to aid in the exploration and understanding of correlations between various genome features""" ; - sc:featureList edam:operation_0337, - edam:operation_2238, - edam:operation_3463 ; - sc:name "Epiviz" ; - sc:url "http://epiviz.github.io/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2269, @@ -25365,7 +20336,7 @@ Epiviz is a scientific information visualization tool for genetic and epigenetic sc:url "https://github.com/TheAngryFox/ModelExplorer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0121, @@ -25382,7 +20353,7 @@ Epiviz is a scientific information visualization tool for genetic and epigenetic sc:url "http://EuRBPDB.syshospital.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation , @@ -25401,7 +20372,7 @@ Epiviz is a scientific information visualization tool for genetic and epigenetic sc:url "http://www.euroformix.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3301, @@ -25414,7 +20385,7 @@ Epiviz is a scientific information visualization tool for genetic and epigenetic sc:url "https://github.com/aauss/EventEpi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0634, @@ -25432,7 +20403,7 @@ Epiviz is a scientific information visualization tool for genetic and epigenetic sc:url "https://web.rniapps.net/evimass/evimass/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, edam:topic_3517 ; @@ -25448,13 +20419,13 @@ Epiviz is a scientific information visualization tool for genetic and epigenetic sc:url "https://github.com/Sage-Bionetworks/EvidenceAggregatedDriverRanking" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "The EVidenceModeler (aka EVM) software combines ab intio gene predictions and protein and transcript alignments into weighted consensus gene structures. EVM provides a flexible and intuitive framework for combining diverse evidence types into a single automated gene structure annotation system." ; sc:name "EvidenceModeler" ; sc:url "https://github.com/EVidenceModeler/EVidenceModeler.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -25476,7 +20447,7 @@ Epiviz is a scientific information visualization tool for genetic and epigenetic sc:url "https://github.com/mmagnus/EvoClustRNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -25499,7 +20470,7 @@ EvoEF is a composite energy force field that contains two versions. The first ve sc:url "https://zhanglab.ccmb.med.umich.edu/EvoEF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3168, @@ -25518,10 +20489,9 @@ EvoEF is a composite energy force field that contains two versions. The first ve a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128 ; sc:author , @@ -25538,7 +20508,7 @@ EvoEF is a composite energy force field that contains two versions. The first ve biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623, edam:topic_3407 ; @@ -25551,37 +20521,15 @@ EvoEF is a composite energy force field that contains two versions. The first ve sc:url "http://evolclustdb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0659 ; sc:description "EvryRNA platform is a web server providing various algorithms and bioinformatics tools developed in the laboratory IBISC of UEVE/Genopole, and dedicated to the prediction and the analysis of non-coding RNAs (ncRNAs)." ; sc:name "EvryRNA" ; sc:url "https://evryrna.ibisc.univ-evry.fr/evryrna/evryrna/evryrna_home" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0160, - edam:topic_0166, - edam:topic_0736, - edam:topic_0780 ; - sc:citation , - "pmcid:PMC6879387", - "pubmed:31819721" ; - sc:description """Efficient identification of NLR by using a genome-wide protein domain and motif survey program, Ex-DOMAIN. - -Genomic and amino acid sequences of organisms are freely available from various public databases. We designed a genome-wide survey program, named "Ex-DOMAIN" (exhaustive domain and motif annotator using InterProScan), of protein domains and motifs to aid in the identification and characterization of proteins by using the InterProScan sequence analysis application, which can display information and annotations of targeted proteins and genes, conserved protein domains and motifs, chromosomal locations, and structural diversities of target proteins. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'cucumber'""" ; - sc:featureList edam:operation_0239, - edam:operation_2421, - edam:operation_3767 ; - sc:name "Ex-DOMAIN" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31819721" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -25602,7 +20550,7 @@ Genomic and amino acid sequences of organisms are freely available from various sc:url "http://hx2.med.upenn.edu/EXms/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -25620,7 +20568,7 @@ Genomic and amino acid sequences of organisms are freely available from various biotools:primaryContact "Alexandros Stamatakis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -25641,7 +20589,7 @@ Abstract Motivation Solutions to stochastic Boolean models are usually estimated sc:url "https://github.com/sysbio-curie/exact-stoch-log-mod" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -25658,7 +20606,7 @@ Abstract Motivation Solutions to stochastic Boolean models are usually estimated sc:url "https://github.com/exautomate/Exautomate-Core" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -25676,18 +20624,8 @@ Exon skipping (ES), the most common alternative splicing event, has been reporte sc:name "ExonSkipDB" ; sc:url "https://ccsm.uth.edu/ExonSkipDB/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_3399 ; - sc:citation , - "pubmed:31419179" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'Exoscore exoskeleton' | A Design Tool to Evaluate Factors Associated With Technology Acceptance of Soft Lower Limb Exosuits by Older Adults | OBJECTIVE:This pilot study proposed and performs initial testing with Exoscore, a design evaluation tool to assess factors related to acceptance of exoskeleton by older adults, during the technology development and testing phases. BACKGROUND:As longevity increases and our aging population continues to grow, assistive technologies such as exosuits and exoskeletons can provide enhanced quality of life and independence. Exoscore is a design and prototype stage evaluation method to assess factors related to perceptions of the technology, the aim being to optimize technology acceptance. METHOD:In this pilot study, we applied the three-phase Exoscore tool during testing with 11 older adults" ; - sc:featureList edam:operation_3454 ; - sc:name "Exoscore" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31419179" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -25705,7 +20643,7 @@ Exon skipping (ES), the most common alternative splicing event, has been reporte biotools:primaryContact "Illumina Open Source Software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0102, @@ -25730,7 +20668,7 @@ ExpansionHunter Denovo (EHdn) is a suite of tools for detecting novel expansions sc:url "https://github.com/Illumina/ExpansionHunterDenovo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3320 ; sc:citation ; @@ -25745,7 +20683,7 @@ ExpansionHunter Denovo (EHdn) is a suite of tools for detecting novel expansions sc:url "https://github.com/YeoLab/Expedition" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3379, edam:topic_3384, @@ -25769,7 +20707,7 @@ QUIZ: Presentation, QUIZ + IMAGES""" ; sc:url "http://www.ExploreASL.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3172, @@ -25794,14 +20732,14 @@ The database is being actively updated.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3671" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Text" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "Easy interface for determining the Clermont 2013 phylotype of an E. coli isolate" ; sc:featureList edam:operation_3478 ; @@ -25809,25 +20747,8 @@ The database is being actively updated.""" ; sc:url "http://ezclermont.hutton.ac.uk/" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0632, - edam:topic_2269, - edam:topic_3474 ; - sc:citation , - "pubmed:31608516" ; - sc:description """Bayesian Machine Learning in Metamaterial Design. - -Framework for Data-Driven Design and Analysis of Structures (F3DAS). - -The main code is called "STEP1_F3DAS.m". This code includes inputs that should be changed by the user when dealing with a new problem. The user typically needs to change the "generate_mesh.m" file as well, to create the parametric geometries of the structure/metamaterial that is simulated by Finite Element Analysis (FEA). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Bayesian Machine Learning Metamaterial Design', 'brittle', 'supercompressible', 'polymers'""" ; - sc:license "BSD-3-Clause" ; - sc:name "F3DAS" ; - sc:url "https://github.com/mabessa/F3DAS" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0091, @@ -25851,41 +20772,8 @@ Wahlberg, E. 2019. FACEPAI: a script for fast and consistent environmental DNA p sc:name "FACEPAI" ; sc:url "https://github.com/emmawahl/facepai" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0154, - edam:topic_0769, - edam:topic_3174, - edam:topic_3301 ; - sc:citation ; - sc:description """antimicrobial peptide screening in genomes and metagenomes. - -The antimicrobial peptides prospection pipeline. - -Fast AMP Classification System: Predict AMPs in (meta)genomes and peptides. - -FACS pipeline - Fast AMP Classification System. - -FACS: antimicrobial peptide screening in genomes and metagenomes Celio Dias Santos-Junior, Shaojun Pan, Xing-Ming Zhao, Luis Pedro Coelho bioRxiv 2019.12.17.880385; doi: https://doi.org/10.1101/2019.12.17.880385. - -bioinformatics genomics biology metagenomics ngless peptide. - -Fast AMP Clustering System pipeline was benchmarked using the set of scripts available in this repository. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/facs. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/pymzml (GITHUB.COM)""" ; - sc:featureList edam:operation_0252, - edam:operation_0310, - edam:operation_0418, - edam:operation_0436, - edam:operation_3211 ; - sc:license "MIT" ; - sc:name "FACS_autogenerated" ; - sc:url "http://big-data-biology.org/software/facs" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3382 ; sc:citation , @@ -25897,7 +20785,7 @@ Fast AMP Clustering System pipeline was benchmarked using the set of scripts ava sc:url "https://github.com/3d-pli/FAConstructor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3070, edam:topic_3518 ; @@ -25912,18 +20800,18 @@ Fast AMP Clustering System pipeline was benchmarked using the set of scripts ava a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3256" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3956" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3256" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -25948,7 +20836,7 @@ Fast AMP Clustering System pipeline was benchmarked using the set of scripts ava . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "The Data FAIRport includes FAIRifier and Metadata Editor (to create), FAIR Data Point (to publish), FAIR Search Engine (to find), ORKA (to annotate) FAIR data descriptions." ; @@ -25957,7 +20845,7 @@ Fast AMP Clustering System pipeline was benchmarked using the set of scripts ava biotools:primaryContact "Rob Hooft" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3077 ; sc:description "FAIR search engine, designed as a prototype for finding FAIR resources." ; @@ -25966,23 +20854,8 @@ Fast AMP Clustering System pipeline was benchmarked using the set of scripts ava sc:name "FAIR Search Engine" ; sc:url "https://fairtraining.fair-dtls.surf-hosted.nl/search/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_3489, - edam:topic_3571 ; - sc:citation , - "pmcid:PMC6754447", - "pubmed:31541130" ; - sc:description "> VERY_LOW CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/galaxy_australia (ORG.AU) | > CORRECT NAME OF TOOL COULD ALSO BE 'automatically-measurable FAIR', 'Evaluator', 'Indicators', 'Maturity' | Evaluating FAIR maturity through a scalable, automated, community-governed framework | This repository contains the results of the FAIR Metrics Group | FAIR Maturity Indicators and Tools | An angularJS app for FAIR Maturity Evaluation service | The FAIR Maturity Evaluation Service | In 2016, the ‘FAIR Guiding Principles for scientific data management and stewardship’ were published in Scientific Data | Resources and guidelines to assess the FAIRness of digital resources | FAIRsharing is a community-driven resource and has a growing number of users, adopters, collaborators and activities working to enable the FAIR Principles" ; - sc:featureList edam:operation_2422, - edam:operation_3761, - edam:operation_3763 ; - sc:license "MIT" ; - sc:name "FAIR_autogenerated" ; - sc:url "https://www.go-fair.org/fair-principles/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_3345 ; @@ -25992,7 +20865,7 @@ Fast AMP Clustering System pipeline was benchmarked using the set of scripts ava sc:url "https://github.com/FAIRDataTeam/FAIRifier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -26008,7 +20881,7 @@ Fast AMP Clustering System pipeline was benchmarked using the set of scripts ava sc:url "https://nerdd.zbh.uni-hamburg.de/fame3/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -26025,7 +20898,7 @@ Fast AMP Clustering System pipeline was benchmarked using the set of scripts ava sc:url "https://cran.r-project.org/web/packages/FAMoS/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3474, @@ -26048,7 +20921,7 @@ Fast AMP Clustering System pipeline was benchmarked using the set of scripts ava . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0659, edam:topic_3512 ; @@ -26066,14 +20939,12 @@ Fast AMP Clustering System pipeline was benchmarked using the set of scripts ava a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -26090,20 +20961,19 @@ Fast AMP Clustering System pipeline was benchmarked using the set of scripts ava a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Bill Pearson", - "Web Production" ; + "Job Dispatcher" ; sc:citation , , + , "pmcid:PMC5013910", "pubmed:27256311" ; sc:description "Sequence similarity searching against protein databases. FASTX and FASTY translate a DNA query. Optimal searches with SSEARCH (local), GGSEARCH (global) and GLSEARCH (global query, local database)." ; @@ -26119,10 +20989,10 @@ Fast AMP Clustering System pipeline was benchmarked using the set of scripts ava ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/sss/fasta" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3400, @@ -26145,10 +21015,10 @@ Fast AMP Clustering System pipeline was benchmarked using the set of scripts ava a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "a Perl module to parse FASTA/FASTQ files" ; @@ -26162,7 +21032,7 @@ Fast AMP Clustering System pipeline was benchmarked using the set of scripts ava sc:url "https://metacpan.org/pod/FASTX::Reader" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0820, @@ -26182,7 +21052,7 @@ Fast AMP Clustering System pipeline was benchmarked using the set of scripts ava biotools:primaryContact "Sébastien Buchoux" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, @@ -26207,35 +21077,8 @@ FB5P-seq is a computational pipeline to process single-cell RNA sequencing (scRN sc:name "FB5P-seq" ; sc:url "https://github.com/MilpiedLab/FB5P-seq" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_2269, - edam:topic_3517, - edam:topic_3673, - edam:topic_3676 ; - sc:citation ; - sc:description """An exact, unifying framework for region-based association testing in family-based designs, including higher criticism approaches, SKATs, multivariate and burden tests. - -Both FBAT and PBAT provide software for implementing family-based association tests. PBAT also provides power calculations, general data analysis functions for quantitative traits, and screening procedures for multiple traits, markers, and/or models. See the FBAT User's Manual for more details. - -Gourab De, Julian Hecker, Steve Horvath, Nan Laird, Steve Lake, Christoph Lange, Kristel Van Steen, Lin Wang, Wai-Ki Yip, Xin Xu, and Jin Jin Zhou. - -Software available at this site:. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/fbat. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/fbat (SITES.GOOGLE.COM/view/fbat-web-page). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'SKATs', 'family-based', 'FBATs', 'region-based'""" ; - sc:featureList edam:operation_0487, - edam:operation_2238, - edam:operation_3196, - edam:operation_3791 ; - sc:name "FBAT_autogenerated" ; - sc:url "https://sites.google.com/view/fbat-web-page" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170, @@ -26254,7 +21097,7 @@ Software available at this site:. biotools:primaryContact "Ramón Huerta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0749, @@ -26271,7 +21114,7 @@ Water optical clustering based on water color information is important for many biotools:primaryContact "Yunmei Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -26298,7 +21141,7 @@ The fully convolutional neural network (FCNN) model is a deep learning model bas sc:url "https://bmbl.bmi.osumc.edu/FCNN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3673, edam:topic_3676 ; @@ -26312,49 +21155,29 @@ The fully convolutional neural network (FCNN) model is a deep learning model bas a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3796 ; sc:description "File format converter for FImpute" ; sc:featureList edam:operation_0335 ; sc:isAccessibleForFree true ; - sc:license "GPL-3.0", - "MIT" ; + sc:license "GPL-3.0" ; sc:name "FConverter" ; sc:operatingSystem "Linux", "Mac", "Windows" ; sc:softwareVersion "1.1" ; - sc:url "https://github.com/herrsalmi/FConverter" ; - sc:version "0.9" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3318, - edam:topic_3384 ; - sc:citation , - "pmcid:PMC6910120", - "pubmed:31844582" ; - sc:description """A comparison of random-field-theory and false-discovery-rate inference results in the analysis of registered one-dimensional biomechanical datasets. - -False discovery rate (FDR) inferences for one-dimensional (1d) data. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'RFT', 'RFT FDR', 'biomechanical', 'random-field-theory'""" ; - sc:featureList edam:operation_2238, - edam:operation_3891 ; - sc:license "MIT" ; - sc:name "FDR" ; - sc:url "https://github.com/0todd0000/fdr1d" . + sc:url "https://github.com/herrsalmi/FConverter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0780, @@ -26375,7 +21198,7 @@ False discovery rate (FDR) inferences for one-dimensional (1d) data. biotools:primaryContact "Simona E. Rombo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3399, @@ -26388,7 +21211,7 @@ False discovery rate (FDR) inferences for one-dimensional (1d) data. sc:url "http://resp.core.ubc.ca/ipress/FraminghamFEV1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3316 ; @@ -26407,7 +21230,7 @@ finite element methods.""" ; sc:url "http://fenicsproject.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -26425,22 +21248,8 @@ FFLtool is a webserver for analyzing Feed Forward Loop (FFL) regulatory motifs a sc:name "FFLtool" ; sc:url "http://bioinfo.life.hust.edu.cn/FFLtool/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0632, - edam:topic_3168 ; - sc:citation , - "pmcid:PMC6720378", - "pubmed:31477010" ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > NAME (FFPE) SIMILAR TO (PUB. DIFFERENT) bio.tools/ffpe (ffpe) | Bioinformatics and DNA-extraction strategies to reliably detect genetic variants from FFPE breast tissue samples | BACKGROUND:Archived formalin fixed paraffin embedded (FFPE) samples are valuable clinical resources to examine clinically relevant morphology features and also to study genetic changes. However, DNA quality and quantity of FFPE samples are often sub-optimal, and resulting NGS-based genetics variant detections are prone to false positives. Evaluations of wet-lab and bioinformatics approaches are needed to optimize variant detection from FFPE samples. RESULTS:As a pilot study, we designed within-subject triplicate samples of DNA derived from paired FFPE and fresh frozen breast tissues to highlight FFPE-specific artifacts" ; - sc:featureList edam:operation_3200, - edam:operation_3227, - edam:operation_3675 ; - sc:name "FFPE_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31477010" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0659, @@ -26461,7 +21270,7 @@ FFLtool is a webserver for analyzing Feed Forward Loop (FFL) regulatory motifs a sc:url "https://github.com/jeffpkamp/FFPEcap-seq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0621, edam:topic_0625, @@ -26479,7 +21288,7 @@ The FFT represents a user-friendly tool that automatically characterizes several sc:url "https://github.com/hsueh-lab/FFT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_2885, @@ -26500,7 +21309,7 @@ The FFT represents a user-friendly tool that automatically characterizes several biotools:primaryContact "Tyler K. Chafin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3063, @@ -26525,40 +21334,8 @@ The FFT represents a user-friendly tool that automatically characterizes several sc:softwareVersion "4.0.1" ; sc:url "https://www.hl7.org/fhir/index.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3168, - edam:topic_3512, - edam:topic_3794 ; - sc:citation , - "pmcid:PMC6821191", - "pubmed:31361898" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | a method for enzyme-specified profiling of methyl-5-uridine in cellular RNA | Methyl-5-uridine (m5U) is one the most abundant non-canonical bases present in cellular RNA, and in yeast is found at position U54 of tRNAs where modification is catalysed by the methyltransferase Trm2. Although the mammalian enzymes that catalyse m5U formation are yet to be identified via experimental evidence, based on sequence homology to Trm2, two candidates currently exist, TRMT2A and TRMT2B. Here we developed a genome-wide single-nucleotide resolution mapping method, Fluorouracil-Induced-Catalytic-Crosslinking-Sequencing (FICC-Seq), in order to identify the relevant enzymatic targets. We demonstrate that TRMT2A is responsible for the majority of m5U present in human RNA, and that it commonly targets U54 of cytosolic tRNAs" ; - sc:featureList edam:operation_2495, - edam:operation_3192, - edam:operation_3799 ; - sc:name "FICC-Seq" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31361898" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0099, - edam:topic_0203, - edam:topic_2229, - edam:topic_3170, - edam:topic_3304 ; - sc:citation , - "pubmed:31728515" ; - sc:description """transcriptional profiling of specific cell types from frozen archived tissue of the human central nervous system. - -FIN-Seq (Frozen Immunolabeled Nuclei Sequencing). - -Thousands of frozen, archived tissues from postmortem human central nervous system (CNS) are currently available in brain banks. As single cell and single nucleus technologies are..""" ; - sc:featureList edam:operation_2495, - edam:operation_3800 ; - sc:name "FIN-Seq" ; - sc:url "https://www.protocols.io/view/fin-seq-frozen-immunolabeled-nuclei-sequencing-zxbf7in" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0780, @@ -26575,7 +21352,7 @@ Thousands of frozen, archived tissues from postmortem human central nervous syst sc:url "https://github.com/anyouwang/finet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -26598,23 +21375,8 @@ FIREVAT (FInding REliable Variants without ArTifacts) is an R package that perfo sc:name "FIREVAT" ; sc:url "https://github.com/cgab-ncc/FIREVAT" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3344 ; - sc:citation , - "pmcid:PMC6919187", - "pubmed:31871569" ; - sc:description """Building Capacity and Expanding Curricula Across an Academic Health Center. - -Background :The ability of health professions faculty to design, teach, evaluate, and improve relevant curricula is vital for teaching improvement science (IS) skills to trainees. Objective :We launched a Foundational Improvement Science Curriculum (FISC) to build faculty competence in IS teaching and scholarship, and to develop, expand, and standardize IS curricula across one institution. Methods :FISC consisted of 9 full or half-day sessions over 10 months in 2015-2016 and 2016-2017 academic years. Each session required pre-work, including readings, Institute for Healthcare Improvement Open School modules, and personal improvement projects. Sessions included brief didactics, group activities, planning, and feedback on curriculum development. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Faculty Development Improvement Science', 'GME', 'curricula', 'UME'""" ; - sc:name "FISC" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31871569" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3382, edam:topic_3855 ; @@ -26627,7 +21389,7 @@ Background :The ability of health professions faculty to design, teach, evaluate sc:url "https://github.com/kjaqaman/FISIK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3518, @@ -26650,7 +21412,7 @@ Background :The ability of health professions faculty to design, teach, evaluate biotools:primaryContact "Koji Iwayama" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0780 ; @@ -26659,7 +21421,7 @@ Background :The ability of health professions faculty to design, teach, evaluate sc:url "http://urgv.evry.inra.fr/projects/FLAGdb++/HTML/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0749, @@ -26675,7 +21437,7 @@ Background :The ability of health professions faculty to design, teach, evaluate sc:url "https://github.com/rajewsky-lab/FLAMAnalysis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0781, edam:topic_3168, @@ -26697,7 +21459,7 @@ Background :The ability of health professions faculty to design, teach, evaluate sc:url "https://github.com/veg/flea-pipeline" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3372 ; @@ -26708,36 +21470,8 @@ Background :The ability of health professions faculty to design, teach, evaluate sc:name "FLEXOR" ; sc:url "https://github.com/FlexorSoftware/flexor" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3390, - edam:topic_3399, - edam:topic_3407 ; - sc:citation , - "pubmed:31511912" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | Fracture liaison service and mortality in elderly hip fracture patients | Osteoporosis is a metabolic disorder that results in increased bone fragility and risk of fractures. Hip fracture is the most important fragility fracture. Fracture Liaison Service (FLS) is a secondary prevention model which identifies patients at risk for fragility fractures. The introduction of an intensive FLS model could decrease 1-year-mortality of hip fracture patients. INTRODUCTION:Hip fractures are a clinical manifestation of osteoporosis, and these patients are at risk of premature death and suffering subsequent fractures. FLS is an approach for secondary facture prevention by identifying patients with fragility fractures and initiating the appropriate treatment. Our objective is to analyze the effect of the FLS model over the first-year mortality rates following a hip fracture" ; - sc:featureList edam:operation_3503 ; - sc:name "FLS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31511912" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0621, - edam:topic_3401, - edam:topic_3403 ; - sc:citation , - "pubmed:31788717" ; - sc:description """Secondary prevention of fragility fractures in Asia Pacific. - -The Asia -Pacific Bone Academy (APBA) Fracture Liaison Service (FLS) Focus Group educational initiative has stimulated activity across the Asia -Pacific region with the intention of supporting widespread implementation of new FLS. In 2017, the APBA FLS Focus Group developed a suite of tools to support implementation of FLS across the Asia-Pacific region as a component of a multi-faceted educational initiative. This article puts this initiative into context with a narrative review describing the burden of fragility fractures in the region, the current secondary fracture prevention care gap and a summary of emerging best practice. - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/FLS""" ; - sc:name "FLS_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31788717" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0736, @@ -26752,7 +21486,7 @@ The Asia -Pacific Bone Academy (APBA) Fracture Liaison Service (FLS) Focus Group sc:url "http://pipe.rcc.fsu.edu/fmapb2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , @@ -26764,7 +21498,7 @@ The Asia -Pacific Bone Academy (APBA) Fracture Liaison Service (FLS) Focus Group sc:url "https://github.com/MilsteinLab/FOCAL3D" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3361, @@ -26784,14 +21518,13 @@ The Asia -Pacific Bone Academy (APBA) Fracture Liaison Service (FLS) Focus Group a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -26812,7 +21545,7 @@ The Asia -Pacific Bone Academy (APBA) Fracture Liaison Service (FLS) Focus Group sc:url "https://partslab.sanger.ac.uk/FORECasT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0202, @@ -26834,7 +21567,7 @@ The Asia -Pacific Bone Academy (APBA) Fracture Liaison Service (FLS) Focus Group biotools:primaryContact "L. Turnhoff" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -26854,18 +21587,8 @@ The Asia -Pacific Bone Academy (APBA) Fracture Liaison Service (FLS) Focus Group sc:softwareHelp ; sc:url "https://github.com/langmead-lab/FORGe/tree/v1.1" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3379, - edam:topic_3399 ; - sc:citation , - "pubmed:31435913" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | Application of an Information Technology Tool for the Epidemiological Assessment of Drug Treatment in Older People | BACKGROUND:To improve drug treatment in older people, who often present with multimorbidity and related polypharmacy, the FORTA (Fit fOR The Aged) List was developed via a Delphi consensus procedure. As a patient-in-focus listing approach (PILA), it has been clinically validated (VALFORTA trial). Unlike drug-oriented listing approaches (DOLAs), its application requires knowledge of patients' characteristics, including diagnoses and other details. As a drug list with discrete labels, application of FORTA seems particularly amenable to electronic support. METHODS:An information technology (IT) algorithm was developed to analyze bulk data on International Classification of Diseases (ICD)-coded diseases and Anatomical Therapeutic Chemical (ATC)-coded drugs" ; - sc:name "FORTA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31435913" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_2229, @@ -26878,7 +21601,7 @@ The Asia -Pacific Bone Academy (APBA) Fracture Liaison Service (FLS) Focus Group sc:url "https://gitlab.com/JavierCabau/fontcell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0605, edam:topic_0607, @@ -26898,7 +21621,7 @@ FP-LIMS was formerly distributed as [DIA]/DIA2000/DIAPLUS.""" ; sc:url "https://www.fp-lims.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -26916,39 +21639,8 @@ FP-LIMS was formerly distributed as [DIA]/DIA2000/DIAPLUS.""" ; "Windows" ; sc:url "https://github.com/wsjeon92/FP2VEC" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3361, - edam:topic_3372, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6786543", - "pubmed:31600218" ; - sc:description """Research on OpenCL optimization for FPGA deep learning application. - -Optimize the code provided by Xilinx, and the experiment proves that the optimized performance is 8-40 times optimized by Xilinx.The code URL provided by Xilinx is: https://github.com/Xilinx/SDAccel_Examples/tree/master/getting_started/clk_freq/large_loop_ocl Eight kinds Of convolution layer programs are set up by us according to the ascending order. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'OpenCL'""" ; - sc:name "FPGA" ; - sc:url "https://github.com/PoetryAndWine/FPGA_CNN_Acceleration" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3361, - edam:topic_3419 ; - sc:citation , - "pubmed:31621351" ; - sc:description """Training, employment, and lived experience. - -OBJECTIVE:Despite calls for increased peer support services for individuals involved with the criminal justice system, little is known about the training, employment, and characteristics of forensic peer specialists (FPSs). Pennsylvania developed the nation's first FPS program and remains at the forefront of the field. This paper responds to three research questions regarding forensic peer support in Pennsylvania, assessing: (a) employment patterns and demographic characteristics; (b) work tasks and sites; and (c) challenges and benefits of working as an FPS. METHOD:Data are drawn from a larger mixed-methods study of forensic peer support in Pennsylvania, including a detailed online survey of 117 FPS-trained workers, followed by 16 qualitative interviews with a subset of survey respondents. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'forensic peer specialists', 'PRACTICE:Study', 'FPSs lived', 'FPSs passionate'""" ; - sc:name "FPSs" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31621351" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -26973,7 +21665,7 @@ OBJECTIVE:Despite calls for increased peer support services for individuals invo biotools:primaryContact "Talley Lambert" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3169, @@ -26990,22 +21682,8 @@ OBJECTIVE:Despite calls for increased peer support services for individuals invo sc:softwareHelp ; sc:url "http://otulab.unl.edu/FQStat" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3390, - edam:topic_3489 ; - sc:citation , - "pmcid:PMC6840738" ; - sc:description """RELIABLE SMARTPHONE APPLICATION FOR SELF-ASSESSMENT OF FRAILTY. - -AbstractFrailty is a clinical syndrome whose signs and symptoms are predictors of health complications, making this a major public health problem. FRAILSURVEY, which was considered a good practice by several entities, is a smartphone application that allows an easy assessment of frailty, available in Portuguese, English and Italian, on both iOS and Android stores. Smartphone-based assessment has been proven to be a useful diagnostic tool for patients, although few applications have demonstrated reliability. With this work we aimed to test the reliability of FRAILSURVEY as a tool to assess frailty, and to study people’s preference on which way to assess frailty. - -||| HOMEPAGE MISSING!""" ; - sc:name "FRAILSURVEY" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6840738/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, edam:topic_3320, @@ -27035,7 +21713,7 @@ This project depends on the python package wBuild and the R package FRASER. Furt sc:url "http://bioconductor.org/packages/release/bioc/html/FRASER.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2269, @@ -27050,46 +21728,8 @@ License: GPL-2, GPL-2.1 and/or GPL-3.""" ; sc:softwareHelp ; sc:url "https://cran.r-project.org/package=FRESA.CAD" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0593, - edam:topic_0611 ; - sc:citation , - "pubmed:31471616" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'FRET biomolecular research tool' | understanding its potential while avoiding pitfalls | Calculate Resonance Energy Transfer (FRET) Efficiencies | Addgene's collection of plasmids suitable for FRET experiments to measure protein interactions or conformation changes, as well as FRET standards | Addgene: Fluorescent Protein Guide: FRET | How to measure and calculate fluorescence resonance energy transfer (FRET) efficiency. FRET calculator. FRET measurement. FRET distance | Software > a:e - UV-Vis-IR Spectral Software > a:e Documentation Pages > a:e's Spectral Tools > | FRET, also known as Förster Resonance Energy Transfer or just Resonance Energy Transfer (RET), is a long-range non-radiative energy transfer process from an excited donor fluorophore, D, to an acceptor chromophore, A, located within a distance of approximately 1-10 nm" ; - sc:featureList edam:operation_3799, - edam:operation_3891 ; - sc:name "FRET" ; - sc:softwareHelp ; - sc:url "http://www.addgene.org/fluorescent-proteins/fret/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3379, - edam:topic_3400 ; - sc:citation , - "pubmed:31437627" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Designing digital prescribing' | A new approach with branch diagrams | EMM Functional Requirements Publicly Available | Visse funktioner i Excel kan ikke vises i Google Sheets og vil forsvinde, hvis du foretager ændringer | Allow administration recording during change from BST to GMT (1 hour gained, two x 0100 to 0200)" ; - sc:name "FRUS" ; - sc:url "http://bit.ly/ElectronicMedsMan-FRUS" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3341, - edam:topic_3372, - edam:topic_3678 ; - sc:citation ; - sc:description """How are functionally similar code clones syntactically different? An empirical study and a benchmark. - -Background Today, redundancy in source code, so-called “clones”, caused by copy&paste can be found reliably using clone detection tools. Redundancy can arise also independently, however, caused not by copy&paste. At present, it is not clear how only functionally similar clones (FSC) differ from clones created by copy&paste. Our aim is to understand and categorise the syntactic differences in FSCs that distinguish them from copy&paste clones in a way that helps clone detection research. Methods. We conducted an experiment using known functionally similar programs in Java and C from coding contests. We analysed syntactic similarity with traditional detection tools and explored whether concolic clone detection can go beyond syntax. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'copy and paste', 'concolic', 'FSC', 'syntactic'""" ; - sc:name "FSCs" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.1516V2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3301, edam:topic_3315, @@ -27106,38 +21746,8 @@ Background Today, redundancy in source code, so-called “clones”, caused by c sc:softwareHelp ; sc:url "http://fssp.food.dtu.dk/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0780, - edam:topic_3390, - edam:topic_3810 ; - sc:citation , - "pubmed:31550403" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE BROKEN! | > CORRECT NAME OF TOOL COULD ALSO BE 'AGRICOLA', 'FSTA AGRICOLA', 'WoS' | Accounting for Relevance When Evaluating Database Performance | The impetus for this study is the limited amount of information on performance characteristics of food science-encompassing online bibliographic databases. Database usage is an important element in modern research because a comprehensive understanding of current knowledge is essential for effective, unbiased hypothesis formulation and testing" ; - sc:featureList edam:operation_2422 ; - sc:name "FSTA" ; - sc:url "https://www.ebsco.com/products/research-databases/fsta" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0611, - edam:topic_3077, - edam:topic_3303, - edam:topic_3337 ; - sc:citation , - "pubmed:31610333" ; - sc:description """Facial soft tissue thicknesses in craniofacial identification. - -Facial soft tissue thicknesses (FSTT) form a key component of craniofacial identification methods, but as for any data, embedded measurement errors are highly pertinent. These in part dictate the effective resolution of the measurements. As herein reviewed, measurement methods are highly varied in FSTT studies and associated measurement errors have generally not been paid much attention. Less than half (44%) of 95 FSTT studies comment on measurement error and not all of these provide specific quantification. Where informative error measurement protocols are employed (5% of studies), the mean error magnitudes range from 3% to 45% rTEM and are typically in the order of 10-20%. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'FSTT measurement', 'TDValidator', 'Facial soft tissue thicknesses craniofacial identification', 'rTEM'""" ; - sc:featureList edam:operation_3435, - edam:operation_3799 ; - sc:name "FSTT" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31610333" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081 ; sc:citation , @@ -27150,7 +21760,7 @@ Facial soft tissue thicknesses (FSTT) form a key component of craniofacial ident sc:url "http://huanglab.phys.hust.edu.cn/ftalign/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_2229, @@ -27169,7 +21779,7 @@ MOTIVATION:The elucidation of dysfunctional cellular processes that can induce t sc:url "https://github.com/aresio/FUMOSO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2828 ; sc:citation , @@ -27184,19 +21794,8 @@ Bragg intensities can be used to analyse crystal size distributions in a method sc:name "FXD-CSD-GUI" ; sc:url "https://owncloud.gwdg.de/index.php/s/JGluHlEp0pEUcAH" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0593, - edam:topic_2828, - edam:topic_3452 ; - sc:citation , - "pmcid:PMC6730617", - "pubmed:31490131" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | Scientific instrument Femtosecond X-ray Experiments (FXE) | The European X-ray Free-Electron Laser (EuXFEL) delivers extremely intense (>1012 photons pulse-1 and up to 27000 pulses s-1), ultrashort (<100 fs) and transversely coherent X-ray radiation, at a repetition rate of up to 4.5 MHz. Its unique X-ray beam parameters enable novel and groundbreaking experiments in ultrafast photochemistry and material sciences at the Femtosecond X-ray Experiments (FXE) scientific instrument. This paper provides an overview of the currently implemented experimental baseline instrumentation and its performance during the commissioning phase, and a preview of planned improvements. FXE's versatile instrumentation combines the simultaneous application of forward X-ray scattering and X-ray spectroscopy techniques with femtosecond time resolution" ; - sc:name "FXE" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31490131" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3399, edam:topic_3500 ; @@ -27211,7 +21810,7 @@ Bragg intensities can be used to analyse crystal size distributions in a method sc:url "https://facegen.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3474, edam:topic_3794 ; @@ -27227,30 +21826,8 @@ Bragg intensities can be used to analyse crystal size distributions in a method sc:url "https://github.com/cosanlab/facesync" ; biotools:primaryContact "Jin Hyun Cheong" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_3382, - edam:topic_3474 ; - sc:citation ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | Combining Unsupervised and Supervised Learning for Hierarchical Phenotype Analysis in Multi-Channel Image Data | Abstract Facetto is a scalable visual analytics application that is used to discover single-cell phenotypes in high-dimensional multi-channel microscopy images of human tumors and tissues. Such images represent the cutting edge of digital histology and promise to revolutionize how diseases such as cancer are studied, diagnosed, and treated. Highly multiplexed tissue images are complex, comprising 10 9 or more pixels, 60-plus channels, and millions of individual cells. This makes manual analysis challenging and error-prone. Existing automated approaches are also inadequate, in large part, because they are unable to effectively exploit the deep knowledge of human tissue biology available to anatomic pathologists. To overcome these challenges, Facetto enables a semi-automated analysis of cell types and states" ; - sc:featureList edam:operation_3432, - edam:operation_3629, - edam:operation_3891 ; - sc:name "Facetto" ; - sc:url "https://doi.org/10.1101/722918" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_3382, - edam:topic_3474 ; - sc:citation , - "pubmed:31514138" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | Combining Unsupervised and Supervised Learning for Hierarchical Phenotype Analysis in Multi-Channel Image Data | Facetto is a scalable visual analytics application that is used to discover single-cell phenotypes in high-dimensional multi-channel microscopy images of human tumors and tissues. Such images represent the cutting edge of digital histology and promise to revolutionize how diseases such as cancer are studied, diagnosed, and treated. Highly multiplexed tissue images are complex, comprising 109 or more pixels, 60-plus channels, and millions of individual cells. This makes manual analysis challenging and error-prone. Existing automated approaches are also inadequate, in large part, because they are unable to effectively exploit the deep knowledge of human tissue biology available to anatomic pathologists. To overcome these challenges, Facetto enables a semi-automated analysis of cell types and states" ; - sc:name "Facetto_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31514138" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0218, @@ -27262,18 +21839,8 @@ Bragg intensities can be used to analyse crystal size distributions in a method sc:url "http://faerun.gdb.tools/" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0769, - edam:topic_3315, - edam:topic_3474 ; - sc:citation , - "pubmed:31425083" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'fairness', 'fairness-aware' | Visual Analytics for Fairness in Decision Making | Data-driven decision making related to individuals has become increasingly pervasive, but the issue concerning the potential discrimination has been raised by recent studies. In response, researchers have made efforts to propose and implement fairness measures and algorithms, but those efforts have not been translated to the real-world practice of data-driven decision making. As such, there is still an urgent need to create a viable tool to facilitate fair decision making. We propose FairSight, a visual analytic system to address this need; it is designed to achieve different notions of fairness in ranking decisions through identifying the required actions - understanding, measuring, diagnosing and mitigating biases - that together lead to fairer decision making" ; - sc:name "FairSight" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31425083" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0780, @@ -27292,7 +21859,7 @@ This is a tool for faster feature extraction from genome sequences and making ef biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3168 ; @@ -27312,7 +21879,7 @@ This is a tool for faster feature extraction from genome sequences and making ef biotools:primaryContact "G. Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Tools to deal with fastq sequences and paired-end reads." ; @@ -27320,7 +21887,7 @@ This is a tool for faster feature extraction from genome sequences and making ef sc:url "https://bioweb.pasteur.fr/packages/pack@FastqProcessing@0.38.1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -27346,26 +21913,21 @@ This is a tool for faster feature extraction from genome sequences and making ef a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -27390,14 +21952,14 @@ This is a tool for faster feature extraction from genome sequences and making ef a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2350" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3780" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0099 ; sc:description "A Comprehensive Pipeline for Exploration of Fusion Linear and Circular RNAs" ; @@ -27412,7 +21974,7 @@ This is a tool for faster feature extraction from genome sequences and making ef sc:url "https://github.com/WangHYLab/fcirc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0196, @@ -27428,7 +21990,7 @@ This is a tool for faster feature extraction from genome sequences and making ef sc:url "https://github.com/Arkadiy-Garber/FeGenie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation , @@ -27446,7 +22008,7 @@ This is a tool for faster feature extraction from genome sequences and making ef biotools:primaryContact "LBBSoft" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -27462,7 +22024,7 @@ This is a tool for faster feature extraction from genome sequences and making ef sc:url "http://www4g.biotec.or.th/FeptideDB/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0102, @@ -27483,7 +22045,7 @@ This is a tool for faster feature extraction from genome sequences and making ef sc:url "http://limousophie35.github.io/Ferret/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0749, @@ -27496,7 +22058,7 @@ This is a tool for faster feature extraction from genome sequences and making ef sc:url "https://github.com/khanhlee/fertility-gru" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3067, @@ -27517,7 +22079,7 @@ This is a tool for faster feature extraction from genome sequences and making ef "Christopher K. Macgowan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0102, @@ -27542,7 +22104,7 @@ This is a tool for faster feature extraction from genome sequences and making ef "Piero Fariselli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0610, @@ -27558,11 +22120,14 @@ This is a tool for faster feature extraction from genome sequences and making ef sc:url "https://cmci.colorado.edu/visualab/fieldview" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382 ; sc:citation , + , + "pmcid:PMC3855844", "pmcid:PMC6861648", + "pubmed:22743772", "pubmed:31763187" ; sc:description """A quantitative method to analyse F-actin distribution in cells. @@ -27579,7 +22144,7 @@ Fiji bundles together many popular and useful ImageJ plugins for image analysis sc:url "https://fiji.sc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0196, edam:topic_3474, @@ -27595,7 +22160,7 @@ Fiji bundles together many popular and useful ImageJ plugins for image analysis sc:url "http://gitlab.lcqb.upmc.fr/muscat/FilterDCA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0625, @@ -27617,7 +22182,7 @@ FindSV is a structural variation pipeline written in nextflow and python. FindSV sc:url "https://github.com/J35P312/FindSV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -27636,17 +22201,8 @@ FindSV is a structural variation pipeline written in nextflow and python. FindSV sc:url "http://kakitone.github.io/finishingTool/" ; biotools:primaryContact "Ka-Kit Lam" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3304, - edam:topic_3384, - edam:topic_3444 ; - sc:citation ; - sc:description "An MRI-Derived Neuroanatomical Atlas of the Fischer 344 Rat Brain for Automated Anatomical Segmentation | Fischer-344 rat brain template and anatomical atlas | We developed a high-resolution 3D MRI atlas of the adult Fischer 344 rat brain. The atlas has an isotropic spatial resolution of 60 micrometers, and contains 98 individually delineated structures and sub-structures. It was developed using Pydpiper image registration software to create an average brain of 41 four-month old male and female Fischer 344 rats" ; - sc:name "Fischer 344" ; - sc:url "https://www.nearlab.xyz/fischer344atlas" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3300, edam:topic_3407 ; @@ -27665,7 +22221,7 @@ FindSV is a structural variation pipeline written in nextflow and python. FindSV biotools:primaryContact "Sergey Morozov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3334 ; sc:description "Digital Filter Design, Viewing and Comparison tool." ; @@ -27679,7 +22235,7 @@ FindSV is a structural variation pipeline written in nextflow and python. FindSV biotools:primaryContact "Jim Peters" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -27708,7 +22264,7 @@ The project previously contained 2 equivalent implementations of allele counting sc:url "https://github.com/danchubb/FixVAF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_2229, @@ -27734,7 +22290,7 @@ For more detailed instructions, see docs/documentation_flagser.pdf. The program sc:url "https://github.com/luetge/flagser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3174, @@ -27750,7 +22306,7 @@ For more detailed instructions, see docs/documentation_flagser.pdf. The program sc:url "https://github.com/meringlab/FlashWeave.jl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3068, @@ -27771,7 +22327,7 @@ Flavonoids are richly diverse polyphenolic plant secondary metabolites that are sc:url "http://bioinfo.net.in/flavodb/home.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3174, @@ -27790,23 +22346,8 @@ Flavonoids are richly diverse polyphenolic plant secondary metabolites that are ; sc:url "https://camilo-v.github.io/flint/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3399, - edam:topic_3419 ; - sc:citation , - "pmcid:PMC6840606" ; - sc:description """HELPING OLDER ADULTS FLOURISH IN RURAL COMMUNITIES. - -AbstractFlourishing represents living within an optimal range of human functioning. To foster older adults flourishing, our FlourishCare model of care coordination was developed as part of a HRSA Geriatric Workforce Enhancement Program (GWEP) to transform PC sites by delivering coordinated services in 6 rural KY counties. FlourishCare is unique in its integration of academic teams, community health teams and mental health specialists within age-friendly primary care health systems. FlourishCare recognizes that many of the largest drivers of health care costs fall outside the clinical care environment. One of the major components of Flourish is the involvement of community health navigators (CHNs), community education coordinators (CECs) and community coalitions working with the health teams to respond to the social determinants of health. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Geriatric', 'GWEP'""" ; - sc:name "FlourishCare" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6840606/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0611, @@ -27823,7 +22364,7 @@ AbstractFlourishing represents living within an optimal range of human functioni sc:url "http://www.flowsculpt.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -27847,7 +22388,7 @@ FluNet is a global web-based tool for influenza virological surveillance first l sc:url "https://www.who.int/influenza/gisrs_laboratory/flunet/en/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3068, @@ -27863,7 +22404,7 @@ FluNet is a global web-based tool for influenza virological surveillance first l sc:url "https://www.jianglab.tech/FluReassort" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -27877,44 +22418,8 @@ The Influenza Division at CDC collects, compiles and analyzes information on inf sc:name "FluView" ; sc:url "https://www.cdc.gov/flu/weekly/fluviewinteractive.htm" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3315 ; - sc:citation ; - sc:description """An Efficient Semi-Implicit Solver for Compressible Flows. - -The computing power of smartphones has not received considerable attention in the mainstream education system. Most of the education-oriented smartphone applications (apps) are limited to general purpose services like Massive Open Online Courses (MOOCs), language learning, and calculators (performing basic mathematical calculations). Greater potential of smartphones lies in educators and researchers developing their customized apps for learners in highly specific domains. In line with this, we present Fluid Dynamics, a highly accurate Android application for measuring flow properties in compressible flows. This app can determine properties across the stationary normal and oblique shock, moving normal shock and across Prandtl $-$ Meyer expansion fan. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'app', 'semi-implicit', 'flows', 'compressible'""" ; - sc:featureList edam:operation_2426, - edam:operation_3435 ; - sc:name "Fluid Dynamics Android Application" ; - sc:url "https://doi.org/10.20944/PREPRINTS201910.0309.V1" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0078, - edam:topic_3297, - edam:topic_3382 ; - sc:citation , - "pubmed:31702581" ; - sc:description """Inexpensive robotic system for standard and fluorescent imaging of protein crystals. - -Code and .obj files for construction of a fluorescent robotic imager used for protein crystallography. - -Code and .obj files for construction of a robotic imager capable of using visible fluorescence to automatically image plates from protein crystallization experiments. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'protein-crystallization', 'trace-labeled', 'crystallization-trial', 'Panowin'""" ; - sc:featureList edam:operation_3096, - edam:operation_3435, - edam:operation_3443 ; - sc:license "Apache-2.0" ; - sc:name "Fluor" ; - sc:url "https://github.com/dakota0064/Fluorescent_Robotic_Imager" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3372, @@ -27936,7 +22441,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3382, @@ -27956,7 +22461,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:url "https://www.sbernasek.com/flyqma/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -27974,18 +22479,8 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:name "FlyCircuit" ; sc:url "http://www.flycircuit.tw" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3382, - edam:topic_3474 ; - sc:citation , - "pubmed:31425122" ; - sc:description "> HOMEPAGE MISSING! | Drosophila Embryogenesis Image Annotation based on Image Tiling and Convolutional Neural Networks | With the rise of image-based transcriptomics, spatial gene expression data has become increasingly important for understanding gene regulations from the tissue level down to the cell level. Especially, the gene expression images of Drosophila embryos provide a new data source in the study of Drosophila embryogenesis. It is imperative to develop automatic annotation tools since manual annotation is labor-intensive and requires professional knowledge. Although a lot of image annotation methods have been proposed in the computer vision field, they may not work well for gene expression images, due to the great difference between these two annotation tasks. Besides the apparent difference on images, the annotation is performed at the gene level rather than the image level, where the expression patterns of a gene are recorded in multiple images" ; - sc:featureList edam:operation_3553 ; - sc:name "FlyIT" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31425122" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0196, @@ -28009,7 +22504,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:url "https://github.com/fenderglass/Flye" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0602, @@ -28029,7 +22524,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl biotools:primaryContact "Mansoori F." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2828, @@ -28049,7 +22544,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:url "http://foldamerdb.ttk.hu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3297, edam:topic_3301 ; @@ -28060,7 +22555,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:url "http://www.foodmicrobionet.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -28089,7 +22584,7 @@ If no HWE p-value file provided, HWE p-value would be computed by ForestQC. Or i sc:url "https://github.com/avallonking/ForestQC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3050, @@ -28102,7 +22597,7 @@ If no HWE p-value file provided, HWE p-value would be computed by ForestQC. Or i sc:url "https://github.com/GlobalEcologyFlinders/FosSahul" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3382 ; @@ -28117,7 +22612,7 @@ If no HWE p-value file provided, HWE p-value would be computed by ForestQC. Or i sc:url "https://github.com/fionapye/FossilJ" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0749, @@ -28137,20 +22632,8 @@ If no HWE p-value file provided, HWE p-value would be computed by ForestQC. Or i sc:softwareHelp ; sc:url "https://github.com/biocaddie/Foundry-ES" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_2885, - edam:topic_3399 ; - sc:citation ; - sc:description "> MEDIUM CONFIDENCE! | Fox Insight Collects Online, Longitudinal Patient-Reported Outcomes and Genetic Data on Parkinson's Disease | Fox DEN provides investigators with a tool to explore, download and apply statistical models on aggregated data collected for the Fox Insight online clinical study. The Fox Insight study collects patient-reported outcomes and genetic data from people with Parkinson's disease and their loved ones" ; - sc:featureList edam:operation_0484, - edam:operation_3196, - edam:operation_3436 ; - sc:name "Fox" ; - sc:url "https://foxden.michaeljfox.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3382, @@ -28168,7 +22651,7 @@ If no HWE p-value file provided, HWE p-value would be computed by ForestQC. Or i biotools:primaryContact "Eric Devost" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -28186,7 +22669,7 @@ If no HWE p-value file provided, HWE p-value would be computed by ForestQC. Or i biotools:primaryContact "Eric Lyons" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -28212,7 +22695,7 @@ FragBuilder will run with most versions of Open Babel, however there was bug in sc:url "https://github.com/jensengroup/fragbuilder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3169, @@ -28236,14 +22719,13 @@ FreeHi-C (v1.0) is short for Fragment interactions empirical estimation for fast a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1668" ; - sc:name "Z-value" ; - sc:sameAs "http://edamontology.org/data_1668" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1668" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Z-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0091 ; @@ -28259,23 +22741,8 @@ FreeHi-C (v1.0) is short for Fragment interactions empirical estimation for fast sc:softwareHelp ; sc:url "https://frela.eurac.edu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0622, - edam:topic_3293 ; - sc:citation , - "pmcid:PMC6909884", - "pubmed:31867045" ; - sc:description """An Efficient Method for Representing Genome Evolutionary History. - -Phylogenetic analysis is important in understanding the process of biological evolution, and phylogenetic trees are used to represent the evolutionary history. Each taxon in a phylogenetic tree has not more than one parent, so phylogenetic trees cannot express the complex evolutionary information implicit in phylogeny. Phylogenetic networks can be used to express genome evolutionary histories. Therefore, it is great significance to research the construction of phylogenetic networks. Cass algorithm is an efficient method for constructing phylogenetic networks because it can construct a much simpler network. However, Cass relies heavily on the order of input data, i.e. different networks can be constructed for the same dataset with different input orders. Based on the frequency and incompatibility degree of taxa, we propose an efficiently improved algorithm of Cass, called as Frin""" ; - sc:featureList edam:operation_0323, - edam:operation_0326, - edam:operation_0567 ; - sc:name "Frin" ; - sc:url "https://github.com/wangjuanimu/Frin" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0632, @@ -28292,7 +22759,7 @@ Phylogenetic analysis is important in understanding the process of biological ev biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3382, edam:topic_3474 ; @@ -28306,7 +22773,7 @@ Phylogenetic analysis is important in understanding the process of biological ev biotools:primaryContact "Shanfeng Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3295, @@ -28321,7 +22788,7 @@ Phylogenetic analysis is important in understanding the process of biological ev sc:url "https://github.com/NWPU-903PR/DMDeepm6A1.0" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0218, @@ -28346,7 +22813,7 @@ This feature allows comparison of functional modules in sequenced genomes obtain sc:url "https://web.rniapps.net/fungeco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -28368,7 +22835,7 @@ This feature allows comparison of functional modules in sequenced genomes obtain sc:url "https://github.com/Greco-Lab/FunMappOne" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -28381,7 +22848,7 @@ This feature allows comparison of functional modules in sequenced genomes obtain sc:url "https://github.com/lasigeBioTM/FunVar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3308, @@ -28403,7 +22870,7 @@ This feature allows comparison of functional modules in sequenced genomes obtain "Ruoting Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -28420,7 +22887,7 @@ This feature allows comparison of functional modules in sequenced genomes obtain biotools:primaryContact "Jemima Jeba" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0202, @@ -28445,7 +22912,7 @@ This feature allows comparison of functional modules in sequenced genomes obtain biotools:primaryContact "N. Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0196, @@ -28463,24 +22930,8 @@ Homepage may be broken as of January 4th, 2021.""" ; sc:name "FusionScan" ; sc:url "http://biome.ewha.ac.kr/fusionscan/fusionscan.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0622, - edam:topic_3168 ; - sc:citation ; - sc:description """Graded exploration of genomic data and fuzzy queries. - -Abstract Summary FuzzyVariantExplorer is a web interface and a fuzzy search system for exploring richly annotated genomes in a flexible way. The application allows combining vague constraints in expressive logical queries to retrieve graded sets of genes and their associated variants. Results can be further refined in a visual way by selecting keywords and categories that are extracted from the underlying annotations and weighted with a statistical significance score; keywords can then be clustered using Latent Dirichlet Allocation and explored visually. The system has been applied to a set of Saccharomyces cerevisiae genome annotations and a few variants. Availability FuzzyVariantExplorer source code is available at the URL https: bitbucket.org mfalda fuzzyvariantsexplorer src and has been developed in Scala, TypeScript and R. Contact marco.falda@unipd.it. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'FuzzyVariantExplorer'""" ; - sc:featureList edam:operation_0362, - edam:operation_2421, - edam:operation_2422 ; - sc:name "FuzzyVariantsExplorer" ; - sc:url "https://bitbucket.org/mfalda/fuzzyvariantsexplorer/src/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0749, @@ -28496,7 +22947,7 @@ G-Graph is a free-software graphical desktop application that allows you to perf sc:url "https://mumdex.com/ggraph/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, @@ -28522,7 +22973,7 @@ G-Graph is a free-software graphical desktop application that allows you to perf "Wilson Leung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -28540,27 +22991,8 @@ G-Graph is a free-software graphical desktop application that allows you to perf sc:name "G-WIZ" ; sc:url "https://github.com/jonaspatronjp/GWIZ-Rscript/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3053, - edam:topic_3360, - edam:topic_3517 ; - sc:citation , - "pmcid:PMC6894795", - "pubmed:31805043" ; - sc:description """Assessing the performance of genome-wide association studies for predicting disease risk. - -INSTRUCTIONS ON HOW TO RUN GWIZ. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'GWAS-ROCS'""" ; - sc:featureList edam:operation_3196, - edam:operation_3659, - edam:operation_3791 ; - sc:name "G-WIZ_autogenerated" ; - sc:url "https://github.com/jonaspatronjp/GWIZ-Rscript/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0102, @@ -28582,7 +23014,7 @@ INSTRUCTIONS ON HOW TO RUN GWIZ. biotools:primaryContact "Xiaolei Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -28602,23 +23034,8 @@ INSTRUCTIONS ON HOW TO RUN GWIZ. sc:url "https://cran.r-project.org/package=g3viz" ; biotools:primaryContact "Xin Guo" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0654 ; - sc:citation , - "pubmed:31830243" ; - sc:description """an arithmetic coding solution for genomic data. - -Genomics-oriented Context-Adaptive Binary Arithmetic Coding. - -The GABAC development is continued within the Genie project (https://github.com/mitogen/genie). - -As a public service, the GABAC codec is provided in good faith, but without any express or implied warranties. We also refer the reader to our LICENSE. The goal of our policy is that early release should enable the progress of science""" ; - sc:name "GABAC" ; - sc:url "https://github.com/mitogen/gabac" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0196, @@ -28636,13 +23053,13 @@ A python script for extracting genome features from GTF/GFF3.""" ; sc:url "https://github.com/bio-projects/GAD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Genetic algorithm for inferring demographic history of multiple populations from allele frequency spectrum data" ; sc:name "GADMA" ; sc:url "https://github.com/ctlab/GADMA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2885, @@ -28660,7 +23077,7 @@ A python script for extracting genome features from GTF/GFF3.""" ; sc:url "https://github.com/WuLoli/GAEseq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -28680,34 +23097,8 @@ A python script for extracting genome features from GTF/GFF3.""" ; sc:softwareHelp ; sc:url "http://glycan-builder.cermav.cnrs.fr/gag/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3174, - edam:topic_3308, - edam:topic_3673, - edam:topic_3697, - edam:topic_3810 ; - sc:citation ; - sc:description """an integrated metagenomics suite. - -Metagenomics data analysis software. - -Metagenomics analysis tool: simplest, fastest and accurate solution for metagenomics data. - -The easiest, most accurate and reliable cloud software for Metagenomics Analysis. - -Gaia 2.0 uses the best, most up to date and reliable scientific methods and algorithms, and you don’t even need any bioinformatics knowledge to run it!. - -GAIA has a reliable upload system with integrated recovery and resume functions to allow you to quickly and securely upload your data. You can also upload it directly from your Google Drive. Use the Validate button to check the integrity of your Seq data. - -A solution to close the gap between data production and interpretation in metagenomics. - -||| NAME (GAIA) SIMILAR TO (PUB. DIFFERENT) bio.tools/gaia (gaia)""" ; - sc:featureList edam:operation_3460 ; - sc:name "GAIA_autogenerated" ; - sc:url "http://gaia.sequentiabiotech.com" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -28728,7 +23119,7 @@ A solution to close the gap between data production and interpretation in metage biotools:primaryContact "Arijit Panda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3305, @@ -28745,7 +23136,7 @@ A solution to close the gap between data production and interpretation in metage sc:url "https://gama-platform.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2828, edam:topic_3306, edam:topic_3452 ; @@ -28757,7 +23148,7 @@ A solution to close the gap between data production and interpretation in metage sc:url "http://github.com/ctlee/gamer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174, @@ -28776,7 +23167,7 @@ A solution to close the gap between data production and interpretation in metage sc:url "http://github.com/lczech/gappa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -28801,23 +23192,8 @@ A Linux platform with CUDA toolkit 8 or higher is required, along with usual bui sc:name "GASAL2" ; sc:url "https://github.com/nahmedraja/GASAL2" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_3168 ; - sc:citation , - "pmcid:PMC6862790", - "pubmed:31744474" ; - sc:description """a GPU accelerated sequence alignment library for high-throughput NGS data. - -Following publication of the original article [1], the author requested changes to the figures 4, 7, 8, 9, 12 and 14 to align these with the text. The corrected figures are supplied below. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0292 ; - sc:name "GASAL2_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31744474" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3308, @@ -28834,81 +23210,8 @@ Following publication of the original article [1], the author requested changes sc:url "https://github.com/broadinstitute/gatk" ; biotools:primaryContact "Matthew Meyerson" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0593, - edam:topic_2828, - edam:topic_3047, - edam:topic_3292, - edam:topic_3332 ; - sc:citation , - "pubmed:31589159" ; - sc:description """The synergistic co-operation of N-H...O=P hydrogen bonds and C-H...OX weak intermolecular interactions (X is =P or -C) in the (CH3O)2P(O)(NH-NHC6F5) amidophosphoester. - -Expanding the limits of computational chemistry. - -Gaussian 16 expands the range of molecules and types of chemical problems that you can model. More... - -Gaussian collaborator Dr. Vincent Ortiz has been named one of the 70 new Fellows of the American Chemical Society. We congratulate him on his achievement. More…. - -||| CORRECT NAME OF TOOL COULD ALSO BE '6-311G(d,p', 'R22(8', 'B3LYP', 'synergistic co-operation N-H OP hydrogen bonds C-H OX weak intermolecular interactions X P -C CH ...'""" ; - sc:featureList edam:operation_0310, - edam:operation_0337, - edam:operation_0394 ; - sc:name "GAUSSIAN09" ; - sc:url "http://www.gaussian.com" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3337 ; - sc:citation , - "pubmed:31859533" ; - sc:description """Evaluating the German Biobank Node as Coordinating Institution of the German Biobank Alliance. - -Produkte_Zusammenarbeit_und_Vernetzung_in_der_GBA (LamaPoll. - -Products_cooperation_and_networking_within_GBA (LamaPoll. - -Poll Produkte_Zusammenarbeit_und_Vernetzung_in_der_GBA. - -Produkte, Zusammenarbeit und Vernetzung in der GBA – Ihre Meinung ist gefragt!. - -Poll Products_cooperation_and_networking_within_GBA. - -Products, cooperation and networking within GBA – tell us your thoughts!. - -vielen Dank, dass Sie an unserer Befragung teilnehmen. In dieser Befragung geht es uns darum besser zu verstehen, wie Sie die Arbeit des German Biobank Node (GBN) und die Zusammenarbeit in der German Biobank Alliance (GBA) bewerten. - -Thank you for agreeing to participate in our survey. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'services', 'products', 'GBN', 'GBN GBA'""" ; - sc:featureList edam:operation_3283, - edam:operation_3760 ; - sc:name "GBA" ; - sc:url "https://lamapoll.de/Produkte_Zusammenarbeit_und_Vernetzung_in_der_GBA" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0634, - edam:topic_0659, - edam:topic_2640, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6909967", - "pubmed:31853227" ; - sc:description """Predicting circRNA-disease Associations Based on Gradient Boosting Decision Tree with Multiple Biological Data Fusion. - -Circular RNA (circRNA) is a closed-loop structural non-coding RNA molecule which plays a significant role during the gene regulation processes. There are many previous studies shown that circRNAs can be regarded as the sponges of miRNAs. Thus, circRNA is also a key point for disease diagnosing, treating and inferring. However, traditional experimental approaches to verify the associations between the circRNA and disease are time-consuming and money-consuming. There are few computational models to predict potential circRNA-disease associations, which become our motivation to propose a new computational model. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CircR2Disease'""" ; - sc:featureList edam:operation_2495, - edam:operation_3435, - edam:operation_3659 ; - sc:name "GBDTCDA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31853227" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0780, @@ -28924,24 +23227,8 @@ Circular RNA (circRNA) is a closed-loop structural non-coding RNA molecule which sc:softwareHelp ; sc:url "https://www.gbif.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2269, - edam:topic_3305, - edam:topic_3421, - edam:topic_3474 ; - sc:citation , - "pubmed:31586211" ; - sc:description """An Online Calculator for the Prediction of Survival in Glioblastoma Patients Using Classical Statistics and Machine Learning. - -BACKGROUND:Although survival statistics in patients with glioblastoma multiforme (GBM) are well-defined at the group level, predicting individual patient survival remains challenging because of significant variation within strata. OBJECTIVE:To compare statistical and machine learning algorithms in their ability to predict survival in GBM patients and deploy the best performing model as an online survival calculator. METHODS:Patients undergoing an operation for a histopathologically confirmed GBM were extracted from the Surveillance Epidemiology and End Results (SEER) database (2005-2015) and split into a training and hold-out test set in an 80 20 ratio""" ; - sc:featureList edam:operation_0417, - edam:operation_3503, - edam:operation_3659 ; - sc:name "GBM" ; - sc:url "https://cnoc-bwh.shinyapps.io/gbmsurvivalpredictor/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0621, @@ -28966,7 +23253,7 @@ If you organize your projects under a group, it works like a folder.""" ; sc:url "http://gbol.life" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3518, @@ -28982,32 +23269,8 @@ If you organize your projects under a group, it works like a folder.""" ; sc:name "GBS" ; sc:url "http://github.com/malemay/delgbs" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2269, - edam:topic_3474, - edam:topic_3520 ; - sc:citation , - "pmcid:PMC6929280", - "pubmed:31870283" ; - sc:description """Rapid classification of group B Streptococcus serotypes based on matrix-assisted laser desorption ionization-time of flight mass spectrometry and machine learning techniques. - -Free HTML5 Website Template by GetTemplates.co. - -A web server for identifying Group B streptococcus Serotypes. - -To enhance application of the ML models to clinical practice, we constructed a web tool named GBSTyper. - -Group B Streptococcus Serotypes identification based on MALDI-TOF mass spectra. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'GBS serotypes either'""" ; - sc:featureList edam:operation_3215, - edam:operation_3694, - edam:operation_3860 ; - sc:name "GBSTyper" ; - sc:url "http://csb.cse.yzu.edu.tw/GBSTyper/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3336, @@ -29026,22 +23289,8 @@ Group B Streptococcus Serotypes identification based on MALDI-TOF mass spectra. sc:url "https://toolshed.g2.bx.psu.edu/repository?repository_id=351af44ceb587e54" ; biotools:primaryContact "Andrew M. Lynn" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_3170 ; - sc:citation , - "pmcid:PMC6736238", - "pubmed:31504044" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Gene Cascade Finder' | A tool for identification of gene cascades and its application in Caenorhabditis elegans | Obtaining a comprehensive understanding of the gene regulatory networks, or gene cascades, involved in cell fate determination and cell lineage segregation in Caenorhabditis elegans is a long-standing challenge. Although RNA-sequencing (RNA-Seq) is a promising technique to resolve these questions, the bioinformatics tools to identify associated gene cascades from RNA-Seq data remain inadequate. To overcome these limitations, we developed Gene Cascade Finder (GCF) as a novel tool for building gene cascades by comparison of mutant and wild-type RNA-Seq data along with integrated information of protein-protein interactions, expression timing, and domains. Application of GCF to RNA-Seq data confirmed that SPN-4 and MEX-3 regulate the canonical Wnt pathway during embryonic development" ; - sc:featureList edam:operation_0277, - edam:operation_1781, - edam:operation_3439 ; - sc:name "GCF" ; - sc:url "http://www.gcf.sk.ritsumei.ac.jp" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3375, @@ -29056,7 +23305,7 @@ Group B Streptococcus Serotypes identification based on MALDI-TOF mass spectra. sc:url "https://github.com/xyzx2019/GCMDR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, edam:topic_3170, @@ -29075,7 +23324,7 @@ GCNG for extracellular gene relationship inference. (A) GCNG model using spatial sc:url "https://github.com/xiaoyeye/GCNG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0154, @@ -29094,88 +23343,8 @@ GCNG for extracellular gene relationship inference. (A) GCNG model using spatial sc:url "http://gcpred.com/" ; biotools:primaryContact "Aloysius Wong" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0209, - edam:topic_3047, - edam:topic_3292, - edam:topic_3303, - edam:topic_3474 ; - sc:citation ; - sc:description """Exploring the GDB-13 Chemical Space Using Deep Generative Models. - -A Recurrent Neural Network implementation that uses SMILES strings to generate molecules from GDB-13. - -Implementation of the RNN model used in "Exploring the GDB-13 chemical space using deep generative models". - -University of Bern · DCB · Reymond Group. - -Mechanistic basis of the inhibition of SLC11/NRAMP-mediated metal ion transport by bis-isothiourea substituted compounds. - -Cover Picture: Medicinal Chemistry Aware Database GDBMedChem (Mol. Inf. 8‐9/2019). - -The cover picture shows a 3D‐map of GDBMedChem, containing 10 million drug‐like molecules selected from the generated database GDB17 by applying medicinal chemistry rules, projected from the 42‐dimensional MQN chemical space and color‐coded by the number of ring. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/PolyPharmacology_Browser (UNIBE.CH), bio.tools/ppb (UNIBE.CH), bio.tools/multi-fingerprint_browser (UNIBE.CH)""" ; - sc:featureList edam:operation_0310, - edam:operation_0337, - edam:operation_2426 ; - sc:license "MIT" ; - sc:name "GDB-13" ; - sc:url "http://gdb.unibe.ch" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0209, - edam:topic_3303, - edam:topic_3315, - edam:topic_3474 ; - sc:citation , - "pubmed:31883554" ; - sc:description """Exploring Chemical Space with Machine Learning. - -University of Bern · DCB · Reymond Group. - -Mechanistic basis of the inhibition of SLC11/NRAMP-mediated metal ion transport by bis-isothiourea substituted compounds. - -Cover Picture: Medicinal Chemistry Aware Database GDBMedChem (Mol. Inf. 8‐9/2019). - -The cover picture shows a 3D‐map of GDBMedChem, containing 10 million drug‐like molecules selected from the generated database GDB17 by applying medicinal chemistry rules, projected from the 42‐dimensional MQN chemical space and color‐coded by the number of ring. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/PolyPharmacology_Browser (UNIBE.CH), bio.tools/ppb (UNIBE.CH), bio.tools/multi-fingerprint_browser (UNIBE.CH). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'GDB13 database', 'reymond-group'""" ; - sc:featureList edam:operation_0337 ; - sc:name "GDB13" ; - sc:url "http://gdb.unibe.ch" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0659, - edam:topic_2640, - edam:topic_3173, - edam:topic_3577 ; - sc:citation ; - sc:description """Uniform Genomic Data Analysis in the NCI Genomic Data Commons. - -The NCI's Genomic Data Commons (GDC) provides the cancer research community with a unified data repository that enables data sharing across cancer genomic studies in support of precision medicine. - -The Next Generation Cancer Knowledge Network. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/gdc. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/rtips (CANCER.GOV). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'GDC Data', 'GDC Data Portal', 'Genomic Data Commons'""" ; - sc:featureList edam:operation_0224, - edam:operation_3196, - edam:operation_3211, - edam:operation_3227, - edam:operation_3431 ; - sc:name "GDC_autogenerated" ; - sc:url "https://gdc.cancer.gov/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -29200,7 +23369,7 @@ The gene sequence and genetic feature variation between different individuals ar sc:url "https://github.com/baoxingsong/GEAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0196, @@ -29224,7 +23393,7 @@ The gene sequence and genetic feature variation between different individuals ar "Andreas Keller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3474, @@ -29241,7 +23410,7 @@ graph embedding deep learning guide microbial biomarkers' identification.""" ; sc:url "https://github.com/MicroAVA/GEDFN.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -29255,7 +23424,7 @@ graph embedding deep learning guide microbial biomarkers' identification.""" ; sc:url "http://webtools.mcdb.ucla.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3314, @@ -29268,7 +23437,7 @@ graph embedding deep learning guide microbial biomarkers' identification.""" ; sc:url "http://gem-net.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3303, @@ -29282,7 +23451,7 @@ graph embedding deep learning guide microbial biomarkers' identification.""" ; sc:url "http://www.lcqb.upmc.fr/GEMME" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -29300,24 +23469,8 @@ graph embedding deep learning guide microbial biomarkers' identification.""" ; sc:url "http://gemmer.barberislab.com" ; biotools:primaryContact "Matteo Barberis" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3382 ; - sc:citation , - "pubmed:31633924" ; - sc:description """A Graphical User Interface for the Packmol Program. - -We present GEMS-Pack, a graphical user interface for Packmol. Since Packmol is largely used by the molecular simulation community, this work provides a complement to it, in the form of a user-friendly and efficient interface. A tool for number volume density calculation is provided to make needed calculations faster. Also, a visualization utility is included, which lets the users preview how their systems will look like even before running the packing procedure. This application does not modify the original Packmol code; it works in a complementary way, by generating the input script and running it through the system's terminal. This program is part of a development project and is intended to be further extended. Two examples are described in this paper to illustrate GEMS-Pack usage. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Packmol'""" ; - sc:featureList edam:operation_0337 ; - sc:name "GEMS-Pack" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31633924" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, @@ -29335,7 +23488,7 @@ The GEMtractor a platform for trimming and extracting genome-scale metabolic mod sc:url "http://sbi.uni-rostock.de/gemtractor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -29357,14 +23510,22 @@ GENAVi combines several R packages commonly used for normalizing, clustering, vi sc:url "https://junkdnalab.shinyapps.io/GENAVi/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0659, edam:topic_0769 ; - sc:citation , - "pubmed:30357393" ; + sc:citation , + , + , + , + "pmcid:PMC3431492", + "pmcid:PMC7778937", + "pubmed:22955987", + "pubmed:22955988", + "pubmed:30357393", + "pubmed:33270111" ; sc:description "Consortium identifying and classifying all gene features in the human and mouse genomes with high accuracy based on biological evidence, and releasing these annotations for the benefit of biomedical research and genome interpretation." ; sc:featureList edam:operation_2422, edam:operation_3501 ; @@ -29384,7 +23545,7 @@ GENAVi combines several R packages commonly used for normalizing, clustering, vi sc:url "https://www.gencodegenes.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0194, @@ -29395,6 +23556,7 @@ GENAVi combines several R packages commonly used for normalizing, clustering, vi edam:topic_3299, edam:topic_3943 ; sc:citation , + , , , ; @@ -29411,46 +23573,8 @@ GENAVi combines several R packages commonly used for normalizing, clustering, vi biotools:primaryContact , . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_3360, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6701329", - "pubmed:31467713" ; - sc:description "> LOW CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/ncbi_resources (NLM.NIH.GOV), bio.tools/ncbi_geo (NCBI.NLM.NIH.GOV/geo), bio.tools/genbank (NLM.NIH.GOV) | > CORRECT NAME OF TOOL COULD ALSO BE 'gene our', 'RobustRankAggreg', 'CRC' (bio.tools/CRC), 'colorectal' | Integrated Analysis of Oncogenic Networks in Colorectal Cancer Identifies GUCA2A as a Molecular Marker | Gene Expression Omnibus (GEO) is a database repository of high throughput gene expression data and hybridization arrays, chips, microarrays | GEO is a public functional genomics data repository supporting MIAME-compliant data submissions. Array- and sequence-based data are accepted. Tools are provided to help users query and download experiments and curated gene expression profiles" ; - sc:featureList edam:operation_2495, - edam:operation_3431, - edam:operation_3766 ; - sc:name "GEO" ; - sc:url "https://www.ncbi.nlm.nih.gov/geo" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0659, - edam:topic_3518 ; - sc:citation , - , - , - , - , - "pmcid:PMC6662497", - "pmcid:PMC6676667", - "pmcid:PMC6676736", - "pubmed:31385238", - "pubmed:31392215", - "pubmed:31402962", - "pubmed:31424263", - "pubmed:31452738" ; - sc:description "> LOW CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/ncbi_resources (NLM.NIH.GOV), bio.tools/ncbi_geo (NCBI.NLM.NIH.GOV/geo ; NLM.NIH.GOV/geo), bio.tools/genbank (NLM.NIH.GOV) | Screening and Bioinformatics Analysis of IgA Nephropathy Gene Based on GEO Databases | Discovery of core genes in colorectal cancer by weighted gene co-expression network analysis | Identifying miltefosine-resistant key genes in protein-protein interactions network and experimental verification in Iranian Leishmania major | Screening of potential biomarkers in hepatitis C virus-induced hepatocellular carcinoma using bioinformatic analysis | Identification of Key Biomarkers and Potential Molecular Mechanisms in Oral Squamous Cell Carcinoma by Bioinformatics Analysis | Gene Expression Omnibus (GEO) is a database repository of high throughput gene expression data and hybridization arrays, chips, microarrays" ; - sc:featureList edam:operation_3463, - edam:operation_3766, - edam:operation_3792 ; - sc:name "GEO2R" ; - sc:url "http://www.ncbi.nlm.nih.gov/geo/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -29464,62 +23588,8 @@ GENAVi combines several R packages commonly used for normalizing, clustering, vi sc:softwareHelp ; sc:url "https://anaconda.org/xentrics/r-geo2rnaseq" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_3360, - edam:topic_3518 ; - sc:citation , - , - , - "pmcid:PMC6777682", - "pubmed:31535407", - "pubmed:31535658", - "pubmed:31545397" ; - sc:description "> LOW CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/ncbi_geo (NLM.NIH.GOV/geo ; NCBI.NLM.NIH.GOV/geo), bio.tools/ncbi_resources (NLM.NIH.GOV), bio.tools/genbank (NLM.NIH.GOV) | > CORRECT NAME OF TOOL COULD ALSO BE 'KEGG', 'spinal cord injury', 'TLR4', 'SSc', 'CALU', 'microRNA-TF', 'Npy Atf3', 'DEGs', 'Npy', 'spinal cord injury zebrafish', 'cord injury', 'spinal cord' | Screening and identification of biomarkers for systemic sclerosis via microarray technology | Identification of key candidate genes in neuropathic pain by integrated bioinformatic analysis | Bioinformatic identification of key candidate genes and pathways in axon regeneration after spinal cord injury in zebrafish | Gene Expression Omnibus (GEO) is a database repository of high throughput gene expression data and hybridization arrays, chips, microarrays | Use GEO2R to compare two or more groups of Samples in order to identify genes that are differentially expressed across experimental conditions" ; - sc:featureList edam:operation_0313, - edam:operation_3223, - edam:operation_3501 ; - sc:name "GEO2R_autogenerated" ; - sc:url "http://www.ncbi.nlm.nih.gov/geo/geo2r/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_3295, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6751626", - "pubmed:31533842" ; - sc:description "> VERY_LOW CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/ncbi_resources (NLM.NIH.GOV), bio.tools/ncbi_geo (NCBI.NLM.NIH.GOV/geo), bio.tools/genbank (NLM.NIH.GOV) | > CORRECT NAME OF TOOL COULD ALSO BE 'GSE112047', 'MethylMix' (bio.tools/methylmix), 'limma' (bio.tools/limma), 'GSE112047 GSE76938' | Identification of key DNA methylation-driven genes in prostate adenocarcinoma | Gene Expression Omnibus (GEO) is a database repository of high throughput gene expression data and hybridization arrays, chips, microarrays | GEO is a public functional genomics data repository supporting MIAME-compliant data submissions. Array- and sequence-based data are accepted. Tools are provided to help users query and download experiments and curated gene expression profiles" ; - sc:featureList edam:operation_2495, - edam:operation_3206, - edam:operation_3207 ; - sc:name "GEO_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/geo/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_3308, - edam:topic_3324, - edam:topic_3489, - edam:topic_3810 ; - sc:citation ; - sc:description """Characterisation of Quorum Sensing System and Its Role in Global Regulation in Hafnia alvei. - -This database stores curated gene expression DataSets, as well as original Series and Platform records in the Gene Expression Omnibus (GEO) repository. Enter search terms to locate experiments of interest. DataSet records contain additional resources including cluster tools and differential expression queries. - -(smok* OR diet) AND (mammals[organism] NOT human[organism]). - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/GSE33335 (NLM.NIH.GOV/gds), bio.tools/ncbi_resources (NLM.NIH.GOV), bio.tools/genbank (NLM.NIH.GOV). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'homoserine lactones AHLs Hafnia alvei', 'AHLs Hafnia alvei', 'lactones AHLs Hafnia alvei', 'Hafnia alvei'""" ; - sc:featureList edam:operation_0323, - edam:operation_2421, - edam:operation_3431 ; - sc:name "GEO database" ; - sc:url "https://www.ncbi.nlm.nih.gov/gds" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0204, @@ -29546,7 +23616,7 @@ Huang, Tinghua & Huang, Xiali & Shi, Bomei & Yao, Min. (2019)""" ; sc:url "http://www.thua45.cn/geredb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0736, @@ -29564,7 +23634,7 @@ GESUR performs overall survival (OS) or disease free survival (DFS, also called sc:url "http://gesur.cancer-pku.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3361, @@ -29585,7 +23655,7 @@ Share your maps, measurements, and sensors.""" ; sc:url "http://get-it.it" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -29609,7 +23679,7 @@ You can find the code for the MTLR algorithm here http://pssp.srv.ualberta.ca/ho sc:url "https://github.com/nitsanluke/GE-LDA-Survival" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3295, edam:topic_3474, @@ -29624,7 +23694,7 @@ We combined clinical, cytokine, genomic, methylation and dietary data from 43 yo sc:url "https://cran.r-project.org/web/packages/GFA/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -29644,19 +23714,8 @@ We combined clinical, cytokine, genomic, methylation and dietary data from 43 yo sc:url "https://github.com/V-Bernal/GGM-Shrinkage" ; biotools:primaryContact "Peter Horvatovich" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0194, - edam:topic_0621, - edam:topic_3293 ; - sc:citation , - "pubmed:31364711" ; - sc:description "> HOMEPAGE MISSING! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/ghost | > CORRECT NAME OF TOOL COULD ALSO BE 'IQ-TREE' (bio.tools/iq-tree) | Recovering Historical Signal from Heterotachously-evolved Sequence Alignments | Molecular sequence data that have evolved under the influence of heterotachous evolutionary processes are known to mislead phylogenetic inference. We introduce the General Heterogeneous evolution On a Single Topology (GHOST) model of sequence evolution, implemented under a maximum-likelihood framework in the phylogenetic program IQ-TREE (http: www.iqtree.org). Simulations show that using the GHOST model, IQ-TREE can accurately recover the tree topology, branch lengths and substitution model parameters from heterotachously-evolved sequences. We investigate the performance of the GHOST model on empirical data by sampling phylogenomic alignments of varying lengths from a plastome alignment" ; - sc:featureList edam:operation_0547 ; - sc:name "GHOST_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31364711" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0218, @@ -29678,17 +23737,8 @@ We combined clinical, cytokine, genomic, methylation and dietary data from 43 yo biotools:primaryContact "Xiaoyan Zhang", "Ying Wang" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3444 ; - sc:citation , - "pmcid:PMC6715136", - "pubmed:31468034" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'MDE' | Efficient and Robust Group-wise Isometric Fiber Embedding | Tractography is a prevalent technique for in vivo imaging of the white matter fibers (a.k.a. the tractograms), but it is also known to be error-prone. We previously propose the Group-wise Tractogram Analysis (GiTA) framework for identifying anatomically valid fibers across subjects according to cross-subject consistency. However, the original framework is based on computationally expensive brute-force KNN search. In this work, we propose a more general and efficient extension of GiTA. Our main idea is to find the finite dimensional vector-space representation of the fiber tracts of varied lengths across different subjects, and we call it the group-wise isometric fiber embedding (GIFE)" ; - sc:name "GIFE" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31468034" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0736, edam:topic_3315 ; @@ -29697,33 +23747,8 @@ We combined clinical, cytokine, genomic, methylation and dietary data from 43 yo sc:name "GISA" ; sc:url "https://github.com/ceegeeCode/GISA" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0123, - edam:topic_0154, - edam:topic_0166, - edam:topic_2275 ; - sc:citation , - "pubmed:31589427" ; - sc:description """Solvation Free Energy as a Measure of Hydrophobicity. - -For a standard cpptraj installation, a shell script and a patch file has been supplied. - -bash patch.sh . - -In configure add to the CUDA_TARGET cuda_kernel_gist/lib_cuda_gist.a. - -The columns in the gist output file are ordered differently than in the original implementation, the density of the water oxygen and hydrogen was moved to the back. This, of course, also has a big impact on the other columns. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/gist""" ; - sc:featureList edam:operation_0405, - edam:operation_0407, - edam:operation_0409, - edam:operation_0478 ; - sc:name "GIST_autogenerated" ; - sc:url "https://github.com/liedllab/gigist" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -29744,7 +23769,7 @@ The columns in the gist output file are ordered differently than in the original sc:url "http://genomegitar.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0621, @@ -29766,7 +23791,7 @@ Perl script that automates the analyses to establish GL-UVAB (Genomic Lineages o sc:url "https://sourceforge.net/projects/gluvab/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2269, @@ -29781,26 +23806,8 @@ Perl script that automates the analyses to establish GL-UVAB (Genomic Lineages o sc:name "GLAMbox" ; sc:url "https://glambox.readthedocs.io/en/latest/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0092, - edam:topic_2269 ; - sc:citation , - "pmcid:PMC6914332", - "pubmed:31841564" ; - sc:description """A Python toolbox for investigating the association between gaze allocation and decision behaviour. - -Free document hosting provided by Read the Docs. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/GLAMbox""" ; - sc:featureList edam:operation_0337, - edam:operation_2426, - edam:operation_3435, - edam:operation_3436 ; - sc:name "GLAMbox_autogenerated" ; - sc:url "https://glambox.readthedocs.io" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0749, @@ -29820,18 +23827,8 @@ Free document hosting provided by Read the Docs. sc:url "https://github.com/burcakotlu/GLANET" ; biotools:primaryContact "Burçak Otlu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3334, - edam:topic_3342 ; - sc:citation , - "pmcid:PMC6144751" ; - sc:description "> CORRECT NAME OF TOOL COULD ALSO BE 'P04.08 GLIOTRAIN', 'ConclusionGLIOTRAIN', 'ResultsGLIOTRAIN' | Exploiting Glioblastoma intractability to address European research training needs in translational brain tumour research, cancer systems medicine and integrative multi-omics | An estimated 240,000 cases of brain and nervous system tumours are diagnosed every year, worldwide and Glioblastoma (GBM) is the most frequent and aggressive brain tumour. New treatment options and effective precision medicine therapies are urgently required. GLIOTRAIN is a multi-sectoral industry-academia collaboration, funded by the European Union's Horizon 2020 research and innovation programme under the Marie Skłodowska-Curie ITN initiative, that will work to identify novel strategies to treat GBM as well as investigating resistance mechanisms in this devastating disease | A MARIE SKŁODOWSKA-CURIE ACTIONS (MSCA) Innovative Training Network (ITN)" ; - sc:name "GLIOTRAIN" ; - sc:url "http://www.gliotrain.eu" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -29852,7 +23849,7 @@ Implements a generalized version of principal components analysis (GLM-PCA) for sc:url "https://cran.r-project.org/web/packages/glmpca/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0099, @@ -29869,7 +23866,7 @@ Implements a generalized version of principal components analysis (GLM-PCA) for sc:url "http://bioinfo.szn.it/glossary/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0781, @@ -29893,7 +23890,7 @@ Implements a generalized version of principal components analysis (GLM-PCA) for "Robert Gifford" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3068, @@ -29914,7 +23911,7 @@ Implements a generalized version of principal components analysis (GLM-PCA) for sc:url "https://glycotoolkit.com/Tools/GLAD/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -29936,7 +23933,7 @@ Implements a generalized version of principal components analysis (GLM-PCA) for biotools:primaryContact "Jian-Feng Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -29951,7 +23948,7 @@ Recently, increasing evidences have indicated that dysregulations of long non-co sc:url "https://github.com/bioinfomaticsCSU/GMCLDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3385, @@ -29964,7 +23961,7 @@ Recently, increasing evidences have indicated that dysregulations of long non-co sc:url "https://github.com/BrandinGrindstaff/GMpi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0625, @@ -29976,21 +23973,8 @@ Recently, increasing evidences have indicated that dysregulations of long non-co sc:name "GMrepo" ; sc:url "https://gmrepo.humangut.info" . - a sc:SoftwareApplication ; - sc:citation "pubmed:31855550" ; - sc:description """Generalized Multiplicative Model for Assessing Outcomes in Psychotherapy. - -The study presents further development and application of generalized multiplicative models (GMultM) for assessing outcomes in psychotherapy. GMultM is a flexible nonlinear regression method which is able to predict the impact of subjects' psychological variables (common factors) as well as theirchanges on the outcomes of cognitive-behavioral therapy and rhythmic-movement therapy. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'RMT'""" ; - sc:featureList edam:operation_3659 ; - sc:name "GMultM" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31855550" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0128, @@ -30008,7 +23992,7 @@ BACKGROUND:Semantic similarity between Gene Ontology (GO) terms is a fundamental sc:url "https://github.com/xszhong/GO2Vec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0196, @@ -30035,7 +24019,7 @@ These datasets generated by GOMAP are new high-coverage and reproducible functio sc:url "https://dill-picl.org/projects/gomap/gomap-datasets/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0632, @@ -30058,7 +24042,7 @@ These datasets generated by GOMAP are new high-coverage and reproducible functio biotools:primaryContact "The Jackson Laboratory" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3382, @@ -30076,7 +24060,7 @@ A large, high-diversity, one-shot database for generic object tracking in the wi sc:url "http://got-10k.aitestunion.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -30098,7 +24082,7 @@ A large, high-diversity, one-shot database for generic object tracking in the wi biotools:primaryContact "Hezha Hassan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0102, @@ -30114,7 +24098,7 @@ A large, high-diversity, one-shot database for generic object tracking in the wi sc:url "https://gocats.readthedocs.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0121, @@ -30136,7 +24120,7 @@ A large, high-diversity, one-shot database for generic object tracking in the wi biotools:primaryContact "Mikhail Pomaznoy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -30157,7 +24141,7 @@ GPCRmd is an online platform with web-based visualization capabilities and a com sc:url "http://gpcrmd.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -30180,7 +24164,7 @@ GPCRmd is an online platform with web-based visualization capabilities and a com biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0622, @@ -30204,7 +24188,7 @@ gene prediction tool for finding genes with highly variable GC contents such as sc:url "https://sourceforge.net/projects/gpred-gc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -30222,32 +24206,8 @@ GPSRdocker is a docker-based container that provides a resources on Genomics, Pr sc:name "GPSRdocker" ; sc:url "https://webs.iiitd.edu.in/gpsrdocker" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0176, - edam:topic_0610, - edam:topic_2275, - edam:topic_3314, - edam:topic_3316 ; - sc:citation ; - sc:description """Developing Efficient Discrete Simulations on Multi-Core and GPU Architectures. - -High performance computing on graphics processing units. - -Redirecting to http://www.ibiblio.org. - -High performance computing on graphics processing units (GPU): AMD, ATI and nVidia; OpenCL, CUDA; algorithms, science and applications; GPGPU. - -Sparse matrix–vector multiplication (SpMV) kernel dominates the computing cost in numerous applications. Most of the existing studies dedicated to improving this kernel have been targeting just one type of processing units, mainly multicore CPUs or graphics processing units (GPUs), and have not explored the potential of the recent, rapidly emerging, CPU-GPU heterogeneous platforms. To take […]. - -||| CORRECT NAME OF TOOL COULD ALSO BE '8259CL', 'AWS', 'with48cores', '9900k'""" ; - sc:featureList edam:operation_0478, - edam:operation_2476, - edam:operation_3891 ; - sc:name "GPU" ; - sc:url "http://gpgpu.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3314 ; sc:citation , @@ -30265,7 +24225,7 @@ Sparse matrix–vector multiplication (SpMV) kernel dominates the computing cost biotools:primaryContact "Jorge Garza" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0780, @@ -30287,7 +24247,7 @@ Here, we will use the test files to provide an example of how to use GPress. We sc:url "https://github.com/qm2/gpress" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -30306,7 +24266,7 @@ Code for the GPseudoClust method, including pre- and postprocessing steps. Magda sc:url "https://github.com/magStra/GPseudoClust" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -30322,7 +24282,7 @@ Code for the GPseudoClust method, including pre- and postprocessing steps. Magda sc:url "https://github.com/gersteinlab/GRAM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -30341,7 +24301,7 @@ Code for the GPseudoClust method, including pre- and postprocessing steps. Magda biotools:primaryContact "Guillaume Lobet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -30361,7 +24321,7 @@ Code for the GPseudoClust method, including pre- and postprocessing steps. Magda sc:url "https://www.geenivaramu.ee/en/tools/granvil" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697, @@ -30377,7 +24337,7 @@ Code for the GPseudoClust method, including pre- and postprocessing steps. Magda sc:url "http://adsteen.shinyapps.io/grase" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3382 ; @@ -30390,7 +24350,7 @@ GRASS GIS is a free Geographic Information System (GIS) software used for geospa sc:url "http://grass.osgeo.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -30413,7 +24373,7 @@ GRASS GIS is a free Geographic Information System (GIS) software used for geospa biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0780, @@ -30431,7 +24391,7 @@ GRASS GIS is a free Geographic Information System (GIS) software used for geospa biotools:primaryContact "B. Merritt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -30445,7 +24405,7 @@ GRASS GIS is a free Geographic Information System (GIS) software used for geospa sc:url "https://dcolin.shinyapps.io/CancerGRN/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0749, @@ -30464,7 +24424,7 @@ GRASS GIS is a free Geographic Information System (GIS) software used for geospa sc:url "https://github.com/hernanchavezthielemann/GRO2LAM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -30486,25 +24446,8 @@ Genetic Resources Of Nicotine and Smoking (GRONS) is a database devoted to provi sc:name "GRONS" ; sc:url "http://bioinfo.tmu.edu.cn/GRONS/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0154, - edam:topic_2640, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6929405", - "pubmed:31870274" ; - sc:description """Predicting synthetic lethal interactions in human cancers using graph regularized self-representative matrix factorization. - -The prediction results of GRSMF""" ; - sc:featureList edam:operation_0440, - edam:operation_2492, - edam:operation_2495 ; - sc:name "GRSMF" ; - sc:url "https://github.com/Oyl-CityU/GRSMF" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, @@ -30525,7 +24468,7 @@ Accumulating evidence points to the strong and complicated associations between sc:url "https://github.com/chentianlu/GRaMM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -30543,252 +24486,8 @@ Accumulating evidence points to the strong and complicated associations between sc:softwareHelp ; sc:url "https://gsan.labri.fr" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_0749, - edam:topic_3170, - edam:topic_3421, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6900391", - "pubmed:31573758" ; - sc:description """Circular RNA circ-TSPAN4 promotes lung adenocarcinoma metastasis by upregulating ZEB1 via sponging miR-665. - -NCBI's Gene Expression Omnibus (GEO) is a public archive and resource for gene expression data. - -GEO help: Mouse over screen elements for information. - -Scope: Self Platform Samples Series Family Format: HTML SOFT MINiML Amount: Brief Quick GEO accession:. - -||| NAME (GSE104854) SIMILAR TO (PUB. DIFFERENT) bio.tools/GSE33335 (GSE33335), bio.tools/GSE56348 (GSE56348), bio.tools/GSE117578 (GSE117578), bio.tools/gse (GSE). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'miR-665 upregulating ZEB1', 'circ-TSPAN4 miR-665 ZEB1', 'circ-TSPAN4', 'miR-665'""" ; - sc:featureList edam:operation_0463, - edam:operation_2495, - edam:operation_3799 ; - sc:name "GSE104854" ; - sc:url "http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE104854" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3308, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6659985", - "pubmed:31372377" ; - sc:description "> MEDIUM CONFIDENCE! | > NAME (GSE117578) SIMILAR TO (PUB. DIFFERENT) bio.tools/gse (GSE) | > CORRECT NAME OF TOOL COULD ALSO BE 'Gene Expression' (bio.tools/gene_expression), 'Gene Expression Omnibus' | Datasets of microarray analysis to identify Gpr137b-dependent interleukin-4-responsive genes in the mouse macrophage cell line RAW264 | NCBI's Gene Expression Omnibus (GEO) is a public archive and resource for gene expression data | GEO help: Mouse over screen elements for information | Scope: Self Platform Samples Series Family Format: HTML SOFT MINiML Amount: Brief Quick GEO accession:" ; - sc:featureList edam:operation_0224, - edam:operation_0531, - edam:operation_3431 ; - sc:name "GSE117578" ; - sc:url "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE117578" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3308, - edam:topic_3518 ; - sc:citation , - "pubmed:31498430" ; - sc:description "> MEDIUM CONFIDENCE! | > NAME (GSE33335) SIMILAR TO (PUB. DIFFERENT) bio.tools/gse (GSE) | > CORRECT NAME OF TOOL COULD ALSO BE 'GSE54129', 'GPNMB', 'gastric', 'DEGs' | Transcriptome analysis reveals GPNMB as a potential therapeutic target for gastric cancer | Expression data from gastric tissues: Cancer Samples vs. Matched Adjacent Noncancerous Samples | To elucidate gene expression associated with copy number changes, we performed a genome-wide copy number and expression microarray analysis of 25 pairs of gastric tissues | db=gds:term=gse33335:query=1:qty=2:blobid=NCID_1_2569115_130.14.22.76_9001_1573757527_1385458599_0MetA0_S_MegaStore_F_1:ismultiple=true:min_list=5:max_list=20:def_tree=20:def_list=:def_view=:url=/Taxonomy/backend/subset.cgi?:trace_url=/stat?" ; - sc:featureList edam:operation_0533, - edam:operation_2436, - edam:operation_3258 ; - sc:name "GSE33335" ; - sc:url "https://www.ncbi.nlm.nih.gov/gds/?term=gse33335" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_2640, - edam:topic_3295, - edam:topic_3519 ; - sc:citation , - "pubmed:31709538" ; - sc:description """Gene expression and methylation profiles identified CXCL3 and CXCL8 as key genes for diagnosis and prognosis of colon adenocarcinoma. - -NCBI's Gene Expression Omnibus (GEO) is a public archive and resource for gene expression data. - -GEO help: Mouse over screen elements for information. - -Scope: Self Platform Samples Series Family Format: HTML SOFT MINiML Amount: Brief Quick GEO accession:. - -||| NAME (GSE44076) SIMILAR TO (PUB. DIFFERENT) bio.tools/GSE33335 (GSE33335), bio.tools/GSE56348 (GSE56348), bio.tools/GSE117578 (GSE117578), bio.tools/gse (GSE). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CXCL3 CXCL8', 'COAD', 'CXCL8', 'CXCL3 CXCL8 COAD'""" ; - sc:featureList edam:operation_2495, - edam:operation_3435, - edam:operation_3501 ; - sc:name "GSE44076" ; - sc:url "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE44076" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0203, - edam:topic_0634 ; - sc:citation , - "pmcid:PMC6713409", - "pubmed:31364721" ; - sc:description "> MEDIUM CONFIDENCE! | > NAME (GSE56348) SIMILAR TO (PUB. DIFFERENT) bio.tools/gse (GSE) | > CORRECT NAME OF TOOL COULD ALSO BE 'GSE36074', 'GSE18224', 'cardiac remodeling', 'DEGs' | Identification of differentially expressed genes and preliminary validations in cardiac pathological remodeling induced by transverse aortic constriction | NCBI's Gene Expression Omnibus (GEO) is a public archive and resource for gene expression data | GEO help: Mouse over screen elements for information | Scope: Self Platform Samples Series Family Format: HTML SOFT MINiML Amount: Brief Quick GEO accession:" ; - sc:featureList edam:operation_2492, - edam:operation_3223, - edam:operation_3501 ; - sc:name "GSE56348" ; - sc:url "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE56348" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_0634, - edam:topic_3512, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6813054", - "pubmed:31647035" ; - sc:description """Potential molecular mechanism of ACE gene at different time points in STEMI patients based on genome-wide microarray dataset. - -NCBI's Gene Expression Omnibus (GEO) is a public archive and resource for gene expression data. - -GEO help: Mouse over screen elements for information. - -Scope: Self Platform Samples Series Family Format: HTML SOFT MINiML Amount: Brief Quick GEO accession:. - -||| NAME (GSE59867) SIMILAR TO (PUB. DIFFERENT) bio.tools/GSE33335 (GSE33335), bio.tools/GSE56348 (GSE56348), bio.tools/GSE117578 (GSE117578), bio.tools/gse (GSE). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'STEMI', 'admission', 'ACE' (bio.tools/ace_insect; bio.tools/ace), 'discharge'""" ; - sc:featureList edam:operation_2436, - edam:operation_2497, - edam:operation_3463 ; - sc:name "GSE59867" ; - sc:url "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE59867" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_0659, - edam:topic_3512, - edam:topic_3518 ; - sc:citation , - "pubmed:31801399" ; - sc:description """Prediction and analysis of weighted genes in isoflurane induced general anesthesia based on network analysis. - -Purpose: Isoflurane is still wildly used in the developing countries and isoflurane-induced general anesthesia gives rise to serious side effects. The aim of the present study was to investigate the molecular mechanism on isoflurane-induced general anesthesia. Materials and methods: The microarray data of GSE64617 dataset was downloaded from Gene Expression Omnibus (GEO) database. A total of 755 DEGs were identified using the limma package in the R programming language. Gene Ontology (GO) enrichment analysis and Kyoto Encyclopedia of Genes, and Genomes (KEGG) pathways enrichment were conducted for DEGs. - -||| NAME (GSE64617) SIMILAR TO (PUB. DIFFERENT) bio.tools/GSE33335 (GSE33335), bio.tools/GSE56348 (GSE56348), bio.tools/GSE117578 (GSE117578), bio.tools/gse (GSE). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'isoflurane', 'anesthesia', 'HMBOX1', 'isoflurane-induced'""" ; - sc:featureList edam:operation_1781, - edam:operation_3223, - edam:operation_3439, - edam:operation_3501 ; - sc:name "GSE64617" ; - sc:url "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE64nnn/GSE64617/matrix/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_2640, - edam:topic_3379, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6781748", - "pubmed:31611968" ; - sc:description """Exploration of estrogen receptor-associated hub genes and potential molecular mechanisms in non-smoking females with lung adenocarcinoma using integrated bioinformatics analysis. - -NCBI's Gene Expression Omnibus (GEO) is a public archive and resource for gene expression data. - -GEO help: Mouse over screen elements for information. - -Scope: Self Platform Samples Series Family Format: HTML SOFT MINiML Amount: Brief Quick GEO accession:. - -||| NAME (GSE75037) SIMILAR TO (PUB. DIFFERENT) bio.tools/GSE33335 (GSE33335), bio.tools/GSE56348 (GSE56348), bio.tools/GSE117578 (GSE117578), bio.tools/gse (GSE). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'GSE32863', 'DEGs', 'non-smoking', 'GEO' (bio.tools/GEO)""" ; - sc:featureList edam:operation_2422, - edam:operation_2495, - edam:operation_3223, - edam:operation_3501 ; - sc:name "GSE75037" ; - sc:url "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=gse75037" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0637, - edam:topic_0659, - edam:topic_0749, - edam:topic_2640, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6794874", - "pubmed:31636511" ; - sc:description """Identification of differentially expressed circRNAs and a novel hsa_circ_0000144 that promote tumor growth in gastric cancer. - -CricRNA expression profiling in human gastric cancer. - -Using the highly sensitive cricRNA array, we screened 13617 circRNAs abundant in the human gastric cancer and Adjacent normal gastric mucosa tissues, and the function of differentially expressed circRANs were analyzed by bioinformatics. The... - -db=gds:term=GSE78092:query=1:qty=2:blobid=NCID_1_164614383_130.14.22.76_9001_1578306930_592117587_0MetA0_S_MegaStore_F_1:ismultiple=true:min_list=5:max_list=20:def_tree=20:def_list=:def_view=:url=/Taxonomy/backend/subset.cgi?:trace_url=/stat?. - -||| NAME (GSE78092) SIMILAR TO (PUB. DIFFERENT) bio.tools/GSE33335 (GSE33335), bio.tools/GSE56348 (GSE56348), bio.tools/GSE117578 (GSE117578), bio.tools/gse (GSE). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'miRNAs' (bio.tools/miRNAs), 'hsa_circ_0000144', 'circRNAs', 'circRNA' (bio.tools/circRNA)""" ; - sc:featureList edam:operation_0463, - edam:operation_2495, - edam:operation_3435, - edam:operation_3446, - edam:operation_3695 ; - sc:name "GSE78092" ; - sc:url "https://www.ncbi.nlm.nih.gov/gds/?term=GSE78092" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3421, - edam:topic_3512, - edam:topic_3518, - edam:topic_3557 ; - sc:citation , - "pubmed:31638302" ; - sc:description """CRYAB promotes osteogenic differentiation of human bone marrow stem cells via stabilizing β-catenin and promoting the Wnt signalling. - -NCBI's Gene Expression Omnibus (GEO) is a public archive and resource for gene expression data. - -GEO help: Mouse over screen elements for information. - -Scope: Self Platform Samples Series Family Format: HTML SOFT MINiML Amount: Brief Quick GEO accession:. - -||| NAME (GSE80614) SIMILAR TO (PUB. DIFFERENT) bio.tools/GSE33335 (GSE33335), bio.tools/GSE56348 (GSE56348), bio.tools/GSE117578 (GSE117578), bio.tools/gse (GSE). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'GEO' (bio.tools/GEO), 'BMSCs osteogenic', 'BMSCs osteogenic differentiation', 'BMSCs'""" ; - sc:featureList edam:operation_0224, - edam:operation_2495, - edam:operation_3223 ; - sc:name "GSE80614" ; - sc:url "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE80614.66" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0199, - edam:topic_2640, - edam:topic_3407, - edam:topic_3676 ; - sc:citation , - "pmcid:PMC6925869", - "pubmed:31864301" ; - sc:description """POLE mutations improve the prognosis of endometrial cancer via regulating cellular metabolism through AMF/AMFR signal transduction. - -Gene Set Enrichment Analysis (GSEA) is a computational method that determines whether an a priori defined set of genes shows statistically. - -20-Aug-2019: GSEA 4.0.0 released. This release includes support for MSigDB 7.0, plus major internal updates for Java 11 support and performance improvements. See the release notes for more information. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/gsea. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'AMF PGI AMFR gp78', 'AMFR gp78', 'PGI AMFR gp78', 'AMF PGI AMFR'""" ; - sc:featureList edam:operation_2436, - edam:operation_3503, - edam:operation_3659 ; - sc:name "GSEA_autogenerated" ; - sc:url "http://www.broadinstitute.org/gsea/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0634, @@ -30802,7 +24501,7 @@ Gene Set Enrichment Analysis (GSEA) is a computational method that determines wh sc:url "https://github.com/Superraptor/GSSO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3517, @@ -30827,7 +24526,7 @@ Gene Set Enrichment Analysis (GSEA) is a computational method that determines wh "Seon-Young Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0623, @@ -30843,7 +24542,7 @@ Gene Set Enrichment Analysis (GSEA) is a computational method that determines wh sc:url "https://github.com/ecg-lab/GTA-Hunter-v1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0625, @@ -30858,7 +24557,7 @@ Gene Set Enrichment Analysis (GSEA) is a computational method that determines wh sc:url "https://github.com/caiorns/GTACG-backend" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , @@ -30874,12 +24573,19 @@ Gene Set Enrichment Analysis (GSEA) is a computational method that determines wh biotools:primaryContact "CVC-Colon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0637, edam:topic_3174 ; - sc:citation ; + sc:citation , + , + , + , + "pmcid:PMC8728215", + "pubmed:32341564", + "pubmed:34155373", + "pubmed:34520557" ; sc:description "Selection of representative genomes for 24,706 bacterial and archaeal species clusters provide a complete genome-based taxonomy | Toolkit for establishing, updating, and validating GTDB species clusters" ; sc:featureList edam:operation_0544, edam:operation_3432, @@ -30889,7 +24595,7 @@ Gene Set Enrichment Analysis (GSEA) is a computational method that determines wh sc:url "https://gtdb.ecogenomic.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0637, @@ -30912,7 +24618,7 @@ GTDB-Tk is a software toolkit for assigning objective taxonomic classifications sc:url "https://github.com/ecogenomics/gtdbtk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194 ; @@ -30926,29 +24632,8 @@ Abstract Phylogeny estimation is an important part of much biological research, sc:name "GTM" ; sc:url "https://github.com/vlasmirnov/GTM" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0218, - edam:topic_0769, - edam:topic_3168, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6923899", - "pubmed:31856831" ; - sc:description """an online NGS data interpretation system based on intelligent gene ranking and large-scale text mining. - -Contact: digest@gtxlab.com. - -Use without Registration. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'VCF'""" ; - sc:featureList edam:operation_0306, - edam:operation_3226, - edam:operation_3227 ; - sc:name "GTX Digest VCF" ; - sc:url "http://vcf.gtxlab.com" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:citation ; sc:description "Software to guess the RNA-Seq library type of paired and single end read files using mapping and gene annotation." ; @@ -30960,7 +24645,7 @@ Use without Registration. sc:url "https://github.com/NBISweden/GUESSmyLT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0820, @@ -30983,7 +24668,7 @@ Use without Registration. "Yves Mély" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3489, edam:topic_3520 ; @@ -30997,7 +24682,7 @@ GUcal 1.1c - Internal / bracketing standard approach with GlycoStore database""" sc:url "https://www.gucal.hu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -31013,7 +24698,7 @@ GUcal 1.1c - Internal / bracketing standard approach with GlycoStore database""" biotools:primaryContact "marco.bilucaglia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -31028,7 +24713,7 @@ GUcal 1.1c - Internal / bracketing standard approach with GlycoStore database""" sc:url "https://github.com/Joyvalley/GWAS_Flow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -31060,7 +24745,7 @@ GWAS Central provides a complete Study metadata file for use in data citation re sc:url "https://www.gwascentral.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -31082,7 +24767,7 @@ GWAS Central provides a complete Study metadata file for use in data citation re biotools:primaryContact "Nilotpal Sanyal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517, edam:topic_3572 ; @@ -31096,30 +24781,8 @@ GWAS Central provides a complete Study metadata file for use in data citation re sc:softwareVersion "1.3.4" ; sc:url "http://gwasinspector.com/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0634, - edam:topic_0749, - edam:topic_3399 ; - sc:citation , - , - "pmcid:PMC6845271", - "pmcid:PMC6847619" ; - sc:description """PARTNERING IN GERIATRICS WORKFORCE ENHANCEMENT PROGRAMS. - -EDUCATIONAL OUTCOMES OF DEMENTIA CAREGIVER CONFERENCES IN RURAL UTAH. - -AbstractTo achieve their healthcare system transformational goals to improve care for older adults, Geriatrics Workforce Enhancement Programs (GWEPs) facilitate the building of strong relationships among academia, community-based organizations, and primary care networks. Each GWEP develops strategies to formalize collaborations and build sustainable networks to meet program goals while addressing partner needs. Unique models from four GWEPs addressing stakeholder engagement are described, and factors facilitating collaboration are explored. One GWEP achieves mutual goals by collaborating with statewide coalitions that have a history of successful partnerships. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'GERIATRIC WORKFORCE ENHANCEMENT PROGRAM', 'caregiver', 'ADKS', 'dementia'""" ; - sc:featureList edam:operation_3435 ; - sc:name "GWEP" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6845271/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3384, @@ -31133,7 +24796,7 @@ AbstractTo achieve their healthcare system transformational goals to improve car sc:url "https://github.com/neuroanatomy/GWPC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3391 ; sc:description "GalaxEast aims at providing a large range of bioinformatics tools for the analysis of various types of Omics data. It supports reproducible computational research by providing an environment for performing and recording bioinformatics analyses." ; @@ -31141,14 +24804,14 @@ AbstractTo achieve their healthcare system transformational goals to improve car sc:url "http://www.galaxeast.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091 ; sc:description "An online catalog that lists all the tools available on various Galaxy instances and thus allows through a simple web interface to quickly find on which instances a tool is usable." ; sc:name "GalaxyCat" ; sc:url "http://galaxycat.france-bioinformatique.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "A wide variety of tools from the Galaxy instance of Institut Pasteur, France." ; @@ -31156,7 +24819,7 @@ AbstractTo achieve their healthcare system transformational goals to improve car sc:url "https://galaxy.pasteur.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Tools provided by the Galaxy workbench." ; @@ -31170,10 +24833,9 @@ AbstractTo achieve their healthcare system transformational goals to improve car a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:citation ; sc:description "We have developed a range of practical scripts, together with their corresponding Galaxy wrappers, that make scRNA-seq training and quality-control accessible to researchers previously daunted by the prospect of scRNA-seq analysis. We implement a ‘visualise-filter-visualise’ paradigm through simple command-line tools that use the Loom format to exchange data between the tools. The point-and-click nature of Galaxy makes it easy to assess, visualise, and filter scRNA-seq data from short-read sequencing data." ; @@ -31187,7 +24849,7 @@ AbstractTo achieve their healthcare system transformational goals to improve car biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0637, @@ -31205,22 +24867,8 @@ AbstractTo achieve their healthcare system transformational goals to improve car sc:name "Gall-ID" ; sc:url "http://gall-id.cgrb.oregonstate.edu/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108 ; - sc:citation , - "pmcid:PMC6846234" ; - sc:description """AN ONLINE TRANSLATION OF REACH II REFINED THROUGH EARLY STAKEHOLDER USABILITY TESTING. - -AbstractDespite a number of evidences on the implementation of multicomponent education and support programs to improve the lives of dementia caregivers, there is still a need to adapt these interventions to various implementation settings and preferences of a new generation of caregivers. In this study, we present the development and usability testing of a dementia caregiver support program, GamePlan4Care (GP4C), an online translation of the Resources for Enhancing Alzheimer’s Caregiver Health II (REACH II) intervention. The goal of the GP4C is to create an online family caregiver support system that would facilitate delivery of an evidence-based skills-training and support for dementia caregivers with the potential of both scalability and sustainability. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'GP4C', 'dementia caregivers', 'caregivers', 'caregiver'""" ; - sc:name "GamePlan4Care" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6846234/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -31233,7 +24881,7 @@ AbstractDespite a number of evidences on the implementation of multicomponent ed sc:url "https://papers.genomics.lbl.gov/cgi-bin/gapView.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3398, @@ -31252,7 +24900,7 @@ AbstractDespite a number of evidences on the implementation of multicomponent ed biotools:primaryContact "Paul A. Jensen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -31268,7 +24916,7 @@ AbstractDespite a number of evidences on the implementation of multicomponent ed sc:url "https://cole-trapnell-lab.github.io/garnett" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474, @@ -31289,7 +24937,7 @@ The GazeVisual-Lib is a repository of software tools for practical evaluation of sc:url "http://github.com/anuradhakar49/GazeVisual-Lib" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3068, @@ -31306,7 +24954,7 @@ Abstract Motivation The genetic mechanisms involved in human diseases are fundam sc:url "https://bitbucket.org/laigen/gedex/src/master/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -31329,7 +24977,7 @@ Abstract Motivation The genetic mechanisms involved in human diseases are fundam biotools:primaryContact "Minzhe Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3298, @@ -31349,7 +24997,7 @@ Abstract Motivation The genetic mechanisms involved in human diseases are fundam sc:url "https://gephex.ega-archive.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "GemSIM is a software package for generating realistic simulated next-generation sequencing reads with quality score values. Both Illumina and Roche/454 reads (single or paired end) can be simulated using appropriate empirical error models." ; @@ -31361,22 +25009,22 @@ Abstract Motivation The genetic mechanisms involved in human diseases are fundam a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_1939" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091, @@ -31393,7 +25041,7 @@ Abstract Motivation The genetic mechanisms involved in human diseases are fundam biotools:primaryContact "Migle Gabrielaite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -31410,7 +25058,7 @@ Abstract Motivation The genetic mechanisms involved in human diseases are fundam biotools:primaryContact "Turner Conrad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0637 ; sc:description "Utilities for manipulations and visualization tasks on GenBank taxonomic information." ; @@ -31423,7 +25071,7 @@ Abstract Motivation The genetic mechanisms involved in human diseases are fundam sc:url "https://github.com/spond/gb_taxonomy_tools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3673, @@ -31443,29 +25091,8 @@ Abstract Motivation The genetic mechanisms involved in human diseases are fundam sc:url "https://github.com/ubccr/genesysv" ; biotools:primaryContact "Center for Computational Research" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_0203, - edam:topic_3489 ; - sc:citation , - "pmcid:PMC6836710", - "pubmed:31697362" ; - sc:description """Enabling semantic queries across federated bioinformatics databases. - -Ontology Documentation generated by WIDOCO. - -Gene expression (GenEx) semantic model. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/genex. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Bgee' (bio.tools/bgee), 'SPARQL'""" ; - sc:featureList edam:operation_0224, - edam:operation_3282 ; - sc:name "GenEx_autogenerated" ; - sc:url "https://biosoda.github.io/genex/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -31485,7 +25112,7 @@ Genome-scale studies using high-throughput sequencing (HTS) technologies generat sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31844835" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -31505,7 +25132,7 @@ A repository for the GenGraph toolkit for the creation and manipulation of graph sc:url "https://github.com/jambler24/GenGraph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3170, @@ -31535,7 +25162,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://geniesys.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_3063, @@ -31558,7 +25185,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://bioinformatics.ibioba-mpsp-conicet.gov.ar/GenIO/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0102, @@ -31580,23 +25207,8 @@ Free document hosting provided by Read the Docs""" ; sc:url "http://gentree.ioz.ac.cn/index.php" ; biotools:primaryContact "ZhangLab" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3372, - edam:topic_3410 ; - sc:citation ; - sc:description """Pull request acceptance of women versus men. - -Guaranteeing the 'our' in source... - -Open source licenses are licenses that comply with the Open Source Definition — in brief, they allow software to be freely used, modified, and shared. To be approved by the Open Source Initiative (also known as the OSI), a license must go through the Open Source Initiative's license review process. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'women'""" ; - sc:name "Gender differences bias open source" ; - sc:url "http://opensource.org/licenses" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -31617,7 +25229,7 @@ Open source licenses are licenses that comply with the Open Source Definition biotools:primaryContact "Jingcheng Du" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -31637,7 +25249,7 @@ De novo mutations (DNMs) significantly contribute to sporadic diseases, particul sc:url "http://www.genemed.tech/gene4denovo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0203, @@ -31661,28 +25273,14 @@ Systems analysis toolkit containing Gene-Module Association Determination (G-MAD sc:name "GeneBridge" ; sc:url "https://github.com/lihaone/GeneBridge" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_3170, - edam:topic_3407 ; - sc:citation , - "pmcid:PMC6754596", - "pubmed:31484776" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | GeneFishing to reconstruct context specific portraits of biological processes | Rapid advances in genomic technologies have led to a wealth of diverse data, from which novel discoveries can be gleaned through the application of robust statistical and computational methods. Here, we describe GeneFishing, a semisupervised computational approach to reconstruct context-specific portraits of biological processes by leveraging gene-gene coexpression information. GeneFishing incorporates multiple high-dimensional statistical ideas, including dimensionality reduction, clustering, subsampling, and results aggregation, to produce robust results. To illustrate the power of our method, we applied it using 21 genes involved in cholesterol metabolism as \"bait\" to \"fish out\" (or identify) genes not previously identified as being connected to cholesterol metabolism" ; - sc:featureList edam:operation_3463, - edam:operation_3660, - edam:operation_3766 ; - sc:name "GeneFishing" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31484776" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Sets of assembled eukaryotic transcripts can be analyzed by the modified GeneMarkS algorithm (the set should be large enough to permit self-training). A single transcript can be analyzed by a special version of GeneMark.hmm with Heuristic models. A new advanced algorithm GeneMarkS-T was developed recently (manuscript sent to publisher)." ; sc:name "GeneMarkS-T" ; sc:url "http://topaz.gatech.edu/GeneMark/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3295, @@ -31707,7 +25305,7 @@ Systems analysis toolkit containing Gene-Module Association Determination (G-MAD . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0199, @@ -31728,7 +25326,7 @@ Systems analysis toolkit containing Gene-Module Association Determination (G-MAD sc:url "https://github.com/UoS-HGIG/GenePy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, @@ -31743,7 +25341,7 @@ Systems analysis toolkit containing Gene-Module Association Determination (G-MAD sc:url "https://github.com/BenoitMorel/GeneRax" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -31767,7 +25365,7 @@ Systems analysis toolkit containing Gene-Module Association Determination (G-MAD "Sahil Shah" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -31788,7 +25386,7 @@ The goal of GeneSwitches is to discover the order of gene-expression and functio sc:url "https://geneswitches.ddnetbio.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0625, @@ -31811,7 +25409,7 @@ The goal of GeneSwitches is to discover the order of gene-expression and functio biotools:primaryContact "Matthew Gordon Sampson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -31828,7 +25426,7 @@ The goal of GeneSwitches is to discover the order of gene-expression and functio sc:url "http://github.com/churchmanlab/genewalk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -31851,7 +25449,7 @@ The goal of GeneSwitches is to discover the order of gene-expression and functio sc:url "https://geneyenta.com/accounts/home/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_3474, @@ -31875,21 +25473,42 @@ The goal of GeneSwitches is to discover the order of gene-expression and functio "Jeffrey J. Essner", "Stephen C. Ekker" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3308, - edam:topic_3400, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6749933", - "pubmed:31559014" ; - sc:description "> LOW CONFIDENCE! | A curated transcriptome dataset collection to investigate inborn errors of immunity | There was an error sending your bug report. Please fill out the form and try again | Your Email: (so we can get back to you when the bug has been fixed)" ; - sc:featureList edam:operation_0337, - edam:operation_3258 ; - sc:name "Gene_autogenerated" ; - sc:url "http://pid.gxbsidra.org/dm3/geneBrowser/list" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene identifier" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_3070, + edam:topic_3344, + edam:topic_3474, + edam:topic_3948 ; + sc:description """Platform based on Artificial Intelligence Neural Network. +Suggest the most probable gene (protein) based on deep learning on million of scientific papers. +It also link the input+output to many free research tools to understand what the neural network suggested and why.""" ; + sc:featureList edam:operation_2436, + edam:operation_3279, + edam:operation_3625, + edam:operation_3767, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:license "Freeware" ; + sc:name "GeneRecommender" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "2 stable" ; + sc:url "https://www.generecommender.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -31913,7 +25532,7 @@ The goal of GeneSwitches is to discover the order of gene-expression and functio "Alexander Lachmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -31930,7 +25549,7 @@ The goal of GeneSwitches is to discover the order of gene-expression and functio sc:url "https://github.com/mshabbirhasan/Genesis-indel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3068, @@ -31948,7 +25567,7 @@ A tool for genogeographic inference""" ; sc:url "http://genogeographer.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0091, @@ -31978,7 +25597,7 @@ We integrated about 40 million metadata of several major valuable data sources, biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0622 ; @@ -31993,7 +25612,7 @@ We integrated about 40 million metadata of several major valuable data sources, sc:url "http://bioinfo.szn.it/genoma/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -32022,7 +25641,7 @@ The tool genome3d-api aims to make communicating with the Genome3D API as conven sc:url "https://www.genome3d.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -32041,7 +25660,7 @@ The tool genome3d-api aims to make communicating with the Genome3D API as conven biotools:primaryContact "Jianlin Cheng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -32071,7 +25690,7 @@ Sets up a GenomeHubs site hosting a mirror of the core database for the Glanvill sc:url "http://GenomeHubs.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -32090,7 +25709,7 @@ GenomeQC generates descriptive summaries with intuitive graphics for genome asse sc:url "https://genomeqc.maizegdb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0196, @@ -32107,29 +25726,8 @@ About Press Copyright Contact us Creators Advertise Developers Terms Privacy Pol sc:name "Genome Constellation" ; sc:url "https://bitbucket.org/berkeleylab/jgi-genomeconstellation/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_2885, - edam:topic_3168 ; - sc:citation , - "pubmed:31849005" ; - sc:description """Performing QTL and eQTL Analyses with the R-Package GenomicTools. - -This Package is the continuation of the genomic analysis tools part of the GeneticTools package. - -Website accompanying the R-package 'GenomicTools'. - -Today the versions 0.2.8 for GenomicTools and 0.1.4 for GenomicTools.fileHandler have been released with a couple of bugfixes and a list of new features. In details we have. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/genomictools""" ; - sc:featureList edam:operation_3196, - edam:operation_3232, - edam:operation_3435 ; - sc:name "GenomicTools_autogenerated" ; - sc:url "http://genomictools.danielfischer.name" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -32146,7 +25744,7 @@ Today the versions 0.2.8 for GenomicTools and 0.1.4 for GenomicTools.fileHandler sc:url "https://github.com/hanlab-SNU/GenomicGPS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3337, edam:topic_3396, @@ -32172,7 +25770,7 @@ Using high-level APIs provided in C++, Java*, and Spark*, users can both write a sc:url "http://www.genomicsdb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0621, @@ -32199,7 +25797,7 @@ Using high-level APIs provided in C++, Java*, and Spark*, users can both write a . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0194, @@ -32225,7 +25823,7 @@ Using high-level APIs provided in C++, Java*, and Spark*, users can both write a . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0194, @@ -32251,7 +25849,7 @@ Using high-level APIs provided in C++, Java*, and Spark*, users can both write a . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0194, @@ -32277,7 +25875,7 @@ Using high-level APIs provided in C++, Java*, and Spark*, users can both write a . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0194, @@ -32301,7 +25899,7 @@ Using high-level APIs provided in C++, Java*, and Spark*, users can both write a . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:description "A multigenome platform with information on genomes and gene annotations from different tomato cultivars. This platform includes genomes from Heinz 1706, Lucariello and Corbarino (tomato landaraces) with related genome browsers and transcriptomic data. It gives free access to the recently sequenced Italian tomato varieties and offers tools for their comparative analysis. (Tranchida-Lombardo et al., ‎2017; https://doi.org/10.1093/dnares/dsx045)" ; @@ -32314,7 +25912,7 @@ Using high-level APIs provided in C++, Java*, and Spark*, users can both write a sc:url "http://cab.unina.it/genotom/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0097, @@ -32335,7 +25933,7 @@ The Genus database collects information about topological structure and complexi sc:url "http://genus.fuw.edu.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0769, @@ -32360,7 +25958,7 @@ The webtools (GeoNode integration) analysis workflow follows a four step approac sc:url "http://geonode.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -32374,7 +25972,7 @@ The webtools (GeoNode integration) analysis workflow follows a four step approac sc:url "http://www.gephebase.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3325, edam:topic_3411 ; @@ -32393,7 +25991,7 @@ The webtools (GeoNode integration) analysis workflow follows a four step approac "Silvia Berlage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -32421,7 +26019,7 @@ The webtools (GeoNode integration) analysis workflow follows a four step approac biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -32438,30 +26036,8 @@ GiniClust is a clustering method specifically designed for rare cell type detect sc:name "GiniClust3" ; sc:url "https://github.com/rdong08/GiniClust3" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0769, - edam:topic_2815 ; - sc:citation ; - sc:description """Excuse me, do you have a moment to talk about version control?. - -A presentation I gave at UXBri. Audio + Slides here: https://www.youtube.com/watch?v=eWxxfttcMts. - -Git is a member of Software Freedom Conservancy, which handles legal and financial needs for the project. Conservancy is currently raising funds to continue their mission. Consider becoming a supporter! ×. - -Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. - -Audio + Slides here: https://www.youtube.com/watch?v=eWxxfttcMts. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'unhappy', 'Excuse', 'unfolds', 'Markdown'""" ; - sc:featureList edam:operation_3096, - edam:operation_3435, - edam:operation_3802 ; - sc:name "Git" ; - sc:url "https://speakerdeck.com/alicebartlett/git-for-humans" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168, @@ -32476,31 +26052,8 @@ Audio + Slides here: https://www.youtube.com/watch?v=eWxxfttcMts. sc:name "GkmExplain" ; sc:url "https://github.com/kundajelab/gkmexplain" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0654, - edam:topic_0659, - edam:topic_2640, - edam:topic_3295 ; - sc:citation , - "pubmed:31811943" ; - sc:description """A Web Server for Integrating Glioma Omics Data and Interactive Analysis. - -A comprehensive database for both clinicians and scientists. - -GliomaDB hosts all the TCGA and MSK-IMPACT projects for somatic mutations of glioma patients. COSMIC, ClinVar and the 1000 Genome Project are integrated in annotation. - -No more difficulty in analyzing big data in glioma. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/3CDB (BIG.AC.CN)""" ; - sc:featureList edam:operation_2495, - edam:operation_3083, - edam:operation_3207 ; - sc:name "GliomaDB" ; - sc:url "http://bigd.big.ac.cn/gliomaDB" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, @@ -32521,7 +26074,7 @@ No more difficulty in analyzing big data in glioma. biotools:primaryContact "Yi He" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -32537,7 +26090,7 @@ No more difficulty in analyzing big data in glioma. sc:url "http://www.glycanstructure.org/glymdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3068, @@ -32562,7 +26115,7 @@ No more difficulty in analyzing big data in glioma. "Prof. Pauline M. Rudd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0152, @@ -32575,24 +26128,8 @@ No more difficulty in analyzing big data in glioma. sc:operatingSystem "Mac" ; sc:url "https://github.com/glycoinfo/GlycanFormatConverter" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0121, - edam:topic_0154, - edam:topic_3168, - edam:topic_3360 ; - sc:citation , - "pubmed:31860302" ; - sc:description """an integrated method for in-depth and comprehensive N-glycoproteome profiling of human plasma. - -N-glycoproteins are involved in various biological processes. Certain distinctive glycoforms on specific glycoproteins enhance the specificity and or sensitivity of cancer diagnosis. Therefore, the characterization of plasma N-glycoproteome is essential for new biomarker discovery. Absence of suitable analytical methods for in-depth and large-scale analyses of low-abundance plasma glycoproteins make it challenging to investigate the role of glycosylation. In this study, we developed an integrated method termed Glyco-CPLL, which integrates combinatorial peptide ligand libraries, high-pH reversed-phase pre-fractionation, hydrophilic interaction chromatography, trypsin and PNGase F digestion, shotgun proteomics, and various analysis software (MaxQuant and pGlyco2.0) for the low-abundance plasma glycoproteomic profiling. - -||| HOMEPAGE MISSING!""" ; - sc:name "Glyco-CPLL" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31860302" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2815, @@ -32607,7 +26144,7 @@ N-glycoproteins are involved in various biological processes. Certain distinctiv sc:url "https://github.com/CCGMS/Glyco-DIA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0152, @@ -32630,7 +26167,7 @@ Glycosylator is a Python framework for the identification, modeling and modifica sc:url "https://github.com/tlemmin/glycosylator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3382, @@ -32653,7 +26190,7 @@ Glycosylator is a Python framework for the identification, modeling and modifica biotools:primaryContact "Saskia Hiltemann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3170 ; @@ -32664,46 +26201,36 @@ Glycosylator is a Python framework for the identification, modeling and modifica sc:name "Gmove" ; sc:url "http://www.genoscope.cns.fr/gmove" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3050, - edam:topic_3377, - edam:topic_3855 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Sustainability', 'SDGs', 'SDG', 'QEOHS' | SDGs reporting by Quality, Environmental, and Occupational Health and Safety certified organizations | How Your Company Can Advance Each of the SDGs | Responsible business and investment – rooted in universal principles – will be essential to achieving transformational change through the SDGs. For companies, successful implementation will strengthen the enabling environment for doing business and building markets around the world | Below you will find links to important initiatives and resources of the UN Global Compact – and in some instances of other like-minded organizations – to guide companies and other stakeholders to action-oriented platforms and tools that support SDG implementation | It is important to note that in many instances a specific initiative or resource has relevancy to more than one SDG, reflecting the cross-cutting nature of today’s issues and challenges" ; - sc:featureList edam:operation_3891 ; - sc:name "Goals" ; - sc:url "https://www.unglobalcompact.org/sdgs/17-global-goals" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_3000" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Protocol" ; - sc:sameAs "http://edamontology.org/data_2531" ], + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Protocol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1240" ; - sc:name "PCR primers" ; - sc:sameAs "http://edamontology.org/data_1240" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1240" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "PCR primers" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -32731,17 +26258,8 @@ Glycosylator is a Python framework for the identification, modeling and modifica sc:softwareVersion "1.1.1" ; sc:url "https://msbi.ipb-halle.de/GoldenMutagenesisWeb" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128 ; - sc:citation ; - sc:description "> LOW CONFIDENCE! | Google matrix analysis of bi-functional SIGNOR network of protein-protein interactions | Linear response theory for SIGNOR PPI network | Left: matrix elements (color) of two components of reduced Google matrix of SIGNOR PPI network obtained for 40 most sensitive nodes on the pathway from protein EGFR P00533 (+) to protein JAK2 O60674 (-). Right: network of friends of most significant nodes from left panel | by K.M.Frahm and D.L.Shepelyansky | bioRxiv:https://doi.org/10.1101/750695" ; - sc:featureList edam:operation_0276, - edam:operation_2492 ; - sc:name "Google" ; - sc:url "http://www.quantware.ups-tlse.fr/QWLIB/google4signornet/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269 ; @@ -32753,7 +26271,7 @@ Glycosylator is a Python framework for the identification, modeling and modifica sc:url "https://github.com/tanhevg/GpABC.jl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -32780,48 +26298,23 @@ gplas: Binning plasmid-predicted contigs using short-read graphs""" ; "V0.7.0" ; sc:url "https://gitlab.com/sirarredondo/gplas.git" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2830, - edam:topic_3047, - edam:topic_3343, - edam:topic_3474 ; - sc:citation , - "pubmed:31743833" ; - sc:description """Ligand based virtual screening using SVM on GPU. - -Name Last modified Size Description. - -Benchmarking Dataset/ 16-Sep-2019 16:08 -. - -GpuSVMScreen.zip 10-Jan-2019 12:02 23M. - -train & classify/ 04-Dec-2018 15:52 -""" ; - sc:featureList edam:operation_0482 ; - sc:name "GpuSVMScreen" ; - sc:url "http://ccc.nitc.ac.in/project/GPUSVMSCREEN" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -32845,7 +26338,7 @@ train & classify/ 04-Dec-2018 15:52 -""" ; sc:url "http://urgi.versailles.inra.fr/GrapeMine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -32864,7 +26357,7 @@ Seed-and-extend program for aligning long error-prone reads to genome graphs. Fo sc:url "https://anaconda.org/bioconda/graphaligner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0659, @@ -32887,32 +26380,8 @@ GraphClust2 is a workflow for scalable clustering of RNAs based on sequence and sc:name "GraphClust2" ; sc:url "https://graphclust.usegalaxy.eu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0769, - edam:topic_3474 ; - sc:citation , - "pubmed:31584634" ; - sc:description """Methods, Applications, and Evaluations. - -Graph Embedding Evaluation / Code and Datasets for "Graph Embedding on Biomedical Networks: Methods, Applications, and Evaluations". - -BioNEV (Biomedical Network Embedding Evaluation). - -This repository contains source code and datasets for paper "Graph Embedding on Biomedical Networks: Methods, Applications, and Evaluations" (accepted by Bioinformatics). This work aims to systematically evaluate recent advanced graph embedding techniques on biomedical tasks. We compile 5 benchmark datasets for 4 biomedical prediction tasks (see paper for details) and use them to evaluate 11 representative graph embedding methods selected from different categories:. - -5 matrix factorization-based: Laplacian Eigenmap, SVD, Graph Factorization, HOPE, GraRep. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'BioNEV'""" ; - sc:featureList edam:operation_0303, - edam:operation_2492, - edam:operation_3439 ; - sc:license "MIT" ; - sc:name "Graph Embedding Biomedical Networks" ; - sc:url "https://github.com/xiangyue9607/BioNEV" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749, @@ -32933,7 +26402,7 @@ This repository contains source code and datasets for paper "Graph Embedding on biotools:primaryContact "Biomedical Informatics Research Group (BMI)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320, @@ -32948,7 +26417,7 @@ This repository contains source code and datasets for paper "Graph Embedding on sc:url "https://github.com/lbcb-sci/graphmap2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -32969,7 +26438,7 @@ This repository contains source code and datasets for paper "Graph Embedding on biotools:primaryContact "Hannes Pétur Eggertsson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3318, @@ -32986,7 +26455,7 @@ BACKGROUND:Multiple Sclerosis (MS) is an immune-mediated inflammatory disease of sc:url "https://github.com/greatspn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -33005,7 +26474,7 @@ BACKGROUND:Multiple Sclerosis (MS) is an immune-mediated inflammatory disease of biotools:primaryContact "Fredrik Wermeling" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -33020,38 +26489,8 @@ BACKGROUND:Multiple Sclerosis (MS) is an immune-mediated inflammatory disease of sc:name "GripDL" ; sc:url "https://github.com/2010511951/GripDL" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0154, - edam:topic_0176, - edam:topic_2275 ; - sc:citation , - "pubmed:31790223" ; - sc:description """Accurate Scoring of Protein-Protein Binding Poses Using Explicit-Solvent Free-Energy Calculations. - -Protein-protein docking algorithms promise a potential relief for the mismatch between the number of experimentally determined complex structures and the number of relevant protein interactions in an organism. To distinguish correctly from wrongly generated poses, it is necessary to score complexes according to their structural similarity to the real complex, which is usually done by computing interaction energies of some sort. Here, we explore the potential of free-energy calculations with statistical-mechanical foundation in the context of molecular dynamics (MD) simulations with explicit solvent to score a large number of complex poses. We introduce an adaptive sampling scheme which ensures that most sampling time is spent on the most promising poses. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'statistical-mechanical', 'Score_set'""" ; - sc:featureList edam:operation_2476, - edam:operation_3802, - edam:operation_3899 ; - sc:name "GroScore" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31790223" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3300 ; - sc:citation , - "pmcid:PMC6710362", - "pubmed:31481893" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | A Matlab GUI for Artifact and Feature Identification in Physiological Signals | Groundtruth is a Matlab Graphical User Interface (GUI) developed for the identification of key features and artifacts within physiological signals. The ultimate aim of this GUI is to provide a simple means of assessing the performance of new sensors. Secondary, to this is providing a means of providing marked data, enabling assessment of automated artifact rejection and feature identification algorithms. With the emergence of new wearable sensor technologies, there is an unmet need for convenient assessment of device performance, and a faster means of assessing new algorithms. The proposed GUI allows interactive marking of artifact regions as well as simultaneous interactive identification of key features, e.g., respiration peaks in respiration signals, R-peaks in Electrocardiography signals, etc" ; - sc:featureList edam:operation_0337 ; - sc:name "Groundtruth" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31481893" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3390, @@ -33064,7 +26503,7 @@ Protein-protein docking algorithms promise a potential relief for the mismatch b sc:url "https://github.com/RungruangsakTorrissenManoonpong/GrowthEstimate" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -33083,7 +26522,7 @@ GsVec (Gene signature Vector) is an analysis method that supports the biological sc:url "https://github.com/yuumio/GsVec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3343, @@ -33103,7 +26542,7 @@ GsVec (Gene signature Vector) is an analysis method that supports the biological biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -33117,7 +26556,7 @@ GsVec (Gene signature Vector) is an analysis method that supports the biological sc:url "http://github.io/H3ABionet-SOPs/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -33141,7 +26580,7 @@ To simulate recombination and pooled sequencing data from a panel of sequenced f sc:url "https://github.com/petrov-lab/HAFpipe-line" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -33165,28 +26604,8 @@ To simulate recombination and pooled sequencing data from a panel of sequenced f sc:softwareVersion "1.2" ; sc:url "http://tesla.pcbi.upenn.edu/hamr/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0634, - edam:topic_0654, - edam:topic_3295, - edam:topic_3674 ; - sc:citation , - "pubmed:31680172" ; - sc:description """Targeted DNA methylation of neurodegenerative disease genes via homology directed repair. - -DNA methyltransferases (DNMTs) are thought to be involved in the cellular response to DNA damage, thus linking DNA repair mechanisms with DNA methylation. In this study we present Homology Assisted Repair Dependent Epigenetic eNgineering (HARDEN), a novel method of targeted DNA methylation that utilizes endogenous DNA double strand break repair pathways. This method allows for stable targeted DNA methylation through the process of homology directed repair (HDR) via an in vitro methylated exogenous repair template. We demonstrate that HARDEN can be applied to the neurodegenerative disease genes C9orf72 and APP, and methylation can be induced via HDR with both single and double stranded methylated repair templates. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0308, - edam:operation_3186, - edam:operation_3206, - edam:operation_3207 ; - sc:name "HARDEN" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31680172" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -33199,17 +26618,8 @@ DNA methyltransferases (DNMTs) are thought to be involved in the cellular respon sc:name "HCCPred" ; sc:url "http://webs.iiitd.edu.in/raghava/hccpred/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0593, - edam:topic_3384, - edam:topic_3444 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE BROKEN! | > CORRECT NAME OF TOOL COULD ALSO BE 'Statistical significance DTI group analyses', 'OLLS', 'IWLLS', 'dMRI' | How the choice of the estimator can inflate effect sizes | Abstract Diffusion magnetic resonance imaging (dMRI) is one of the most prevalent methods to investigate the micro- and macrostructure of the human brain in vivo. Prior to any group analysis, dMRI data are generally processed to alleviate adverse effects of known artefacts such as signal drift, data noise and outliers, subject motion, and geometric distortions. These dMRI data processing steps are often combined in automated pipelines, such as the one of the Human Connectome Project (HCP). While improving the performance of processing tools has clearly shown its benefits at each individual step along the pipeline, it remains unclear whether and to what degree choices for specific user-defined parameter settings can affect the final outcome of group analyses" ; - sc:name "HCP" ; - sc:url "https://wiki.humanconnectome.org/display/PublicData/HCP+Data+Release+Updates%3A+Kno516" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3444, @@ -33221,7 +26631,7 @@ DNA methyltransferases (DNMTs) are thought to be involved in the cellular respon sc:url "https://github.com/NeuroAI-HD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3577 ; sc:citation , @@ -33232,7 +26642,7 @@ DNA methyltransferases (DNMTs) are thought to be involved in the cellular respon sc:url "https://bitbucket.org/cdal/hdgmcm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:citation ; sc:description "Collection of high-dimensional cytometry benchmark datasets in Bioconductor object formats | Data package containing high-dimensional cytometry data sets in SummarizedExperiment and flowSet formats | R code to reproduce example in Figure 1 in our HDCytoData paper | The HDCytoData package is an extensible resource containing a set of publicly available high-dimensional flow cytometry and mass cytometry (CyTOF) benchmark datasets, which have been formatted into SummarizedExperiment and flowSet Bioconductor object formats. The data objects are hosted on Bioconductor's ExperimentHub platform" ; @@ -33244,39 +26654,8 @@ DNA methyltransferases (DNMTs) are thought to be involved in the cellular respon sc:softwareHelp ; sc:url "http://bioconductor.org/packages/HDCytoData" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3403, - edam:topic_3418, - edam:topic_3419 ; - sc:citation , - "pmcid:PMC6735715", - "pubmed:31528104" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'provincial dissemination HEARTSMAP', 'HEARTSMAP emergency paediatric psychosocial', 'HEARTSMAP emergency paediatric psychosocial assessments' | emergency department psychosocial assessment and disposition decision tool for children and youth | OPEN HEARTSMAP – An Emergency Psychosocial Assessment + Management tool for children + youth | An Emergency Psychosocial Assessment + Management tool for children + youth | Registration and use of Open HEARTSMAP is intended solely for clinicians (physicians, nurses, social workers, other mental health workers) to aid their psychosocial assessment. Other use is non-permissible" ; - sc:featureList edam:operation_3891 ; - sc:name "HEARTSMAP" ; - sc:url "http://www.openheartsmap.ca" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3300, - edam:topic_3390, - edam:topic_3855 ; - sc:citation , - "pmcid:PMC6718993", - "pubmed:31412559" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'HEAT-SHIELD Platform' | An Occupational Heat-Health Warning System for Europe | Use the advanced Heat-Shield alert system and get scenario specific and personalized forecasts, advice on hydration, how to minimize heat load, solutions for specific industries.. | Heat stress depends on the weather as well as your individual physiology and working conditions" ; - sc:name "HEAT-SHIELD" ; - sc:url "https://heatshield.zonalab.it/" . - - a sc:SoftwareApplication ; - sc:citation , - "pmcid:PMC6739537", - "pubmed:31534917" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE BROKEN! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/krisp (ORG.ZA) | > CORRECT NAME OF TOOL COULD ALSO BE 'Assistive technology enables inclusion higher education', 'PSET', 'PSET sector' | The role of Higher and Further Education Disability Services Association | Background:Using assistive technology is one way to foster inclusion of students in the post-school education and training (PSET) sector. Objectives:Higher and Further Education Disability Services Association (HEDSA) enables the sharing of new knowledge about assistive technologies through its symposia, and making information available on its website. Additionally, it facilitates dialogue and collaboration amongst institutions in the PSET network using a listserv and newsletters, given that PSET institutions are spread countrywide" ; - sc:name "HEDSA" ; - sc:url "http://www.hedsa.org.za" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -33290,26 +26669,8 @@ DNA methyltransferases (DNMTs) are thought to be involved in the cellular respon sc:name "HEGIAP" ; sc:url "http://sysomics.com/HEGIAP/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3068, - edam:topic_3305, - edam:topic_3420 ; - sc:citation , - "pubmed:31755052" ; - sc:description """Implementation of the Health Equity Impact Assessment (HEIA) tool in a local public health setting. - -SETTING:The Simcoe Muskoka District Health Unit (SMDHU) is a local public health agency in Ontario, serving the County of Simcoe and District of Muskoka's population of over 540,000 people in a mixed urban-rural environment. SMDHU has had a strategic focus on the determinants of health since 2007. INTERVENTION:The use of the Health Equity Impact Assessment (HEIA) tool was encouraged throughout SMDHU. An online survey was conducted to assess the implementation of mitigation strategies identified through the HEIAs; in particular, the facilitators and barriers challenges, and the impacts at both the program level and the level of priority populations, themselves, were assessed. OUTCOMES:Agency programs reported 40 HEIAs conducted between 2013 and 2017. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'mitigation', 'mitigation strategies'""" ; - sc:featureList edam:operation_3799 ; - sc:name "HEIA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31755052" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0749, @@ -33326,7 +26687,7 @@ SETTING:The Simcoe Muskoka District Health Unit (SMDHU) is a local public health sc:url "https://hermes.grnet.gr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0218, @@ -33348,64 +26709,8 @@ Check Hypermap Registry documentation.""" ; sc:name "HHypermap" ; sc:url "https://github.com/cga-harvard/HHypermap" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0769, - edam:topic_3063, - edam:topic_3303, - edam:topic_3360, - edam:topic_3379 ; - sc:citation ; - sc:description """Development of a Pipeline to Collate Electronic Clinical Data for Viral Hepatitis Research. - -Health Informatics Collaborative – National Institute for Health Research. - -Health Informatics Collaborative. - -National Institute for Health Research. - -The NIHR Health Informatics Collaborative (HIC) brings together all NHS trusts with NIHR Biomedical Research Centres (BRCs) and their partner trust to make NHS clinical data more readily available to NHS trusts, researchers, industry and the wider NHS community. The collaborative comprises NHS trusts that are interested in collaborating with other NHS trusts on translational research projects. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'National Institute Health Research Health Informatics Collaborative NIHR HIC', 'hepatitis', 'NIHR', 'viral'""" ; - sc:featureList edam:operation_3431 ; - sc:name "HIC" ; - sc:url "https://hic.nihr.ac.uk/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3068, - edam:topic_3305 ; - sc:citation , - "pubmed:31829504" ; - sc:description """An open invitation to join HILJ [Journal] Club. - -Access to Health Information and Libraries Journal (HILJ). - -HILJ CPD reading Volume 35 No 3 – Developing a generic tool to routinely measure the impact of health libraries. - -HILJ CPD Reading vol 35 no 3 – Localising and tailoring research evidence helps public health decision making. – Health librarian and info skills trainer. - -HILJ Club – Read articles – talk about them. - -As an HLG member you can access the Journal here. - -Welcome to the second experimental online reading group aimed at encouraging discussion of interesting articles in HILJ. The first attempt took place around Volume 35 No 2 on CILIP Social Link (link may require CILIP login and may not take you to the right place). Unfortunately we found SocialLink did not really offer quite what was…. - -Thanks to an idea from Alan Fricker, we're reading articles from HILJ for our CPD. - -Health librarian and info skills trainer. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'HILJ Club'""" ; - sc:featureList edam:operation_0305, - edam:operation_2422, - edam:operation_3096, - edam:operation_3283, - edam:operation_3436 ; - sc:name "HILJ" ; - sc:softwareHelp ; - sc:url "https://archive.cilip.org.uk/health-libraries-group/health-information-libraries-journal/access-health-information-libraries-journal-hilj" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -33424,7 +26729,7 @@ The Hearing Impairment Ontology (HIO) is a collaboratively developed resource by sc:url "https://bioportal.bioontology.org/ontologies/HIO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654, @@ -33438,22 +26743,8 @@ The included Python scripts (mat2net.py, and predictCTpos.py) contain an impleme sc:name "HIRAC" ; sc:url "https://github.com/priyojitDas/HIRAC" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_2885, - edam:topic_3676 ; - sc:citation , - "pubmed:31375807" ; - sc:description "> LOW CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/hisat2 | Graph-based genome alignment and genotyping with HISAT2 and HISAT-genotype | Graph-based alignment (Hierarchical Graph FM index) | HISAT2 is a fast and sensitive alignment program for mapping next-generation sequencing reads (whole-genome, transcriptome, and exome sequencing data) to a population of human genomes (as well as to a single reference genome)" ; - sc:featureList edam:operation_3182, - edam:operation_3196, - edam:operation_3211 ; - sc:license "GPL-3.0" ; - sc:name "HISAT2_autogenerated" ; - sc:url "https://github.com/DaehwanKimLab/hisat2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0781, @@ -33472,20 +26763,8 @@ The HIV databases contain comprehensive data on HIV genetic sequences and immuno sc:name "HIV-1" ; sc:url "http://www.hiv.lanl.gov" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0130, - edam:topic_0176, - edam:topic_0199 ; - sc:citation ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'HIV-1C Integrase-Dolutegravir', 'HIV-1', 'Dolutegravir', 'G140S' | Molecular dynamic simulations to investigate the structural impact of known drug resistance mutations on HIV-1C Integrase-Dolutegravir binding | We encountered a problem with your input. Please consider these tips: | File format: for example, a form field that requires a csv file will not accept a DNA sequence file | Characters and symbols: limit sequence names and all text to letters, numbers, underscores, and normal punctuation. Accented characters, symbols, unusual text encoding, or unusual line break characters may produce this message" ; - sc:featureList edam:operation_0331, - edam:operation_2476, - edam:operation_3891 ; - sc:name "HIV-1C" ; - sc:url "https://www.hiv.lanl.gov/components/sequence/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:citation , "pubmed:31513553" ; @@ -33494,7 +26773,7 @@ The HIV databases contain comprehensive data on HIV genetic sequences and immuno sc:url "https://www.hivassist.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -33519,7 +26798,7 @@ The HIV databases contain comprehensive data on HIV genetic sequences and immuno sc:url "https://hivdb.stanford.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -33533,7 +26812,7 @@ The HIV databases contain comprehensive data on HIV genetic sequences and immuno sc:url "http://hiv.ocds.co" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0203, @@ -33554,7 +26833,7 @@ The HIV databases contain comprehensive data on HIV genetic sequences and immuno biotools:primaryContact "Watshara Shoombuatong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885 ; @@ -33567,7 +26846,7 @@ The HIV databases contain comprehensive data on HIV genetic sequences and immuno sc:url "https://hirisplex.erasmusmc.nl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -33585,7 +26864,7 @@ BACKGROUND:The kinase pocket structural information is important for drug discov sc:url "http://zhaoserver.com.cn/HKPocket/HKPocket.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -33600,7 +26879,7 @@ BACKGROUND:The kinase pocket structural information is important for drug discov sc:url "https://github.com/ExpressionAnalysis/HLAProfiler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2830, @@ -33613,7 +26892,7 @@ BACKGROUND:The kinase pocket structural information is important for drug discov sc:url "http://www.hla-ligand-atlas.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -33629,7 +26908,7 @@ HLMethy: Machine learning-based model to identify the hidden labels of candidate sc:url "https://github.com/liuze-nwafu/HLMethy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0160 ; @@ -33646,30 +26925,8 @@ HLMethy: Machine learning-based model to identify the hidden labels of candidate sc:softwareVersion "2.1.1 - 2.4i" ; sc:url "http://hmmer.org/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_0128, - edam:topic_0218, - edam:topic_2640, - edam:topic_3557 ; - sc:citation , - "pmcid:PMC6805303", - "pubmed:31639057" ; - sc:description """HMNPPID-human malignant neoplasm protein-protein interaction database. - -BACKGROUND:Protein-protein interaction (PPI) information extraction from biomedical literature helps unveil the molecular mechanisms of biological processes. Especially, the PPIs associated with human malignant neoplasms can unveil the biology behind these neoplasms. However, such PPI database is not currently available. RESULTS:In this work, a database of protein-protein interactions associated with 171 kinds of human malignant neoplasms named HMNPPID is constructed. In addition, a visualization program, named VisualPPI, is provided to facilitate the analysis of the PPI network for a specific neoplasm. CONCLUSIONS:HMNPPID can hopefully become an important resource for the research on PPIs of human malignant neoplasms since it provides readily available data for healthcare professionals. - -||| HOMEPAGE BROKEN!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CONCLUSIONS:HMNPPID', 'VisualPPI'""" ; - sc:featureList edam:operation_0276, - edam:operation_2492, - edam:operation_3083 ; - sc:name "HMNPPID" ; - sc:url "http://202.118.75.18:8082/HMNPPID.asp" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0804, @@ -33693,7 +26950,7 @@ BACKGROUND:Protein-protein interaction (PPI) information extraction from biomedi "Ramnik J. Xavier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -33718,7 +26975,7 @@ BACKGROUND:Protein-protein interaction (PPI) information extraction from biomedi "Yi Xiao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0209, @@ -33743,7 +27000,7 @@ BACKGROUND:Protein-protein interaction (PPI) information extraction from biomedi "Zhixiang Zuo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3304, @@ -33755,7 +27012,7 @@ BACKGROUND:Protein-protein interaction (PPI) information extraction from biomedi sc:url "https://hnn.brown.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -33775,7 +27032,7 @@ BACKGROUND:Protein-protein interaction (PPI) information extraction from biomedi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -33800,28 +27057,8 @@ The HOPS package allows to compute the horizontal pleiotropy score (HOrizontal P sc:name "HOPS" ; sc:url "https://github.com/rondolab/HOPS" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0654, - edam:topic_0769, - edam:topic_3168, - edam:topic_3174, - edam:topic_3324 ; - sc:citation , - "pmcid:PMC6913047", - "pubmed:31842945" ; - sc:description """automated detection and authentication of pathogen DNA in archaeological remains. - -HOPS is a java pipeline which focuses on screening MALT data (see Table of Contents) for the presence of a user-specified list of target species. The pipeline essentially exists to make it easier to use MALT and MaltExtract in unison. To use HOPS you will need a config file, which specifies some key parameters for MALT and MaltExtract. You can have multiple config files to quickly redo a previous analysis or archive them to remember parameters you used in an analysis. HOPS will in every case create a log that tells you which command was sent to Slurm, in case you encounter problems, that log file is a very good place to start looking for the problem""" ; - sc:featureList edam:operation_2422, - edam:operation_3198, - edam:operation_3431, - edam:operation_3460 ; - sc:license "GPL-3.0" ; - sc:name "HOPS_autogenerated" ; - sc:url "https://github.com/rhuebler/HOPS" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -33844,7 +27081,7 @@ HOPS is a java pipeline which focuses on screening MALT data (see Table of Conte "Verdan Franske" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3308, @@ -33859,31 +27096,8 @@ HOPS is a java pipeline which focuses on screening MALT data (see Table of Conte sc:name "HPAanalyze" ; sc:url "https://github.com/adussaq/jsHPAanalyze" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0099, - edam:topic_0121, - edam:topic_0769, - edam:topic_3308 ; - sc:citation , - "pmcid:PMC6217038" ; - sc:description """COMP-04. R TOOLS FOR EXPLORATORY ANALYSIS OF PUBLICLY AVAILABLE DATA. - -AbstractBACKGROUNDThe Human Protein Atlas (HPA) is a comprehensive resource for exploration of human proteome which contains a vast amount of proteomics and transcriptomics data generated from antibody-based tissue micro-array profiling and RNA deep-sequencing. Data from the HPA are freely available via proteinatlas.org, allowing scientists to access and incorporate the data into their research. Previously, the R package hpar has been created for fast and easy programmatic access of HPA data. Here, we introduce HPAanalyze, an R package aims to simplify exploratory data analysis from those data, as well as provide other complementary functionality to hpar. - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/HPAanalyze. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'HPA', 'HPAanalyze intergrates', 'Protein Atlas', 'proteinatlas.org allowing scientists'""" ; - sc:featureList edam:operation_0337, - edam:operation_2422, - edam:operation_2495 ; - sc:name "HPAanalyze_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6217038/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, @@ -33902,22 +27116,8 @@ High Performance Collision Cross Section Calculation – HPCCS""" ; sc:name "HPCCS" ; sc:url "https://github.com/cepid-cces/hpccs" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3334, - edam:topic_3517, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6732366", - "pubmed:31427480" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | an associated gene prioritization strategy and its application in drug repurposing for the treatment of canine epilepsy | Epilepsy is a common neurological disorder that affects mammalian species including human beings and dogs. In order to discover novel drugs for the treatment of canine epilepsy, multiomics data were analyzed to identify epilepsy associated genes. In this research, the original ranking of associated genes was obtained by two high-throughput bioinformatics experiments: Genome Wide Association Study (GWAS) and microarray analysis. The association ranking of genes was enhanced by a re-ranking system, HPO-Shuffle, which integrated information from GWAS, microarray analysis and Human Phenotype Ontology database for further downstream analysis. After applying HPO-Shuffle, the association ranking of epilepsy genes were improved" ; - sc:featureList edam:operation_3463, - edam:operation_3501, - edam:operation_3766 ; - sc:name "HPO-Shuffle" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31427480" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0128, @@ -33941,21 +27141,8 @@ In this study, a novel approach is proposed for the identification of relationsh sc:name "HPO2GO" ; sc:url "https://github.com/cansyl/HPO2GO" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_2815, - edam:topic_3520 ; - sc:citation , - "pmcid:PMC5096969", - "pubmed:27490519" ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE BROKEN! | Human Proteome Project Mass Spectrometry Data Interpretation Guidelines 3.0 | The Human Proteome Organization's (HUPO) Human Proteome Project (HPP) developed Mass Spectrometry (MS) Data Interpretation Guidelines that have been applied since 2016. These guidelines have helped ensure that the emerging draft of the complete human proteome is highly accurate and with low numbers of false-positive protein identifications. Here, we describe an update to these guidelines based on consensus-reaching discussions with the wider HPP community over the past year. The revised 3.0 guidelines address several major and minor identified gaps. We have added guidelines for emerging data independent acquisition (DIA) MS workflows and for use of the new Universal Spectrum Identifier (USI) system being developed by the HUPO Proteomics Standards Initiative (PSI)" ; - sc:featureList edam:operation_3431, - edam:operation_3636 ; - sc:name "HPP" ; - sc:url "https://www.hupo.org/HPP-Data-InterpretationGuidelines" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -33974,22 +27161,31 @@ Helix Positioner a program for locating helix binding sites at protien-protein i sc:name "Helix Positioner" ; sc:url "https://github.com/proteincraft/HPer" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3500, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6660265", - "pubmed:31379925" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'HRE', 'carpio', 'HBS', 'hypoxia' | Genome-Wide Comparative Analysis of HIF Binding Sites in Cyprinus Carpio for In Silico Identification of Functional Hypoxia Response Elements | A genome wide analysis of Hypoxia Response Elements (HRE) in the gene promoter of Cyprinus carpio | Chromosome 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | Motif All HREHRE with HASAll E-boxE-box with HAS" ; - sc:featureList edam:operation_0441, - edam:operation_2495, - edam:operation_3223 ; - sc:name "HREExplorer" ; - sc:url "http://mail.nbfgr.res.in/HREExplorer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0089, + edam:topic_0121, + edam:topic_0601, + edam:topic_3320 ; + sc:citation , + "pmcid:PMC8728143", + "pubmed:34986596" ; + sc:description "The Human Proteoform Atlas (HPfA) is a web-based repository of experimentally verified human proteoforms and is a direct descendant of the Consortium of Top-Down Proteomics' (CTDP) Proteoform Atlas" ; + sc:featureList edam:operation_0224, + edam:operation_0417, + edam:operation_3755 ; + sc:isAccessibleForFree true ; + sc:name "Human Proteoform Atlas" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://human-proteoform-atlas.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, @@ -34008,7 +27204,7 @@ HRMAn enables you to automatically analyse parameters of host-pathogen interacti sc:url "https://hrman.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3517, @@ -34025,7 +27221,7 @@ HRMAn enables you to automatically analyse parameters of host-pathogen interacti sc:url "https://github.com/riken-aip/pyHSICLasso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_2269, @@ -34044,7 +27240,7 @@ This repository contains code for analyses from "Locally adaptive Bayesian birth sc:url "http://github.com/afmagee/hsmrfbdp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0780, @@ -34063,7 +27259,7 @@ This program was designed for integrating analysis of multiple heterogeneous tim sc:url "http://biohealth.snu.ac.kr/software/HTRgene" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697, @@ -34086,7 +27282,7 @@ This program was designed for integrating analysis of multiple heterogeneous tim biotools:primaryContact "Will Rowe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0196, @@ -34102,27 +27298,8 @@ This program was designed for integrating analysis of multiple heterogeneous tim sc:name "HUPAN" ; sc:url "http://cgm.sjtu.edu.cn/hupan/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3263, - edam:topic_3303, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6906624", - "pubmed:31774401" ; - sc:description """Quantifying Use of a Health Virtual Community of Practice for General Practitioners' Continuing Professional Development. - -BACKGROUND:Health care practitioners (HPs), in particular general practitioners (GPs), are increasingly adopting Web-based social media platforms for continuing professional development (CPD). As GPs are restricted by time, distance, and demanding workloads, a health virtual community of practice (HVCoP) is an ideal solution to replace face-to-face CPD with Web-based CPD. However, barriers such as time and work schedules may limit participation in an HVCoP. Furthermore, it is difficult to gauge whether GPs engage actively or passively in HVCoP knowledge-acquisition for Web-based CPD, as GPs' competencies are usually measured with pre- and posttests. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'GPs', 'Igloo', 'CPD'""" ; - sc:featureList edam:operation_3283, - edam:operation_3799 ; - sc:name "HVCoP" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31774401" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0780, @@ -34137,7 +27314,7 @@ BACKGROUND:Health care practitioners (HPs), in particular general practitioners sc:url "https://openplantpathology.github.io/hagis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3168, @@ -34158,32 +27335,8 @@ HaTSPiL is a a Python pipeline for High-Throughput Sequencing analysis. It has b sc:name "HaTSPiL" ; sc:url "https://github.com/dodomorandi/hatspil" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0632, - edam:topic_2830, - edam:topic_3047, - edam:topic_3557 ; - sc:citation , - "pubmed:31752022" ; - sc:description """HaloTag-based conjugation of proteins to barcoding-oligonucleotides. - -Collection of Flexi HaloTag Clones. - -The ABRC distributes clones for in-vitro expression of Arabidopsis ORFs fused to Promega's HaloTag® fusion tag generated by Joe Ecker at The SALK Institute. - -The pIX-HALO vector is a custom-built in vitro expression vector suitable for protein expression in both wheat germ lysate and rabbit reticulocyte expression systems. Expression from either T7 or SP6 polymerase creates an N-terminal fusion of a HaloTag® and the ORF clone. attB1 and attB2 Gateway recombination linkers flank the ORF clone insertion site. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'HaloTag-based'""" ; - sc:featureList edam:operation_0308, - edam:operation_2492, - edam:operation_3200, - edam:operation_3630 ; - sc:name "HaloTag" ; - sc:url "http://www.kazusa.or.jp/kop/halotag/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0749, @@ -34201,58 +27354,8 @@ The pIX-HALO vector is a custom-built in vitro expression vector suitable for pr sc:url "https://halo.umbc.edu/" ; biotools:primaryContact "Shiladitya DasSarma" . - a sc:SoftwareApplication ; - sc:citation ; - sc:description """Geometric and Energetic Data from Quantum Chemical Calculations of Halobenzenes and Xylenes. - -

This article presents theoretical data on geometric and< div>
energetic features of halobenzenes and xylenes. Data were obtained from ab initio geometry optimization and frequency calculations at HF, B3LYP, MP2 and CCSD levels of theory on 6-311++G(d,p) basis set. In total, 1504 structures of halobenzenes, three structures of xylenes and one structure< div>
of benzene were generated and processed by custom-made codes in Mathematica. The quantum chemical calculation was completed in Q-Chem software package. Geometric and energetic data of the compounds are presented in this paper as supplementary tables. Raw output files as well as codes and scripts associated with production and extraction of data are also provided.< div>. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'halobenzenes', 'xylenes', 'Q-Chem', 'Halobenzenes Xylenes divThis'""" ; - sc:name "Halobenzenes Xylenes" ; - sc:url "https://doi.org/10.26434/CHEMRXIV.11424783.V1" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154 ; - sc:citation ; - sc:description """Geometric and Energetic Data from Ab Initio Calculations of Haloethene, Haloimine, Halomethylphosphine, Haloiminophosphine, Halodiazene, Halodiphosphene and Halocyclopropane. - -

This article presents theoretical data on geometric and energetic features of halogenated compounds of cyclopropane (∆) and ethene (C=C), imine (C=N), methylphosphine (C=P), iminophosphine (N=P), diazene (N=N) and diphosphene (P=P). The data were obtained from ab initio< i> geometric optimization and frequency calculations at HF, B3LYP, MP2 and CCSD levels of theory on 6-311++G(d,p) basis set. Input structures were generated by shell scripts and run by Q-Chem quantum chemical package. The output files were processed to extract geometric and energetic information by Wolfram Mathematica.< p>. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Halodiphosphene', 'methylphosphine', 'diazene', 'Halomethylphosphine'""" ; - sc:featureList edam:operation_2409 ; - sc:name "Halodiazene" ; - sc:url "https://doi.org/10.26434/CHEMRXIV.9895874.V1" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0625, - edam:topic_2885, - edam:topic_3056, - edam:topic_3518 ; - sc:citation , - "pubmed:31760471" ; - sc:description """Ancestry-informative marker (AIM) SNP panel for the Malay population. - -Medical Genetics and Human Variation. - -A recent computer security audit has revealed security flaws in the legacy HapMap site that require NCBI to take it down immediately. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/OMSSA (NCBI.NLM.NIH.GOV), bio.tools/btod_blast (NCBI.NLM.NIH.GOV), bio.tools/blast (NCBI.NLM.NIH.GOV), bio.tools/pubchem_bioassay_service (NCBI.NLM.NIH.GOV), bio.tools/pubchem (NCBI.NLM.NIH.GOV). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Malay', 'PCAIMs', 'Ancestry-informative', 'PCA-correlated'""" ; - sc:featureList edam:operation_0484, - edam:operation_0487, - edam:operation_3196, - edam:operation_3454 ; - sc:name "HapMap" ; - sc:url "http://hapmap.ncbi.nlm.nih.gov/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -34276,13 +27379,14 @@ A recent computer security audit has revealed security flaws in the legacy HapMa biotools:primaryContact "Hakon K. Gjessing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, edam:topic_2885 ; - sc:citation , - "pubmed:31433532" ; + sc:citation , + "pmcid:PMC3245002", + "pubmed:22064851" ; sc:description "Association between DIO2 polymorphism and the risk of Kashin-Beck disease in the Tibetan population | HaploReg is a tool for exploring annotations of the noncoding genome at variants on haplotype blocks, such as candidate regulatory SNPs at disease-associated loci. Using LD information from the 1000 Genomes Project, linked SNPs and small indels can be visualized along with chromatin state and protein binding annotation from the Roadmap Epigenomics and ENCODE projects, sequence conservation across mammals, the effect of SNPs on regulatory motifs, and the effect of SNPs on expression from eQTL studies. HaploReg is designed for researchers developing mechanistic hypotheses of the impact of non-coding variants on clinical phenotypes and normal variation" ; sc:featureList edam:operation_0484, edam:operation_0487, @@ -34291,7 +27395,7 @@ A recent computer security audit has revealed security flaws in the legacy HapMa sc:url "https://pubs.broadinstitute.org/mammals/haploreg/haploreg.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -34312,7 +27416,7 @@ HaploTypo is a pipeline suited to map variants into haplotypes in genetic variat sc:url "https://github.com/gabaldonlab/haplotypo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3056, @@ -34333,32 +27437,8 @@ HaploTypo is a pipeline suited to map variants into haplotypes in genetic variat sc:url "http://haploscope.scheetlabsoftware.org/" ; biotools:primaryContact "Paul Scheet" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_0625, - edam:topic_2229, - edam:topic_3170, - edam:topic_3308 ; - sc:citation , - "pmcid:PMC6884693", - "pubmed:31740819" ; - sc:description """Fast, sensitive and accurate integration of single-cell data with Harmony. - -Scalable integration of single cell RNAseq data for batch correction and meta analysis. - -Check out the latest preprint of Harmony on bioRxiv. - -Harmony has been tested on R versions >= 3.4. Please consult the DESCRIPTION file for more details on required R packages. Harmony has been tested on Linux, OS X, and Windows platforms. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/harmony""" ; - sc:featureList edam:operation_3435, - edam:operation_3659, - edam:operation_3891 ; - sc:name "Harmony_autogenerated" ; - sc:url "https://github.com/immunogenomics/harmony" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3063 ; sc:author "Francesca Cordero", @@ -34374,7 +27454,7 @@ Harmony has been tested on R versions >= 3.4. Please consult the DESCRIPTION fil biotools:primaryContact "Raffaele Calogero" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -34398,7 +27478,7 @@ The R packages used in this repository are shown below:.""" ; sc:url "https://github.com/IHSMFruitCrops/Hass-genotyping" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -34425,7 +27505,7 @@ hastaLaVista is developed and tested using Chrome, although it is known to work sc:url "https://github.com/jwist/hastaLaVista" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0128, @@ -34450,7 +27530,7 @@ hastaLaVista is developed and tested using Chrome, although it is known to work "Tingjun Hou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0780, @@ -34469,68 +27549,8 @@ hastaLaVista is developed and tested using Chrome, although it is known to work sc:url "https://github.com/kdri-genomics/Hayai-Annotation-Plants" ; biotools:primaryContact "Andrea Ghelfi" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0140, - edam:topic_0654, - edam:topic_2229 ; - sc:citation , - "pubmed:31875223" ; - sc:description """a novel and conserved DnaA-related protein that targets the RIDA process to stimulate replication initiation. - -Exquisite control of the DnaA initiator is critical to ensure that bacteria initiate chromosome replication in a cell cycle-coordinated manner. In many bacteria, the DnaA-related and replisome-associated Hda HdaA protein interacts with DnaA to trigger the Regulatory Inactivation of DnaA (RIDA) and prevent over-initiation events. In the Caulobacter crescentus Alphaproteobacterium, the RIDA process also targets DnaA for its rapid proteolysis by Lon. The impact of the RIDA process on adaptation of bacteria to changing environments remains unexplored. Here, we identify a novel and conserved DnaA-related protein, named HdaB, and show that homologs from three different Alphaproteobacteria can inhibit the RIDA process, leading to over-initiation and cell death when expressed in actively growing C. crescentus cells. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3454 ; - sc:name "HdaB" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31875223" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3063, - edam:topic_3305, - edam:topic_3390, - edam:topic_3400 ; - sc:citation "pubmed:30702833" ; - sc:description """With Special Feature on Mortality. - -Centers for Disease Control and Prevention. CDC twenty four seven. Saving Lives, Protecting People. - -National Center for Health Statistics. - -Health, United States is an annual report on trends in health statistics""" ; - sc:name "Health United States 2017" ; - sc:url "http://www.cdc.gov/nchs/hus.htm" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0780, - edam:topic_3673, - edam:topic_3810 ; - sc:citation ; - sc:description "> HOMEPAGE BROKEN! | reliably detecting copy number variation in plant genomes using short read sequencing data | Abstract Copy number variation (CNV) is thought to actively contribute to adaptive evolution of plant species. While many computational algorithms are available to detect copy number variation from whole genome sequencing datasets, the typical complexity of plant data likely introduces false positive calls. To enable reliable and comprehensive detection of CNV in plant genomes, we developed Hecaton, a novel computational workflow tailored to plants, that integrates calls from multiple state-of-the-art algorithms through a machine-learning approach. In this paper, we demonstrate that Hecaton outperforms current methods when applied to short read sequencing data of A. thaliana , rice, maize, and tomato" ; - sc:featureList edam:operation_0452, - edam:operation_0525, - edam:operation_3196 ; - sc:name "Hecaton" ; - sc:url "http://wur.nl/bioinformatics/hecaton" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_3068, - edam:topic_3315 ; - sc:citation ; - sc:description """Challenges and Emerging Solutions for Public Blockchains. - -The Hedera Governing Council consists of up to 39 term-limited and highly diversified leading organizations, reflecting up to 18 unique industries globally. - -The Hedera Governing Council consists of up to 39 term-limited and highly diversified leading organizations and enterprises, reflecting up to 18 unique industries globally. Council members are committed to governing software changes, while bringing stability and continued decentralization to the public network. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Blockchain', 'Hedera Hashgraph', 'Bitcoin', 'bringing'""" ; - sc:featureList edam:operation_3283 ; - sc:name "Hedera" ; - sc:url "http://www.hedera.com/council" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -34546,7 +27566,7 @@ The Hedera Governing Council consists of up to 39 term-limited and highly divers sc:url "https://github.com/seldas/HetEnc_Code" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3168, @@ -34560,7 +27580,7 @@ The Hedera Governing Council consists of up to 39 term-limited and highly divers sc:url "http://hevea.catas.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -34578,7 +27598,7 @@ HiCBricks is a library designed for handling large high-resolution Hi-C datasets sc:url "http://bioconductor.org/packages/devel/bioc/html/HiCBricks.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2640, @@ -34597,7 +27617,7 @@ HiCNAtra is a MATLAB-based tool that accepts HDF5 files, the output of hiclib af sc:url "https://github.com/AISKhalil/HiCNAtra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -34616,7 +27636,7 @@ HiCNAtra is a MATLAB-based tool that accepts HDF5 files, the output of hiclib af biotools:primaryContact "Zheng Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3169, @@ -34640,7 +27660,7 @@ HiCeekR is a novel Shiny based R package for Hi-C data analysis""" ; sc:url "https://github.com/lucidif/HiCeekR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -34655,7 +27675,7 @@ HiCeekR is a novel Shiny based R package for Hi-C data analysis""" ; sc:url "https://harrywhitwell.shinyapps.io/hilight-ptm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3384, @@ -34675,7 +27695,7 @@ HiCeekR is a novel Shiny based R package for Hi-C data analysis""" ; sc:url "https://github.com/michaelmell/hipfsta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2229, @@ -34693,7 +27713,7 @@ High-dimensional mass cytometry (Cytometry by Time-Of-Flight; CyTOF) is a multip sc:url "http://www.hippopanda.org/hippo.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2840, @@ -34712,31 +27732,8 @@ High-dimensional mass cytometry (Cytometry by Time-Of-Flight; CyTOF) is a multip sc:url "http://HighResNPS.com" ; biotools:primaryContact "Marie Mardal" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_0121, - edam:topic_0602, - edam:topic_3379, - edam:topic_3518 ; - sc:citation , - "pubmed:31820382" ; - sc:description """Concept, Features, and Application Performance of the Integrated Zeptosens Platform. - -RPPA Reverse Phase Protein Array Services. - -Our Reverse Phase Protein Array (RPPA) core facility offers multiplex cell signaling pathway mapping studies on a fee-for-service basis. - -High-Throughput Protein Profiling. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'RPPA'""" ; - sc:featureList edam:operation_2495, - edam:operation_3083, - edam:operation_3454 ; - sc:name "High Precision RPPA" ; - sc:url "https://www.nmi-tt.de/pharmaservices/rppa/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3293 ; @@ -34750,32 +27747,8 @@ High-Throughput Protein Profiling. sc:name "Hintra" ; sc:url "https://github.com/sahandk/HINTRA" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0203, - edam:topic_0602, - edam:topic_0634, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6908734", - "pubmed:31831811" ; - sc:description """Using mechanistic models for the clinical interpretation of complex genomic variation. - -The sustained generation of genomic data in the last decade has increased the knowledge on the causal mutations of a large number of diseases, especially for highly penetrant Mendelian diseases, typically caused by a unique or a few genes. However, the discovery of causal genes in complex diseases has been far less successful. Many complex diseases are actually a consequence of the failure of complex biological modules, composed by interrelated proteins, which can happen in many different ways, which conferring a multigenic nature to the condition that can hardly be attributed to one or a few genes. - -||| NAME (Hipathia) SIMILAR TO (PUB. DIFFERENT) bio.tools/hipathia (hipathia). - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/vismapper (BABELOMICS.ORG), bio.tools/pathiways (BABELOMICS.ORG), bio.tools/team (BABELOMICS.ORG). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'mechanistic'""" ; - sc:featureList edam:operation_0331, - edam:operation_0533, - edam:operation_3562 ; - sc:name "Hipathia_autogenerated" ; - sc:url "http://hipathia.babelomics.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3384, @@ -34792,7 +27765,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://hippmapp3r.readthedocs.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -34816,7 +27789,7 @@ HisgAtlas is a manual curation database for human immunosuppression genes.""" ; sc:url "http://biokb.ncpsb.org/HisgAtlas/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -34838,7 +27811,7 @@ Raw data and example scripts can be found at: doi:10.25345/C5ZQ0F.""" ; sc:url "https://github.com/DenuLab/HistoneAnalysisWorkflow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0625, @@ -34863,7 +27836,7 @@ Data are gathered from HmtVar's twin database HmtDB, and further integrated with sc:url "https://www.hmtvar.uniba.it/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -34884,7 +27857,7 @@ HogProf is an extensible and tunable approach to phylogenetic profiling using or sc:url "https://github.com/DessimozLab/HogProf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3379, @@ -34897,7 +27870,7 @@ HogProf is an extensible and tunable approach to phylogenetic profiling using or sc:url "https://github.com/MSBradshaw/Holden" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:citation ; sc:description "Graphical tool for development, simulation and analysis of Petri net based models of complex biological systems." ; @@ -34911,18 +27884,8 @@ HogProf is an extensible and tunable approach to phylogenetic profiling using or sc:url "http://www.cs.put.poznan.pl/mradom/Holmes/holmes.html" ; biotools:primaryContact "Piotr Formanowicz" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3360, - edam:topic_3419 ; - sc:citation , - "pubmed:31485866" ; - sc:description "A validated set of North American English pseudo-words for evaluating emotion processing | Second Language Psycholinguistics | [ Second language psycholinguistics ] | The Hoosier Vocal Emotions Corpus | The \"Hoosier Vocal Emotions Corpus\" is a stimulus set of recorded pseudo-words based on the pronunciation rules of English. The corpus contains 73 controlled audio pseudo-words uttered by two actresses in five different emotions (i.e., happiness, sadness, fear, anger, disgust) and in a neutral tone, yielding 1,763 audio files. In Darcy & Fontaine (2019, Behavior Research Methods), viewable at this link: https://rdcu.be/bQk7G, we describe the corpus as well as a validation study of the pseudo-words. A total of 96 native English speakers completed a forced-choice emotion identification task. All emotions were recognized better than chance overall, with substantial variability among the different tokens" ; - sc:featureList edam:operation_2428 ; - sc:name "Hoosier Vocal Emotions Corpus" ; - sc:url "https://psycholinguistics.indiana.edu/hoosiervocalemotions.htm" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation , @@ -34939,7 +27902,7 @@ Hotspot Analysis Plugin for QGIS.""" ; sc:url "https://github.com/danioxoli/HotSpotAnalysis_Plugin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, @@ -34964,7 +27927,7 @@ Web-based tools to search tissue specific housekeeping genes.""" ; sc:url "http://www.housekeeping.unicamp.br" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation , @@ -34976,7 +27939,7 @@ Web-based tools to search tissue specific housekeeping genes.""" ; sc:url "https://github.com/medvedevgroup/HowDeSBT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0634, @@ -34998,26 +27961,21 @@ Web-based tools to search tissue specific housekeeping genes.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -35040,17 +27998,8 @@ Web-based tools to search tissue specific housekeeping genes.""" ; sc:softwareVersion "6.0 2019 May" ; sc:url "https://www.humanmine.org/humanmine" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_0749 ; - sc:citation , - "pubmed:31466512" ; - sc:description "> LOW CONFIDENCE! | Assessing human factors and ergonomics capability in organisations | Human Factors Integration Toolset- see update for free file download | Human Factors Integration Toolset- see update for free file download : Creation of a tool that reports the level of HF integration and maturity in an organization | Human Factors Integration Toolset- see update for free file download : Michael Greig : 1 updates : Research Project" ; - sc:name "Human Factors Integration Toolset" ; - sc:url "https://www.researchgate.net/project/Human-Factors-Integration-Toolset" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -35066,7 +28015,7 @@ Web-based tools to search tissue specific housekeeping genes.""" ; sc:url "https://github.com/amcdavid/HurdleNormal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3315, @@ -35085,7 +28034,7 @@ Web-based tools to search tissue specific housekeeping genes.""" ; biotools:primaryContact "Cedric Chauve" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0084, @@ -35095,6 +28044,8 @@ Web-based tools to search tissue specific housekeeping genes.""" ; "Sergei L Kosakovsky Pond", "Steven Weaver" ; sc:citation , + , + "pubmed:15509596", "pubmed:30298394" ; sc:description "Software package for the analysis of genetic sequences using techniques in phylogenetics, molecular evolution, and machine learning." ; sc:featureList edam:operation_2238 ; @@ -35109,7 +28060,7 @@ Web-based tools to search tissue specific housekeeping genes.""" ; sc:url "http://hyphy.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0196, @@ -35133,24 +28084,8 @@ HybPiper was designed for targeted sequence capture, in which DNA sequencing lib sc:name "HybPiper" ; sc:url "https://github.com/mossmatters/HybPiper" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0091, - edam:topic_3334, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6886163", - "pubmed:31787093" ; - sc:description """A hybrid self-attention deep learning framework for multivariate sleep stage classification. - -BACKGROUND:Sleep is a complex and dynamic biological process characterized by different sleep patterns. Comprehensive sleep monitoring and analysis using multivariate polysomnography (PSG) records has achieved significant efforts to prevent sleep-related disorders. To alleviate the time consumption caused by manual visual inspection of PSG, automatic multivariate sleep stage classification has become an important research topic in medical and bioinformatics. RESULTS:We present a unified hybrid self-attention deep learning framework, namely HybridAtt, to automatically classify sleep stages by capturing channel and temporal correlations from multivariate PSG records. We construct a new multi-view convolutional representation module to learn channel-specific and global view features from the heterogeneous PSG inputs. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3891 ; - sc:name "HybridAtt" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31787093" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -35164,26 +28099,8 @@ BACKGROUND:Sleep is a complex and dynamic biological process characterized by di sc:name "HybridMolDB" ; sc:url "http://www.idruglab.com/HybridMolDB/index.php" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3382 ; - sc:citation , - "pubmed:31868925" ; - sc:description """Reassembling Linux-based Hybrid RAID. - -Tool of rebuild RAID against Linux based hybrid RAID. - -This tool can rebuild RAID against Linux based hybrid RAID. This tool was developed in python. - -input : only raw image file. input the directory path. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'RAID', 'hybrid RAID', 'RAID Reconstructor', 'RAID reassembly'""" ; - sc:featureList edam:operation_1812 ; - sc:license "GPL-3.0" ; - sc:name "Hybrid RAID Reconstructor" ; - sc:url "https://github.com/antares0531/HybridRAIDReconstructor" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2269, @@ -35207,26 +28124,21 @@ HydroSight is a highly flexible statistical toolbox for quantitative hydrogeolog a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -35250,7 +28162,7 @@ HydroSight is a highly flexible statistical toolbox for quantitative hydrogeolog sc:url "http://hymenopteragenome.org/hymenopteramine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -35263,7 +28175,7 @@ HydroSight is a highly flexible statistical toolbox for quantitative hydrogeolog sc:url "https://github.com/ivankovlab/HypercubeME.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3170, @@ -35286,7 +28198,7 @@ HydroSight is a highly flexible statistical toolbox for quantitative hydrogeolog biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -35313,7 +28225,7 @@ The pretrained model used in the research article can be downloaded here.""" ; sc:url "https://github.com/biomag-lab/hypocotyl-UNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3298, @@ -35335,65 +28247,8 @@ This software library is built to delve the insights of a complex high dimension sc:name "Hyppo-X" ; sc:url "https://xperthut.github.io/HYPPO-X" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3305, - edam:topic_3379, - edam:topic_3399 ; - sc:citation , - "pmcid:PMC6845470" ; - sc:description """CHALLENGES AND OPPORTUNITIES. - -The I-CONECT research study is exploring how social conversation can help improve memory and may prevent dementia in older adults. - -Research shows that remaining socially active later in life can have a positive impact on memory and mental function. I-CONECT is exploring how social conversation can help improve memory and may prevent dementia or Alzheimer’s disease in older adults. In this study, participants connect with the research team using senior-friendly technology for fun and engaging conversations in the comfort of their own home. We are currently enrolling volunteers aged 75 and older. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/Diffeomorphic (IC.OUP.COM)""" ; - sc:name "I-CONECT" ; - sc:url "https://www.i-conect.org" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3305, - edam:topic_3379, - edam:topic_3399 ; - sc:citation , - "pmcid:PMC6845174" ; - sc:description """CAN SOCIAL INTERACTION IMPROVE COGNITIVE FUNCTIONS AMONG SOCIALLY ISOLATED OLDER ADULTS?. - -The I-CONECT research study is exploring how social conversation can help improve memory and may prevent dementia in older adults. - -Exploring the Effects of Social Interaction on Memory. - -Research shows that remaining socially active later in life can have a positive impact on memory and mental function. I-CONECT is exploring how social conversation can help improve memory and may prevent dementia or Alzheimer’s disease in older adults. In this study, participants connect with the research team using senior-friendly technology for fun and engaging conversations in the comfort of their own home. We are currently enrolling volunteers aged 75 and older. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/Diffeomorphic (IC.OUP.COM). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'I-CONECT'""" ; - sc:featureList edam:operation_3435 ; - sc:name "I-CONECT project" ; - sc:url "https://www.i-conect.org" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_0605, - edam:topic_3303, - edam:topic_3360, - edam:topic_3379 ; - sc:citation , - "pmcid:PMC6798670" ; - sc:description """Toward entrepreneurial training for clinical and translational investigators and lessons learned in team-based customer and stakeholder discovery. - -OBJECTIVES SPECIFIC AIMS: The goal of this abstract presentation is to share lessons learned from participation in the NIH SBIR I-Corps Train-The-Trainer Program, discuss our experiences offering programs at our local institutions, and communicate our plans to develop an I-Corps@NCATS program that can be disseminated across the CTSA network. We believe that an I-Corps@NCATS program will enhance the process of scientific translation by taking best practices from NSF I-Corps and adapting the program to meet the needs of biomedical scientists in academic medical centers. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'NSF I-Corps', 'I-Corps', 'SBIR I-Corps'""" ; - sc:name "I-CorpsaNCATS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6798670/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, @@ -35407,7 +28262,7 @@ OBJECTIVES SPECIFIC AIMS: The goal of this abstract presentation is to share les sc:url "https://github.com/xikanfeng2/I-Impute" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -35427,7 +28282,7 @@ Intuitive Integrative Interpretation (I3) of complex genetic data. sc:url "http://suprahex.r-forge.r-project.org/I3.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3374, @@ -35444,7 +28299,7 @@ Intuitive Integrative Interpretation (I3) of complex genetic data. sc:url "https://github.com/amcorrigan/ia-lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0199, @@ -35467,15 +28322,8 @@ Intuitive Integrative Interpretation (I3) of complex genetic data. sc:url "http://bioinformatics.intec.ugent.be/iambee/" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31515742" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'IAT', 'Survey-software implicit association tests', 'survey-software IATs IATs', 'survey-software IATs' | Survey-software implicit association tests | The implicit association test (IAT) is widely used in psychology. Unfortunately, the IAT cannot be run within online surveys, requiring researchers who conduct online surveys to rely on third-party tools. We introduce a novel method for constructing IATs using online survey software (Qualtrics); we then empirically assess its validity. Study 1 (student n = 239) revealed good psychometric properties, expected IAT effects, and expected correlations with explicit measures for survey-software IATs. Study 2 (MTurk n = 818) showed predicted IAT effects across four survey-software IATs (ds = 0.82 [Black-White IAT] to 2.13 [insect-flower IAT])" ; - sc:name "IATs" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31515742" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3305, @@ -35488,35 +28336,8 @@ Intuitive Integrative Interpretation (I3) of complex genetic data. sc:name "IBD" ; sc:url "http://github.com/roohy/IBD" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0625, - edam:topic_2885, - edam:topic_3056, - edam:topic_3518 ; - sc:citation ; - sc:description """Attacks on genetic privacy via uploads to genealogical databases. - -Create figures for "Attacks on genetic privacy via uploads to genealogical databases" by Michael D. Edge and Graham Coop. - -README for gedmatch figures & emails. - -The files marked GEDmatch_*_Redacted.pdf are printouts of the display of the GEDmatch 1-to-1 match genome browser. The colour key did not print out so a screenshot is saved out in GEDmatch_ColourKey_Screenshot.png. - -Each file is a match between a target and bait kit. The first 3 files are T1 matches with B1, B2, and Bmis. The next 3 files (3-6) the matches for T2 and so on. - -The kit numbers assigned by GEDmatch have been redacted out, to prevent reuse. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/ibs""" ; - sc:featureList edam:operation_0484, - edam:operation_0487, - edam:operation_3196, - edam:operation_3557 ; - sc:name "IBS_autogenerated" ; - sc:url "http://github.com/mdedge/IBS_privacy/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -35539,7 +28360,7 @@ The files marked GEDmatch_*_Redacted.pdf are printouts of the display of the GED sc:url "http://github.com/mdedge/IBS_privacy/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0611, @@ -35558,7 +28379,7 @@ The files marked GEDmatch_*_Redacted.pdf are printouts of the display of the GED biotools:primaryContact "Bruno P. Klaholz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3172, @@ -35575,7 +28396,7 @@ The files marked GEDmatch_*_Redacted.pdf are printouts of the display of the GED sc:url "https://github.com/sysbio-curie/ICA-in-Cancer-research-review-materials" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0593, @@ -35593,28 +28414,8 @@ User-fiendly code for image cross-correlation specroscopy (ICCS) analysis based sc:name "ICCS" ; sc:url "https://github.com/llanzano/ICCS" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_3300, - edam:topic_3382 ; - sc:citation , - "pmcid:PMC6845190" ; - sc:description """SOCIAL MEDIA RESOURCES FOR BILINGUAL CAREGIVERS OF STROKE SURVIVORS. - -AbstractBackground: Stroke survivors experience long-term disability also affecting informal caregivers (ICG). With current technology, social media might be the only way for ICG to gain training access support. What resources are available for ICG of older adults who survived stroke (OASS). Objective: To identify analyze types of bilingual social media resources available to ICG of OASS Methods: Facebook data was bilingually collected (Spanish), including most popular groups and pages based on search engines containing terms such as stroke, CVA, caregiver. Similar numbers of groups (35 English vs. 52 Spanish) and pages (32 English vs. 34 Spanish) were analyzed. - -||| HOMEPAGE BROKEN!. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/Diffeomorphic (IC.OUP.COM). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ICG OASS'""" ; - sc:featureList edam:operation_2421, - edam:operation_2422 ; - sc:name "ICG" ; - sc:url "http://ic.oup.com" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -35632,48 +28433,8 @@ BACKGROUND:Genomic prediction is an advanced method for estimating genetic value sc:name "ICGRM" ; sc:url "https://github.com/mingfang618/CLGRM" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3067, - edam:topic_3334, - edam:topic_3382, - edam:topic_3421, - edam:topic_3794 ; - sc:citation , - "pmcid:PMC6759993", - "pubmed:31620443" ; - sc:description """Application of Fluorescein Fluorescence in Vascular Neurosurgery. - -Background: Fluorescein sodium (FNa) is a fluorescent drug with a long history of use for assessing retinal blood flow in ophthalmology; however, its application in vascular neurosurgery is only now gaining popularity. This review summarizes the current knowledge about using FNa videoangiography in vascular neurosurgery. Methods: We performed a literature review on the usage of FNa for fluorescent videoangiography procedures in neurosurgery. We analyzed methods of injection, dosages of FNa, visualizing platforms, and interpretation of FNa videoangiography. We also reviewed practical applications of FNa videoangiography during various vascular neurosurgeries. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'videoangiography FNa videoangiography', 'FNa videoangiography', 'ICG videoangiography FNa', 'videoangiography'""" ; - sc:featureList edam:operation_3435, - edam:operation_3552 ; - sc:name "ICG videoangiography FNa videoangiography" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31620443" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0091, - edam:topic_0203, - edam:topic_3063, - edam:topic_3303, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6924135", - "pubmed:31861973" ; - sc:description """The International Conference on Intelligent Biology and Medicine (ICIBM) 2019. - -Between June 9-11, 2019, the International Conference on Intelligent Biology and Medicine (ICIBM 2019) was held in Columbus, Ohio, USA. The conference included 12 scientific sessions, five tutorials or workshops, one poster session, four keynote talks and four eminent scholar talks that covered a wide range of topics in bioinformatics, medical informatics, systems biology and intelligent computing. Here, we describe 13 high quality research articles selected for publishing in BMC Bioinformatics. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'International Conference Intelligent Biology Medicine', 'International Conference Intelligent Biology Medicine 2019'""" ; - sc:name "ICIBM" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31861973" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3304, @@ -35694,7 +28455,7 @@ Between June 9-11, 2019, the International Conference on Intelligent Biology and biotools:primaryContact "Luca Pion-Tonachini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3403, edam:topic_3474 ; @@ -35707,7 +28468,7 @@ The code in this repository was used to produce the results of this paper (await sc:url "http://github.com/deepphong/icu-readmission" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_3399 ; @@ -35729,14 +28490,14 @@ The code in this repository was used to produce the results of this paper (await a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3621" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -35764,24 +28525,8 @@ The code in this repository was used to produce the results of this paper (await sc:softwareVersion "1.1.10" ; sc:url "https://chasemc.github.io/IDBac" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3324, - edam:topic_3379 ; - sc:citation , - "pmcid:PMC6810422" ; - sc:description """A Twitter Tool to Enhance Literature Engagement on Busy Infectious Diseases Consult Services. - -AbstractBackgroundSocial media platforms enable on-demand, open-access learning which is attractive for busy clinicians and trainees. Additionally, teaching that occurs in a clinically contextualized, case-based setting in real time has the potential to be more effective than traditional didactics. We piloted a teaching tool to enhance learning and engagement with the literature for fellows on the infectious diseases (ID) consult service. MethodsDuring a clinical service rotation, ID faculty posted a brief daily teaching point on Twitter under the hashtag “#IDDailyPearl” with a link to the relevant article. Tweets were required to be related to a patient case, associated with an article, and could not include patient identifiers. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE '2537 IDDailyPearl', 'teaching', 'ConclusionOur', 'engagement'""" ; - sc:name "IDDailyPearl" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6810422/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0736, @@ -35802,32 +28547,8 @@ IDDomainSpotter is a sequence-based approach to assess and visualize domain orga sc:name "IDDomainSpotter" ; sc:url "http://www.bio.ku.dk/sbinlab/IDDomainSpotter" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0204, - edam:topic_0749, - edam:topic_3170, - edam:topic_3173, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6855516", - "pubmed:31682602" ; - sc:description """Direct prediction of regulatory elements from partial data without imputation. - -UCSC Genome Browser trackhub definition files for IDEAS segmentation results. - -hg19 [http://genome.ucsc.edu/cgi-bin/hgTracks?db=hg19&hubUrl=https://seqcode.github.io/IDEAS-trackhubs/Roadmap2018_127cell_12mark_incomplete/hub_ideas_roadmap127_2019.txt]. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'segmentation', 'imputation', 'propagates', 'regulatory'""" ; - sc:featureList edam:operation_0438, - edam:operation_3208, - edam:operation_3222, - edam:operation_3557 ; - sc:license "MIT" ; - sc:name "IDEAS" ; - sc:url "https://github.com/seqcode/IDEAS-trackhubs" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2269, @@ -35844,39 +28565,16 @@ Background:In 2016, the World Health Organization reclassified the definition of sc:name "IDH-wild-type" ; sc:url "https://gcioffi.shinyapps.io/Nomogram_For_IDH_Wildtype_GBM_H_Gittleman/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_2640, - edam:topic_3170, - edam:topic_3295, - edam:topic_3308 ; - sc:citation , - "pmcid:PMC6216793" ; - sc:description """GENE-28. METHYLOMES AND TRANSCRIPTOMES VARY ACROSS IDH1 MUTANT CANCERS. - -AbstractSince their discovery in gliomas, mutations in isocitrate dehydrogenases 1 and 2 (collectively referred to as “IDH1mut”) have been discovered in a variety of cancers, including acute myeloid leukemia (AML), melanoma, and cholangiocarcinoma. While IDH1mut promotes genomic hypermethylation in all these cancers, glioma remains the only tumor in which IDH1mut is a consistently favorable prognostic marker, for reasons that are unclear. We therefore hypothesized that the pattern of DNA methylation, the resultant transcriptomic profiles, and specific genes suppressed, would all vary among IDH1mut cancers according to tissue of origin. - -||| HOMEPAGE BROKEN!. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/Diffeomorphic (IC.OUP.COM). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'IDH1mut gliomas', 'IDH1wt cholangiocarcinoma', 'IDH1mut', 'hypermethylated IDH1mut'""" ; - sc:featureList edam:operation_0417, - edam:operation_0440, - edam:operation_3463 ; - sc:name "IDH1mut cancers" ; - sc:url "http://ic.oup.com" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; + sc:additionalType "http://edamontology.org/data_3786" ; + sc:encodingFormat "http://edamontology.org/format_3790" ; + sc:name "Query script" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "SPARQL endpoint", "Web application", @@ -35896,19 +28594,8 @@ AbstractSince their discovery in gliomas, mutations in isocitrate dehydrogenases sc:url "https://idsm.elixir-czech.cz/" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3305, - edam:topic_3382 ; - sc:citation , - "pmcid:PMC6675929", - "pubmed:31404272" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'IDSR Liberia', 'Liberia' | The implementation of integrated disease surveillance and response in Liberia after Ebola virus disease outbreak 2015-2017 | Introduction:Although Liberia adapted the integrated diseases surveillance and response (IDSR) in 2004 as a platform for implementation of International Health Regulation (IHR (2005)), IDSR was not actively implemented until 2015. Some innovations and best practices were observed during the implementation of IDSR in Liberia after Ebola virus disease outbreak. This paper describes the different approaches used for implementation of IDSR in Liberia from 2015 to 2017. Methods:We conducted a cross-sectional study using the findings from IDSR supervisions conducted from September to November 2017 and perused the outbreaks linelists submitted by the counties to the national level from January to December 2017 and key documents available at the national level" ; - sc:name "IDSR" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31404272" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3304, @@ -35924,7 +28611,7 @@ AbstractSince their discovery in gliomas, mutations in isocitrate dehydrogenases sc:url "https://github.com/pwollstadt/IDTxl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3063, @@ -35939,35 +28626,8 @@ BACKGROUND:Viral infectious diseases are the serious threat for human health. Th sc:name "IILLS" ; sc:url "http://bioinformatics.csu.edu.cn/IILLS" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_2229, - edam:topic_3170, - edam:topic_3308 ; - sc:citation , - "pmcid:PMC6771546", - "pubmed:31574155" ; - sc:description """IKAP-Identifying K mAjor cell Population groups in single-cell RNA-sequencing analysis. - -IKAP - Identifying K mAjor cell Population groups in single-cell RNA-seq analysis. - -IKAP – Identifying K mAjor cell Population groups in single-cell RNA-seq analysis. - -Note: IKAP will, by default, regress out the percentage of mitochondrial gene counts and total UMI counts and scale the expression matrix using Seurat ScaleData function. These two values should be save in Seurat metadata with column names 'percent.mito' and 'nUMI' respectively. If you want to regress out different confounding variables or use different column names, please save these variables in Seurat metadata and set 'confounders' (an IKAP parameter) as their column names in the Seurat metadata data frame. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/ikap. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'IKAP-Identifying'""" ; - sc:featureList edam:operation_2495, - edam:operation_3223, - edam:operation_3432, - edam:operation_3659, - edam:operation_3891 ; - sc:name "IKAP_autogenerated" ; - sc:url "https://github.com/NHLBI-BCB/IKAP" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3301, @@ -35986,54 +28646,31 @@ Xingpeng Jiang, xpjiang@mail.ccnu.edu.cn Dan Liu, liudan@mails.ccnu.edu.cn.""" ; sc:name "ILMF-VH" ; sc:url "https://github.com/liudan111/ILMF-VH.git" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_0654, - edam:topic_3295, - edam:topic_3382, - edam:topic_3674 ; - sc:citation , - "pmcid:PMC6813132", - "pubmed:31651351" ; - sc:description """high-powered detection of genetic effects on DNA methylation using integrated methylation QTL mapping and allele-specific analysis. - -Integrated Methylation QTL Mapping and Allele-Specific Analysis. - -Integrative Methylation Association with Genotypes. - -Performs mQTL (methylation quantitative-trait locus) mapping in bisulfite sequencing studies by fitting a binomial mixed model and then incorporating the allelic-specific methylation pattern. Based on Fan, Yue; Vilgalys, Tauras P.; Sun, Shiquan; Peng, Qinke; Tung, Jenny; Zhou, Xiang (2019) . - -We provide the detailed analysis scripts for IMAGE here. - -IMAGE is implemented as an open source R package for mQTL mapping in sequencing-based methylation studies. - -To perfrom the comparative methods, put GEMMA. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/image""" ; - sc:featureList edam:operation_0282, - edam:operation_3186, - edam:operation_3196, - edam:operation_3443 ; - sc:license "GPL-2.0" ; - sc:name "IMAGE_autogenerated" ; - sc:url "https://github.com/fanyue322/IMAGE" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0196, - edam:topic_3673 ; - sc:citation , - "pmcid:PMC6711525", - "pubmed:31454399" ; - sc:description "> NAME (IMAP) SIMILAR TO (PUB. DIFFERENT) bio.tools/imap (iMAP) | Chromosome-level genome assembler combining multiple de novo assemblies | System requirements (Tested versions) | Linux x64 (Tested in CentOS 7.5, Ubuntu 16.04 and Ubuntu 18.04) | Installing IMAP from source codes" ; - sc:featureList edam:operation_0523, - edam:operation_0524, - edam:operation_0525 ; - sc:name "IMAP_autogenerated" ; - sc:url "http://github.com/jkimlab/IMAP" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0632, + edam:topic_0769, + edam:topic_0804, + edam:topic_3168, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8734366", + "pubmed:34991455" ; + sc:description "The ImmunoDataAnalyzer (IMDA) pipeline provides various methods for analysing immunological next-generation sequencing (NGS) data." ; + sc:featureList edam:operation_0337, + edam:operation_3192, + edam:operation_3200, + edam:operation_3933 ; + sc:isAccessibleForFree true ; + sc:license "Freeware" ; + sc:name "ImmunoDataAnalyzer" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:url "https://bioinformatics.fh-hagenberg.at/immunoanalyzer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -36052,7 +28689,7 @@ The public IMG/ABC site has limited features and tools.""" ; sc:url "https://img.jgi.doe.gov/abc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_3930, edam:topic_3948 ; @@ -36070,26 +28707,26 @@ The public IMG/ABC site has limited features and tools.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2858" ; - sc:name "Ontology concept" ; - sc:sameAs "http://edamontology.org/data_2858" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_2858" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology concept" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ], + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3930, edam:topic_3948 ; @@ -36109,14 +28746,14 @@ Annotation is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0804 ; @@ -36134,10 +28771,10 @@ Annotation is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1274" ; - sc:name "Map" ; - sc:sameAs "http://edamontology.org/data_1274" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1274" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0804 ; sc:citation "pubmed:15089751", @@ -36155,14 +28792,14 @@ Annotation is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0804 ; sc:citation "pubmed:11862387", @@ -36182,18 +28819,17 @@ Annotation is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0804, edam:topic_3510, @@ -36213,22 +28849,14 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3154" ; - sc:name "Protein alignment" ; - sc:sameAs "http://edamontology.org/data_3154" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3154" ; - sc:name "Protein alignment" ; - sc:sameAs "http://edamontology.org/data_3154" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3154" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0804, edam:topic_3930, @@ -36249,10 +28877,10 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Keyword" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081 ; sc:citation "pubmed:25378316" ; @@ -36268,62 +28896,34 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2858" ; - sc:name "Ontology concept" ; - sc:sameAs "http://edamontology.org/data_2858" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2858" ; - sc:name "Ontology concept" ; - sc:sameAs "http://edamontology.org/data_2858" ], + sc:additionalType "http://edamontology.org/data_2299" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_2858" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology concept" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0804, @@ -36347,18 +28947,18 @@ Annotation is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0804, edam:topic_3053, @@ -36380,30 +28980,18 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1278" ; - sc:name "Genetic map" ; - sc:sameAs "http://edamontology.org/data_1278" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1278" ; - sc:name "Genetic map" ; - sc:sameAs "http://edamontology.org/data_1278" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1278" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Genetic map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3930, edam:topic_3948 ; sc:citation "pubmed:14681357", @@ -36417,10 +29005,10 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1274" ; - sc:name "Map" ; - sc:sameAs "http://edamontology.org/data_1274" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1274" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0804, edam:topic_3930, @@ -36440,10 +29028,10 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1274" ; - sc:name "Map" ; - sc:sameAs "http://edamontology.org/data_1274" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1274" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0804, edam:topic_3930, @@ -36463,22 +29051,22 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3779" ; - sc:name "Annotated text" ; - sc:sameAs "http://edamontology.org/data_3779" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3779" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Annotated text" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Web application" ; sc:applicationSubCategory edam:topic_3930, @@ -36503,18 +29091,18 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ], + sc:additionalType "http://edamontology.org/data_0867" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence alignment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3930, edam:topic_3948 ; @@ -36536,26 +29124,26 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_1103" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "EMBL/GenBank/DDBJ ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2858" ; - sc:name "Ontology concept" ; - sc:sameAs "http://edamontology.org/data_2858" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1103" ; - sc:name "EMBL/GenBank/DDBJ ID" ; - sc:sameAs "http://edamontology.org/data_1103" ], + sc:additionalType "http://edamontology.org/data_2858" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology concept" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -36581,10 +29169,10 @@ Annotation is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2969" ; - sc:name "Sequence image" ; - sc:sameAs "http://edamontology.org/data_2969" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2969" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0804 ; sc:citation "pubmed:15089751", @@ -36603,14 +29191,14 @@ Display is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3930, edam:topic_3948 ; @@ -36631,46 +29219,26 @@ Annotation is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2858" ; - sc:name "Ontology concept" ; - sc:sameAs "http://edamontology.org/data_2858" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ], + sc:additionalType "http://edamontology.org/data_2858" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology concept" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2858" ; - sc:name "Ontology concept" ; - sc:sameAs "http://edamontology.org/data_2858" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ] ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2523" ; - sc:name "Phylogenetic data" ; - sc:sameAs "http://edamontology.org/data_2523" ], + sc:additionalType "http://edamontology.org/data_2523" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Phylogenetic data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2523" ; - sc:name "Phylogenetic data" ; - sc:sameAs "http://edamontology.org/data_2523" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0867" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence alignment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3930, edam:topic_3948 ; @@ -36687,22 +29255,20 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Sequence report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3930, edam:topic_3948 ; @@ -36723,14 +29289,14 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0804 ; @@ -36749,14 +29315,14 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0804, edam:topic_3400, @@ -36776,7 +29342,7 @@ IMGT/mAb-DB provides links to IMGT/2Dstructure-DB and IMGT/3Dstructure-DB.""" ; sc:url "http://www.imgt.org/mAb-DB/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -36796,7 +29362,7 @@ The IUPHAR/BPS Guide to IMMUNOPHARMACOLOGY. Description.""" ; sc:url "http://www.guidetoimmunopharmacology.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, @@ -36816,110 +29382,8 @@ The IUPHAR/BPS Guide to IMMUNOPHARMACOLOGY. Description.""" ; sc:url "https://github.com/Mosjava/IMOS" ; biotools:primaryContact "Hadadian Nejad Youesfi" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0194, - edam:topic_0199, - edam:topic_3673 ; - sc:citation , - "pmcid:PMC6612806", - "pubmed:31510683" ; - sc:description "> CORRECT NAME OF TOOL COULD ALSO BE 'GPA' (bio.tools/gpa), 'progressiveMauve' | Efficient merging of genome profile alignments | André Hennig authored Jul 17, 2019" ; - sc:featureList edam:operation_0295, - edam:operation_0300, - edam:operation_3182 ; - sc:name "IMPLEMENTATION:GPA" ; - sc:url "https://lambda.informatik.uni-tuebingen.de/gitlab/ahennig/GPA" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3170 ; - sc:citation , - "pubmed:31504157" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'HowDe-SBT' | Improved representation of sequence Bloom trees | Sequence Bloom Tree, supporting determined/how split filters | Jellyfish (Version 2.2.0 or later)" ; - sc:featureList edam:operation_0224 ; - sc:license "MIT" ; - sc:name "IMPLEMENTATION:HowDe-SBT" ; - sc:url "https://github.com/medvedevgroup/HowDeSBT" . - - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31504154" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Knot_pull' | Knot_pull-python package for biopolymer smoothing and knot detection | Python module for knot-like structure detection in biological molecules | KnotPull - a simplifier for 3D structures | KnotPull reduces a user provided 3D structure, to simplify it, while preserving the topology of the chain. It has been successfully used for knot detection in proteins and chromatin chains" ; - sc:featureList edam:operation_3890 ; - sc:license "GPL-3.0" ; - sc:name "IMPLEMENTATION:Knot_pull" ; - sc:url "http://github.com/dzarmola/knot_pull" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_3697, - edam:topic_3855 ; - sc:citation , - "pmcid:PMC6612855", - "pubmed:31510709" ; - sc:description "> MEDIUM CONFIDENCE! | Learning a mixture of microbial networks using minorization-maximization | \"MixMPLN\" is a package written in R, which has two features. First feature is generating a proper synthetic sample-taxa count matrix. Second feature is receiving a sample-taxa count matrix and extracting k(number of components) different interaction networks between taxa | Following packages must be installed and loaded in R environment before using \"MixMPLN\":" ; - sc:featureList edam:operation_2937, - edam:operation_3192 ; - sc:name "IMPLEMENTATION:MixMPLN" ; - sc:url "https://github.com/sahatava/MixMPLN" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0091, - edam:topic_0769 ; - sc:citation , - "pubmed:31368486" ; - sc:description "> MEDIUM CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/PRALINE_2 (GITHUB.COM/ibivu/PRALINE) | > CORRECT NAME OF TOOL COULD ALSO BE 'SUMMARY:PRALINE', 'PRALINE' (bio.tools/praline), 'PRALINE 2' (bio.tools/PRALINE_2) | Tailor-made multiple sequence alignments using the PRALINE 2 alignment toolkit | Next-generation PRALINE sequence alignment program | PRALINE 2, a reimplementation of the PSI-PRALINE multiple sequence alignment program | Progressive multiple sequence alignment" ; - sc:featureList edam:operation_0300, - edam:operation_0491, - edam:operation_0492 ; - sc:license "GPL-2.0" ; - sc:name "IMPLEMENTATION:PRALINE" ; - sc:url "https://github.com/ibivu/PRALINE/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6612842", - "pubmed:31510644" ; - sc:description "> MEDIUM CONFIDENCE! | Model-based optimization of subgroup weights for survival analysis | Toolbox for Bayesian Optimization and Model-Based Optimization in R | Model-based optimization with mlr | Issues, Requests and Bug Tracker" ; - sc:featureList edam:operation_3659 ; - sc:name "IMPLEMENTATION:mlrMBO" ; - sc:url "http://github.com/mlr-org/mlrMBO" . - - a sc:SoftwareApplication ; - sc:citation , - "pmcid:PMC6845223" ; - sc:description """WELL-BEING AND COMMUNITY BELONGING FOR OLDER AFRICAN AMERICANS IN LOW-INCOME HOUSING. - -AbstractArts-based interventions can enhance the quality of life of older adults, but community-dwelling older adults may have reduced access to such interventions. The purpose of this study was to examine whether a creative arts program can improve the overall health and well-being of older adults in low-income housing. A university social work department and community agency collaborated in establishing a professionally run theater group of older adults in two low-income housing buildings in an urban area. All residents were encouraged to participate. The study consisted of three twelve-week acting and improvisation courses, focusing on either staged reading of monologues and dialogues, co-writing a script, or staged reading of a complete play. - -||| HOMEPAGE BROKEN!. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/Diffeomorphic (IC.OUP.COM)""" ; - sc:name "IMPROV CLASS" ; - sc:url "http://ic.oup.com" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3306, - edam:topic_3382, - edam:topic_3892 ; - sc:citation , - "pubmed:31396911" ; - sc:description "> NAME EQUAL TO (PUB. DIFFERENT) bio.tools/imp_biomolecules, bio.tools/imp_omic, bio.tools/imp | > CORRECT NAME OF TOOL COULD ALSO BE 'PDB-Dev', 'Integrative Modeling Platform', 'integrative modeling including gathering', 'integrative modeling including' | Modeling Biological Complexes Using Integrative Modeling Platform | Scripts to assess sampling convergence and exhaustiveness" ; - sc:featureList edam:operation_3431 ; - sc:license "GPL-2.0" ; - sc:name "IMP_autogenerated" ; - sc:url "https://github.com/salilab/IMP-sampcon" . - - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31478709" ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | Implementing illness management and recovery within assertive community treatment teams | OBJECTIVE:The study purpose was to assess the feasibility, advantages disadvantages, and factors that hinder or facilitate the implementation of illness management and recovery (IMR) within assertive community treatment (ACT) teams. METHOD:A qualitative study was conducted with 11 ACT teams that implemented IMR. We conducted semistructured individual interviews with 17 persons enrolled in services and 55 ACT staff in individual and focus groups. Questions were designed to assess perceptions of IMR implementation, effects of IMR, staff training considerations, and recommendations. Data were analyzed using an inductive, consensus-building, thematic analysis, which included multiple research staff reviewing interview transcripts and field notes, developing and refining a codebook, constructing data summaries, and thematic synthesis" ; - sc:name "IMR" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31478709" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -36938,7 +29402,7 @@ AbstractArts-based interventions can enhance the quality of life of older adults biotools:primaryContact "Y. Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3172, @@ -36964,7 +29428,7 @@ AbstractArts-based interventions can enhance the quality of life of older adults "Zhenzhi Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0218, @@ -36984,7 +29448,7 @@ AbstractArts-based interventions can enhance the quality of life of older adults biotools:primaryContact "Peter Sorger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2269, @@ -37000,7 +29464,7 @@ AbstractArts-based interventions can enhance the quality of life of older adults sc:url "http://www.r-inla.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -37018,7 +29482,7 @@ Nuclear localization signals (NLSs) are peptides that target proteins to the nuc sc:url "http://www.csbio.sjtu.edu.cn/bioinf/INSP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3384, @@ -37036,18 +29500,8 @@ Nuclear localization signals (NLSs) are peptides that target proteins to the nuc sc:url "http://gabrmn.uab.es/dss" ; biotools:primaryContact "Biomedical Applications of Magnetic Resonance research group" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3390, - edam:topic_3411, - edam:topic_3420 ; - sc:citation ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'retracted', 'F1000Research', 'F1000Research IOP F1000Research', 'ICMJE' | Consumer perspectives on reproductive health after using the Jakpros smart mobile health application | The article titled “Consumer perspectives on reproductive health after using the Jakpros smart mobile health application: A cross-sectional, qualitative study” ([version 1; peer review: 1 not approved] F1000Research 2019, 8: 396 https: doi.org 10.12688 f1000research. 17894.1 ) has been retracted by F1000Research on the grounds of scientific misconduct. On submission to F1000Research, all manuscripts undergo plagiarism checks as standard this is detailed in our Originality policies. Upon submission, authors are also required to declare that the article is not under consideration or review by another publisher. At this stage in the publication process, our plagiarism detection software did not identify any significant duplication of text" ; - sc:featureList edam:operation_3431 ; - sc:name "IOP" ; - sc:url "https://iopscience.iop.org/article/10.1088/1755-1315/248/1/012038/pdf" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3172, @@ -37060,7 +29514,7 @@ Nuclear localization signals (NLSs) are peptides that target proteins to the nuc sc:url "https://github.com/francescodc87/IPA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -37084,7 +29538,7 @@ Nuclear localization signals (NLSs) are peptides that target proteins to the nuc biotools:primaryContact "Kridsadakorn Chaichoompu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0199, @@ -37105,7 +29559,7 @@ IPD was developed in 2003 to provide a centralised system for the study of polym sc:url "https://www.ebi.ac.uk/ipd/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3308, @@ -37117,23 +29571,8 @@ IPD was developed in 2003 to provide a centralised system for the study of polym sc:name "IPF" ; sc:url "http://IPFCellAtlas.com" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0634 ; - sc:citation , - "pubmed:31699507" ; - sc:description """Assessment of immunization practices in Belarus, Morocco, and Thailand. - -BACKGROUND:Vaccines for the control of seasonal influenza are recommended by the World Health Organization (WHO) for use in specific risk groups, but their use requires operational considerations that may challenge immunization programs. Several middle-income countries have recently implemented seasonal influenza vaccination. Early program evaluation following vaccine introduction can help ascertain positive lessons learned and areas for improvement. METHODS:An influenza vaccine post-introduction evaluation (IPIE) tool was developed jointly by WHO and the U. S. Centers for Disease Control and Prevention to provide a systematic approach to assess influenza vaccine implementation processes. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Seasonal influenza vaccination middle-income countries', 'influenza vaccination', 'seasonal influenza', 'HWs'""" ; - sc:name "IPIE" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31699507" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3474, @@ -37149,7 +29588,7 @@ BACKGROUND:Vaccines for the control of seasonal influenza are recommended by the sc:url "https://irespy.shinyapps.io/IRESpy/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0804, @@ -37164,28 +29603,8 @@ BACKGROUND:Vaccines for the control of seasonal influenza are recommended by the sc:name "IRNdb" ; sc:url "http://irndb.org" . - a sc:SoftwareApplication ; - sc:additionalType "Command-line tool" ; - sc:applicationSubCategory edam:topic_3179, - edam:topic_3382, - edam:topic_3393 ; - sc:citation , - "pmcid:PMC6751239", - "pubmed:31659546" ; - sc:description """new synthesis platform for radiopharmaceutical production. - -BACKGROUND:PET radiopharmaceutical development and the implementation of a production method on a synthesis module is a complex and time-intensive task since new synthesis methods must be adapted to the confines of the synthesis platform in use. Commonly utilized single fluid bus architectures put multiple constraints on synthesis planning and execution, while conventional microfluidic solutions are limited by compatibility at the macro-to-micro interface. In this work we introduce the ISAR synthesis platform and custom-tailored fluid paths leveraging up to 70 individually addressable valves on a chip-based consumable. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'development', 'implementation ISAR', '13NNH3', 'consumable', 'radiopharmaceutical'""" ; - sc:featureList edam:operation_2428, - edam:operation_3435 ; - sc:name "ISAR" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31659546" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3382, @@ -37206,7 +29625,7 @@ BACKGROUND:PET radiopharmaceutical development and the implementation of a produ biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -37228,7 +29647,7 @@ Characterisation and calibration of single or multiple Ion Selective Electrodes sc:url "https://CRAN.R-project.org/package=ISEtools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382, @@ -37244,7 +29663,7 @@ Phase-contrast micrographs are often used for confirmation of proliferation and sc:url "https://www.ilastik.org/download.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3403, @@ -37259,7 +29678,7 @@ Phase-contrast micrographs are often used for confirmation of proliferation and sc:url "https://github.com/williamcaicedo/ISeeU" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0749, @@ -37278,54 +29697,8 @@ Phase-contrast micrographs are often used for confirmation of proliferation and sc:url "https://github.com//statgenlmu//IWEPoissonPaper" ; biotools:primaryContact "Dirk Metzler" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_0769, - edam:topic_3895 ; - sc:citation ; - sc:description """Elucidation of the Draft Genome Sequence of Ideonella azotifigens DSMZ21438 A Novel Aerobic Diazotroph of the Betaproteobacteria Isolated from Grass Rhizosphere Soil. - -Code for quality control, trimming, assembly, and annotation of Illumina sequencing data from Ideonella azotifigens DSMZ21438. - -The draft genome sequence for type strain Ideonella azotifigens DSMZ21438, a novel aerobic diazotroph of the Betaproteobacteria isolated from grass rhizosphere soil. - -Manuscript is currently in process. - -This is the code and data for this article. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'azotifigens DSMZ21438T', 'DSMZ21438', 'azotifigens', 'DSMZ21438T'""" ; - sc:featureList edam:operation_0310, - edam:operation_3192, - edam:operation_3218 ; - sc:name "Ideonella azotifigens DSMZ21438T" ; - sc:url "http://www.github.com/friesenlab/ideonella-azotifigens_DSMZ21438" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_3324, - edam:topic_3360, - edam:topic_3400, - edam:topic_3421 ; - sc:citation , - "pmcid:PMC6877653", - "pubmed:31803189" ; - sc:description """Conservation Analysis of B-Cell Allergen Epitopes to Predict Clinical Cross-Reactivity Between Shellfish and Inhalant Invertebrate Allergens. - -Free epitope database and prediction resource. - -Free resource for searching and exporting immune epitopes. Includes more than 95% of all published infectious disease, allergy, autoimmune, and transplant epitope data. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/ImmunomeBrowser (IEDB.ORG), bio.tools/iedb-3d (IEDB.ORG), bio.tools/tepitool (IEDB.ORG). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Immune Epitope Database', 'allergen', 'cross-reactivity shellfish allergens', 'IgE cross-reactivity shellfish allergens'""" ; - sc:featureList edam:operation_0252, - edam:operation_0416, - edam:operation_2421 ; - sc:name "IgE-antibody binding" ; - sc:url "http://www.iedb.org/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -37349,7 +29722,7 @@ comparison between IgM reactivity with different peptide libraries.""" ; sc:url "https://github.com/ansts/IgMimoPap1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0081, @@ -37364,7 +29737,7 @@ comparison between IgM reactivity with different peptide libraries.""" ; sc:url "https://github.com/ccsb-scripps/Illustrate" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3382, @@ -37381,7 +29754,7 @@ ImJoy -- Deep Learning Made Easy!""" ; sc:url "https://imjoy.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0140, @@ -37402,7 +29775,7 @@ A deep learning model for protein subcellular localization based on immunohistoc sc:url "https://github.com/yl2019lw/ImPloc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3170, @@ -37426,14 +29799,19 @@ We also used ImSpectR to score CDR3 data from human TCR sequencing data sequence a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Gene expression matrix" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1147" ; + sc:name "GEO accession number" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:name "Heat map" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3308 ; @@ -37442,19 +29820,20 @@ We also used ImSpectR to score CDR3 data from human TCR sequencing data sequence "pubmed:30137226" ; sc:description "ImaGEO is a web tool for gene expression Meta-Analysis that implements a complete and comprehensive meta-analysis workflow starting from Gene Expression Omnibus (GEO) dataset identifiers. The application integrates GEO datasets, applies different meta-analysis techniques and provides functional analysis results in an easy-to-use environment. ImaGEO is a powerful and useful resource that allows researchers to integrate and perform meta-analysis of GEO datasets to lead robust findings for biomarker discovery studies." ; sc:featureList edam:operation_0531, - edam:operation_0533, - edam:operation_3435 ; + edam:operation_3223, + edam:operation_3435, + edam:operation_3436 ; sc:isAccessibleForFree true ; sc:license "GPL-2.0" ; sc:name "ImaGEO" ; sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:url "http://bioinfo.genyo.es/imageo/" ; + sc:url "https://imageo.genyo.es" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -37475,7 +29854,7 @@ ImaGene implements a supervised machine learning algorithm to predict natural se sc:url "https://github.com/mfumagalli/ImaGene" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3068, @@ -37497,7 +29876,7 @@ Identify regions corresponding to individual particles""" ; sc:url "http://www.imagedataextractor.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3444, edam:topic_3452 ; @@ -37508,7 +29887,7 @@ Identify regions corresponding to individual particles""" ; sc:url "https://jeffreyleal.wixsite.com/jleal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3382, @@ -37529,7 +29908,7 @@ Identify regions corresponding to individual particles""" ; biotools:primaryContact "Chin-Long Ky" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -37550,7 +29929,7 @@ Identify regions corresponding to individual particles""" ; biotools:primaryContact "David J. Klinke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0804 ; @@ -37571,7 +29950,7 @@ Identify regions corresponding to individual particles""" ; sc:url "https://www.immport.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2830, @@ -37589,7 +29968,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "http://www.immcantation.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0804, edam:topic_2269, @@ -37608,7 +29987,7 @@ Any comments and suggestions, please contact us""" ; sc:url "http://bioinfo.life.hust.edu.cn/ImmuCellAI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0749, @@ -37632,7 +30011,7 @@ Any comments and suggestions, please contact us""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2830 ; @@ -37646,7 +30025,7 @@ Any comments and suggestions, please contact us""" ; sc:url "https://sysimm.org/immune-scape/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0154, @@ -37666,20 +30045,8 @@ Any comments and suggestions, please contact us""" ; sc:url "http://tools.iedb.org/immunomebrowser/" ; biotools:primaryContact "Sandeep Kumar Dhanda" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_0804, - edam:topic_3400 ; - sc:citation , - "pmcid:PMC6724660", - "pubmed:31555265" ; - sc:description "> LOW CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/krisp (ORG.ZA) | > CORRECT NAME OF TOOL COULD ALSO BE 'IUIS', 'IUIS-EDU' | Immunology Education Without Borders | Advancing Global Immunology Education | EARN CPD POINTS ON OUR AWARD WINNING SITE AND LEARN IMMUNOLOGY" ; - sc:featureList edam:operation_0560 ; - sc:name "Immunopaedia" ; - sc:url "https://www.immunopaedia.org.za/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3376, @@ -37693,7 +30060,7 @@ Any comments and suggestions, please contact us""" ; sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31412887" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3300, @@ -37716,7 +30083,7 @@ Any comments and suggestions, please contact us""" ; biotools:primaryContact "Laboratory for Metabolic Systems Engineering" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_3293, @@ -37730,7 +30097,7 @@ Any comments and suggestions, please contact us""" ; sc:url "https://github.com/Ananya-Bhattacharjee/ImputeDistances" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -37747,7 +30114,7 @@ Any comments and suggestions, please contact us""" ; biotools:primaryContact "Christoph Moehl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Desktop application" ; sc:applicationSubCategory edam:topic_0157, @@ -37770,84 +30137,23 @@ Any comments and suggestions, please contact us""" ; biotools:primaryContact "Konstantin Gunbin", "Viktor Shamansky" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2229, - edam:topic_3318 ; - sc:citation , - "pmcid:PMC6822117", - "pubmed:31681882" ; - sc:description """Electronic Structure of In3-x Se4 Electron Transport Layer for Chalcogenide/p-Si Heterojunction Solar Cells. - -In this article, we perform density functional theory calculation to investigate the electronic and optical properties of newly reported In3-x Se4 compound using CAmbridge Serial Total Energy Package (CASTEP). Structural parameters obtained from the calculations agree well with the available experimental data, indicating their stability. In the band structure of In3-x Se4 (x = 0, 0.11, and, 0.22), the Fermi level (E F) crossed over several bands in the conduction bands, which is an indication of the n-type metal-like behavior of In3-x Se4 compounds. On the other hand, the band structure of In3-x Se4 (x = 1 3) exhibits semiconducting nature with a band gap of ∼0.2 eV. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'In3-x Se4 p-Si solar', 'In3-x Se4 p-Si', 'In3-x Se4 p-Si heterojunction solar', 'In3-x Se4 p-Si heterojunction'""" ; - sc:name "In3-x Se4" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31681882" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0610, - edam:topic_0625, - edam:topic_3360, - edam:topic_3419, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6868504", - "pubmed:31692450" ; - sc:description """A Scalable and Governance-Aware Platform for Universal, Smartphone-Based Digital Phenotyping for Research and Clinical Applications. - -In this viewpoint we describe the architecture of, and design rationale for, a new software platform designed to support the conduct of digital phenotyping research studies. These studies seek to collect passive and active sensor signals from participants' smartphones for the purposes of modelling and predicting health outcomes, with a specific focus on mental health. We also highlight features of the current research landscape that recommend the coordinated development of such platforms, including the significant technical and resource costs of development, and we identify specific considerations relevant to the design of platforms for digital phenotyping. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Intelligent Sensing Inform Learn'""" ; - sc:featureList edam:operation_3283, - edam:operation_3436 ; - sc:name "InSTIL" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31692450" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3382, - edam:topic_3473 ; - sc:citation , - "pubmed:31794662" ; - sc:description """A Python Framework for Multi-Components Synchronous Analysis of Spectral Imaging. - -Spectral imaging is of visualization, high precision, and high sensitivity, and suitable for analyzing the spatial distribution of complex materials. While providing rich and detailed information, it makes higher demands on feature extraction and information mining of high-dimensional data. For the convenience of further utilization, our research team has developed a python framework for the multi-component synchronous analysis of spectral imaging based on characteristic band method and fast-NNLS algorithm, helping to handle spectrum data from complex samples and gaining semi-quantitative information of the sample on the scale of pixel based on target components. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'fast-NNLS', 'multi-space', 'Multi-Components'""" ; - sc:featureList edam:operation_0337, - edam:operation_3214, - edam:operation_3443 ; - sc:name "InSituAnalyze" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31794662" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -37871,7 +30177,7 @@ Spectral imaging is of visualization, high precision, and high sensitivity, and sc:url "http://www.cbrc.kaust.edu.sa/indigo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2885, @@ -37886,18 +30192,18 @@ Spectral imaging is of visualization, high precision, and high sensitivity, and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -37917,7 +30223,7 @@ Spectral imaging is of visualization, high precision, and high sensitivity, and sc:url "https://omics.pnl.gov/software/infernordn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -37937,29 +30243,8 @@ R package for DNA methylation analysis The proposition of cancer cells in a tumo sc:name "InfiniumPurify-R" ; sc:url "https://github.com/Xiaoqizheng/InfiniumPurify" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0654, - edam:topic_3295, - edam:topic_3360, - edam:topic_3512, - edam:topic_3518 ; - sc:citation , - "pubmed:31769783" ; - sc:description """Detection of differentially methylated CpG sites between tumor samples with uneven tumor purities. - -R package for DNA methylation analysis. - -R package for DNA methylation analysis The proposition of cancer cells in a tumor sample, named as tumor purity, is an intrinsic factor of tumor samples and has potentially great influence in variety of analyses including differential methylation, subclonal deconvolution and subtype clustering. InfiniumPurify is an integrated R pa ckage for est imatin g and accoun ting for tum or puri ty based on DNA methylation Infinium 450 k array data. InfiniumPurify has three main functions getPurity, InfiniumDMC and InfiniumClust, which could infer tumor purity, differential methylation analysis and tumor sample c luster accounting for estimated or user-provided tumor purities, respectively. The InfiniumPurify package provides a comprehensive analysis of tumor purity in cancer methylation research. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/infiniumpurify""" ; - sc:featureList edam:operation_3204, - edam:operation_3435, - edam:operation_3629 ; - sc:name "InfiniumPurify_autogenerated" ; - sc:url "https://github.com/Xiaoqizheng/InfiniumPurify" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0625, @@ -37977,30 +30262,8 @@ Relying on the informational partition of the non-random mating effects, and by sc:name "InfoMating" ; sc:url "http://acraaj.webs6.uvigo.es/InfoMating/Infomating.htm" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_0749, - edam:topic_0804, - edam:topic_2640, - edam:topic_3673 ; - sc:citation ; - sc:description """Identification of Familial Hodgkin Lymphoma Predisposing Genes Using Whole Genome Sequencing. - -QIAGEN Bioinformatics software solutions and curated knowledge databases help you transform your raw NGS data into relevant, actionable findings. - -Our website uses cookies. Cookies are text files that are stored in the internet browser or the internet browser on the user's computer system. When a user visits a website, a cookie may be stored on the user's operating system. This cookie contains a characteristic string that allows the browser to be uniquely identified when the website is reopened. We use cookies to make our website more user-friendly. Some elements of our website require that the calling browser be identified even after a page break. - -Use necessary cookies only Allow all cookies Show details. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'FCVPPv2', 'HL', 'predisposing', '113654'""" ; - sc:featureList edam:operation_3211, - edam:operation_3225, - edam:operation_3226 ; - sc:name "Ingenuity" ; - sc:url "http://www.qiagen.com/ingenuity" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0659, @@ -38020,7 +30283,7 @@ Use necessary cookies only Allow all cookies Show details. sc:url "http://www.insect-genome.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -38044,7 +30307,7 @@ We provide the source code of paper Platform-integrated mRNA Isoform Quantificat sc:url "https://github.com/CompbioLabUcf/IntMTQ" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3168, @@ -38060,7 +30323,7 @@ Intelli-NGS:Intelligent NGS, a deep neural network-based artificial intelligence sc:url "https://www.github.com/aditya-88/intelli-ngs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -38080,7 +30343,7 @@ Abstract Motivation Interactions between proteins and peptides or peptide-like i sc:url "http://wallnerlab.org/InterPep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, @@ -38096,7 +30359,7 @@ Abstract Motivation Interactions between proteins and peptides or peptide-like i sc:url "http://dmar.riken.jp/interspin/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3305, @@ -38123,7 +30386,7 @@ InterVA is a suite of computer models to facilitate interpreting VAs, and the la sc:url "http://www.interva.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3384, @@ -38145,31 +30408,8 @@ What our package does not do: extract transformations in the data to add them to sc:softwareHelp ; sc:url "https://github.com/jlevy44/InteractionTransformer" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0622, - edam:topic_3070, - edam:topic_3170, - edam:topic_3316, - edam:topic_3676 ; - sc:citation , - "pmcid:PMC6774052", - "pubmed:31602299" ; - sc:description """A catalyst for engaging life-science researchers in high throughput analysis. - -Introduction to Genomic Analysis Workshop Series. - -A workshop series for Canadian researchers utilizing Compute Canada resources. - -Introduction To Genomic Analysis. - -View on GitHub Download .zip Download .tar.gz""" ; - sc:featureList edam:operation_3227, - edam:operation_3229 ; - sc:name "Introduction Genomic Analysis Workshop" ; - sc:url "https://phillip-a-richmond.github.io/Introduction-to-Genomic-Analysis/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3068, @@ -38210,34 +30450,8 @@ IoT-EPI is a European Initiative for IoT platform development.""" ; sc:name "IoT" ; sc:url "https://iot-epi.eu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0605, - edam:topic_3068, - edam:topic_3318 ; - sc:citation , - , - "pmcid:PMC6864587", - "pmcid:PMC6864804", - "pubmed:31671918", - "pubmed:31690012" ; - sc:description """MicroServices Suite for Smart City Applications. - -Design and Implementation of a Trust Information Management Platform for Social Internet of Things Environments. - -This domain has been registered for a customer by nicsell. - -This domain vital-iot.eu was registered successfully by nicsell due to a customer order and will be moved soon. - -This domain has been successfully registered by nicsell.com for our customer. Unfortunately, it is no longer available for you. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Snap4City', 'trust', 'social IoT', 'TIMP', 'IoT businesses'""" ; - sc:featureList edam:operation_3435, - edam:operation_3760 ; - sc:name "IoT_autogenerated" ; - sc:url "http://vital-iot.eu/project" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3172, @@ -38252,7 +30466,7 @@ This domain has been successfully registered by nicsell.com for our customer. Un sc:url "https://github.com/Vitek-Lab/IonSpattern" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Library" ; @@ -38272,7 +30486,7 @@ This domain has been successfully registered by nicsell.com for our customer. Un sc:url "https://github.com/MetaSys-LISBP/IsoCor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0610, @@ -38294,14 +30508,14 @@ Hanley B, Connelly P, & Dennis B. 2019. IsoPOPd: Interactive software to underst a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3713" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -38322,30 +30536,18 @@ Hanley B, Connelly P, & Dennis B. 2019. IsoPOPd: Interactive software to underst a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3835" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3835" ; + sc:name "Mass spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3835" ; + sc:name "Mass spectrum" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3955 ; sc:citation , @@ -38364,22 +30566,14 @@ Hanley B, Connelly P, & Dennis B. 2019. IsoPOPd: Interactive software to underst a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3835" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3835" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3955 ; @@ -38395,7 +30589,7 @@ Hanley B, Connelly P, & Dennis B. 2019. IsoPOPd: Interactive software to underst sc:url "https://github.com/seliv55/ramidcor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2885, @@ -38411,7 +30605,7 @@ Hanley B, Connelly P, & Dennis B. 2019. IsoPOPd: Interactive software to underst sc:url "https://github.com/wangying0128/IsomiR_Find" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659 ; sc:citation , @@ -38429,7 +30623,7 @@ Hanley B, Connelly P, & Dennis B. 2019. IsoPOPd: Interactive software to underst biotools:primaryContact "F. Allen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0160, @@ -38448,7 +30642,7 @@ JACOBI4 является проектом, разработанным для а sc:url "https://jacobi4.ru/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -38473,7 +30667,7 @@ JACOBI4 является проектом, разработанным для а "Minh N. Nguyen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0621, @@ -38500,53 +30694,8 @@ JAMP is a modular metabarcoding pipeline, integrating different functions from U sc:name "JAMP" ; sc:url "https://github.com/VascoElbrecht/JAMP" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0780, - edam:topic_3170, - edam:topic_3308, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6929279", - "pubmed:31874631" ; - sc:description """a comprehensive knowledge base for Jatropha curcas. - -JCDB: an integrated database of gene annotation, expression profiling, and interaction network in the biofuel plant Jatropha curcas. - -In recent years, there have emerged a mass of high-throughput transcriptome sequencing of J. curcas. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CONCLUSIONS:JCDB'""" ; - sc:featureList edam:operation_2421, - edam:operation_2495, - edam:operation_3216 ; - sc:name "JCDB" ; - sc:url "http://jcdb.xtbg.ac.cn" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3068, - edam:topic_3305, - edam:topic_3379, - edam:topic_3419 ; - sc:citation , - "pubmed:31855190" ; - sc:description """Trends and Visibility of "Digital Health" as a Keyword in Articles by JMIR Publications in the New Millennium. - -Journal of Medical Internet Research. - -Journal of Medical Internet Research - International Scientific Journal for Medical Research, Information and Communication on the Internet. - -Due to necessary scheduled maintenance, the JMIR Publications website will be unavailable from Monday, March 11, 2019 at 4:00 PM to 4:30 PM EST . We apologize in advance for any inconvenience this may cause you. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'JMIR Publications', 'bibliographic-bibliometric'""" ; - sc:featureList edam:operation_0305, - edam:operation_2422, - edam:operation_3778 ; - sc:name "JMIR" ; - sc:url "http://www.jmir.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -38564,7 +30713,7 @@ Due to necessary scheduled maintenance, the JMIR Publications website will be un biotools:primaryContact "Burcak Otlu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0749, @@ -38578,7 +30727,7 @@ Due to necessary scheduled maintenance, the JMIR Publications website will be un sc:url "https://github.com/curieshicy/JRgui" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -38595,7 +30744,7 @@ JUDI - Bioinformatics Pipeline: Just Do It.""" ; sc:url "https://github.com/ncbi/JUDI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0176, @@ -38611,7 +30760,7 @@ JUDI - Bioinformatics Pipeline: Just Do It.""" ; sc:url "http://github.com/degiacom/JabberDock" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0610, @@ -38634,22 +30783,22 @@ Calculate statistical significance of Jaccard/Tanimoto similarity coefficients f a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1948" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0886" ; - sc:name "Structure alignment" ; - sc:sameAs "http://edamontology.org/data_0886" ] ; + sc:additionalType "http://edamontology.org/data_0886" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1948" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092 ; @@ -38668,12 +30817,12 @@ Calculate statistical significance of Jaccard/Tanimoto similarity coefficients f , , ; - sc:softwareVersion "2.11.1.5" ; + sc:softwareVersion "2.11.2.3" ; sc:url "https://www.jalview.org/" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, @@ -38691,7 +30840,7 @@ Calculate statistical significance of Jaccard/Tanimoto similarity coefficients f sc:url "https://github.com/CCQC/janus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0659, @@ -38708,25 +30857,8 @@ MOTIVATION:The existence of complex subpopulations of miRNA isoforms, or isomiRs sc:name "Jasmine" ; sc:url "https://bitbucket.org/bipous/jasmine/src/master/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0605, - edam:topic_0621, - edam:topic_3372, - edam:topic_3678 ; - sc:citation ; - sc:description """An exploratory study of the state of practice of performance testing in Java-based open source projects. - -The usage of open source (OS) software is nowadays wide- spread across many industries and domains. While the functional quality of OS projects is considered to be up to par with that of closed-source software, much is unknown about the quality in terms of non-functional attributes, such as performance. One challenge for OS developers is that, unlike for functional testing, there is a lack of accepted best practices for performance testing. To reveal the state of practice of performance testing in OS projects, we conduct an exploratory study on 111 Java-based OS projects from GitHub. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'tooling', 'low-friction', 'non-parameterized', 'performance'""" ; - sc:featureList edam:operation_2238 ; - sc:name "Java-based" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.2496V2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3360, @@ -38746,26 +30878,21 @@ This repository contains the code for performing a classification and a regressi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -38788,36 +30915,8 @@ This repository contains the code for performing a classification and a regressi sc:softwareVersion "2.1" ; sc:url "https://mines.legumeinfo.org/jointvetchmine" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2229, - edam:topic_3301, - edam:topic_3339 ; - sc:citation ; - sc:description """Bacteria as “ink” for writing the initials of names on agar. - -Mementos encapsulate memories and serve as triggers for their recollections. By using a purple pigment producing bacterium as “ink” for writing on agar, a picture memento depicting the initials of students’ names was created to help them remember the strong friendships they fostered with their fellow course mates during their final year research projects. Besides the fun activity of “Bacterial calligraphy”, the surface patterning technique can also serve as a simple and relatively low cost tool for testing the feasibility of research ideas; for example, depositing cells in both straight and curvilinear lines on planar substrates for investigating possible interactions between different microbe species. - -||| HOMEPAGE BROKEN!. - -||| CORRECT NAME OF TOOL COULD ALSO BE '172-174', 'memento', 'Calligraphy Memento', 'calligraphy'""" ; - sc:featureList edam:operation_3431 ; - sc:name "Journal Microbiology Biology Education" ; - sc:url "http://jmbe.asm.org/index.php/jmbe/article/view/414" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0769, - edam:topic_3372 ; - sc:citation ; - sc:description """Jupyter notebooks in science gateways. - -Jupyter Notebooks empower scientists to create executable documents that include text, equations, code and figures. Notebooks are a simple way to create reproducible and shareable workflows. The Jupyter developers have also released a multi-user notebook environment: Jupyterhub. Jupyterhub provides an extensible platform for handling user authentication and spawning the Notebook application to each user. I developed a plugin for Jupyterhub to spawn notebooks on a Supercomputer and integrated the authentication with CILogon and XSEDE. Scientists can authenticate on their browser and connect to a Jupyter Notebook instance running on the computing node of a Supercomputer, in my test deployment SDSC Comet. Jupyterhub can benefit Science Gateways by providing an expressive interface to a centralized environment with many software tools pre-installed and allow scientists to access Gateway functionality via web API. - -||| HOMEPAGE MISSING!""" ; - sc:name "Jupyterhub" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.2577V2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -38838,26 +30937,8 @@ Jupyter Notebooks empower scientists to create executable documents that include biotools:primaryContact "Michael L. Paull", "Patrick S. Daugherty" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0637, - edam:topic_2269, - edam:topic_2885 ; - sc:citation , - "pmcid:PMC6285183" ; - sc:description """PSVI-23 Genetic characteristics and differentiation of four valid subspecies of snow sheep (Ovis nivicola) based on SNP analysis. - -AbstractSnow sheep (Ovis nivicola) is endemic of North-East Siberia, Russia. To date, the taxonomy of this species, based primarily on morphological characteristics, is controversial. In order to clarify the taxonomy of snow sheep, modern molecular genetic approaches can be used. Here we applied Illumina Ovine 50K BeadChip to examine genetic characteristics and differentiation of four subspecies, which currently are considered as valid: Putorana (O.n.borealis) (PUT, n=7), Yakut (O.n.lydekkeri) (YAK, n=23), Koryak (O.n.koriakorum) (KOR, n=20) and Kamchatka (O.n.nivicola) (KAM, n=10). - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'KOR KOR YAK-1 YAK-1', 'KAM KOR KOR YAK-1', 'YAK-1 YAK-2 KOR', 'KOR YAK-1 YAK-1'""" ; - sc:featureList edam:operation_2428, - edam:operation_3432 ; - sc:name "KAM KOR KOR YAK-1 YAK-1" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6285183/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -38878,7 +30959,7 @@ AbstractSnow sheep (Ovis nivicola) is endemic of North-East Siberia, Russia. To biotools:primaryContact "Dr. Shafik D. Ibrahim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0659, @@ -38901,7 +30982,7 @@ Advancement of next generation sequencing and high-throughput technologies has r sc:url "http://kbcommons.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0602, @@ -38913,7 +30994,7 @@ Advancement of next generation sequencing and high-throughput technologies has r sc:url "https://kbbox.h-its.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0602, @@ -38926,7 +31007,7 @@ Advancement of next generation sequencing and high-throughput technologies has r sc:url "https://github.com/huayu1111/KDDANet/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3263, @@ -38944,7 +31025,7 @@ BACKGROUND AND OBJECTIVE:To take full advantage of decision support, machine lea sc:url "https://ketos.ai/hb/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, @@ -38965,7 +31046,7 @@ KOFFI-DB (???) is an article based database for kinetic constants of biomolecula sc:url "http://www.koffidb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -38985,7 +31066,7 @@ The first Korean Reference Genome. KOREF_S means KOREF_Single.""" ; sc:url "http://koref.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3421 ; sc:citation , @@ -39003,7 +31084,7 @@ The first Korean Reference Genome. KOREF_S means KOREF_Single.""" ; biotools:primaryContact "Mathieu Bray" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0602, @@ -39021,28 +31102,8 @@ The first Korean Reference Genome. KOREF_S means KOREF_Single.""" ; sc:url "https://github.com/suecharo/KPHMMER" ; biotools:primaryContact "Hirotaka Suetake" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3403, - edam:topic_3421, - edam:topic_3422, - edam:topic_3577 ; - sc:citation ; - sc:description """A Multimodal and Integrated Approach to Interrogate Human Kidney Biopsies with Rigor and Reproducibility. - -Welcome to Kidney Precision Medicine Project. - -The Kidney Precision Medicine Project (KPMP) is focused on finding new ways to treat acute kidney injury and chronic kidney disease. We will be obtaining kidney tissues from individuals volunteering to participate in an effort to redefine kidney disease in molecular terms and identify novel targeted therapies. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'KPMP TIS', 'TME', 'JBH', 'MTE'""" ; - sc:featureList edam:operation_2428, - edam:operation_3096, - edam:operation_3431 ; - sc:name "KPMP" ; - sc:url "http://www.KPMP.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -39062,7 +31123,7 @@ The Kidney Precision Medicine Project (KPMP) is focused on finding new ways to t biotools:primaryContact "Urszula Oleksiewicz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -39078,7 +31139,7 @@ The Kidney Precision Medicine Project (KPMP) is focused on finding new ways to t sc:url "https://manciaslab.shinyapps.io/KRASi/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -39101,84 +31162,8 @@ The Kidney Precision Medicine Project (KPMP) is focused on finding new ways to t biotools:primaryContact "Danica D. Wiredja", "Mark R. Chance" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0099, - edam:topic_3168 ; - sc:citation , - "pubmed:31665271" ; - sc:description """multiple sequence alignment of large data sets. - -A fast multiple sequence alignment program. - -Kalign is a fast multiple sequence alignment program for biological sequences. - -Kalign expects the input to be a set of unaligned sequences in fasta format or aligned sequences in aligned fasta, MSF or clustal format. Kalign automatically detects whether the input sequences are protein, RNA or DNA. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/kalign. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'RESULTS:Kalign', 'MOTIVATION:Kalign', 'Kalign 3'""" ; - sc:featureList edam:operation_0335, - edam:operation_0491, - edam:operation_0492 ; - sc:license "GPL-3.0" ; - sc:name "Kalign_autogenerated" ; - sc:url "https://github.com/timolassmann/kalign" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3302, - edam:topic_3382, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6695198", - "pubmed:31381573" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | An artificial neural network-based object detection smartphone application and mobile microscope as a point-of-care diagnostic aid for soil-transmitted helminthiases | BACKGROUND:Endemic areas for soil-transmitted helminthiases often lack the tools and trained personnel necessary for point-of-care diagnosis. This study pilots the use of smartphone microscopy and an artificial neural network-based (ANN) object detection application named Kankanet to address those two needs. METHODOLOGY PRINCIPAL FINDINGS:A smartphone was equipped with a USB Video Class (UVC) microscope attachment and Kankanet, which was trained to recognize eggs of Ascaris lumbricoides, Trichuris trichiura, and hookworm using a dataset of 2,078 images. It was evaluated for interpretive accuracy based on 185 new images. Fecal samples were processed using Kato-Katz (KK), spontaneous sedimentation technique in tube (SSTT), and Merthiolate-Iodine-Formaldehyde (MIF) techniques" ; - sc:featureList edam:operation_3552 ; - sc:name "Kankanet" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31381573" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_2640, - edam:topic_3305, - edam:topic_3324 ; - sc:citation ; - sc:description """Using Media to Promote Public Awareness of Early Detection of Kaposi's Sarcoma in Africa. - -Early Detection of Kaposi's Sarcoma. - -In sub-Saharan Africa, Kaposi’s sarcoma (KS) is the most common HIV-associated cancer in men and second most common in women. Because of the high prevalence of HIV infection in the region, this high i. 6 Tracks. 7 Followers. Stream Tracks and Playlists from Early Detection of Kaposi's Sarcoma on your desktop or mobile device. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'media', 'Uganda', 'KS', 'exposure'""" ; - sc:featureList edam:operation_3659 ; - sc:name "Kaposi" ; - sc:url "https://soundcloud.com/kaposis_sarcoma" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_2229, - edam:topic_3382 ; - sc:citation ; - sc:description """Analysis of Curvature in Biological Image Data using B-splines. - -A Fiji plugin for Curvature Analysis. - -Kappa is A Fiji plugin for Curvature Analysis. - -You can fire a remote Jupyter notebook server and reproduce the analysis using Binder: https://mybinder.org/v2/gh/brouhardlab/Kappa/master?urlpath=lab/tree/Analysis/Notebooks. - -||| NAME (Kappa) SIMILAR TO (PUB. DIFFERENT) bio.tools/kappa (KAPPA). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Kappa '""" ; - sc:featureList edam:operation_0461, - edam:operation_3443, - edam:operation_3799 ; - sc:license "MIT" ; - sc:name "Kappa_autogenerated" ; - sc:url "https://github.com/brouhardlab/Kappa" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2830, @@ -39202,7 +31187,7 @@ Kaptive is a tool for bacterial surface polysaccharide locus typing and variant sc:url "http://kaptive.holtlab.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0634, @@ -39224,7 +31209,7 @@ KataegisPortal is an R package that provides utilities to detect and visualize t sc:url "https://github.com/MeichunCai/Kataegisportal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -39244,7 +31229,7 @@ Given a biological network and a set of case-control studies, KeyPathwayMiner ef sc:url "https://keypathwayminer.compbio.sdu.dk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0102, @@ -39266,7 +31251,7 @@ Given a biological network and a set of case-control studies, KeyPathwayMiner ef "Dr. Halima Bensmail" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0820, @@ -39283,93 +31268,93 @@ Efficient manipulation and compact generation of expressions of Kirchhoff polyno sc:url "https://gitlab.com/csb.ethz/KirchPy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "KisSplice is a software that enables to analyse RNA-seq data with or without a reference genome." ; sc:name "KisSplice" ; sc:url "http://kissplice.prabi.fr" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_1333" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ], + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_1361" ; + sc:encodingFormat "http://edamontology.org/format_3665" ; + sc:name "Position frequency matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2914" ; - sc:name "Sequence features metadata" ; - sc:sameAs "http://edamontology.org/data_2914" ], + sc:additionalType "http://edamontology.org/data_2914" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Sequence features metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1361" ; - sc:name "Position frequency matrix" ; - sc:sameAs "http://edamontology.org/data_1361" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_1361" ; + sc:encodingFormat "http://edamontology.org/format_3665" ; + sc:name "Position frequency matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1361" ; - sc:name "Position frequency matrix" ; - sc:sameAs "http://edamontology.org/data_1361" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1361" ; - sc:name "Position frequency matrix" ; - sc:sameAs "http://edamontology.org/data_1361" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_1361" ; + sc:encodingFormat "http://edamontology.org/format_3665" ; + sc:name "Position frequency matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0157, @@ -39405,7 +31390,7 @@ Efficient manipulation and compact generation of expressions of Kirchhoff polyno . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -39435,7 +31420,7 @@ Kmasker uses an interal repository for reuse of kindex structures.""" ; sc:url "https://kmasker.ipk-gatersleben.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -39454,7 +31439,7 @@ We develop a comprehensive human gene expression profile database with TF knockd sc:url "http://www.licpathway.net/KnockTF/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:citation , "pubmed:31504154" ; @@ -39465,7 +31450,7 @@ We develop a comprehensive human gene expression profile database with TF knockd sc:url "http://github.com/dzarmola/knot_pull" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0736, @@ -39482,7 +31467,7 @@ We develop a comprehensive human gene expression profile database with TF knockd biotools:primaryContact "Julien Dorier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -39498,7 +31483,7 @@ We develop a comprehensive human gene expression profile database with TF knockd sc:url "https://knowpulse.usask.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3314, edam:topic_3315, @@ -39518,7 +31503,7 @@ We develop a comprehensive human gene expression profile database with TF knockd biotools:primaryContact "Panagiotis D. Kolokathis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0602, @@ -39540,7 +31525,7 @@ KofamKOALA assigns K numbers to the user's sequence data by HMMER/HMMSEARCH agai sc:url "https://www.genome.jp/tools/kofamkoala/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174, @@ -39560,7 +31545,7 @@ KofamKOALA assigns K numbers to the user's sequence data by HMMER/HMMSEARCH agai sc:url "https://github.com/hurwitzlab/krakenuniq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3336, @@ -39581,7 +31566,7 @@ KofamKOALA assigns K numbers to the user's sequence data by HMMER/HMMSEARCH agai biotools:primaryContact "André C. A. Nascimento" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382, @@ -39597,20 +31582,8 @@ KofamKOALA assigns K numbers to the user's sequence data by HMMER/HMMSEARCH agai sc:name "KymoButler" ; sc:url "http://kymobutler.deepmirror.ai" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_2269, - edam:topic_3336 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE BROKEN! | A Bayesian approach to accurate and robust signature detection on LINCS L1000 data | Abstract LINCS L1000 dataset produced by L1000 assay contains numerous cellular expression data induced by large sets of perturbagens. Although it provides invaluable resources for drug discovery as well as understanding of disease mechanisms, severe noise in the dataset makes the detection of reliable gene expression signals difficult. Existing methods for the peak deconvolution, either k -means based or Gaussian mixture model, cannot reliably recover the accurate expression level of genes in many cases, thereby limiting their robust applications in biomedical studies. Here, we have developed a novel Bayes’ theory based deconvolution algorithm that gives unbiased likelihood estimations for peak positions and characterizes the peak with a probability based z -scores" ; - sc:featureList edam:operation_0239, - edam:operation_2436, - edam:operation_3629 ; - sc:name "L1000" ; - sc:url "https://github.com/njpipeorgan/L1000bayesian" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -39637,7 +31610,7 @@ If necessary, you can specify the path for bwa and samtools in the run_L1EM.sh s sc:url "https://github.com/FenyoLab/L1EM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -39649,24 +31622,8 @@ If necessary, you can specify the path for bwa and samtools in the run_L1EM.sh s sc:name "LABiocin database" ; sc:url "http://labiocin.net" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3305, - edam:topic_3577 ; - sc:citation , - "pubmed:31619388" ; - sc:description """learning health systems and how they can integrate with patient care. - -PROBLEM:Learning health systems (LHS) are an underexplored concept. How LHS will operate in clinical practice is not well understood. This paper investigates the relationships between LHS, clinical care process specifications (CCPS) and the established levels of medical practice to enable LHS integration into daily healthcare practice. METHODS:Concept analysis and thematic analysis were used to develop an LHS characterisation. Pathway theory was used to create a framework by relating LHS, CCPS, health information systems and the levels of medical practice. A case study approach evaluates the framework in an established health informatics project. RESULTS:Five concepts were identified and used to define the LHS learning cycle. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'LHS', 'LHS CCPS', 'CCPS', 'characterisation LHS'""" ; - sc:name "LAGOS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31619388" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0176, @@ -39683,7 +31640,7 @@ Protein dynamics is central to all biological processes, including signal transd sc:url "http://chemyang.ccnu.edu.cn/ccb/server/LARMD/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3325 ; @@ -39695,7 +31652,7 @@ Protein dynamics is central to all biological processes, including signal transd biotools:primaryContact "Patrick Petrossians" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3384, @@ -39709,7 +31666,7 @@ Protein dynamics is central to all biological processes, including signal transd sc:url "https://github.com/thomshaw92/LASHiS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -39728,7 +31685,7 @@ Many biomolecular condensates form via spontaneous phase transitions that are dr sc:url "https://github.com/Pappulab/LASSI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -39750,7 +31707,7 @@ LAVA analyzes and visualizes minor allele variants in longitudinal sequence data sc:url "https://github.com/michellejlin/lava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, @@ -39772,14 +31729,14 @@ LAVA analyzes and visualizes minor allele variants in longitudinal sequence data a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2310" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091 ; sc:author ; @@ -39795,7 +31752,7 @@ LAVA analyzes and visualizes minor allele variants in longitudinal sequence data sc:url "https://github.com/brsaran/LBEEP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; @@ -39812,29 +31769,8 @@ Rotate training set for data augmentation.""" ; sc:name "LCA-CNN" ; sc:url "https://github.com/billzyx/LCA-CNN" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0128, - edam:topic_0621, - edam:topic_3315, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6777060", - "pubmed:31619921" ; - sc:description """An Efficient Feature Extraction Technique Based on Local Coding PSSM and Multifeatures Fusion for Predicting Protein-Protein Interactions. - -Background:Increasing evidence has indicated that protein-protein interactions (PPIs) play important roles in various aspects of the structural and functional organization of a cell. Thus, continuing to uncover potential PPIs is an important topic in the biomedical domain. Although various feature extraction methods with machine learning approaches have enhanced the prediction of PPIs. There remains room for improvement by developing novel and effective feature extraction methods and classifier approaches to identify PPIs. Method:In this study, we proposed a sequence-based feature extraction method called LCPSSMMF, which combined local coding position-specific scoring matrix (PSSM) with multifeatures fusion. - -||| HOMEPAGE BROKEN!""" ; - sc:featureList edam:operation_0253, - edam:operation_2492, - edam:operation_3092, - edam:operation_3454 ; - sc:name "LCPSSMMFSVM" ; - sc:url "http://219.219.62.123:8888/LCPSSMMFSVM" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -39861,25 +31797,8 @@ Email: jprunier.1@gmail.com or arnaud.droit@crchudequebec.ulaval.ca""" ; sc:name "LD-annot" ; sc:url "https://github.com/ArnaudDroitLab/LD-annot" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3263, - edam:topic_3316, - edam:topic_3318 ; - sc:citation , - "pubmed:31847431" ; - sc:description """Lightweight Device Authentication and Key Management Mechanism for Edge-Based IoT Deployment. - -In recent years, edge computing has emerged as a new concept in the computing paradigm that empowers several future technologies, such as 5G, vehicle-to-vehicle communications, and the Internet of Things (IoT), by providing cloud computing facilities, as well as services to the end users. However, open communication among the entities in an edge based IoT environment makes it vulnerable to various potential attacks that are executed by an adversary. Device authentication is one of the prominent techniques in security that permits an IoT device to authenticate mutually with a cloud server with the help of an edge node. If authentication is successful, they establish a session key between them for secure communication. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'IoT'""" ; - sc:featureList edam:operation_3891 ; - sc:name "LDAKM-EIoT" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31847431" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, @@ -39906,7 +31825,7 @@ MassIVE Datasets : Documentation : Forum : Contact. sc:url "https://gnps.ucsd.edu/ProteoSAFe/gnpslibrary.jsp?library=LDB_POSITIVE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632 ; sc:citation ; @@ -39916,7 +31835,7 @@ MassIVE Datasets : Documentation : Forum : Contact. sc:url "https://github.com/shubhamchandak94/LDPC_DNA_storage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0102, @@ -39937,7 +31856,7 @@ MassIVE Datasets : Documentation : Forum : Contact. biotools:primaryContact "Mitchell J. Machiela" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -39960,7 +31879,7 @@ Users need to run scripts after changing the value of input parameters. The deat sc:url "https://github.com/tanviralambd/LD/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0114, edam:topic_3168, @@ -39987,7 +31906,7 @@ git clone --recursive https://github.com/lichen2018/hgt-detection.git""" ; sc:url "https://github.com/lichen2018/LEMON" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170, @@ -40009,7 +31928,7 @@ The Local Event-based analysis of alternative Splicing using RNA-Seq (or LESSeq) sc:url "https://github.com/gersteinlab/LESSeq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -40029,7 +31948,7 @@ The Local Event-based analysis of alternative Splicing using RNA-Seq (or LESSeq) "Zhiqiang Gao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -40056,7 +31975,7 @@ LFQ-Analyst is an easy-to-use, interactive web application developed to perform sc:url "https://bioinformatics.erc.monash.edu/apps/LFQ-Analyst" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3168 ; @@ -40072,7 +31991,7 @@ You can’t perform that action at this time""" ; sc:url "https://github.uconn.edu/sya12005/LFastqC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3384, @@ -40096,7 +32015,7 @@ radiality - The angular extent of the LGE pattern, with values between 0 and 1. sc:url "https://github.com/GabrielBalabanResearch/lgemri_scar_metrics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2269, @@ -40113,7 +32032,7 @@ BACKGROUND:Gliomas are the most common primary malignant brain tumor. Diffuse lo sc:url "https://hgittleman.shinyapps.io/LGG_Nomogram_H_Gittleman/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3444, @@ -40124,7 +32043,7 @@ BACKGROUND:Gliomas are the most common primary malignant brain tumor. Diffuse lo sc:url "https://github.com/rkuplicki/LIBR_MOCD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0605, edam:topic_0621, @@ -40146,7 +32065,7 @@ pylidc is an Object-relational mapping (using SQLAlchemy) for the data provided sc:url "https://pylidc.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3314, @@ -40163,7 +32082,7 @@ pylidc is an Object-relational mapping (using SQLAlchemy) for the data provided sc:url "https://github.com/michaelorella/lignin-kmc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091 ; sc:citation , @@ -40174,30 +32093,8 @@ We are pleased to announce the launch of Limes!.""" ; sc:name "LIMES" ; sc:url "http://www.limes.cnrs.fr" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_0659, - edam:topic_3170, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6757264", - "pubmed:31579094" ; - sc:description """SFTA1P, LINC00968, GATA6-AS1, TBX5-AS1, and FEZF1-AS1 are crucial long non-coding RNAs associated with the prognosis of lung squamous cell carcinoma. - -Lung cancer has high incidence and mortality rates, and lung squamous cell carcinoma (LUSC) is a common form of non-small-cell lung carcinoma (NSCLC). The aim of our study was to discover long non-coding RNAs (lncRNAs) associated with LUSC prognosis. RNA-sequencing data obtained from LUSC samples were extracted from The Cancer Genome Atlas database. Using the limma package, differentially expressed genes (DEGs; including differentially expressed lncRNA genes (DELs), coding genes (DECs), and other genes (DEOs)) between LUSC and control samples were analyzed. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'LINC00968 SFTA1P GATA6-AS1 TBX5-AS1', 'SFTA1P GATA6-AS1 TBX5-AS1 FEZF1-AS1', 'co-expressed LINC00968 SFTA1P GATA6-AS1 TBX5-AS1', 'DECs co-expressed LINC00968 SFTA1P GATA6-AS1'""" ; - sc:featureList edam:operation_3463, - edam:operation_3501, - edam:operation_3503 ; - sc:name "LINC00968 SFTA1P GATA6-AS1 TBX5-AS1 FEZF1-AS1" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31579094" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0780, @@ -40209,7 +32106,7 @@ Lung cancer has high incidence and mortality rates, and lung squamous cell carci sc:url "http://www.LINbase.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0153, @@ -40231,7 +32128,7 @@ Lung cancer has high incidence and mortality rates, and lung squamous cell carci biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0154, @@ -40246,24 +32143,8 @@ Lung cancer has high incidence and mortality rates, and lung squamous cell carci ; sc:url "https://github.com/PNNL-Comp-Mass-Spec/LIQUID" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3068, - edam:topic_3855 ; - sc:citation ; - sc:description """an open source GIS-based model for liveability spatial assessment. - -Ecosystem Services (ES) and Urban Services (US) influence place liveability in a comparable manner. Consequently, assessing landscape liveability considering both types of services can result effective for landscape planning and policy-making purposes. Since liveability depends also on local population preferences and perceptions, stakeholder involvement results essential for a more coherent liveability assessment. In this study a Spatial Multicriteria Decision Aiding (S-MCDA) approach guided the development of a LIveability Spatial Assessment Model (LISAM). Using a combination of GIS techniques (Euclidean distance, kernel density estimation, network analysis, viewshed analysis), consistent and comparable ES and US spatial indices were calculated in a study area located in central Italy. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'liveability'""" ; - sc:featureList edam:operation_3435 ; - sc:name "LISAM" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.2133V2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0121, @@ -40284,7 +32165,7 @@ LLCT is a two-step self-contained gene-set analysis method which is developed to sc:url "https://github.com/its-likeli-jeff/LLCT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -40307,7 +32188,7 @@ LLCT is a two-step self-contained gene-set analysis method which is developed to sc:url "https://glycosmos.gitlab.io/lm-glycomeatlas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -40323,7 +32204,7 @@ SUMMARY:Open source software such as ImageJ and CellProfiler greatly simplified sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31860062" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -40344,7 +32225,7 @@ SUMMARY:Open source software such as ImageJ and CellProfiler greatly simplified biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0160, @@ -40367,7 +32248,7 @@ SUMMARY:Open source software such as ImageJ and CellProfiler greatly simplified biotools:primaryContact "Yang Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3384, @@ -40382,23 +32263,8 @@ SUMMARY:Open source software such as ImageJ and CellProfiler greatly simplified sc:name "LONI-QC" ; sc:url "http://qc.loni.usc.edu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3444, - edam:topic_3474 ; - sc:citation , - "pubmed:31846826" ; - sc:description """Limited One-time Sampling Irregularity Map (LOTS-IM) for Automatic Unsupervised Assessment of White Matter Hyperintensities and Multiple Sclerosis Lesions in Structural Brain Magnetic Resonance Images. - -We present the application of limited one-time sampling irregularity map (LOTS-IM): a fully automatic unsupervised approach to extract brain tissue irregularities in magnetic resonance images (MRI), for quantitatively assessing white matter hyperintensities (WMH) of presumed vascular origin, and multiple sclerosis (MS) lesions and their progression. LOTS-IM generates an irregularity map (IM) that represents all voxels as irregularity values with respect to the ones considered "normal". Unlike probability values, IM represents both regular and irregular regions in the brain based on the original MRI's texture information. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3435 ; - sc:name "LOTS-IM" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31846826" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0199, @@ -40420,7 +32286,7 @@ We propose a new computational method called LOTUS to predict new driver genes. sc:url "https://github.com/LOTUSproject/LOTUS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2840, @@ -40443,7 +32309,7 @@ Please kindly cite the paper if you use the code, datasets or any results in thi sc:url "https://github.com/ruoqi-liu/LP-SDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0659, @@ -40464,7 +32330,7 @@ LPM (Latent Probit Model), is an efficient statistical approach to characterize sc:url "https://github.com/mingjingsi/LPM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0102, @@ -40483,7 +32349,7 @@ LPM (Latent Probit Model), is an efficient statistical approach to characterize sc:url "https://github.com/cchauve/lrcstats" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -40502,7 +32368,7 @@ Hybrid assembly strategy is a reasonable and promising approach to utilize stren sc:url "https://github.com/shingocat/lrscaf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -40527,49 +32393,8 @@ line2 and line3: Path_Fastahap1 and Path_Fastahap2, the two haploid reference se sc:name "LRTK-SIM" ; sc:url "https://github.com/zhanglu295/LRTK-SIM" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3318 ; - sc:citation ; - sc:description """Satellite Retrieval of Downwelling Shortwave Surface Flux and Diffuse Fraction under All Sky Conditions in the Framework of the LSA SAF Program (Part 1. - -Satellite Application Facility Project. - -Access to this area is restricted to authorized users. - -Monitoring of Vegetation Condition. - -Example of drought detection by combining precipitation, vegetation indices and satellite derived evapotranspiration. - -To get access please register here. - -Release of new LSA SAF Climate Data Records. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'SAF', 'LSA SAF', 'atmosphere', 'solar'""" ; - sc:featureList edam:operation_2422, - edam:operation_3435, - edam:operation_3659 ; - sc:name "LSA-SAF" ; - sc:url "http://saf.eumetsat.int" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3382, - edam:topic_3473, - edam:topic_3474 ; - sc:citation , - "pubmed:31569694" ; - sc:description """Label Self-Advised Support Vector Machine (LSA-SVM)-Automated Classification of Foot Drop Rehabilitation Case Study. - -Stroke represents a major health problem in our society. One of the effects of stroke is foot drop. Foot drop (FD) is a weakness that occurs in specific muscles in the ankle and foot such as the anterior tibialis, gastrocnemius, plantaris and soleus muscles. Foot flexion and extension are normally generated by lower motor neurons (LMN). The affected muscles impact the ankle and foot in both downward and upward motions. One possible solution for FD is to investigate the movement based on the bio signal (myoelectric signal) of the muscles. Bio signal control systems like electromyography (EMG) are used for rehabilitation devices that include foot drop. One of these systems is function electrical stimulation (FES). - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3435, - edam:operation_3454 ; - sc:name "LSA-SVM" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31569694" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3384, @@ -40587,7 +32412,7 @@ Stroke represents a major health problem in our society. One of the effects of s biotools:primaryContact "Mark Mühlau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3382, @@ -40599,7 +32424,7 @@ Stroke represents a major health problem in our society. One of the effects of s sc:url "https://github.com/Cassie94/LSTD/tree/lstd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -40613,7 +32438,7 @@ Stroke represents a major health problem in our society. One of the effects of s sc:url "https://github.com/rajkumar1501/sequence-prediction-using-CNN-and-LSTMs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -40635,7 +32460,7 @@ If you use LSTrAP-Lite in your research, please cite: Inferring biosynthetic and sc:url "https://github.com/mutwil/LSTrAP-Lite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0194, edam:topic_3293, @@ -40649,7 +32474,7 @@ If you use LSTrAP-Lite in your research, please cite: Inferring biosynthetic and sc:url "https://github.com/carlosj-rr/LSx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0610 ; sc:description "Webpage dedicated to the visualization and management of environmental and planktonic data collected at the LTER-MC station in the Gulf of Naples." ; @@ -40661,25 +32486,8 @@ If you use LSTrAP-Lite in your research, please cite: Inferring biosynthetic and "Windows" ; sc:url "http://szn.macisteweb.com/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0208, - edam:topic_0625, - edam:topic_2840, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6924142", - "pubmed:31861982" ; - sc:description """Biological representation of chemicals using latent target interaction profile. - -BACKGROUND:Computational prediction of a phenotypic response upon the chemical perturbation on a biological system plays an important role in drug discovery, and many other applications. Chemical fingerprints are a widely used feature to build machine learning models. However, the fingerprints that are derived from chemical structures ignore the biological context, thus, they suffer from several problems such as the activity cliff and curse of dimensionality. Fundamentally, the chemical modulation of biological activities is a multi-scale process. It is the genome-wide chemical-target interactions that modulate chemical phenotypic responses. Thus, the genome-scale chemical-target interaction profile will more directly correlate with in vitro and in vivo activities than the chemical structure. - -||| HOMEPAGE MISSING!""" ; - sc:name "LTIP" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31861982" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -40694,18 +32502,8 @@ BACKGROUND:Computational prediction of a phenotypic response upon the chemical p sc:name "LTMG" ; sc:url "https://github.com/zy26/LTMGSCA" . - a sc:SoftwareApplication ; - sc:additionalType "Command-line tool" ; - sc:applicationSubCategory edam:topic_0157, - edam:topic_0749, - edam:topic_0780 ; - sc:citation ; - sc:description "parallelization of LTR_FINDER enabling rapid identification of long terminal repeat retrotransposons | A parallel wrapper for LTR_FINDER | ~ ~ ~ Run LTR_FINDER in parallel ~ ~ ~ | This is a Perl wrapper for LTR_FINEDR. All rights reserved to the original author. It's free for non-commercial use. For commercial use, a software agreement is required for LTR_FINDER. LTR_FINDER_parallel is released under open source license CC BY 4.0" ; - sc:name "LTR_FINDER_parallel" ; - sc:url "https://github.com/oushujun/LTR_FINDER_parallel" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2640, @@ -40722,7 +32520,7 @@ BACKGROUND:Computational prediction of a phenotypic response upon the chemical p sc:url "https://github.com/ELELAB/LUAD_LUSC_TCGA_comparison" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3172, @@ -40736,7 +32534,7 @@ BACKGROUND:Computational prediction of a phenotypic response upon the chemical p sc:url "https://CRAN.R-project.org/package=LUCIDus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3050, edam:topic_3168, @@ -40751,7 +32549,7 @@ BACKGROUND:Computational prediction of a phenotypic response upon the chemical p sc:url "https://github.com/tobiasgf/lulu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -40763,7 +32561,7 @@ BACKGROUND:Computational prediction of a phenotypic response upon the chemical p sc:url "https://sysbiowiki.soe.ucsc.edu/lure" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3489 ; sc:citation ; @@ -40776,7 +32574,7 @@ In attuazione del decreto legge D. Lgs n. 33 del 14 marzo 2013, che sancisce..." sc:url "http://dati.lamma.toscana.it" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -40799,44 +32597,8 @@ The manuscript is currently undergoing submission / revision, but this App is av sc:name "La isla de tomato" ; sc:url "https://github.com/mmjulkowska/La_isla_de_tomato" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_3168, - edam:topic_3519 ; - sc:citation , - "pmcid:PMC6742705", - "pubmed:31555590" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'CML', 'Monitoring Chronic Myeloid Leukemia', 'TKI', 'tempt' | How Molecular Tools May Drive Therapeutic Approaches | È una rete che mette in comunicazione i medici ematologi italiani che trattano la Leucemia Mieloide Cronica (CML) con laboratori dove si eseguono esami molto sofisticati di biologia molecolare . Al momento nella rete LabNet LMC operano 55 Laboratori, standardizzati e sottoposti a controlli di qualità; ciascun di essi, grazie alla rete, funziona da riferimento per uno o più Centri di ematologia" ; - sc:featureList edam:operation_3799, - edam:operation_3891 ; - sc:name "LabNet" ; - sc:url "http://www.gimema.it/labnet-cml/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3382, - edam:topic_3474 ; - sc:citation , - "pubmed:31832879" ; - sc:description """multidimensional measures of perceptual and action strength for 40,000 English words. - -: people : research : publications : contact. - -Modality-Specific Norms of Perceptual Strength. - -Sensorimotor information plays a fundamental role in cognition. - -Our modality-specific norms of perceptual strength ask people to rate their experience of particular concepts and properties using the five senses of hearing, sight, touch, taste and smell. - -A complete set of ratings for over 1000 words can be downloaded here""" ; - sc:featureList edam:operation_0337, - edam:operation_3359, - edam:operation_3436 ; - sc:name "Lancaster Sensorimotor Norms" ; - sc:url "https://www.lancaster.ac.uk/psychology/lsnorms/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -40858,7 +32620,7 @@ A complete set of ratings for over 1000 words can be downloaded here""" ; biotools:primaryContact "Anlong Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -40877,17 +32639,8 @@ The 'LandScape' visualization is frequently utilized to provide a systematic ill sc:name "LandScape" ; sc:url "http://bio.oviz.org/demo-project/analyses/landscape" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3382, - edam:topic_3474, - edam:topic_3794 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'Landsat MODIS NOAA AVHRR', 'Ghana', 'MODIS NOAA AVHRR forest', 'MODIS NOAA AVHRR' | Long Term Monitoring of Ghana’s Forest Reserves Using Google Earth Engine | Farm activities continued sand winning operations and the allocation of plots of land to prospective developers in Ghana pose a serious threat to the forest covers and lifespan of the Forest and game reserves. With all the positive add ups to the country from forests, Ghana has lost more than 33.7%(equivalent to 2,500,000 hectares) of its forest, since the early 1990s between 2005 and 2010, the rate of deforestation in Ghana was estimated at 2.19% per annum; the sixth highest deforestation rate globally for that period. This shows how important forest monitoring can be to the forestry commission in Ghana" ; - sc:name "Landsat MODIS NOAA AVHRR forest" ; - sc:url "https://doi.org/10.20944/PREPRINTS201909.0016.V1" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service", "Workbench" ; sc:author , @@ -40910,7 +32663,7 @@ The 'LandScape' visualization is frequently utilized to provide a systematic ill biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3474 ; @@ -40921,7 +32674,7 @@ The 'LandScape' visualization is frequently utilized to provide a systematic ill sc:url "https://lassonet.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -40939,27 +32692,8 @@ Medicago truncatula was proposed, about three decades ago, as a model legume to sc:name "LeGOO" ; sc:url "https://www.legoo.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0128, - edam:topic_3557 ; - sc:citation , - "pmcid:PMC6929407", - "pubmed:31874635" ; - sc:description """local entropy-based alignment of PPI networks to predict conserved modules. - -LePrimAlign: local entropy-based alignment of PPI networks. - -Cross-species analysis of protein-protein interaction (PPI) networks provides an effective means of detecting conserved interaction patterns""" ; - sc:featureList edam:operation_0491, - edam:operation_0495, - edam:operation_2492, - edam:operation_3439 ; - sc:name "LePrimAlign" ; - sc:url "http://web.ecs.baylor.edu/faculty/cho/LePrimAlign" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3384, @@ -40978,7 +32712,7 @@ Cross-species analysis of protein-protein interaction (PPI) networks provides an sc:url "https://www.lead-dbs.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3303, @@ -40998,7 +32732,7 @@ Cross-species analysis of protein-protein interaction (PPI) networks provides an biotools:primaryContact "Sean D. Mooney" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0610, edam:topic_2269 ; @@ -41009,7 +32743,7 @@ Cross-species analysis of protein-protein interaction (PPI) networks provides an sc:url "http://plugins.qgis.org/plugins/LecoS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -41029,26 +32763,21 @@ Legofit is a computer package that uses counts of nucleotide site patterns to es a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -41071,26 +32800,8 @@ Legofit is a computer package that uses counts of nucleotide site patterns to es sc:softwareVersion "11" ; sc:url "https://mines.legumeinfo.org/legumemine" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_3361, - edam:topic_3810 ; - sc:citation , - "pmcid:PMC6743212", - "pubmed:31680708" ; - sc:description """Variability of soybean response to rhizobia inoculant, vermicompost, and a legume-specific fertilizer blend in Siaya County of Kenya. - -Rhizobia inoculation can increase soybean yield, but its performance is influenced by among others soybean genotype, rhizobia strains, environment, and crop management. The objective of the study was to assess soybean response to rhizobia inoculation when grown in soils amended with urea or vermicompost to improve nitrogen levels. Two greenhouse experiments and one field trial at two sites were carried out. The first greenhouse experiment included soils from sixty locations, sampled from smallholder farms in Western Kenya. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Sympal vermicompost Legumefix Sympal urea', 'urea Legumefix Sympal vermicompost Legumefix', 'Legumefix Sympal vermicompost Legumefix', 'Sympal vermicompost Legumefix Sympal'""" ; - sc:featureList edam:operation_3196 ; - sc:name "Legumefix Sympal vermicompost Legumefix Sympal" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31680708" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0091 ; sc:citation , @@ -41108,7 +32819,7 @@ Rhizobia inoculation can increase soybean yield, but its performance is influenc biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0160, @@ -41127,7 +32838,7 @@ LiGIoNs is a profile Hidden Markov Model based method capable of predicting Liga sc:url "http://bioinformatics.biol.uoa.gr/ligions/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, @@ -41148,24 +32859,8 @@ LiGIoNs is a profile Hidden Markov Model based method capable of predicting Liga biotools:primaryContact "Mika Gustafsson", "Rasmus Magnusson" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3324, - edam:topic_3400, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6805937", - "pubmed:31641162" ; - sc:description """A Machine Learning Algorithm for Early Detection of Septic Shock. - -Sepsis is a major health concern with global estimates of 31.5 million cases per year. Case fatality rates are still unacceptably high, and early detection and treatment is vital since it significantly reduces mortality rates for this condition. Appropriately designed automated detection tools have the potential to reduce the morbidity and mortality of sepsis by providing early and accurate identification of patients who are at risk of developing sepsis. In this paper, we present "LiSep LSTM"; a Long Short-Term Memory neural network designed for early identification of septic shock. LSTM networks are typically well-suited for detecting long-term dependencies in time series data. LiSep LSTM was developed using the machine learning framework Keras with a Google TensorFlow back end. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3439 ; - sc:name "LiSep LSTM" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31641162" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3050, edam:topic_3174, @@ -41187,7 +32882,7 @@ Sepsis is a major health concern with global estimates of 31.5 million cases per biotools:primaryContact "Illyoung Choi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3573 ; @@ -41204,14 +32899,13 @@ Sepsis is a major health concern with global estimates of 31.5 million cases per a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:name "Taxonomy" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_3050, @@ -41233,7 +32927,7 @@ Sepsis is a major health concern with global estimates of 31.5 million cases per sc:url "http://lifemap.univ-lyon1.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3673 ; sc:citation , @@ -41250,18 +32944,8 @@ Sepsis is a major health concern with global estimates of 31.5 million cases per sc:url "https://github.com/guofei-tju/LightCpG" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2258, - edam:topic_3343, - edam:topic_3474 ; - sc:citation , - "pubmed:31560206" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | An Effective and Scalable Algorithm for Prediction of Chemical Toxicity-Application to the Tox21 and Mutagenicity Data Sets | Machine learning algorithms have attained widespread use in assessing the potential toxicities of pharmaceuticals and industrial chemicals because of their faster speed and lower cost compared to experimental bioassays. Gradient boosting is an effective algorithm that often achieves high predictivity, but historically the relative long computational time limited its applications in predicting large compound libraries or developing in silico predictive models that require frequent retraining. LightGBM, a recent improvement of the gradient boosting algorithm, inherited its high predictivity but resolved its scalability and long computational time by adopting a leaf-wise tree growth strategy and introducing novel techniques" ; - sc:name "LightGBM" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31560206" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -41284,7 +32968,7 @@ Sepsis is a major health concern with global estimates of 31.5 million cases per biotools:primaryContact "Christopher Steele" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -41308,18 +32992,18 @@ Sepsis is a major health concern with global estimates of 31.5 million cases per a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2978" ; - sc:name "Reaction data" ; - sc:sameAs "http://edamontology.org/data_2978" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2978" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Reaction data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0121, @@ -41345,14 +33029,13 @@ Sepsis is a major health concern with global estimates of 31.5 million cases per a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1235" ; - sc:name "Sequence cluster" ; - sc:sameAs "http://edamontology.org/data_1235" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1235" ; + sc:name "Sequence cluster" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -41375,7 +33058,7 @@ Sepsis is a major health concern with global estimates of 31.5 million cases per biotools:primaryContact "Söding Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3512, @@ -41391,7 +33074,7 @@ Sepsis is a major health concern with global estimates of 31.5 million cases per sc:url "http://linearfold.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0780 ; @@ -41415,7 +33098,7 @@ Laura M Zingaretti, Gilles Renand, Diego P Morgavi, Yuliaxis Ramayo-Caldas, Link sc:url "https://github.com/lauzingaretti/LinkHD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0601, @@ -41433,7 +33116,7 @@ Abstract Phosphorylation of specific substrates by protein kinases is a key cont sc:url "https://LinkPhinder.insight-centre.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, @@ -41455,7 +33138,7 @@ Abstract Phosphorylation of specific substrates by protein kinases is a key cont biotools:primaryContact "Xiaohua Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3325 ; @@ -41473,7 +33156,7 @@ Abstract Phosphorylation of specific substrates by protein kinases is a key cont sc:url "http://bioinformatics.ua.pt/linked-registries-app/#" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0153, @@ -41498,7 +33181,7 @@ Matlab Script for automated LC-MS/MS lipid analysis.""" ; sc:url "https://github.com/MarJakubec/LipMat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -41513,7 +33196,7 @@ Matlab Script for automated LC-MS/MS lipid analysis.""" ; sc:url "https://led.biocatnet.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0821, @@ -41534,7 +33217,7 @@ Matlab Script for automated LC-MS/MS lipid analysis.""" ; biotools:primaryContact "Thomas C. A. Hitch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0769, @@ -41554,7 +33237,7 @@ Questions: zhouzw AT sioc.ac.cn, jiangzhu AT sioc.ac.cn. sc:url "http://imms.zhulab.cn/LipidIMMS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0153, edam:topic_3337, @@ -41574,7 +33257,7 @@ Questions: zhouzw AT sioc.ac.cn, jiangzhu AT sioc.ac.cn. biotools:primaryContact "M Isabel Alcoriza-Balaguer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0769, @@ -41599,7 +33282,7 @@ Questions: zhouzw AT sioc.ac.cn, jiangzhu AT sioc.ac.cn. "Jeremy Koelmel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0089, @@ -41619,33 +33302,8 @@ Questions: zhouzw AT sioc.ac.cn, jiangzhu AT sioc.ac.cn. biotools:primaryContact "Geremy Clair", "Jennifer E. Kyle" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3053, - edam:topic_3068, - edam:topic_3474 ; - sc:citation "pubmed:31797587" ; - sc:description """Genetic Literature Recommendation Guided by Human Explanations. - -As genetic sequencing costs decrease, the lack of clinical interpretation of variants has become the bottleneck in using genetics data. A major rate limiting step in clinical interpretation is the manual curation of evidence in the genetic literature by highly trained biocurators. What makes curation particularly time-consuming is that the curator needs to identify papers that study variant pathogenicity using different types of approaches and evidences-e.g. biochemical assays or case control analysis. In collaboration with the Clinical Genomic Resource (ClinGen)-the flagship NIH program for clinical curation-we propose the first machine learning system, LitGen, that can retrieve papers for a particular variant and filter them by specific evidence types used by curators to assess for pathogenicity. LitGen uses semi-supervised deep learning to predict the type of evi+dence provided by each paper. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_2422, - edam:operation_3197, - edam:operation_3675 ; - sc:name "LitGen" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31797587" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3399, - edam:topic_3418 ; - sc:citation , - "pubmed:31376074" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'ANNIS', 'corpus' | A richly annotated longitudinal corpus of German texts written by primary school children | Welcome to the Litkey Corpus, a longitudinal corpus of picture story descriptions produced by German primary school children from grades 2 to 4. Litkey is short for “Literacy as the key to social participation: Psycholinguistic perspectives on orthography instruction and literacy acquisition” and refers to the research project in which the corpus was created. Here you can find a general description of the aims of the project and the four project strands that are involved. In the strand Corpus Analysis, we investigate the relationship between spelling errors of beginning writers and the orthographic properties of words based on the Litkey Corpus. You can find out more about the strand Corpus Analysis here" ; - sc:name "Litkey Corpus" ; - sc:url "https://www.linguistics.rub.de/litkeycorpus/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -41670,7 +33328,7 @@ e.g. NEAT1, TP53, hsa-let-7b-5p, rs3825071, COSN13341324, BRCA""" ; sc:url "http://www.bio-bigdata.net/LnCeVar/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -41690,7 +33348,7 @@ e.g. NEAT1, TP53, hsa-let-7b-5p, rs3825071, COSN13341324, BRCA""" ; biotools:primaryContact "Huaiqiu Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0634, @@ -41702,27 +33360,8 @@ e.g. NEAT1, TP53, hsa-let-7b-5p, rs3825071, COSN13341324, BRCA""" ; sc:name "LncBook" ; sc:url "http://bigd.big.ac.cn/lncbook" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0634, - edam:topic_0659, - edam:topic_2640, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6886169", - "pubmed:31787106" ; - sc:description """a computation model for LncRNA-disease association prediction based on multiple biological datasets. - -BACKGROUND:Over the past decades, a large number of long non-coding RNAs (lncRNAs) have been identified. Growing evidence has indicated that the mutation and dysregulation of lncRNAs play a critical role in the development of many complex human diseases. Consequently, identifying potential disease-related lncRNAs is an effective means to improve the quality of disease diagnostics and treatment, which is the motivation of this work. Here, we propose a computational model (LncDisAP) for potential disease-related lncRNA identification based on multiple biological datasets. First, the associations between lncRNA and different data sources are collected from different databases. With these data sources as dimensions, we calculate the functional associations between lncRNAs by the recommendation strategy of collaborative filtering. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3435, - edam:operation_3439 ; - sc:name "LncDisAP" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31787106" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -41745,7 +33384,7 @@ Quick Search, start typing keywords, press ESC to close suggestions""" ; sc:url "http://biocc.hrbmu.edu.cn/LncTarD/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0659, @@ -41768,7 +33407,7 @@ Quick Search, start typing keywords, press ESC to close suggestions""" ; sc:url "http://bioinfo.ibp.ac.cn/LncVar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3170, @@ -41790,7 +33429,7 @@ Quick Search, start typing keywords, press ESC to close suggestions""" ; biotools:primaryContact "Luigi Faino" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0140, @@ -41809,36 +33448,23 @@ Are you sure you want to delete this graph?""" ; sc:name "LocPL" ; sc:url "http://graphspace.org/graphs/?query=tags:LocPL" . - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31560929" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'whisker', 'whisker gait', 'gait', 'footage' | Quantifying rodent exploratory, sensory and motor behaviours | BACKGROUND:Previous studies have demonstrated that analysing whisker movements and locomotion allows us to quantify the behavioural consequences of sensory, motor and cognitive deficits in rodents. Independent whisker and feet trackers exist but there is no fully-automated, open-source software and hardware solution, that measures both whisker movements and gait. NEW METHOD:We present the LocoWhisk arena and new accompanying software (ARTv2) that allows the automatic detection and measurement of both whisker and gait information from high-speed video footage" ; - sc:featureList edam:operation_3443 ; - sc:name "LocoWhisk" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31560929" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -41862,7 +33488,7 @@ Are you sure you want to delete this graph?""" ; sc:url "http://locustmine.org:8080/locustmine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3512, @@ -41882,20 +33508,8 @@ Are you sure you want to delete this graph?""" ; biotools:primaryContact "Ammar Tareen", "Justin Kinney" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0625, - edam:topic_0634 ; - sc:citation , - "pmcid:PMC6706235", - "pubmed:31463010" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Suicidal selection', 'PCD', 'kin', 'kin nonkin' | Programmed cell death can evolve in unicellular organisms due solely to kin selection | SuicidalAltruismDissertation" ; - sc:featureList edam:operation_3196 ; - sc:name "LongTerm" ; - sc:url "https://github.com/anyaevostinar/SuicidalAltruismDissertation/tree/master/LongTerm" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_2885 ; @@ -41913,7 +33527,7 @@ Are you sure you want to delete this graph?""" ; biotools:primaryContact "Hani Z. Girgis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0632, @@ -41936,7 +33550,7 @@ Loxodonta Localizer maps the localities from which mitochondrial DNA sequences h sc:url "http://www.loxodontalocalizer.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0121, @@ -41972,26 +33586,21 @@ LungMAP human and mouse ontologies reference page provides links to the LungMAP a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -42015,7 +33624,7 @@ LungMAP human and mouse ontologies reference page provides links to the LungMAP sc:url "https://mines.legumeinfo.org/lupinmine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3382, @@ -42029,7 +33638,7 @@ Here we present an Android mobile application (app) for the identification of Br sc:url "https://play.google.com/store/apps/details?id=max.com.lutzodexhl=pt_BR." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -42050,7 +33659,7 @@ FileUtil.pm - perl helper module for loading files reformatFasta.pl - perl scrip sc:url "https://github.com/Juliacvk/LuxR_H-NS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3068 ; sc:citation , @@ -42066,7 +33675,7 @@ This work presents a new user-friendly lyophilization simulation and process opt sc:url "https://sites.google.com/view/rgdart/Research/lyopronto-lyophilization-processoptimization-tool" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -42081,7 +33690,7 @@ This work presents a new user-friendly lyophilization simulation and process opt sc:url "https://github.com/uqzqiao/M-GCTA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, @@ -42100,7 +33709,7 @@ M-TRACK is a live cell imaging analysis tool""" ; sc:url "https://github.com/opnumten/M-TRACK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0084, @@ -42124,7 +33733,7 @@ M-TRACK is a live cell imaging analysis tool""" ; biotools:primaryContact "Tal Pupko" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -42144,7 +33753,7 @@ A large number of single-cell RNA sequencing (scRNA-seq) data set was recently g sc:url "https://github.com/zy26/M3S" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -42159,7 +33768,7 @@ Genotyping of Mycobacterium avium subsp. paratuberculosis (Map) is an indispensa sc:url "http://mac-inmv.tours.inra.fr/0_macinmv/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0176, @@ -42184,7 +33793,7 @@ fep_config - contains everything necessary to run the dual topology fep.""" ; sc:url "https://github.com/clauswilke/MACV_SMD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0108, @@ -42209,7 +33818,7 @@ MADOKA, a webserver features on searching similar protein structures by aligning sc:url "http://madoka.denglab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3168, @@ -42224,21 +33833,27 @@ MADOKA, a webserver features on searching similar protein structures by aligning a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , , , - ; + , + , + , + "pmcid:PMC3603318", + "pmcid:PMC548345", + "pubmed:15661851", + "pubmed:23329690" ; sc:description "MAFFT (Multiple Alignment using Fast Fourier Transform) is a high speed multiple sequence alignment program." ; sc:featureList edam:operation_0492 ; sc:isAccessibleForFree true ; @@ -42251,7 +33866,7 @@ MADOKA, a webserver features on searching similar protein structures by aligning sc:url "http://mafft.cbrc.jp/alignment/server/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0084, @@ -42277,14 +33892,14 @@ MADOKA, a webserver features on searching similar protein structures by aligning a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -42299,7 +33914,7 @@ MADOKA, a webserver features on searching similar protein structures by aligning sc:url "http://www.ebi.ac.uk/Tools/webservices/services/msa/mafft_rest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -42321,7 +33936,7 @@ Merge A ffected G enes into I ntegrated networks.""" ; sc:url "https://github.com/jchow32/magi-s" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0196, @@ -42340,7 +33955,7 @@ Microbial species play important roles in different environments and the product sc:url "http://mago.fe.uni-lj.si" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_2640, @@ -42357,7 +33972,7 @@ MAGOS: Model-based Adaptive Grouping of Subclones""" ; sc:url "https://github.com/liliulab/magos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0659, @@ -42378,20 +33993,8 @@ MAGOS: Model-based Adaptive Grouping of Subclones""" ; sc:url "https://vanopijnenlab.github.io/MAGenTA/" ; biotools:primaryContact "Tim van Opijnen" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3304, - edam:topic_3315, - edam:topic_3474 ; - sc:citation , - "pubmed:31362282" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | an ICA-based method for source separation in a low-channel EEG recording | OBJECTIVE:The paper aims to present a method that enables the application of independent component analysis (ICA) to a low-channel EEG recording. The idea behind the method (called moving average ICA or MAICA) is to extend the original low-sensor matrix of signals by applying a set of zero-phase moving average filters to each of the recorded signals. APPROACH:The paper discusses the theoretical background of the MAICA algorithm and verifies its usefulness under three exemplary settings: (i) a pure mathematic system composed of ten source sinusoids; (ii) real EEG data recorded from 64 channels; (iii) real EEG data recorded from five subjects during 200 trials with motor imagery brain-computer interface" ; - sc:featureList edam:operation_2422, - edam:operation_3891 ; - sc:name "MAICA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31362282" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API", "Web service" ; @@ -42414,20 +34017,8 @@ MAGOS: Model-based Adaptive Grouping of Subclones""" ; sc:url "http://majiq.biociphers.org/majiq-spel" ; biotools:primaryContact "Yoseph Barash" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3172, - edam:topic_3382, - edam:topic_3520 ; - sc:citation , - "pubmed:31451764" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'transmission-mode', 't-MALDI-2', 'post-ionization', 't-MALDI-MSI' | Transmission-mode MALDI-2 mass spectrometry imaging of cells and tissues at subcellular resolution | Platform for metabolite annotation of imaging mass spectrometry data | Your web browser (Chrome 68) is out of date. Update your browser for more security, speed and the best experience on this site. Update browser Ignore | We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies. Learn more" ; - sc:featureList edam:operation_3553, - edam:operation_3704 ; - sc:name "MALDI-2" ; - sc:url "https://metaspace2020.eu/project/Niehaus-2019-Transmission-MALDI-2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3334, @@ -42447,7 +34038,7 @@ Machine Learning in NeuroImaging (MALINI) is a MATLAB-based toolbox used for fea sc:url "https://github.com/pradlanka/malini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0602, @@ -42466,28 +34057,8 @@ Enzyme recruitment is a fundamental evolutionary driver of modern metabolism. We sc:name "MANET" ; sc:url "http://manet.illinois.edu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3070, - edam:topic_3335 ; - sc:citation , - "pubmed:31493513" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > NAME (MANTA) SIMILAR TO (PUB. DIFFERENT) bio.tools/manta_sv (Manta), bio.tools/manta (manta) | > CORRECT NAME OF TOOL COULD ALSO BE 'Maastricht Antiarrhythmic Drug Evaluator', 'AADs' | A computational tool for better understanding of antiarrhythmic drugs | Cardiac arrhythmias are a global health burden, contributing significantly to morbidity and mortality worldwide. Despite technological advances in catheter ablation therapy, antiarrhythmic drugs (AADs) remain a cornerstone for the management of cardiac arrhythmias. Experimental and translational studies have shown that commonly used AADs exert multiple effects in the heart, the manifestation of which strongly depends on the exact experimental or clinical conditions. This diversity makes the optimal clinical application of AADs challenging" ; - sc:name "MANTA_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31493513" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2885, - edam:topic_3360, - edam:topic_3379 ; - sc:citation , - "pubmed:31502149" ; - sc:description "> LOW CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/mantis | > CORRECT NAME OF TOOL COULD ALSO BE 'MSI-H+', 'NGS-powered', 'microsatellite' | Detection of Microsatellite Instability Biomarkers via Next-Generation Sequencing | Microsatellite Analysis for Normal-Tumor InStability | MANTIS (Microsatellite Analysis for Normal-Tumor InStability) is a program developed for detecting microsatellite instability from paired-end BAM files. To perform analysis, the program needs a tumor BAM and a matched normal BAM file (produced using the same pipeline) to determine the instability score between the two samples within the pair. Longer reads (ideally, 100 bp or longer) are recommended, as shorter reads are unlikely to entirely cover the microsatellite loci, and will be discarded after failing the quality control filters" ; - sc:license "GPL-3.0" ; - sc:name "MANTIS_autogenerated" ; - sc:url "https://github.com/OSU-SRLab/MANTIS" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0108, @@ -42508,7 +34079,7 @@ MAP (Model-based Analysis of Proteomic data), is designed to statistically compa sc:url "http://bioinfo.sibs.ac.cn/shaolab/MAP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3169, @@ -42530,7 +34101,7 @@ MAP (Model-based Analysis of Proteomic data), is designed to statistically compa "Ming Hu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3500, @@ -42547,7 +34118,7 @@ Fast object tracking in real time allows convenient tracking of very large numbe sc:url "https://github.com/de-Bivort-Lab/margo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -42567,7 +34138,7 @@ MARIA is a machine learning tool developed by Chen et al. to predict likelihood sc:url "https://maria.stanford.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0634, @@ -42591,7 +34162,7 @@ MARIA is a machine learning tool developed by Chen et al. to predict likelihood "Mario Looso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -42616,18 +34187,18 @@ To load the package, you can use the command:""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3834" ; + sc:name "Peptide mass fingerprint" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3681" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -42655,7 +34226,7 @@ To load the package, you can use the command:""" ; biotools:primaryContact "see publication" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0736, @@ -42676,21 +34247,8 @@ MASSIF is a novel method to improve the performance of existing tool that link m sc:name "MASSIF" ; sc:url "https://github.com/SchulzLab/MASSIF" . - a sc:SoftwareApplication ; - sc:citation ; - sc:description """Assessment of the DRT System Based on an Optimal Routing Strategy. - -Demand responsive transport (DRT) is operated according to flexible routes, dispatch intervals, and dynamic demand, is attracting a lot of attention. The biggest characteristic of DRT service is that the vehicle routes and schedules are operated optimally based on real-time travel requests of using passengers without fixed operating schedules. Today, the smart-city era has arrived, particularly because of progress in the wireless communications technology and technology related to location information service and real-time passenger demands and requests, and services that change the vehicles’ operating schedules in real-time according to dynamic demand have attracted more attention. - -||| HOMEPAGE BROKEN!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'DRT'""" ; - sc:featureList edam:operation_3891 ; - sc:name "MATSim" ; - sc:url "http://wwww.matsim.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -42707,40 +34265,8 @@ Abstract Background Human genomes are diploid, which means they have two homolog sc:name "MAtCHap" ; sc:url "https://sourceforge.net/projects/matchap/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3418, - edam:topic_3419, - edam:topic_3421 ; - sc:citation , - "pubmed:31400766" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'UAMC Dhaka Bangladesh', 'Perceptions medical students regarding community-based teaching experiences', 'rural', 'rural health' | Perceptions of medical students regarding community-based teaching experiences | Bangladesh Medical & Dental Council | We help to protect patients and improve medical education and practice in the Bangladesh by setting standards for students and doctors. We support them in achieving and exceeding those standards, and take action when they are not met | WELCOME TO OFFICIAL WEBSITE OF BANGLADESH MEDICAL & DENTAL COUNCIL | 25/10/2019 - @notice Result of Registration Qualifying Exam (MBBS & BDS) of October, 2019 have been published" ; - sc:name "MBBS" ; - sc:url "http://bmdc.org.bd/mbbs-curriculumupdate-2012/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0780, - edam:topic_3399, - edam:topic_3419 ; - sc:citation , - "pmcid:PMC6738673", - "pubmed:31501097" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE BROKEN! | the accessibility and implementation of an effective depression relapse prevention programme in UK NHS services | OBJECTIVES:Mindfulness-based cognitive therapy (MBCT) is an evidence-based approach for people at risk of depressive relapse to support their long-term recovery. However, despite its inclusion in guidelines, there is an 'implementation cliff'. The study objective was to develop a better explanation of what facilitates MBCT implementation. SETTING:UK primary and secondary care mental health services. DESIGN, PARTICIPANTS AND METHODS:A national two-phase, multi-method qualitative study was conducted, which was conceptually underpinned by the Promoting Action on Research Implementation in Health Services framework. Phase I involved interviews with stakeholders from 40 service providers about current provision of MBCT. Phase II involved 10 purposively sampled case studies to obtain a more detailed understanding of MBCT implementation" ; - sc:name "MBCT" ; - sc:url "http://www.implementing-mbct.com/).43" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3384, - edam:topic_3399, - edam:topic_3419 ; - sc:citation , - "pubmed:31526407" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'protect-exeter', 'self-reported', 'self-reported informant-reported MBI-C', 'MBI' | Profile of mild behavioral impairment and factor structure of the Mild Behavioral Impairment Checklist in cognitively normal older adults | OBJECTIVES:In this large population study, we set out to examine the profile of mild behavioral impairment (MBI) by using the Mild Behavioral Impairment Checklist (MBI-C) and to explore its factor structure when employed as a self-reported and informant-rated tool. DESIGN:This was a population-based cohort study. SETTING:Participants were recruited from the Platform for Research Online to Investigate Genetics and Cognition in Aging study (https: www.protect-exeter.org.uk). PARTICIPANTS:A total of 5,742 participant-informant dyads participated in the study. MEASUREMENTS:Both participants and informants completed the MBI-C" ; - sc:featureList edam:operation_3436 ; - sc:name "MBI-C" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31526407" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0621, @@ -42760,7 +34286,7 @@ bionomics.R: takes output generated by peridomestic-simulation.R and generates o sc:url "https://github.com/dd-harp/MBITES/tree/v1.0/MBITES" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -42799,39 +34325,8 @@ Molecular Breeding Knowledgebase (MBKbase) is an integrated database for populat sc:softwareHelp ; sc:url "http://www.mbkbase.org/rice" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3376, - edam:topic_3403 ; - sc:citation , - "pmcid:PMC6747305", - "pubmed:31450652" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'M-ACO', 'MSSP', 'Morehouse Choice Accountable Care Organization Education System', 'Medicare beneficiaries' | Morehouse Choice Accountable Care Organization and Education System (MCACO-ES) | Accountable Care Organizations (ACOs) seek sustainable innovation through the testing of new care delivery methods that promote shared goals among value-based health care collaborators. The Morehouse Choice Accountable Care Organization and Education System (MCACO-ES), or (M-ACO) is a physician led integrated delivery model participating in the Medicare Shared Savings Program (MSSP) offered through the Centers for Medicare and Medicaid Services (CMS) Innovation Center" ; - sc:featureList edam:operation_0337 ; - sc:name "MCACO-ES" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31450652" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0209, - edam:topic_2258, - edam:topic_3388, - edam:topic_3407, - edam:topic_3474 ; - sc:citation , - "pubmed:31878856" ; - sc:description """Markov Chain Molecular Descriptors Calculator for Medicinal Chemistry. - -BACKGROUND:Cheminformatics models are able to predict different outputs (activity, property, chemical reactivity) in single molecules or complex molecular systems (catalyzed organic synthesis, metabolic reactions, nanoparticles, etc.). OBJECTIVE:Cheminformatics prediction of complex catalytic enantioselective reactions is a major goal in organic synthesis research and chemical industry. Markov Chain Molecular Descriptors (MCDs) have been largely used to solve Cheminformatics problems. There are different types of Markov chain descriptors such as Markov-Shannon entropies (Shk), Markov Means (Mk), Markov Moments (πk), etc. However, there are other possible MCDs that have not been used before. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'MCDs', 'MCMD-based', 'BACKGROUND:Cheminformatics', 'Cheminformatics'""" ; - sc:featureList edam:operation_3659 ; - sc:name "MCDCalc" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31878856" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2830, @@ -42846,7 +34341,7 @@ BACKGROUND:Cheminformatics models are able to predict different outputs (activit sc:url "http://www.bisb.uni-bayreuth.de/index.php?page=downloads" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0749, @@ -42866,7 +34361,7 @@ added a link to the publication · 92cb2e86. sc:url "https://gitlab.sysbio.cytogen.ru/academiq/mcot-kernel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, @@ -42881,13 +34376,13 @@ added a link to the publication · 92cb2e86. sc:url "https://github.com/RezaMash/MCS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "This software provides a clustering module for viewing the relationship of colinear segments in multiple genomes (or heavily redundant genomes). It takes the predicted pairwise segments from dynamic programming (DAGchainer in particular) and then try to build consensus segments from a set of related, overlapping segments." ; sc:name "MCScan" ; sc:url "https://github.com/tanghaibao/mcscan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -42907,7 +34402,7 @@ Methods for investigating DNA methylation nowadays either require a reference ge sc:url "https://bitbucket.org/capemaster/mcseed/src/master/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_2640, @@ -42923,7 +34418,7 @@ Methods for investigating DNA methylation nowadays either require a reference ge sc:url "https://github.com/elkebir-group/MCT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3068, @@ -42945,7 +34440,7 @@ MD-LOVIs (acronym for Molecular Descriptors from LOcal Vertex Invariants and Rel sc:url "http://tomocomd.com/md-lovis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -42969,7 +34464,7 @@ miRNA-disease causal association predictor. sc:url "https://github.com/cuppeanuts/MDCAP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0154, @@ -42989,7 +34484,7 @@ miRNA-disease causal association predictor. sc:url "http://csb.cse.yzu.edu.tw/MDDGlutar/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2258, @@ -43013,7 +34508,7 @@ Visit our documentation to learn details about installation, example workflow an sc:url "https://github.com/rinikerlab/mdfptools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0176, @@ -43037,18 +34532,18 @@ The idea behind MDMS design is that the beginnings should be easy - not exhausti a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3917" ; - sc:name "Count matrix" ; - sc:sameAs "http://edamontology.org/data_3917" ] ; + sc:additionalType "http://edamontology.org/data_3917" ; + sc:encodingFormat "http://edamontology.org/format_3746" ; + sc:name "Count matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ], + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Mathematical model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3905" ; - sc:name "Histogram" ; - sc:sameAs "http://edamontology.org/data_3905" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3905" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Histogram" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0092, @@ -43076,16 +34571,8 @@ The idea behind MDMS design is that the beginnings should be easy - not exhausti sc:url "https://github.com/beatrizgj/MDPbiome" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31437891" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | A Configurable Metadata Matching Toolbox | Metadata matching is an important step towards integrating heterogeneous healthcare data and facilitating secondary use. MDRCupid supports this step by providing a configurable metadata matching toolbox incorporating lexical and statistical matching approaches. The matching configuration can be adapted to different purposes by manually selecting algorithms and their weights or by using the optimization module with corresponding training data. The toolbox can be accessed as a web service via programming or user interface. For every selected metadata element, the metadata elements with the highest similarity scores are presented to the user and can be manually confirmed via the user interface, while the programming interface uses a similarity threshold to select corresponding elements. An HL7 FHIR ConceptMap is used to save the matches" ; - sc:featureList edam:operation_2422 ; - sc:name "MDRCupid" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31437891" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3170, @@ -43101,33 +34588,8 @@ The idea behind MDMS design is that the beginnings should be easy - not exhausti sc:name "MDiNE" ; sc:url "https://github.com/kevinmcgregor/mdine" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3384, - edam:topic_3794 ; - sc:citation , - "pmcid:PMC6736617", - "pubmed:31551857" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'emotion', 'Musical Emotion', 'musical', 'Musical Emotion Discrimination Task' | A New Measure for Assessing the Ability to Discriminate Emotions in Music | Previous research has shown that levels of musical training and emotional engagement with music are associated with an individual's ability to decode the intended emotional expression from a music performance. The present study aimed to assess traits and abilities that might influence emotion recognition, and to create a new test of emotion discrimination ability. The first experiment investigated musical features that influenced the difficulty of the stimulus items (length, type of melody, instrument, target- comparison emotion) to inform the creation of a short test of emotion discrimination. The second experiment assessed the contribution of individual differences measures of emotional and musical abilities as well as psychoacoustic abilities" ; - sc:name "MEDT" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31551857" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3384 ; - sc:citation ; - sc:description """Comparison of beamformer implementations for MEG source localization. - -Abstract Beamformers are applied for estimating spatiotemporal characteristics of neuronal sources underlying measured MEG EEG signals. Several MEG analysis toolboxes include an implementation of a linearly constrained minimum-variance (LCMV) beamformer. However, differences in implementations and in their results complicate the selection and application of beamformers and may hinder their wider adoption in research and clinical use. Additionally, combinations of different MEG sensor types (such as magnetometers and planar gradiometers) and application of preprocessing methods for interference suppression, such as signal space separation (SSS), can affect the results in different ways for different implementations. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'LCMV', 'beamformer', 'LCMV beamformer', 'Beamformers'""" ; - sc:featureList edam:operation_0337, - edam:operation_3435 ; - sc:name "MEG" ; - sc:url "https://doi.org/10.1101/795799" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0602 ; @@ -43140,7 +34602,7 @@ Abstract Beamformers are applied for estimating spatiotemporal characteristics o sc:url "http://bioweb.cbm.uam.es/software/MEPSAnd/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0625, @@ -43158,7 +34620,7 @@ Molecular epidemiology uses genetic information from bacterial isolates to shed sc:url "https://github.com/zaandahl/mercat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -43175,7 +34637,7 @@ Molecular epidemiology uses genetic information from bacterial isolates to shed sc:url "https://github.com/soedinglab/merlot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0736, @@ -43198,7 +34660,7 @@ Molecular epidemiology uses genetic information from bacterial isolates to shed biotools:primaryContact "Alejandro Giorgetti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0623, @@ -43212,7 +34674,7 @@ Molecular epidemiology uses genetic information from bacterial isolates to shed sc:url "http://prodata.swmed.edu/MESSA/MESSA.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """Despite the increasing importance of non-targeted metabolomics to answer various life science questions, extracting biochemically relevant information from metabolomics spectral data is still an incompletely solved problem. @@ -43225,7 +34687,7 @@ partial identification of unknown unknowns.""" ; sc:url "https://messar.biodatamining.be" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -43244,31 +34706,8 @@ partial identification of unknown unknowns.""" ; sc:url "https://github.com/mbanf/METACLUSTER" ; biotools:primaryContact "EducatedGuess.ai" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_2885, - edam:topic_3335 ; - sc:citation , - "pubmed:31567371" ; - sc:description """Interaction between eNOS gene polymorphism and current smoking on susceptibility to coronary heart disease in Chinese people. - -Programa d'Analítica de Dades en Oncologia. - -Programa d’Analítica de Dades en Oncologia. - -El Programa d’Analítica de Dades en Oncologia (PADO) és un grup de recerca que pretén identificar i validar biomarcadors moleculars en càncer, tant de diagnòstic i pronòstic, com de resposta a tractament. També col·labora amb altres grups de recerca de la institució en projectes relacionats amb biomarcadors de el càncer. - -Centra la seva recerca en l’epidemiologia genètica, el diagnòstic molecular de el càncer, en els marcadors de pronòstic i predicció de resposta terapèutica i en la identificació de noves dianes terapèutiques. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'SNPs' (bio.tools/SNPs)""" ; - sc:featureList edam:operation_0308, - edam:operation_3196, - edam:operation_3659 ; - sc:name "METHODS:SNPstats" ; - sc:url "http://bioinfo.iconcologia.net/SNPstats" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0199, @@ -43281,35 +34720,8 @@ Centra la seva recerca en l’epidemiologia genètica, el diagnòstic molecular sc:name "MEXCOwalk" ; sc:url "https://github.com/abu-compbio/MEXCOwalk" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0593, - edam:topic_0780 ; - sc:citation , - "pubmed:31428965" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | Removal of aqueous fluoroquinolones with multi-functional activated carbon (MFAC) derived from recycled long-root Eichhornia crassipes | Fluoroquinolones (FQs) occur broadly in natural media due to its extensive use, and it has systematic effects on our ecosystem and human immunity. In this study, long-root Eichhornia crassipes was reclaimed as a multi-functional activated carbon (MFAC) to remove fluoroquinolones (FQs) from contaminated water. To get insight into the adsorption mechanism, multiple measurements, including FTIR and XPS analyses, were employed to investigate the adsorption processes of ciprofloxacin and norfloxacin as well as the experiments of effect of exogenous factors on adsorption performances. The results confirmed that the adsorption of FQs by MFAC was mainly attributed to the electrostatic interaction, hydrogen bond interaction, and electronic-donor-acceptor (EDA) interaction" ; - sc:featureList edam:operation_3629 ; - sc:name "MFAC" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31428965" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0605, - edam:topic_2269, - edam:topic_3300 ; - sc:citation , - "pmcid:PMC6818956", - "pubmed:31661497" ; - sc:description """Robust, real-time generic detector based on a multi-feature probabilistic method. - -Robust, real-time event detection from physiological signals acquired during long-term ambulatory monitoring still represents a major challenge for highly-artifacted signals. In this paper, we propose an original and generic multi-feature probabilistic detector (MFPD) and apply it to real-time QRS complex detection under noisy conditions. The MFPD method calculates a binary Bayesian probability for each derived feature and makes a centralized fusion, using the Kullback-Leibler divergence. The method is evaluated on two ECG databases: 1) the MIT-BIH arrhythmia database from Physionet containing clean ECG signals, 2) a benchmark noisy database created by adding noise recordings of the MIT-BIH noise stress test database, also from Physionet, to the MIT-BIH arrhythmia database. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3435, - edam:operation_3695 ; - sc:name "MFPD" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31661497" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0769, @@ -43340,7 +34752,7 @@ workflow and resource management system for bioinformatics data analysis.""" ; sc:url "https://explorer.mg-rast.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -43363,7 +34775,7 @@ workflow and resource management system for bioinformatics data analysis.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3297, @@ -43390,26 +34802,28 @@ We recommend to create a Python virtual installation enviroment for MGLEX. In or sc:url "http://pypi.python.org/pypi/mglex/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2885 ; - sc:citation ; - sc:description """An R package for fitting Gaussian Mixture Models on Incomplete Genomics Data. - -Missingness Aware Gaussian Mixture Models. - -Selecting the Number of Clusters. - -This package implements clustering of multivariate normal random vectors with missing elements. Clustering is achieved by fitting a Gaussian Mixture Model (GMM). The parameters are estimated by maximum likelihood, using the Expectation Maximization (EM) algorithm. Our implementation extends existing methods by allowing for missingness in the input data. The EM algorithm addresses missingness of both the cluster assignments and the vector components. The output includes the marginal cluster membership probabilities; the mean and covariance of each cluster; the density of each mixture component evaluated on the observations; the posterior probabilities of cluster membership; maximum a posteriori cluster assignments; and a completed version of the input data, with missing values replaced by their posterior expectations""" ; + sc:citation , + "pmcid:PMC9158227", + "pubmed:35650523" ; + sc:description "Parameter estimation and classification for Gaussian Mixture Models (GMMs) in the presence of missing data." ; sc:featureList edam:operation_3432, edam:operation_3435, edam:operation_3557 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; sc:name "MGMM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; sc:url "https://github.com/zrmacc/MGMM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0102, @@ -43424,7 +34838,7 @@ This package implements clustering of multivariate normal random vectors with mi sc:url "http://mgob.ucd.ie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -43443,7 +34857,7 @@ MGnify (http: www.ebi.ac.uk metagenomics) provides a free to use platform for th sc:url "http://www.ebi.ac.uk/metagenomics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0749, @@ -43467,7 +34881,7 @@ or as whitespace-separated sequences.""" ; sc:url "http://tools.iedb.org/mhci/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -43489,7 +34903,7 @@ or as whitespace-separated sequences.""" ; biotools:primaryContact "Computational Molecular Biology Group, Chulalongkorn University" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -43507,43 +34921,8 @@ MHCquant: Identify and quantify peptides from mass spectrometry raw data.""" ; sc:name "MHCquant" ; sc:url "https://www.openms.de/mhcquant/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3305, - edam:topic_3376, - edam:topic_3419 ; - sc:citation , - "pubmed:31839026" ; - sc:description """Development and validation of the mental health professional culture inventory. - -AIMS:No instrument has been developed to explicitly assess the professional culture of mental health workers interacting with severely mentally ill people in publicly or privately run mental health care services. Because of theoretical and methodological concerns, we designed a self-administered questionnaire to assess the professional culture of mental health services workers. The study aims to validate this tool, named the Mental Health Professional Culture Inventory (MHPCI). The MHPCI adopts the notion of 'professional culture' as a hybrid construct between the individual and the organisational level that could be directly associated with the professional practices of mental health workers. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_2428, - edam:operation_3891 ; - sc:name "MHPCI" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31839026" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0749, - edam:topic_3176, - edam:topic_3656 ; - sc:citation , - "pmcid:PMC6876102", - "pubmed:31767038" ; - sc:description """multiplex chromatin interaction analysis by signal processing and statistical algorithms. - -The single-molecule multiplex chromatin interaction data are generated by emerging 3D genome mapping technologies such as GAM, SPRITE, and ChIA-Drop. These datasets provide insights into high-dimensional chromatin organization, yet introduce new computational challenges. Thus, we developed MIA-Sig, an algorithmic solution based on signal processing and information theory. We demonstrate its ability to de-noise the multiplex data, assess the statistical significance of chromatin complexes, and identify topological domains and frequent inter-domain contacts. On chromatin immunoprecipitation (ChIP)-enriched data, MIA-Sig can clearly distinguish the protein-associated interactions from the non-specific topological domains. Together, MIA-Sig represents a novel algorithmic framework for multiplex chromatin interaction analysis. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3222, - edam:operation_3435 ; - sc:name "MIA-Sig" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31767038" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2885, @@ -43560,7 +34939,7 @@ MIAmS: Microsatellites Instability by AMplicon Sequencing.""" ; sc:url "https://github.com/bialimed/miams" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0605, edam:topic_0610, @@ -43588,7 +34967,7 @@ Use this site to download Maxent software for modeling species niches and distri sc:url "https://biodiversityinformatics.amnh.org/open_source/maxent/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0140, @@ -43608,7 +34987,7 @@ The dataset for MIC_Locator can be downloaded from the website (https://pan.baid sc:url "https://github.com/ProteinLocator/MIC_Locator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0605, @@ -43626,24 +35005,8 @@ BACKGROUND:miRNAs regulate the expression of several genes with one miRNA able t sc:name "MIENTURNET" ; sc:url "http://userver.bio.uniroma1.it/apps/mienturnet/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3318 ; - sc:citation , - "pmcid:PMC6891619", - "pubmed:31731745" ; - sc:description """A Low-Power Experimental Platform with Programmable Logic Resources and Software-Defined Radio Capabilities. - -The increase in the number of mobile and Internet of Things (IoT) devices, along with the demands of new applications and services, represents an important challenge in terms of spectral coexistence. As a result, these devices are now expected to make an efficient and dynamic use of the spectrum, and to provide processed information instead of simple raw sensor measurements. These communication and processing requirements have direct implications on the architecture of the systems. In this work, we present MIGOU, a wireless experimental platform that has been designed to address these challenges from the perspective of resource-constrained devices, such as wireless sensor nodes or IoT end-devices. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'wireless', 'system-on-a-chip'""" ; - sc:name "MIGOU" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31731745" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_3056, @@ -43666,7 +35029,7 @@ The increase in the number of mobile and Internet of Things (IoT) devices, along sc:url "https://peterbeerli.com/migrate-html5/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3382, @@ -43681,7 +35044,7 @@ The increase in the number of mobile and Internet of Things (IoT) devices, along sc:url "http://faculty.pieas.edu.pk/fayyaz/software.html#MILAMP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3452, @@ -43700,7 +35063,7 @@ MIMIC-CXR: A large publicly available database of labeled chest radiographs. Joh sc:url "https://mimic-cxr.mit.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -43715,7 +35078,7 @@ MIMIC-CXR: A large publicly available database of labeled chest radiographs. Joh sc:url "https://github.com/randel/MIND" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3342, edam:topic_3391 ; @@ -43744,7 +35107,7 @@ MINERVA is a webservice using the Java Server Faces 2 technology. The server sid sc:url "https://minerva-web.lcsb.uni.lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, @@ -43768,7 +35131,7 @@ python cDNA_MINES.py --fraction_modified output_filename.fraction_modified_reads sc:url "https://github.com/YeoLab/MINES.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0659, @@ -43788,7 +35151,7 @@ BACKGROUND:Adenosine-to-inosine RNA editing can markedly diversify the transcrip sc:url "https://mammal.deepomics.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3300, @@ -43810,7 +35173,7 @@ MIRKB (the Myocardial Infarction Risk Knowledge Base) is a database that collect sc:url "http://sysbio.org.cn/MIRKB/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0625, @@ -43831,59 +35194,8 @@ Identify 24-locus MIRU-VNTR for Mycobacterium tuberculosis complex (MTBC) direct sc:name "MIRUReader" ; sc:url "https://github.com/phglab/MIRUReader" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3170, - edam:topic_3304, - edam:topic_3334, - edam:topic_3382 ; - sc:citation ; - sc:description """A novel pipeline for quantitative mapping of diverse cell types across the murine brain. - -ABSTRACT The advent of increasingly sophisticated imaging platforms has allowed for the visualization of the murine nervous system at single-cell resolution. However, current cell counting methods compromise on either the ability to map a large number of different cell types, or spatial coverage, and therefore whole-brain quantification of finely resolved neural cell subtypes remains elusive. Here we present a comprehensive and novel computational pipeline called Matrix Inversion and Subset Selection (MISS) that aims to fill this gap in knowledge and has the ability to infer counts of diverse collections of neural cell types at sub-millimeter resolution using a combination of single-cell RNAseq and in situ hybridization datasets. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0337, - edam:operation_3463, - edam:operation_3799 ; - sc:name "MISS" ; - sc:url "https://doi.org/10.1101/833566" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3316, - edam:topic_3365, - edam:topic_3384 ; - sc:citation , - "pubmed:31759298" ; - sc:description """A fast and scalable framework of medical image storage service based on distributed file system. - -Background and Objective Processing of medical imaging big data is deeply challenging due to the size of data, computational complexity, security storage and inherent privacy issues. Traditional picture archiving and communication system, which is an imaging technology used in the healthcare industry, generally uses centralized high performance disk storage arrays in the practical solutions. The existing storage solutions are not suitable for the diverse range of medical imaging big data that needs to be stored reliably and accessed in a timely manner. The economical solution is emerging as the cloud computing which provides scalability, elasticity, performance and better managing cost. Cloud based storage architecture for medical imaging big data has attracted more and more attention in industry and academia. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'framework'""" ; - sc:name "MISS-D" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31759298" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_0749, - edam:topic_3308 ; - sc:citation , - "pubmed:31582381" ; - sc:description """Zebrafish MITF-Low Melanoma Subtype Models Reveal Transcriptional Subclusters and MITF-Independent Residual Disease. - -The melanocyte-inducing transcription factor (MITF)-low melanoma transcriptional signature is predictive of poor outcomes for patients, but little is known about its biological significance, and animal models are lacking. Here, we used zebrafish genetic models with low activity of Mitfa (MITF-low) and established that the MITF-low state is causal of melanoma progression and a predictor of melanoma biological subtype. MITF-low zebrafish melanomas resembled human MITF-low melanomas and were enriched for stem and invasive (mesenchymal) gene signatures. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'MITF-independent', 'MITF-low melanomas', 'melanomas MITF-independent', 'melanomas'""" ; - sc:featureList edam:operation_3659 ; - sc:name "MITF-low melanomas MITF-independent" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31582381" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3375, edam:topic_3384, @@ -43902,7 +35214,7 @@ The melanocyte-inducing transcription factor (MITF)-low melanoma transcriptional sc:url "http://mitk.org/wiki/MITK-ModelFit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3474, @@ -43919,7 +35231,7 @@ The melanocyte-inducing transcription factor (MITF)-low melanoma transcriptional sc:url "https://github.com/gerberlab/mitre/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3308, @@ -43943,7 +35255,7 @@ The melanocyte-inducing transcription factor (MITF)-low melanoma transcriptional "William H. Press" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3384, @@ -43957,7 +35269,7 @@ MOTIVATION:The use of human genome discoveries and other established factors to sc:url "https://github.com/YaluWen/OmicPred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0176, @@ -43975,7 +35287,7 @@ ML-Force source code added · 1e971b94.""" ; sc:url "https://git.informatik.uni-rostock.de/mosi/ml-force-publication" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3298, @@ -43986,7 +35298,7 @@ ML-Force source code added · 1e971b94.""" ; sc:url "https://github.com/agporto/ml-morph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -44007,7 +35319,7 @@ ML-Force source code added · 1e971b94.""" ; biotools:primaryContact "Stavros Makrodimitris" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0157, @@ -44024,7 +35336,7 @@ This is a fast MLCS algorithm for DNA sequence""" ; sc:url "https://github.com/liusen1006/MLCS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0654, @@ -44037,7 +35349,7 @@ This is a fast MLCS algorithm for DNA sequence""" ; sc:url "https://sourceforge.net/projects/mldsp-gui/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0749 ; @@ -44054,21 +35366,8 @@ This is a fast MLCS algorithm for DNA sequence""" ; "Windows" ; sc:url "https://figshare.com/articles/MLM_Algorithm/7393517/1" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_0659, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6688360", - "pubmed:31395072" ; - sc:description "> HOMEPAGE MISSING! | a machine learning approach to predict and validate MicroRNA-disease associations by integrating of heterogenous information sources | BACKGROUND:Emerging evidences show that microRNA (miRNA) plays an important role in many human complex diseases. However, considering the inherent time-consuming and expensive of traditional in vitro experiments, more and more attention has been paid to the development of efficient and feasible computational methods to predict the potential associations between miRNA and disease. METHODS:In this work, we present a machine learning-based model called MLMDA for predicting the association of miRNAs and diseases. More specifically, we first use the k-mer sparse matrix to extract miRNA sequence information, and combine it with miRNA functional similarity, disease semantic similarity and Gaussian interaction profile kernel similarity information" ; - sc:featureList edam:operation_0463, - edam:operation_3792 ; - sc:name "MLMDA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31395072" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3295, edam:topic_3518, @@ -44088,30 +35387,8 @@ This is a fast MLCS algorithm for DNA sequence""" ; sc:url "https://cran.r-project.org/package=MLML2R" ; biotools:primaryContact "Samara Kiihl" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2269, - edam:topic_3174, - edam:topic_3324, - edam:topic_3673 ; - sc:citation , - "pmcid:PMC6915855", - "pubmed:31842753" ; - sc:description """Deconvoluting the diversity of within-host pathogen strains in a multi-locus sequence typing framework. - -Deconvoluting the Diversity of Within-host Pathogen Strain in a MLST Framework. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/mlst. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'burgdorferi', 'Borrelia', 'within-host', 'Borrelia burgdorferi'""" ; - sc:featureList edam:operation_0487, - edam:operation_3227, - edam:operation_3629, - edam:operation_3840 ; - sc:name "MLST_autogenerated" ; - sc:url "https://github.com/WGS-TB/MLST" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -44136,7 +35413,7 @@ Note: cgMLST and wgMLST are not yet fully supported since the RESTful API interp sc:url "http://github.com/iferres/MLSTar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0632, @@ -44157,29 +35434,8 @@ regex (https://launchpad.net/ubuntu/+archive/primary/+files/python-regex_0.1.201 sc:name "MLVAType" ; sc:url "https://github.com/dpchris/MLVA" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3170, - edam:topic_3474, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6857238", - "pubmed:31726986" ; - sc:description """a multi-weighted gcForest model towards the staging of lung adenocarcinoma based on multi-modal genetic data. - -BACKGROUND:Lung cancer is one of the most common types of cancer, among which lung adenocarcinoma accounts for the largest proportion. Currently, accurate staging is a prerequisite for effective diagnosis and treatment of lung adenocarcinoma. Previous research has used mainly single-modal data, such as gene expression data, for classification and prediction. Integrating multi-modal genetic data (gene expression RNA-seq, methylation data and copy number variation) from the same patient provides the possibility of using multi-modal genetic data for cancer prediction. A new machine learning method called gcForest has recently been proposed. This method has been proven to be suitable for classification in some fields. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'gcForest'""" ; - sc:featureList edam:operation_2495, - edam:operation_3435, - edam:operation_3802 ; - sc:name "MLW-gcForest" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31726986" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3474, @@ -44201,7 +35457,7 @@ BACKGROUND:Lung cancer is one of the most common types of cancer, among which lu biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3314, edam:topic_3474, @@ -44220,7 +35476,7 @@ BACKGROUND:Lung cancer is one of the most common types of cancer, among which lu biotools:primaryContact "Dr. Pavlo O. Dral" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3335, edam:topic_3384, @@ -44235,7 +35491,7 @@ BACKGROUND:Lung cancer is one of the most common types of cancer, among which lu sc:url "http://www.sdspeople.fudan.edu.cn/zhuangxiahai/0/mmwhs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, @@ -44260,7 +35516,7 @@ The name Piazza comes from the Italian word for plaza--a common city square wher sc:url "https://piazza.com/ucsd/fall2019/mm3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3315, @@ -44289,98 +35545,30 @@ Designing MATLAB-streamlined MC-based analysis using MCXLAB and MMCLAB.""" ; sc:name "MMCL" ; sc:url "http://mcx.space/#mmc" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3315, - edam:topic_3384, - edam:topic_3398, - edam:topic_3452 ; - sc:citation , - "pmcid:PMC6863969", - "pubmed:31746154" ; - sc:description """Graphics processing unit-accelerated mesh-based Monte Carlo photon transport simulations. - -===============================================================================. - -= Mesh-based Monte Carlo (MMC) =. - -= Supporting both OpenCL and Multi-threading with SSE4 =. - -A GPU-accelerated photon transport simulator. - -Download v2019.4 or Nightly-build. - -"mmc -L" or "mmclab('gpuinfo')" to list). - -Designing MATLAB-streamlined MC-based analysis using MCXLAB and MMCLAB. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'MMC', 'MCs MMC', 'MMC can', 'mesh-based Monte Carlo'""" ; - sc:featureList edam:operation_0337, - edam:operation_3431, - edam:operation_3435 ; - sc:name "MMCL_autogenerated" ; - sc:url "http://mcx.space/#mmc" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0219, - edam:topic_0625, - edam:topic_0659, - edam:topic_3174, - edam:topic_3697 ; - sc:citation , - "pmcid:PMC6920994", - "pubmed:31652812" ; - sc:description """A Curated Database with Taxonomic Profiling of the Healthy Mouse Gastrointestinal Microbiome. - -Murine microbiome database (MMDB) contains 16S rRNA gene-based microbiome taxonomic profiles of the healthy mouse gut microbiota with manually curated metadata. - -Identify frequently found bacterial species in the gastrointestinal tract of healthy laboratory mice. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/mmdb. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Introducing Murine Microbiome Database'""" ; - sc:featureList edam:operation_3196, - edam:operation_3460, - edam:operation_3797 ; - sc:name "MMDB_autogenerated" ; - sc:url "http://leb.snu.ac.kr/mmdb/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0632, - edam:topic_2269 ; - sc:citation , - "pmcid:PMC6612809", - "pubmed:31510703" ; - sc:description "> LOW CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/mml | > CORRECT NAME OF TOOL COULD ALSO BE 'seqmmligner', 'IMPLEMENTATION:The' | Statistical compression of protein sequences and inference of marginal probability landscapes over competing alignments using finite state models and Dirichlet priors | Minimum Message Length (MML) based aligner of protein (amino acid) sequences | Dependencies: GNUMake or equivalent. A modern C++ compiler. seqMMLigner is known to build with g++ (GCC) >= 4.1.2. If these dependencies are met, follow these instructions:" ; - sc:featureList edam:operation_3798 ; - sc:name "MML_autogenerated" ; - sc:url "http://lcb.infotech.monash.edu.au/seqmmligner" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1235" ; - sc:name "Sequence cluster" ; - sc:sameAs "http://edamontology.org/data_1235" ], + sc:additionalType "http://edamontology.org/data_3028" ; + sc:name "Taxonomy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_1333" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1235" ; + sc:name "Sequence cluster" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -44414,7 +35602,7 @@ MMseqs2 includes Linclust, the first clustering algorithm whose runtime scales l biotools:primaryContact "Söding Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3384, @@ -44428,7 +35616,7 @@ MMseqs2 includes Linclust, the first clustering algorithm whose runtime scales l sc:url "http://python.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3068, @@ -44452,7 +35640,7 @@ MMseqs2 includes Linclust, the first clustering algorithm whose runtime scales l biotools:primaryContact "Heather A. Carlson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -44473,7 +35661,7 @@ MMseqs2 includes Linclust, the first clustering algorithm whose runtime scales l biotools:primaryContact "Mark Gerstein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, @@ -44491,52 +35679,8 @@ Your data is being processed. Please be patient as, depending on the number of s sc:name "MOBscan" ; sc:url "https://castillo.dicom.unican.es/mobscan/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0593, - edam:topic_0749, - edam:topic_2830, - edam:topic_3374 ; - sc:citation , - "pubmed:31846291" ; - sc:description """Metal-Organic Framework Preserves the Biorecognition of Antibodies on Nanoscale Surfaces Validated by Single-Molecule Force Spectroscopy. - -Antibody biorecognition forms the basis for numerous biomedical applications such as diagnostic assays, targeted drug delivery, and targeted cancer imaging. However, antibodies, especially after being conjugated to surfaces or nanostructures, suffer from stability issues when stored under nonrefrigeration conditions. Therefore, enhancing the stability of antibodies on surfaces and nanostructures under ambient and elevated temperatures is of paramount importance for many nanobiotechnology applications. In this study, we introduce a simple and facile approach based on a metal-organic framework (MOF) coating to preserve the biorecognition capability of antibodies immobilized on nanoscale surfaces after exposure to elevated temperatures for a prolonged period. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'MOF', 'coating'""" ; - sc:featureList edam:operation_0387, - edam:operation_1816, - edam:operation_2428 ; - sc:name "MOF coating" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31846291" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_2258, - edam:topic_2275, - edam:topic_3068, - edam:topic_3314 ; - sc:citation ; - sc:description """The Role of Molecular Modeling & Simulation in the Discovery and Deployment of Metal-Organic Frameworks for Gas Storage and Separation. - -Welcome to the Computation-Ready, Experimental (CoRE) Metal-Organic Frameworks Database!. - -High-throughput computational screening of metal-organic frameworks rely on the availability of disorder-free atomic coordinate files which can be used as input to simulation software packages. - -We have created CoRE MOF database and its variants which contains almost all MOFs that have been reported in the literature. We expect the database to continue to grow so please check back for new updates!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'adsorption', 'MOFs adsorption-based'""" ; - sc:featureList edam:operation_0337, - edam:operation_2476, - edam:operation_3454, - edam:operation_3891 ; - sc:name "MOFs" ; - sc:url "http://gregchung.github.io/CoRE-MOFs/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3303, @@ -44555,7 +35699,7 @@ We have created CoRE MOF database and its variants which contains almost all MOF biotools:primaryContact "Morris A. Swertz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, @@ -44569,7 +35713,7 @@ We have created CoRE MOF database and its variants which contains almost all MOF sc:url "https://github.com/hosseinshn/MOLI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -44588,7 +35732,7 @@ We have created CoRE MOF database and its variants which contains almost all MOF "Sven Bergmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -44602,7 +35746,7 @@ We have created CoRE MOF database and its variants which contains almost all MOF sc:url "http://mooda.stracquadaniolab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3315, @@ -44618,7 +35762,7 @@ We have created CoRE MOF database and its variants which contains almost all MOF sc:url "http://github.com/htpusa/moomin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, @@ -44640,7 +35784,7 @@ We have created CoRE MOF database and its variants which contains almost all MOF biotools:primaryContact "Paolo Martini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -44662,7 +35806,7 @@ We have created CoRE MOF database and its variants which contains almost all MOF biotools:primaryContact "Desmond S. Lun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0634 ; @@ -44677,7 +35821,7 @@ As in many African countries, the Community Health Worker (CHW) is the backbone sc:url "https://github.com/motech-implementations/mots" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0078, @@ -44697,7 +35841,7 @@ MPF-BML-GUI is a standalone cross-platform package which features an easy-to-use sc:url "https://github.com/ahmedaq/MPF-BML-GUI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2269, @@ -44720,7 +35864,7 @@ This is a system that enables quick and easy assessment of user’s prognostic g sc:url "http://www.mpic-app.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -44737,7 +35881,7 @@ This is a system that enables quick and easy assessment of user’s prognostic g sc:url "https://bioconductor.org/packages/release/bioc/html/MPRAnalyze.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0749, @@ -44758,7 +35902,7 @@ This is a system that enables quick and easy assessment of user’s prognostic g "Martin Hemberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -44768,7 +35912,7 @@ This is a system that enables quick and easy assessment of user’s prognostic g sc:url "https://github.com/abhisheknrl/MPRAscore" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0176, @@ -44790,7 +35934,7 @@ This is a system that enables quick and easy assessment of user’s prognostic g biotools:primaryContact "Lab of Bioinformatics and Molecular Modeling" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2269, @@ -44813,7 +35957,7 @@ When the product is highly complex and the developers aren’t experts in your b sc:url "http://campagnelab.org/software/bdval-for-mps/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3336, edam:topic_3375, @@ -44825,14 +35969,17 @@ When the product is highly complex and the developers aren’t experts in your b sc:url "https://mps.csb.pitt.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0625, edam:topic_3517 ; sc:citation , + , + "pmcid:PMC5976434", "pmcid:PMC6694718", + "pubmed:29846171", "pubmed:31448343" ; sc:description "Using the MR-Base platform to investigate risk factors and drug targets for thousands of phenotypes | This repository contains the case studies associated with the manuscript \"Using the MR-Base platform to investigate risk factors and drug targets for thousands of phenotypes\" | 2-sample Mendelian Randomisation | MR-base is a database and analytical platform for Mendelian randomization being developed by the MRC Integrative Epidemiology Unit at the University of Bristol" ; sc:featureList edam:operation_0488, @@ -44841,30 +35988,8 @@ When the product is highly complex and the developers aren’t experts in your b sc:name "MR-Base" ; sc:url "http://www.mrbase.org/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_0091, - edam:topic_0749, - edam:topic_3063, - edam:topic_3678 ; - sc:citation , - "pmcid:PMC6879125", - "pubmed:31770418" ; - sc:description """A tool to support design and evaluation of career-spanning education and training. - -As the life sciences have become more data intensive, the pressure to incorporate the requisite training into life-science education and training programs has increased. To facilitate curriculum development, various sets of (bio)informatics competencies have been articulated; however, these have proved difficult to implement in practice. Addressing this issue, we have created a curriculum-design and -evaluation tool to support the development of specific Knowledge, Skills and Abilities (KSAs) that reflect the scientific method and promote both bioinformatics practice and the achievement of competencies. Twelve KSAs were extracted via formal analysis, and stages along a developmental trajectory, from uninitiated student to independent practitioner, were identified. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Mastery Rubric Bioinformatics', 'KSAs', 'KSAs PLDs', 'KSAs competencies'""" ; - sc:featureList edam:operation_0244, - edam:operation_0306, - edam:operation_3454 ; - sc:name "MR-Bi" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31770418" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2885, @@ -44884,24 +36009,8 @@ Genetic variants which recover similar estimates of the causal effect of the ris sc:name "MR-Clust" ; sc:url "https://github.com/cnfoley/mrclust" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3303, - edam:topic_3384, - edam:topic_3474 ; - sc:citation , - "pubmed:31634145" ; - sc:description """A Deep Decision Framework for False Positive Reduction in Pulmonary Nodule Detection. - -With the development of deep learning methods such as convolutional neural network (CNN), the accuracy of automated pulmonary nodule detection has been greatly improved. However, the high computational and storage costs of the large-scale network have been a potential concern for the future widespread clinical application. In this paper, an alternative Multi-ringed (MR)-Forest framework, against the resource-consuming neural networks (NN)-based architectures, has been proposed for false positive reduction in pulmonary nodule detection, which consists of three steps. First, a novel multi-ringed scanning method is used to extract the order ring facets (ORFs) from the surface voxels of the volumetric nodule models; Second, Mesh-LBP and mapping deformation are employed to estimate the texture and shape features. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'LUNA16'""" ; - sc:name "MR)-Forest" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31634145" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -44923,7 +36032,7 @@ With the development of deep learning methods such as convolutional neural netwo "Reedik Magi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3384, @@ -44945,7 +36054,7 @@ With the development of deep learning methods such as convolutional neural netwo "Kumiko Oishi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3384, @@ -44964,7 +36073,7 @@ MRIcron is a cross-platform NIfTI format image viewer. It can load multiple laye sc:url "https://www.nitrc.org/projects/mricron" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3512, @@ -44989,7 +36098,7 @@ MRIcron is a cross-platform NIfTI format image viewer. It can load multiple laye "Min-Soo Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3520, edam:topic_3673 ; @@ -45009,7 +36118,7 @@ MRIcron is a cross-platform NIfTI format image viewer. It can load multiple laye "Tao Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3384, @@ -45023,7 +36132,7 @@ MRIcron is a cross-platform NIfTI format image viewer. It can load multiple laye sc:url "https://github.com/MRtrix3/mrtrix3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -45046,7 +36155,7 @@ MRIcron is a cross-platform NIfTI format image viewer. It can load multiple laye biotools:primaryContact "Harald Marx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -45074,7 +36183,7 @@ Lin YM, Chen CT, Chang JM. MS2CNN: predicting MS/MS spectrum based on protein se sc:url "https://github.com/changlabtw/MS2CNN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -45095,7 +36204,7 @@ Lin YM, Chen CT, Chang JM. MS2CNN: predicting MS/MS spectrum based on protein se sc:url "http://ms2lda.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0121 ; @@ -45120,7 +36229,7 @@ Lin YM, Chen CT, Chang JM. MS2CNN: predicting MS/MS spectrum based on protein se sc:url "https://iomics.ugent.be/ms2pip/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -45154,7 +36263,7 @@ MICAS: Microsatellite Analysis Server.""" ; sc:url "http://minisatellites.u-psud.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2229, @@ -45172,7 +36281,7 @@ Drug response prediction in cancer cell lines is vital to discover new anticance sc:url "https://github.com/shimingwang1994/MSDRP.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3382, @@ -45189,7 +36298,7 @@ Drug response prediction in cancer cell lines is vital to discover new anticance biotools:primaryContact "Eisuke Hayakawa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3295, @@ -45207,7 +36316,7 @@ Drug response prediction in cancer cell lines is vital to discover new anticance sc:url "https://github.com/wangc29/MSIpred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0769, @@ -45228,7 +36337,7 @@ MSMS-Chooser is a GNPS workflow and open-source protocol to empower the communit sc:url "https://ccms-ucsd.github.io/GNPSDocumentation/msmschooser/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0632, edam:topic_2885, @@ -45248,7 +36357,7 @@ MSMS-Chooser is a GNPS workflow and open-source protocol to empower the communit sc:url "https://github.com/KamelaNg/MTBGT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -45280,7 +36389,7 @@ Extracting gene modules from single cell RNA-seq cell clusters""" ; sc:url "https://github.com/ne1s0n/MTGOsc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0202, @@ -45298,7 +36407,7 @@ Code and sequence files used in MTK manuscript""" ; sc:url "https://github.com/jpfon/MTK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:citation , "pubmed:31403410" ; @@ -45309,30 +36418,18 @@ Code and sequence files used in MTK manuscript""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_3814" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1461" ; - sc:name "Protein-ligand complex" ; - sc:sameAs "http://edamontology.org/data_1461" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1461" ; - sc:name "Protein-ligand complex" ; - sc:sameAs "http://edamontology.org/data_1461" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1461" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein-ligand complex" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3534 ; sc:citation "pubmed:25855812" ; @@ -45348,30 +36445,18 @@ Code and sequence files used in MTK manuscript""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_3814" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1461" ; - sc:name "Protein-ligand complex" ; - sc:sameAs "http://edamontology.org/data_1461" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1461" ; - sc:name "Protein-ligand complex" ; - sc:sameAs "http://edamontology.org/data_1461" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1461" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein-ligand complex" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3343 ; sc:citation "pubmed:25855812", @@ -45385,34 +36470,8 @@ Code and sequence files used in MTK manuscript""" ; sc:softwareVersion "1.0" ; sc:url "https://mobyle.rpbs.univ-paris-diderot.fr/cgi-bin/portal.py#forms::MTiOpenScreen" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0166, - edam:topic_3474, - edam:topic_3542 ; - sc:citation , - "pubmed:31532508" ; - sc:description "> COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/mufold (MUFOLD.ORG) | > CORRECT NAME OF TOOL COULD ALSO BE 'MUFold-SSW', 'MUFold-SS MUFold-Angle MUFold-BetaTurn MUFold-GammaTurn', 'MUFold-Angle MUFold-BetaTurn MUFold-GammaTurn', 'MUFold-SS MUFold-Angle MUFold-BetaTurn' | A new web server for predicting protein secondary structures, torsion angles, and turns | MOTIVATION:Protein secondary structure and backbone torsion angle prediction can provide important information for predicting protein 3D structures and protein functions. Our new methods MUFold-SS, MUFold-Angle, MUFold-BetaTurn, and MUFold-GammaTurn, developed based on advanced deep neural networks, achieved state-of-the-art performance for predicting secondary structures, backbone torsion angles, beta-turns, and gamma-turns, respectively. An easy-to-use web service will provide the community a convenient way to use these methods for research and development. RESULTS:MUFold-SSW, a new web server, is presented" ; - sc:featureList edam:operation_0249, - edam:operation_0468, - edam:operation_0469 ; - sc:name "MUFold-SS" ; - sc:url "http://mufold.org/mufold-ss-angle" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2269, - edam:topic_3382 ; - sc:citation , - "pubmed:31794396" ; - sc:description """Learning No-Reference Quality Assessment of Multiply and Singly Distorted Images with Big Data. - -Previous research on no-reference (NR) quality assessment of multiply-distorted images focused mainly on three distortion types (white noise, Gaussian blur, and JPEG compression), while in practice images can be contaminated by many other common distortions due to the various stages of processing. Although MUSIQUE (MUltiply-and Singly-distorted Image QUality Estimator) Zhang et al., TIP 2018 is a successful NR algorithm, this approach is still limited to the three distortion types. In this paper, we extend MUSIQUE to MUSIQUE-II to blindly assess the quality of images corrupted by five distortion types (white noise, Gaussian blur, JPEG compression, JPEG2000 compression, and contrast change) and their combinations. - -||| HOMEPAGE MISSING!""" ; - sc:name "MUSIQUE-II" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31794396" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -45434,7 +36493,7 @@ Previous research on no-reference (NR) quality assessment of multiply-distorted biotools:primaryContact "Magdalena Julkowska" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3360, @@ -45448,26 +36507,8 @@ Previous research on no-reference (NR) quality assessment of multiply-distorted sc:name "MVIAm" ; sc:url "https://github.com/must-bio-team/MVIAm" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0121, - edam:topic_0154, - edam:topic_3512, - edam:topic_3520 ; - sc:citation ; - sc:description """An extensible Galaxy plug-In for multi-omics data visualization and exploration. - -The Galaxy MVP visualization plugin enables viewing of results produced from workflows integrating genomic sequencing data and mass spectrometry proteomics data. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/mvp""" ; - sc:featureList edam:operation_0337, - edam:operation_3631, - edam:operation_3695 ; - sc:name "MVP_autogenerated" ; - sc:url "https://github.com/galaxyproteomics/mvpapplication-git.git" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0634, @@ -45481,7 +36522,7 @@ The Galaxy MVP visualization plugin enables viewing of results produced from wor sc:url "https://sourceforge.net/projects/mwi-spinal-cord-atlases/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0659, @@ -45501,7 +36542,7 @@ Pipelines of data analysis for MaGenDB""" ; sc:url "http://magen.whu.edu.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0166, @@ -45525,7 +36566,7 @@ MaSIF is a proof-of-concept method to decipher patterns in protein surfaces impo sc:url "https://github.com/lpdi-epfl/masif" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -45547,28 +36588,8 @@ MabeLLINI (Mycobacterium ABscessus modELLing INItiative) is a database available sc:name "Mabellini" ; sc:url "http://www.mabellinidb.science" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_3390, - edam:topic_3407, - edam:topic_3474, - edam:topic_3810 ; - sc:citation , - "pmcid:PMC6802673", - "pubmed:31649832" ; - sc:description """Machine learning classification models for fetal skeletal development performance prediction using maternal bone metabolic proteins in goats. - -Machine Learning for goat bone prediction. - -Classifiers for Liuyang black goats bone profiles using maternal serum bone metabolism. - -Datasets and results will be uploaded after the manuscript will be send to a journal""" ; - sc:license "MIT" ; - sc:name "Machine Learning" ; - sc:url "https://gitlab.com/muntisa/goat-bones-machine-learning" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0625, @@ -45585,26 +36606,21 @@ Datasets and results will be uploaded after the manuscript will be send to a jou a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -45628,7 +36644,7 @@ Datasets and results will be uploaded after the manuscript will be send to a jou sc:url "http://maizemine.rnet.missouri.edu:8080/maizemine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -45658,7 +36674,7 @@ After running the R script, a new R data file named as test.snp. Mat.""" ; sc:url "https://github.com/venyao/MaizeSNPDB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0593, @@ -45679,29 +36695,8 @@ The main work is done here by a few scripts, located in the aptly named scripts sc:name "Making Soup" ; sc:url "http://github.com/dspoel/soup" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0176, - edam:topic_0659, - edam:topic_3047, - edam:topic_3292, - edam:topic_3306 ; - sc:citation , - "pubmed:31816234" ; - sc:description """Preparing and Validating Models of the Bacterial Cytoplasm for Molecular Simulation. - -The cytoplasm of a cell is sometimes jestingly called a Soup, since it contains many different ingredients. Indeed there is quite a bit of salt and glutamate, the well known flavour enhancing compoud that is used a lot in asian kitchen but also in broth. Read more here: https://en.wikipedia.org/wiki/Glutamate_flavoring. - -In order to study the cytoplasm of a cell one can use a variety of experimental biochemistry techniques, but also computer simulations, which is the focus of this page. Here we thererfore provide information and python scripts to run computer simulations using http://www.gromacs.org of (quite) realistic models of the cytoplasm. - -The main work is done here by a few scripts, located in the aptly named scripts directory. They are described briefly in the README.md in that directory""" ; - sc:featureList edam:operation_0477, - edam:operation_0478, - edam:operation_2476 ; - sc:name "Making Soup_autogenerated" ; - sc:url "http://github.com/dspoel/soup" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -45731,7 +36726,7 @@ Our projects provide a framework for malaria researchers around the world to wor sc:url "http://www.malariagen.net/projects" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3063, @@ -45744,24 +36739,8 @@ Preventable diseases still cause huge mortality in low- and middle-income countr sc:name "Malaria Data District" ; sc:url "https://seantomlinson30.shinyapps.io/shiny-map-prize/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0654 ; - sc:citation , - "pubmed:31812694" ; - sc:description """Exploratory Data Analysis for Large-Scale Sequencing Datasets. - -Mango User Guide — bdgenomics.mango 0.0.5 documentation. - -Free document hosting provided by Read the Docs. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/mango""" ; - sc:featureList edam:operation_3208, - edam:operation_3218 ; - sc:name "Mango_autogenerated" ; - sc:url "https://bdg-mango.readthedocs.io/en/latest/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3500, @@ -45779,7 +36758,7 @@ A useful way to summarize genome-wide association data is with a Manhattan plot. sc:url "https://genome.sph.umich.edu/wiki/Code_Sample:_Generating_Manhattan_Plots_in_R" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3517 ; @@ -45799,24 +36778,8 @@ A useful way to summarize genome-wide association data is with a Manhattan plot. sc:url "https://www.geenivaramu.ee/en/tools/manhattan-harvester" ; biotools:primaryContact "T. Haller" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3810 ; - sc:citation ; - sc:description """Long Term Homogeneity, Trend and Change-Point Analysis of Rainfall in the Arid District of Ananthapuramu, Andhra Pradesh State, India. - -Daily rainfall data was collected for the arid district of Ananthapuramu, Andhra Pradesh state, India from 1981 to 2016 at the sub-district level and aggregated to monthly, annual and seasonal rainfall totals and the number of rainy days. The objective of this study is to evaluate the homogeneity, trend, and trend change points in the rainfall data. After quality checks and homogeneity analysis, a total of 27 rain gauge locations were considered for trend analysis. A serial correlation test was applied to all the time series to identify serially independent series. Non-Parametric Mann-Kendall test and Spearman’s rank correlation tests were applied to serially independent series. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Pre-Whitening', 'Ananthapuramu Andhra Pradesh', 'arid district Ananthapuramu Andhra Pradesh', 'rainfall'""" ; - sc:featureList edam:operation_2238, - edam:operation_3436, - edam:operation_3891 ; - sc:name "Mann-Kendall" ; - sc:url "https://doi.org/10.20944/PREPRINTS201912.0226.V1" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -45831,7 +36794,7 @@ Daily rainfall data was collected for the arid district of Ananthapuramu, Andhra sc:url "https://github.com/hsinnan75/MapCaller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -45851,7 +36814,7 @@ Daily rainfall data was collected for the arid district of Ananthapuramu, Andhra biotools:primaryContact "Fady Mohareb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3263, @@ -45865,7 +36828,7 @@ Daily rainfall data was collected for the arid district of Ananthapuramu, Andhra sc:url "http://geoportale.lamma.rete.toscana.it/MapStore/public/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3067, @@ -45881,7 +36844,7 @@ Daily rainfall data was collected for the arid district of Ananthapuramu, Andhra sc:url "https://github.com/alpatania/AHBA_microarray_Mapper/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -45904,7 +36867,7 @@ https://github.com/MariaOsmala/RFECS_BUG_FIXES.git.""" ; sc:url "https://github.com/MariaOsmala/preprint" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0634, @@ -45923,7 +36886,7 @@ We aimed to design a hybrid system for systematic entity recognition and ranking sc:url "http://markerhub.iis.sinica.edu.tw" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "Mascot Daemon is a Microsoft Windows client application that automates the submission of data files to Mascot server." ; @@ -45937,18 +36900,18 @@ We aimed to design a hybrid system for systematic entity recognition and ranking a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3834" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; sc:description """Mascot Distiller Workstation offers a single, intuitive interface to a wide range of native (binary) mass spectrometry data files. A unique algorithm, which fits each peak to a calculated isotope distribution, processes the raw data into high quality, de-isotoped peak lists. @@ -45969,10 +36932,10 @@ This core functionality can be extended by adding one or more toolboxes. These a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_3713" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "Mascot Parser provides an object-oriented Application Programmer Interface (API) to Mascot result files and configuration files, making it easy for programs written in C++, C#, Java, Perl or Python to access Mascot results." ; @@ -45986,7 +36949,7 @@ This core functionality can be extended by adding one or more toolboxes. These a sc:url "http://www.matrixscience.com/msparser.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0769, @@ -46016,7 +36979,7 @@ Current analysis packages include protein-protein crosslinking (XL), hydrogen/de sc:url "https://www.msstudio.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -46031,7 +36994,7 @@ Current analysis packages include protein-protein crosslinking (XL), hydrogen/de sc:url "https://github.com/daviddesancho/MasterMSM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3047, @@ -46054,7 +37017,7 @@ Nextflow pipeline for analysis of Nanopore data from direct RNA sequencing. This sc:url "https://github.com/biocorecrg/master_of_pores" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3324, @@ -46074,7 +37037,7 @@ The United States Government Department of Health and Human Services, National I sc:url "https://github.com/VirusBRC/vipr_mat_peptide" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3474 ; @@ -46089,7 +37052,7 @@ This code implements Matched Forest algorithm which aims to find important varia sc:url "https://github.com/NooshinSh/Matched_Forest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3170, @@ -46108,7 +37071,7 @@ MathIOmica is a package for bioinformatics, written in the Wolfram language, tha sc:url "https://mathiomica.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -46129,14 +37092,14 @@ Please follow MatrisomeDB. MatrisomeDB will be hosted at matrisomedb.org very so a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1362" ; - sc:name "Position weight matrix" ; - sc:sameAs "http://edamontology.org/data_1362" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1362" ; + sc:encodingFormat "http://edamontology.org/format_2064" ; + sc:name "Position weight matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script", "Workflow" ; @@ -46158,7 +37121,7 @@ Please follow MatrisomeDB. MatrisomeDB will be hosted at matrisomedb.org very so biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -46188,7 +37151,7 @@ Welcome to our table of Multiplexed Assay of Variant Effect (MAVE) studies. To c sc:url "https://www.mavedb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -46203,7 +37166,7 @@ Welcome to our table of Multiplexed Assay of Variant Effect (MAVE) studies. To c sc:url "https://melad.ddtmlab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0632, edam:topic_2885, @@ -46218,7 +37181,7 @@ Welcome to our table of Multiplexed Assay of Variant Effect (MAVE) studies. To c sc:url "https://pypi.org/project/mecan4cna/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2840, edam:topic_3292, @@ -46231,37 +37194,23 @@ Welcome to our table of Multiplexed Assay of Variant Effect (MAVE) studies. To c sc:name "MechSpy" ; sc:url "https://github.com/ignaciot/MechSpy" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3335, - edam:topic_3372 ; - sc:citation , - "pubmed:31483266" ; - sc:description "> HOMEPAGE MISSING! | Data Analytics for Medical Domain Experts in Real-Time | Translational research in the medical sector is dependent on clear communication between all participants. Visualization helps to represent data from different sources in a comprehensible way across disciplines. Existing tools for clinical data management are usually monolithic and technically challenging to set up, others require a transformation into specific data models while providing mostly non-interactive visualizations or being specialized to very particular use cases. Statistical programming languages (R, Julia) on the other hand offer great flexibility in data analytics, but are harder to access for clinicians with little to no programming expertise. Our software, the Medical Data Explorer (MedEx), aims to fill this gap as light-weight, intuitive, web-based solution with simple data import routes" ; - sc:name "MedEx" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31483266" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -46284,18 +37233,8 @@ Welcome to our table of Multiplexed Assay of Variant Effect (MAVE) studies. To c sc:softwareVersion "1.3.0" ; sc:url "http://medicmine.jcvi.org/medicmine" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3384, - edam:topic_3415 ; - sc:citation , - "pubmed:31437878" ; - sc:description "> LOW CONFIDENCE! | Bridging the Gap Between Consumers' Medication Questions and Trusted Answers | The gold standard corpus for medication question answering introduced in the MedInfo 2019 paper (Bridging the Gap between Consumers’ Medication Questions and Trusted Answers)" ; - sc:name "Medication" ; - sc:url "https://github.com/abachaa/Medication_QA_MedInfo2019" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3173, edam:topic_3295 ; @@ -46316,7 +37255,7 @@ Epigenome-Wide Association Studies (EWAS)""" ; biotools:primaryContact "Matthew Suderman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -46340,7 +37279,7 @@ git clone https://github.com/HKU-BAL/megagta.git.""" ; sc:url "https://github.com/HKU-BAL/megagta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3175, @@ -46359,7 +37298,7 @@ Meltos is a novel approach to estimate the variant allele frequency of somatic S sc:url "https://github.com/ih-lab/Meltos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0820, @@ -46371,31 +37310,20 @@ Meltos is a novel approach to estimate the variant allele frequency of somatic S sc:name "MemSurfer" ; sc:url "https://bbs.llnl.gov/MemSurfer-data.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3303 ; - sc:citation ; - sc:description "> NAME EQUAL TO (PUB. DIFFERENT) bio.tools/mercator, bio.tools/mercator_plant | An R Package for Visualization of Distance Matrices | Clustering and Visualizing Distance Matrices | Defines the classes used to explore, cluster and visualize distance matrices, especially those arising from binary data" ; - sc:featureList edam:operation_2939, - edam:operation_3432 ; - sc:license "Apache-2.0" ; - sc:name "Mercator_autogenerated" ; - sc:url "https://cran.r-project.org/web/packages/Mercator/index.html" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_1317 ; @@ -46417,7 +37345,7 @@ Meltos is a novel approach to estimate the variant allele frequency of somatic S sc:url "https://www.stavrox.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation ; @@ -46429,7 +37357,7 @@ It provides also species-level taxonomic profiles, marker presence data, and met sc:url "http://segatalab.cibio.unitn.it/tools/metaml/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3172, @@ -46444,7 +37372,7 @@ It provides also species-level taxonomic profiles, marker presence data, and met sc:url "https://github.com/metgem/metgem/releases" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -46459,7 +37387,7 @@ It provides also species-level taxonomic profiles, marker presence data, and met sc:url "https://github.com/romain-laurent/MetHis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -46481,7 +37409,7 @@ It provides also species-level taxonomic profiles, marker presence data, and met biotools:primaryContact "Jaesik Jeong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -46496,7 +37424,7 @@ It provides also species-level taxonomic profiles, marker presence data, and met sc:url "https://metwork.pharmacie.parisdescartes.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3295, @@ -46518,7 +37446,7 @@ It provides also species-level taxonomic profiles, marker presence data, and met "Leyi Wei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3373, @@ -46538,13 +37466,16 @@ In spite of the large-scale production and widespread distribution of vaccines a sc:url "http://codes.bio/meta-iavp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, edam:topic_3837 ; sc:citation , + , + "pmcid:PMC4556158", "pmcid:PMC6662567", + "pubmed:26336640", "pubmed:31388474" ; sc:description "an adaptive binning algorithm for robust and efficient genome reconstruction from metagenome assemblies | MetaBAT2 clusters metagenomic contigs into different \"bins\", each of which should correspond to a putative genome | MetaBAT2 uses nucleotide composition information and source strain abundance (measured by depth-of-coverage by aligning the reads to the contigs) to perform binning" ; sc:featureList edam:operation_0310, @@ -46554,7 +37485,7 @@ In spite of the large-scale production and widespread distribution of vaccines a sc:url "https://bitbucket.org/berkeleylab/metabat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -46576,7 +37507,7 @@ MetaCRAST (Metagenomic CRISPR Reference-Aided Search Tool) is a tool to detect C sc:url "https://github.com/molleraj/MetaCRAST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -46593,7 +37524,7 @@ MetaCRAST (Metagenomic CRISPR Reference-Aided Search Tool) is a tool to detect C sc:url "https://github.com/marbl/MetaCarvel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -46611,28 +37542,8 @@ scRNA-seq profiles each represent a highly partial sample of mRNA molecules from sc:name "MetaCell" ; sc:url "https://tanaylab.github.io/metacell/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_2269, - edam:topic_3174, - edam:topic_3697 ; - sc:citation , - "pmcid:PMC6873667", - "pubmed:31757198" ; - sc:description """unsupervised clustering of metagenomic contigs with probabilistic k-mers statistics and coverage. - -MOTIVATION:Sequencing technologies allow the sequencing of microbial communities directly from the environment without prior culturing. Because assembly typically produces only genome fragments, also known as contigs, it is crucial to group them into putative species for further taxonomic profiling and down-streaming functional analysis. Taxonomic analysis of microbial communities requires contig clustering, a process referred to as binning, that is still one of the most challenging tasks when analyzing metagenomic data. The major problems are the lack of taxonomically related genomes in existing reference databases, the uneven abundance ratio of species, sequencing errors, and the limitations due to binning contig of different lengths. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3432, - edam:operation_3460, - edam:operation_3472, - edam:operation_3798 ; - sc:name "MetaCon" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31757198" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3170, @@ -46653,28 +37564,8 @@ This history is empty. You can load your own data or get data from an external s sc:name "MetaDEGalaxy" ; sc:url "http://203.101.224.202/galaxy/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0769, - edam:topic_3170, - edam:topic_3174, - edam:topic_3697, - edam:topic_3837 ; - sc:citation , - "pmcid:PMC6807170", - "pubmed:31737256" ; - sc:description """Galaxy workflow for differential abundance analysis of 16s metagenomic data. - -You are over your disk quota. Tool execution is on hold until your disk usage drops below your allocated quota. - -This history is empty. You can load your own data or get data from an external source""" ; - sc:featureList edam:operation_0232, - edam:operation_3219, - edam:operation_3435 ; - sc:name "MetaDEGalaxy_autogenerated" ; - sc:url "http://203.101.224.202/galaxy/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0199, @@ -46696,7 +37587,7 @@ This history is empty. You can load your own data or get data from an external s sc:url "https://stuart.radboudumc.nl/metadome" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -46725,14 +37616,14 @@ MetaErg begins biological feature and element prediction by identifying CRISPR e a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623, edam:topic_3174 ; @@ -46750,7 +37641,7 @@ MetaErg begins biological feature and element prediction by identifying CRISPR e sc:url "https://metaeuk.soedinglab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -46773,7 +37664,7 @@ MetaErg begins biological feature and element prediction by identifying CRISPR e "Michael Zon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3295, @@ -46791,7 +37682,7 @@ Transcriptomics meta-analysis of skeletal muscle response to exercise. The shiny sc:url "http://www.metamex.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -46811,7 +37702,7 @@ Metagenomics Medicine mapping system (MetaMed), is a novel and integrative syste sc:url "http://metamed.rwebox.com/index" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2229, @@ -46829,7 +37720,7 @@ Ribosomally synthesized and post-translationally modified peptides (RiPPs) are a sc:url "https://github.com/mohimanilab/MetaMiner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -46855,7 +37746,7 @@ Ribosomally synthesized and post-translationally modified peptides (RiPPs) are a sc:url "https://github.com/smith-chem-wisc/MetaMorpheus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -46875,7 +37766,7 @@ Ribosomally synthesized and post-translationally modified peptides (RiPPs) are a sc:url "https://github.com/metaOmics/metaOmics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3308, @@ -46894,27 +37785,8 @@ Ribosomally synthesized and post-translationally modified peptides (RiPPs) are a sc:url "https://github.com/OSU-BMBL/metaqubic" ; biotools:primaryContact "Qin Ma" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0769, - edam:topic_3174, - edam:topic_3308 ; - sc:citation , - "pubmed:31580397" ; - sc:description """a computational pipeline for gene-level functional profiling of metagenome and metatranscriptome. - -Bioinformatics (2019) doi: 10.1093 bioinformatics btz414, 00, 1 4. - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/MetaQUBIC. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'btz414'""" ; - sc:featureList edam:operation_2495 ; - sc:name "MetaQUBIC_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31580397" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3170, @@ -46937,7 +37809,7 @@ bioinformaticians who wish to package state of the art analysis methods into use sc:url "http://metaR.campagnelab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0769, @@ -46959,7 +37831,7 @@ MetaSanity v1.1.1 provides a unified workflow for genome assessment and function sc:url "https://github.com/cjneely10/MetaSanity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3174, @@ -46981,7 +37853,7 @@ MetaSanity v1.1.1 provides a unified workflow for genome assessment and function "Jing Luo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -46998,7 +37870,7 @@ MetaSanity v1.1.1 provides a unified workflow for genome assessment and function sc:url "https://github.com/koszullab/metaTOR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -47014,7 +37886,7 @@ MetaSanity v1.1.1 provides a unified workflow for genome assessment and function sc:url "https://CRAN.R-project.org/package=MetaboList" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3172 ; sc:description "Graphical visualization tool for metabolomics and genomic data within metabolic pathways" ; @@ -47023,7 +37895,7 @@ MetaSanity v1.1.1 provides a unified workflow for genome assessment and function sc:url "https://prf.jcu.cz/mpv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -47043,20 +37915,8 @@ The Metabolic Disassembler is a Python package to automatically predict a combin sc:name "Metabolic Disassembler" ; sc:url "https://github.com/the-metabolic-disassembler/metadisassembler" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0153, - edam:topic_3172, - edam:topic_3417 ; - sc:citation , - "pmcid:PMC6723204", - "pubmed:31508459" ; - sc:description "> LOW CONFIDENCE! | Lipid profiling dataset of the Wnt3a-induced optic nerve regeneration | About the Metabolomics Workbench: The National Institutes of Health (NIH) Common Fund Metabolomics Program was developed with the goal of increasing national capacity in metabolomics by supporting the development of next generation technologies, providing training and mentoring opportunities, increasing the inventory and availability of high quality reference standards, and promoting data sharing and collaboration. In support of this effort, the Metabolomics Program's Data Repository and Coordinating Center (DRCC), housed at the San Diego Supercomputer Center (SDSC), University of California, San Diego, has developed the Metabolomics Workbench. The Metabolomics Workbench will serve as a national and international repository for metabolomics data and metadata and will provide analysis tools and access to metabolite standards, protocols, tutorials, training, and more" ; - sc:featureList edam:operation_3891 ; - sc:name "Metabolomics Workbench" ; - sc:url "http://www.metabolomicsworkbench.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0219 ; sc:description "FAIR metadata editor for guiding the user through the creation of FAIR Data Point metadata." ; @@ -47066,7 +37926,7 @@ The Metabolic Disassembler is a Python package to automatically predict a combin sc:url "https://editor.fair-dtls.surf-hosted.nl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -47092,13 +37952,13 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/AuReMe/metage2metabo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "This code implements a pre-assembly binning scheme leveraging sparse dictionary learning and matrix factorization to solve sparse decomposition problems arising in the field of metagenomics" ; sc:name "Metagenomic read binning using sparse coding" ; sc:url "https://gitlab.com/kyrgyzov/lsa_slurm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -47119,7 +37979,7 @@ Metandem is a free online data analysis platform for mass spectrometry-based iso sc:url "http://metandem.com/web/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -47140,7 +38000,7 @@ Metandem is a free online data analysis platform for mass spectrometry-based iso "Jean-Paul Soularue" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -47163,7 +38023,7 @@ Metandem is a free online data analysis platform for mass spectrometry-based iso sc:url "http://metascape.org/gp/index.html#/main/step1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3173, @@ -47182,7 +38042,7 @@ Metandem is a free online data analysis platform for mass spectrometry-based iso sc:url "http://smithlabresearch.org/software/methbase/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3295, @@ -47204,22 +38064,8 @@ Metandem is a free online data analysis platform for mass spectrometry-based iso biotools:primaryContact "Leonardo Bottolo", "Verena Zuber" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_3295, - edam:topic_3360 ; - sc:citation , - "pmcid:PMC6764142", - "pubmed:31558162" ; - sc:description "> MEDIUM CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/methylmix | > CORRECT NAME OF TOOL COULD ALSO BE 'LUAD', 'methylation-driven' | Methylation and transcriptome analysis reveal lung adenocarcinoma-specific diagnostic biomarkers | To install this package, start R and enter: | ## try http if https is not available | source(\"https://bioconductor.org/biocLite.R\") | MethylMix: Identifying methylation driven cancer genes | In most cases, you don't need to download the package archive at all | MethylMix is an algorithm implemented to identify hyper and hypomethylated genes for a disease" ; - sc:featureList edam:operation_0417, - edam:operation_2495, - edam:operation_3207 ; - sc:name "MethylMix_autogenerated" ; - sc:url "https://bioconductor.riken.jp/packages/3.1/bioc/html/MethylMix.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3295, edam:topic_3518, @@ -47241,7 +38087,7 @@ Metandem is a free online data analysis platform for mass spectrometry-based iso biotools:primaryContact "George Tseng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_2885, @@ -47264,19 +38110,8 @@ This is the developer version of Bioconductor package MethylToSNP. Install in R sc:name "MethylToSNP" ; sc:url "https://github.com/elnitskilab/MethylToSNP" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_3303, - edam:topic_3337 ; - sc:citation ; - sc:description "> MEDIUM CONFIDENCE! | MetroNome — a visual data exploration platform for integrating human genotypic and phenotypic data across diseases | Genomic Data Exploration platform from the New York Genome Center | Visual Data Exploration for Genomic Medicine | The MetroNome(tm) project is in process of OSS conversation and will be available here once released" ; - sc:featureList edam:operation_3196 ; - sc:license "BSD-3-Clause" ; - sc:name "MetroNome" ; - sc:url "https://metronome.nygenome.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3172, @@ -47297,17 +38132,8 @@ Installation • Authors • License • Revision History""" ; sc:name "MetumpX" ; sc:url "https://github.com/hasaniqbal777/MetumpX-bin" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_3399, - edam:topic_3419 ; - sc:citation ; - sc:description "> LOW CONFIDENCE! | Evaluating the feasibility of frequent digital cognitive assessment in the PREVENT dementia study | a smartphone app for clinical research studies | The Mezurio app lets you complete interactive, scientifically valuable measurement tasks. It’s designed to be used as part of a research study. It helps you become an even more valuable part of that research by letting you contribute new kinds of data: quickly, frequently, and from the comfort of your own home" ; - sc:name "Mezurio smartphone application" ; - sc:url "https://mezur.io" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3382, @@ -47325,7 +38151,7 @@ Gene expression microarrays capture a complete image of all the transcriptional sc:url "http://irzamsarfraz.com/mica/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168, @@ -47341,14 +38167,14 @@ Gene expression microarrays capture a complete image of all the transcriptional a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2830 ; @@ -47366,7 +38192,7 @@ Gene expression microarrays capture a complete image of all the transcriptional biotools:primaryContact "Mikhail Shugay" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0659, @@ -47388,7 +38214,7 @@ Given a fasta file containing DNA fasta sequences, for each sequence, MiPepid wi sc:url "https://github.com/MindAI/MiPepid" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3400, @@ -47410,14 +38236,14 @@ Given a fasta file containing DNA fasta sequences, for each sequence, MiPepid wi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0160, edam:topic_2830 ; @@ -47436,7 +38262,7 @@ Given a fasta file containing DNA fasta sequences, for each sequence, MiPepid wi sc:url "https://milaboratory.com/software/mixcr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3301 ; sc:citation , @@ -47453,7 +38279,7 @@ Given a fasta file containing DNA fasta sequences, for each sequence, MiPepid wi sc:url "http://www.microhibro.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697, @@ -47469,72 +38295,57 @@ Given a fasta file containing DNA fasta sequences, for each sequence, MiPepid wi sc:name "MicroPro" ; sc:url "https://github.com/zifanzhu/MicroPro" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_0780, - edam:topic_3512 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'genes,42', '4014', 'miRNAs', 'G...,GC' | Discovery Function Labels Based On Numerical Features Of MicroRNA Found In Plant | Abstract MicroRNAs(miRNAs),are a class of small endogenous non-coding RNAs that play Important post-transcriptional regulation role by degrading targeted mRNAs or repressing mRNA translation. We screened 84 miRNAs belonging to 21 conserved family from 4014 miRNAs in miRBase database which distributed in 47 plant species. Of the predicted 274 target genes,42 GO terms were found in the Gene Ontology. With the 135 numerical features which extracted by perl program, the difference significantly result of ANOVA (P<0.001) and multiple comparison show that the function labels G…,GC content and Helix in biological process, cellular component and biological function, respectively" ; - sc:featureList edam:operation_0463, - edam:operation_3501, - edam:operation_3792 ; - sc:name "MicroRNAs(miRNAs),are" ; - sc:url "https://doi.org/10.1101/770875" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ], + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "RNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ], + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "RNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1098" ; - sc:name "RefSeq accession" ; - sc:sameAs "http://edamontology.org/data_1098" ], + sc:additionalType "http://edamontology.org/data_1098" ; + sc:name "RefSeq accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ], + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1098" ; - sc:name "RefSeq accession" ; - sc:sameAs "http://edamontology.org/data_1098" ], + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ], + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "RNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ], + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_1098" ; + sc:name "RefSeq accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2166" ; - sc:name "Sequence composition plot" ; - sc:sameAs "http://edamontology.org/data_2166" ], + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "Sequence report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2166" ; + sc:name "Sequence composition plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Web application", "Workbench" ; @@ -47590,7 +38401,7 @@ Given a fasta file containing DNA fasta sequences, for each sequence, MiPepid wi biotools:primaryContact "LABGeM - CEA/Genosocope - UMR8030" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697, @@ -47605,7 +38416,7 @@ Given a fasta file containing DNA fasta sequences, for each sequence, MiPepid wi sc:url "https://github.com/klincke/MicroWineBar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0625, @@ -47622,7 +38433,7 @@ Microbial communities are an incredibly fascinating and genetically diverse set sc:url "https://microbe.directory" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -47639,32 +38450,8 @@ Abstract Microbiome-host interactions are important to nearly all living organis sc:name "MicrobioLink" ; sc:url "https://github.com/korcsmarosgroup/HMIpipeline" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_0659, - edam:topic_3174, - edam:topic_3697, - edam:topic_3837 ; - sc:citation , - "pubmed:31848574" ; - sc:description """Current challenges and best-practice protocols for microbiome analysis. - -Current Challenges and Best Practice Protocols for Microbiome Analysis using Amplicon and Metagenomic Sequencing. - -This review paper (https://doi.org/10.1093/bib/bbz155) aims to provide a comprehensive workflow to perform amplicon and shotgun metagenomics analysis. There are two workflows provided. First workflow for amplicon, using the standard mothur and dada2, and along with it some standard visualization are provided for the processed data. Second workflow for metagenomics, using a variety of tools openly available which have been stitched together to form a usable pipeline. - -Both the workflows are controlled by bash scripts: amplicon_analysis.sh and metagenomics_analysis.sh. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'best-practice', 'microbiome' (bio.tools/microbiome), 'flood', 'binning'""" ; - sc:featureList edam:operation_0310, - edam:operation_3184, - edam:operation_3460 ; - sc:license "MIT" ; - sc:name "MicrobiomeBestPracticeReview" ; - sc:url "https://github.com/grimmlab/MicrobiomeBestPracticeReview" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697 ; @@ -47682,7 +38469,7 @@ Both the workflows are controlled by bash scripts: amplicon_analysis.sh and meta biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3063, @@ -47695,47 +38482,20 @@ Both the workflows are controlled by bash scripts: amplicon_analysis.sh and meta sc:name "Microdatasus" ; sc:url "http://datasus.saude.gov.br/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0769, - edam:topic_3382, - edam:topic_3489 ; - sc:citation , - "pubmed:31667690" ; - sc:description """A simple, web-based repository for the management, access and analysis of micrographic images. - -Microscopy is advancing at a rapid pace, enabling high-speed, high-resolution analyses to be conducted in a wide range of cellular contexts. For example, the capacity to quickly capture high-resolution images from multiple optical sections over multiple channels with confocal microscopy has allowed researchers to gain deeper understanding of tissue morphology via techniques such as three-dimensional rendering, as have more recent advances such as lattice light sheet microscopy and superresolution structured illumination microscopy. With this, though, comes the challenge of storing, curating, analysing and sharing data. While there are ways in which this has been attempted previously, few approaches have provided a central repository in which all of these different aspects of microscopy can be seamlessly integrated""" ; - sc:featureList edam:operation_3443, - edam:operation_3552, - edam:operation_3553 ; - sc:name "Microndata" ; - sc:url "http://www.microndata.net/" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3835" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3835" ; + sc:name "Mass spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3835" ; + sc:name "Mass spectrum" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3955 ; @@ -47753,30 +38513,8 @@ Microscopy is advancing at a rapid pace, enabling high-speed, high-resolution an sc:softwareVersion "0.0.1.0" ; sc:url "https://github.com/seliv55/ramidcor" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_2885, - edam:topic_3170, - edam:topic_3512 ; - sc:citation , - "pubmed:31856668" ; - sc:description """Predict microRNA target gene using an improved binding-site representation method and support vector machine. - -microRNA.org - Targets and Expression. - -Predicted microRNA targets & target downregulation scores. Experimentally observed expression patterns. - -August 2010 Release Last Update: 2010-11-01 [ release notes ]. - -fuzzy search ("let-7" will match "let-7a", "let-7b", etc.)""" ; - sc:featureList edam:operation_0463, - edam:operation_2421, - edam:operation_2575 ; - sc:name "Min3" ; - sc:url "http://microRNA.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3293, @@ -47799,20 +38537,8 @@ This repository contains the primary Nextflow workflow (minion_bacterial.nf) for sc:name "MinION" ; sc:url "https://github.com/jvolkening/minion_bacterial" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0780, - edam:topic_3174, - edam:topic_3837 ; - sc:citation ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Sourmash MetaMaps', 'strain-level', 'MetaMaps', 'LINbase' | Strain-level identification of bacterial tomato pathogens directly from metagenomic sequences | MinION is a powerful, portable sequencing device that delivers immediate access to gigabases of long-read data. The pocked-sized, USB-powered MinION allows you to sequence anything, anywhere — from the bench to the field — with real-time analysis providing immediate access to actionable results. The same long-read, direct RNA and DNA sequencing workflows are available across our products, providing truly scalable sequencing. Download the brochure to view detailed information about the features and benefits of MinION" ; - sc:featureList edam:operation_0310, - edam:operation_3185, - edam:operation_3840 ; - sc:name "MinIONTM" ; - sc:url "http://nanoporetech.com/resource-centre/minion-brochure" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3174, @@ -47834,7 +38560,7 @@ This repository contains the primary Nextflow workflow (minion_bacterial.nf) for biotools:primaryContact "David C. Danko" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -47854,41 +38580,8 @@ BACKGROUND:Long read sequencing technologies such as Oxford Nanopore can greatly sc:name "MiniScrub" ; sc:url "https://bitbucket.org/berkeleylab/jgi-miniscrub" . - a sc:SoftwareApplication ; - sc:additionalType "Web application" ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_3320, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6717393", - "pubmed:31470809" ; - sc:description "Identification of new minor intron-containing genes and tissue-dependent retention and alternative splicing of minor introns | Welcome to the minor intron database (MIDB)! | Minor introns, or U12-type introns, were initially identified based on their divergent terminal dinucleotide sequences (Jackson, 1991) | MIDB contains the most recent information on minor introns and the genes they are found in, also called MIGs (minor intron-containing genes) | Species: Mus musculus Homo sapiens All" ; - sc:featureList edam:operation_0264, - edam:operation_0446, - edam:operation_3501 ; - sc:name "Minor intron splicing revisited" ; - sc:url "https://midb.pnb.uconn.edu" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3318, - edam:topic_3399 ; - sc:citation , - "pmcid:PMC6845822" ; - sc:description """IMPLEMENTING THE AGE-FRIENDLY HEALTH SYSTEM INTO CVSMINUTE CLINICS. - -AbstractEach day, 10,000 individuals in the United States turn 65 and nearly 30% of our nation’s 884 million ambulatory care visits involve patients ages 65 and older. With this trend, the use of convenient care settings for treatment for chronic conditions associated with aging such as diabetes and hypertension is emerging. The need for the delivery of age-friendly care in convenient care settings is essential to ensure high quality and safe care. CVS MinuteClinic® and the Institute for Healthcare Improvement (IHI) will present the plan and preliminary findings for the extension of the IHI’s Age-Friendly Health Systems initiative into the CVS MinuteClinic. - -||| HOMEPAGE BROKEN!. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/Diffeomorphic (IC.OUP.COM). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Age-Friendly', 'IHI Age-Friendly', 'Epic', 'Clinic'""" ; - sc:name "MinuteClinic" ; - sc:url "http://ic.oup.com" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172 ; @@ -47907,7 +38600,7 @@ AbstractEach day, 10,000 individuals in the United States turn 65 and nearly 30% biotools:primaryContact "Yonghui Dong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -47924,7 +38617,7 @@ AbstractEach day, 10,000 individuals in the United States turn 65 and nearly 30% sc:url "https://github.com/omics-tools/mitoimp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3384, @@ -47943,25 +38636,8 @@ AbstractEach day, 10,000 individuals in the United States turn 65 and nearly 30% sc:url "https://github.com/sjfandrews/MitoImpute" ; biotools:primaryContact "Shea J. Andrews" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0625, - edam:topic_3382, - edam:topic_3512 ; - sc:citation , - "pubmed:31580394" ; - sc:description """user-friendly semi-automatic software for lineage tracking in living embryos. - -MOTIVATION:During development, progenitor cells undergo multiple rounds of cellular divisions during which transcriptional programs must be faithfully propagated. Investigating the timing of transcriptional activation, which is a highly stochastic phenomenon, requires the analysis of large amounts of data. In order to perform automatic image analysis of transcriptional activation, we developed a software that segments and tracks both small and large objects, leading the user from raw data up to the results in their final form. RESULTS:MitoTrack is a user-friendly open-access integrated software that performs the specific dual task of reporting the precise timing of transcriptional activation while keeping lineage tree history for each nucleus of a living developing embryo. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'AVAILABILITY:MitoTrack', 'RESULTS:MitoTrack'""" ; - sc:name "MitoTrack" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31580394" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3697, @@ -47976,7 +38652,7 @@ MOTIVATION:During development, progenitor cells undergo multiple rounds of cellu sc:url "https://github.com/sahatava/MixMPLN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3300, edam:topic_3382, @@ -47994,7 +38670,7 @@ MOTIVATION:During development, progenitor cells undergo multiple rounds of cellu biotools:primaryContact "Gregorio Moreno-Rueda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -48011,7 +38687,7 @@ This repository contains our R-package MoBPS and the associated packages (miracu sc:url "https://github.com/tpook92/MoBPS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -48034,7 +38710,7 @@ This command will create a list of variants falling within segmental duplication sc:url "https://github.com/freeseek/mocha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -48058,7 +38734,7 @@ A genome graph browser for visualization of structural variants (SVs) as a varia sc:url "https://github.com/MoMI-G/MoMI-G" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -48074,7 +38750,7 @@ A genome graph browser for visualization of structural variants (SVs) as a varia sc:url "https://gsponerlab.msl.ubc.ca/software/morf_chibi/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -48093,7 +38769,7 @@ BACKGROUND:Molecular recognition features (MoRFs) are one important type of diso sc:url "https://github.com/HHJHgithub/MoRFs_MPM/tree/master/github_code_MPM_MoRFs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0153, edam:topic_3520 ; @@ -48112,22 +38788,8 @@ BACKGROUND:Molecular recognition features (MoRFs) are one important type of diso biotools:primaryContact "C. Ieritano", "W. S. Hopkins" . - a sc:SoftwareApplication ; - sc:citation , - "pmcid:PMC6917555", - "pubmed:31853450" ; - sc:description """new mobile app to engage visuospatial processing for the reduction of intrusive visual memories. - -Intrusive memories are a key symptom of posttraumatic stress disorder (PTSD), a prevalent condition causing considerable personal suffering, and entailing large direct and indirect societal costs. While effective treatment options for PTSD exist, on a global scale they are not readily available to many patients in need. In the last years, several studies have shown that the computer game Tetris can reduce the frequency of intrusive memories in healthy subjects (after a trauma analogue), in populations at high risk of developing PTSD, as well as in patients already suffering from PTSD. The presumed mechanism behind this effect is that both Tetris and intrusions require-and therefore compete for-limited visuospatial working memory resources. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0337, - edam:operation_2409 ; - sc:name "Mobilum" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31853450" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, @@ -48147,7 +38809,7 @@ Intrusive memories are a key symptom of posttraumatic stress disorder (PTSD), a biotools:primaryContact "TrinhLab - University of Tennessee Knoxville" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0218, @@ -48172,26 +38834,21 @@ Saman Farahmand, Todd Riley, Kourosh Zarringhalam, "ModEx: A text mining system a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -48215,7 +38872,7 @@ Saman Farahmand, Todd Riley, Kourosh Zarringhalam, "ModEx: A text mining system sc:url "http://intermine.modencode.org/release-33" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -48238,7 +38895,7 @@ Saman Farahmand, Todd Riley, Kourosh Zarringhalam, "ModEx: A text mining system biotools:primaryContact "Eivind Almaas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3293, @@ -48252,7 +38909,7 @@ Saman Farahmand, Todd Riley, Kourosh Zarringhalam, "ModEx: A text mining system sc:url "https://github.com/ddarriba/modeltest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -48275,59 +38932,8 @@ ModelX is a toolsuite for biomolecular modeling inspired on the assumption that sc:name "ModelX" ; sc:url "http://modelx.crg.es" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0218, - edam:topic_0602, - edam:topic_0621 ; - sc:citation , - "pmcid:PMC6731580", - "pubmed:31492098" ; - sc:description "> LOW CONFIDENCE! | > NAME (Model) SIMILAR TO (PUB. DIFFERENT) bio.tools/model (MoDEL) | > CORRECT NAME OF TOOL COULD ALSO BE 'models' | Model annotation and discovery with the Physiome Model Repository | A web-based epithelial transport discovery, exploration and recommendation tool | Model discovery with the Physiome Model Repository | Model discovery tool is a web-based epithelial transport discovery, exploration and recommendation tool. It allows users to discover, explore and recommend CellML models of interest. This tool is deployed at this address: http://model-discovery-tool.nectar.auckland.ac.nz; as a demonstration of the capabilities described is the paper: https://doi.org/10.1186/s12859-019-2987-y" ; - sc:featureList edam:operation_2422, - edam:operation_2426, - edam:operation_3431 ; - sc:license "MIT" ; - sc:name "Model_autogenerated" ; - sc:url "https://github.com/dewancse/model-discovery-tool" . - - a sc:SoftwareApplication ; - sc:additionalType "Command-line tool" ; - sc:applicationSubCategory edam:topic_3263, - edam:topic_3316, - edam:topic_3489 ; - sc:citation ; - sc:description """A design pattern for networked, data-intensive science. - -Hello Guest Register Now Sign In : Forgot Password?. - -BPRC Arctic System Reanalysis (ASR). - -ECMWF 20th Century Reanalysis (ERA-20C)""" ; - sc:featureList edam:operation_0337, - edam:operation_3760 ; - sc:name "Modern Research Data Portal" ; - sc:url "https://docs.globus.org/mrdp" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0749, - edam:topic_2830, - edam:topic_3297, - edam:topic_3400 ; - sc:citation ; - sc:description """A computational method for modifying nanobodies to improve their antigen binding affinity and specificity. - -Abstract Nanobodies are special derivatives of antibodies, which consist of only a single chain. Their hydrophilic side prevents them from having the solubility and aggregation problems of conventional antibodies, and they retain the similar size and affinity of the binding area to the antigen. Nanobodies have become of considerable interest for next-generation biotechnological tools for antigen recognition. They can be easily engineered due to their high stability and compact size. They have three complementarity determining regions, CDRs, which are enlarged to provide a similar binding surface to that of regular antibodies. The binding residues are more exposed to the environment. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Nanobodies', 'CDRs', 'nanobodies.1', '2VYR'""" ; - sc:featureList edam:operation_3436 ; - sc:name "ModiBodies" ; - sc:url "https://doi.org/10.1101/820373" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0601 ; @@ -48342,37 +38948,16 @@ Abstract Nanobodies are special derivatives of antibodies, which consist of only sc:url "https://cusbg.github.io/MolArt/" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0769, - edam:topic_3047, - edam:topic_3172, - edam:topic_3520 ; - sc:citation , - "pubmed:31729668" ; - sc:description """A Protocol for Acquiring and Integrating MS3 Data to Improve In Silico Chemical Structure Elucidation for Metabolomics. - -Structure elucidation of metabolites (<1000 Da) in biofluids is extremely challenging due to the diversity and complexity of chemical structure space. Generally, due to lack of reference tandem mass data (MS2), in silico fragmenters are used to rank candidates acquired from chemical databases as a function on how well they explain an experimental collision-induced dissociation spectrum. However, multistage fragmentation data (i.e., MS3) have not been adequately utilized in current metabolomics structure elucidation pipelines. To address this shortcoming, here we describe an experimental (nontargeted direct infusion ion mobility-mass spectrometry-based) and computational workflow to acquire and utilize multistage mass (MS3) spectrometry data for database-assisted structure elucidation. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'MS3'""" ; - sc:featureList edam:operation_3629, - edam:operation_3803, - edam:operation_3907 ; - sc:name "MolFind2" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31729668" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0990" ; - sc:name "Compound name" ; - sc:sameAs "http://edamontology.org/data_0990" ] ; + sc:additionalType "http://edamontology.org/data_0990" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Compound name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Experiment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3068, @@ -48396,37 +38981,8 @@ Structure elucidation of metabolites (<1000 Da) in biofluids is extremely challe sc:url "http://molmedb.upol.cz" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0077, - edam:topic_0154, - edam:topic_0593, - edam:topic_2828 ; - sc:citation , - "pmcid:PMC6933861", - "pubmed:31724275" ; - sc:description """CaBLAM for CryoEM backbone, UnDowser to rethink "waters," and NGL Viewer to recapture online 3D graphics. - -File Upload/Retrieval (more options). - -CCTBX, which powers this version of MolProbity (4.2), requires stricter adherence to PDB format. If you are having trouble with version 4.2 try using MolProbity4 legacy version 4.02 at http://rutile.biochem.duke.edu. Note that not all features are supported on legacy 4.02 and we suggest repairing your PDB format instead. - -type: PDB coords PDB coords & xray data Biol. unit (PDB only) Biol. unit & xray data (PDB only) 2Fo-Fc map (EDS) Fo-Fc map (EDS). - -type: PDB coords xray data (mtz format) kinemage ED map het dict. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/molprobity. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/Protein-sol (MANCHESTER.AC.UK). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'NGL', 'New tools MolProbity validation', 'UnDowser'""" ; - sc:featureList edam:operation_0321, - edam:operation_0479, - edam:operation_3891 ; - sc:name "MolProbity_autogenerated" ; - sc:url "http://molprobity.manchester.ac.uk" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -48444,26 +39000,8 @@ type: PDB coords xray data (mtz format) kinemage ED map het dict. sc:url "https://github.com/ugobas/Molecular_clock" ; biotools:primaryContact "Ugo Bastolla" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0611, - edam:topic_2828 ; - sc:citation , - "pmcid:PMC6933852", - "pubmed:31605409" ; - sc:description """A platform for interactive presentations of electron density and cryo-EM maps and their interpretations. - -In the Special Issue on Tools for Protein Science in 2018, we presented Molstack: a concept of a cloud-based platform for sharing electron density maps and their interpretations. Molstack is a web platform that allows the interactive visualization of density maps through the simultaneous presentation of multiple datasets and models in a way that allows for easy pairwise comparison. We anticipated that the users of this conceptually simple platform would find many different uses for their projects, and we were not mistaken. We have observed researchers use Molstack to present experimental evidence for their models in the form of electron density maps, omit maps, and anomalous difference density maps. Users also employed Molstack to present alternative interpretations of densities, including rerefinements and speculative interpretations. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0337, - edam:operation_2428, - edam:operation_2429 ; - sc:name "Molstack" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31605409" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -48485,7 +39023,7 @@ Securely share & discuss patients with colleagues all around the world.""" ; sc:url "https://monarchinitiative.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3300 ; @@ -48500,7 +39038,7 @@ Securely share & discuss patients with colleagues all around the world.""" ; sc:url "https://monkeylogic.nimh.nih.gov/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169, @@ -48528,7 +39066,7 @@ Securely share & discuss patients with colleagues all around the world.""" ; "Sébastien Vigneau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3179, @@ -48551,29 +39089,8 @@ Securely share & discuss patients with colleagues all around the world.""" ; "Svetlana Vinogradova", "Sébastien Vigneau" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2840, - edam:topic_3305, - edam:topic_3394 ; - sc:citation , - "pubmed:31486846" ; - sc:description "> CORRECT NAME OF TOOL COULD ALSO BE 'evidence-informed policy-making' | Public health and evidence-informed policy-making | Monsanto Ordered to Pay $289 Million in Roundup Cancer Trial | Monsanto WHO glyphosate ruling cancer | The lawsuit was the first to go to trial alleging that the company’s weedkillers cause cancer. Monsanto faces more than 5,000 similar lawsuits across the United States | It is the most widely used herbicide in the world. It is the main ingredient in their flagship product, Roundup, the bedrock on which their firm has built its economic model, its wealth and its reputation | The Monsanto Papers, Part 2 — Reaping a bitter harvest | In order to save glyphosate, the Monsanto corporation has undertaken an effort to destroy the United Nations' cancer agency by any means possible. Here is part two of an investigation from Le Monde | We've detected unusual activity from your computer network | To continue, please click the box below to let us know you're not a robot" ; - sc:name "Monsanto" ; - sc:url "https://www.nytimes.com/2018/08/10/business/monsanto-roundup-cancer-trial.html" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0202, - edam:topic_3063, - edam:topic_3419 ; - sc:citation , - "pmcid:PMC6694287", - "pubmed:31440495" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'mood' | An Exploration of Game Interface Preferences in Users With/Out Mood Disorder | Mental health conditions pose a major challenge to healthcare providers and society at large. The World Health Organization predicts that by 2030 mental illnesses will be the leading disease burden globally. Mental health services are struggling to meet the needs of users and arguably fail to reach large proportions of those in need. According to New Zealand Mental Health Foundation, one in five will experience a serious mood disorder, including depression, at some time in their life. Games for Health including those supporting mental health have recently gained a lot of attention" ; - sc:name "MoodJumper" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31440495" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623 ; sc:description "MoonDB is a database containing predicted Extreme Multifunctional (EMF) proteins (i.e. proteins with several unrelated functions), as well as a set of manually curated moonlighting proteins. Moonlighting proteins are a subclass of multifunctional proteins." ; @@ -48581,7 +39098,7 @@ Securely share & discuss patients with colleagues all around the world.""" ; sc:url "http://moondb.hb.univ-amu.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0632, @@ -48604,28 +39121,8 @@ Securely share & discuss patients with colleagues all around the world.""" ; sc:url "http://morphocatcher.ru" ; biotools:primaryContact "Fedor V. Shirshikov" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_3489, - edam:topic_3810 ; - sc:citation , - "pubmed:31676967" ; - sc:description """A derivational morphological database for 38,840 French words. - -Lexical database for ~38k French words with morphological variables. - -See the paper for details on each field. - -Mailhot, H., Wilson, M. A., Macoir, J., Deacon, S. H., & Sánchez-Gutiérrez, C. (2019). MorphoLex-FR: A derivational morphological database for 38,840 French words. Behavior Research Methods. https://doi.org/10.3758/s13428-019-01297-z""" ; - sc:featureList edam:operation_0224, - edam:operation_0337, - edam:operation_3659 ; - sc:license "CC-BY-4.0" ; - sc:name "MorphoLex-FR" ; - sc:url "https://github.com/hugomailhot/MorphoLex-FR" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -48646,7 +39143,7 @@ PDZ domains bind the extreme C-terminus of target proteins and are critical comp sc:url "http://motifAnalyzerPDZ.cs.wwu.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -48672,7 +39169,7 @@ Quality control (QC) procedure in MouseBytes checks the content of xml files aga sc:url "http://mousebytes.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0654, @@ -48699,7 +39196,7 @@ Already have an account? Sign In. sc:url "https://phenome.jax.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0602, @@ -48724,7 +39221,7 @@ Phongthana Pasookhush, Charles Hindmarch, Siwaporn Longyant, Paisarn Sithigorngu sc:url "https://github.com/prawnseq/Mrosenbergii_MrNV_RNAseq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -48743,7 +39240,7 @@ Phongthana Pasookhush, Charles Hindmarch, Siwaporn Longyant, Paisarn Sithigorngu biotools:primaryContact "Oscar L. Rodriguez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, @@ -48763,7 +39260,7 @@ The python script for MtBNN. The help information can be obtain by""" ; sc:url "https://github.com/Zoesgithub/MtBNN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0154, @@ -48785,7 +39282,7 @@ MuLiMs-MCoMPAs software is for the calculation of 3D bio macromolecular (protein sc:url "http://tomocomd.com/mulims-mcompas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -48803,7 +39300,7 @@ This is the repository for "Mutation effect estimation on protein-protein intera sc:url "https://github.com/guangyu-zhou/MuPIPR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0199, @@ -48829,7 +39326,7 @@ This is the repository for "Mutation effect estimation on protein-protein intera biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0602 ; @@ -48846,7 +39343,7 @@ This is the repository for "Mutation effect estimation on protein-protein intera biotools:primaryContact "Jack A.M. Leunissen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "A plug-in to the Galaxy bioinformatics workbench which enables visualization of mass spectrometry-based proteomics data integrated with genomic and/or transcriptomic sequencing data. Useful for verifying quality of results and characterizing novel peptide sequences identified using a multi-omic proteogenomic approach." ; sc:isAccessibleForFree true ; sc:license "MIT" ; @@ -48854,25 +39351,8 @@ This is the repository for "Mutation effect estimation on protein-protein intera sc:softwareHelp ; sc:url "https://github.com/galaxyproteomics/mvpapplication-git.git" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2229, - edam:topic_3047, - edam:topic_3382 ; - sc:citation , - "pubmed:31795419" ; - sc:description """A Software Tool for High-Throughput Real-Time Measurement of Intensity-Based Ratio-Metric FRET. - -Förster resonance energy transfer (FRET) is increasingly used for non-invasive measurement of fluorescently tagged molecules in live cells. In this study, we have developed a freely available software tool MultiFRET, which, together with the use of a motorised microscope stage, allows multiple single cells to be studied in one experiment. MultiFRET is a Java plugin for Micro-Manager software, which provides real-time calculations of ratio-metric signals during acquisition and can simultaneously record from multiple cells in the same experiment. It can also make other custom-determined live calculations that can be easily exported to Excel at the end of the experiment. It is flexible and can work with multiple spectral acquisition channels. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3435, - edam:operation_3436, - edam:operation_3552 ; - sc:name "MultiFRET" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31795419" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0654, @@ -48891,7 +39371,7 @@ Förster resonance energy transfer (FRET) is increasingly used for non-invasive biotools:primaryContact "Jianxin Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3056, @@ -48911,7 +39391,7 @@ Förster resonance energy transfer (FRET) is increasingly used for non-invasive biotools:primaryContact "Shuhua Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3337, @@ -48932,7 +39412,7 @@ Förster resonance energy transfer (FRET) is increasingly used for non-invasive sc:url "https://github.com/hakyimlab/MetaXcan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:citation "pmcid:PMC6927681", "pubmed:31871433" ; @@ -48949,7 +39429,7 @@ multilayer.extraction(): identify densely connected vertex-layer communities wit sc:url "https://github.com/jdwilson4/MultilayerExtraction" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, @@ -48963,36 +39443,15 @@ multilayer.extraction(): identify densely connected vertex-layer communities wit sc:url "https://github.com/gevaertlab/MultimodalPrognosis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "This is the dockerized environment for the winning algorithm in the 2017 Multiple Myeloma DREAM Challenge, Sub-Challenge 3." ; sc:license "GPL-3.0" ; sc:name "Multiple Myeloma survival prediction" ; sc:operatingSystem "Linux" ; sc:url "https://www.synapse.org/#!Synapse:syn11459638" . - a sc:SoftwareApplication ; - sc:additionalType "Command-line tool" ; - sc:applicationSubCategory edam:topic_3070, - edam:topic_3315, - edam:topic_3318 ; - sc:citation , - "pmcid:PMC6768458", - "pubmed:31568526" ; - sc:description """Mathematical modelling of collective behaviour without the maths. - -Multiscale Modelling Tool - mathematical modelling without the maths. - -MuMoT: Multiscale Modelling Tool. - -MuMoT (Multiscale Modelling Tool) is a tool designed to allow sophisticated mathematical modelling and analysis, without writing equations - the class of models that can be represented is broad, ranging from chemical reaction kinetics to demography and collective behaviour - by using a web-based interactive interface with minimal coding, rapid development and exploration of models is facilitated - the tool may also be particularly useful for pedagogical demonstrations""" ; - sc:featureList edam:operation_2426, - edam:operation_3435 ; - sc:license "GPL-3.0" ; - sc:name "Multiscale Modelling Tool" ; - sc:url "http://github.com/DiODeProject/MuMoT/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382 ; @@ -49007,7 +39466,7 @@ Because manual immunohistochemical analysis of features such as skeletal muscle sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31697593" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3308, @@ -49029,7 +39488,7 @@ Because manual immunohistochemical analysis of features such as skeletal muscle biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -49048,7 +39507,7 @@ Somatic mutation and gene expression dysregulation are considered two major tumo sc:url "http://www.innovebioinfo.com/Databases/Mutationdb_About.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web service" ; sc:applicationSubCategory edam:topic_0199, @@ -49073,7 +39532,7 @@ Somatic mutation and gene expression dysregulation are considered two major tumo biotools:primaryContact "Michael S. Lawrence" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -49087,14 +39546,12 @@ Somatic mutation and gene expression dysregulation are considered two major tumo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3510 ; sc:citation ; @@ -49106,7 +39563,7 @@ Somatic mutation and gene expression dysregulation are considered two major tumo sc:url "https://mutaframe.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -49127,7 +39584,7 @@ Somatic mutation and gene expression dysregulation are considered two major tumo biotools:primaryContact "Volkhard Helms" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, @@ -49150,7 +39607,7 @@ MutateX: an automated pipeline for in-silico saturation mutagenesis of protein s sc:url "https://github.com/ELELAB/mutatex" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0736, @@ -49172,7 +39629,7 @@ MutateX: an automated pipeline for in-silico saturation mutagenesis of protein s biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0605, @@ -49199,19 +39656,8 @@ MySeq is a single-page web application for privacy-protecting personal genome an sc:name "MySeq" ; sc:url "https://go.middlebury.edu/myseq-demo" . - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31669627" ; - sc:description """A novel smartphone application for women with or at risk of diabetes during pregnancy. - -Mobile health (mHealth) applications (apps) have been recently introduced as an easily accessible tool for providing information to pregnant women with diabetes. Despite the growing number of apps on the topic "diabetes & pregnancy", a smartphone app offering comprehensive and individualized information to both women (before and during gestation) and their healthcare professionals was still missing. To overcome this lack, the Italian Diabetes and Pregnancy Study Group conceived and realized in 2016 a novel mobile app called "MySweetGestation". It is designed to be an interactive educational tool for both patients and physicians not expert in the field. - -||| HOMEPAGE MISSING!""" ; - sc:name "MySweetGestation" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31669627" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3304, @@ -49232,7 +39678,7 @@ Mobile health (mHealth) applications (apps) have been recently introduced as an biotools:primaryContact "Susan Barnett" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -49258,7 +39704,7 @@ Before attempting to install with bioconda, please ensure you have your channels sc:url "https://github.com/mykrobe-tools/mykrobe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -49283,27 +39729,8 @@ Myo-REG offers easy access to signaling information in the context of muscle reg sc:name "Myo-REG" ; sc:url "https://myoreg.uniroma2.it" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0601, - edam:topic_0736, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6828726", - "pubmed:31685900" ; - sc:description """a two-stage N-linked glycosylation site prediction incorporating gapped dipeptides and pattern-based encoding. - -Sequence (in FASTA format, the length of each protein must be larger than 30). - -E-mail address : (optional: results could be returned via e-mail.)""" ; - sc:featureList edam:operation_0267, - edam:operation_0303, - edam:operation_0417 ; - sc:name "N-GlyDE" ; - sc:url "http://bioapp.iis.sinica.edu.tw/N-GlyDE/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -49319,7 +39746,7 @@ E-mail address : (optional: results could be returned via e-mail.)""" ; sc:url "http://nglycositeatlas.biomarkercenter.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3170, @@ -49343,7 +39770,7 @@ E-mail address : (optional: results could be returned via e-mail.)""" ; "Yves A. Lussier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0632, @@ -49358,23 +39785,8 @@ E-mail address : (optional: results could be returned via e-mail.)""" ; sc:name "NACHO" ; sc:url "https://github.com/mcanouil/NACHO" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0634, - edam:topic_0749 ; - sc:citation , - "pubmed:31610584" ; - sc:description """A 2-step fast-track elastometry service for advanced workup of nonalcoholic fatty liver disease (NAFLD) patients. - -INTRODUCTION AND AIMS: Nonalcoholic fatty liver disease (NAFLD) is increasing globally with an estimated prevalence of approximately 25 %. Nonalcoholic steatohepatitis as the progressive disease entity often leads to fibrosis and end-stage disease. The magnitude of NAFLD patients are not diagnosed and have no access to further clinical assessment. Diagnostic pathways for individual risk evaluation fitting with available resources are of utmost importance in real-world clinical practice. METHODS: Retrospective analysis of 1346 anonymized outpatient datasets at Würzburg University Hospital, Germany. Transient elastography (TE) with controlled attenuation parameter and laboratory-based risk scores (NFS, FIB-4) were the main diagnostic workup tools for risk stratification. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3283 ; - sc:name "NAFLD" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31610584" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -49404,7 +39816,7 @@ Reference: Patiyal et. al. (2019) NAGbinder: An approach for identifying N-acety sc:url "https://webs.iiitd.edu.in/raghava/nagbinder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0780 ; @@ -49418,51 +39830,8 @@ Reference: Patiyal et. al. (2019) NAGbinder: An approach for identifying N-acety sc:operatingSystem "Linux" ; sc:url "http://sunlab.cpy.cuhk.edu.hk/NAMS/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3077, - edam:topic_3489 ; - sc:citation ; - sc:description """virtual globe for an open smart city. - -In this article, firstly the open source framework NASA World Wind is introduced. NASA World Wind comes mainly with two versions. The Java version is well established in the market and has many customers. On the other hand the new version, which is the Web version, Web World Wind, is still at the dawn of development cycle, with many features implemented and already used in several applications, with a great future ahead. Following the introduction of NASA World Wind, the features available in the Web World Wind are listed and a short comparison with Cesium library is provided. Additionally, an application developed in the smart cities context with Web World Wind is described. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Wind', 'NASA World Wind', 'World Wind', 'cities'""" ; - sc:name "NASA" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.2139V5" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3305, - edam:topic_3417, - edam:topic_3418 ; - sc:citation , - "pubmed:31777312" ; - sc:description """12 Components of a Strong Vision Health System of Care. - -National Association of School Nurses. - -Skip to main content (Press Enter). - -Skip auxiliary navigation (Press Enter). - -The mission of the National Association of School Nurses is to optimize student health and learning by advancing the practice of school nursing. - -The National Center for Children’s Vision and Eye Health at Prevent Blindness has partnered with the NASN to provide national guidance for school nurses and others involved in front-line vision screening. - -Listen to this podcast from the NASN School Nurse and learn more by reading the related article. - -Adverse Community Environments and Adverse Childhood Experiences. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Vision Health'""" ; - sc:featureList edam:operation_2422, - edam:operation_3096 ; - sc:name "NASN" ; - sc:url "https://www.nasn.org/nasn-resources/practice-topics/vision-health" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3068, @@ -49482,7 +39851,7 @@ Adverse Community Environments and Adverse Childhood Experiences. sc:url "https://integbio.jp/rdf/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -49498,7 +39867,7 @@ Adverse Community Environments and Adverse Childhood Experiences. sc:url "https://shka.github.io/NBGLM-LBC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2840, @@ -49520,63 +39889,14 @@ Adverse Community Environments and Adverse Childhood Experiences. sc:url "http://tripod.nih.gov/bioplanet/" ; biotools:primaryContact "Ruili Huang" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0121, - edam:topic_0621, - edam:topic_0659, - edam:topic_3697 ; - sc:citation , - "pmcid:PMC6811897", - "pubmed:31667223" ; - sc:description """Experimental data from flesh quality assessment and shelf life monitoring of high pressure processed European sea bass (Dicentrarchus labrax) fillets. - -Sequence Read Archive (SRA) makes biological sequence data available to the research community to enhance reproducibility and allow for new discoveries by comparing data sets. - -View results as an expanded interactive table using the RunSelector. - -Showing SRA Experiments for (projects. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/ncbi_resources (NLM.NIH.GOV), bio.tools/sra (NLM.NIH.GOV/sra), bio.tools/genbank (NLM.NIH.GOV). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'bass Dicentrarchus labrax fillets', 'HP-processed fillets', 'sea bass Dicentrarchus labrax fillets', 'Dicentrarchus labrax fillets'""" ; - sc:featureList edam:operation_3192, - edam:operation_3431, - edam:operation_3695, - edam:operation_3799 ; - sc:name "NCBI-SRA" ; - sc:url "https://www.ncbi.nlm.nih.gov/sra/(projects" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "domain sequence-NES site" ; sc:name "NCBI-protein" ; sc:url "https://www.ncbi.nlm.nih.gov/protein" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3390, - edam:topic_3399 ; - sc:citation , - "pmcid:PMC6685454", - "pubmed:31448099" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | Improved control of non-communicable diseases (NCDs) requires an additional advanced concept for public health | A major consequence of all elements of the 'epidemiological transition' is the rapid emergence of non-communicable diseases (NCDs) in low- and middle-income countries. In contrast to the outcomes of the 'Alma Ata Conference for Primary Health Care', it has not yet been possible to introduce an equally powerful health policy for the prevention and control of NCDs. Major strategies so far are to advise individuals not to smoke and drink alcohol in excess. Additionally, 'healthy' nutrition and increased physical activity are also advocated. Policy for preventing and working against NCDs is now part of the Sustainable Development Goals, specifically target 3.4. So far, attempts to soften the influence of NCDs on the health of the people in low- and middle-income countries have been unsuccessful" ; - sc:name "NCDs" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31448099" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_2258, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6646421", - "pubmed:31380352" ; - sc:description "> MEDIUM CONFIDENCE! | Predicting Synergism of Cancer Drug Combinations Using NCI-ALMANAC Data | Created by Unknown User (zaharevd), last modified on Dec 22, 2017 | 2D structures - ComboCompoundSet.sdf | Chemical Names - Single Name file, file with all available names" ; - sc:name "NCI-ALMANAC" ; - sc:url "https://wiki.nci.nih.gov/display/NCIDTPdata/NCI-ALMANAC" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -49601,7 +39921,7 @@ To analyze these data on NCPHLDA to further infer potential associations between sc:url "https://github.com/bryanze/NCPHLDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -49621,7 +39941,7 @@ Omics data come in different forms: gene expression, methylation, copy number, p sc:url "https://cran.r-project.org/web/packages/NCutYX/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -49636,44 +39956,8 @@ Omics data come in different forms: gene expression, methylation, copy number, p sc:name "NDD" ; sc:url "https://github.com/nrohani/NDD" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3399, - edam:topic_3419, - edam:topic_3855 ; - sc:citation , - "pmcid:PMC6701679", - "pubmed:31401609" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'NEEDS study' | a protocol for a cross-sectional smartphone tracking study and a longitudinal population register study | Dynamic Urban Environmental Exposures on Depression and Suicide | Depression is among the leading health burdens worldwide and people affected by depression have a higher suicide risk. Environmental exposures may act as potential stressors or buffers to people’s mental health status. How much the environment (e.g. urban design, green space, social interaction) contributes to depression and suicide risk remains unclear and evidence tends to be limited to the residential environment. NEEDS calls such environmental exposure assessments into question" ; - sc:featureList edam:operation_3435, - edam:operation_3501 ; - sc:name "NEEDS" ; - sc:url "http://www.needs.sites.uu.nl" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0634, - edam:topic_0659 ; - sc:citation , - "pmcid:PMC6740005", - "pubmed:31510919" ; - sc:description "A network embedding-based multiple information integration method for the MiRNA-disease association prediction | Code and data for “A network embedding-based multiple information integration method for the MiRNA-disease association prediction” | data/miRNA_disease.csv is the miRNA_disease association matrix, which contain 4479 associations between 412 miRNAs and 314 diseases | data/miRNA_family.csv is the miRNA_family association matrix, which contain 278 miRNA-family associations between 412 miRNAs and 278 families | NEMII_main.py implements 5-fold CV of NEMII on our dataset" ; - sc:featureList edam:operation_0463 ; - sc:name "NEMII" ; - sc:url "https://github.com/BioMedicalBigDataMiningLab/NEMII" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3314 ; - sc:citation , - "pmcid:PMC5091336", - "pubmed:31414701" ; - sc:description "> HOMEPAGE BROKEN! | adapting NERBio to chemical patents via full-token features and named entity feature with chemical sub-class composition | Chemical patents contain detailed information on novel chemical compounds that is valuable to the chemical and pharmaceutical industries. In this paper, we introduce a system, NERChem that can recognize chemical named entity mentions in chemical patents. NERChem is based on the conditional random fields model (CRF). Our approach incorporates ( 1 ) class composition, which is used for combining chemical classes whose naming conventions are similar; ( 2 ) BioNE features, which are used for distinguishing chemical mentions from other biomedical NE mentions in the patents; and ( 3 ) full-token word features, which are used to resolve the tokenization granularity problem" ; - sc:featureList edam:operation_3280, - edam:operation_3502 ; - sc:name "NERChem" ; - sc:url "http://cu.edu.tw/nerchem" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0196, @@ -49694,7 +39978,7 @@ Additional documentation through doxygen can be found within docs/ by opening in sc:url "https://github.com/mjohn218/NERDSS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3305, @@ -49710,7 +39994,7 @@ Additional documentation through doxygen can be found within docs/ by opening in sc:url "https://github.com/UTH-Tuan/NET-EXPO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -49724,7 +40008,7 @@ Additional documentation through doxygen can be found within docs/ by opening in sc:url "http://net-ge2.biocomp.unibo.it" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -49739,7 +40023,7 @@ Additional documentation through doxygen can be found within docs/ by opening in sc:url "https://github.com/maffleur/NETPAGE.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -49753,7 +40037,7 @@ Additional documentation through doxygen can be found within docs/ by opening in sc:url "https://github.com/priyamdas2/NExUS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -49776,7 +40060,7 @@ Additional documentation through doxygen can be found within docs/ by opening in biotools:primaryContact "Carlos Caldas's la" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3047, @@ -49793,7 +40077,7 @@ NGL Viewer is a web application for molecular visualization. WebGL is employed t sc:url "https://github.com/vbchen/ngl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -49804,7 +40088,7 @@ NGL Viewer is a web application for molecular visualization. WebGL is employed t sc:url "http://ngly1graph.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation , @@ -49821,7 +40105,7 @@ NGL Viewer is a web application for molecular visualization. WebGL is employed t sc:url "https://ngless.embl.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -49842,7 +40126,7 @@ NGL Viewer is a web application for molecular visualization. WebGL is employed t biotools:primaryContact "Insuk Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0625, @@ -49865,7 +40149,7 @@ NGL Viewer is a web application for molecular visualization. WebGL is employed t biotools:primaryContact "Jorge Duitama" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation , @@ -49883,7 +40167,7 @@ GSL.m : Core codes of GSL algorithm.""" ; sc:url "https://github.com/Fjr9516/GSL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -49899,7 +40183,7 @@ GSL.m : Core codes of GSL algorithm.""" ; sc:url "https://sourceforge.net/projects/ngsreadstreatment/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -49919,7 +40203,7 @@ The analysis pipeline can be run following instructions in the Python script pip sc:url "https://github.com/nh2tran/NIPT_WGS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -49941,7 +40225,7 @@ The analysis pipeline can be run following instructions in the Python script pip biotools:primaryContact "Lennart Johansson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3678 ; @@ -49963,7 +40247,7 @@ The analysis pipeline can be run following instructions in the Python script pip biotools:primaryContact "Daphne Ezer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -49983,23 +40267,8 @@ Non-negative Matrix Factorization-based Immune-TUmor MIcroenvironment Deconvolut sc:name "NITUMID" ; sc:url "https://github.com/tdw1221/NITUMID" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3418, - edam:topic_3489 ; - sc:citation , - "pubmed:31714800" ; - sc:description """Development of the New Jersey Safety and Health Outcomes (NJ-SHO) data warehouse. - -Objective: Our objective is to describe the development of the New Jersey Safety and Health Outcomes (NJ-SHO) data warehouse, a unique and comprehensive data source that integrates various state-level administrative databases in New Jersey to enable the field of traffic safety to address critical, high-priority research questions. Methods: We have obtained full identifiable data from the following statewide administrative databases for the state of New Jersey: (1) driver licensing database; (2) Administration Office of the Courts data on traffic-related citations; (3) police-reported crash database; (4) birth certificate data; (5) death certificate data; and (6) hospital discharge data as well as (7) childhood electronic records from New Jersey residents who were patients of the Children's Hospital of Philadelphia pediatric health care network and (8) census tract-level indicators. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0283 ; - sc:name "NJ-SHO" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31714800" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -50015,7 +40284,7 @@ Objective: Our objective is to describe the development of the New Jersey Safety sc:url "http://github.com/ekmolloy/njmerge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -50029,7 +40298,7 @@ Objective: Our objective is to describe the development of the New Jersey Safety sc:url "https://github.com/napakalas/NLIMED" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0634, @@ -50046,23 +40315,8 @@ nlp_ml is a command line script that performs natural language processing and ma sc:name "NLP ML" ; sc:url "http://github.com/pySRURGS/nlp_ml" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0218, - edam:topic_3377, - edam:topic_3384 ; - sc:citation , - "pmcid:PMC6809219" ; - sc:description """1184. Making Pneumonia Surveillance Easy. - -AbstractBackgroundPneumonia (PNU) is the second most common nosocomial infection in the United States and is associated with substantial morbidity and mortality. While definitions from CDC were developed to increase the reliability of surveillance data, reduce the burden of surveillance in healthcare facilities, and enhance the utility of surveillance data for improving patient safety - the algorithm is still laborious. We propose an implementation of a refined algorithm script which combines two CDC definitions with the use of natural language processing (NLP), a tool which relies on pattern matching to determine whether a condition of interest is reported as present or absent in a report, to automate PNU surveillance. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3503 ; - sc:name "NLP_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6809219/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -50078,7 +40332,7 @@ AbstractBackgroundPneumonia (PNU) is the second most common nosocomial infection sc:url "http://apps.cbu.uib.no/webnma/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3360, @@ -50097,7 +40351,7 @@ To use NMF-RI on new data (tissue or flow cytometry) we recommend to use the ´m sc:url "https://github.com/djimenezsanchez/Blind_Unmixing_NMF_RI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0593, @@ -50113,7 +40367,7 @@ To use NMF-RI on new data (tissue or flow cytometry) we recommend to use the ´m sc:url "http://github.com/systemsnmr/ivtnmr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -50125,20 +40379,8 @@ To use NMF-RI on new data (tissue or flow cytometry) we recommend to use the ´m sc:name "NMTF" ; sc:url "https://github.com/parks-cs-ccf/BayesianSNMTF" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3304, - edam:topic_3419 ; - sc:citation , - "pubmed:31797322" ; - sc:description """Lessons from the National Neuroscience Curriculum Initiative. - -OBJECTIVE:Individual residency programs often struggle to keep pace with scientific advances and new training requirements. Integrating a modern neuroscience perspective into the clinical practice of psychiatry is particularly emblematic of these challenges. The National Neuroscience Curriculum Initiative (NNCI) was established in 2013 to develop a comprehensive set of shared, open-access resources for teaching neuroscience in psychiatry. METHODS:The NNCI developed a collaborative, team-based approach with a peer-review process for generating and reviewing content. Teaching resources have included interactive sessions for the classroom paired with a comprehensive facilitator's guide. Brief accessible reviews and short videos have been developed for self-study and teaching in clinical settings. Dissemination efforts have included hands-on training for educators through national workshops""" ; - sc:name "NNCI" ; - sc:url "http://www.NNCIonline.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -50161,7 +40403,7 @@ The experimental data are downloaded from LncRNADiseas2.0 database""" ; sc:url "https://github.com/gao793583308/NNLDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3407, @@ -50179,7 +40421,7 @@ Daniel Leitold, Anges Vathy-Fogarassy, and Janos abonyi, NOCAD - Network based O sc:url "https://github.com/abonyilab/NOCAD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3071, @@ -50196,10 +40438,10 @@ Daniel Leitold, Anges Vathy-Fogarassy, and Janos abonyi, NOCAD - Network based O sc:isAccessibleForFree true ; sc:license "CC-BY-NC-SA-4.0" ; sc:name "NORINE" ; - sc:url "https://bioinfo.cristal.univ-lille.fr/norine/" . + sc:url "http://norine.univ-lille.fr/norine/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2840, @@ -50215,7 +40457,7 @@ Daniel Leitold, Anges Vathy-Fogarassy, and Janos abonyi, NOCAD - Network based O sc:url "https://github.com/philipmorrisintl/NPA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3474 ; @@ -50232,47 +40474,8 @@ By default, our algorithm reads in files X.csv and Y.csv, where the X and Y coor sc:name "NPD" ; sc:url "https://github.com/hz-zhu/NPD-micro-saccade-detection" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_2840, - edam:topic_3305, - edam:topic_3384, - edam:topic_3415 ; - sc:citation , - "pubmed:31752545" ; - sc:description """2018 Annual Report of the American Association of Poison Control Centers' National Poison Data System (NPDS). - -Introduction: This is the 36th Annual Report of the American Association of Poison Control Centers' (AAPCC) National Poison Data System (NPDS). As of 1 January, 2018, 55 of the nation's poison centers (PCs) uploaded case data automatically to NPDS. The upload interval was 7.72 [6.90, 12.0] (median [25%, 75%]) minutes, creating a near real-time national exposure and information database and surveillance system. Methods: We analyzed the case data tabulating specific indices from NPDS. The methodology was similar to that of previous years. Where changes were introduced, the differences are identified. Cases with medical outcomes of death were evaluated by a team of medical and clinical toxicologist reviewers using an ordinal scale of 1-6 to assess the Relative Contribution to Fatality (RCF) of the exposure. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'AAPCC'""" ; - sc:name "NPDS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31752545" . - - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31522286" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | A Novel Privacy-Preserving Mutual Authentication in TMIS for Mobile Edge-Cloud Architecture | Mobile Edge-Cloud Network is a new network structure after fog-cloud computing, where service and data computing are scattered in the most logical, nearby and efficient place. It provides better services than fog-cloud computing with better performance in reasonably low cost way and allows users to eliminate numerous limitations inherent in fog-cloud computing, although it inherits those security-privacy issues from fog-cloud computing. A novel privacy-preserving mutual authentication in TMIS for mobile Edge-Cloud architecture (abbreviated to NPMA) is constructed in this paper. NPMA scheme not only mitigates some weaknesses of fog-cloud computing, but has other advantages" ; - sc:name "NPMA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31522286" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0154, - edam:topic_3172 ; - sc:citation , - "pmcid:PMC6612854", - "pubmed:31510666" ; - sc:description "> NAME EQUAL TO (PUB. DIFFERENT) bio.tools/nps, bio.tools/nps-protein | > CORRECT NAME OF TOOL COULD ALSO BE 'IMPLEMENTATION:NPS' | scoring and evaluating the statistical significance of peptidic natural product-spectrum matches | NPS – Center for Algorithmic Biotechnology | NPS is an approach to scoring (NPScore) and evaluating the statistical significance (NPSignificance) of peptidic natural product-spectrum matches. It is embedded into Dereplicator and VarQuest pipelines" ; - sc:featureList edam:operation_3627, - edam:operation_3649, - edam:operation_3803 ; - sc:name "NPS_autogenerated" ; - sc:url "http://cab.spbu.ru/software/NPS" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0176, @@ -50290,7 +40493,7 @@ NRGXL: a tool to compute protein crosslinker conformations and energies""" ; sc:url "https://nrgxl.pasteur.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -50312,7 +40515,7 @@ The NRLcalc app provides a visual interface for the bulk calculation of the Nucl sc:url "https://github.com/chrisclarkson/NRLcalc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3382 ; @@ -50329,19 +40532,8 @@ The NRLcalc app provides a visual interface for the bulk calculation of the Nucl sc:softwareHelp ; sc:url "https://github.com/arttumiettinen/pi2" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0610, - edam:topic_0621, - edam:topic_3304 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'neuroscience', 'discovery-driven', 'neuroethology', 'non-genetically' | The state of discovery-driven neuroscience research and experimental organism usage in the United States | BIO Proposal Processing Changes (nsf11078) | NSF's mission is to advance the progress of science, a mission accomplished by funding proposals for research and education made by scientists, engineers, and educators from across the country | National Science Foundation - Where Discoveries Begin | As you are no doubt aware, the proposal workload across the Foundation has increased dramatically over the past decade | The National Science Foundation: A Brief History | Dear Colleague Letter: BIO Proposal Processing Changes" ; - sc:featureList edam:operation_3431 ; - sc:name "NSF" ; - sc:softwareHelp ; - sc:url "https://www.nsf.gov/publications/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -50360,7 +40552,7 @@ The NRLcalc app provides a visual interface for the bulk calculation of the Nucl biotools:primaryContact "Denis Kaznadzey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3697, @@ -50379,7 +40571,7 @@ The NRLcalc app provides a visual interface for the bulk calculation of the Nucl biotools:primaryContact "Paolo Zuliani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -50401,7 +40593,7 @@ A pipeline including a collection of scripts used to analyse NUMTs discovered in sc:url "https://github.com/robbueck/arcnumt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3168, @@ -50415,28 +40607,8 @@ A pipeline including a collection of scripts used to analyse NUMTs discovered in sc:name "NUQA" ; sc:url "https://github.com/ACRoddy/NUQA" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0091, - edam:topic_3361, - edam:topic_3372 ; - sc:citation , - "pmcid:PMC3898313", - "pubmed:24482760" ; - sc:description """Composable languages for bioinformatics. - -Tired of writing shell scripts with 30 years old technology? So were we. Welcome to NYoSh: Not Your ordinary Shell. - -NYoSh is designed as a modern replacement for Unix/Linux command line shells (BASH, TSCH, C shell, KSH, Bourne shell). NYoSh is built as a collection of languages implemented in the open-source Jetbrains MPS language workbench. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/goby_framework (CAMPAGNELAB.ORG). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'NYoSh Workbench'""" ; - sc:featureList edam:operation_1812 ; - sc:name "NYoSh" ; - sc:url "http://nyosh.campagnelab.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -50452,13 +40624,13 @@ NYoSh is designed as a modern replacement for Unix/Linux command line shells (BA sc:url "http://naples.naturalproducts.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "NaS is a hybrid approach developped to take advantage of data generated using MinION device. We combine Illumina and Oxford Nanopore technologies to produce NaS (Nanopore Synthetic-long) reads of up to 60 kb that aligned with no error to the reference genome and spanned repetitive regions." ; sc:name "NaS" ; sc:url "http://www.genoscope.cns.fr/nas/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -50477,7 +40649,7 @@ Abstract Background Variant detection from high-throughput sequencing data remai sc:url "https://github.com/WGLab/NanoCaller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -50501,7 +40673,7 @@ Abstract Background Variant detection from high-throughput sequencing data remai "Marcos Colebrook" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, @@ -50521,7 +40693,7 @@ This is the official repository for the NanoDefiner e-tool, a decision support f sc:url "https://fh.do/nanodefiner/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -50543,36 +40715,8 @@ This is the official repository for the NanoDefiner e-tool, a decision support f sc:url "https://github.com/WGLab/NanoMod" ; biotools:primaryContact "Wang Genomics Lab" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2885, - edam:topic_3174, - edam:topic_3673, - edam:topic_3697, - edam:topic_3837 ; - sc:citation , - "pubmed:31844297" ; - sc:description """Rapid MinION profiling of preterm microbiota and antimicrobial-resistant pathogens. - -Analysis tool for Nanopore sequencing data. - -Full documentation can be found at http://nanook.readthedocs.io/. - -Documentation at https://nanook.readthedocs.io/en/latest/reporter.html. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/nanook. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'NanoOK RT', 'MinION', 'RT'""" ; - sc:featureList edam:operation_0310, - edam:operation_3185, - edam:operation_3196, - edam:operation_3200, - edam:operation_3482 ; - sc:license "GPL-3.0" ; - sc:name "NanoOK_autogenerated" ; - sc:url "https://github.com/richardmleggett/NanoOK" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0199, @@ -50595,7 +40739,7 @@ Documentation at https://nanook.readthedocs.io/en/latest/reporter.html. sc:url "https://nanopipe.readthedocs.io/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation , @@ -50615,7 +40759,7 @@ Documentation at https://nanook.readthedocs.io/en/latest/reporter.html. biotools:primaryContact "Davide Bolognini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0160, @@ -50638,7 +40782,7 @@ Several tools exist to analyze tandem repeats (e.g. tandem-genotypes and RepeatH sc:url "https://github.com/arnederoeck/NanoSatellite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -50663,25 +40807,8 @@ Nanocompore compares 2 ONT nanopore direct RNA sequencing datasets from differen sc:name "Nanocompore" ; sc:url "https://github.com/tleonardi/nanocompore" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3400, - edam:topic_3419 ; - sc:citation , - "pmcid:PMC6730891", - "pubmed:31851647" ; - sc:description """National Preparedness Month. - -Center for Preparedness and Response. - -Centers for Disease Control and Prevention. CDC twenty four seven. Saving Lives, Protecting People. - -Every September, the Center for Preparedness and Response (CPR) along with its preparedness and response partners in government, private and public health, and academia come together to observe National Preparedness Month (NPM) and encourage year-round personal and community preparedness for disasters, disease outbreaks, and human-caused emergencies""" ; - sc:name "National Preparedness Month" ; - sc:url "https://www.cdc.gov/cpr/npm/npm2019.htm" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0218, @@ -50703,37 +40830,16 @@ The Natural Products Atlas provides a unique tools for exploring natural product sc:name "Natural Products Atlas" ; sc:url "http://www.npatlas.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3361, - edam:topic_3500, - edam:topic_3679 ; - sc:citation , - "pubmed:31637666" ; - sc:description """A simplified virtual-reality platform for spatial navigation and memory experiments. - -Build and run your own virtual Morris Water Maze experiments in minutes. - -Immerse your participants with the Oculus Rift!. - -Analyse, compare and export results. - -NavWell provides an intuitive interface with which to configure and customise the virtual environment. Choose from various shapes and sizes and configure the internal cues all through a convenient web console""" ; - sc:featureList edam:operation_0337, - edam:operation_0387, - edam:operation_3435 ; - sc:name "NavWell" ; - sc:url "https://navwell.cs.nuim.ie/home" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_3070, @@ -50757,7 +40863,7 @@ NavWell provides an intuitive interface with which to configure and customise th biotools:primaryContact "Universität Bayreuth, Department of Mycology" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -50776,7 +40882,7 @@ NavWell provides an intuitive interface with which to configure and customise th biotools:primaryContact "J. R. Ovenden" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203 ; @@ -50795,7 +40901,7 @@ NavWell provides an intuitive interface with which to configure and customise th biotools:primaryContact "Michele Berselli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2640, @@ -50819,7 +40925,7 @@ Zlatko Trajanoski awarded with ERC Advanced Grant.""" ; sc:url "https://icbi.i-med.ac.at/NeoFuse/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0804, @@ -50841,7 +40947,7 @@ NeoPeptide is a catalog of epitopes derived from neoantigens, arising from somat sc:url "http://www.neopeptide.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -50858,32 +40964,8 @@ NeoPeptide is a catalog of epitopes derived from neoantigens, arising from somat sc:softwareHelp ; sc:url "https://github.com/MathOnco/NeoPredPipe" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_2885, - edam:topic_3050, - edam:topic_3175, - edam:topic_3179 ; - sc:citation , - "pmcid:PMC6828962", - "pubmed:31737031" ; - sc:description """Copy Number Variation Mapping and Genomic Variation of Autochthonous and Commercial Turkey Populations. - -Asini - Avicoli - Bovini - Cani - Cavalli - Cavie - Conigli - Gatti - Ovicaprini - Pesci - Polli - Suini - Fauna - Frutteti - Erbacee - Fiori - Alberi - Insetti - Estimo - Prodotti tipici - Funghi - Parchi. - -Si tratta di un tacchino la cui selezione è stata curata da un gruppo di allevatori lombardi che, operando una sorta di controselezione volta a ridurre la taglia degli animali, sono riusciti ad ottenere animali di piccola taglia. - -Origine, diffusione e caratteristiche economiche. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'pvclust', 'CNVRs', 'turkey', 'Ermellinato'""" ; - sc:featureList edam:operation_3196, - edam:operation_3432, - edam:operation_3891 ; - sc:name "Nero" ; - sc:url "http://www.agraria.org/tacchini/neroitalia.htm" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -50905,7 +40987,7 @@ Origine, diffusione e caratteristiche economiche. biotools:primaryContact "Minhyeok Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0602, @@ -50930,7 +41012,7 @@ Origine, diffusione e caratteristiche economiche. "Shuwei Yao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, @@ -50952,39 +41034,8 @@ sample_OV.pkl: : Ovarian Cancer gene expression data set. The size of the data i sc:name "NetML" ; sc:url "https://github.com/compbiolabucf/NetML" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_3170, - edam:topic_3360, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6876326", - "pubmed:31807166" ; - sc:description """Slow skeletal muscle troponin T, titin and myosin light chain 3 are candidate prognostic biomarkers for Ewing's sarcoma. - --- a visual analytics platform for comprehensive gene expression profiling & meta-analysis. - -Gene List InputGene Expression TableMultiple Gene Expression TablesRaw RNA-seq DataNetwork File. - -Starting from a list of gene IDs with optional expression values. - -Zhou, G., Soufan, O., Ewald, J., Hancock, REW, Basu, N. and Xia, J. (2019) "NetworkAnalyst 3.0: a visual analytics platform for comprehensive gene expression profiling and meta-analysis" Nucleic Acids Research (doi:10.1093/nar/gkz240). - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/networkanalyst. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/networkanalys (NETWORKANALYST.CA), bio.tools/networkanalyst (NETWORKANALYST.CA). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'GSEA' (bio.tools/gsea), 'DEGs', 'TTN', 'troponin'""" ; - sc:featureList edam:operation_0571, - edam:operation_2436, - edam:operation_3800, - edam:operation_3891 ; - sc:name "NetworkAnalyst_autogenerated" ; - sc:url "http://www.networkanalyst.ca" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -50999,7 +41050,7 @@ Zhou, G., Soufan, O., Ewald, J., Hancock, REW, Basu, N. and Xia, J. (2019) "Netw sc:url "https://github.com/emzodls/neuripp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3384, @@ -51012,7 +41063,7 @@ Zhou, G., Soufan, O., Ewald, J., Hancock, REW, Basu, N. and Xia, J. (2019) "Netw sc:url "https://github.com/proloyd/neuro-currentRF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3304, @@ -51027,7 +41078,7 @@ BACKGROUND:Neuropeptides are a class of bioactive peptides produced from neurope sc:url "http://i.uestc.edu.cn/NeuroCS/dist/index.html#/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3474, @@ -51042,7 +41093,7 @@ MNI: Original conception and design of the software architecture, primary develo sc:url "https://github.com/shanemomara/NeuroChaT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3384, @@ -51063,7 +41114,7 @@ MNI: Original conception and design of the software architecture, primary develo sc:url "https://github.com/EdwardsLabNeuroSci/NeuroMeasure" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0154, @@ -51086,7 +41137,7 @@ MNI: Original conception and design of the software architecture, primary develo biotools:primaryContact "Prof. Jian Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3334, @@ -51105,7 +41156,7 @@ WebApp to measure bending angle in camptocormia patients. Based on the article * sc:url "http://www.neuroimaging.uni-kiel.de/NeuroPostureApp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -51128,7 +41179,7 @@ Neuropycon is an open-source multi-modal brain data analysis kit which provides sc:url "https://neuropycon.github.io/ephypype/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3334 ; sc:description "Standard Electroencephalography (EEG) server that mediates between the raw EEG devices and all the various EEG applications that the user may wish to run to analyse the incoming EEG data." ; @@ -51141,28 +41192,8 @@ Neuropycon is an open-source multi-modal brain data analysis kit which provides sc:url "http://openeeg.sourceforge.net/neuroserver_doku/" ; biotools:primaryContact "Rudi Cilibrasi" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0625, - edam:topic_0634, - edam:topic_3295, - edam:topic_3304 ; - sc:citation , - "pmcid:PMC6895906", - "pubmed:31850066" ; - sc:description """Identifying Common Genes, Cell Types and Brain Regions Between Diseases of the Nervous System. - -Background: Diseases of the nervous system are widely considered to be caused by genetic mutations, and they have been shown to share pathogenic genes. Discovering the shared mechanisms of these diseases is useful for designing common treatments. Method: In this study, by reviewing 518 articles published after 2007 on 20 diseases of the nervous system, we compiled data on 1607 mutations occurring in 365 genes, totals that are 1.9 and 3.2 times larger than those collected in the Clinvar database, respectively. A combination with the Clinvar data gives 2434 pathogenic mutations and 424 genes. Using this information, we measured the genetic similarities between the diseases according to the number of genes causing two diseases simultaneously. Further detection was carried out on the similarity between diseases in terms of cell types. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Clinvar', 'DMN'""" ; - sc:featureList edam:operation_2495, - edam:operation_3196, - edam:operation_3501 ; - sc:name "NeurodisM" ; - sc:url "http://biomed-ai.org/neurodism" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3170, @@ -51182,7 +41213,7 @@ Transcriptomics of cortical excitatory and inhibitory neurons""" ; sc:url "http://research-pub.gene.com/NeuronSubtypeTranscriptomes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -51198,7 +41229,7 @@ Transcriptomics of cortical excitatory and inhibitory neurons""" ; biotools:primaryContact "pham viet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3314, @@ -51228,7 +41259,7 @@ A New Basis Set Exchange: An Open, Up-to-date Resource for the Molecular Science sc:url "https://www.basissetexchange.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0780, @@ -51252,7 +41283,7 @@ A New Basis Set Exchange: An Open, Up-to-date Resource for the Molecular Science "Maria Luisa Chiusano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -51271,7 +41302,7 @@ NextPolish is used to fix base errors (SNV/Indel) in the genome generated by noi sc:url "https://github.com/Nextomics/NextPolish" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0621, @@ -51288,7 +41319,7 @@ N-Glycosylation is one of the most important post-translational mechanisms in eu sc:url "https://github.com/bioinformaticsML/Ngly" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3361, @@ -51305,18 +41336,18 @@ Data and code of the BrainLinks-BrainTools NiceBot project, manuscript "Human-Co a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3308 ; @@ -51338,7 +41369,7 @@ Data and code of the BrainLinks-BrainTools NiceBot project, manuscript "Human-Co sc:url "https://github.com/saeyslab/nichenetr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0218 ; sc:citation , @@ -51349,7 +41380,7 @@ Data and code of the BrainLinks-BrainTools NiceBot project, manuscript "Human-Co sc:url "https://github.com/mtopaz/NimbleMiner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -51368,7 +41399,7 @@ Data and code of the BrainLinks-BrainTools NiceBot project, manuscript "Human-Co sc:url "http://cospi.iiserpune.ac.in/Nipah" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, @@ -51395,7 +41426,7 @@ Feng C, Kovrigin EL, Post CB (2019) NmrLineGuru: Standalone and User-Friendly GU sc:url "https://github.com/stonefonly/NmrLineGuru" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, edam:topic_3379 ; @@ -51408,7 +41439,7 @@ Feng C, Kovrigin EL, Post CB (2019) NmrLineGuru: Standalone and User-Friendly GU sc:url "http://lce.biohpc.swmed.edu/lungcancer/nomogram" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640 ; sc:citation , @@ -51423,27 +41454,8 @@ Feng C, Kovrigin EL, Post CB (2019) NmrLineGuru: Standalone and User-Friendly GU sc:url "https://nordscreen.org/" ; biotools:primaryContact "Veli-Matti Partanen" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0621, - edam:topic_3489, - edam:topic_3512 ; - sc:citation , - "pubmed:31691799" ; - sc:description """update of the nonribosomal peptide resource. - -NORINE is a platform that includes a database of nonribosomal peptides together with tools for their analysis. Norine currently contains 1730 peptides. - -Norine: update of the nonribosomal peptide resource. Areski Flissi, Emma Ricart, Cl�mentine Campart, Micka�l Chevalier, Yoann Dufresne, Juraj Michalik, Philippe Jacques, Christophe Flahaut, Fr�d�ric Lisacek, Val�rie Lecl�re and Maude Pupin. - -||| NAME (Norine) SIMILAR TO (PUB. DIFFERENT) bio.tools/NORINE (NORINE)""" ; - sc:featureList edam:operation_2428, - edam:operation_3646 ; - sc:name "Norine_autogenerated" ; - sc:url "https://bioinfo.cristal.univ-lille.fr/norine/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -51464,7 +41476,7 @@ Norine: update of the nonribosomal peptide resource. Areski Flissi, Emma Ricart, biotools:primaryContact "Shan Gao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3305, @@ -51479,7 +41491,7 @@ Norine: update of the nonribosomal peptide resource. Areski Flissi, Emma Ricart, sc:url "https://www.rivm.nl/mpf/typingtool/norovirus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -51501,7 +41513,7 @@ The simulation was built and tested on Unity version 4.6.1, which is freely avai sc:url "https://github.com/asafl/NotchDelta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0621, @@ -51523,7 +41535,7 @@ This platform enables users to visualize and annotate the 3D chromosome structur sc:url "https://ndb.rice.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3125, edam:topic_3176, @@ -51538,43 +41550,8 @@ This platform enables users to visualize and annotate the 3D chromosome structur sc:name "Nucleosome Dynamics" ; sc:url "http://mmb.irbbarcelona.org/NucleosomeDynamics/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602 ; - sc:citation , - "pubmed:31706855" ; - sc:description """A C++ module to include DDEP recommended radioactive decay Data in Geant4. - -This article describes the Nuclide++ module developed at LNE-LNHB to simulate the decay schemes related to single or multiple radionuclides, by randomly selecting decay pathways. Written in C++, with respect of the Geant4 coding style, this module can be used transparently in Geant4-based simulation applications as an alternative to the existing Radioactive Decay Module (RDM). Nuclide++ takes advantage of the DDEP recommended data, accurate β-emitting spectra calculation and detailed description of the atomic rearrangement. This module can be useful in many applications, especially those involving radioactive sources. The reliability of the module was verified through comparisons with a while chosen radionuclides. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3562 ; - sc:name "Nuclide++" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31706855" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3376, - edam:topic_3403 ; - sc:citation , - "pubmed:31860933" ; - sc:description """The use and abuse of credentials. - -A Guide to Nursing Credentials and Degrees. - -Complete List of Common Nursing Certifications. - -From LPN to MSN, the jumble of letters following a nurse's name can be confusing. Learn what these nursing credentials mean and how they should be listed. - -View 183 commonly recognized nursing certifications along with links to their certifying organizations. - -The confusing nature of nursing credentials has led to widespread use of the term “alphabet soup.” The letters that follow a nurse’s name can be perplexing to professionals in the medical field, and especially to patients and families. To solve this problem, nursing credentials need to be displayed properly. - -Never fear. Nurse.org has compiled an alphabetical list of 183 different nursing certifications along with the appropriate acronyms and links to their certifying organizations""" ; - sc:name "Nursing" ; - sc:url "https://online.alvernia.edu/program-resources/nursing-credentials/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -51597,7 +41574,7 @@ Nutrigenomics is defined as the science studying the role of nutrients and bioac sc:url "http://nutrigenomedb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation , @@ -51612,7 +41589,7 @@ Number of Previously Failed Medications 0 ≥1.""" ; sc:url "https://oabweb.herokuapp.com/app/pre/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3063, @@ -51633,7 +41610,7 @@ Detect prescription of oral anticoagulants (OAC) in clinical text using regular sc:url "https://github.com/CogStack/OAC-NLP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0605, edam:topic_2828, @@ -51653,7 +41630,7 @@ The oar-metadata package is a prerequisite which is configured as git sub-module sc:url "https://github.com/usnistgov/oar-pdr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3316, @@ -51676,30 +41653,8 @@ The oar-metadata package is a prerequisite which is configured as git sub-module biotools:primaryContact "Quan Long", "Zhi Xiong" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_3474, - edam:topic_3855 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Nashi', 'digitisation', 'OCR-Aided', 'gitising' | Nasḫī – an Efficient Tool for the OCR-Aided Transcription of Printed Texts | Python-based tools for document analysis and OCR | OCRopus is a collection of document analysis programs, not a turn-key OCR system. In order to apply it to your documents, you may need to do some image preprocessing, and possibly also train new models" ; - sc:featureList edam:operation_3435, - edam:operation_3891 ; - sc:license "Apache-2.0" ; - sc:name "OCR" ; - sc:url "http://github.com/tmbdev/ocropy" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0218, - edam:topic_0769, - edam:topic_3382 ; - sc:citation ; - sc:description "> COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/pymzml (GITHUB.COM) | An Open-Source Tool Providing a (Semi-)Automatic OCR Workflow for Historical Printings | Shell script for installing OCR4all in an 64bit ubuntu virtualBox image | Pretrained mixed models to be used in OCR4all | Zentrum für Philologie und Digitalität \"Kallimachos\" | OCR4all is a software designed to digitally explore primarily very early printed texts whose elaborate printing types and often uneven layout concepts are beyond the recognition abilities of most other recognition software. Understandably and independently to use, OCR4all’s suggested semi-automatic workflow also explicitly focusses users with no technical background and combines different tools in one consistent interface. A frequent change between software is not necessary anymore" ; - sc:license "MIT" ; - sc:name "OCR4all" ; - sc:url "https://www.uni-wuerzburg.de/en/zpd/ocr4all" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -51718,7 +41673,7 @@ Disease causing gene identification is considered as an important step towards d sc:url "https://github.com/imandehzangi/OCSVM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -51751,7 +41706,7 @@ Consolidated many data files into new files: CCLE_OCTAD.RData, metadata.RData""" sc:url "http://octad.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0152, @@ -51773,7 +41728,7 @@ OCTAVVS is a set of graphical tools for high-throughput preprocessing and analys sc:url "http://pypi.org/project/octavvs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Web application" ; @@ -51792,7 +41747,7 @@ Shiny app to operate apparatus of office chromatography.""" ; sc:url "https://github.com/OfficeChromatography/OC_manager" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0209, @@ -51816,18 +41771,18 @@ Shiny app to operate apparatus of office chromatography.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Experimental measurement" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web API", "Web application" ; @@ -51855,26 +41810,8 @@ Shiny app to operate apparatus of office chromatography.""" ; sc:url "https://inrae.github.io/ODAM/" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0780, - edam:topic_3810 ; - sc:citation , - "pmcid:PMC6818511", - "pubmed:31662803" ; - sc:description """A global, monthly fossil-fuel CO2 gridded emission data product for tracer transport simulations and surface flux inversions. - -Center for Global Environmental Research. - -The Open-Data Inventory for Anthropogenic Carbon dioxide (ODIAC) is a high-spatial resolution global emission data product of CO2 emissions from fossil fuel combustion (Oda and Maksyutov, 2011). In 2009, the first version of ODIAC was developed by Drs. Tomohiro Oda (now at USRA/NASA Goddard) and Shamil Maksyutov under the Greenhouse gases Observing SATellite (GOSAT) project at the National Institute for Environmental Studies (NIES) in Japan. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ODIAC2016', 'ODIAC2017'""" ; - sc:featureList edam:operation_3436 ; - sc:name "ODIAC" ; - sc:url "http://db.cger.nies.go.jp/dataset/ODIAC/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0659, @@ -51890,7 +41827,7 @@ Harbin Medical University, China""" ; sc:url "http://bio-bigdata.hrbmu.edu.cn/ODNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0121, @@ -51912,7 +41849,7 @@ Harbin Medical University, China""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0804, @@ -51926,7 +41863,7 @@ Harbin Medical University, China""" ; sc:url "https://ogrdb.airr-community.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0102, @@ -51951,29 +41888,8 @@ Singh PP & Isambert H. (2019) OHNOLOGS v2: A comprehensive resource for the gene sc:name "OHNOLOGS v2" ; sc:url "http://ohnologs.curie.fr" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0625, - edam:topic_3168, - edam:topic_3277 ; - sc:citation , - "pmcid:PMC6921160", - "pubmed:31767540" ; - sc:description """A software-guided HIV-1 drug resistance test for low-resource laboratories. - -BACKGROUND:HIV drug resistance (HIVDR) testing can assist clinicians in selecting treatments. However, high complexity and cost of genotyping assays limit routine testing in settings where HIVDR prevalence has reached high levels. METHODS:The oligonucleotide ligation assay (OLA)-Simple kit was developed for detection of HIVDR against first-line non-nucleoside nucleoside reverse transcriptase inhibitors and validated on 672 codons (168 specimens) from subtypes A, B, C, D, and AE. The kit uses dry reagents to facilitate assay setup, lateral flow devices for visual HIVDR detections, and in-house software with an interface for guiding users and analyzing results. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'HIVDR'""" ; - sc:featureList edam:operation_0308, - edam:operation_3196, - edam:operation_3482 ; - sc:name "OLA-Simple" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31767540" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -51994,7 +41910,7 @@ OLGenie is a Perl program for estimating dN/dS to detect selection and function sc:url "https://github.com/chasewnelson/OLGenie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -52012,7 +41928,7 @@ MOTIVATION:Various bioinformatics analyses provide sets of genomic coordinates o sc:url "https://github.com/dputhier/pygtftk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -52033,51 +41949,8 @@ MOTIVATION:Various bioinformatics analyses provide sets of genomic coordinates o biotools:primaryContact "Kevin Y. Yip", "Ting-Fung Chan" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0780, - edam:topic_3071, - edam:topic_3384, - edam:topic_3385, - edam:topic_3452 ; - sc:citation ; - sc:description """Efficient data management infrastructure for the integration of imaging and omics data in life science research. - -Abstract As technical developments in omics and biomedical imaging drive the increase in quality, modality, and throughput of data generation in life sciences, the need for information systems capable of integrative, long-term storage and management of these heterogeneous digital assets is also increasing. Here, we propose an approach based on principles of Service Oriented Architecture design, to allow the integrated management and analysis of multi-omics and biomedical imaging data. The proposed architecture introduces an interoperable image management system, the OMERO server, into the backend of qPortal, a FAIR-compliant web-based platform for omics data management. - -||| HOMEPAGE BROKEN!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/omero. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'qPortal', 'FAIR-compliant', 'qPortal FAIR-compliant', 'omics'""" ; - sc:featureList edam:operation_0224, - edam:operation_3443, - edam:operation_3760 ; - sc:name "OMERO_autogenerated" ; - sc:url "http://OMERO.web" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0196, - edam:topic_0621, - edam:topic_3318, - edam:topic_3673 ; - sc:citation , - "pubmed:31794680" ; - sc:description """Optical Map-Based Genome Scaffolding. - -Due to the current limitations of sequencing technologies, de novo genome assembly is typically carried out in two stages, namely contig (sequence) assembly and scaffolding. While scaffolding is computationally easier than sequence assembly, the scaffolding problem can be challenging due to the high repetitive content of eukaryotic genomes, possible mis-joins in assembled contigs, and inaccuracies in the linkage information. Genome scaffolding tools either use paired-end mate-pair linked Hi-C reads or genome-wide maps (optical, physical, or genetic) as linkage information. Optical maps (in particular Bionano Genomics maps) have been extensively used in many recent large-scale genome assembly projects (e.g., goat, apple, barley, maize, quinoa, sea bass, among others). - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0282, - edam:operation_0523, - edam:operation_0524, - edam:operation_0525, - edam:operation_3216 ; - sc:name "OMGS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31794680" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0196, @@ -52092,7 +41965,7 @@ Due to the current limitations of sequencing technologies, de novo genome assemb sc:url "http://github.com/Kingsford-Group/omhismb2019" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, edam:topic_3170 ; @@ -52108,7 +41981,7 @@ Due to the current limitations of sequencing technologies, de novo genome assemb sc:url "http://www.uv.es/ayala/software/OMICfpp_0.2.tar.gz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -52118,7 +41991,7 @@ Due to the current limitations of sequencing technologies, de novo genome assemb sc:url "https://pubchem.ncbi.nlm.nih.gov/omssa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -52137,24 +42010,8 @@ Due to the current limitations of sequencing technologies, de novo genome assemb sc:url "https://github.com/JCVenterInstitute/OMeta-Public" ; biotools:primaryContact "J. Craig Venter Institute" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_0769, - edam:topic_3304, - edam:topic_3384, - edam:topic_3444 ; - sc:citation ; - sc:description """Ontario Neurodegenerative Disease Research Initiative (ONDRI). - -ABSTRACT The Ontario Neurodegenerative Research Initiative (ONDRI) is a 3 year multi-site prospective cohort study that has acquired comprehensive multiple assessment platform data, including 3T structural MRI, from neurodegenerative patients with Alzheimer’s disease, mild cognitive impairment, Parkinson’s disease, amyotrophic lateral sclerosis, frontotemporal dementia, and cerebrovascular disease patients. This heterogeneous cross-section of patients with complex neurodegenerative and neurovascular pathologies pose significant challenges for standard neuroimaging tools. To effectively quantify regional measures of normal and pathological brain tissue volumes, the ONDRI neuroimaging platform implemented a semi-automated MRI processing pipeline that was able to address many of the challenges resulting from this heterogeneity. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Ontario Neurodegenerative Disease Research Initiative'""" ; - sc:featureList edam:operation_3435 ; - sc:name "ONDRI" ; - sc:url "http://ondri.ca/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3334, @@ -52169,33 +42026,8 @@ ABSTRACT The Ontario Neurodegenerative Research Initiative (ONDRI) is a 3 year m sc:name "OPA1" ; sc:url "https://www.lovd.nl/OPA1" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3421, - edam:topic_3473 ; - sc:citation , - "pubmed:31674890" ; - sc:description """Data Mining of the Reviews from Online Private Doctors. - -Background: User-generated content shared in the online health communities (OHCs) is becoming a valuable resource for researchers to understand patients' decision-making behaviors in the management of their health. Many studies have focused on how to obtain useful information from online reviews in OHCs. Introduction: This study focuses on a telemedicine service called Online Private Doctor (OPD), which is offered by a leading Chinese physician review website (PRW). OPD reviews have not received much attention. By data mining the reviews, our goal is to determine what patients are talking about when they use the OPD service and whether they are satisfied with the service or not. Materials and Methods: We used a Python web crawler to collect 41,029 reviews and 84,510 short reviews (labels) of all 5,645 physicians who offered the OPD service on a PRW (haodf.com) in China. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0306 ; - sc:name "OPD" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31674890" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0611, - edam:topic_2229, - edam:topic_3324 ; - sc:citation , - "pubmed:31442299" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'UPR transmission', 'UPR', 'cell-to-cell UPR transmission', 'cell-to-cell UPR' | No evidence for cell-to-cell transmission of the unfolded protein response in cell culture | Criteria and background information about open science badges | Help support open science today. Donate Now" ; - sc:name "OPEN SCIENCE BADGES" ; - sc:url "https://cos.io/our-services/open-science-badges/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3421, @@ -52207,14 +42039,14 @@ Background: User-generated content shared in the online health communities (OHCs a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2042" ; - sc:name "Evidence" ; - sc:sameAs "http://edamontology.org/data_2042" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2042" ; + sc:encodingFormat "http://edamontology.org/format_3981" ; + sc:name "Evidence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128 ; sc:author , @@ -52233,7 +42065,7 @@ Background: User-generated content shared in the online health communities (OHCs sc:url "https://life.bsc.es/pid/opra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3407, @@ -52248,7 +42080,7 @@ BACKGROUND:The purpose of this study was to investigate if FDG uptake metrics in sc:url "https://rasmussen.shinyapps.io/OPSCCmodelFDG_PET/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -52270,7 +42102,7 @@ BACKGROUND:The purpose of this study was to investigate if FDG uptake metrics in biotools:primaryContact "Florian Thibord" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -52289,44 +42121,8 @@ We develop an improved monocular visual SLAM system by using omnidirectional cam sc:name "ORB-SLAM" ; sc:url "https://github.com/lsyads/fisheye-ORB-SLAM" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0610, - edam:topic_3474, - edam:topic_3500 ; - sc:citation , - "pmcid:PMC6662697", - "pubmed:31358873" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | An Automatic Killer Whale Sound Detection Toolkit Using Deep Learning | Large bioacoustic archives of wild animals are an important source to identify reappearing communication patterns, which can then be related to recurring behavioral patterns to advance the current understanding of intra-specific communication of non-human animals. A main challenge remains that most large-scale bioacoustic archives contain only a small percentage of animal vocalizations and a large amount of environmental noise, which makes it extremely difficult to manually retrieve sufficient vocalizations for further analysis - particularly important for species with advanced social systems and complex vocalizations. In this study deep neural networks were trained on 11,509 killer whale (Orcinus orca) signals and 34,848 noise segments" ; - sc:name "ORCA-SPOT" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31358873" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0622, - edam:topic_3390, - edam:topic_3512, - edam:topic_3810 ; - sc:citation , - "pubmed:31757073" ; - sc:description """A Centralized Portal for the Annotation of African Orphan Crop Genomes. -Online Resource for Community Annotation of Eukaryotes. - -ORCAE is an online genome curation and browsing portal for several eukaryotic species. - -Community Annotation of Eukaryotes. - -ORCAE is an online genome annotation resource offering users the necessary tools and information to validate and correct gene annotations. The system is build on the wiki philosophy, all modifications to a certain gene are stored and can be found back in the annotation history of that gene. To be able to modify genes however you will need to have a user account. Anonymous users can browse the public genomes but don't have editing rights. - -Nutrition is at the core of AOCC.""" ; - sc:featureList edam:operation_0362, - edam:operation_2422, - edam:operation_3283 ; - sc:name "ORCAE-AOCC" ; - sc:url "https://bioinformatics.psb.ugent.be/orcae/" ; - biotools:primaryContact "Lieven Sterck" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web service" ; sc:applicationSubCategory edam:topic_0102, @@ -52350,7 +42146,7 @@ Nutrition is at the core of AOCC.""" ; biotools:primaryContact "Jun Inoue" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3172, @@ -52372,22 +42168,8 @@ Nutrition is at the core of AOCC.""" ; biotools:primaryContact "Futao Zhang", "Jian Yang" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3393, - edam:topic_3403, - edam:topic_3422 ; - sc:citation , - , - "pmcid:PMC6638613", - "pmcid:PMC6730513", - "pubmed:31359167", - "pubmed:31409597" ; - sc:description "> HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'ultrasound', 'ultrasound OSCE', 'POCUS', 'emergency' | Fellow Performance on a Formative Assessment of Acute Kidney Replacement Therapy Competence | Correlation of OSCE performance and point-of-care ultrasound scan numbers among a cohort of emergency medicine residents | BACKGROUND AND OBJECTIVES:Acute kidney replacement therapy (KRT) prescription is a critical nephrology skill. We administered a formative objective structured clinical examination (OSCE) to nephrology fellows to assess acute KRT medical knowledge, patient care, and systems-based practice competencies. DESIGN, SETTING, PARTICIPANTS, & MEASUREMENTS:Prospective cohort study of an educational test using the unified model of construct validity. We tested 117 fellows: 25 (four programs) in 2016 and 92 (15 programs) in 2017; 51 first-year and 66 second-year fellows" ; - sc:name "OSCE" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31409597" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0157, @@ -52411,7 +42193,7 @@ Nutrition is at the core of AOCC.""" ; biotools:primaryContact "Mallika Imwong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -52430,7 +42212,7 @@ Gene expression profiling data with long-term clinical follow-up information are sc:url "http://bioinfo.henu.edu.cn/ACC/ACCList.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3360 ; @@ -52440,19 +42222,8 @@ Gene expression profiling data with long-term clinical follow-up information are sc:name "OScc" ; sc:url "http://bioinfo.henu.edu.cn/CESC/CESCList.jsp" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3360, - edam:topic_3512 ; - sc:citation , - "pubmed:31368353" ; - sc:description "> HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'KIRC' | a web tool for identifying prognostic biomarkers in kidney renal clear cell carcinoma | Aim: To develop a free and quick analysis online tool that allows users to easily investigate the prognostic potencies of interesting genes in kidney renal clear cell carcinoma (KIRC). Patients & methods: A total of 629 KIRC cases with gene expression profiling data and clinical follow-up information are collected from public Gene Expression Omnibus and The Cancer Genome Atlas databases. Results: One web application called Online consensus Survival analysis for KIRC (OSkirc) that can be used for exploring the prognostic implications of interesting genes in KIRC was constructed. By OSkirc, users could simply input the gene symbol to receive the Kaplan-Meier survival plot with hazard ratio and log-rank p-value" ; - sc:featureList edam:operation_2495 ; - sc:name "OSkirc" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31368353" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3360, @@ -52467,23 +42238,8 @@ Uveal melanoma (UM) is a rare, aggressive, but the most frequent primary intraoc sc:name "OSuvm" ; sc:url "http://bioinfo.henu.edu.cn/UVM/UVMList.jsp" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3303, - edam:topic_3489 ; - sc:citation , - "pmcid:PMC6873564", - "pubmed:31752804" ; - sc:description """an app for occupational risk prevention in policing activities. - -APLICACIÓN OTP-PRL – formacionOTP. - -Utilizamos cookies propias y de terceros para mejorar la experiencia de navegación, y ofrecer contenidos y publicidad de interés. Al continuar con la navegación entendemos que se acepta nuestra Política de cookies.""" ; - sc:name "OTP-PRL" ; - sc:url "https://operativatacticapolicial.org/app-otp-prl" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3292, @@ -52497,26 +42253,21 @@ Utilizamos cookies propias y de terceros para mejorar la experiencia de navegaci a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -52541,110 +42292,58 @@ Utilizamos cookies propias y de terceros para mejorar la experiencia de navegaci a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1138" ; - sc:name "Pfam accession number" ; - sc:sameAs "http://edamontology.org/data_1138" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:encodingFormat "http://edamontology.org/format_1370" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ], + sc:additionalType "http://edamontology.org/data_2295" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1138" ; - sc:name "Pfam accession number" ; - sc:sameAs "http://edamontology.org/data_1138" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ] ; + sc:additionalType "http://edamontology.org/data_1138" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pfam accession number" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3736" ; - sc:name "Ecological data" ; - sc:sameAs "http://edamontology.org/data_3736" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1984" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_1333" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3736" ; - sc:name "Ecological data" ; - sc:sameAs "http://edamontology.org/data_3736" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3736" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Ecological data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3174, @@ -52669,7 +42368,7 @@ User queries are composed of either a sequence (nucleic or protein), or a hidden sc:url "http://tara-oceans.mio.osupytheas.fr/ocean-gene-atlas/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3068, @@ -52685,7 +42384,7 @@ The current project, supported by Rufford Small Grant, is designed to assemble a sc:url "http://www.odobd.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0625, @@ -52708,7 +42407,7 @@ Complete Database Variable Definitions""" ; sc:url "http://www.odonatephenotypicdatabase.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -52734,7 +42433,7 @@ Complete Database Variable Definitions""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -52751,7 +42450,7 @@ Complete Database Variable Definitions""" ; sc:url "https://github.com/nicocriscuolo/OliveR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -52764,7 +42463,7 @@ Complete Database Variable Definitions""" ; sc:url "https://github.com/hzhangjhu/Omic-Sig" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -52788,7 +42487,7 @@ OmicShare Tools为完全免费开放生物信息云工具网站。OmicShare Tool sc:url "http://www.omicshare.com/tools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -52810,7 +42509,7 @@ OmicsARules is a tool for the analysis of multi-omics high-throughput data based sc:url "https://github.com/BioinformaticsSTU/OmicsARules" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0625, @@ -52825,7 +42524,7 @@ OmicsARules is a tool for the analysis of multi-omics high-throughput data based sc:url "https://github.com/huizhanglab-jhu/OmicsOne" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3172, @@ -52838,7 +42537,7 @@ OmicsARules is a tool for the analysis of multi-omics high-throughput data based sc:url "http://bioinfo.wilmer.jhu.edu/OmicsX/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0128 ; sc:citation ; @@ -52852,7 +42551,7 @@ OmicsARules is a tool for the analysis of multi-omics high-throughput data based sc:url "http://omnipathdb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_2229, @@ -52870,7 +42569,7 @@ please see the document of OnClass at https://onclass.readthedocs.io/en/latest/" sc:url "https://onclass.readthedocs.io/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0621, @@ -52894,7 +42593,7 @@ OnTAD [-penalty ] [-maxsz ] [-minsz ] [-ldiff a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -52916,7 +42615,7 @@ A pan-cancer analysis using data in OncoLnc: OncoRank.""" ; sc:url "http://www.oncolnc.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0121, @@ -52937,30 +42636,8 @@ This site provides a platform to facilitate discovery of new mechanisms to contr sc:name "OncoPPi" ; sc:url "http://oncoppi.emory.edu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_2640, - edam:topic_3421, - edam:topic_3474, - edam:topic_3577 ; - sc:citation , - "pmcid:PMC6836658", - "pubmed:31699073" ; - sc:description """an authentic learning approach to teaching cancer genomics. - -On this site you can both (a) make and upload, and (b) download and analyse simulated patient case studies. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/chooch (CO.UK), bio.tools/dgw (CO.UK), bio.tools/dna_for_windows (CO.UK), bio.tools/translatorx (CO.UK), bio.tools/polygenicpathways (CO.UK). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'OncoSim'""" ; - sc:featureList edam:operation_3216, - edam:operation_3283, - edam:operation_3907 ; - sc:name "OncoSim OncoWiki" ; - sc:url "https://www.oncowiki.co.uk" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2640, @@ -52980,7 +42657,7 @@ On this site you can both (a) make and upload, and (b) download and analyse simu sc:url "https://www.oncowiki.co.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640 ; sc:citation , @@ -52990,35 +42667,8 @@ On this site you can both (a) make and upload, and (b) download and analyse simu sc:name "OncodriveCLUSTL" ; sc:url "https://bitbucket.org/bbglab/oncodriveclustl/src/master/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0659, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6755433", - "pubmed:31555364" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'GEO', 'DEMs', 'DEGs', 'Wilms' | Identification of key genes and microRNAs involved in kidney Wilms tumor by integrated bioinformatics analysis | With Oncomine ™ Research Premium Edition, you can: | Design better experiments... Answer more questions with fewer experiments, select the most promising gene or cell line, and test your hypothesis | The Oncomine ™ Platform from web applications to translational bioinformatics services provides solutions for individual researchers and multinational companies, with robust, peer-reviewed analysis methods and a powerful set of analysis functions that compute gene expression signatures, clusters and gene-set modules, automatically extracting biological insights from the data" ; - sc:featureList edam:operation_0463, - edam:operation_3223, - edam:operation_3792 ; - sc:name "Oncomine" ; - sc:url "https://www.oncomine.org" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0605, - edam:topic_0621, - edam:topic_3855 ; - sc:citation ; - sc:description """a Spatial Data Infrastructure dedicated to noise monitoring based on volunteers measurements. - -The present paper proposes an ideal Spatial Data Infrastructure (SDI) dedicated to noise monitoring based on volunteers measurements. Called OnoM@P, it takes advantage of the geospatial standards and open source tools to build an integrated platform to manage the whole knowledge about a territory and to observe its dynamics. It intends also to diffuse good practices to organize, collect, represent and process geospatial data in field of acoustic researches. OnoM@p falls within the framework of the Environmental Noise Directive (END) 2002 49 CE. The system relies on the NoiseCapture Android application developed for allowing each citizen to estimate its own noise exposure with its smartphone. - -||| HOMEPAGE MISSING!""" ; - sc:name "OnoMaP" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.2273V2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0154, @@ -53036,38 +42686,8 @@ A knowledge-graph built with the integration of semantic technologies and softwa sc:name "OntoKin" ; sc:url "http://www.theworldavatar.com/kb/ontokin/ontokin.owl" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3303, - edam:topic_3571 ; - sc:citation ; - sc:description """A brief introduction to Open Data, Open Source Software and Collective Intelligence for environmental data creators and users. - -Defining Open in Open Data, Open Content and Open Knowledge. - -By Joshua Tauberer. Second Edition: 2014. - -OpenStreetMap is the free wiki world map. - -The principles, practices, and a history of the open government data movement. - -Open government data has changed the way we understand civics. - -OpenStreetMap is built by a community of mappers that contribute and maintain data about roads, trails, cafés, railway stations, and much more, all over the world. - -Jobs at OpenGeoHub / EnvirometriX. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Crowdsourcing'""" ; - sc:featureList edam:operation_0337, - edam:operation_3096, - edam:operation_3436 ; - sc:name "Open" ; - sc:softwareHelp , - ; - sc:url "http://OpenGeoHub.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3500 ; sc:citation ; @@ -53081,7 +42701,7 @@ OpenSim Moco is a software toolkit to solve optimal control problems with muscul sc:url "https://simtk.org/projects/opensim-moco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697, @@ -53103,7 +42723,7 @@ OpenSim Moco is a software toolkit to solve optimal control problems with muscul sc:url "https://github.com/CAMI-challenge/OPAL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , @@ -53122,7 +42742,7 @@ OpenSim Moco is a software toolkit to solve optimal control problems with muscul sc:url "https://github.com/calquezar/OpenCASA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -53150,27 +42770,8 @@ Get started with OpenCRAVAT here or with `pip install open-cravat`.""" ; sc:name "OpenCRAVAT" ; sc:url "https://opencravat.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3316, - edam:topic_3382 ; - sc:citation , - "pubmed:31817491" ; - sc:description """High-Resolution Representation for Mobile Mapping Data in Curved Regular Grid Model. - -Welcome to the World of OpenCRG®!. - -The OpenCRG® initiative was launched in October 2008. Its objective is the provision of a series of open file formats and open source tools for the detailed description, creation and evaluation of road surfaces. It is suitable for a broad range of applications including e.g. tyre and driving simulations. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'road', 'road surface', 'elevation'""" ; - sc:featureList edam:operation_0337, - edam:operation_2429, - edam:operation_3891 ; - sc:name "OpenCRG" ; - sc:url "http://www.opencrg.org/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0634, @@ -53185,7 +42786,7 @@ The OpenFlexure project, which aims to make high precision mechanical positionin sc:url "https://gitlab.com/openflexure/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3384, @@ -53208,36 +42809,8 @@ From this project root, run tvm_installLaminarAnalysisToolbox.m in MATLAB.""" ; sc:name "OpenFmriAnalysis" ; sc:url "https://github.com/TimVanMourik/OpenFmriAnalysis" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0176, - edam:topic_0593, - edam:topic_3332 ; - sc:citation , - "pubmed:31509407" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | From Source Code to Insight | In this Article we describe the OpenMolcas environment and invite the computational chemistry community to collaborate. The open-source project already includes a large number of new developments realized during the transition from the commercial MOLCAS product to the open-source platform. The paper initially describes the technical details of the new software development platform. This is followed by brief presentations of many new methods, implementations, and features of the OpenMolcas program suite. These developments include novel wave function methods such as stochastic complete active space self-consistent field, density matrix renormalization group (DMRG) methods, and hybrid multiconfigurational wave function and density functional theory models. Some of these implementations include an array of additional options and functionalities" ; - sc:name "OpenMolcas" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31509407" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0176, - edam:topic_0593, - edam:topic_3314 ; - sc:citation ; - sc:description """From Source Code to Insight. - -In this article we describe the OpenMolcas environment and invite the computational chemistry community to collaborate. The open-source project already includes a large number of new developments realized during the transition from the commercial MOLCAS product to the open-source platform. The paper initially describes the technical details of the new software development platform. This is followed by brief presentations of many new methods, implementations, and features of the OpenMolcas program suite. These developments include novel wave function methods such as stochastic complete active space self-consistent field, density matrix renormalization group (DMRG) methods, and hybrid multiconfigurational wave function and density functional theory models. Some of these implementations include an array of additional options and functionalities. - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/OpenMolcas""" ; - sc:featureList edam:operation_0320, - edam:operation_0337, - edam:operation_2476 ; - sc:name "OpenMolcas_autogenerated" ; - sc:url "https://doi.org/10.26434/CHEMRXIV.8234021.V2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2814, edam:topic_3474 ; @@ -53251,26 +42824,26 @@ In this article we describe the OpenMolcas environment and invite the computatio a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_3710" ; + sc:name "Experimental measurement" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3246" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3833" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -53292,7 +42865,7 @@ In this article we describe the OpenMolcas environment and invite the computatio sc:url "http://www.openswath.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3500 ; @@ -53312,15 +42885,8 @@ In this article we describe the OpenMolcas environment and invite the computatio "Sohail Ahmed", "Weimiao Yu" . - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31425082" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | A System for Astrographics | Human knowledge about the cosmos is rapidly increasing as instruments and simulations are generating new data supporting the formation of theory and understanding of the vastness and complexity of the universe. OpenSpace is a software system that takes on the mission of providing an integrated view of all these sources of data and supports interactive exploration of the known universe from the millimeter scale showing instruments on spacecrafts to billions of light years when visualizing the early universe. The ambition is to support research in astronomy and space exploration, science communication at museums and in planetariums as well as bringing exploratory astrographics to the class room. There is a multitude of challenges that need to be met in reaching this goal such as the data variety, multiple spatio-temporal scales, collaboration capabilities, etc" ; - sc:name "OpenSpace" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31425082" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3067, @@ -53348,44 +42914,8 @@ We're exploring the development of the worm via DevoWorm, an interdisciplinary p sc:name "OpenWorm" ; sc:url "http://www.openworm.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2258, - edam:topic_3292, - edam:topic_3332 ; - sc:citation , - "pmcid:PMC6676618", - "pubmed:31372768" ; - sc:description "> VERY_LOW CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/open_babel | > CORRECT NAME OF TOOL COULD ALSO BE 'Babel', 'widely-used', 'rules-based', 'fragment-based' | Fast, efficient fragment-based coordinate generation for Open Babel | Open Babel is a chemical toolbox designed to speak the many languages of chemical data | Open Babel: The Open Source Chemistry Toolbox | Open Babel is a chemical toolbox designed to speak the many languages of chemical data. It's an open, collaborative project allowing anyone to search, convert, analyze, or store data from molecular modeling, chemistry, solid-state materials, biochemistry, or related areas" ; - sc:featureList edam:operation_0249, - edam:operation_2929 ; - sc:license "GPL-2.0" ; - sc:name "Open Babel_autogenerated" ; - sc:url "http://openbabel.org/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0632, - edam:topic_3077, - edam:topic_3382 ; - sc:citation , - "pmcid:PMC6778066", - "pubmed:31586118" ; - sc:description """Temperature affected guided wave propagation in a composite plate complementing the Open Guided Waves Platform. - -Collaborators from different research groups with wide-ranging expertise. - -Rely on Collective Data, Emphasise Your Work!. - -Moll, J.; Kathol, J.; Fritzen, C.-P.; Moix-Bonet, M.; Rennoch, M.; Koerdt, M.; Herrmann, A.; Sause, M. and Bach, M., „Open Guided Waves – Online Platform for Ultrasonic Guided Wave Measurements“, Structural Health Monitoring, 2019, vol. 18(5–6), 1903–1914, DOI: 10.1177/1475921718817169. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Open Guided Waves Platform'""" ; - sc:featureList edam:operation_2428, - edam:operation_3435, - edam:operation_3454 ; - sc:name "Open Guided Waves" ; - sc:url "http://www.open-guided-waves.de" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3325 ; sc:citation , @@ -53405,7 +42935,7 @@ Moll, J.; Kathol, J.; Fritzen, C.-P.; Moix-Bonet, M.; Rennoch, M.; Koerdt, M.; H biotools:primaryContact "Holger Storf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, edam:topic_3336, @@ -53422,7 +42952,7 @@ Bridging the gap between academic research and pharmaceutical drug development, sc:url "https://www.opentargets.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application", @@ -53458,26 +42988,8 @@ The Platform is a freely available resource that is actively maintained with bi- ; sc:url "https://platform.opentargets.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_2259, - edam:topic_3390, - edam:topic_3398, - edam:topic_3407 ; - sc:citation ; - sc:description """A Novel Optimization-Based Tool to Automate Infeasible Cycle-Free Gapfilling of Genome-Scale Metabolic Models. - -SUMMARY Stoichiometric metabolic modeling, particularly Genome-Scale Models (GSMs), is now an indispensable tool for systems biology. The model reconstruction process typically involves collecting information from public databases; however, incomplete systems knowledge leaves gaps in any reconstruction. Current tools for addressing gaps use databases of biochemical functionalities to address gaps on a per-metabolite basis and can provide multiple solutions, but cannot avoid Thermodynamically Infeasible Cycles (TICs), invariably requiring lengthy manual curation. To address these limitations, this work introduces an optimization-based multi-step method named OptFill which performs TIC-avoiding whole-model gapfilling. We applied OptFill to three fictional prokaryotic models of increasing sizes and to a published GSM of Escherichia coli , i JR904. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3660, - edam:operation_3745, - edam:operation_3803 ; - sc:name "OptFill" ; - sc:url "https://doi.org/10.1101/796706" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0625, @@ -53494,16 +43006,8 @@ The three-dimensional imaging of mesoscopic samples with Optical Projection Tomo sc:name "OptiJ" ; sc:url "https://lag-opt.github.io/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3474 ; - sc:citation , - "pubmed:31381482" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | A Deformable Interface for Human Touch Recognition Using Stretchable Carbon Nanotube Dielectric Elastomer Sensors and Deep Neural Networks | This article presents a machine learning approach to map outputs from an embedded array of sensors distributed throughout a deformable body to continuous and discrete virtual states, and its application to interpret human touch in soft interfaces. We integrate stretchable capacitors into a rubber membrane, and use a passive addressing scheme to probe sensor arrays in real time. To process the signals from this array, we feed capacitor measurements into convolutional neural networks that classify and localize touch events on the interface. We implement this concept with a device called OrbTouch" ; - sc:name "OrbTouch" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31381482" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474, @@ -53517,27 +43021,8 @@ The three-dimensional imaging of mesoscopic samples with Optical Projection Tomo sc:softwareHelp ; sc:url "http://www.orbit.bio" . - a sc:SoftwareApplication ; - sc:additionalType "Library" ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0769, - edam:topic_3170, - edam:topic_3308 ; - sc:citation , - "pubmed:31792435" ; - sc:description """Orchestrating single-cell analysis with Bioconductor. - -Online companion to ‘Orchestrating Single-Cell Analysis with Bioconductor’ manuscript by the Bioconductor team. - -This is the website for “Orchestrating Single-Cell Analysis with Bioconductor”, a book that teaches users some common workflows for the analysis of single-cell RNA-seq data (scRNA-seq). This book will teach you how to make use of cutting-edge Bioconductor tools to process, analyze, visualize, and explore scRNA-seq data. Additionally, it serves as an online companion for the manuscript “Orchestrating Single-Cell Analysis with Bioconductor”""" ; - sc:featureList edam:operation_0313, - edam:operation_0337, - edam:operation_3435 ; - sc:name "Orchestrating single-cell analysis" ; - sc:url "http://bioconductor.org/books/release/OSCA/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2640, @@ -53556,7 +43041,7 @@ This is the website for “Orchestrating Single-Cell Analysis with Bioconductor biotools:primaryContact "Caleydo Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091, @@ -53581,13 +43066,19 @@ This is the website for “Orchestrating Single-Cell Analysis with Bioconductor biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation , + , + "pmcid:PMC3196566", + "pmcid:PMC403725", + "pubmed:12952885", + "pubmed:21901743" ; sc:description "Orthologs are homologs seperated by speciation events. Paralogs are homologs separated by duplication events. Detection of orthologs is becoming much more important with the rapid progress in genome sequencing." ; sc:name "OrthoMCL" ; sc:url "https://github.com/stajichlab/OrthoMCL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application", "Web service" ; @@ -53608,24 +43099,8 @@ This is the website for “Orchestrating Single-Cell Analysis with Bioconductor sc:url "https://orthovenn2.bioinfotoolkits.net" ; biotools:primaryContact "Yi Wang" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0084, - edam:topic_0610, - edam:topic_3500 ; - sc:citation , - "pmcid:PMC6853231", - "pubmed:31762691" ; - sc:description """A dataset for the study of climatic oscillations over Plio-Pleistocene time-scales at high spatial-temporal resolution. - -Motivation:In order to understand how species evolutionarily responded to Plio-Pleistocene climate oscillations (e.g. in terms of speciation, extinction, migration and adaptation), it is first important to have a good understanding of those past climate changes per se. This, however, is currently limited due to the lack of global-scale climatic datasets with high temporal resolution spanning the Plio-Pleistocene. To fill this gap, I here present Oscillayers, a global-scale and region-specific bioclim dataset, facilitating the study of climatic oscillations during the last 5.4 million years at high spatial (2.5 arc-minutes) and temporal (10 kyr time periods) resolution. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3745 ; - sc:name "Oscillayers" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31762691" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0659, @@ -53649,7 +43124,7 @@ Motivation:In order to understand how species evolutionarily responded to Plio-P "Yang Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0154, @@ -53669,7 +43144,7 @@ OutCyte, as a versatile tool, can predict input proteins as signal-peptide conta sc:url "http://www.outcyte.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3293, @@ -53684,24 +43159,8 @@ OutCyte, as a versatile tool, can predict input proteins as signal-peptide conta sc:name "OutbreakFinder" ; sc:url "https://github.com/skypes/Newton-method-MDS" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3318, - edam:topic_3403 ; - sc:citation , - "pubmed:31678962" ; - sc:description """Improved diagnostic accuracy of pathology with the implementation of a perioperative point-of-care ultrasound service. - -INTRODUCTION:The utility of perioperative point-of-care ultrasound (P-POCUS) is rapidly growing. The successful implementation of a comprehensive P-POCUS curriculum, Focused PeriOperative Risk Evaluation Sonography Involving Gastro-abdominal, Hemodynamic, and Trans-thoracic Ultrasound (FORESIGHT), has been demonstrated. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'P-POCUS examinations'""" ; - sc:name "P-POCUS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31678962" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3295, @@ -53720,7 +43179,7 @@ INTRODUCTION:The utility of perioperative point-of-care ultrasound (P-POCUS) is biotools:primaryContact "Marcos J. Araúzo-Bravo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0130, @@ -53740,18 +43199,8 @@ Predicting Protein Folding Routes.""" ; sc:name "P3Fold" ; sc:url "http://csb.cs.mcgill.ca/P3Fold" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0769 ; - sc:citation , - "pubmed:31442985" ; - sc:description "> HOMEPAGE MISSING! | > NAME (P5) SIMILAR TO (PUB. DIFFERENT) bio.tools/p53 (p53) | Portable Progressive Parallel Processing Pipelines for Interactive Data Analysis and Visualization | We present P5, a web-based visualization toolkit that combines declarative visualization grammar and GPU computing for progressive data analysis and visualization. To interactively analyze and explore big data, progressive analytics and visualization methods have recently emerged. Progressive visualizations of incrementally refining results have the advantages of allowing users to steer the analysis process and make early decisions. P5 leverages declarative grammar for specifying visualization designs and exploits GPU computing to accelerate progressive data processing and rendering. The declarative specifications can be modified during progressive processing to create different visualizations for analyzing the intermediate results" ; - sc:featureList edam:operation_0337, - edam:operation_3436 ; - sc:name "P5" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31442985" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3474, @@ -53767,7 +43216,7 @@ Predicting Protein Folding Routes.""" ; sc:url "http://www.rnanut.net/paces/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -53785,7 +43234,7 @@ PACKMAN: PACKing and Motion ANalysis""" ; sc:url "https://PACKMAN.bb.iastate.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0769, @@ -53805,10 +43254,10 @@ PACKMAN: PACKing and Motion ANalysis""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602 ; @@ -53831,7 +43280,7 @@ PACKMAN: PACKing and Motion ANalysis""" ; sc:url "https://github.com/AuReMe/padmet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0623, @@ -53855,14 +43304,14 @@ PADS Arsenal A Database of Prokaryotic Defense Systems Related Genes.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:author ; @@ -53880,7 +43329,7 @@ PADS Arsenal A Database of Prokaryotic Defense Systems Related Genes.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -53899,7 +43348,7 @@ Integration of aggregated pathological images and genomic data""" ; sc:url "https://github.com/DataX-JieHao/PAGE-Net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, @@ -53919,7 +43368,7 @@ For mosek set environment variable MOSEKLM_LICENSE_FILE to your license file ins sc:url "https://pypi.org/project/pamogk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -53939,29 +43388,8 @@ For mosek set environment variable MOSEKLM_LICENSE_FILE to your license file ins biotools:primaryContact "Cheng Chang", "Yunping Zhu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_2229, - edam:topic_2830, - edam:topic_3068, - edam:topic_3489 ; - sc:citation , - "pubmed:31855463" ; - sc:description """Two Bioinformatics Tools to Support Analysis of Mass Cytometry Data. - -PANDA, the Population Analysis Database. - -PANDA mainly focuses the curation effort on the immune system and on the cell populations participating in skeletal muscle regeneration. The current release contains 79 different cell types in H. sapiens,M. musculus, R. norvegicus and G. gallus but aims at increasing the amount of curated data, extending curations to other tissues, organs and organisms. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/panda""" ; - sc:featureList edam:operation_2422, - edam:operation_2495, - edam:operation_3799 ; - sc:name "PANDA_autogenerated" ; - sc:url "https://github.com/wynstep/PANDA" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3305, @@ -53982,7 +43410,7 @@ Next-generation sequencing based base-by-base distance measures have become an i sc:url "https://gitlab.com/rki_bioinformatics/panpasco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, @@ -53995,23 +43423,14 @@ Next-generation sequencing based base-by-base distance measures have become an i sc:name "PARC" ; sc:url "https://github.com/ShobiStassen/PARC" . - a sc:SoftwareApplication ; - sc:citation , - "pmcid:PMC6696378", - "pubmed:31387335" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | A Parallel Subsampling-Based Method for Clustering Remote Sensing Big Data | Remote sensing big data (RSBD) is generally characterized by huge volumes, diversity, and high dimensionality. Mining hidden information from RSBD for different applications imposes significant computational challenges. Clustering is an important data mining technique widely used in processing and analyzing remote sensing imagery. However, conventional clustering algorithms are designed for relatively small datasets. When applied to problems with RSBD, they are, in general, too slow or inefficient for practical use. In this paper, we proposed a parallel subsampling-based clustering (PARSUC) method for improving the performance of RSBD clustering in terms of both efficiency and accuracy" ; - sc:featureList edam:operation_3432 ; - sc:name "PARSUC" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31387335" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Program to Assemble Spliced Alignment. PASA, acronym for Program to Assemble Spliced Alignments, is a eukaryotic genome annotation tool that exploits spliced alignments of expressed transcript sequences to automatically model gene structures, and to maintain gene structure annotation consistent with the most recently available experimental sequence data. PASA also identifies and classifies all splicing variations supported by the transcript alignments." ; sc:name "PASA" ; sc:url "https://sourceforge.net/projects/pasa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3512, @@ -54036,7 +43455,7 @@ Next-generation sequencing based base-by-base distance measures have become an i "Yuqi Long" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3384, @@ -54049,7 +43468,7 @@ Next-generation sequencing based base-by-base distance measures have become an i sc:url "http://github.com/DepartmentofNeurophysiology/Paser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3360, @@ -54069,54 +43488,14 @@ Next-generation sequencing based base-by-base distance measures have become an i sc:softwareHelp ; sc:url "https://github.com/DataX-JieHao/PASNet" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0121, - edam:topic_0154, - edam:topic_3360, - edam:topic_3417 ; - sc:citation , - "pmcid:PMC6811982", - "pubmed:31667243" ; - sc:description """Data on corneal proteome and differentially expressed corneal proteins in highly myopic chicks using a data independent quantification approach. - -submitter: Byung Soo Kang . - -submitter_organization The Hong Kong Polytechnic University. - -Official URL for this dataset: http://www.peptideatlas.org/PASS/PASS01410. - -||| NAME (PASS01410) SIMILAR TO (PUB. DIFFERENT) bio.tools/PacBio_Sequencing_Simulator (PaSS), bio.tools/pass (PASS), bio.tools/pass2 (PASS2). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'SWATH-MS', 'corneal', 'IDA', 'myopic'""" ; - sc:featureList edam:operation_3454, - edam:operation_3767, - edam:operation_3799 ; - sc:name "PASS01410" ; - sc:url "http://www.peptideatlas.org/PASS/PASS01410" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3318, - edam:topic_3855 ; - sc:citation , - "pmcid:PMC6792377", - "pubmed:31532248" ; - sc:description "> LOW CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/pasta | > CORRECT NAME OF TOOL COULD ALSO BE 'walking travel', 'walking', 'travel', 'Correlates Walking Travel Seven European Cities' | Correlates of Walking for Travel in Seven European Cities | {\"id\": \"1xaud0e0JPduOgxn5HwyC3Oa8qcH_yI1i\", \"title\": \"POI_CODE_AND_NAMES_PASTA.xlsx\", \"mimeType\": \"application\\/vnd.openxmlformats-officedocument.spreadsheetml.sheet\"}" ; - sc:featureList edam:operation_3557, - edam:operation_3891 ; - sc:name "PASTA_autogenerated" ; - sc:softwareHelp ; - sc:url "https://tinyurl.com/PASTA-POI" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "The PASTEClassifier (Pseudo Agent System for Transposable Elements Classification) is a transposable element (TE) classifier searching for structural features. It browses the whole spectrum of possible classifications at order level using Wicker hierarchical system. It is also able to automatically classify other repeated elements like SSR (Simple Sequence Repeats), rDNA or potential repeated host genes. The output is designed to facilitate manual curation by providing to the biologist all characteristics that have been found on each TE sequence." ; sc:name "PASTEClassifier" ; sc:url "https://urgi.versailles.inra.fr/Tools/PASTEClassifier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0154, @@ -54138,7 +43517,7 @@ Identification of functional elements for a protein of interest is important for sc:url "https://figshare.com/articles/PASTMUS_mapping_functional_elements_at_single_amino_acid_resolution_in_human_cells/10435370" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0781 ; @@ -54148,29 +43527,8 @@ Identification of functional elements for a protein of interest is important for sc:name "PASeq" ; sc:url "https://www.paseq.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3416, - edam:topic_3421, - edam:topic_3577 ; - sc:citation , - "pubmed:31834163" ; - sc:description """External Validation of PATHFx Version 3.0 in Patients Treated Surgically and Non-surgically for Symptomatic Skeletal Metastases. - -What’s different in PATHFx v3.0? A contemporary patient population. - -Open source architecture powered by the International Bone Metastasis Registry. - -We’ve upgraded PATHFx using more contemporary patients, in an effort to modernize the models. We designed the open source PATHFx tool to better integrate with providers, electronic health records, registries and other industry databases. Our machine-learning code, created in-house specifically for PATHFx, allows for greater compatibility and collaboration, while also enabling us to streamline the evolution of new models. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'BACKGROUND:PATHFx', 'PATHFx version 3.0'""" ; - sc:featureList edam:operation_2428, - edam:operation_3503 ; - sc:name "PATHFx" ; - sc:url "https://www.pathfx.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, @@ -54191,7 +43549,7 @@ We’ve upgraded PATHFx using more contemporary patients, in an effort to modern "Zhangsheng Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -54214,27 +43572,8 @@ The file "example1.R” is an example of R codes which read the data file “rec sc:name "PATOPA" ; sc:url "https://github.com/MarkeyBBSRF/PATOPA" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0605, - edam:topic_3068, - edam:topic_3361 ; - sc:citation ; - sc:description """Publication access through tiered interaction & exploration. - -PLOS Through Tiered Interaction & Exploration. - -PLOS Access Through Tiered Interaction & Exploration. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/gsaa (UNC.EDU). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'vzlib'""" ; - sc:featureList edam:operation_2422, - edam:operation_2428 ; - sc:name "PATTIE" ; - sc:url "http://pattie.unc.edu/plos" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, @@ -54254,25 +43593,8 @@ PAVFinder is a Python package that detects structural variants from de novo asse sc:name "PAVFinder" ; sc:url "https://github.com/bcgsc/pavfinder" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0091, - edam:topic_0128, - edam:topic_0659 ; - sc:citation , - "pubmed:31639442" ; - sc:description """A path-based computational model for long non-coding RNA-protein interaction prediction. - -Recently, lncRNAs have attracted accumulating attentions because more and more experimental researches have shown lncRNA can play critical roles in many biological processes. Predicting potential interactions between lncRNAs and proteins are key to understand the lncRNAs biological functions. But traditional biological experiments are expensive and time-consuming, network similarity methods provide a powerful solution to computationally predict lncRNA-protein interactions. In this work, a novel path-based lncRNA-protein interaction (PBLPI) prediction model is proposed by integrating protein semantic similarity, lncRNA functional similarity, known human lncRNA-protein interactions, and Gaussian interaction profile kernel similarity. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_2492, - edam:operation_3439, - edam:operation_3901 ; - sc:name "PBLPI" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31639442" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3337 ; @@ -54286,30 +43608,8 @@ Recently, lncRNAs have attracted accumulating attentions because more and more e sc:name "PBWT-Query" ; sc:url "http://genome.ucf.edu/pbwt-query" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3056, - edam:topic_3337 ; - sc:citation ; - sc:description """Efficient toolkit implementing best practices for principal component analysis of population genetic data. - -## Loading required package: bigstatsr. - -Let us use a subsetted version of the 1000 Genomes project data we provide. Some quality control has already been done; otherwise, you can use snp_plinkQC(). - -Principal Component Analysis (PCA). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'bigsnpr' (bio.tools/bigsnpr), 'PC19', 'PC40', 'bigutilsr'""" ; - sc:featureList edam:operation_2939, - edam:operation_3196, - edam:operation_3557, - edam:operation_3629, - edam:operation_3891 ; - sc:name "PCA" ; - sc:url "http://privefl.github.io/bigsnpr/articles/bedpca.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3360, @@ -54330,7 +43630,7 @@ Principal Component Analysis (PCA). biotools:primaryContact "Praveen K. Raj Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0602, @@ -54353,24 +43653,8 @@ Jacob Durrant software July 29, 2019September 30, 2019""" ; sc:name "PCAViz" ; sc:url "http://durrantlab.com/pcaviz/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3393 ; - sc:citation , - "pubmed:31864525" ; - sc:description """The development of the Primary Care Clusters Multidimensional Assessment (PCCMA). - -A strong primary care (PC) system is essential for an efficient and high-quality healthcare service. Many countries have adopted a model of PC that encourages different healthcare providers to work together, at scale, in multidisciplinary multiagency teams (PC clusters). The aim of the present work was to develop a quantitative instrument for the systematic and comprehensive assessment of PC clusters. This was a non-experimental, mixed-methods study grouping four work packages (WP), and involving PC cluster leads and a wide range of key stakeholders from across Wales. Interviews with 22 PC cluster leads (34 %) investigated the clusters' functioning (WP1). A systematic review identified relevant PC assessment frameworks and instruments (WP2). - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'development Primary Care Clusters Multidimensional Assessment', 'PC', 'WP', 'mixed-methods'""" ; - sc:featureList edam:operation_3432, - edam:operation_3799 ; - sc:name "PCCMA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31864525" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0749, @@ -54391,7 +43675,7 @@ Analysis and visualisation tools for PCHi-C interaction networks""" ; sc:url "https://github.com/IMCS-Bioinformatics/PCHiCNetworkExplorer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0780, @@ -54413,7 +43697,7 @@ Welcome to PCIR! Plant Chloroplast Inverted Repeats (PCIR) is an interactive, we sc:url "http://biodb.sdau.edu.cn/pcir/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0625, @@ -54435,21 +43719,8 @@ Phylogenetic comparative methods represent models of continuous trait data assoc sc:name "PCMBase" ; sc:url "https://github.com/venelin/PCMBase" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3407, - edam:topic_3411, - edam:topic_3420 ; - sc:citation , - "pmcid:PMC6396642", - "pubmed:31486807" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'infertility PCOS' | Evidence summaries and recommendations from the international evidence-based guideline for the assessment and management of polycystic ovary syndrome | Monash Centre for Health Research and Implementation (MCHRI) | Our PCOS research has six themes: Improve PCOS diagnosis; Fertility treatments; Biological origins, aetiology and pathology of PCOS; Interventions; Defining the natural history of PCOS; and Epidemiology and data use in PCOS | AskPCOS is the most trustworthy and comprehensive PCOS app available that was developed by leading PCOS experts from around the world and co-designed with women with PCOS. Available from the App Store and Google Play" ; - sc:featureList edam:operation_3435 ; - sc:name "PCOS" ; - sc:softwareHelp ; - sc:url "http://monash.edu/medicine/sphpm/mchri/pcos" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0121, @@ -54468,18 +43739,8 @@ Nor Afiqah-Aleng, Sarahani Harun, Mohd Rusman Arief A-Rahman, Nor Azlan Nor Muha sc:name "PCOSBase" ; sc:url "http://pcosbase.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3376, - edam:topic_3403, - edam:topic_3423 ; - sc:citation , - "pubmed:31533877" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'PCSR people', 'XDR-TB' | Palliative care and symptom relief for people affected by multidrug-resistant tuberculosis | The World Health Organization (WHO) defines palliative care as the prevention and relief of the physical, psychological, social and spiritual suffering of adults and children with life-threatening illnesses and psycho-social support for their families. Palliative care and symptom relief (PCSR) also addresses suffering in nonlife-threatening situations such as after cure. PCSR should never be considered a substitute for tuberculosis (TB) prevention and treatment, but should be accessible by everyone in need. PCSR can reduce suffering and improve quality of life of patients with end-stage chronic illnesses while reducing costs for health care systems and providing financial risk protection for patients' families" ; - sc:name "PCSR" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31533877" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -54499,76 +43760,8 @@ Nor Afiqah-Aleng, Sarahani Harun, Mohd Rusman Arief A-Rahman, Nor Azlan Nor Muha sc:url "http://zti.polsl.pl/w3/dmrozek/science/pdbusqlext.htm" ; biotools:primaryContact "D. Mrozek" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0078, - edam:topic_0081, - edam:topic_0091, - edam:topic_0593, - edam:topic_3314 ; - sc:citation , - "pubmed:31584092" ; - sc:description """a community-driven resource for structural and functional annotations. - -The European Bioinformatics Institute. - -PDBe-KB Guidelines for Collaborating. - -What are the Aggregated Views of Proteins?. - -REST API based on PDBe data hosted on Neo4J Graph Database. - -PDBe-KB (Protein Data Bank in Europe - Knowledge Base) is a community-driven resource managed by the PDBe team, collating functional annotations and predictions for structure data in the PDB archive. - -Protein Data Bank in Europe - Knowledge Base (PDBe-KB) is a community-driven resource managed by the PDBe team, collating functional annotations and predictions for structure data in the PDB archive. - -The PDBe-KB aggregated view of proteins provides a comprehensive overview of structural data available in PDB for a full-length protein sequence. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/pdbepisa (PDBE.ORG), bio.tools/pdbexplore (PDBE.ORG), bio.tools/pdbefold (PDBE.ORG)""" ; - sc:featureList edam:operation_0474, - edam:operation_1812, - edam:operation_2422, - edam:operation_3431, - edam:operation_3436 ; - sc:name "PDBe-KB" ; - sc:softwareHelp ; - sc:url "https://pdbe-kb.org" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0097, - edam:topic_0099, - edam:topic_0152, - edam:topic_0154, - edam:topic_3047 ; - sc:citation , - "pubmed:31691821" ; - sc:description """improved findability of macromolecular structure data in the PDB. - -Search the PDB archive ‹ PDBe ‹ EMBL-EBI. - -Index of /pub/databases/pdb_versioned/. - -This website requires cookies, and the limited processing of your personal data in order to function. By using the site you are agreeing to this as outlined in our Privacy Notice and Terms of Use . - -What are the Aggregated Views of Proteins?. - -PDBe-KB (Protein Data Bank in Europe - Knowledge Base) is a community-driven resource managed by the PDBe team, collating functional annotations and predictions for structure data in the PDB archive. - -The PDBe-KB aggregated view of proteins provides a comprehensive overview of structural data available in PDB for a full-length protein sequence. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/pdbe. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/pdbepisa (PDBE.ORG), bio.tools/pdbexplore (PDBE.ORG), bio.tools/pdbefold (PDBE.ORG)""" ; - sc:featureList edam:operation_0337, - edam:operation_2421, - edam:operation_2422, - edam:operation_3431, - edam:operation_3436 ; - sc:name "PDBe_autogenerated" ; - sc:softwareHelp ; - sc:url "http://pdbe.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:citation ; sc:description "Parameter fitting toolbox for partial differential equations in Python." ; @@ -54583,32 +43776,8 @@ The PDBe-KB aggregated view of proteins provides a comprehensive overview of str sc:url "http://github.com/systemsmedicine/PDE_params" ; biotools:primaryContact "Esteban A. Hernandez-Vargas" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3384, - edam:topic_3411, - edam:topic_3489, - edam:topic_3794 ; - sc:citation ; - sc:description """An integrated toolbox for creating ready-to-publish figures. - -PDF Reference and Adobe Extensions to the PDF Specification. - -PDF Reference and Adobe Extensions to the PDF Specification : Adobe Developer Connection. - -The PDF Reference was first published when Adobe Acrobat was introduced in 1993. Since then, updated versions of the PDF Reference have been made available from Adobe via the Web, and from time to time, in traditional paper documents made available from book publishers. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Enriching scientific publications interactive 3D PDF', 'ready-to-publish', 'toolbox', 'royalty-free'""" ; - sc:featureList edam:operation_0337, - edam:operation_3435, - edam:operation_3436, - edam:operation_3891 ; - sc:name "PDF" ; - sc:softwareHelp ; - sc:url "http://www.adobe.com/devnet/pdf/pdf_reference.edu.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, edam:topic_3056, @@ -54620,59 +43789,8 @@ In drug discovery one uses chemical space as a concept to organize molecules acc sc:name "PDGA" ; sc:url "https://github.com/reymond-group/PeptideDesignGA" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_3047, - edam:topic_3056, - edam:topic_3336 ; - sc:citation ; - sc:description """Populating Chemical Space with Peptides using a Genetic Algorithm. - -In drug discovery one uses chemical space as a concept to organize molecules according to their structures and properties. One often would like to generate new possible molecules at a specific location in chemical space marked by a molecule of interest. Herein we report the peptide design genetic algorithm (PDGA, code available at https: github.com reymondgroup PeptideDesignGA), a computational tool capable of producing peptide sequences of various chain topologies (linear, cyclic polycyclic or dendritic) in proximity of any molecule of interest in a chemical space defined by MXFP, an atom-pair fingerprint describing molecular shape and pharmacophores. We show that PDGA generates high similarity analogs of bioactive peptides, including in selected cases known active analogs, as well as of non-peptide targets. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'faerun', 'peptide design genetic algorithm'""" ; - sc:name "PDGA_autogenerated" ; - sc:url "https://doi.org/10.26434/CHEMRXIV.10247567.V2" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0166, - edam:topic_0821 ; - sc:citation ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'DNA', 'jats:inline-formula' | Multiple protein-DNA interfaces unravelled by evolutionary information, physico-chemical and geometrical properties | Protein-DNA complexes benchmarks | The high resolution protein-DNA complexes benchmark (HR-PDNA187) comprises 187 structures of protein-(ds)DNA complexes non-redundant at 25% sequence identity | This benchmark comprises the 82 HOLO(bound)-APO(unbound) pairs available in the Protein Data Bank (http: www.rcsb.org ) amongst the 187 protein-DNA complexes comprised in HR-PDNA187" ; - sc:featureList edam:operation_3900, - edam:operation_3901, - edam:operation_3903 ; - sc:name "PDNAbenchmarks" ; - sc:url "http://www.lcqb.upmc.fr/PDNAbenchmarks" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0208, - edam:topic_2640, - edam:topic_3170, - edam:topic_3379 ; - sc:citation ; - sc:description """Systematic Establishment of Robustness and Standards in Patient-Derived Xenograft Experiments and Analysis. - -Patient Derived Xenograft Search Form. - -MTB has been designed to aid researchers in such areas as choosing experimental models, reviewing patterns of mutations in specific cancers, and identifying genes that are commonly mutated across a spectrum of cancers. - -Patient Derived Xenograft (PDX) models for cancer research are created by the implantation of human cells and tumor tissue into immune compromised mouse hosts. PDX models provide a platform for in vivo cancer biology studies and pre-clinical cancer drug efficacy testing. The current state of the art mouse host is the "NOD-SCID-Gamma2" (NSG) mouse. NSG mice lack mature T and B cells, have no functional natural killer cells, and are deficient in both innate immunity and cytokine signaling. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'PDX', 'PDXNet', 'PDTC', 'tumor-in-mouse'""" ; - sc:featureList edam:operation_2421, - edam:operation_3435, - edam:operation_3629, - edam:operation_3891 ; - sc:name "PDXs" ; - sc:url "http://tumor.informatics.jax.org/mtbwi/pdxSearch.do" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0780, @@ -54691,42 +43809,8 @@ PEATmoss is an interactive tool to visualize gene expression data. These help pa sc:softwareHelp ; sc:url "https://peatmoss.online.uni-marburg.de" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3303, - edam:topic_3384 ; - sc:citation , - "pmcid:PMC6916454", - "pubmed:31842868" ; - sc:description """A novel approach to the program evaluation committee. - -BACKGROUND:The Accreditation Council for Graduate Medical Education requires each residency program to have a Program Evaluation Committee (PEC) but does not specify how the PEC should be designed. We sought to develop a PEC that promotes resident leadership and provides actionable feedback. METHODS:Participants were residents and faculty in the Traditional Internal Medicine residency program at Yale School of Medicine (YSM). One resident and one faculty member facilitated a 1-h structured group discussion to obtain resident feedback on each rotation. PEC co-facilitators summarized the feedback in written form, then met with faculty Firm Chiefs overseeing each rotation and with residency program leadership to discuss feedback and generate action plans. This PEC process was implemented in all inpatient and outpatient rotations over a 4-year period. - -||| HOMEPAGE MISSING!""" ; - sc:name "PEC" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31842868" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3337, - edam:topic_3417, - edam:topic_3444 ; - sc:citation , - "pubmed:31595961" ; - sc:description """Evaluating fMRI-Based Estimation of Eye Gaze During Naturalistic Viewing. - -Predictive Eye Estimation Regression. - -Son, J., Ai, L., Lim, R., Xu, T., Colcombe, S., Franco, A., Cloud, J., LaConte, S., Lisinski, J., Klein, A., Craddock, C., Milham, M. (2018). Evaluating fMRI-Based Estimation of Eye Gaze during Naturalistic Viewing. bioRxiv. https://doi.org/10.1101/347765. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'eye gaze'""" ; - sc:featureList edam:operation_2428, - edam:operation_3443, - edam:operation_3659 ; - sc:name "PEER" ; - sc:url "https://github.com/ChildMindInstitute/pypeer" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -54748,7 +43832,7 @@ Son, J., Ai, L., Lim, R., Xu, T., Colcombe, S., Franco, A., Cloud, J., LaConte, biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -54771,16 +43855,16 @@ PELE-MSM was applied on four diverse protein and ligand systems, successfully ra a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3707" ; - sc:name "Biodiversity data" ; - sc:sameAs "http://edamontology.org/data_3707" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3707" ; + sc:name "Biodiversity data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; + sc:applicationSubCategory edam:topic_3050 ; sc:description "a flexible Pipeline for Environmental DNA Metabarcoding Analysis of the 16S/18S rRNA, ITS and COI marker genes" ; sc:featureList edam:operation_3200 ; sc:isAccessibleForFree true ; @@ -54789,49 +43873,8 @@ PELE-MSM was applied on four diverse protein and ligand systems, successfully ra sc:softwareHelp ; sc:url "https://github.com/hariszaf/pema" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3305, - edam:topic_3489 ; - sc:citation , - "pmcid:PMC6791563", - "pubmed:31589183" ; - sc:description """Enhancing Access to Quality Online Training to Strengthen Public Health Preparedness and Response. - -PERLC Training Database and Guide. - -The PERLC Training Catalog features online training and other learning materials to help public health professionals and their partners prepare for and respond to emergencies. These materials were developed by university-based Preparedness and Emergency Response Learning Centers (PERLCs) funded by the Centers for Disease Control and Prevention (CDC) from 2010 to 2015. They mostly consist of online courses, as well as some exercises, toolkits and guides. The majority of available online PERLC materials are introductory-level, therefore, most of the content in this catalog is best suited for users who are looking to build awareness or begin their education in these topics. - -To learn more about the development of this catalog, visit the About page. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'preparedness', 'emergency preparedness'""" ; - sc:featureList edam:operation_2421, - edam:operation_2428 ; - sc:name "PERLC" ; - sc:url "http://perlc.nwcphp.org" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3304, - edam:topic_3305, - edam:topic_3403, - edam:topic_3407, - edam:topic_3419 ; - sc:citation , - "pubmed:31679171" ; - sc:description """a highly personalised and measurement-based care model to manage youth mental health. - -Mood and psychotic syndromes most often emerge during adolescence and young adulthood, a period characterised by major physical and social change. Consequently, the effects of adolescent-onset mood and psychotic syndromes can have long term consequences. A key clinical challenge for youth mental health is to develop and test new systems that align with current evidence for comorbid presentations and underlying neurobiology, and are useful for predicting outcomes and guiding decisions regarding the provision of appropriate and effective care. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'adolescent-onset mood psychotic syndromes', 'PERSONALISED MEASUREMENT-BASED CARE YOUTH', 'MEASUREMENT-BASED CARE YOUTH MENTAL', 'adolescent-onset mood psychotic'""" ; - sc:featureList edam:operation_3435, - edam:operation_3436 ; - sc:name "PERSONALISED MEASUREMENT-BASED CARE YOUTH MENTAL" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31679171" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0623, @@ -54854,7 +43897,7 @@ Mood and psychotic syndromes most often emerge during adolescence and young adul "Eduardo Pérez-Palma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0623, edam:topic_0634, @@ -54871,7 +43914,7 @@ Mood and psychotic syndromes most often emerge during adolescence and young adul sc:url "https://github.com/edoper/PERs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_3063, @@ -54891,46 +43934,46 @@ Mood and psychotic syndromes most often emerge during adolescence and young adul a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3827" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3681" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3827" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3827" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3247" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3827" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3827" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3004" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3827" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3681" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -54953,7 +43996,7 @@ Mood and psychotic syndromes most often emerge during adolescence and young adul sc:url "https://github.com/PRIDE-Toolsuite/PGConverter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3056, @@ -54981,7 +44024,7 @@ Computational tools are implemented into the PGG.Han, and an online user interfa sc:url "http://www.pgghan.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, edam:topic_2815, @@ -55001,7 +44044,7 @@ The tool provides useful web tools for figure illustration. Users can upload the sc:url "https://www.pggsnv.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3173, edam:topic_3308, @@ -55018,7 +44061,7 @@ The tool provides useful web tools for figure illustration. Users can upload the sc:url "http://opendata.lifebit.ai/table/pgp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Manipulation,filter and sort NGS data." ; @@ -55026,13 +44069,13 @@ The tool provides useful web tools for figure illustration. Users can upload the sc:url "https://bioweb.pasteur.fr/packages/pack@PGP_tools@0.0.1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "PGxLOD is intended to host pharmacogenomic knowledge that the PractiKPharma project will extract from various sources such as the literature and Electronic Health Records." ; sc:name "PGxLOD" ; sc:url "https://pgxlod.loria.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0218, edam:topic_3375, @@ -55048,38 +44091,8 @@ The tool provides useful web tools for figure illustration. Users can upload the sc:name "PGxMine" ; sc:url "https://pgxmine.pharmgkb.org/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0202, - edam:topic_0820, - edam:topic_2830, - edam:topic_3303 ; - sc:citation , - , - , - "pmcid:PMC6844537", - "pmcid:PMC6844578", - "pmcid:PMC6844580", - "pubmed:31710715", - "pubmed:31710717", - "pubmed:31710719" ; - sc:description """THE CONCISE GUIDE TO PHARMACOLOGY 2019/20. - -IUPHAR/BPS Guide to PHARMACOLOGY. - -The IUPHAR/BPS Guide to PHARMACOLOGY. An expert-driven guide to pharmacological targets with quantitative information on the prescription medicines and experimental dugs that act on them. Developed as a joint initiative of the International Union of Basic and Clinical Pharmacology (IUPHAR) and the British Pharmacological Society (BPS) and is now the new home of the IUPHAR Database (IUPHAR-DB). - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/guidetopharmacology (GUIDETOPHARMACOLOGY.ORG), bio.tools/iuphar-db (GUIDETOPHARMACOLOGY.ORG). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Guide' (bio.tools/guide), 'Concise Guide PHARMACOLOGY 2019 20'""" ; - sc:featureList edam:operation_0269, - edam:operation_2995, - edam:operation_3799 ; - sc:name "PHARMACOLOGY" ; - sc:url "http://www.guidetopharmacology.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -55100,10 +44113,10 @@ The IUPHAR/BPS Guide to PHARMACOLOGY. An expert-driven guide to pharmacological a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_3749" ; + sc:name "Genotype/phenotype report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0625 ; sc:citation ; @@ -55121,7 +44134,7 @@ Plant phenotyping is central to plant research and breeding and is becoming incr sc:url "https://brapi.biodata.pt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0625, edam:topic_2259, @@ -55138,7 +44151,7 @@ Plant phenotyping is central to plant research and breeding and is becoming incr sc:url "https://github.com/anchangben/PHENOSTAMP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_2885, @@ -55157,7 +44170,7 @@ Successful management and utilization of increasingly large genomic datasets are sc:url "https://bitbucket.org/bucklerlab/p_sorghumphg/src/master" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0621, edam:topic_0625, @@ -55176,7 +44189,7 @@ Successful management and utilization of increasingly large genomic datasets are sc:url "https://github.com/PHI-base/phi-nets/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0160, @@ -55192,7 +44205,7 @@ Successful management and utilization of increasingly large genomic datasets are sc:url "https://github.com/bxlab/PHOSforUS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0084 ; @@ -55209,26 +44222,8 @@ Successful management and utilization of increasingly large genomic datasets are ; sc:url "http://www.phyloviz.net/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0209, - edam:topic_2275, - edam:topic_3047, - edam:topic_3303, - edam:topic_3444 ; - sc:citation ; - sc:description """Persistent Homology for Virtual Screening. - -

Finding new medicines is one of the most important tasks of pharma- ceutical companies. One of the best approaches to finding a new drug starts with answering this simple question: Given a known effective drug X, what are the top 100 molecules in our database most similar to X. Thus the essence of the problem is a nearest-neighbors search, and the key question is how to define the distance between two molecules in the database. In this paper, we investigate the use of topological, rather than geometric, or chemical, signatures for molecules, and two notions of distance that come from comparing these topological signatures. We introduce PHoS (for Persistent Homology-based virtual Screening), a new system for ligand-based screening using a topological technique known as multi-parameter persistent homology. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0337, - edam:operation_0482, - edam:operation_2421 ; - sc:name "PHoS" ; - sc:url "https://doi.org/10.26434/CHEMRXIV.6969260.V2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0625, edam:topic_3308 ; @@ -55240,37 +44235,8 @@ Successful management and utilization of increasingly large genomic datasets are sc:name "PICEAdatabase" ; sc:url "http://www.piceadb.com/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3303, - edam:topic_3344 ; - sc:citation , - "pubmed:31874567" ; - sc:description """Using Evidence-Based Practice in Health Education. - -Search MEDLINE/PubMed via PICO with Spelling Checker. - -Patient, Intervention, Comparison, Outcome. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Review PubMed PICO Tool'""" ; - sc:featureList edam:operation_0305 ; - sc:name "PICO" ; - sc:url "https://pubmedhh.nlm.nih.gov/nlmd/pico/piconew.php" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0218, - edam:topic_3303 ; - sc:citation , - ; - sc:description """PICO and Risk Of bias Navigator for Evidence Based Medicine. - -Evidence-based medicine (EBM) involves determining treatment that matches the needs of each patient by integrating the best and latest available “scientific evidence” and “clinical skills”. Systematic review and meta-analysis refer to the process of searching databases and performing statistical analysis to integrate the results of multiple independent studies conducted in the past. The results obtained provide the highest quality evidence, which has become the foundation of various clinical guidelines. Systematic review and meta-analysis are conducted in the following sequence: 1) formulation of a hypothesis, 2) searching databases for articles, 3) selection of research articles, 4) evaluation of bias for each study, 5) integration of the results, 6) verification of bias, and 7) evaluation of the quality of the meta-analysis""" ; - sc:featureList edam:operation_2421 ; - sc:name "PICORON-EBM" ; - sc:url "http://www.picoron.com/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, @@ -55292,7 +44258,7 @@ Evidence-based medicine (EBM) involves determining treatment that matches the ne biotools:primaryContact "Thomas Nash" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3063, @@ -55307,7 +44273,7 @@ Evidence-based medicine (EBM) involves determining treatment that matches the ne sc:url "http://www.reading.ac.uk/bioinf/PINOT/PINOT_form.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3295, @@ -55327,7 +44293,7 @@ Evidence-based medicine (EBM) involves determining treatment that matches the ne biotools:primaryContact "Hung Nguyen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3360, edam:topic_3518, @@ -55348,7 +44314,7 @@ It is a tool that offers several state-of-the-art options for parsing, filtering sc:url "https://github.com/igg-molecular-biology-lab/pipe-t" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0780 ; @@ -55361,7 +44327,7 @@ It is a tool that offers several state-of-the-art options for parsing, filtering sc:url "https://pippa.psb.ugent.be/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3474 ; sc:citation , @@ -55375,7 +44341,7 @@ It is a tool that offers several state-of-the-art options for parsing, filtering sc:url "https://github.com/muhaochen/seq_ppi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0199, edam:topic_0623, @@ -55393,7 +44359,7 @@ It is a tool that offers several state-of-the-art options for parsing, filtering sc:url "https://github.com/SionBayliss/PIRATE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_3179, @@ -55410,7 +44376,7 @@ It is a tool that offers several state-of-the-art options for parsing, filtering sc:url "https://github.com/QuKunLab/PIRCh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2830, edam:topic_3400 ; @@ -55424,7 +44390,7 @@ It is a tool that offers several state-of-the-art options for parsing, filtering sc:url "https://db.cngb.org/pird" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -55448,7 +44414,7 @@ It is a tool that offers several state-of-the-art options for parsing, filtering biotools:primaryContact "M. S. Madhusudhan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2840, edam:topic_3375, edam:topic_3379 ; @@ -55460,7 +44426,7 @@ It is a tool that offers several state-of-the-art options for parsing, filtering sc:url "https://pk-db.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0102, @@ -55480,50 +44446,8 @@ It is a tool that offers several state-of-the-art options for parsing, filtering sc:url "https://castillo.dicom.unican.es/upload/" ; biotools:primaryContact "Fernando de la Cruz" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0780, - edam:topic_2885, - edam:topic_3474 ; - sc:citation , - "pubmed:31533899" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE BROKEN! | PLants based ANnotation and Establishment of True SNP pipeline | Acute prediction of SNPs (Single Nucleotide Polymorphisms) from high throughput sequencing data is a challenging problem, having potential to explore possible variation within plants species. For the extraction of profitable information from bulk of data, machine learning (ML) could lead to development of accurate model based on the learning of prior information. We performed state of art, in-depth learning on six different plant species. Comparative evaluation of five different algorithms showed that Random Forest substantially outperformed in selection of potential SNPs, with markedly improved prediction accuracy via 10-fold cross validation technique and integrated in system known as PLANET-SNP. We present the accurate method to extract the potential SNPs with user specific customizable parameters" ; - sc:featureList edam:operation_0484, - edam:operation_3661 ; - sc:name "PLANET-SNP pipeline" ; - sc:url "http://www.ncgd.nbri.res.in/PLANET-SNP-Pipeline.aspx" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3304, - edam:topic_3474 ; - sc:citation , - "pubmed:31783374" ; - sc:description """an investigation of the effect of nonlinearity and sparsity on the decoding of intracranial data. - -OBJECTIVE:Partial Least Squares regression is a suitable linear decoder model for correlated and high dimensional neural data. This algorithm has been widely used in the application of brain-computer interface (BCI) for decoding of motor parameters. PLS does not consider nonlinear relations between brain signal features. The nonlinear version of PLS that considers a nonlinear relationship between the latent variables has not been proposed for the decoding of intracranial data. This nonlinear model may cause overfitting in some cases due to more number of free parameters. In this paper, we develop a new version of nonlinear PLS namely nonlinear sparse PLS (NLS PLS) and test it in the BCI applications. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'nonlinear PLS', 'nonlinear'""" ; - sc:featureList edam:operation_3435, - edam:operation_3659, - edam:operation_3891 ; - sc:name "PLS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31783374" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0176, - edam:topic_0749, - edam:topic_3314 ; - sc:citation , - "pubmed:31363226" ; - sc:description "> LOW CONFIDENCE! | > NAME (PLUMED) SIMILAR TO (PUB. DIFFERENT) bio.tools/plumed (Plumed) | Promoting transparency and reproducibility in enhanced molecular simulations | The public repository of the PLUMED consortium | PLUMED-NEST is the public repository of the PLUMED consortium. It provides all the data needed to reproduce the results of a PLUMED-enhanced molecular dynamics simulation (or analysis) contained in a published paper. Furthermore, PLUMED-NEST monitors the compatibility of the provided PLUMED input files with the current and development versions of the code and integrates links from these files to the PLUMED manual | The community-developed PLUgin for MolEcular Dynamics | PLUMED is an open-source, community-developed library that provides a wide range of different methods, which include: | Home News People Download Doc Forum Cite NEST Funding" ; - sc:featureList edam:operation_0244, - edam:operation_2476 ; - sc:name "PLUMED_autogenerated" ; - sc:url "https://www.plumed-nest.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0749, edam:topic_3314 ; @@ -55536,7 +44460,7 @@ OBJECTIVE:Partial Least Squares regression is a suitable linear decoder model fo sc:url "https://www.plumed-nest.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0821, edam:topic_3297, @@ -55551,7 +44475,7 @@ OBJECTIVE:Partial Least Squares regression is a suitable linear decoder model fo sc:url "http://pmbd.genome-mining.cn/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0769, @@ -55568,7 +44492,7 @@ OBJECTIVE:Partial Least Squares regression is a suitable linear decoder model fo sc:url "https://github.com/slhubler/PMD-FDR-for-paper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, edam:topic_2830 ; @@ -55579,7 +44503,7 @@ OBJECTIVE:Partial Least Squares regression is a suitable linear decoder model fo sc:url "https://github.com/v-panchal/PMML" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0605, edam:topic_2640, @@ -55599,7 +44523,7 @@ OBJECTIVE:Partial Least Squares regression is a suitable linear decoder model fo biotools:primaryContact "Mandi Pratt-Chapman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, edam:topic_0625, @@ -55618,7 +44542,7 @@ OBJECTIVE:Partial Least Squares regression is a suitable linear decoder model fo sc:url "https://github.com/NWPU-903PR/PNC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3050, edam:topic_3306, @@ -55633,7 +44557,7 @@ OBJECTIVE:Partial Least Squares regression is a suitable linear decoder model fo sc:url "https://github.com/envirometrix/PNVmaps" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3292, @@ -55656,7 +44580,7 @@ OBJECTIVE:Partial Least Squares regression is a suitable linear decoder model fo "Guy Melancon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, edam:topic_2275 ; @@ -55670,7 +44594,7 @@ OBJECTIVE:Partial Least Squares regression is a suitable linear decoder model fo sc:url "http://caps.ncbs.res.in/ppcheck/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0602, edam:topic_2640, @@ -55687,7 +44611,7 @@ OBJECTIVE:Partial Least Squares regression is a suitable linear decoder model fo sc:url "https://cbb.ut.ac.ir/pphage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -55707,27 +44631,8 @@ OBJECTIVE:Partial Least Squares regression is a suitable linear decoder model fo sc:softwareHelp ; sc:url "https://ppicurator.hupo.org.cn/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0154, - edam:topic_0202, - edam:topic_2830, - edam:topic_3047 ; - sc:citation , - "pubmed:31603323" ; - sc:description """Exhaustive Repertoire of Druggable Cavities at Protein-Protein Interfaces of Known Three-Dimensional Structure. - -Protein-protein interactions (PPIs) offer the unique opportunity to tailor ligands aimed at specifically stabilizing or disrupting the corresponding interfaces and providing a safer alternative to conventional ligands targeting monomeric macromolecules. Selecting biologically relevant protein-protein interfaces for either stabilization or disruption by small molecules is usually biology-driven on a case-by-case basis and does not follow a structural rationale that could be applied to an entire interactome. We herewith provide a first step to the latter goal by using a fully automated and structure-based workflow, applicable to any PPI of known three-dimensional (3D) structure, to identify and prioritize druggable cavities at and nearby PPIs of pharmacological interest. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/ppi""" ; - sc:featureList edam:operation_0478, - edam:operation_2950, - edam:operation_3351 ; - sc:name "PPI_autogenerated" ; - sc:url "http://drugdesign.unistra.fr/ppiome" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0769, edam:topic_3810 ; @@ -55740,7 +44645,7 @@ Protein-protein interactions (PPIs) offer the unique opportunity to tailor ligan sc:url "https://github.com/xueqing4083/PPNID" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, edam:topic_3796 ; @@ -55756,7 +44661,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://ppp.readthedocs.io/en/latest/PPP_pages/install.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, edam:topic_0625, @@ -55776,7 +44681,7 @@ BACKGROUND:Biomedical literature concerns a wide range of concepts, requiring co sc:url "https://github.com/lasigeBioTM/PPRSSM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0601, edam:topic_3474 ; @@ -55788,7 +44693,7 @@ BACKGROUND:Biomedical literature concerns a wide range of concepts, requiring co sc:url "http://cse.iitkgp.ac.in/~pralay/resources/PPSBoost/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3305, @@ -55809,7 +44714,7 @@ BACKGROUND:Biomedical literature concerns a wide range of concepts, requiring co biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, edam:topic_0623, @@ -55825,7 +44730,7 @@ BACKGROUND:Biomedical literature concerns a wide range of concepts, requiring co sc:url "https://github.com/labgem/PPanGGOLiN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2269, edam:topic_3305 ; @@ -55840,18 +44745,18 @@ BACKGROUND:Biomedical literature concerns a wide range of concepts, requiring co a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0868" ; - sc:name "Profile-profile alignment" ; - sc:sameAs "http://edamontology.org/data_0868" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0868" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Profile-profile alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -55869,7 +44774,7 @@ BACKGROUND:Biomedical literature concerns a wide range of concepts, requiring co biotools:primaryContact "Centre for Integrative Bioinformatics VU (IBIVU), Vrije Universiteit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -55891,7 +44796,7 @@ BACKGROUND:Biomedical literature concerns a wide range of concepts, requiring co biotools:primaryContact "Peng Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3512, edam:topic_3794 ; @@ -55905,30 +44810,16 @@ BACKGROUND:Biomedical literature concerns a wide range of concepts, requiring co sc:name "PRAS" ; sc:url "https://github.com/ouyang-lab/PRAS" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3360, - edam:topic_3379, - edam:topic_3577 ; - sc:citation , - "pmcid:PMC6612899", - "pubmed:31510654" ; - sc:description "> NAME (PRECISE) SIMILAR TO (PUB. DIFFERENT) bio.tools/precise (Precise) | > CORRECT NAME OF TOOL COULD ALSO BE 'IMPLEMENTATION:PRECISE' | a domain adaptation approach to transfer predictors of drug response from pre-clinical models to tumors | Example of usage of PRECISE is available at this address: https://github.com/NKI-CCB/PRECISE_figures Examples correspond to scripts used for creating figures" ; - sc:featureList edam:operation_2436, - edam:operation_3891 ; - sc:license "MIT" ; - sc:name "PRECISE_autogenerated" ; - sc:url "https://github.com/NKI-CCB/PRECISE" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation , @@ -55944,41 +44835,8 @@ BACKGROUND:Biomedical literature concerns a wide range of concepts, requiring co sc:softwareVersion "1.1" ; sc:url "http://precog.russelllab.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3168, - edam:topic_3295, - edam:topic_3519 ; - sc:citation , - "pmcid:PMC6821303", - "pubmed:31418020" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'Polymerization Retardation Isothermal Amplification', '5hmC', '5hmC 5fC', '5fC' | a strategy enables sensitively quantify genome-wide 5-methylcytosine oxides rapidly on handy instruments with nanoscale sample input | The current methods for quantifying genome-wide 5-methylcytosine (5mC) oxides are still scarce, mostly restricted with two limitations: assay sensitivity is seriously compromised with cost, assay time and sample input; epigenetic information is irreproducible during polymerase chain reaction (PCR) amplification without bisulfite pretreatment. Here, we propose a novel Polymerization Retardation Isothermal Amplification (PRIA) strategy to directly amplify the minute differences between epigenetic bases and others by arranging DNA polymerase to repetitively pass large electron-withdrawing groups tagged 5mC-oxides" ; - sc:featureList edam:operation_0308, - edam:operation_3186 ; - sc:name "PRIA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31418020" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0121, - edam:topic_0154, - edam:topic_2815, - edam:topic_3520 ; - sc:citation ; - sc:description """Proteomics identifies signal peptide features determining the substrate specificity in human Sec62/Sec63-dependent ER protein import. - -Proteomics Identification Database. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/pride. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'partner repository dataset', 'Proteomics identifies', '6s5hn73jcv 1', 'Sec62 Sec63-complex'""" ; - sc:featureList edam:operation_0418, - edam:operation_3431, - edam:operation_3630 ; - sc:name "PRIDE_autogenerated" ; - sc:url "http://www.ebi.ac.uk/pride/archive/projects/Identifiers" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0623, edam:topic_0749, @@ -55998,26 +44856,8 @@ PRIGSA2 is a graph based algorithm which implements knowledge-based and de novo sc:name "PRIGSA2" ; sc:url "http://bioinf.iiit.ac.in/PRIGSA2/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0605, - edam:topic_3068, - edam:topic_3420 ; - sc:citation , - "pmcid:PMC6896786", - "pubmed:31805931" ; - sc:description """Preliminary validation of the PRImary care facility Management Evaluation tool (PRIME-Tool). - -BACKGROUND:The management quality of healthcare facilities has consistently been linked to facility performance, but available tools to measure management are costly to implement, often hospital-specific, not designed for low- and middle-income countries (LMICs), nor widely deployed. We addressed this gap by developing the PRImary care facility Management Evaluation Tool (PRIME-Tool), a primary health care facility management survey for integration into routine national surveys in LMICs. We present an analysis of the tool's psychometric properties and suggest directions for future improvements. METHODS:The PRIME-Tool assesses performance in five core management domains: Target setting, Operations, Human resources, Monitoring, and Community engagement. We evaluated two versions of the PRIME-Tool. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_2428, - edam:operation_3359, - edam:operation_3760 ; - sc:name "PRIME-Tool" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31805931" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, edam:topic_3518, @@ -56035,7 +44875,7 @@ BACKGROUND:The management quality of healthcare facilities has consistently been sc:url "https://primeval.ait.ac.at" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3263, edam:topic_3325 ; @@ -56053,7 +44893,7 @@ BACKGROUND:The management quality of healthcare facilities has consistently been biotools:primaryContact "Feng Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, edam:topic_3674 ; @@ -56068,83 +44908,8 @@ BACKGROUND:The management quality of healthcare facilities has consistently been sc:name "PRISM" ; sc:url "https://github.com/dohlee/prism" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0654, - edam:topic_3295, - edam:topic_3674 ; - sc:citation , - "pmcid:PMC6612819", - "pubmed:31510697" ; - sc:description "> NAME EQUAL TO (PUB. DIFFERENT) bio.tools/prism-ppi | > NAME (PRISM) SIMILAR TO (PUB. DIFFERENT) bio.tools/prism_3 (PRISM 3), bio.tools/prism-primer (PriSM), bio.tools/prism (PrISM) | methylation pattern-based, reference-free inference of subclonal makeup | Methylation Pattern-based, Reference-free Inference of Subclonal Makeup. (v1.0.1) | PRISM requires the mapping result of Bismark, a bisulfite read mapping tool. Also note that PRISM only applies to RRBS data, and unfortunately, the feasibility of PRISM to the data from other methylation profiling techniques such as whole genome bisulfite sequencing (WGBS), methylated DNA immunoprecipitation sequencing (MeDIP-Seq), or methyl-CpG binding domain-based capture sequencing (MBDCap-Seq) has not been verified | BAM file of RRBS reads, aligned by Bismark" ; - sc:featureList edam:operation_3186, - edam:operation_3206, - edam:operation_3629 ; - sc:license "MIT" ; - sc:name "PRISM_autogenerated" ; - sc:url "https://github.com/dohlee/prism" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3174, - edam:topic_3277, - edam:topic_3305, - edam:topic_3673 ; - sc:citation ; - sc:description """Comparison of Shiga toxin-encoding bacteriophages in highly pathogenic strains of Shiga toxin-producing Escherichia coli O157:H7 in the UK. - -A BioProject is a collection of biological data related to a single initiative, originating from a single organization or from a consortium. A BioProject record provides users a single place to find links to the diverse data types generated for that project. - -Accession: PRJNA315192 ID: 315192. - -||| NAME (PRJNA315192) SIMILAR TO (PUB. DIFFERENT) bio.tools/PRJNA562212 (PRJNA562212). - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/bioproject (NLM.NIH.GOV/bioproject). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'stx2a -encoding prophage', 'sub-lineages STEC O157:H7', 'indigenous sub-lineages STEC O157:H7', 'STEC O157:H7'""" ; - sc:featureList edam:operation_0310, - edam:operation_3431 ; - sc:name "PRJNA315192" ; - sc:url "https://www.ncbi.nlm.nih.gov/bioproject/?term=PRJNA315192" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_3170, - edam:topic_3308, - edam:topic_3324, - edam:topic_3512 ; - sc:citation , - "pubmed:31663680" ; - sc:description """Bovine milk transcriptome analysis reveals microRNAs and RNU2 involved in mastitis. - -A BioProject is a collection of biological data related to a single initiative, originating from a single organization or from a consortium. A BioProject record provides users a single place to find links to the diverse data types generated for that project. - -Accession: PRJNA421075 ID: 421075. - -||| NAME (PRJNA421075) SIMILAR TO (PUB. DIFFERENT) bio.tools/PRJNA562212 (PRJNA562212). - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/bioproject (NLM.NIH.GOV/bioproject). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'bovine mastitis', 'mastitis', 'miR-1246', 'RNU2'""" ; - sc:featureList edam:operation_0463, - edam:operation_3435, - edam:operation_3792 ; - sc:name "PRJNA421075" ; - sc:url "https://www.ncbi.nlm.nih.gov/bioproject/PRJNA421075" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0203, - edam:topic_3170 ; - sc:citation , - "pubmed:31487093" ; - sc:description "> MEDIUM CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/bioproject (NLM.NIH.GOV/bioproject) | > CORRECT NAME OF TOOL COULD ALSO BE 'Sequence Read', 'Sequence Read Archive' | Genetic variation and temperature affects hybrid barriers during interspecific hybridization | Arabidopsis thaliana (ID 562212) | A BioProject is a collection of biological data related to a single initiative, originating from a single organization or from a consortium. A BioProject record provides users a single place to find links to the diverse data types generated for that project | Accession: PRJNA562212 ID: 562212" ; - sc:featureList edam:operation_3197, - edam:operation_3431 ; - sc:name "PRJNA562212" ; - sc:url "https://www.ncbi.nlm.nih.gov/bioproject/?term=PRJNA562212" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -56174,7 +44939,7 @@ Accession: PRJNA421075 ID: 421075. sc:url "http://milou.science.uu.nl/services/PRODIGY-LIG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0128, @@ -56196,7 +44961,7 @@ Accession: PRJNA421075 ID: 421075. "Anna Vangone" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -56217,7 +44982,7 @@ Accession: PRJNA421075 ID: 421075. "Ron Shamir" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, edam:topic_0749, @@ -56237,7 +45002,7 @@ Gene regulation is a highly complex and networked phenomenon where multiple tier sc:url "https://scbb.ihbt.res.in/PRP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3400, edam:topic_3473, @@ -56255,7 +45020,7 @@ PRRpred is a web server designed for predicting pattern Recognition Receptors (P sc:url "http://webs.iiitd.edu.in/raghava/prrpred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3298, edam:topic_3416, @@ -56277,7 +45042,7 @@ PRRpred is a web server designed for predicting pattern Recognition Receptors (P biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3382, @@ -56298,7 +45063,7 @@ PRRpred is a web server designed for predicting pattern Recognition Receptors (P biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2814, @@ -56317,23 +45082,8 @@ PRRpred is a web server designed for predicting pattern Recognition Receptors (P sc:url "http://brl.uiu.ac.bd/PL/" ; biotools:primaryContact "Swakkhar Shatabda​" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0593, - edam:topic_0602 ; - sc:citation , - "pubmed:31882247" ; - sc:description """Detergent-free Cyanobacterial Photosystem I, Reveals Faster Femtosecond Photochemistry. - -Cyanobacterial photosystem I (PSI) functions as a light-driven cyt c6-ferredoxin oxidoreductase located in the thylakoid membrane. In this work, the energy and charge transfer processes in PSI complexes isolated from Thermosynechococcus elongatus via conventional n-dodecyl-β-D-maltoside solubilization (DM-PSI) and a, to our knowledge, new detergent-free method using styrene-maleic acid copolymers (SMA-PSI) have been investigated by pump-to-probe femtosecond laser spectroscopy. In DM-PSI preparations excited at 740 nm, the excitation remained localized on the long-wavelength chlorophyll forms within 0.1-20 ps and revealed little or no charge separation and oxidation of the special pair, P700. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'SMA-PSI', 'DM-PSI', 'P700', 'detergent-free SMA-PSI'""" ; - sc:name "PSI-SMALP" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31882247" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320, @@ -56355,7 +45105,7 @@ Cyanobacterial photosystem I (PSI) functions as a light-driven cyt c6-ferredoxin biotools:primaryContact "Kuan-Ting Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168 ; sc:citation , @@ -56369,22 +45119,8 @@ Cyanobacterial photosystem I (PSI) functions as a light-driven cyt c6-ferredoxin sc:name "PSI" ; sc:url "https://github.com/cartoonist/psi" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_3168 ; - sc:citation , - "pmcid:PMC6612829", - "pubmed:31510650" ; - sc:description "> LOW CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/psi | > CORRECT NAME OF TOOL COULD ALSO BE 'cartoonist', 'MOTIVATION:Sequence', 'fully-sensitive', 'IMPLEMENTATION:The' | Fully-sensitive seed finding in sequence graphs using a hybrid index | Graph REad Mapper (C++ implementation) | Google protocol buffer >= v3.0.0" ; - sc:featureList edam:operation_0249, - edam:operation_0524, - edam:operation_3211 ; - sc:license "MIT" ; - sc:name "PSI_autogenerated" ; - sc:url "https://github.com/cartoonist/psi" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_2640, edam:topic_2885, @@ -56409,14 +45145,14 @@ Microsatellites (simple repeat sequences, SSRs or short tandem repeats, STRs), a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "Prediction of FUS-like phase separation proteins" ; sc:featureList edam:operation_3092 ; @@ -56425,7 +45161,7 @@ Microsatellites (simple repeat sequences, SSRs or short tandem repeats, STRs), a biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0659, @@ -56449,7 +45185,7 @@ Microsatellites (simple repeat sequences, SSRs or short tandem repeats, STRs), a biotools:primaryContact "Systems Biology Lab, National Chung Hsing University" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3170, @@ -56467,20 +45203,8 @@ Microsatellites (simple repeat sequences, SSRs or short tandem repeats, STRs), a sc:name "PSSRdt" ; sc:url "https://github.com/PSSRdt/program" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_0736, - edam:topic_0820 ; - sc:citation ; - sc:description "> NAME EQUAL TO (PUB. DIFFERENT) bio.tools/pss | An enabling QTY server for designing water-soluble α-helical transmembrane proteins | Although the QTY/NTY code-based design is relative straightforward, the design job is still time-consuming if only a manual manner is available, especially for library design, which will be impractical without computing power. Here a web-based PSS sever was developed for facilitating the protein design based on the QTY/NTY code. This server is expected to be used widely by scientists who are endeavoring in the research about alpha-helical proteins | QTY/NTY Design for Protein Solubilizing | Membrane proteins play vital roles in all living systems" ; - sc:featureList edam:operation_0269, - edam:operation_2241, - edam:operation_2485 ; - sc:name "PSS_autogenerated" ; - sc:url "http://pss.sjtu.edu.cn" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, edam:topic_0601, @@ -56500,7 +45224,7 @@ PTM-CrossTalkMapper is a flexible toolkit to visualize multi-layered quantitativ sc:url "https://github.com/veitveit/CrossTalkMapper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -56522,33 +45246,8 @@ PTM-CrossTalkMapper is a flexible toolkit to visualize multi-layered quantitativ sc:url "https://github.com/jmwozniak/PTMphinder" ; biotools:primaryContact "Jacob M. Wozniak" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3168, - edam:topic_3341, - edam:topic_3895 ; - sc:citation , - "pmcid:PMC6720219", - "pubmed:31405219" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | A Fast and Efficient Method for Cloning Random Mutagenesis Libraries | QuickStep is a cloning method that allows seamless point integration of a DNA sequence at any position within a target plasmid using only Q5 High-Fidelity DNA Polymerase and DpnI endonuclease. This efficient and cost-effective method consists of two steps: two parallel asymmetric PCRs, followed by a megaprimer-based whole-plasmid amplification. To further simplify the workflow, enhance the efficiency, and increase the uptake of QuickStep, we replaced the asymmetric PCRs with a conventional PCR that uses phosphorothioate (PTO) oligos to generate megaprimers with 3' overhangs. The ease and speed of PTO-QuickStep were demonstrated through (1) right-first-time cloning of a 1.8 kb gene fragment into a pET vector and (2) creating a random mutagenesis library for directed evolution" ; - sc:featureList edam:operation_0308, - edam:operation_3237 ; - sc:name "PTO-QuickStep" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31405219" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0154, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6728961", - "pubmed:31492094" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | predicting therapeutic peptides by deep learning and word2vec | *: Background In the search for therapeutic peptides for disease treatments, many efforts have been made to identify various functional peptides from large numbers of peptide sequence databases. In this paper, we propose an effective computational model that uses deep learning and word2vec to predict therapeutic peptides (PTPD). *: Results Representation vectors of all k-mers were obtained through word2vec based on k-mer co-existence information. The original peptide sequences were then divided into k-mers using the windowing method. The peptide sequences were mapped to the input layer by the embedding vector obtained by word2vec. Three types of filters in the convolutional layers, as well as dropout and max-pooling operations, were applied to construct feature maps" ; - sc:featureList edam:operation_3646 ; - sc:name "PTPD" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31492094" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0203, @@ -56561,7 +45260,7 @@ PTM-CrossTalkMapper is a flexible toolkit to visualize multi-layered quantitativ sc:url "https://github.com/arunima2/PTRE_PSB_2020" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3403, edam:topic_3421, edam:topic_3474 ; @@ -56574,30 +45273,8 @@ This clinical data analysis tool can be used to do data cleaning and predict the sc:name "PTRBC" ; sc:url "https://github.com/niu-lab/PTRBC" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0140, - edam:topic_0154, - edam:topic_0621, - edam:topic_3336 ; - sc:citation , - "pmcid:PMC5750839", - "pubmed:31725865" ; - sc:description """a pharmaceutical target seeker. - -Identifying protein targets for a bioactive compound is critical in drug discovery. Molecular similarity is a main approach to fish drug targets, and is based upon an axiom that similar compounds may have the same targets. The molecular structural similarity of a compound and the ligand of a known target can be gauged in topological (2D), steric (3D) or static (pharmacophoric) metric. The topologic metric is fast, but unable to represent steric and static profile of a bioactive compound. Steric and static metrics reflect the shape properties of a compound if its structure were experimentally obtained, and could be unreliable if they were based upon the putative conformation data. - -||| HOMEPAGE BROKEN!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/pts""" ; - sc:featureList edam:operation_0337, - edam:operation_0478, - edam:operation_2421 ; - sc:name "PTS_autogenerated" ; - sc:url "http://www.rcdd.org.cn/PTS" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, edam:topic_3170, @@ -56618,7 +45295,7 @@ This repository contains the software implementations and necessary annotation r sc:url "https://github.com/xqwen/ptwas/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2840, edam:topic_3314 ; @@ -56633,7 +45310,7 @@ This repository contains the software implementations and necessary annotation r sc:url "https://pubchemdocs.ncbi.nlm.nih.gov/pug-view" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0780, edam:topic_2259, @@ -56651,7 +45328,7 @@ PVCTools is Parallel Variation Calling Tools, which tries to call variation usin sc:url "https://github.com/CNaibon/PVCTools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3063, edam:topic_3337, @@ -56666,7 +45343,7 @@ ABSTRACT While polygenic risk scores (PRSs) have been shown to identify a small sc:url "http://apps.chiragjpgroup.org/pxs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2269, edam:topic_3056 ; @@ -56685,7 +45362,7 @@ PYLFIRE requires Python 3.6 or greater and a Fortran compiler, for Mac users bre sc:url "https://github.com/elfi-dev/zoo/tree/master/pylfire" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3452, edam:topic_3474 ; @@ -56700,7 +45377,7 @@ PYLFIRE requires Python 3.6 or greater and a Fortran compiler, for Mac users bre sc:url "https://github.com/csyben/PYRO-NN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -56718,19 +45395,8 @@ PaCBAM_Performance_analysis – Google Drev""" ; sc:name "PaCBAM" ; sc:url "http://bcglab.cibio.unitn.it/PaCBAM" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3376, - edam:topic_3403 ; - sc:citation , - "pubmed:31400991" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'pharmacist' | A tool to enhance pharmacist patient care intervention reporting | OBJECTIVES:To develop a pharmacist patient care services intervention reporting checklist to be used in conjunction with existing primary reporting tools. The tool should enhance consistent reporting of pharmacist patient care interventions. Tool use in pharmacist-patient care intervention reporting may increase: (1) likelihood for inclusion in higher order analyses and (2) successful replication. METHODS:Adhering to principles of the Equator Network, a modified Delphi approach was used. An expert group identified guidance need, conducted a thorough literature search confirming need, developed a comprehensive list of potential elements, refined the list via multiple rounds, finalized language and structure, and published the checklist" ; - sc:featureList edam:operation_3891 ; - sc:name "PaCIR" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31400991" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3315, @@ -56752,7 +45418,7 @@ PaCBAM_Performance_analysis – Google Drev""" ; "Srinivas Aluru" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3318, edam:topic_3474 ; sc:citation , @@ -56763,7 +45429,7 @@ PaCBAM_Performance_analysis – Google Drev""" ; sc:url "http://ninapro.hevs.ch/node/229" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749, @@ -56782,13 +45448,15 @@ PaCBAM_Performance_analysis – Google Drev""" ; biotools:primaryContact "Wenmin Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:description "PanGeneHome is designed to facilitate pangenome analysis for all sequenced prokaryotes at any taxonomical level." ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "PanGeneHome is a web server dedicated to the analysis of available microbial pangenomes. Several standalone tools (e.g. PGAP, PANNOTATOR, PanGP, Roary and BPGA) and web servers (e.g. Panseq, PGAT and PanWeb) dedicated to pangenome analysis have been developed recently and offer the possibility to compute pangenome analysis for genomes provided by a user. For all these tools and servers, users have to collect genomes and manage to run the tools, which implies a significant effort on the user side. To tackle this problem, we developped PanGeneHome, the only web site offering pre-computed pangenome analysis with up-to-date and large scale data. PanGeneHome provides an easy way to get a glimpse on the pangenome of a microbial group of interest, the analysis being precomputed and available for 615 taxa, covering 182 species and 49 orders. Considering the fast growing number of microbial genomes, the PanGeneHome tool will need to be updated regularly." ; sc:name "PanGeneHome" ; + sc:softwareHelp ; sc:url "http://pangenehome.lmge.uca.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0102, @@ -56805,7 +45473,7 @@ PaCBAM_Performance_analysis – Google Drev""" ; sc:url "https://git.wur.nl/bioinformatics/pantools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3292, @@ -56836,7 +45504,7 @@ If you need to convert files from one markup format into another, pandoc is your sc:url "https://github.com/pandoc-scholar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -56853,7 +45521,7 @@ If you need to convert files from one markup format into another, pandoc is your sc:url "https://github.com/mhu10/scPanoView" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -56875,7 +45543,7 @@ If you need to convert files from one markup format into another, pandoc is your sc:url "https://bioinfo-abcc.ncifcrf.gov/panoromics/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3303, @@ -56896,7 +45564,7 @@ If you need to convert files from one markup format into another, pandoc is your sc:url "http://paperbot.ai/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3068 ; @@ -56916,7 +45584,7 @@ If you need to convert files from one markup format into another, pandoc is your biotools:primaryContact "Benoit Morel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -56934,7 +45602,7 @@ BACKGROUND:Long-read sequencing has shown the promises to overcome the short len sc:url "https://github.com/arghyakusumdas/GenomicErrorCorrection" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0625 ; sc:citation ; @@ -56951,75 +45619,14 @@ BACKGROUND:Long-read sequencing has shown the promises to overcome the short len sc:softwareHelp ; sc:url "https://github.com/Illumina/paragraph" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_3175, - edam:topic_3673 ; - sc:citation , - "pmcid:PMC6921448", - "pubmed:31856913" ; - sc:description """a graph-based structural variant genotyper for short-read sequence data. - -Accurate detection and genotyping of structural variations (SVs) from short-read data is a long-standing area of development in genomics research and clinical sequencing pipelines. We introduce Paragraph, an accurate genotyper that models SVs using sequence graphs and SV annotations. We demonstrate the accuracy of Paragraph on whole-genome sequence data from three samples using long-read SV calls as the truth set, and then apply Paragraph at scale to a cohort of 100 short-read sequenced samples of diverse ancestry. Our analysis shows that Paragraph has better accuracy than other existing genotypers and can be applied to population-scale studies. - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/Paragraph""" ; - sc:featureList edam:operation_0487, - edam:operation_3196, - edam:operation_3227, - edam:operation_3228 ; - sc:name "Paragraph_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31856913" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Paraload is an original utility which ensures job distribution between thousands of processors, according to the type of the data to be analysed." ; sc:name "Paraload" ; sc:url "ftp://doua.prabi.fr/pub/logiciel/paraload" . - a sc:SoftwareApplication ; - sc:citation , - "pmcid:PMC6789304", - "pubmed:31620471" ; - sc:description """in search of good quality apps. - -Google er tilgængelig på: English Føroyskt. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'parenting apps', 'apps'""" ; - sc:featureList edam:operation_2421, - edam:operation_3096 ; - sc:name "Parenting apps review" ; - sc:url "https://www.google.ca/?gws_rd=ssl#q=parenting+apps" . - - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31504178" ; - sc:description "> MEDIUM CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/partition | a surjective mapping approach for dimensionality reduction | Agglomerative Partitioning Framework for Dimension Reduction | A fast and flexible framework for agglomerative partitioning. 'partition' uses an approach called Direct-Measure-Reduce to create new variables that maintain the user-specified minimum level of information. Each reduced variable is also interpretable: the original variables map to one and only one variable in the reduced data set. 'partition' is flexible, as well: how variables are selected to reduce, how information loss is measured, and the way data is reduced can all be customized" ; - sc:license "MIT" ; - sc:name "Partition_autogenerated" ; - sc:url "https://cran.r-project.org/package=partition" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3376, - edam:topic_3401, - edam:topic_3416, - edam:topic_3418, - edam:topic_3421 ; - sc:citation , - "pmcid:PMC6839970", - "pubmed:31699686" ; - sc:description """a Priority Setting Partnership to identify patient-oriented research priorities for pediatric chronic pain in Canada. - -Children with chronic pain and their families are experts on what it’s like to live with pain lasting months to years, but until now, research has not asked what issues they care about most. - -Approximately 1 to 3 million Canadian children and teens live with chronic pain""" ; - sc:featureList edam:operation_3454 ; - sc:name "Partnering Pain" ; - sc:url "http://www.partneringforpain.com" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation , @@ -57040,7 +45647,7 @@ Approximately 1 to 3 million Canadian children and teens live with chronic pain" "Olivier Gascuel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0610, @@ -57061,25 +45668,25 @@ Approximately 1 to 3 million Canadian children and teens live with chronic pain" biotools:primaryContact "Francois Chevenet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Catalogue of public databases for molecular typing and microbial genome diversity." ; sc:name "Pasteur MLST" ; sc:url "https://pubmlst.org/databases.shtml" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2877" ; - sc:name "Protein complex" ; - sc:sameAs "http://edamontology.org/data_2877" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_2877" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein complex" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1401" ; - sc:name "Match reward score" ; - sc:sameAs "http://edamontology.org/data_1401" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1401" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Match reward score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0166, @@ -57099,7 +45706,7 @@ Approximately 1 to 3 million Canadian children and teens live with chronic pain" "Julien Rey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "The workflow involves a computational technique that employs propagation of drug-protein and protein-protein interactions to predict the biological pathways that are affected by a drug or compound. Reliable, openly available repositories (CHEMBL, TTD, DrugBank, PharmGKB, IUPHAR, Intact, MINT) were used for connecting pharmaceutically relevant compounds to their target proteins in human and the target proteins to their first-degree interactors. Since these databases differ in their architecture and accessibility, diverse sub-workflows with filtering steps were created ensuring the quality of the retrieved data." ; sc:featureList edam:operation_2423 ; @@ -57107,7 +45714,7 @@ Approximately 1 to 3 million Canadian children and teens live with chronic pain" sc:url "https://www.ebi.ac.uk/transqst/transqstWeb/DRUG_PATHWAY_RESOURCE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -57135,7 +45742,7 @@ A Pathway for Every Protein""" ; sc:url "http://www.pathbank.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3382, @@ -57154,7 +45761,7 @@ A Pathway for Every Protein""" ; biotools:primaryContact "Seda Bilaloglu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -57176,7 +45783,7 @@ Alcaraz et al., De novo pathway-based classification of breast cancer subtypes ( sc:url "https://pathclass.compbio.sdu.dk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -57197,7 +45804,7 @@ Alcaraz et al., De novo pathway-based classification of breast cancer subtypes ( sc:url "https://www.pathfxweb.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0769, @@ -57210,7 +45817,7 @@ Alcaraz et al., De novo pathway-based classification of breast cancer subtypes ( sc:url "https://github.com/jlevy44/PathFlowAI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -57235,7 +45842,7 @@ Alcaraz et al., De novo pathway-based classification of breast cancer subtypes ( biotools:primaryContact "Daniel Domingo-Fernández" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634 ; sc:citation ; @@ -57246,14 +45853,14 @@ Alcaraz et al., De novo pathway-based classification of breast cancer subtypes ( a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; + sc:additionalType "http://edamontology.org/data_3786" ; + sc:encodingFormat "http://edamontology.org/format_3790" ; + sc:name "Query script" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3261" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "SPARQL endpoint" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3307 ; @@ -57269,26 +45876,26 @@ Alcaraz et al., De novo pathway-based classification of breast cancer subtypes ( a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1047" ; - sc:name "URI" ; - sc:sameAs "http://edamontology.org/data_1047" ], + sc:additionalType "http://edamontology.org/data_1047" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "URI" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3261" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web service" ; sc:applicationSubCategory edam:topic_2259, @@ -57304,7 +45911,7 @@ Alcaraz et al., De novo pathway-based classification of breast cancer subtypes ( biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -57322,92 +45929,8 @@ Alcaraz et al., De novo pathway-based classification of breast cancer subtypes ( ; sc:url "http://github.com/PathwayAnalysisPlatform/PathwayMatcher" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0601, - edam:topic_0602, - edam:topic_0749, - edam:topic_2830, - edam:topic_3512 ; - sc:citation , - "pubmed:31863285" ; - sc:description """A comprehensive pathway map of IL-18-mediated signalling. - -IL-18 signaling pathway (Homo sapiens). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'WikiPathways' (bio.tools/wikipathways), 'IL-18', 'IL-18-mediated', 'cytokines'""" ; - sc:featureList edam:operation_0417, - edam:operation_0533, - edam:operation_3083 ; - sc:name "Pathway:WP4754" ; - sc:url "https://www.wikipathways.org/index.php/Pathway:WP4754" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0154, - edam:topic_0602, - edam:topic_0632, - edam:topic_3172 ; - sc:citation , - , - "pubmed:31647099" ; - sc:description """integration, analysis and exploration of pathway data. - -Pathway visualization and analysis tool for Pathway Commons and other BioPAX data. - -A Resource for Biological Pathway Analysis. - -pathway-commons-help – Google Grupper. - -Name Last modified Size Description. - -I Google Grupper kan du oprette og deltage i onlinefora og mailbaserede grupper til samtaler i fællesskaber. - -Pathway Commons aims to collect and disseminate biological pathway and interaction data. - -Access and discover data integrated from public pathway and interactions databases. - -pathway-commons-help Delt offentligt Sådan tilmelder du dig Vis alle emner. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/pathway_commons. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/PathwayCommons_SPARQL_endpoint (PATHWAYCOMMONS.ORG ; PATHWAYCOMMONS.ORG/guide), bio.tools/pymzml (GITHUB.COM). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Pathway Commons 2019 Update'""" ; - sc:featureList edam:operation_0533, - edam:operation_2422, - edam:operation_2436, - edam:operation_3083, - edam:operation_3439 ; - sc:name "Pathway Commons_autogenerated" ; - sc:softwareHelp , - ; - sc:url "https://www.pathwaycommons.org" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0602, - edam:topic_0605, - edam:topic_3172, - edam:topic_3407 ; - sc:citation , - "pubmed:31688932" ; - sc:description """Taxonomic Weighting Improves the Accuracy of a Gap-Filling Algorithm for Metabolic Models. - -The Pathway Tools software performs computational genomics, metabolic reconstruction and modeling, and analysis of gene-expression and metabolomics data. - -Pathway Tools is a comprehensive systems biology software system that is associated with the BioCyc database collection. The software has been licensed by more than 10,000 groups and powers a number of websites for biological databases. Pathway Tools integrates a broad set of capabilities that span genome informatics, pathway informatics, regulatory informatics, and omics data analysis. The software supports multiple use cases in bioinformatics and systems biology:. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/pathway_tools. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Pathway Tools software', 'taxgap', 'gap-filling'""" ; - sc:featureList edam:operation_3083, - edam:operation_3439, - edam:operation_3660 ; - sc:name "Pathway Tools_autogenerated" ; - sc:url "http://pathwaytools.com" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3407, @@ -57423,28 +45946,8 @@ Pathway Tools is a comprehensive systems biology software system that is associa sc:softwareHelp ; sc:url "https://gitlab.com/lvasquezcr/pathways-analyzer/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3382, - edam:topic_3473, - edam:topic_3810 ; - sc:citation , - "pubmed:31647117" ; - sc:description """Guidelines to Visualize Large Geochemical Datasets on Piper Diagrams. - -PIED Piper – Lautz Hydrology Research Group. - -Please cite as: (Russoniello and Lautz, 2019). - -Russoniello, CJ, LK Lautz. Accepted and available online. Pay the PIED Piper: Guidelines to visualize large geochemical datasets on Piper Diagrams. Groundwater. doi: 10.1111/gwat.12953. Available from the following webpage: https://hydrology.syr.edu/pied-piper/. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'PIED Piper', 'Piper diagrams PIED Piper'""" ; - sc:featureList edam:operation_0337, - edam:operation_3432 ; - sc:name "Pay PIED Piper" ; - sc:url "http://hydrology.syr.edu/pied-piper" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -57460,7 +45963,7 @@ Russoniello, CJ, LK Lautz. Accepted and available online. Pay the PIED Piper: Gu sc:url "https://pecan.stjude.cloud/variant/67664" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3474, edam:topic_3510, edam:topic_3512 ; @@ -57479,7 +45982,7 @@ Gram-positive bacteria have developed secretion systems to transport proteins ac sc:url "http://pengaroo.erc.monash.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_3295 ; @@ -57492,25 +45995,8 @@ Gram-positive bacteria have developed secretion systems to transport proteins ac sc:name "PeSA" ; sc:url "http://www.github.com/EmineTopcu/PeSA" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0154, - edam:topic_0160 ; - sc:citation , - "pubmed:31677504" ; - sc:description """A software tool for peptide specificity analysis. - -The discovery and characterization of molecular interactions is crucial towards a better understanding of complex biological processes. Particularly protein-protein interactions (i.e., PPIs), which are responsible for a variety of cellular functions from intracellular signaling to enzyme-substrate specificity, have been studied broadly over the past decades. Position-specific scoring matrices (PSSM) in particular are used extensively to help determine interaction specificity or candidate interaction motifs at the residue level. However, not all studies successfully report their results as a candidate interaction motif. In many cases, this may be due to a lack of suitable tools for simple analysis and motif generation. - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/PeSA""" ; - sc:featureList edam:operation_0564 ; - sc:name "PeSA_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31677504" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3314, @@ -57527,26 +46013,21 @@ The discovery and characterization of molecular interactions is crucial towards a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -57570,7 +46051,7 @@ The discovery and characterization of molecular interactions is crucial towards sc:url "https://mines.legumeinfo.org/peanutmine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -57597,7 +46078,7 @@ Sample ids for simulated individuals""" ; sc:url "https://github.com/williamslab/ped-sim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3305, @@ -57620,27 +46101,8 @@ A pediatric disease map shows the relationships among the most common pediatric sc:name "PedMap" ; sc:url "http://pedmap.nbscn.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0621, - edam:topic_0632, - edam:topic_3170, - edam:topic_3308 ; - sc:citation , - "pubmed:31712893" ; - sc:description """Transcriptome analysis provides insight into the role of the melanin pathway in two differently pigmented strains of the turtle Pelodiscus sinensis. - -Pelodiscus sinensis is the most common turtle species raised in East and Southeast Asia. The Japanese strain and the Qingxi black strain are important aquatic breeds of P. sinensis in China with unique characteristics in terms of production performance and appearance, including skin color. In this study, melanin content measure and histological analysis on skin samples of these two strains were carried out to compare their color characteristics. The results showed that Qingxi black turtles clearly have a greater ability to deposit melanin than the Japanese strain especially in the abdomen. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Qingxi', 'sinensis', 'log2FoldChange', 'DESeq' (bio.tools/deseq)""" ; - sc:featureList edam:operation_0524, - edam:operation_3223, - edam:operation_3431 ; - sc:name "Pelodiscus sinensis" ; - sc:url "ftp://ftp.ensembl.org/pub/release-81/fasta/pelodiscus_sinensis/dna/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -57659,7 +46121,7 @@ Pelodiscus sinensis is the most common turtle species raised in East and Southea biotools:primaryContact "Jedd Bellamy-Carter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0154, edam:topic_0820, @@ -57676,7 +46138,7 @@ Pelodiscus sinensis is the most common turtle species raised in East and Southea sc:url "http://zoulab.dalton.missouri.edu/PepPro_benchmark" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -57698,7 +46160,7 @@ Pelodiscus sinensis is the most common turtle species raised in East and Southea "PepQuery Google Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0769, edam:topic_2275 ; @@ -57714,7 +46176,7 @@ The protein-peptide complexes can be rescored using ZRANK2 and the flexible refi sc:url "https://github.com/inpacdb/PepVis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3512, @@ -57737,7 +46199,7 @@ The protein-peptide complexes can be rescored using ZRANK2 and the flexible refi biotools:primaryContact "L. Guillot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0621, edam:topic_0736, @@ -57757,7 +46219,7 @@ The majority of all proteins in cells interact with membranes either permanently sc:url "http://bioinformatics.biol.uoa.gr/db=permemdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0625 ; @@ -57780,7 +46242,7 @@ The majority of all proteins in cells interact with membranes either permanently "Julia Ponomarenko" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, edam:topic_2640 ; @@ -57793,7 +46255,7 @@ The majority of all proteins in cells interact with membranes either permanently sc:url "http://github.com/Singh-Lab/PertInInt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199 ; sc:citation , @@ -57807,7 +46269,7 @@ The majority of all proteins in cells interact with membranes either permanently sc:url "https://github.com/sfu-compbio/PhISCS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0659, edam:topic_0736, @@ -57825,7 +46287,7 @@ The majority of all proteins in cells interact with membranes either permanently biotools:primaryContact "Rita Pancsa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, edam:topic_0121, @@ -57843,7 +46305,7 @@ In addition to curated proteins, PhaSepDB also provides the researchers with mol sc:url "http://db.phasep.pro/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation ; @@ -57853,7 +46315,7 @@ In addition to curated proteins, PhaSepDB also provides the researchers with mol sc:url "https://www.bit.do/phagepromoter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2830, edam:topic_3047, @@ -57868,21 +46330,10 @@ In addition to curated proteins, PhaSepDB also provides the researchers with mol sc:name "PhageXpress" ; sc:url "https://github.com/mdcao/phagexpress" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3378, - edam:topic_3403 ; - sc:citation , - "pubmed:31689550" ; - sc:description """Personalized pharmaceutical care eHealth platform for patients and pharmacists. - -Community pharmacists are critically placed in the patient care chain being an extended frontline within primary healthcare networks across Europe. They are trained to ensure safe and effective medication use, a crucial and responsible role, extending beyond the common misconception limited to just providing timely access to medicines for the population. Technology-wise, eHealth being committed to an effective, networked, patient-centered and accessible healthcare would prove a real asset in this direction by achieving improved therapy adherence with better outcomes and direct contribution to a cost-effective healthcare system. In this work, we present PharmActa, a personalized eHealth platform that addresses key features of pharmaceutical care and enhances communication of pharmacists with patients for optimizing pharmacotherapy. - -||| HOMEPAGE MISSING!""" ; - sc:name "PharmActa" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31689550" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, edam:topic_3375, @@ -57895,11 +46346,16 @@ PharmOmics apps were implemented with Rshiny and depend on javascript. In case o sc:featureList edam:operation_0277, edam:operation_3223, edam:operation_3431 ; + sc:isAccessibleForFree true ; sc:name "PharmOmics" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; sc:url "http://mergeomics.research.idre.ucla.edu/PharmOmics/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, edam:topic_0632, @@ -57917,7 +46373,7 @@ PharmOmics apps were implemented with Rshiny and depend on javascript. In case o sc:url "http://prody.csb.pitt.edu/pharmmaker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0153, edam:topic_2885, @@ -57931,18 +46387,28 @@ PharmOmics apps were implemented with Rshiny and depend on javascript. In case o sc:url "https://github.com/georgeg0/PheGWAS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3422 ; sc:citation , - "pubmed:31369862" ; + , + "pubmed:31369862", + "pubmed:35995107" ; sc:description "PheValuator is a phenotype algorithm evaluator." ; sc:featureList edam:operation_2428 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; sc:name "PheValuator" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "2.0" ; sc:url "https://github.com/OHDSI/PheValuator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -57961,7 +46427,7 @@ PharmOmics apps were implemented with Rshiny and depend on javascript. In case o sc:url "http://phen-gen.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, edam:topic_0625, @@ -57976,18 +46442,8 @@ PharmOmics apps were implemented with Rshiny and depend on javascript. In case o sc:name "Phen2Gene" ; sc:url "https://phen2gene.wglab.org/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3384, - edam:topic_3419, - edam:topic_3517 ; - sc:citation , - "pubmed:31439493" ; - sc:description "> MEDIUM CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/PhenX_Toolkit (PHENXTOOLKIT.ORG) | > CORRECT NAME OF TOOL COULD ALSO BE 'PhenX Toolkit' (bio.tools/PhenX_Toolkit), 'Psychosis', 'PhenX Mental', 'Psychosis Specialty' | Common Data Elements for National Institute of Mental Health-Funded Translational Early Psychosis Research | The PhenX Toolkit is a catalog of high-priority measures for consideration and inclusion in genome-wide association studies (GWAS) and other large-scale genomic research efforts" ; - sc:name "PhenX" ; - sc:url "https://www.phenxtoolkit.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3325, @@ -58007,23 +46463,8 @@ PharmOmics apps were implemented with Rshiny and depend on javascript. In case o "Windows" ; sc:url "https://www.phenxtoolkit.org/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_3305 ; - sc:citation "pubmed:31145562" ; - sc:description """PhenX—Establishing a Consensus Process to Select Common Measures for Collaborative Research. - -The PhenX (consensus measures for Phenotypes and eXposures) Toolkit offers well-established, broadly validated measures of phenotypes and exposures relevant to investigators in human genomics, epidemiology, and biomedical research. This methods report describes the infrastructure and processes used to develop the content and features of the Toolkit. The PhenX consensus process is robust, yet flexible, as evidenced by its application to a range of research domains. During the initial phase of PhenX, from March 2008 through April 2010, working groups of content experts addressed 21 research domains and selected 295 measures for the Toolkit. The PhenX Steering Committee prioritized and defined the scope of the domains and guided the consensus process with input from liaisons representing the National Institutes of Health. - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/PhenX""" ; - sc:featureList edam:operation_3454 ; - sc:name "PhenX_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31145562" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0749, edam:topic_0780, @@ -58044,7 +46485,7 @@ This tool facilitates the retrieval and post-processing of PhenoCam time series. sc:url "https://phenocam.sr.unh.edu/webcam/gallery/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3325, @@ -58066,7 +46507,7 @@ This tool facilitates the retrieval and post-processing of PhenoCam time series. biotools:primaryContact "Dr. Andreas Ruepp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0780, @@ -58086,7 +46527,7 @@ This tool facilitates the retrieval and post-processing of PhenoCam time series. biotools:primaryContact "Isaac W Park" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3050, @@ -58106,7 +46547,7 @@ This tool facilitates the retrieval and post-processing of PhenoCam time series. sc:url "https://github.com/prubbens/PhenoGMM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -58126,7 +46567,7 @@ This tool facilitates the retrieval and post-processing of PhenoCam time series. sc:url "https://github.com/bozdaglab/PhenoGeneRanker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3172, @@ -58149,7 +46590,7 @@ This tool facilitates the retrieval and post-processing of PhenoCam time series. sc:url "https://portal.phenomenal-h2020.eu/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0621, edam:topic_0625, @@ -58165,7 +46606,7 @@ This tool facilitates the retrieval and post-processing of PhenoCam time series. sc:url "https://www.biosino.org/PhenoModifier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal", "Web API", @@ -58189,7 +46630,7 @@ This tool facilitates the retrieval and post-processing of PhenoCam time series. sc:url "http://www.phenoscanner.medschl.cam.ac.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3298, edam:topic_3308, @@ -58202,30 +46643,8 @@ This tool facilitates the retrieval and post-processing of PhenoCam time series. sc:name "PhenomeXcan" ; sc:url "http://apps.hakyimlab.org/phenomexcan/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_0780, - edam:topic_3382 ; - sc:citation ; - sc:description """An automatic open source library for 3D shoot architecture reconstruction and analysis for image-based plant phenotyping. - -3D reconstruction from high-throughput plant phenotyping images. - -Phenomenal is released under a Cecill-C licence. - -A software framework for model-assisted analysis of high throughput plant phenotyping data. - -title = {OpenAlea.Phenomenal: A Workflow for Plant Phenotyping}, month = sep, year = 2018, doi = {10.5281/zenodo.1436634}, url = {https://doi.org/10.5281/zenodo.1436634}. - -||| NAME (Phenomenal) SIMILAR TO (PUB. DIFFERENT) bio.tools/PhenoMeNal (PhenoMeNal)""" ; - sc:featureList edam:operation_0282, - edam:operation_3435, - edam:operation_3799 ; - sc:name "Phenomenal_autogenerated" ; - sc:url "https://github.com/openalea/phenomenal" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -58246,7 +46665,7 @@ title = {OpenAlea.Phenomenal: A Workflow for Plant Phenotyping}, month = sep, ye sc:url "https://phenopolis.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0089, edam:topic_0625, @@ -58264,7 +46683,7 @@ title = {OpenAlea.Phenomenal: A Workflow for Plant Phenotyping}, month = sep, ye sc:url "http://phenoscape.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, edam:topic_0621, @@ -58280,7 +46699,7 @@ title = {OpenAlea.Phenomenal: A Workflow for Plant Phenotyping}, month = sep, ye sc:url "https://github.com/ashleyzhou972/PhiMRF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3489 ; sc:citation ; @@ -58292,31 +46711,8 @@ Timeseries database project is for storing potentially changing timeseries data. sc:softwareHelp ; sc:url "http://github.com/amacd31/phildb" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3382, - edam:topic_3500 ; - sc:citation , - "pmcid:PMC6753174", - "pubmed:31572139" ; - sc:description """A Freely Available, Self-Calibrating Software for Automatic Measurement of Freezing Behavior. - -Phobos - Version 1.0 – May 21, 2019. - -Distributed by Felippe E. Amorim, Thiago C. Moulin and Olavo B. Amaral. - -Phobos is a software for the automated analysis of freezing behavior in rodents. Unlike other programs, it uses manual quantification of a short video to calibrate parameters for optimal freezing detection. Phobos works with 3 user interfaces (UIs) for this purpose. The main user UI is where the user loads videos for quantification, defines an output folder and creates the .xls file with the results. The Video Parameters UI is where the user defines the beginning and end times for freezing detection in the videos and crops the image to restrict the analysis to a specific area. Finally, the Manual Quantification UI is used to manually quantify freezing in a video, which will then be used as a reference for the calibration process. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/phobos""" ; - sc:featureList edam:operation_2428, - edam:operation_3659, - edam:operation_3799 ; - sc:license "BSD-3-Clause" ; - sc:name "Phobos_autogenerated" ; - sc:url "https://github.com/Felippe-espinelli/Phobos" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3382, edam:topic_3500 ; @@ -58332,7 +46728,7 @@ Phobos is a software for the automated analysis of freezing behavior in rodents. sc:url "https://github.com/Felippe-espinelli/Phobos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -58347,7 +46743,7 @@ Phobos is a software for the automated analysis of freezing behavior in rodents. sc:url "http://enhancer.ncpsb.org.cn/index" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2640, edam:topic_3474 ; @@ -58361,7 +46757,7 @@ Phobos is a software for the automated analysis of freezing behavior in rodents. sc:url "https://github.com/GuanLab/phosphoproteome_prediction" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0194, edam:topic_0196, @@ -58378,7 +46774,7 @@ Phobos is a software for the automated analysis of freezing behavior in rodents. sc:url "http://www.lcqb.upmc.fr/phychro2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0194, edam:topic_3293, edam:topic_3474, @@ -58393,28 +46789,8 @@ Phobos is a software for the automated analysis of freezing behavior in rodents. sc:name "PhyDL" ; sc:url "https://gitlab.com/ztzou/phydl" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0194, - edam:topic_3293, - edam:topic_3474, - edam:topic_3512 ; - sc:citation , - "pubmed:31868908" ; - sc:description """Deep residual neural networks resolve quartet molecular phylogenies. - -Phylogenetics by Deep Learning. A residual neural network for inference of quartet phylogenetic tree topology. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Phylogenetics Deep Learning'""" ; - sc:featureList edam:operation_0323, - edam:operation_0325, - edam:operation_0326, - edam:operation_0551, - edam:operation_0567 ; - sc:name "PhyDL_autogenerated" ; - sc:url "https://gitlab.com/ztzou/phydl" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -58431,7 +46807,7 @@ Phylogenetics by Deep Learning. A residual neural network for inference of quart sc:url "http://www.atgc-montpellier.fr/sms/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, edam:topic_0602, @@ -58445,7 +46821,7 @@ PhySigs automatically computes the count matrix, as it is simply a diagonal matr sc:url "https://github.com/elkebir-group/PhySigs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0621, edam:topic_0659, @@ -58464,7 +46840,7 @@ PhySigs automatically computes the count matrix, as it is simply a diagonal matr sc:url "https://pypi.org/project/PhySpeTree/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3305, edam:topic_3324 ; @@ -58481,7 +46857,7 @@ PhySigs automatically computes the count matrix, as it is simply a diagonal matr sc:url "https://github.com/alvinxhan/Phydelity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0780, edam:topic_3305 ; @@ -58493,7 +46869,7 @@ PhySigs automatically computes the count matrix, as it is simply a diagonal matr sc:url "https://genome.jgi.doe.gov/Phyllosticta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3512, edam:topic_3517 ; @@ -58508,7 +46884,7 @@ PhySigs automatically computes the count matrix, as it is simply a diagonal matr sc:url "https://github.com/mlin/PhyloCSF/wiki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, edam:topic_3293, @@ -58528,7 +46904,7 @@ PhySigs automatically computes the count matrix, as it is simply a diagonal matr sc:url "http://github.com/maxemil/PhyloMagnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0602, edam:topic_3293 ; @@ -58542,22 +46918,8 @@ PhySigs automatically computes the count matrix, as it is simply a diagonal matr sc:name "PhyloNet" ; sc:url "https://bioinfocs.rice.edu/PhyloNet" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0194, - edam:topic_0602, - edam:topic_3293 ; - sc:citation , - "pmcid:PMC6612858", - "pubmed:31510688" ; - sc:description "> LOW CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/phylonet | > CORRECT NAME OF TOOL COULD ALSO BE 'phylogenetic networks', 'phylogenetic network', 'IMPLEMENTATION:We' | A divide-and-conquer method for scalable phylogenetic network inference from multilocus data | For NetID Login, click the login button below. You will be sent to a secure Rice login page | The current version of PhyloNet is 3.8.0 | Development of the various functionalities in PhyloNet has been generously supported by DOE (DE-FG02-06ER25734), NIH (R01LM009494), and NSF (CCF-0622037, DBI-1062463, CCF-1302179, CCF-1514177) grants and Sloan and Guggenheim fellowships to Luay Nakhleh" ; - sc:featureList edam:operation_0547, - edam:operation_3501, - edam:operation_3562 ; - sc:name "PhyloNet_autogenerated" ; - sc:url "https://bioinfocs.rice.edu/PhyloNet" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -58579,43 +46941,8 @@ PhySigs automatically computes the count matrix, as it is simply a diagonal matr biotools:primaryContact "L. A. Katz", "Mario Cerón-Romero" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Database portal" ; - sc:applicationSubCategory edam:topic_0084, - edam:topic_0194, - edam:topic_0621, - edam:topic_0634 ; - sc:citation , - , - , - , - "pmcid:PMC2238872", - "pmcid:PMC3013701", - "pmcid:PMC3964985", - "pmcid:PMC8728271", - "pubmed:17962297", - "pubmed:21075798", - "pubmed:24275491", - "pubmed:34718760" ; - sc:description "PhylomeDB is a public database for complete catalogs of gene phylogenie. It allows users to interactively explore the evolutionary history of genes through the visualization of phylogenetic trees and multiple sequence alignments. Moreover, phylomeDB provides genome-wide orthology and paralogy predictions which are based on the analysis of the phylogenetic trees. The automated pipeline used to reconstruct trees aims at providing a high-quality phylogenetic analysis of different genomes, including Maximum Likelihood tree inference, alignment trimming and evolutionary model testing." ; - sc:featureList edam:operation_0499, - edam:operation_0544, - edam:operation_2423, - edam:operation_3478 ; - sc:isAccessibleForFree true ; - sc:license "Other" ; - sc:name "PhylomeDB" ; - sc:operatingSystem "Linux" ; - sc:softwareHelp , - , - ; - sc:softwareVersion "5.0" ; - sc:url "http://phylomeDB.org" ; - biotools:primaryContact "Toni Gabaldón" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0121, @@ -58639,7 +46966,7 @@ PhySigs automatically computes the count matrix, as it is simply a diagonal matr biotools:primaryContact "Alessia David" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0749, edam:topic_3318, @@ -58653,40 +46980,42 @@ PhySigs automatically computes the count matrix, as it is simply a diagonal matr sc:url "http://202.207.14.87:8032/bioinformation/PhysMPrePro/index.asp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, - edam:topic_3316, - edam:topic_3400 ; + edam:topic_2259, + edam:topic_3316 ; sc:citation , + , "pmcid:PMC6690424", "pubmed:31497314" ; sc:description "PhysiCell is a physics-based cell simulator." ; sc:featureList edam:operation_2476 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; sc:name "PhysiCell" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; sc:url "http://physicell.mathcancer.org" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -58710,7 +47039,7 @@ PhySigs automatically computes the count matrix, as it is simply a diagonal matr sc:url "https://phytozome.jgi.doe.gov/phytomine/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -58732,7 +47061,7 @@ PhySigs automatically computes the count matrix, as it is simply a diagonal matr sc:url "http://phytotypedb.bio.unipd.it/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -58751,7 +47080,7 @@ PhySigs automatically computes the count matrix, as it is simply a diagonal matr biotools:primaryContact "Karl Burgess" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0736, @@ -58773,7 +47102,7 @@ PhySigs automatically computes the count matrix, as it is simply a diagonal matr biotools:primaryContact "Stanislaw Dunin-Horkawicz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3068, edam:topic_3304, @@ -58789,7 +47118,7 @@ PiVR has been developed to track a variety of animals in real time and present t sc:url "http://www.PiVR.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3390, @@ -58808,7 +47137,7 @@ PiVR has been developed to track a variety of animals in real time and present t biotools:primaryContact "Umang Varma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3382, @@ -58830,7 +47159,7 @@ PiVR has been developed to track a variety of animals in real time and present t biotools:primaryContact "Irina E. Catrina" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0798, @@ -58849,19 +47178,8 @@ PiVR has been developed to track a variety of animals in real time and present t sc:url "https://github.com/suhrig/pingpongpro" ; biotools:primaryContact "Sebastian Uhrig" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0632, - edam:topic_0769, - edam:topic_3168 ; - sc:citation , - "pubmed:31378919" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'METHODS:Three', 'OBJECTIVE:We' | an integrated and validated workflow for analysis of NGS data for clinical diagnostics | OBJECTIVE:We describe how to set up a custom workflow for the analysis of next generation sequencing (NGS) data suitable for the diagnosis of genetic disorders and that meets the strictest standards of quality and accuracy. Our method goes from DNA extraction to data analysis with a computational in-house pipeline. The system was extensively validated using three publicly available Coriell samples, estimating accuracy, sensitivity and specificity. Multiple runs were also made to assess repeatability and reproducibility. MATERIALS AND METHODS:Three different Coriell samples were analyzed in a single run to perform coverage, sensitivity, specificity, accuracy, reproducibility and repeatability analysis" ; - sc:featureList edam:operation_3501 ; - sc:name "PipeMAGI" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31378919" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0769, edam:topic_3168 ; @@ -58876,7 +47194,7 @@ PiVR has been developed to track a variety of animals in real time and present t sc:url "https://github.com/SCUT-CCNL/PipeMEM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3295, @@ -58897,7 +47215,7 @@ PiVR has been developed to track a variety of animals in real time and present t biotools:primaryContact "Victor Yuan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_2259, edam:topic_3489 ; @@ -58912,39 +47230,24 @@ PiVR has been developed to track a variety of animals in real time and present t sc:name "PlaSMo" ; sc:url "https://github.com/SynthSys/PlasmoPortal" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0780, - edam:topic_2259, - edam:topic_3489 ; - sc:citation , - "pmcid:PMC6652102", - "pubmed:31363499" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'grant dead long live data' | migration as a pragmatic exit strategy for research data preservation | Code for web app supporting PlaSMo portal (plasmo.ed.ac.uk) | Thank you for using PLaSMo. All of the models in the The Plant Systems Biology Modelling database have now been migrated to the FAIRDOMHub repository at https://fairdomhub.org/projects/129 | You can access the list of all the models here | Arabidopsis_clock_P2011 - PLM_64, version 3 | This model is termed P2011 and derives from the article: The clock gene circuit in Arabidopsis includes a repressilator with additional feedback loops | PlaSMo stands for Plant Systems-biology Modelling and the mission of the project was ensuring the achievements of yesterday's Mathematical Modellers will be available for the Systems Biologists of tomorrow | the Evening Complex genes (ELF4, ELF3, LUX)," ; - sc:featureList edam:operation_0481, - edam:operation_2422, - edam:operation_3431 ; - sc:license "MIT" ; - sc:name "PlaSMo_autogenerated" ; - sc:url "http://plasmo.ed.ac.uk" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1354" ; - sc:name "Sequence profile" ; - sc:sameAs "http://edamontology.org/data_1354" ], + sc:additionalType "http://edamontology.org/data_1354" ; + sc:encodingFormat "http://edamontology.org/format_2069" ; + sc:name "Sequence profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1354" ; - sc:name "Sequence profile" ; - sc:sameAs "http://edamontology.org/data_1354" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1354" ; + sc:encodingFormat "http://edamontology.org/format_2069" ; + sc:name "Sequence profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0798 ; @@ -58966,7 +47269,7 @@ PiVR has been developed to track a variety of animals in real time and present t biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, edam:topic_2229, @@ -58984,26 +47287,21 @@ PiVR has been developed to track a variety of animals in real time and present t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -59027,7 +47325,7 @@ PiVR has been developed to track a variety of animals in real time and present t sc:url "http://planmine.mpi-cbg.de/planmine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0780, edam:topic_3512 ; @@ -59038,27 +47336,8 @@ PiVR has been developed to track a variety of animals in real time and present t sc:name "Plant" ; sc:url "http://plantsmallrnagenes.science.psu.edu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0154, - edam:topic_0621, - edam:topic_0780, - edam:topic_3324 ; - sc:citation , - "pubmed:31612325" ; - sc:description """a curated database of plant-origin antifungal peptides. - -Emerging infectious diseases (EIDs) are a severe problem caused by fungi in human and plant species across the world. They pose a worldwide threat to food security as well as human health. Fungal infections are increasing now day by day worldwide, and the current antimycotic drugs are not effective due to the emergence of resistant strains. Therefore, it is an urgent need for the finding of new plant-origin antifungal peptides (PhytoAFPs). Huge numbers of peptides were extracted from different plant species which play a protective role against fungal infection. Hundreds of plant-origin peptides with antifungal activity have already been reported. So there is a requirement of a dedicated platform which systematically catalogs plant-origin peptides along with their antifungal properties. - -||| HOMEPAGE BROKEN!""" ; - sc:featureList edam:operation_0305, - edam:operation_3646, - edam:operation_3767 ; - sc:name "PlantAFP" ; - sc:url "http://bioinformatics.cimap.res.in/sharma/PlantAFP/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, edam:topic_0780, @@ -59074,7 +47353,7 @@ Emerging infectious diseases (EIDs) are a severe problem caused by fungi in huma sc:url "http://www.bmibig.cn/plantAPAdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0637, @@ -59096,7 +47375,7 @@ Emerging infectious diseases (EIDs) are a severe problem caused by fungi in huma biotools:primaryContact "Filipe Pereira" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, edam:topic_0659, @@ -59115,7 +47394,7 @@ Emerging infectious diseases (EIDs) are a severe problem caused by fungi in huma sc:url "http://bis.zju.edu.cn/plantcircnet/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0204, edam:topic_0749, @@ -59132,7 +47411,7 @@ Emerging infectious diseases (EIDs) are a severe problem caused by fungi in huma sc:url "http://plantregmap.gao-lab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0780, edam:topic_2259, @@ -59149,26 +47428,21 @@ Emerging infectious diseases (EIDs) are a severe problem caused by fungi in huma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application", @@ -59198,7 +47472,7 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc biotools:primaryContact "Support service" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_0780, @@ -59215,7 +47489,7 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc sc:url "https://plantreactome.gramene.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3173, edam:topic_3174 ; @@ -59229,7 +47503,7 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc sc:url "http://bioinfo.sibs.ac.cn/plant-regulomics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, edam:topic_3174, @@ -59244,7 +47518,7 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc sc:url "https://github.com/Shamir-Lab/PlasClass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0632, @@ -59259,7 +47533,7 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc sc:url "https://cge.cbs.dtu.dk/services/PlasmidFinder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0780, @@ -59281,14 +47555,14 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -59313,7 +47587,7 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3293, @@ -59334,10 +47608,10 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0798 ; sc:author ; @@ -59355,7 +47629,7 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -59373,7 +47647,7 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc biotools:primaryContact "X. R. Gao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3304, edam:topic_3382 ; @@ -59386,7 +47660,7 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc sc:url "https://huygens.science.uva.nl/PlotTwist" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3474, edam:topic_3500, @@ -59400,7 +47674,7 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc sc:url "https://github.com/weipenegHU/Pluto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0659, edam:topic_0780, @@ -59417,7 +47691,7 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc sc:url "http://www.pmiren.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0218, edam:topic_3474 ; @@ -59432,19 +47706,8 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc sc:softwareHelp ; sc:url "http://14.139.57.41/pngt/home.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0780, - edam:topic_3399, - edam:topic_3810 ; - sc:citation , - "pubmed:31461536" ; - sc:description "> HOMEPAGE MISSING! | An automated pneumatic apparatus for estimating xylem vulnerability to embolism at high temporal resolution | Xylem vulnerability to embolism represents an important trait to determine species distribution patterns and drought resistance. However, estimating embolism resistance frequently requires time-consuming and ambiguous hydraulic lab measurements. Based on a recently developed pneumatic method, we present and test the \"Pneumatron\", a device that generates high time-resolution and fully automated vulnerability curves. Embolism resistance is estimated by applying a partial vacuum to extract air from an excised xylem sample, while monitoring the pressure change over time. Although the amount of gas extracted is strongly correlated with the percentage loss of xylem conductivity, validation of the Pneumatron was performed by comparison with the optical method for Eucalyptus camaldulensis leaves" ; - sc:featureList edam:operation_3196 ; - sc:name "Pneumatron" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31461536" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3174, edam:topic_3519, @@ -59461,7 +47724,7 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc sc:url "https://github.com/Yiheng323/clinical_diagnosis_of_pneumocystis.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0199, edam:topic_0654, @@ -59478,7 +47741,7 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc sc:url "http://bitbucket.org/genomicepidemiology/pointfinder_db" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0166, @@ -59493,7 +47756,7 @@ The web portal indexes and makes findable any kind of plant data. Plant DataDisc sc:url "https://github.com/PointSite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0659, edam:topic_0749, @@ -59511,7 +47774,7 @@ A portal to the curated set of poly(A) sites that we inferred in the human, mous sc:url "https://polyasite.unibas.ch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -59535,30 +47798,30 @@ A portal to the curated set of poly(A) sites that we inferred in the human, mous a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3932" ; - sc:name "Q-value" ; - sc:sameAs "http://edamontology.org/data_3932" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3905" ; - sc:name "Histogram" ; - sc:sameAs "http://edamontology.org/data_3905" ], + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Gene expression profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_3932" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Q-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_3905" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Histogram" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, edam:topic_3520 ; @@ -59572,30 +47835,16 @@ A portal to the curated set of poly(A) sites that we inferred in the human, mous "Mac" ; sc:url "http://computproteomics.bmb.sdu.dk/Apps/PolySTest" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0082, - edam:topic_0097, - edam:topic_3519 ; - sc:citation , - "pmcid:PMC6723251", - "pubmed:31412589" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'polymerases should', 'polymerase structure' | A Comprehensive Superposition of Viral Polymerase Structures | Submissions to the Community site are moderated and must be related to comparisons or analyses of polymerase structures. Uploaded documents must be provided on an Open Access basis and a Zenodo DOI will be minted if a DOI does not exist | A community to distribute and share large datasets or detailed analyses pertaining to the structures of nucleic acid polymerases" ; - sc:featureList edam:operation_2518, - edam:operation_3192, - edam:operation_3431 ; - sc:name "Polymerase Structures" ; - sc:url "http://www.zenodo.org/communities/pols/" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175, edam:topic_3325 ; @@ -59614,7 +47863,7 @@ A portal to the curated set of poly(A) sites that we inferred in the human, mous biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, edam:topic_0625, @@ -59635,7 +47884,7 @@ Below are steps for running PopInf. PopInf is incorporated into the workflow sys sc:url "https://github.com/SexChrLab/PopInf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -59656,7 +47905,7 @@ Below are steps for running PopInf. PopInf is incorporated into the workflow sys biotools:primaryContact "Wei-Ming He" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3796, @@ -59678,7 +47927,7 @@ Below are steps for running PopInf. PopInf is incorporated into the workflow sys biotools:primaryContact "John Parkinson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0659, edam:topic_2885, @@ -59698,7 +47947,7 @@ These are the scripts used to create the MySQL database that is used by PopTargs sc:url "https://poptargs.essex.ac.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, edam:topic_2885, @@ -59717,10 +47966,10 @@ iPDGC PD MR Research Portal""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3542 ; @@ -59745,10 +47994,10 @@ iPDGC PD MR Research Portal""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -59775,7 +48024,7 @@ iPDGC PD MR Research Portal""" ; sc:url "http://distilldeep.ucd.ie/porter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0749, edam:topic_2885, @@ -59794,7 +48043,7 @@ Potpourri provides a MATLAB interface for ease of use. These instructions will g sc:url "https://github.com/gizemcaylak/Potpourri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_3520 ; @@ -59808,7 +48057,7 @@ Potpourri provides a MATLAB interface for ease of use. These instructions will g sc:url "https://cpm.lumc.nl/yassene/powershell/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3304, edam:topic_3401 ; @@ -59821,7 +48070,7 @@ Potpourri provides a MATLAB interface for ease of use. These instructions will g sc:url "https://github.com/hayleybounds/PrAnCER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_3474, @@ -59843,7 +48092,7 @@ Potpourri provides a MATLAB interface for ease of use. These instructions will g biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, edam:topic_0749, @@ -59858,7 +48107,7 @@ PreSNO is only available to academic users""" ; sc:url "http://kurata14.bio.kyutech.ac.jp/PreSNO/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:31526842" ; sc:description "Fast prediction of bacteriophage Virion proteins using un-biased multi-perspective properties with recursive feature elimination | Bacteriophage virion proteins (BVPs) are bacterial viruses that have a great impact on different biological functions of bacteria. They are significantly used in genetic engineering and phage therapy applications. Correct identification of BVP through conventional pathogen methods are slow and expensive. Thus, designing a Bioinformatics predictor is urgently desirable to accelerate correct identification of BVPs within a huge volume of proteins. However, available prediction tools performance is inadequate due to the lack of useful feature representation and severe imbalance issue. In the present study, we propose an intelligent model, called Pred-BVP-Unb for discrimination of BVPs that employed three nominal sequences-driven descriptors, i.e" ; @@ -59866,7 +48115,7 @@ PreSNO is only available to academic users""" ; sc:url "https://github.com/Muhammad-Arif-NUST/BVP_Pred_Unb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0199, edam:topic_0736, @@ -59888,7 +48137,7 @@ We have used 4 different type of datasets for developing the classification mode sc:url "https://www.iitm.ac.in/bioinfo/PredMutHTP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_2275 ; @@ -59903,7 +48152,7 @@ We have used 4 different type of datasets for developing the classification mode sc:url "http://PredPRBA.denglab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3320, @@ -59923,17 +48172,8 @@ We have used 4 different type of datasets for developing the classification mode biotools:primaryContact "Huiying Zhao", "Yuedong Yang" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0610, - edam:topic_3500, - edam:topic_3855 ; - sc:citation ; - sc:description "> LOW CONFIDENCE! | Crowdsourcing and Analysing Wildlife Tourism Data from Photographs Shared on Social Media | The Multidisciplinary Preprint Platform | Preprints is a multidisciplinary preprint platform that accepts articles from all fields of science and technology, given that the preprint is scientifically sound and can be considered part of academic literature" ; - sc:name "Preprint" ; - sc:url "http://www.preprints.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0632, edam:topic_3050, @@ -59949,7 +48189,7 @@ We have used 4 different type of datasets for developing the classification mode sc:url "https://github.com/VascoElbrecht/PrimerMiner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3336, edam:topic_3375, edam:topic_3379 ; @@ -59964,7 +48204,7 @@ We have used 4 different type of datasets for developing the classification mode sc:url "https://cran.r-project.org/web/packages/PriorCD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0128, edam:topic_0154, @@ -59981,7 +48221,7 @@ This server predicts protein-protein binding affinity change upon mutation using sc:url "https://web.iitm.ac.in/bioinfo2/proaffimuseq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0152, edam:topic_0154, @@ -59999,28 +48239,8 @@ Carbohydrate-binding proteins play crucial roles across all viruses and organism sc:name "ProCarbDB" ; sc:url "http://www.procarbdb.science/procarb" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0082, - edam:topic_0130, - edam:topic_0736, - edam:topic_2828, - edam:topic_3474 ; - sc:citation , - "pubmed:31867753" ; - sc:description """Protein Design using a Convolutional Neural Network. - -Designing protein sequences that fold to a given three-dimensional structure has long been a challenging problem in computational structural biology with significant theoretical and practical implications. In this study, we first formulated this problem as predicting the residue type given the three-dimensional structural environment around the Cα atom of a residue, which is repeated for each residue of a protein. We designed a nine-layer three-dimensional deep convolutional neural network (CNN) that takes as input a gridded box with the atomic coordinates and types around a residue. Several CNN layers were designed to capture structure information at different scales, such as bond lengths, bond angles, torsion angles, and secondary structures. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0267, - edam:operation_0303, - edam:operation_0474, - edam:operation_1844 ; - sc:name "ProDCoNN" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31867753" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_2830 ; @@ -60032,7 +48252,7 @@ Designing protein sequences that fold to a given three-dimensional structure has sc:url "https://github.com/kbvstmd/ProGeo-neo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, edam:topic_0625, @@ -60048,7 +48268,7 @@ Identifying protein-phenotype relations is of paramount importance for applicati sc:url "http://propheno.cs.montana.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -60073,7 +48293,7 @@ Identifying protein-phenotype relations is of paramount importance for applicati "Rasim Murat Aydinkal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169 ; @@ -60094,7 +48314,7 @@ Identifying protein-phenotype relations is of paramount importance for applicati "Zhengchang Su" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -60119,7 +48339,7 @@ The ProTargetMiner R Shiny package is an automated online software for anticance sc:url "http://protargetminer.genexplain.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0130, @@ -60146,28 +48366,8 @@ We trained a novel machine learning tool for prediction of protein stability, es sc:name "ProTstab" ; sc:url "http://structure.bmc.lu.se/ProTstab" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0160, - edam:topic_2269 ; - sc:citation , - "pmcid:PMC6876095", - "pubmed:31760933" ; - sc:description """a multiple sequence alignment algorithm combining hidden Markov model optimized by particle swarm optimization with partition function. - -BACKGROUND:During procedures for conducting multiple sequence alignment, that is so essential to use the substitution score of pairwise alignment. To compute adaptive scores for alignment, researchers usually use Hidden Markov Model or probabilistic consistency methods such as partition function. Recent studies show that optimizing the parameters for hidden Markov model, as well as integrating hidden Markov model with partition function can raise the accuracy of alignment. The combination of partition function and optimized HMM, which could further improve the alignment's accuracy, however, was ignored by these researches. RESULTS:A novel algorithm for MSA called ProbPFP is presented in this paper. It intergrate optimized HMM by particle swarm with partition function. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0300, - edam:operation_0491, - edam:operation_0492, - edam:operation_0496, - edam:operation_3478 ; - sc:name "ProbPFP" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31760933" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3047 ; sc:citation ; @@ -60180,31 +48380,8 @@ Réflexions autour de l'analyse de la variance basée sur une analyse type procu sc:name "ProcMod" ; sc:url "https://git.metabarcoding.org/lecasofts/ProcMod" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0602, - edam:topic_2640, - edam:topic_3173, - edam:topic_3577 ; - sc:citation , - "pubmed:31681944" ; - sc:description """personalized prioritization of driver genes. - -Personalized prioritization of driver genes in cancer. - -The details of the method are described in Dinstag G. & Shamir R. PRODIGY: personalized prioritization of driver genes. bioRxiv (2018), https://www.biorxiv.org/content/early/2018/10/30/456723. - -This R package prioritize driver genes for individual cancer patients. - -||| NAME (Prodigy) SIMILAR TO (PUB. DIFFERENT) bio.tools/prodigy (PRODIGY)""" ; - sc:featureList edam:operation_0277, - edam:operation_3436, - edam:operation_3439 ; - sc:name "Prodigy_autogenerated" ; - sc:url "https://github.com/Shamir-Lab/PRODIGY" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_2830, @@ -60223,7 +48400,7 @@ PromPDD were developed based on the prediction models generated using the averag sc:url "http://www.immunoinformatics.net/PromPDD/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0749, edam:topic_3398, @@ -60238,34 +48415,8 @@ Machine Learning using Multivariate Linear Regression to Predict the Strength of sc:name "PromoterPredict" ; sc:url "https://github.com/PromoterPredict" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0621, - edam:topic_0622, - edam:topic_0659 ; - sc:citation , - "pmcid:PMC6774505", - "pubmed:31577829" ; - sc:description """A stand-alone prophage sequence prediction tool with self-updating reference database. - -ProphET, Prophage Estimation Tool: a standalone prophage sequence prediction tool with self-updating reference database. - -João L. Reis-Cunha1,2, Daniella C. Bartholomeu2, Ashlee M. Earl1, Bruce W. Birren1, Gustavo C. Cerqueira1. - -ProphET is an open source software developed to be used in the Linux platform. Users are free to bundle executables and modify the script. However, we do not guarantee the efficiency and precision of predictions if modifications were performed in the script and dependencies. - -||| NAME (ProphET) SIMILAR TO (PUB. DIFFERENT) bio.tools/prophet (prophet). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CONCLUSIONS:ProphET', 'ProphET prophage estimation tool'""" ; - sc:featureList edam:operation_0464, - edam:operation_2421, - edam:operation_3216, - edam:operation_3431 ; - sc:name "ProphET_autogenerated" ; - sc:url "https://github.com/jaumlrc/ProphET" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3474, @@ -60286,7 +48437,7 @@ ProphET is an open source software developed to be used in the Linux platform. U biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -60308,7 +48459,7 @@ ProphET is an open source software developed to be used in the Linux platform. U biotools:primaryContact "Prof. Dr. Bernhard Küster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0121, @@ -60331,7 +48482,7 @@ ProphET is an open source software developed to be used in the Linux platform. U biotools:primaryContact "Jendrik Schellhorn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0218, edam:topic_3512 ; @@ -60345,7 +48496,7 @@ ProphET is an open source software developed to be used in the Linux platform. U sc:url "http://protfus.md.biu.ac.il/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0218, @@ -60368,7 +48519,7 @@ The Protmapper maps references to protein sites to the human reference sequence sc:url "https://github.com/indralab/protmapper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, edam:topic_3068, @@ -60387,7 +48538,7 @@ Promiscuous behaviour in proteins and enzymes remains a challenging feature to u sc:url "http://ufq.unq.edu.ar/protmiscuity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -60406,25 +48557,8 @@ Python package for differential abundance analysis of proteomics data""" ; sc:name "ProtRank" ; sc:url "https://github.com/8medom/ProtRank" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3168, - edam:topic_3179, - edam:topic_3295, - edam:topic_3318, - edam:topic_3512 ; - sc:citation , - "pubmed:31819993" ; - sc:description """genome-wide profiling of nuclease inaccessible domains reveals physical properties of chromatin. - -In metazoan cell nuclei, heterochromatin constitutes large chromatin domains that are in close contact with the nuclear lamina. These heterochromatin lamina-associated domains (LADs) domains are difficult to profile and warrants a simpler and direct method. Here we report a new method, Protect-seq, aimed at identifying regions of heterochromatin via resistance to nuclease degradation followed by next-generation sequencing (NGS). We performed Protect-seq on the human colon cancer cell line HCT-116 and observed overlap with previously curated LADs. We provide evidence that these protected regions are enriched for and can distinguish between the repressive histone modification H3K9me3, H3K9me2 and H3K27me3. Moreover, in human cells the loss of H3K9me3 leads to an increase in chromatin accessibility and loss of Protect-seq signal. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0420 ; - sc:name "Protect-seq" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31819993" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3306, @@ -60441,19 +48575,8 @@ In metazoan cell nuclei, heterochromatin constitutes large chromatin domains tha sc:softwareHelp ; sc:url "https://protein-sol.manchester.ac.uk/software" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0130, - edam:topic_0602, - edam:topic_3474 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'mesophilic', 'centrality', 'thermophilic', 'edge-wise' | Supervised learning of protein thermal stability using sequence mining and distribution statistics of network centrality | Thermophilic-Mesophilic classification | Author: Ankit Sharma(BIO699) - MT16121 - ankit16121@iiitd.ac.in | Department of Computational Biology, Indraprastha Institute of Information Technology, IIIT-Delhi | 1. Supplementary_Data_1.xlsx - This file contains the complete list of thermophilic and mesophilic" ; - sc:featureList edam:operation_0267, - edam:operation_3798 ; - sc:name "Protein Classification BIO699" ; - sc:url "https://github.com/ankits0207/Protein_Classification_BIO699" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0121, edam:topic_0736 ; @@ -60467,54 +48590,30 @@ In metazoan cell nuclei, heterochromatin constitutes large chromatin domains tha a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ], + sc:additionalType "http://edamontology.org/data_2628" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "BioGRID interaction ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2628" ; - sc:name "BioGRID interaction ID" ; - sc:sameAs "http://edamontology.org/data_2628" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2628" ; - sc:name "BioGRID interaction ID" ; - sc:sameAs "http://edamontology.org/data_2628" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "UniProt accession" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275, @@ -60530,7 +48629,7 @@ In metazoan cell nuclei, heterochromatin constitutes large chromatin domains tha sc:url "https://mobyle.rpbs.univ-paris-diderot.fr/cgi-bin/portal.py#forms::Proteo3Dnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -60553,7 +48652,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "http://github.com/HeldLab/ProteoClade" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_0121, @@ -60574,10 +48673,10 @@ Free document hosting provided by Read the Docs""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -60602,7 +48701,7 @@ Modern app + open source algorithms + powerful analysis tools""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_2229, @@ -60619,29 +48718,8 @@ Modern app + open source algorithms + powerful analysis tools""" ; sc:name "ProteomeHD" ; sc:url "http://www.proteomeHD.net" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0077, - edam:topic_0080, - edam:topic_0121, - edam:topic_0154, - edam:topic_3520 ; - sc:citation , - "pubmed:31686107" ; - sc:description """enabling 'big data' approaches in proteomics. - -The ProteomeXchange Consortium was established to provide globally coordinated standard data submission and dissemination pipelines involving the main proteomics repositories, and to encourage open data policies in the field. Please review our Data Submission Guidelines , Reprocessed Guidelines; and PX Membership Agreement. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/proteomexchange (PROTEOMEXCHANGE.ORG). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ProteomeXchange' (bio.tools/proteomexchange)""" ; - sc:featureList edam:operation_2421, - edam:operation_3431, - edam:operation_3860 ; - sc:name "ProteomeXchange consortium 2020" ; - sc:url "http://www.proteomexchange.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0622 ; @@ -60655,7 +48733,7 @@ The ProteomeXchange Consortium was established to provide globally coordinated s sc:url "http://bioinfo.szn.it/pmultistriata/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation , "pmcid:PMC6797663", @@ -60666,7 +48744,7 @@ The ProteomeXchange Consortium was established to provide globally coordinated s sc:url "https://github.com/roads/psiz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0128, edam:topic_0199, @@ -60686,19 +48764,8 @@ PsyMuKB is a comprehensive knowledge base that links transcriptional and transla sc:name "PsyMuKB" ; sc:url "http://psymukb.net" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0781, - edam:topic_3174 ; - sc:citation ; - sc:description "> NAME (PuMA) SIMILAR TO (PUB. DIFFERENT) bio.tools/puma (puma) | a papillomavirus genome annotation tool | Papillomavirus genome annotation tool | PuMA is now available to access through iMicrobe" ; - sc:featureList edam:operation_0362 ; - sc:license "GPL-3.0" ; - sc:name "PuMA_autogenerated" ; - sc:url "https://www.imicrobe.us/#/apps/puma" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3303, @@ -60722,7 +48789,7 @@ PsyMuKB is a comprehensive knowledge base that links transcriptional and transla biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0621, @@ -60744,7 +48811,7 @@ PsyMuKB is a comprehensive knowledge base that links transcriptional and transla biotools:primaryContact "Victor Trevino" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0634, edam:topic_3308 ; @@ -60757,7 +48824,7 @@ PsyMuKB is a comprehensive knowledge base that links transcriptional and transla sc:url "http://pulmondb.liigh.unam.mx/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, edam:topic_0736, @@ -60772,7 +48839,7 @@ PsyMuKB is a comprehensive knowledge base that links transcriptional and transla sc:url "https://github.com/LCrossman/punchline" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -60792,7 +48859,7 @@ PsyMuKB is a comprehensive knowledge base that links transcriptional and transla sc:url "http://pureseqtm.predmp.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3385, @@ -60814,7 +48881,7 @@ PsyMuKB is a comprehensive knowledge base that links transcriptional and transla sc:url "https://git.embl.de/schorb/pyem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0166, edam:topic_3047, edam:topic_3314 ; @@ -60834,10 +48901,10 @@ PyAR stands for "Python program for aggregation and reaction\"""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3391 ; sc:citation ; @@ -60855,7 +48922,7 @@ PyAR stands for "Python program for aggregation and reaction\"""" ; sc:url "https://pybda.readthedocs.io/en/latest/#" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -60875,20 +48942,29 @@ PyAR stands for "Python program for aggregation and reaction\"""" ; sc:url "https://github.com/dblhlx/PyBSASeq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, edam:topic_2269 ; sc:citation , + , "pmcid:PMC6744527", - "pubmed:31522114" ; - sc:description "> COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/bionetfit (BIONETFIT.NAU.EDU) | PyBioNetFit and the Biological Property Specification Language | A fitting tool for biological models | PyBioNetFit (PyBNF) is a general-purpose program for parameterizing biological models specified using the BioNetGen rule-based modeling language (BNGL) or the Systems Biology Markup Language (SBML). PyBioNetFit offers a suite of parallelized metaheuristic algorithms (differential evolution, particle swarm optimization, scatter search) for parameter optimization. In addition to model parameterization, PyBioNetFit supports uncertainty quantification by bootstrapping and Bayesian approaches, and model checking. PyBioNetFit includes the Biological Property Specification Language (BPSL) for defining qualitative data for use in parameterization or checking. It runs on most Linux and macOS workstations as well on computing clusters" ; + "pubmed:31522114", + "pubmed:34986226" ; + sc:description "A general-purpose program for parameterizing biological models specified using the BioNetGen rule-based modeling language (BNGL) or the Systems Biology Markup Language (SBML)." ; sc:featureList edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; sc:name "PyBioNetFit" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; sc:url "http://bionetfit.nau.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation , @@ -60907,7 +48983,7 @@ PyAR stands for "Python program for aggregation and reaction\"""" ; biotools:primaryContact "Daniel Perez-Gil" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description """Discontinuous Boundary Elements for Fluid Flow Problems in Discrete Fracture Networks. @@ -60916,7 +48992,7 @@ Modeling fluid flow in three-dimensional (3D) Discrete Fracture Networks (DFNs) sc:url "https://github.com/BinWang0213/PyDFN3D" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0749, @@ -60937,7 +49013,7 @@ Modeling fluid flow in three-dimensional (3D) Discrete Fracture Networks (DFNs) biotools:primaryContact "Rafsanjani Muhammod" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, edam:topic_3489 ; @@ -60959,7 +49035,7 @@ API for calling interactively the GMQL Engine from Python""" ; sc:url "https://github.com/DEIB-GECO/PyGMQL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0769, edam:topic_3372 ; @@ -60995,29 +49071,8 @@ Open-source Pythonic library to compute landscape metrics within the PyData stac sc:softwareHelp ; sc:url "https://anaconda.org/conda-forge/pylandstats" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0081, - edam:topic_3306, - edam:topic_3382 ; - sc:citation , - "pmcid:PMC6933860", - "pubmed:31710740" ; - sc:description """Shortcuts for faster image creation in PyMOL. - -The repository pymolschortucts contains the a collection of shortcuts that are loaded on startup of PyMOL. These shortcuts enable websearches from within PyMOL as well as many other convienent functions that make work in PyMOL more productive.. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/pymol. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'shortcuts'""" ; - sc:featureList edam:operation_0337, - edam:operation_2422, - edam:operation_3432 ; - sc:license "MIT" ; - sc:name "PyMOL_autogenerated" ; - sc:url "http://github.com/MooersLab/pymolshortcuts" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3343, edam:topic_3384, edam:topic_3444 ; @@ -61032,7 +49087,7 @@ The repository pymolschortucts contains the a collection of shortcuts that are l sc:url "https://github.com/KnorrFG/pyparadigm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3325, edam:topic_3332 ; @@ -61050,7 +49105,7 @@ PyRETIS is a Python library for rare event molecular simulations with emphasis o sc:url "http://www.pyretis.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, edam:topic_0769, @@ -61067,7 +49122,7 @@ PyRETIS is a Python library for rare event molecular simulations with emphasis o sc:url "https://github.com/Radiomics/pyradiomics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation , "pubmed:31373614" ; @@ -61078,7 +49133,7 @@ PyRETIS is a Python library for rare event molecular simulations with emphasis o sc:url "https://pyranges.readthedocs.io/en/master/autoapi/pyranges/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3315, edam:topic_3474 ; @@ -61112,7 +49167,7 @@ PyRates requires an installation of Python >=3.6.1""" ; sc:url "https://www.cbs.mpg.de/departments/neurophysics/software/pyrates" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -61131,7 +49186,7 @@ PyRates requires an installation of Python >=3.6.1""" ; sc:url "https://github.com/schallerdavid/pyrod" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, edam:topic_3172, @@ -61151,7 +49206,7 @@ Technologies such as microscopy, sequential hybridization, and mass spectrometry sc:url "https://pypi.org/project/pySpacell/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0166, edam:topic_3047 ; @@ -61171,7 +49226,7 @@ PyVOL is a python library packaged into a PyMOL GUI for identifying protein bind sc:url "https://github.com/schlessingerlab/pyvol/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0199, edam:topic_0601 ; @@ -61185,7 +49240,7 @@ PyVOL is a python library packaged into a PyMOL GUI for identifying protein bind sc:url "https://github.com/AhmedArslan/pyntheon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3168 ; @@ -61199,7 +49254,7 @@ PyVOL is a python library packaged into a PyMOL GUI for identifying protein bind sc:url "https://github.com/vitorpavinato/PypeAmplicon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, edam:topic_3384, @@ -61213,7 +49268,7 @@ Non-human primate functional MRI (fMRI) is a growing field in neuroscience. Howe sc:url "https://github.com/neurospin/pypreclin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092 ; sc:description "PythonVideoAnnotator is a graphical application written in Python, to analyze and create notes for events in videos. It was developed with the aim of helping neuroscience and ethology researchers to identify animals’ behaviors based on the information extracted from the video." ; @@ -61230,7 +49285,7 @@ Non-human primate functional MRI (fMRI) is a growing field in neuroscience. Howe sc:url "https://pythonvideoannotator.readthedocs.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0634 ; @@ -61248,7 +49303,7 @@ Non-human primate functional MRI (fMRI) is a growing field in neuroscience. Howe sc:url "https://github.com/LobanovaEG-LobanovSV/Q-HIU" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3393, edam:topic_3810 ; sc:citation , @@ -61259,7 +49314,7 @@ Non-human primate functional MRI (fMRI) is a growing field in neuroscience. Howe sc:url "http://www.qa4ecv.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0749, @@ -61282,7 +49337,7 @@ Non-human primate functional MRI (fMRI) is a growing field in neuroscience. Howe biotools:primaryContact "Raluca Gordân" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -61299,19 +49354,8 @@ Non-human primate functional MRI (fMRI) is a growing field in neuroscience. Howe "Windows" ; sc:url "http://shiny.maths.usyd.edu.au/QCMAP/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3334, - edam:topic_3421, - edam:topic_3794 ; - sc:citation , - "pmcid:PMC6743702", - "pubmed:31528384" ; - sc:description "> HOMEPAGE MISSING! | A cadaveric study and first clinical experiences (case series) | Background:The use of endoscopes in neurosurgery is well established, but the integration of a full high definition signaling, 45° angled endoscopic tool into a digital surgical microscope, is new. We report our first experiences in a cadaveric study and a clinical case series using the new microinspection tool QEVO® that serves as a plug-in feature for the recently launched KINEVO 900 digital visualization platform (CARL ZEISS MEDITEC, Oberkochen, Germany). For illustration purposes, we offer video footage. Methods:The handling, workflow, and visualization patterns of the QEVO® microinspection tool were critically evaluated in cadaver specimens by simulating four standardized neurosurgical approaches: (1) pterional, (2) retrosigmoidal, (3) transsphenoidal, (4) and transcallosal" ; - sc:name "QEVO" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31528384" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3382, edam:topic_3489 ; @@ -61326,7 +49370,7 @@ Non-human primate functional MRI (fMRI) is a growing field in neuroscience. Howe sc:url "http://qgis.osgeo.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -61347,27 +49391,8 @@ Non-human primate functional MRI (fMRI) is a growing field in neuroscience. Howe sc:url "http://www.stat.sinica.edu.tw/chkao/RQTL/download.htm" ; biotools:primaryContact "Chen-Hung Kao" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3377, - edam:topic_3403, - edam:topic_3418 ; - sc:citation , - , - "pubmed:31608859", - "pubmed:31663959" ; - sc:description """How do emergency departments and emergency leaders catalyze positive change through quality improvement collaborations?. - -Jump-Starting Faculty Development in Quality Improvement and Patient Safety Education. - -In recent years, the importance of quality improvement and patient safety (QIPS) has become evident in healthcare in general, and in emergency medicine in particular. Though this is increasingly widely acknowledged, there is still a paucity of guiding resources as to how healthcare providers can obtain the knowledge and skills to initiate meaningful change. In order to help foster the development of QIPS, the following Resource Centre was created to guide training in the science of QIPS. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'QIPS teaching', 'teaching QIPS', 'Te4Q', 'Jump-Starting Faculty Development Quality Improvement Patient Safety Education'""" ; - sc:featureList edam:operation_3891 ; - sc:name "QIPS" ; - sc:url "https://caep.ca/qips-resources/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0736, edam:topic_2275, edam:topic_3474 ; @@ -61396,28 +49421,8 @@ Reference for the QMEAN scoring function:""" ; sc:name "QMEANDisCo" ; sc:url "https://swissmodel.expasy.org/qmean" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3403, - edam:topic_3418, - edam:topic_3810 ; - sc:citation , - "pmcid:PMC6851948", - "pubmed:31763204" ; - sc:description """The inaugural Qatar Critical Care Conference with its Qatar Medical Journal Special Issue. - -Papers considered for publication in Qatar Medical Journal are those reporting original work, review articles and case reports that are particularly relevant to medicine in the broad sense. Editorials and Review articles are by invitation.Manuscripts are normally published in English but Arabic text can be considered if written in scientific format and language.Articles accepted for publication are subject to editorial revision.Journal indexed in PubMed Central & Google Scholar. - -Papers considered for publication in Qatar Medical Journal are those reporting original work, review articles and case reports that are particularly relevant to medicine in the broad sense. - -Manuscripts are normally published in English but Arabic text can be considered if written in scientific format and language. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Qatar Medical Journal'""" ; - sc:name "QMJ" ; - sc:url "https://www.qscience.com/content/journals/qmj" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0602, edam:topic_0625, @@ -61433,7 +49438,7 @@ Manuscripts are normally published in English but Arabic text can be considered sc:url "https://github.com/github-gs/QPA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3305, edam:topic_3337, @@ -61455,18 +49460,8 @@ Congress of the “Société Francophone Posture, Équilibre et Locomotion” (S sc:name "QPN" ; sc:url "http://rpq-qpn.ca/en/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0821 ; - sc:citation ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'D-Wave', 'quantum', 'quantum-annealer-based', 'computers' | Designing Peptides on a Quantum Computer | Abstract Although a wide variety of quantum computers are currently being developed, actual computational results have been largely restricted to contrived, artificial tasks. Finding ways to apply quantum computers to useful, real-world computational tasks remains an active research area. Here we describe our mapping of the protein design problem to the D-Wave quantum annealer. We present a system whereby Rosetta, a state-of-the-art protein design software suite, interfaces with the D-Wave quantum processing unit to find amino acid side chain identities and conformations to stabilize a fixed protein backbone. Our approach, which we call the QPacker , uses a large side-chain rotamer library and the full Rosetta energy function, and in no way reduces the design task to a simpler format" ; - sc:featureList edam:operation_0480, - edam:operation_3216 ; - sc:name "QPacker" ; - sc:url "https://doi.org/10.1101/752485" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3335, edam:topic_3422, @@ -61494,7 +49489,7 @@ This calculator is only valid if you do not already have a diagnosis of coronary sc:url "https://cran.r-project.org/web/packages/QRISK3/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0102, @@ -61513,7 +49508,7 @@ This calculator is only valid if you do not already have a diagnosis of coronary sc:url "http://www.qresearch.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0637, edam:topic_3293 ; @@ -61529,7 +49524,7 @@ This calculator is only valid if you do not already have a diagnosis of coronary sc:url "https://github.com/Tmyiri/QS-Net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3336, edam:topic_3375, edam:topic_3474 ; @@ -61546,7 +49541,7 @@ There exist a new type of QSAR individual classifier that is an end-to-end neura sc:url "http://data.snu.ac.kr/QSAR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -61564,19 +49559,8 @@ There exist a new type of QSAR individual classifier that is an end-to-end neura sc:url "https://sites.google.com/view/qsar-co" ; biotools:primaryContact "Pravin Ambure" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0209, - edam:topic_2275, - edam:topic_3374 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'cyclodextrin', 'QSARs cyclodextrin', 'drug', 'cyclodextrin affinity-based' | Using QSARs for predictions in drug delivery | Abstract Drug delivery research is an inherently empirical process, however high-throughput approaches could take advantage of understanding drug material interactions such as from electrostatic, hydrophobic, or other non-covalent interactions between therapeutic molecules and a drug delivery polymer. Cyclodextrin polymers have been investigated for drug delivery specifically due to their capacity to exploit this affinity interaction to change the rate of drug release. Testing drug candidates; however, for affinity is time-consuming, making computational predictions more effective. One option, molecular \"docking\" programs, provide predictions of affinity, but lack reliability, as their accuracy with cyclodextrin remains unverified experimentally" ; - sc:featureList edam:operation_0337, - edam:operation_0478 ; - sc:name "QSARs" ; - sc:url "https://doi.org/10.1101/727172" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3379, edam:topic_3400, edam:topic_3444 ; @@ -61591,7 +49575,7 @@ There exist a new type of QSAR individual classifier that is an end-to-end neura sc:url "http://pre.weill.cornell.edu/mri/pages/qsm.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, edam:topic_3673 ; @@ -61605,7 +49589,7 @@ There exist a new type of QSAR individual classifier that is an end-to-end neura sc:url "https://github.com/sanlengjing/QTL-BSA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_3173, @@ -61625,7 +49609,7 @@ QTLbase curates and compiles genome-wide QTL summary statistics for many human m sc:url "http://mulinlab.org/qtlbase" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -61646,7 +49630,7 @@ QTLbase curates and compiles genome-wide QTL summary statistics for many human m biotools:primaryContact "Guilherme da Silva Pereira" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, edam:topic_0209, @@ -61661,7 +49645,7 @@ QTLbase curates and compiles genome-wide QTL summary statistics for many human m sc:url "https://github.com/cole-group/QuBeKit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3518 ; @@ -61672,27 +49656,8 @@ QTLbase curates and compiles genome-wide QTL summary statistics for many human m sc:name "QUBIC2" ; sc:url "https://github.com/OSU-BMBL/QUBIC2" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_0769, - edam:topic_2830, - edam:topic_3382 ; - sc:citation , - "pmcid:PMC6901597", - "pubmed:31849633" ; - sc:description """Workflow for Quantification and Spatial Analysis of Features in Histological Images From Rodent Brain. - -Transgenic animal models are invaluable research tools for elucidating the pathways and mechanisms involved in the development of neurodegenerative diseases. Mechanistic clues can be revealed by applying labelling techniques such as immunohistochemistry or in situ hybridisation to brain tissue sections. Precision in both assigning anatomical location to the sections and quantifying labelled features is crucial for output validity, with a stereological approach or image-based feature extraction typically used. However, both approaches are restricted by the need to manually delineate anatomical regions. To circumvent this limitation, we present the QUINT workflow for quantification and spatial analysis of labelling in series of rodent brain section images based on available 3D reference atlases. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3443, - edam:operation_3553, - edam:operation_3799 ; - sc:name "QUINT" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31849633" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, edam:topic_0199 ; @@ -61705,7 +49670,7 @@ Transgenic animal models are invaluable research tools for elucidating the pathw sc:url "https://github.com/qusers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; sc:description """Overcoming computational bottlenecks in sequence quality control. @@ -61718,22 +49683,8 @@ Abstract With the recent torrent of high throughput sequencing (HTS) data the ne sc:name "QuAdTrim" ; sc:url "https://bitbucket.org/arobinson/quadtrim" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0176, - edam:topic_3306 ; - sc:citation , - "pubmed:31532987" ; - sc:description "> VERY_LOW CONFIDENCE! | Quality Threshold Clustering of Molecular Dynamics | Clustering Molecular Dynamics trajectories is a common analysis that allows grouping together similar conformations. Several algorithms have been designed and optimized to perform this routine task and among them, Quality Threshold (QT) stands as a very attractive option. QT guarantees that in retrieved clusters, no pair of frames will have a similarity value greater than a specified threshold and hence a set of strongly correlated frames is obtained for each cluster. For more information about QT, please refer to Heyer et. al. work (Heyer, L. J.; Kruglyak, S.; Yooseph, S. Exploring Expression Data: Identification and Analysis of Coexpressed Genes. 1999, No. 213, 1106–1115. Genome Research) | Python Implementation of Quality Threshold Clustering for Molecular Dynamics | A python implementation of Heyer, 1999's Quality Threshold clustering algorithm specialized for molecular dynamics trajectories" ; - sc:featureList edam:operation_2476, - edam:operation_3432, - edam:operation_3891 ; - sc:license "GPL-3.0" ; - sc:name "Quality Threshold Clustering Molecular Dynamics" ; - sc:url "https://figshare.com/articles/Python_Implementation_of_Quality_Threshold_Clustering_for_Molecular_Dynamics/3813930" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3382, edam:topic_3474 ; @@ -61749,7 +49700,7 @@ QuantiMus is a machine-learning based program used for histological analysis of sc:url "https://quantimus.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3336, edam:topic_3474 ; @@ -61768,7 +49719,7 @@ QuantiMus is a machine-learning based program used for histological analysis of biotools:primaryContact "James A. Watson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3570 ; sc:citation , @@ -61786,7 +49737,7 @@ QuantiMus is a machine-learning based program used for histological analysis of sc:url "https://github.com/vsoftco/qpp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3314, edam:topic_3315, edam:topic_3318 ; @@ -61799,7 +49750,7 @@ QuantiMus is a machine-learning based program used for histological analysis of sc:url "https://docs.quantumatk.com/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0194, edam:topic_3293 ; sc:citation , @@ -61814,14 +49765,14 @@ QuantiMus is a machine-learning based program used for histological analysis of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ] ; + sc:additionalType "http://edamontology.org/data_3671" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Text" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3671" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Text" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769 ; @@ -61839,7 +49790,7 @@ QuantiMus is a machine-learning based program used for histological analysis of sc:url "https://github.com/galaxyproject/tools-iuc/tree/master/tools/query_tabular" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3855 ; @@ -61857,28 +49808,31 @@ QuantiMus is a machine-learning based program used for histological analysis of biotools:primaryContact "Arnaud Becheler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3384, edam:topic_3444 ; + sc:author "Neural Systems Laboratory" ; sc:citation , "pmcid:PMC6541252", "pubmed:31141518" ; sc:description "Tool for user guided affine registration (anchoring) of 2D experimental image data, typically high resolution microscopic images, to 3D atlas reference space, facilitating data integration through standardized coordinate systems." ; sc:featureList edam:operation_3552 ; + sc:funder "Horizon 2020" ; sc:isAccessibleForFree true ; sc:license "CC-BY-NC-SA-4.0" ; sc:name "QuickNII" ; sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:softwareHelp ; + sc:softwareHelp , + ; sc:url "https://www.nitrc.org/projects/quicknii" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0121, @@ -61899,7 +49853,7 @@ QuantiMus is a machine-learning based program used for histological analysis of biotools:primaryContact "Fuyi Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, edam:topic_0632, @@ -61917,19 +49871,8 @@ R-BIND: The RNA-Targeted BIoactive ligaNd Database. The dataset includes only bi sc:name "R-BIND" ; sc:url "https://rbind.chem.duke.edu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0622, - edam:topic_3384, - edam:topic_3419 ; - sc:citation , - "pmcid:PMC6760458", - "pubmed:31552554" ; - sc:description "> CORRECT NAME OF TOOL COULD ALSO BE 'Response Lithium Network' | Prospective cohort study of early biosignatures of response to lithium in bipolar-I-disorders | Optimizing response to lithium treatment through personalized evaluation of individuals with bipolar I disorder: the R-LiNK initiative | R-Link is a multinational study funded by the European Union’s Horizon 2020 Research and Innovation programme. R-Link involves eight European countries including France, United Kingdom, Denmark, Spain, Norway, Sweden, Germany and Italy" ; - sc:name "R-LiNK" ; - sc:url "http://www.r-link.eu.com/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, edam:topic_0622, @@ -61945,7 +49888,7 @@ R-BIND: The RNA-Targeted BIoactive ligaNd Database. The dataset includes only bi sc:url "http://r2.amc.nl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -61966,7 +49909,7 @@ A web server of reduced amino acid alphabet for sequence-dependent inference""" sc:url "http://bioinfor.imu.edu.cn/raacbook" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3168, edam:topic_3512 ; @@ -61980,7 +49923,7 @@ A web server of reduced amino acid alphabet for sequence-dependent inference""" sc:url "https://github.com/pantastheo/RACE-SEQ-lite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3169, edam:topic_3170, @@ -62001,7 +49944,7 @@ RACS: Rapid Analysis of ChIP-Seq data for contig based genomes -- repository""" sc:url "https://gitrepos.scinet.utoronto.ca/public/?a=summary&p=RACS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3419 ; sc:citation , @@ -62014,38 +49957,8 @@ RACS: Rapid Analysis of ChIP-Seq data for contig based genomes -- repository""" sc:name "RADAR-base" ; sc:url "https://radar-base.org/index.php/documentation/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0099, - edam:topic_2640, - edam:topic_3170, - edam:topic_3295, - edam:topic_3308 ; - sc:citation , - , - "pmcid:PMC6927177", - "pubmed:31870409" ; - sc:description """Differential analysis of MeRIP-seq data with a random effect model. - -The project for analyzing differential methylation of MeRIP-seq data. - -RNA methylAtion Differential Analysis in R >> RADAR. - -The following links are codes used to generate plots/figures in the manuscript “Count-based differential analysis of MeRIP-seq data with a random effect model”. Session information (including package versions) are listed at the end of each page. - -This R Markdown site was created with workflowr. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/radar""" ; - sc:featureList edam:operation_0244, - edam:operation_0308, - edam:operation_2495, - edam:operation_3204 ; - sc:license "GPL-3.0" ; - sc:name "RADAR_autogenerated" ; - sc:softwareHelp ; - sc:url "https://github.com/scottzijiezhang/RADAR" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3673, @@ -62065,7 +49978,7 @@ This R Markdown site was created with workflowr. biotools:primaryContact "Dr. Beiko's Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3071, @@ -62087,13 +50000,13 @@ This R Markdown site was created with workflowr. biotools:primaryContact "Dr. Yousong Peng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0099 ; sc:citation , "pubmed:31373604" ; - sc:description "> HOMEPAGE BROKEN! | > CORRECT NAME OF TOOL COULD ALSO BE 'RAG-Web' | RNA Structure Prediction/Design using RNA-As-Graphs | MOTIVATION:We launch a webserver for RNA structure prediction and design corresponding to tools developed using our RNA-As-Graphs (RAG) approach. RAG uses coarse-grained tree graphs to represent RNA secondary structure, allowing the application of graph theory to analyze and advance RNA structure discovery. Our webserver consists of three modules: (a) RAG Sampler: samples tree graph topologies from an RNA secondary structure to predict corresponding tertiary topologies, (b) RAG Builder: builds three-dimensional atomic models from candidate graphs generated by RAG Sampler, and (c) RAG Designer: designs sequences that fold onto novel RNA motifs (described by tree graph topologies). Results analyses are performed for further assessment selection. The Results page provides links to download results and indicates possible errors encountered" ; + sc:description "Webserver for RNA structure prediction and design corresponding to tools developed using our RNA-As-Graphs (RAG) approach." ; sc:featureList edam:operation_0278, edam:operation_0502, edam:operation_2441 ; @@ -62101,7 +50014,7 @@ This R Markdown site was created with workflowr. sc:url "http://tslab10.chem.nyu.edu:7000/ragtop/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, edam:topic_3308 ; @@ -62113,7 +50026,7 @@ This R Markdown site was created with workflowr. sc:url "http://server.malab.cn/RAM-ESVM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0798, edam:topic_3277 ; @@ -62129,7 +50042,7 @@ This R Markdown site was created with workflowr. sc:url "https://github.com/kepbod/rampage_alu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -62146,30 +50059,17 @@ This R Markdown site was created with workflowr. sc:url "https://cran.r-project.org/package=RANKS" ; biotools:primaryContact "Giorgio Valentini" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3376, - edam:topic_3405, - edam:topic_3418 ; - sc:citation , - "pubmed:31411790" ; - sc:description "> NAME EQUAL TO (PUB. DIFFERENT) bio.tools/rapid | Reporting stAndards for research in PedIatric Dentistry (RAPID) | Rapid Research in pediatric Dentistry | \"Reporting standards for research in Pediatric Dentistry\" (RAPID) is an initiative that provides evidence-based recommendations to improve the reporting quality of research in Pediatric Dentistry. The RAPID statement facilitates complete and transparent reporting by minimizing biases arising from incomplete or inadequate reporting of studies in Pediatric Dentistry" ; - sc:name "RAPID_autogenerated" ; - sc:url "http://www.rapid-statement.org" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_3272" ; + sc:name "Species tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3272" ; - sc:name "Species tree" ; - sc:sameAs "http://edamontology.org/data_3272" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0637, @@ -62188,26 +50088,21 @@ This R Markdown site was created with workflowr. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:name "Data reference" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application", @@ -62234,81 +50129,8 @@ RARe search is an implementation of DataDiscovery.""" ; sc:url "https://urgi.versailles.inrae.fr/rare/" ; biotools:primaryContact "Support service" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3303, - edam:topic_3382 ; - sc:citation , - "pubmed:31571262" ; - sc:description """Retrieval of Absorption or Scattering Coefficient Spectrum (RASCS) Program. - -BACKGROUND AND OBJECTIVES:Optical properties characterize light propagation in turbid media, such as tissue. Recovery of optical properties is of great importance in a wide variety of biomedical applications, including both therapeutic treatments and diagnosis. Most of the available methodologies are well established, however, these are not optimized for real-time measurements. STUDY DESIGN MATERIALS AND METHODS:Optical properties are recovered using the Inverse Adding Doubling program from reflectance measurements measured with an integrating sphere and light in the visible range. A user-friendly interface was programmed in Visual Studio and the libraries of a particular spectrophotometer were used. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Retrieval Absorption Scattering Coefficient Spectrum Program', 'optical', 'OBJECTIVES:Optical', 'METHODS:Optical'""" ; - sc:featureList edam:operation_2422, - edam:operation_3359, - edam:operation_3435 ; - sc:name "RASCS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31571262" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3382, - edam:topic_3489 ; - sc:citation ; - sc:description """A web-based interactive 2D and 3D GIS application to find the best place in a city, using open data and open source software. - -rasdaman, the Big Data Analytics Server. - -fast, flexible, scalable, standards-based, secure. - -...and clients, clients, clients. - -boosted by query optimization, parallelization, federation, heterogeneous hardware. - -Check out the Hall of Fame of rasdaman-enabled services!. - -rasdaman ("raster data manager") is the pioneer and leading Array Analytics Engine, for scalable, actionable datacubes in science, engineering, and beyond. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'City Focus', 'city', 'WorldWind'""" ; - sc:featureList edam:operation_0224, - edam:operation_0337, - edam:operation_3435 ; - sc:name "RASDAMAN" ; - sc:url "http://www.rasdaman.com" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_0749, - edam:topic_3068, - edam:topic_3315, - edam:topic_3673 ; - sc:citation ; - sc:description """a Web-first format for HTML-based scholarly articles. - -Research Articles in Simplified HTML (RASH) Framework includes a markup language defined as a subset of HTML+RDF for writing scientific articles, and related tools to convert it into different formats, to extract data from it, etc. - -How to cite: Peroni, S., Osborne, F., Di Iorio, A., Nuzzolese, A. G., Poggi, F., Vitali, F., Motta, E. (2017). Research Articles in Simplified HTML: a Web-first format for HTML-based scholarly articles. PeerJ Computer Science 3: e132. e2513. DOI: https://doi.org/10.7717/peerj-cs.132. - -# rash-check.sh - fully check RASH documents. - -The odt2rash.jar executable converts an ODT file into the RASH format. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Research Articles Simplified HTML', 'SAVE-SD'""" ; - sc:featureList edam:operation_0337, - edam:operation_2422, - edam:operation_3778, - edam:operation_3891 ; - sc:license "ISC" ; - sc:name "RASH" ; - sc:softwareHelp , - , - ; - sc:url "https://w3id.org/people/essepuntato/papers/rash-peerj2016.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0203, @@ -62325,19 +50147,8 @@ RASflow: RNA-Seq Analysis Snakemake Workflow""" ; sc:name "RASflow" ; sc:url "https://github.com/zhxiaokang/RASflow" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0219 ; - sc:citation , - "pmcid:PMC6684020", - "pubmed:31388247" ; - sc:description "> HOMEPAGE MISSING! | Explaining Wrong Relational Queries Using Small Examples | We present a system called RATEST, designed to help debug relational queries against reference queries and test database instances. In many applications, e.g., classroom learning and regression testing, we test the correctness of a user query Q by evaluating it over a test database instance D and comparing its result with that of evaluating a reference (correct) query Q 0 over D. If Q(D) differs from Q 0(D), the user knows Q is incorrect. However, D can be large (often by design), which makes debugging Q difficult. The key idea behind RATEST is to show the user a much smaller database instance D' ⊆ D, which we call a counterexample, such that Q(D') ≠ Q 0(D'). RATEST builds on data provenance and constraint solving, and employs a suite of techniques to support, at interactive speed, complex queries involving differences and group-by aggregation" ; - sc:featureList edam:operation_0224, - edam:operation_3436 ; - sc:name "RATEST" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31388247" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -62361,7 +50172,7 @@ RASflow: RNA-Seq Analysis Snakemake Workflow""" ; biotools:primaryContact "Ayelet Peres" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0194, @@ -62382,22 +50193,8 @@ RASflow: RNA-Seq Analysis Snakemake Workflow""" ; sc:url "https://raxml-ng.vital-it.ch/" ; biotools:primaryContact "Vital-IT helpdesk" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3315, - edam:topic_3382, - edam:topic_3474 ; - sc:citation , - "pubmed:31634130" ; - sc:description """Unsupervised Rotation Factorization in Restricted Boltzmann Machines. - -Finding suitable image representations for the task at hand is critical in computer vision. Different approaches extending the original Restricted Boltzmann Machine (RBM) model have recently been proposed to offer rotation-invariant feature learning. In this paper, we present an extended novel RBM that learns rotation invariant features by explicitly factorizing for rotation nuisance in 2D image inputs within an unsupervised framework. While the goal is to learn invariant features, our model infers an orientation per input image during training, using information related to the reconstruction error. The training process is regularised by a Kullback-Leibler divergence, offering stability and consistency. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/rbm""" ; - sc:name "RBM_autogenerated" ; - sc:url "https://bitbucket.org/tuttoweb/rotinvrbm" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3320, edam:topic_3512, @@ -62418,7 +50215,7 @@ Finding suitable image representations for the task at hand is critical in compu biotools:primaryContact "Yeo LAB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0602, @@ -62435,7 +50232,7 @@ Finding suitable image representations for the task at hand is critical in compu sc:url "http://shiny.cecad.uni-koeln.de:3838/celegans_rbpome" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3518, edam:topic_3577, @@ -62457,7 +50254,7 @@ RBV: Read Balance Validator is a corroborates copy number variants (CNV) from wh sc:url "https://github.com/whitneywhitford/RBV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0634, edam:topic_0749 ; @@ -62470,7 +50267,7 @@ RBV: Read Balance Validator is a corroborates copy number variants (CNV) from wh sc:url "https://github.com/cuizhensdws/L21-GRMF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0203, edam:topic_3295, @@ -62485,40 +50282,8 @@ RBV: Read Balance Validator is a corroborates copy number variants (CNV) from wh sc:name "RCSM" ; sc:url "https://github.com/Jasonlinchina/RCSM" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3068, - edam:topic_3322, - edam:topic_3377, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6894109", - "pubmed:31801523" ; - sc:description """a resource for chemical disease semantic extraction in Chinese. - -BACKGROUND:To robustly identify synergistic combinations of drugs, high-throughput screenings are desirable. It will be of great help to automatically identify the relations in the published papers with machine learning based tools. To support the chemical disease semantic relation extraction especially for chronic diseases, a chronic disease specific corpus for combination therapy discovery in Chinese (RCorp) is manually annotated. METHODS:In this study, we extracted abstracts from a Chinese medical literature server and followed the annotation framework of the BioCreative CDR corpus, with the guidelines modified to make the combination therapy related relations available. An annotation tool was incorporated to the standard annotation process. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3280, - edam:operation_3625, - edam:operation_3778 ; - sc:name "RCorp" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31801523" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_0218, - edam:topic_3070 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/biosemantics_suite (BIOSEMANTICS.ORG) | > CORRECT NAME OF TOOL COULD ALSO BE 'BioHackathon series 2013 2014' | improvements of semantic interoperability in life science data and services | Here is the list of urls that will return RDF content" ; - sc:featureList edam:operation_2422, - edam:operation_3280, - edam:operation_3761 ; - sc:name "RDF" ; - sc:url "http://rdf.biosemantics.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "SPARQL endpoint" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3172, @@ -62538,28 +50303,8 @@ BACKGROUND:To robustly identify synergistic combinations of drugs, high-throughp ; sc:url "https://pharmb.io/project/rdfio/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_2258, - edam:topic_2885, - edam:topic_3489 ; - sc:citation ; - sc:description """Accessing biological data in R with semantic web technologies. - -The EBI RDF Platform aims to bring together the efforts of a number of EMBL-EBI resources that provide access to their data using Semantic Web technologies. It provides a unified way to query across resources using the W3C SPARQL query language. We welcome comments or questions via email rdf-req[at]ebi.ac.uk or github. - -Linked Open Data platform for EBI data. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/RDF. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Resource Description Framework'""" ; - sc:featureList edam:operation_0224 ; - sc:license "GPL-3.0" ; - sc:name "RDF_autogenerated" ; - sc:url "http://cran.r-project.org/web/packages/rrdf/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2258, edam:topic_3047 ; @@ -62571,30 +50316,8 @@ Linked Open Data platform for EBI data. sc:name "RDKit" ; sc:url "http://www.rdkit.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0632, - edam:topic_2885, - edam:topic_3305, - edam:topic_3324, - edam:topic_3519 ; - sc:citation , - "pmcid:PMC6882336", - "pubmed:31775877" ; - sc:description """Performance of three rapid diagnostic tests for the detection of Cryptosporidium spp. and Giardia duodenalis in children with severe acute malnutrition and diarrhoea. - -BACKGROUND:There is significant need for accurate diagnostic tools for Cryptosporidium spp. and Giardia duodenalis infections in resource limited countries where diarrhoeal disease caused by these parasites is often prevalent. The present study assessed the diagnostic performance of three commercially available rapid diagnostic tests (RDTs) based on faecal-antigen detection for Cryptosporidium spp. and or G. duodenalis infections in stool samples of children admitted with severe acute malnutrition (SAM) and diarrhoea. An established multiplex PCR was used as reference test. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Cryptosporidium spp Giardia duodenalis', 'RDT Cryptosporidium spp Malawi', 'RDTs Cryptosporidium spp Giardia', 'Cryptosporidium spp'""" ; - sc:featureList edam:operation_0346, - edam:operation_3196, - edam:operation_3435 ; - sc:name "RDTs Cryptosporidium spp Giardia duodenalis" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31775877" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3673 ; sc:citation , @@ -62615,43 +50338,8 @@ Note: (matuskalas): Lumpy (or lumpy-sv) is a completely different tool, atm miss sc:url "https://sourceforge.net/projects/rdxplorer/" ; biotools:primaryContact "Makarov V." . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3318, - edam:topic_3376, - edam:topic_3403 ; - sc:citation , - , - "pubmed:31486723", - "pubmed:31508762" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'ACP interventions', 'PREPARE', 'ACP', 'three-site' | [Assistance programs for physical activity in Brazilian schools | Population-Based Pragmatic Trial of Advance Care Planning in Primary Care in the University of California Health System | The analysis of physical activity (PA) assistance programs is of major importance to ensure progress in the area. The Reach, Efficacy, Adoption, Implementation and Maintenance (RE-AIM) tool has been broadly disseminated in the literature. This study set out to identify PA assistance programs among Brazilian students and analyze them using the RE-AIM tool. The search was conducted in the Lilacs, SportDiscus, SciELO, Scopus, Web of Science, EBSCOhot, PsycINFO and PubMed databases. After thoroughly researching titles, abstracts and studies, 15 articles (seven PA assistance programs) were included" ; - sc:featureList edam:operation_3891 ; - sc:name "RE-AIM" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31508762" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3077, - edam:topic_3305, - edam:topic_3419 ; - sc:citation , - "pmcid:PMC6883916", - "pubmed:31824911" ; - sc:description """Use of the RE-AIM Framework for Program Planning and Evaluation in Clinical and Community Settings. - -RE-AIM – Reach Effectiveness Adoption Implementation Maintenance. - -This webinar, titled “Using the RE-AIM Model in Faith-based Dissemination & Implementation Study”, was presented by Dr. Sara Wilcox from the Arnold School of Public Health, at the University of South Carolina. Dr. Wilcox’s unique and engaging talk gave insight into an intervention that is being both disseminated and implemented within faith-based communities in South Carolina. Dr. Wilcox discusses her use of RE-AIM and how the framework was able to both help in the planning, evaluation, and aid in the development of future steps in her work. - -For this month, we are bringing you our most recent webinar that occurred in December 2019. The last webinar of the decade!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/RE-AIM. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'RE-AIM Real World'""" ; - sc:featureList edam:operation_3799 ; - sc:name "RE-AIM_autogenerated" ; - sc:url "http://www.re-aim.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3384, edam:topic_3417, @@ -62667,27 +50355,8 @@ The goal of the Retinal Fundus Glaucoma Challenge (REFUGE) is to evaluate and co sc:name "REFUGE Challenge" ; sc:url "https://refuge.grand-challenge.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0153, - edam:topic_0602, - edam:topic_3500, - edam:topic_3520 ; - sc:citation , - "pmcid:PMC6920236", - "pubmed:31713015" ; - sc:description """comparison between a diathermic knife and CO2 laser sampling on classification performance. - -The increasing need for rapid, in situ, and robust tissue profiling approaches in the context of intraoperative diagnostics has led to the development of a large number of ambient ionization-based surface sampling strategies. This paper compares the performances of a diathermic knife and a CO2 laser handpiece, both clinically approved, coupled to a rapid evaporative ionization mass spectrometry (REIMS) source for quasi-instantaneous tissue classification. Several fresh meat samples (muscle, liver, bone, bone marrow, cartilage, skin, fat) were obtained from different animals. Overall, the laser produced cleaner cuts and more reproducible and higher spectral quality signals when compared with the diathermic knife (CV laser = 9-12%, CV diathermic = 14-23%). - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0337, - edam:operation_3627, - edam:operation_3891 ; - sc:name "REIMS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31713015" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3168, edam:topic_3295, @@ -62704,7 +50373,7 @@ REPIC (RNA Epitranscriptome Collection) is a database dedicated to provide a new sc:url "https://repicmod.uchicago.edu/repic/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0625 ; @@ -62735,7 +50404,7 @@ REPIC (RNA Epitranscriptome Collection) is a database dedicated to provide a new "Wynn Meyer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2830, edam:topic_3360, @@ -62748,90 +50417,8 @@ REPIC (RNA Epitranscriptome Collection) is a database dedicated to provide a new sc:name "RESTORE" ; sc:url "https://gitlab.com/Chang_Lab/cycif_int_norm" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0208, - edam:topic_2640, - edam:topic_3360 ; - sc:citation , - "pmcid:PMC6801079", - "pubmed:31409613" ; - sc:description "> MEDIUM CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/CellMinerCDB (DISCOVER.NCI.NIH.GOV/cellminercdb), bio.tools/mammalian_gene_collection (NCI.NIH.GOV), bio.tools/rcellminer (NCI.NIH.GOV/cellminer), bio.tools/cgap (NCI.NIH.GOV), bio.tools/pid (NCI.NIH.GOV) | > CORRECT NAME OF TOOL COULD ALSO BE 'DESIGN:CellMinerCDB', 'indenoisoquinolines', 'LMP400 olaparib', 'LMP400' | The Indenoisoquinoline TOP1 Inhibitors Selectively Target Homologous Recombination-Deficient and Schlafen 11-Positive Cancer Cells and Synergize with Olaparib | CellMiner Cross Database (CellMinerCDB) is the first web application to allow translational researchers to conduct analyses across all major cancer cell line pharmacogenomic data sources from NCI-DTP NCI-60, Sanger GDSC, and Broad CCLE/CTRP | Skip over navigation CellMiner NCI-60 NCI/DCTD/DTP" ; - sc:name "RESULTS:CellMinerCDB" ; - sc:url "http://discover.nci.nih.gov/cellminercdb" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_2640, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6683425", - "pubmed:31382962" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'MWMM', 'blossom' | Clustering analysis of microRNA and mRNA expression data from TCGA using maximum edge-weighted matching algorithms | maximum weighted merger method" ; - sc:featureList edam:operation_3432, - edam:operation_3766, - edam:operation_3792 ; - sc:name "RESULTS:MWMM" ; - sc:url "https://github.com/BaiLab/MWMM" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0203, - edam:topic_0602, - edam:topic_3170, - edam:topic_3517 ; - sc:citation , - "pmcid:PMC6813133", - "pubmed:31651322" ; - sc:description """a biological insight into the novel associated genes. - -BACKGROUND:Attention-Deficit Hyperactivity Disorder (ADHD) is a complex neurodevelopmental disorder (NDD) which may significantly impact on the affected individual's life. ADHD is acknowledged to have a high heritability component (70-80%). Recently, a meta-analysis of GWAS (Genome Wide Association Studies) has demonstrated the association of several independent loci. Our main aim here, is to apply PASCAL (pathway scoring algorithm), a new gene-based analysis (GBA) method, to the summary statistics obtained in this meta-analysis. PASCAL will take into account the linkage disequilibrium (LD) across genomic regions in a different way than the most commonly employed GBA methods (MAGMA or VEGAS (Versatile Gene-based Association Study)). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CONCLUSIONS:PASCAL', 'PASCAL', 'Gene-based analysis ADHD using PASCAL'""" ; - sc:featureList edam:operation_2495, - edam:operation_3223, - edam:operation_3501 ; - sc:name "RESULTS:PASCAL" ; - sc:url "https://www2.unil.ch/cbg/index.php?title=Pascal" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0634, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6799900", - "pubmed:31626666" ; - sc:description """Predicting diabetes second-line therapy initiation in the Australian population via time span-guided neural attention network. - -TANGLE: Time spAN Guided neuraL attEntion model. - -TANGLE is a timespan-guided neural attention mechanism that can be used to integrate sequences of Medicare services and the time span between them to provide interpretable patients representations, which can be further used for some target prediction task. - -Predictive capabilities of TANGLE are demonstrated here with an application on the 10% publicly available sample of deidentified, individual level, linked Medicare Benefits Schedule (MBS) and Pharmaceutical Benefits Scheme (PBS) electronic databases of Australia. Starting from sequences of MBS-items and timespans, TANGLE can predict which diabetic patient, currently on metformin only, is likely to be prescribed with a different type of diabetes controlling drug in the near future. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'IMPLEMENTATION:Tangle', 'Tangle'""" ; - sc:featureList edam:operation_0337, - edam:operation_3439 ; - sc:name "RESULTS:Tangle" ; - sc:url "https://github.com/samuelefiorini/tangle" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0176, - edam:topic_0602 ; - sc:citation , - ; - sc:description """Resampling of Ensembles by Variation Optimization. - -Conventional molecular dynamics simulations are incapable of sampling many important interactions in biomolecular systems due to their high dimensionality and rough energy landscapes. To observe rare events and calculate transition rates in these systems, enhanced sampling is a necessity. In particular, the study of ligand-protein interactions necessitates a diverse ensemble of protein conformations and transition states, and for many systems this occurs on prohibitively long timescales. Previous strategies such as WExplore that can be used to determine these types of ensembles are hindered by problems related to the regioning of conformational space. Here we propose a novel, regionless, enhanced sampling method that is based on the weighted ensemble framework. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'trypsin-benzamidine', 'regionless'""" ; - sc:featureList edam:operation_2476 ; - sc:name "REVO" ; - sc:url "https://doi.org/10.26434/CHEMRXIV.7973759.V3" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, edam:topic_0736 ; @@ -62847,7 +50434,7 @@ Conventional molecular dynamics simulations are incapable of sampling many impor sc:url "https://github.com/clarewest/RFQAmodel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3295, edam:topic_3518 ; @@ -62862,7 +50449,7 @@ Conventional molecular dynamics simulations are incapable of sampling many impor sc:url "https://github.com/mwsill/RFpurify" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -62882,7 +50469,7 @@ Conventional molecular dynamics simulations are incapable of sampling many impor biotools:primaryContact "Qiang Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, edam:topic_0625, @@ -62900,7 +50487,7 @@ Conventional molecular dynamics simulations are incapable of sampling many impor sc:url "http://github.com/hugorody/rga" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, edam:topic_0654, @@ -62919,7 +50506,7 @@ Genome rearrangements are the evolutionary events on level of genomes. It is a g sc:url "https://github.com/wangjuanimu/data-of-genome-rearrangement" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, edam:topic_2640, @@ -62939,7 +50526,7 @@ Hippo signaling pathway is a highly conserved pathway, which is consisted of a g sc:url "http://www.medsysbio.org/RHPCG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0780, edam:topic_3474 ; @@ -62954,7 +50541,7 @@ Rice blast is the most serious disease of cultivated rice. It is caused by the f sc:url "http://multisite.iris.cat/riceguard/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3316, edam:topic_3517 ; @@ -62967,7 +50554,7 @@ Rice blast is the most serious disease of cultivated rice. It is caused by the f sc:url "https://sites.google.com/a/broadinstitute.org/RICOPILI/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3444, @@ -62988,7 +50575,7 @@ Rice blast is the most serious disease of cultivated rice. It is caused by the f sc:url "https://gitlab.com/Philbrick/rilcontour" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, @@ -63010,7 +50597,7 @@ Rice blast is the most serious disease of cultivated rice. It is caused by the f biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3308, @@ -63030,7 +50617,7 @@ Rice blast is the most serious disease of cultivated rice. It is caused by the f biotools:primaryContact "Matthew L. Jenior" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0749, edam:topic_3794 ; @@ -63045,7 +50632,7 @@ Rice blast is the most serious disease of cultivated rice. It is caused by the f sc:url "http://theripper.hawk.rocks" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -63063,7 +50650,7 @@ Rice blast is the most serious disease of cultivated rice. It is caused by the f "Jinhui Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0218, @@ -63082,7 +50669,7 @@ Rice blast is the most serious disease of cultivated rice. It is caused by the f biotools:primaryContact "Wang Dong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -63107,7 +50694,7 @@ Rice blast is the most serious disease of cultivated rice. It is caused by the f biotools:primaryContact "Jian-Hua Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, edam:topic_3474 ; @@ -63122,20 +50709,8 @@ Rice blast is the most serious disease of cultivated rice. It is caused by the f sc:name "RMKL" ; sc:url "https://CRAN.R-project.org/package=RMKL" . - a sc:SoftwareApplication ; - sc:citation , - "pmcid:PMC6832378", - "pubmed:31658686" ; - sc:description """Reliable Wireless Network for a Multiarea TDOA-Based Localization System. - -Ultrawideband (UWB) wireless communication is a promising spread-spectrum technology for accurate localization among devices characterized by a low transmission power, a high rate and immunity to multipath propagation. The accurately of the clock synchronization algorithm and the time-difference-of-arrival (TDOA) localization algorithm provide precise position information of mobile nodes with centimeter-level accuracy for the UWB localization system. However, the reliability of target node localization for multi-area localization remains a subject of research. Especially for dynamic and harsh indoor environments, an effective scheme among competing target nodes for localization due to the scarcity of radio resources remains a challenge. - -||| HOMEPAGE MISSING!""" ; - sc:name "RMLNet" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31658686" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -63156,7 +50731,7 @@ Ultrawideband (UWB) wireless communication is a promising spread-spectrum techno sc:url "https://github.com/csclab/RMut" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0203, edam:topic_0634, @@ -63172,29 +50747,8 @@ Abstract Correct communication between immune cells and peripheral neurons is cr sc:name "RNA-seq" ; sc:url "http://rna-seq-browser.herokuapp.com/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_0769, - edam:topic_3170, - edam:topic_3308, - edam:topic_3320 ; - sc:citation , - "pmcid:PMC6861419", - "pubmed:31781178" ; - sc:description """RNA-Seq Perspectives to Improve Clinical Diagnosis. - -This is the ENCODE-DCC RNA-sequencing pipeline. The scope of the pipeline is to align reads, generate signal tracks, and quantify genes and isoforms. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'splicing', '10-35', 'diagnosis', 'profound'""" ; - sc:featureList edam:operation_3563, - edam:operation_3565, - edam:operation_3891 ; - sc:license "MIT" ; - sc:name "RNA-seq_autogenerated" ; - sc:url "https://github.com/ENCODE-DCC/rna-seq-pipeline" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3170, edam:topic_3474 ; @@ -63216,7 +50770,7 @@ RNAIndel calls coding indels from tumor RNA-Seq data and classifies them as soma sc:url "https://github.com/stjude/RNAIndel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -63237,30 +50791,8 @@ RNAIndel calls coding indels from tumor RNA-Seq data and classifies them as soma sc:url "https://github.com/yannponty/RNARedPrint" ; biotools:primaryContact "Yann Ponty" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_0769, - edam:topic_3170, - edam:topic_3308, - edam:topic_3512 ; - sc:citation , - "pubmed:31796413" ; - sc:description """an R package for automated two-group RNA-Seq analysis workflow. - -This R package is designed for case-control RNA-Seq analysis (two-group). There are six steps: "RNASeqRParam S4 Object Creation", "Environment Setup", "Quality Assessment", "Reads Alignment & Quantification", "Gene-level Differential Analyses" and "Functional Analyses". Each step corresponds to a function in this package. After running functions in order, a basic RNASeq analysis would be done easily. - -||| NAME (RNASeqR) SIMILAR TO (PUB. DIFFERENT) bio.tools/rnaseqr (RNASEQR)""" ; - sc:featureList edam:operation_2939, - edam:operation_3185, - edam:operation_3680, - edam:operation_3800, - edam:operation_3891 ; - sc:license "Artistic-2.0" ; - sc:name "RNASeqR_autogenerated" ; - sc:url "https://bioconductor.org/packages/release/bioc/html/RNASeqR.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_2885, @@ -63287,7 +50819,7 @@ git clone https://github.com/nicokist/RNASeq_similarity_matrix""" ; sc:url "http://www.github.com/nicokist/RNASeq_similarity_matrix" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3474, edam:topic_3512 ; @@ -63302,31 +50834,8 @@ git clone https://github.com/nicokist/RNASeq_similarity_matrix""" ; sc:name "RNATracker" ; sc:url "https://www.github.com/HarveyYan/RNATracker" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0099, - edam:topic_0821, - edam:topic_2885, - edam:topic_3170, - edam:topic_3308 ; - sc:citation , - "pubmed:31636457" ; - sc:description """Genome-wide quantification of ADAR adenosine-to-inosine RNA editing activity. - -A tool for the calculation of RNA-editing index for RNA seq data. - -The installation creates a file named ResourcesPaths.ini at /src/RNAEditingIndex/Configs (set with configure.sh) which specifies the default path to the required programs and data files (such as genomes and tables). Modify this file after installtion to change defaults (such as in the case of not downloading the data files). - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/rna. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'AEI'""" ; - sc:featureList edam:operation_3096, - edam:operation_3211, - edam:operation_3799 ; - sc:name "RNA_autogenerated" ; - sc:url "https://github.com/a2iEditing/RNAEditingIndexer" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0659, edam:topic_0749, @@ -63346,26 +50855,22 @@ RNAactDrug is a comprehensive resource for querying associations between drug se a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2725" ; - sc:name "Ensembl transcript ID" ; - sc:sameAs "http://edamontology.org/data_2725" ], + sc:additionalType "http://edamontology.org/data_2725" ; + sc:name "Ensembl transcript ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ] ; + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0128, @@ -63386,7 +50891,7 @@ with supporting experimental data, enabling a global view of the protein–RNA i biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0099 ; @@ -63400,7 +50905,7 @@ with supporting experimental data, enabling a global view of the protein–RNA i sc:url "https://github.com/beskidmore/RNAdemocracy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, edam:topic_0632, @@ -63420,7 +50925,7 @@ Timeline of HTS-associated RNA structure probing methods""" ; sc:url "http://www.zhounan.org/rnadt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0659, @@ -63441,33 +50946,8 @@ This project has been written in mainly Rust, a systems programming language.""" sc:name "RNAfamProb Plus NeoFold" ; sc:url "https://github.com/heartsh/rnafamprob" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0082, - edam:topic_0097, - edam:topic_0659, - edam:topic_3372 ; - sc:citation ; - sc:description """Estimations of Posterior Probabilities on RNA Structural Alignment and RNA Secondary Structures with Incorporating Homologous-RNA Sequences. - -RNAfamProb Program, Program for Estimations of Posterior Probabilities on RNA Structural alignment. - -NeoFold Program, Program for Maximum-expected-accuracy Estimations of RNA Secondary Structures with Incorporating Homologous-RNA sequences. - -This project provides the RNAfamProb program, a program for estimations of posterior probabilities on RNA structural alignment. - -This project provides the NeoFold Program, a program for the maximum-expected-accuracy estimations of RNA secondary structures with incorporating homologous-RNA sequences. - -This project has been written in mainly Rust, a systems programming language. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'RNAfamProb', 'NeoFold'""" ; - sc:featureList edam:operation_0278, - edam:operation_0295, - edam:operation_0502 ; - sc:name "RNAfamProb Plus NeoFold" ; - sc:url "https://github.com/heartsh/rnafamprob" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, edam:topic_3308 ; @@ -63486,14 +50966,14 @@ A webserver for RNA 5-methylcytosine sites prediction. RNAm5CPred was developed a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1254" ; - sc:name "Sequence property" ; - sc:sameAs "http://edamontology.org/data_1254" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1254" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -63515,7 +50995,7 @@ A webserver for RNA 5-methylcytosine sites prediction. RNAm5CPred was developed sc:url "https://rnasamba.lge.ibi.unicamp.br/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0820, edam:topic_3474 ; @@ -63529,7 +51009,7 @@ A webserver for RNA 5-methylcytosine sites prediction. RNAm5CPred was developed sc:url "https://github.com/YellowcardD/RNN-for-membrane-protein-types-prediction" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3421 ; sc:citation , @@ -63539,18 +51019,8 @@ A webserver for RNA 5-methylcytosine sites prediction. RNAm5CPred was developed sc:name "RNSCLC-PRSP software" ; sc:url "http://www.rnsclcpps.com" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3421 ; - sc:citation , - "pmcid:PMC6708148", - "pubmed:31462928" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE BROKEN! | RNSCLC-PRSP software to predict the prognostic risk and survival in patients with resected T1-3N0-2 M0 non-small cell lung cancer | Background:The clinical outcomes of patients with resected T1-3N0-2M0 non-small cell lung cancer (NSCLC) with the same tumor-node-metastasis (TNM) stage are diverse. Although other prognostic factors and prognostic prediction tools have been reported in many published studies, a convenient, accurate and specific prognostic prediction software for clinicians has not been developed. The purpose of our research was to develop this type of software that can analyze subdivided T and N staging and additional factors to predict prognostic risk and the corresponding mean and median survival time and 1-5-year survival rates of patients with resected T1-3N0-2M0 NSCLC. Results:Using a Cox proportional hazard regression model, we determined the independent prognostic factors and obtained a prognostic index (PI) eq" ; - sc:name "RNSCLC-PRSP software" ; - sc:url "http://www.rnsclcpps.com" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3173 ; @@ -63570,7 +51040,7 @@ A webserver for RNA 5-methylcytosine sites prediction. RNAm5CPred was developed biotools:primaryContact "Jin Wook Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3855 ; sc:citation , @@ -63582,7 +51052,7 @@ A webserver for RNA 5-methylcytosine sites prediction. RNAm5CPred was developed sc:url "http://robokop.renci.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3382 ; sc:citation , @@ -63593,7 +51063,7 @@ A webserver for RNA 5-methylcytosine sites prediction. RNAm5CPred was developed sc:url "http://robokopkg.renci.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0769, edam:topic_3372 ; @@ -63609,7 +51079,7 @@ A webserver for RNA 5-methylcytosine sites prediction. RNAm5CPred was developed sc:url "http://robot.obolibrary.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -63619,7 +51089,7 @@ A webserver for RNA 5-methylcytosine sites prediction. RNAm5CPred was developed sc:url "http://grenaud.github.io/ROHan/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0153, edam:topic_3172, @@ -63639,7 +51109,7 @@ A webserver for RNA 5-methylcytosine sites prediction. RNAm5CPred was developed biotools:primaryContact "Romà Tauler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0621, edam:topic_3063, @@ -63667,7 +51137,7 @@ Benjamin S. Glicksberg 9/14/2018""" ; sc:url "http://romop.ucsf.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0625, edam:topic_3293 ; @@ -63680,7 +51150,7 @@ Benjamin S. Glicksberg 9/14/2018""" ; sc:url "https://github.com/hmorlon/PANDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0634, @@ -63698,7 +51168,7 @@ Benjamin S. Glicksberg 9/14/2018""" ; sc:url "https://compgen.bio.ub.edu/RPGeNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0602, @@ -63720,7 +51190,7 @@ Benjamin S. Glicksberg 9/14/2018""" ; biotools:primaryContact "C. Peng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3068 ; sc:citation , "pubmed:31648100" ; @@ -63733,7 +51203,7 @@ BACKGROUND AND OBJECTIVES:Heart rate variability (HRV) has increasingly been lin sc:url "https://gitlab.com/MegMcC/rr-apet-hrv-analysis-software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3295, @@ -63753,7 +51223,7 @@ BACKGROUND AND OBJECTIVES:Heart rate variability (HRV) has increasingly been lin biotools:primaryContact "Xiwei Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0154, @@ -63773,7 +51243,7 @@ BACKGROUND AND OBJECTIVES:Heart rate variability (HRV) has increasingly been lin biotools:primaryContact "Conrad C. Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0108, @@ -63795,7 +51265,7 @@ BACKGROUND AND OBJECTIVES:Heart rate variability (HRV) has increasingly been lin biotools:primaryContact "S. Dunin-Horkawicz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0625, edam:topic_3500 ; @@ -63813,14 +51283,14 @@ The goal of RRphylo is to compute phenotypic evolutionary rates, estimate ancest a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -63850,14 +51320,14 @@ The goal of RRphylo is to compute phenotypic evolutionary rates, estimate ancest a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ] ; + sc:additionalType "http://edamontology.org/data_2295" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API", "Web application", @@ -63876,7 +51346,7 @@ The goal of RRphylo is to compute phenotypic evolutionary rates, estimate ancest biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0749, @@ -63899,14 +51369,14 @@ The goal of RRphylo is to compute phenotypic evolutionary rates, estimate ancest a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -63934,35 +51404,8 @@ The goal of RRphylo is to compute phenotypic evolutionary rates, estimate ancest sc:url "http://teaching.rsat.eu/dyad-analysis_form.cgi" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0749, - edam:topic_2885, - edam:topic_3500, - edam:topic_3517 ; - sc:citation , - "pmcid:PMC6906655", - "pubmed:31871587" ; - sc:description """An accessible and flexible framework to predict the impact of regulatory variants on transcription factor binding. - -Regulatory Sequence Analysis Tools. - -This web site provides a series of modular computer programs specifically designed for the detection of regulatory signals in non-coding sequences. - -RSAT servers have been up and running since 1997. The project was initiated by Jacques van Helden, and is now pursued by the RSAT team. - -maintained by TAGC - Université Aix Marseilles, France. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'RSAT' (bio.tools/rsat), 'RSAT accessible through', 'Regulatory Sequence Analysis Tools'""" ; - sc:featureList edam:operation_0445, - edam:operation_0487, - edam:operation_3196, - edam:operation_3226 ; - sc:name "RSAT variation-tools" ; - sc:url "http://rsat.eu" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -63984,7 +51427,7 @@ maintained by TAGC - Université Aix Marseilles, France. biotools:primaryContact "Hu Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3047, edam:topic_3382 ; @@ -63999,7 +51442,7 @@ maintained by TAGC - Université Aix Marseilles, France. sc:url "https://github.com/JeremyPike/RSMLM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3360, edam:topic_3512 ; @@ -64014,32 +51457,8 @@ maintained by TAGC - Université Aix Marseilles, France. sc:name "RSQLite" ; sc:url "http://CRAN.R-project.org/package=RSQLite" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_0780, - edam:topic_2885, - edam:topic_3168 ; - sc:citation , - "pubmed:31872320" ; - sc:description """Rice Stress-Resistant SNP Database. - -Rice Stress Resistant SNP Database. - -Rice (Oryza sativa L.) yield is limited inherently by environmental stresses, including biotic and abiotic stresses. Thus, it is of great importance to perform in-depth explorations on the genes that are closely associated with the stress-resistant traits in rice. The Rice Stress-Resistant SNP Database incorporates the phenotype information of 400 rice varieties and the function and genome annotation of about 9.5 million stress-resistant SNPs detected from these stress-resistant rice varieties. - -400 Biotic and abiotic stress resistant varieties. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Rice Stress-Resistant', 'RESULTS:Rice Stress-Resistant', 'CONCLUSION:RSRS', 'Rice Stress-Resistant SNP'""" ; - sc:featureList edam:operation_0484, - edam:operation_0487, - edam:operation_2421, - edam:operation_3196, - edam:operation_3661 ; - sc:name "RSRS" ; - sc:url "http://bioinformatics.fafu.edu.cn/RSRS" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, edam:topic_3173 ; @@ -64054,7 +51473,7 @@ Rice (Oryza sativa L.) yield is limited inherently by environmental stresses, in sc:url "https://github.com/sebkim/RTNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, edam:topic_0749, @@ -64068,7 +51487,7 @@ Rice (Oryza sativa L.) yield is limited inherently by environmental stresses, in sc:url "https://github.com/jandrewrfarrell/RUFUS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3512, @@ -64091,32 +51510,8 @@ Rice (Oryza sativa L.) yield is limited inherently by environmental stresses, in biotools:primaryContact , "Johann Gagnon-Bartsch" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0202, - edam:topic_2840, - edam:topic_3305, - edam:topic_3378, - edam:topic_3379 ; - sc:citation , - "pmcid:PMC6879703", - "pubmed:31741199" ; - sc:description """An Interactive Visual Tool to Support a Real-World Evidence Study Design. - -This flow diagram is a tool to aid initial planning for and design of an RWE study. - -Define Objectives and Endpoint(s). - -Welcome to the RWE Framework, a tool developed to aid the planning and design of real-world evidence (RWE) studies. Once completed, results will be summarised to support next steps in the study design development. To start, please tick the appropriate box below:. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'RWE'""" ; - sc:featureList edam:operation_0305, - edam:operation_0337, - edam:operation_2428 ; - sc:name "RWE Framework" ; - sc:url "https://rweframework.com/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_2258, @@ -64131,7 +51526,7 @@ Welcome to the RWE Framework, a tool developed to aid the planning and design of sc:url "https://rxn.res.ibm.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0625, @@ -64155,7 +51550,7 @@ Welcome to the RWE Framework, a tool developed to aid the planning and design of biotools:primaryContact "Karl Broman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0780, edam:topic_2229, @@ -64185,7 +51580,7 @@ RaGOO is a tool for coalescing genome assembly contigs into pseudochromosomes vi sc:url "https://github.com/malonge/RaGOO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, edam:topic_0769, @@ -64200,7 +51595,7 @@ RaGOO is a tool for coalescing genome assembly contigs into pseudochromosomes vi sc:url "https://ranaseq.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0780, edam:topic_3673 ; @@ -64216,7 +51611,7 @@ RaGOO is a tool for coalescing genome assembly contigs into pseudochromosomes vi sc:url "https://github.com/isovic/racon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0196, @@ -64235,7 +51630,7 @@ RaGOO is a tool for coalescing genome assembly contigs into pseudochromosomes vi biotools:primaryContact "Inge Seim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3474, edam:topic_3510 ; @@ -64251,10 +51646,9 @@ RaGOO is a tool for coalescing genome assembly contigs into pseudochromosomes vi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2269, @@ -64278,7 +51672,7 @@ RainBio uses the same file format that InteractiVenn. Several demo datasets are biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -64296,7 +51690,7 @@ RainBio uses the same file format that InteractiVenn. Several demo datasets are biotools:primaryContact "Thoralf Töpel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3277, edam:topic_3360, edam:topic_3422 ; @@ -64310,7 +51704,7 @@ RainBio uses the same file format that InteractiVenn. Several demo datasets are sc:url "https://github.com/SengerLab/RametrixLITEToolbox" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0780, edam:topic_2269 ; @@ -64332,30 +51726,18 @@ If you use the package, please cite it:""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Mass spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3835" ; + sc:name "Mass spectrum" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3955 ; @@ -64370,26 +51752,8 @@ If you use the package, please cite it:""" ; sc:softwareVersion "0.0.1.0" ; sc:url "https://github.com/seliv55/ramidcor" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0610, - edam:topic_3390 ; - sc:citation ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Wetlands', 'Sambhar Lake', 'Sambhar Lake habitat suitability migratory', 'Sambhar' | A Maxent modelling with a geospatial approach for the Habitat suitability of Flamingos in an Evanescing Ramsar site (Sambhar Lake, India) over the changing climatic scenarios | ENVIS Centre on Wildlife & Protected Areas | Hosted by Wildlife Institute of India, Dehradun | Sponsored by Ministry of Environment, Forests & Climate Change, Govt of India | The Ramsar Convention is an international treaty for the conservation and sustainable utilization of wetlands, recognizing the fundamental ecological functions of wetlands and their economic, cultural, scientific, and recreational value. Click to know more on Ramsar sites in India | (Photo: Sangeeta Angom, Loktak Lake, Manipur)" ; - sc:featureList edam:operation_3435 ; - sc:name "Ramsar" ; - sc:url "http://wiienvis.nic.in/Database/ramsar_wetland_sites_8224.aspx" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602 ; - sc:citation , - "pmcid:PMC6646741", - "pubmed:31367669" ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'Rangatiratanga Maori self-determination Whanau', 'Tino Rangatiratanga Maori self-determination Whanau', 'Maori homelessness', 'Maori self-determination Whanau Ora' | A principles framework for taking action on Māori/Indigenous Homelessness in Aotearoa/New Zealand | Objective:The objective of this research was to develop a principles framework to guide action on Māori Indigenous homelessness in Aotearoa incorporating Rangatiratanga (Māori self-determination), Whānau Ora (Government policy that places Māori families at the center of funding, policy and services) and Housing First" ; - sc:name "Rangatiratanga Maori self-determination Whanau Ora" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31367669" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, edam:topic_2830, @@ -64412,7 +51776,7 @@ RankerGUI automates the analysis of complex gene expression signatures. The Pipe sc:url "http://watson.na.icar.cnr.it/rankergui/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_2269, edam:topic_3298 ; @@ -64435,15 +51799,8 @@ If, later on, you need to adjust leaf area values, you need to provide a datafra sc:name "RapidACi" ; sc:url "https://github.com/ManuelLamothe/RapidACi" . - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31403406" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'NAM' (bio.tools/nam), 'CONCLUSION:The', 'maxillae', 'presurgical' | Algorithm for the semi-automated generation of nasoalveolar molding device designs for the presurgical treatment of bilateral cleft lip and palate | OBJECTIVE:Nasoalveolar molding (NAM) is an accepted presurgical treatment modality for newborns with cleft lip and palate (CLP). However, the therapy is time-consuming and requires high expertise. To facilitate the treatment, we reveal an algorithm for the automated generation of patient individual NAM devices for neonates with bilateral cleft lip and palate (BCLP) and present results of software validation. METHODS:The algorithm was implemented utilizing Python 2.7 and Blender 2.78a based on 17 digitized (3D-scanning) impressions of maxillae with BCLP" ; - sc:name "RapidNAM" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31403406" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0128, edam:topic_2275, @@ -64459,7 +51816,7 @@ If, later on, you need to adjust leaf area values, you need to provide a datafra sc:url "http://raptorx.uchicago.edu/ComplexContact/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, edam:topic_2885, @@ -64479,43 +51836,23 @@ RareLSD: A Database for Human Lysosomal Enzymes. RareLSD is a manually curated d sc:name "RareLSD" ; sc:url "https://webs.iiitd.edu.in/raghava/rarelsd/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_3304, - edam:topic_3421 ; - sc:citation ; - sc:description """A self-targeting printable brain implant system. - -Abstract There has not been a major change in how neuroscientists approach stereotaxic methods in decades. Here we present a new stereotaxic method that improves on traditional approaches by reducing costs, training, surgical time, and aiding repeatability. The RatHat brain implantation system is a 3D printable stereotaxic device for rats that is fabricated prior to surgery and fits to the shape of the skull. RatHat builds are directly implanted into the brain without the need for head-leveling or coordinate-mapping during surgery. The RatHat system can be used in conjunction with the traditional u-frame stereotaxic device, but does not require the use of a micromanipulator for successful implantations. Each RatHat system contains several primary components including the implant for mounting intracranial components, the surgical stencil for targeting drill sites, and the protective cap for impacts and debris. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0310, - edam:operation_3891 ; - sc:name "RatHat" ; - sc:url "https://doi.org/10.1101/868422" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -64538,7 +51875,7 @@ Abstract There has not been a major change in how neuroscientists approach stere sc:url "http://ratmine.mcw.edu/ratmine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , @@ -64555,17 +51892,8 @@ Abstract There has not been a major change in how neuroscientists approach stere sc:url "https://github.com/ratcave/ratcave" ; biotools:primaryContact "Del Grosso NA" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0176 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'Pd2L4', 'cgbind', 'metallocages', 'proficiencies' | Rationalizing the “Diels-Alderase” Activity of Pd2L4 Self-Assembled Metallocages | Self-assembled cages have emerged as novel platforms to explore bio-inspired catalysis. While many different size and shape supramolecular structures are now readily accessible, only a few are proficient catalysts. Here we show that a simple and efficient DFT-based methodology i is sufficient to accurately reproduce experimental binding affinities (MAD = 1.9 kcal mol-1) and identify the catalytic and non-catalytic Diels-Alder proficiencies (>90 % accuracy) of two homologous Pd2L4 metallocages with a variety of substrates. We demonstrate how subtle structural differences in the cage framework affect binding and catalysis, highlighting the critical role of structural dynamics and flexibility on catalytic activity" ; - sc:featureList edam:operation_2476, - edam:operation_3216 ; - sc:name "Rationalizing Diels-Alderase Activity Pd2L4 Self-Assembled Metallocages" ; - sc:url "https://doi.org/10.26434/CHEMRXIV.9576644.V1" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -64586,7 +51914,7 @@ Abstract There has not been a major change in how neuroscientists approach stere biotools:primaryContact "Hervé Perdry" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0769, edam:topic_3293 ; @@ -64597,7 +51925,7 @@ Abstract There has not been a major change in how neuroscientists approach stere sc:url "http://antonellilab.github.io/raxmlGUI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, edam:topic_3168, @@ -64622,7 +51950,7 @@ Rbbt wrapper for the Variant Effect Predictor. Auto-downloads and installs the s sc:url "https://github.com/Rbbt-Workflows" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3421, edam:topic_3520 ; @@ -64634,7 +51962,7 @@ Rbbt wrapper for the Variant Effect Predictor. Auto-downloads and installs the s sc:url "https://github.com/BioHPC/Rchimerism" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3512, @@ -64655,7 +51983,7 @@ Rbbt wrapper for the Variant Effect Predictor. Auto-downloads and installs the s sc:url "http://licpathway.net:8080/ReCirc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3172, edam:topic_3520 ; @@ -64670,7 +51998,7 @@ Rbbt wrapper for the Variant Effect Predictor. Auto-downloads and installs the s sc:url "https://redu.ucsd.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697, edam:topic_3837 ; @@ -64683,7 +52011,7 @@ Rbbt wrapper for the Variant Effect Predictor. Auto-downloads and installs the s sc:url "https://web.rniapps.net/iVikodak/refdash/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, @@ -64706,7 +52034,7 @@ Rbbt wrapper for the Variant Effect Predictor. Auto-downloads and installs the s biotools:primaryContact "Tanner Robison" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0218, @@ -64729,7 +52057,7 @@ Rbbt wrapper for the Variant Effect Predictor. Auto-downloads and installs the s biotools:primaryContact "Canglin Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0780, edam:topic_3169, @@ -64747,32 +52075,8 @@ Examples: FOXA1, MCF-7, ENCSR440VKE, GSE41820, Col-0_seedling, WRKY33 Advanced s sc:name "ReMap" ; sc:url "http://remap.univ-amu.fr" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_0780, - edam:topic_3169, - edam:topic_3295, - edam:topic_3512 ; - sc:citation , - "pubmed:31665499" ; - sc:description """a database of regulatory regions from an integrative analysis of Human and Arabidopsis DNA-binding sequencing experiments. - -Examples: FOXA1, MCF-7, ENCSR440VKE, GSE41820, Col-0_seedling, WRKY33 Advanced search. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/inserm-remap. - -||| NAME (ReMap) SIMILAR TO (PUB. DIFFERENT) bio.tools/remap (remap). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ReMap 2020'""" ; - sc:featureList edam:operation_2421, - edam:operation_3192, - edam:operation_3208, - edam:operation_3222 ; - sc:name "ReMap_autogenerated" ; - sc:url "http://remap.univ-amu.fr" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0204, edam:topic_0602 ; @@ -64785,7 +52089,7 @@ Examples: FOXA1, MCF-7, ENCSR440VKE, GSE41820, Col-0_seedling, WRKY33 Advanced s sc:url "https://github.com/utrillalab/repromin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, edam:topic_0625, @@ -64803,7 +52107,7 @@ This toolkit contains the required scripts to transform sequencing files into Re sc:url "https://github.com/HorvathLab/ReQTL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -64820,7 +52124,7 @@ This toolkit contains the required scripts to transform sequencing files into Re sc:url "https://github.com/dmis-lab/ReSimNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0121, edam:topic_0160, @@ -64839,7 +52143,7 @@ BACKGROUND:Reverse vaccinology accelerates the discovery of potential vaccine ca sc:url "https://github.com/admelloGithub/ReVac-package" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0602, @@ -64861,17 +52165,8 @@ BACKGROUND:Reverse vaccinology accelerates the discovery of potential vaccine ca sc:url "https://readdy.github.io/" ; biotools:primaryContact "ReaDDy" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3474 ; - sc:citation , - "pmcid:PMC6703080", - "pubmed:31474846" ; - sc:description "> HOMEPAGE MISSING! | 3D-Printed Human-Like Robotic Arm as a Testbed for Human-Robot Control Strategies | To this day, despite the increasing motor capability of robotic devices, elaborating efficient control strategies is still a key challenge in the field of humanoid robotic arms. In particular, providing a human \"pilot\" with efficient ways to drive such a robotic arm requires thorough testing prior to integration into a finished system. Additionally, when it is needed to preserve anatomical consistency between pilot and robot, such testing requires to employ devices showing human-like features. To fulfill this need for a biomimetic test platform, we present Reachy, a human-like life-scale robotic arm with seven joints from shoulder to wrist. Although Reachy does not include a poly-articulated hand and is therefore more suitable for studying reaching than manipulation, a robotic hand prototype from available third-party projects could be integrated to it" ; - sc:name "Reachy" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31474846" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0602, @@ -64893,7 +52188,7 @@ BACKGROUND:Reverse vaccinology accelerates the discovery of potential vaccine ca "Tae Yong Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0121, edam:topic_0194, @@ -64914,7 +52209,7 @@ Read-SpaM. Test runs on simulated reads from bacterial genomes show that our app sc:url "https://github.com/burkhard-morgenstern/Read-SpaM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3300, edam:topic_3390, @@ -64931,14 +52226,14 @@ Read-SpaM. Test runs on simulated reads from bacterial genomes show that our app sc:url "https://github.com/ijmiller2/RealTimeUrineMetabolomics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Tool for preparing 3D models of biochemical structures for augmented and virtual reality." ; sc:name "RealityConvert" ; sc:url "http://www.realityconvert.com/" ; biotools:primaryContact "Denis Fourches" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697, @@ -64961,7 +52256,7 @@ Read-SpaM. Test runs on simulated reads from bacterial genomes show that our app biotools:primaryContact "Jose Manuel Martí" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091, @@ -64983,29 +52278,8 @@ Read-SpaM. Test runs on simulated reads from bacterial genomes show that our app sc:url "https://www.protocols.io/view/reciprocal-best-hit-blast-q3rdym6" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3077, - edam:topic_3384, - edam:topic_3444 ; - sc:citation , - "pubmed:31461412" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | a low-latency raw data streaming interface for real-time MRI-guided radiotherapy | With the recent advent of hybrid MRI-guided radiotherapy systems, continuous intra-fraction MR imaging for motion monitoring has become feasible. The ability to perform real-time custom image reconstructions is however often lacking. In this work we present a low-latency streaming solution, ReconSocket, which provides a real-time stream of k-space data from the magnetic resonance imaging (MRI) to custom reconstruction servers. We determined the performance of the data streaming by measuring the streaming latency (i.e. non-zero time delay due to data transfer and processing) and jitter (i.e. deviations from periodicity) using an ultra-fast 1D MRI acquisition of a moving phantom. Simultaneously, its position was recorded with near-zero time delay" ; - sc:featureList edam:operation_3629 ; - sc:name "ReconSocket" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31461412" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3318, - edam:topic_3421, - edam:topic_3855 ; - sc:citation , - "pubmed:31403423" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'keyboards VR', 'keyboards', 'VR', 'physical keyboards VR' | Reconfiguring Physical Keyboards in Virtual Reality | Physical keyboards are common peripherals for personal computers and are efficient standard text entry devices. Recent research has investigated how physical keyboards can be used in immersive head-mounted display-based Virtual Reality (VR). So far, the physical layout of keyboards has typically been transplanted into VR for replicating typing experiences in a standard desktop environment. In this paper, we explore how to fully leverage the immersiveness of VR to change the input and output characteristics of physical keyboard interaction within a VR environment. This allows individual physical keys to be reconfigured to the same or different actions and visual output to be distributed in various ways across the VR representation of the keyboard" ; - sc:name "ReconViguRation" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31403423" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_3293 ; @@ -65021,7 +52295,7 @@ Read-SpaM. Test runs on simulated reads from bacterial genomes show that our app sc:url "https://github.com/oschwengers/referenceseeker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3305, @@ -65041,7 +52315,7 @@ Read-SpaM. Test runs on simulated reads from bacterial genomes show that our app sc:url "https://github.com/Abyss-bai/reference-panel-reconstruction" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API", "Web service" ; @@ -65057,7 +52331,7 @@ Read-SpaM. Test runs on simulated reads from bacterial genomes show that our app sc:url "http://refgenie.databio.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, edam:topic_3855 ; @@ -65073,36 +52347,7 @@ Read-SpaM. Test runs on simulated reads from bacterial genomes show that our app sc:url "https://github.com/Murali-group/RegLinker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:applicationSubCategory edam:topic_0166, - edam:topic_0634, - edam:topic_2885, - edam:topic_3320, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6883696", - "pubmed:31779641" ; - sc:description """a computational framework for predicting pathogenic impact of intronic single nucleotide variants. - -Predict disease-causing probability of human intronic SNVs. - -regSNP-intron is a tool which predicts disease-causing probability of human intronic single nucleotide variants (iSNVs). - -regsnp-intron predicts the disease-causing probability of intronic single nucleotide variants (iSNVs) based on both genomic and protein structural features. - -ANNOVAR (>= 2016Feb01): Follow the instructions at http://annovar.openbioinformatics.org/en/latest to install, and prepare Ensembl gene annotation. - -Or paste input here (use example). - -Or upload a file size limit: 10K rows""" ; - sc:featureList edam:operation_0417, - edam:operation_2499, - edam:operation_3461 ; - sc:license "MIT" ; - sc:name "RegSNPs-intron" ; - sc:url "https://regsnps-intron.ccbb.iupui.edu" . - - a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0634, edam:topic_2885, @@ -65132,7 +52377,7 @@ Or upload a file size limit: 10K rows""" ; sc:url "https://regsnps-intron.ccbb.iupui.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3172, @@ -65153,7 +52398,7 @@ Or upload a file size limit: 10K rows""" ; biotools:primaryContact "T. Haller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3325 ; sc:citation , @@ -65168,28 +52413,8 @@ Phenotypic data can be used to focus on likely disease genes.""" ; "Windows" ; sc:url "https://www.regulationspotter.org/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_3174, - edam:topic_3697 ; - sc:citation , - "pubmed:31704678" ; - sc:description """Welcome to the website for the mothur project, initiated by Dr. - -We will be offering an R workshop December 18-20, 2019. - -Subscribe to the mothur mailing list. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/Mothur (MOTHUR.ORG ; MOTHUR.ORG/wiki), bio.tools/indices_diversity (MOTHUR.ORG/wiki). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'mothur'""" ; - sc:featureList edam:operation_0337, - edam:operation_2422 ; - sc:name "Reintroducing mothur" ; - sc:url "https://www.mothur.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, edam:topic_0780, @@ -65213,7 +52438,7 @@ RelocaTE2 is an improved version of RelocaTE (Robb et al., 2013). RelocaTE2 is h sc:url "https://github.com/stajichlab/RelocaTE2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0160, edam:topic_0821, @@ -65236,7 +52461,7 @@ A hassle-free tool to predict bioremediation enzymes from metagenomic datasets"" sc:url "https://www.niot.res.in/Remedb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, edam:topic_3308, @@ -65258,7 +52483,7 @@ ReorientExpress is a program to create, test and apply models to predict the 5'- sc:url "https://github.com/comprna/reorientexpress" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0157, @@ -65278,7 +52503,7 @@ ReorientExpress is a program to create, test and apply models to predict the 5'- biotools:primaryContact "Professor K. Sekar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0621, edam:topic_0749, @@ -65291,29 +52516,8 @@ ReorientExpress is a program to create, test and apply models to predict the 5'- sc:name "RepeatFiller" ; sc:url "https://github.com/hillerlab/GenomeAlignmentTools" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0621, - edam:topic_0749, - edam:topic_0798 ; - sc:citation , - "pmcid:PMC6862929", - "pubmed:31742600" ; - sc:description """RepeatFiller newly identifies megabases of aligning repetitive sequences and improves annotations of conserved non-exonic elements. - -Index of /hillerlab/RepeatFiller/. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/RepeatFiller. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'GenomeAlignmentTools'""" ; - sc:featureList edam:operation_0491, - edam:operation_0495, - edam:operation_3182 ; - sc:name "RepeatFiller_autogenerated" ; - sc:url "https://bds.mpi-cbg.de/hillerlab/RepeatFiller/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0196, edam:topic_0621, @@ -65328,33 +52532,30 @@ Index of /hillerlab/RepeatFiller/. sc:url "https://github.com/Dfam-consortium/RepeatModeler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation , + "pubmed:15961478" ; sc:description "RepeatScout is a tool to discover repetitive substrings in DNA." ; sc:name "RepeatScout" ; sc:url "http://bix.ucsd.edu/repeatscout/" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -65378,7 +52579,7 @@ Index of /hillerlab/RepeatFiller/. sc:url "http://urgi.versailles.inra.fr/repetdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; sc:citation , @@ -65390,7 +52591,7 @@ Index of /hillerlab/RepeatFiller/. sc:url "https://mmcheng.net/res2net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, edam:topic_3053 ; @@ -65405,7 +52606,7 @@ Management of biological invasions and conservation activity in the fight agains sc:url "https://github.com/takfung/ResDisMapper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0602, @@ -65426,7 +52627,7 @@ Management of biological invasions and conservation activity in the fight agains biotools:primaryContact "Yang Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0736, edam:topic_3538 ; @@ -65441,7 +52642,7 @@ Management of biological invasions and conservation activity in the fight agains sc:url "https://www.rosettacommons.org/docs/latest/ResidueDisorder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, edam:topic_0081 ; @@ -65455,7 +52656,7 @@ Management of biological invasions and conservation activity in the fight agains sc:url "http://achesym.ibch.poznan.pl/restraintlib/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3398, edam:topic_3407 ; @@ -65470,17 +52671,8 @@ Management of biological invasions and conservation activity in the fight agains sc:name "RetSynth" ; sc:url "https://github.com/sandialabs/RetSynth" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3263, - edam:topic_3474 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'blockchain' | A Review of Blockchain Architecture and Consensus Protocols | A comprehensive distributed ledger cloud platform to provision blockchain networks, join other organizations, and deploy & run smart contracts to update and query the ledger. Reliably share data and conduct trusted transactions with suppliers, banks, and other trade partners through integration with existing or new cloud-based or on-premises applications | We use cookies to provide and improve our services. By using our site, you consent to cookies. Learn More | Your search did not match any results | Securely, reliably extend business processes and accelerate B2B transactions" ; - sc:name "Review Blockchain Architecture Consensus Protocols" ; - sc:url "https://cloud.oracle.com/en_US/blockchain" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, edam:topic_0749 ; @@ -65492,33 +52684,8 @@ Management of biological invasions and conservation activity in the fight agains sc:name "Rhapsody" ; sc:url "http://rhapsody.csb.pitt.edu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0152, - edam:topic_0154, - edam:topic_0593, - edam:topic_0623, - edam:topic_0749 ; - sc:citation , - "pubmed:31693302" ; - sc:description """Molecular insight into a new low-affinity xylan binding module from the xylanolytic gut symbiont Roseburia intestinalis. - -CBM1 CBM2 CBM3 CBM4 CBM5 CBM6 CBM7 CBM8 CBM9 CBM10 CBM11 CBM12 CBM13 CBM14 CBM15 CBM16 CBM17 CBM18 CBM19 CBM20 CBM21 CBM22 CBM23 CBM24 CBM25 CBM26 CBM27 CBM28 CBM29 CBM30 CBM31 CBM32 CBM33 CBM34 CBM35 CBM36 CBM37 CBM38 CBM39 CBM40 CBM41 CBM42 CBM43 CBM44 CBM45 CBM46 CBM47 CBM48 CBM49 CBM50 CBM51 CBM52 CBM53 CBM54 CBM55 CBM56 CBM57 CBM58 CBM59 CBM60 CBM61 CBM62 CBM63 CBM64 CBM65 CBM66 CBM67 CBM68 CBM69 CBM70 CBM71 CBM72 CBM73 CBM74 CBM75 CBM76 CBM77 CBM78 CBM79 CBM80 CBM81 CBM82 CBM83 CBM84 CBM85 CBM86 NC. - -Family Tax_id Organism name Protein name GenBank accession Uniprot accession PDB accession Carb_ligand EC number Known activities Mechanisms Clan Site. - -Carbohydrate-Binding Module Family 86. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/cazy (CAZY.ORG). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CBM86'""" ; - sc:featureList edam:operation_0387, - edam:operation_2575, - edam:operation_3455 ; - sc:name "RiCBM86" ; - sc:url "http://www.cazy.org/CBM86.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0196, edam:topic_0203, @@ -65533,7 +52700,7 @@ Carbohydrate-Binding Module Family 86. sc:url "https://github.com/ribosomeprofiling/riboflow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0196, edam:topic_0203, @@ -65548,7 +52715,7 @@ Carbohydrate-Binding Module Family 86. sc:url "https://ribopy.readthedocs.io/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0659, edam:topic_0769, @@ -65563,7 +52730,7 @@ Carbohydrate-Binding Module Family 86. sc:url "https://ribosomeprofiling.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0659, edam:topic_0749, @@ -65585,7 +52752,7 @@ This is package RiboVIEW for Visualization, Quality and Statistics for Ribosome sc:url "https://github.com/carinelegrand/RiboVIEW" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3474, @@ -65606,7 +52773,7 @@ This is package RiboVIEW for Visualization, Quality and Statistics for Ribosome biotools:primaryContact "Rafael Mazer Etto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0623, edam:topic_3293 ; @@ -65621,7 +52788,7 @@ This is package RiboVIEW for Visualization, Quality and Statistics for Ribosome sc:url "http://ibi.zju.edu.cn/ricerelativesgd/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -65644,7 +52811,7 @@ This is package RiboVIEW for Visualization, Quality and Statistics for Ribosome biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3321, edam:topic_3366 ; @@ -65661,20 +52828,8 @@ This is package RiboVIEW for Visualization, Quality and Statistics for Ribosome , . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0780, - edam:topic_3382, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6727496", - "pubmed:31516934" ; - sc:description "> HOMEPAGE MISSING! | A robusta coffee leaf images dataset for evaluation of machine learning based methods in plant diseases recognition | In this article we introduce a robusta coffee leaf images dataset called RoCoLe. The dataset contains 1560 leaf images with visible red mites and spots (denoting coffee leaf rust presence) for infection cases and images without such structures for healthy cases. In addition, the data set includes annotations regarding objects (leaves), state (healthy and unhealthy) and the severity of disease (leaf area with spots). Images were all obtained in real-world conditions in the same coffee plants field using a smartphone camera. RoCoLe data set facilitates the evaluation of the performance of machine learning algorithms used in image segmentation and classification problems related to plant diseases recognition. The current dataset is freely and publicly available at https: doi.org 10.17632 c5yvn32dzg. 2" ; - sc:featureList edam:operation_3553 ; - sc:name "RoCoLe" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31516934" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3172, edam:topic_3520 ; @@ -65687,7 +52842,7 @@ This is package RiboVIEW for Visualization, Quality and Statistics for Ribosome sc:url "https://github.com/mwgrassgreen/RobNorm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0736, edam:topic_0749 ; @@ -65702,16 +52857,8 @@ RocaSec is a standalone cross-platform package which features an easy-to-use GUI sc:name "RocaSec" ; sc:url "https://github.com/ahmedaq/RocaSec" . - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31437889" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | An Open Data Source About French Drugs on the Semantic Web | The W3C project, \"Linking Open Drug Data\" (LODD), linked several publicly available sources of drug data together. So far, French data, like marketed drugs and their summary of product characteristics, were not integrated and remained difficult to query. In this paper, we present Romedi (Référentiel Ouvert du Médicament), an open dataset that links French data on drugs to international resources. The principles and standard recommendations created by the W3C for sharing information were adopted. Romedi was connected to the Unified Medical Language System and DrugBank, two central resources of the LODD project. A SPARQL endpoint is available to query Romedi and services are provided to annotate textual content with Romedi terms. This paper describes its content, its services, its links to external resources, and expected future developments" ; - sc:featureList edam:operation_0224 ; - sc:name "Romedi" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31437889" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3382, edam:topic_3474 ; @@ -65722,7 +52869,7 @@ RocaSec is a standalone cross-platform package which features an easy-to-use GUI sc:url "https://bitbucket.org/tuttoweb/rotinvrbm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0780, edam:topic_3170, @@ -65740,7 +52887,7 @@ RocaSec is a standalone cross-platform package which features an easy-to-use GUI sc:url "http://www.cibiv.at/services/hsf/info" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3170, edam:topic_3308, @@ -65759,7 +52906,7 @@ This toolkit contains the required scripts to transform sequencing files into Rs sc:url "https://github.com/HorvathLab/RsQTL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -65777,52 +52924,8 @@ This toolkit contains the required scripts to transform sequencing files into Rs sc:softwareHelp ; sc:url "https://github.com/RuleWorld/RuleBuilder" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_3068, - edam:topic_3170, - edam:topic_3500, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6790497", - "pubmed:31608376" ; - sc:description """a detailed microRNA database focused on ruminant species. - -The ovine, bovine and caprine miRNA database. - -The bovine, caprine and ovine miRNA database. - -Bourdon,C., Bardou,P, Aujean,A. et al. RumimiR: a detailed microRNA database focused on ruminant species. - -If you make use of the presented data, please cite our article. - -“1” in second position means that the microRNA is not already listed in the RumimiR database (a microRNA occurring in different publications is more likely to be a true microRNA),. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/drap (SIGENAE.ORG)""" ; - sc:featureList edam:operation_0224, - edam:operation_0463, - edam:operation_3695, - edam:operation_3792 ; - sc:name "RumimiR" ; - sc:url "http://rumimir.sigenae.org/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_3306, - edam:topic_3810 ; - sc:citation ; - sc:description """Correlation of Knowledge as a Basic Element for Generating Tourism Sustainable Projects in Rural Communities. - -impactos socioterritoriales en San Juan Atzingo, México. - -El desarrollo del turismo rural en San Juan Atzingo, estado de México, ha sido impulsado por parte de diversos organismos internacionales, dependencias del Gobierno Federal, empresas del sector privado e incluso algunas organizaciones de la sociedad civil. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'tourism', 'communities', 'feeling', 'Tlahuica'""" ; - sc:name "Rural" ; - sc:url "http://revistas.javeriana.edu.co/index.php/desarrolloRural/article/view/6108" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0821, edam:topic_2258, @@ -65844,7 +52947,7 @@ El desarrollo del turismo rural en San Juan Atzingo, estado de México, ha sido "Varun Giri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168, edam:topic_3314 ; @@ -65864,7 +52967,7 @@ Spaced-context based Locality Sensitive Hashing""" ; sc:url "https://github.com/anganachakraborty/S-conLSH" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation , @@ -65881,7 +52984,7 @@ Spaced-context based Locality Sensitive Hashing""" ; sc:url "http://sate.cirad.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -65914,7 +53017,7 @@ Identification, functional annotation, and retrieval of single amino-acid varian sc:url "https://www.SAAVpedia.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0749, edam:topic_3370 ; @@ -65928,7 +53031,7 @@ Identification, functional annotation, and retrieval of single amino-acid varian sc:url "https://github.com/netzlab/SACMES.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3277 ; sc:citation ; @@ -65937,7 +53040,7 @@ Identification, functional annotation, and retrieval of single amino-acid varian sc:url "https://github.com/klocey/partitions" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3382 ; sc:citation , @@ -65947,27 +53050,8 @@ Identification, functional annotation, and retrieval of single amino-acid varian sc:name "SAIM" ; sc:url "https://github.com/mjc449/SAIMscannerV3.git" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0082, - edam:topic_0593, - edam:topic_2828, - edam:topic_3474, - edam:topic_3542 ; - sc:citation ; - sc:description """Self-Attention Augmented Inception-Inside-Inception Network Improves Protein Secondary Structure Prediction. - -Official Implementation of the paper SAINT. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/saint""" ; - sc:featureList edam:operation_0267, - edam:operation_0474, - edam:operation_2488, - edam:operation_3904 ; - sc:name "SAINT_autogenerated" ; - sc:url "https://github.com/SAINTProtein/SAINT" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_3125 ; @@ -65983,7 +53067,7 @@ Official Implementation of the paper SAINT. sc:url "https://github.com/machinegun/SALSA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3063, edam:topic_3335, @@ -66005,7 +53089,7 @@ saltclass (Short and Long Text Classifier) is a Python module for text classific sc:url "https://pypi.org/project/saltclass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, edam:topic_3673 ; @@ -66026,7 +53110,7 @@ SAMDUDE is a genomic sequence denoiser that operates on aligned SAM files. It bo sc:url "https://github.com/ihwang/SAMDUDE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, edam:topic_3308 ; @@ -66046,7 +53130,7 @@ Although several methods have been recently developed to cluster single-cell RNA sc:url "https://github.com/yycunc/SAMEclustering" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3384, edam:topic_3452 ; @@ -66060,7 +53144,7 @@ Although several methods have been recently developed to cluster single-cell RNA sc:url "https://github.com/neurodial/am_SAMIRIX.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0154, edam:topic_0602, @@ -66081,22 +53165,8 @@ SAMMI is a web-based tool for the visualization of metabolic networks and relate sc:name "SAMMI" ; sc:url "http://www.SammiTool.com" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0209, - edam:topic_2275, - edam:topic_3277 ; - sc:citation , - "pmcid:PMC6760852", - "pubmed:31555042" ; - sc:description "> MEDIUM CONFIDENCE! | reference data for the sixth statistical assessment of modeling of proteins and ligands (SAMPL6) | From Wikipedia, the free encyclopedia | Jump to navigation Jump to search | SAMPL (Statistical Assessment of the Modeling of Proteins and Ligands) is a set of community-wide blind challenges aimed to advance computational techniques as standard predictive tools in rational drug design.[1][2][3][4][5] A broad range of biologically relevant systems with different sizes and levels of complexities including proteins, host guest complexes, and drug-like small molecules have been selected to test the latest modeling methods and force fields in SAMPL" ; - sc:featureList edam:operation_0455, - edam:operation_0482, - edam:operation_3642 ; - sc:name "SAMPL" ; - sc:url "https://en.wikipedia.org/wiki/SAMPL_Challenge" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -66119,30 +53189,8 @@ SAMMI is a web-based tool for the visualization of metabolic networks and relate sc:url "https://webs.iiitd.edu.in/raghava/sambinder/" ; biotools:primaryContact "G.P.S. Raghava" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0218 ; - sc:citation , - "pmcid:PMC6700340", - "pubmed:31440535" ; - sc:description "> HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE '57zpx667y9' | Single-label Arabic News Articles Dataset for automatic text categorization | Text Classification is one of the most popular Natural Language Processing (NLP) tasks. Text classification (aka categorization) is an active research topic in recent years. However, much less attention was directed towards this task in Arabic, due to the lack of rich representative resources for training an Arabic text classifier. Therefore, we introduce a large Single-labeled Arabic News Articles Dataset (SANAD) of textual data collected from three news portals. The dataset is a large one consisting of almost 200k articles distributed into seven categories that we offer to the research community on Arabic computational linguistics. We anticipate that this rich dataset would make a great aid for a variety of NLP tasks on Modern Standard Arabic (MSA) textual data, especially for single label text classification purposes" ; - sc:featureList edam:operation_3501 ; - sc:name "SANAD" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31440535" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0601, - edam:topic_3474 ; - sc:citation ; - sc:description "A Machine Learning Recommendation Method and Webtool for the Prediction of Functional Post-Translational Modifications | ABSTRACT Post-translational Modifications (PTMs), chemical or proteinaceous covalent alterations to the side chains of amino acid residues in proteins, are a rapidly expanding feature class of significant importance in cell biology. Due to a high burden of experimental proof and the lack of effective means for experimentalists to prioritize PTMs by functional significance, currently less than ~2% of all PTMs have an assigned biological function. Here, we describe a new artificial neural network model, SAPH-ire TFx for the functional prediction of experimentally observed eukaryotic PTMs. Unlike previous functional PTM prioritization models, SAPH-ire TFx is optimized with both receiver operating characteristic (ROC) and recall metrics that maximally capture the range of diverse feature sets comprising the functional modified eukaryotic proteome" ; - sc:featureList edam:operation_0417, - edam:operation_0480, - edam:operation_3755 ; - sc:name "SAPH-ire TFx" ; - sc:url "https://saphire.biosci.gatech.edu" . - - a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, edam:topic_3474 ; @@ -66155,7 +53203,7 @@ SAMMI is a web-based tool for the visualization of metabolic networks and relate sc:url "https://saphire.biosci.gatech.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3384, @@ -66177,14 +53225,14 @@ SAMMI is a web-based tool for the visualization of metabolic networks and relate a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -66205,7 +53253,7 @@ SAMMI is a web-based tool for the visualization of metabolic networks and relate sc:url "https://github.com/KrishnaswamyLab/SAUCIE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, edam:topic_3474 ; @@ -66218,7 +53266,7 @@ SAMMI is a web-based tool for the visualization of metabolic networks and relate sc:url "http://singlecell.wharton.upenn.edu/saver-x/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, edam:topic_0196, @@ -66244,7 +53292,7 @@ running /data/jh7x3/SAXSDom/db_tools/tools/cmake-2.8.12.2/bin/cmake -E create_sy sc:url "https://github.com/jianlin-cheng/SAXSDom" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275, edam:topic_3474 ; @@ -66263,7 +53311,7 @@ running /data/jh7x3/SAXSDom/db_tools/tools/cmake-2.8.12.2/bin/cmake -E create_sy sc:url "https://github.com/azevedolab/sandres" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -66284,7 +53332,7 @@ running /data/jh7x3/SAXSDom/db_tools/tools/cmake-2.8.12.2/bin/cmake -E create_sy biotools:primaryContact "Meiyue Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3172, @@ -66301,7 +53349,7 @@ running /data/jh7x3/SAXSDom/db_tools/tools/cmake-2.8.12.2/bin/cmake -E create_sy sc:url "https://gitlab.com/biomodlih/sbm-for-correlation-based-networks" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0602, edam:topic_3314, @@ -66316,7 +53364,7 @@ running /data/jh7x3/SAXSDom/db_tools/tools/cmake-2.8.12.2/bin/cmake -E create_sy sc:url "https://bitbucket.org/mclab/sbml2modelica" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, edam:topic_2259, @@ -66331,7 +53379,7 @@ running /data/jh7x3/SAXSDom/db_tools/tools/cmake-2.8.12.2/bin/cmake -E create_sy sc:url "https://github.com/ModelEngineering/SBMLLint" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3308 ; @@ -66344,7 +53392,7 @@ running /data/jh7x3/SAXSDom/db_tools/tools/cmake-2.8.12.2/bin/cmake -E create_sy sc:url "https://github.com/pachterlab/SBP_2019/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3173, edam:topic_3474 ; @@ -66367,7 +53415,7 @@ Lei Xiong, Kui Xu, Kang Tian, Yanqiu Shao, Lei Tang, Ge Gao, Michael Zhang, Tao sc:url "https://github.com/jsxlei/SCALE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320, @@ -66388,7 +53436,7 @@ Lei Xiong, Kui Xu, Kang Tian, Yanqiu Shao, Lei Tang, Ge Gao, Michael Zhang, Tao biotools:primaryContact "Phaedra Agius" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3318, edam:topic_3474 ; sc:citation ; @@ -66398,7 +53446,7 @@ Lei Xiong, Kui Xu, Kang Tian, Yanqiu Shao, Lei Tang, Ge Gao, Michael Zhang, Tao sc:url "https://github.com/zz4fap/scatter-phy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, edam:topic_0634, @@ -66414,7 +53462,7 @@ Lei Xiong, Kui Xu, Kang Tian, Yanqiu Shao, Lei Tang, Ge Gao, Michael Zhang, Tao sc:url "http://scdontology.h3abionet.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_2229, @@ -66433,7 +53481,7 @@ PRESDB:pig RNA Editing database""" ; sc:url "https://scdevdb.deepomics.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2814, edam:topic_2830, edam:topic_3489 ; @@ -66448,7 +53496,7 @@ PRESDB:pig RNA Editing database""" ; sc:url "http://tools.iedb.org/sceptre" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, edam:topic_0621, @@ -66469,7 +53517,7 @@ Please note that this version of SCGid constitutes an early-release version that sc:url "http://www.github.com/amsesk/SCGid" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2830, edam:topic_3170, @@ -66484,7 +53532,7 @@ Please note that this version of SCGid constitutes an early-release version that sc:url "http://schema.csail.mit.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, edam:topic_2640 ; @@ -66500,7 +53548,7 @@ Please note that this version of SCGid constitutes an early-release version that sc:url "https://github.com/compbel/SCIFIL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3810, edam:topic_3855 ; @@ -66513,7 +53561,7 @@ Please note that this version of SCGid constitutes an early-release version that sc:url "http://www.scimap.org.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, edam:topic_0780, @@ -66529,7 +53577,7 @@ Please note that this version of SCGid constitutes an early-release version that sc:url "http://webtom.cabgrid.res.in/scmvtdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, edam:topic_3308, @@ -66547,28 +53595,8 @@ SCMarker performs cell-type-specific marker selection from single cell RNA seque sc:name "SCMarker" ; sc:url "https://github.com/KChen-lab/SCMarker" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0625, - edam:topic_3068, - edam:topic_3304, - edam:topic_3334 ; - sc:citation , - "pubmed:31686106" ; - sc:description """individualizing for genes with molecular sub-regional stratification. - -This database collects SCN1A mutations identified in patients with epilepsies and other neurological diseases, based mostly on reviewing published literature. We welcome information on SCN1A mutations from other sources. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Optimization silico tools predicting genetic variants'""" ; - sc:featureList edam:operation_0331, - edam:operation_3196, - edam:operation_3225, - edam:operation_3461 ; - sc:name "SCN1A" ; - sc:url "http://www.caae.org.cn/gzneurosci/scn1adatabase/index.php" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, edam:topic_0780, @@ -66587,7 +53615,7 @@ All supporting analyses required for SCNBase data""" ; sc:url "http://SCNBase.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0219, edam:topic_3068, edam:topic_3387, @@ -66602,7 +53630,7 @@ All supporting analyses required for SCNBase data""" ; sc:url "http://data.eol.ucar.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0820, @@ -66625,28 +53653,8 @@ All supporting analyses required for SCNBase data""" ; biotools:primaryContact "Andrew P Morris", "Reedik Magi" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_3382 ; - sc:citation , - "pubmed:31877274" ; - sc:description """A new method to quantify 3D biological structures and identify differences in zebrafish forebrain development. - -Research in the life sciences has traditionally relied on the analysis of clear morphological phenotypes, which are often revealed using increasingly powerful microscopy techniques analyzed as maximum intensity projections (MIPs). However, as biology turns towards the analysis of more subtle phenotypes, MIPs and qualitative approaches are failing to adequately describe these phenotypes. To address these limitations and quantitatively analyze the three-dimensional (3D) spatial relationships of biological structures, we developed the computational method and program called ΔSCOPE (Changes in Spatial Cylindrical Coordinate Orientation using PCA Examination). - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/scope. - -||| NAME (SCOPE) SIMILAR TO (PUB. DIFFERENT) bio.tools/scope-scrna (SCope), bio.tools/scopeplusplus (SCOPE++)""" ; - sc:featureList edam:operation_3435, - edam:operation_3799, - edam:operation_3891 ; - sc:name "SCOPE_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31877274" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3308 ; @@ -66663,7 +53671,7 @@ Research in the life sciences has traditionally relied on the analysis of clear sc:url "https://alexdavisscs.shinyapps.io/scs_power_multinomial/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0736, edam:topic_3542 ; @@ -66679,7 +53687,7 @@ Research in the life sciences has traditionally relied on the analysis of clear sc:url "https://this-group.rocks/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3170, @@ -66702,7 +53710,7 @@ Research in the life sciences has traditionally relied on the analysis of clear biotools:primaryContact "Tao Peng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3518 ; @@ -66716,7 +53724,7 @@ Please run Rscript --vanilla fitSCRIBE.R [expression file] [batch index file] [b sc:url "https://github.com/YiliangTracyZhang/SCRIBE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, edam:topic_2275 ; @@ -66731,7 +53739,7 @@ Please run Rscript --vanilla fitSCRIBE.R [expression file] [batch index file] [b sc:url "http://biomine.cs.vcu.edu/servers/SCRIBER/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_2885, edam:topic_3168 ; @@ -66745,7 +53753,7 @@ Please run Rscript --vanilla fitSCRIBE.R [expression file] [batch index file] [b sc:url "https://github.com/qasimyu/scssim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation , @@ -66764,7 +53772,7 @@ Please run Rscript --vanilla fitSCRIBE.R [expression file] [batch index file] [b "Lin Wan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3067, edam:topic_3304, edam:topic_3308 ; @@ -66776,7 +53784,7 @@ Please run Rscript --vanilla fitSCRIBE.R [expression file] [batch index file] [b sc:url "https://cengen.shinyapps.io/SCeNGEA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0153, edam:topic_2828, edam:topic_3318 ; @@ -66790,33 +53798,8 @@ To access SCryPTA, click here . The instructions to use SCryPTA can be found her sc:name "SCryPTA" ; sc:url "http://www.if.usp.br/scrypta" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0121, - edam:topic_2269, - edam:topic_3172, - edam:topic_3520 ; - sc:citation , - "pmcid:PMC6798423", - "pubmed:31623550" ; - sc:description """a semi-parametric differential abundance analysis method for metabolomics and proteomics data. - -Differential Abundant Analysis for Metabolomics and Proteomics Data. - -This Package utilizes a Semi-parametric Differential Abundance analysis (SDA) method for metabolomics and proteomics data from mass spectrometry. SDA is able to robustly handle non-normally distributed data and provides a clear quantification of the effect size. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/sda-simulate. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/sdams (BIOCONDUCTOR.ORG/packages/release/bioc/html/SDAMS.html)""" ; - sc:featureList edam:operation_3435, - edam:operation_3659, - edam:operation_3799 ; - sc:license "GPL-3.0" ; - sc:name "SDA_autogenerated" ; - sc:url "https://www.bioconductor.org/packages/release/bioc/html/SDAMS.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3068, @@ -66834,7 +53817,7 @@ This Package utilizes a Semi-parametric Differential Abundance analysis (SDA) me biotools:primaryContact "Rowan Iskandar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -66853,7 +53836,7 @@ This Package utilizes a Semi-parametric Differential Abundance analysis (SDA) me "Tao Jian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_3489 ; @@ -66868,7 +53851,7 @@ This Package utilizes a Semi-parametric Differential Abundance analysis (SDA) me sc:url "https://github.com/bioinfologics/sdg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3295, edam:topic_3315, edam:topic_3474 ; @@ -66882,7 +53865,7 @@ This Package utilizes a Semi-parametric Differential Abundance analysis (SDA) me sc:url "http://thegleelab.org/SDM6A" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3068 ; sc:citation ; @@ -66894,7 +53877,7 @@ This work involves a tool implementation for evaluating Sediment Delivery Ratio sc:url "https://github.com/pierluigiderosa/r.sdr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, edam:topic_3305, @@ -66911,7 +53894,7 @@ This work involves a tool implementation for evaluating Sediment Delivery Ratio sc:url "http://www.fieldepi.org/SDRS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0749 ; sc:citation , @@ -66924,7 +53907,7 @@ This work involves a tool implementation for evaluating Sediment Delivery Ratio sc:url "https://github.com/RongquanWang/SE-DMTG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3489, edam:topic_3678 ; @@ -66939,7 +53922,7 @@ This work involves a tool implementation for evaluating Sediment Delivery Ratio sc:url "https://github.com/Alerovere/SEAMIS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0659, edam:topic_3170, @@ -66961,7 +53944,7 @@ SEA (also SEAweb) is a searchable database for the expression of small RNA (miRN sc:url "http://sea.ims.bio/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, edam:topic_3168, @@ -66994,7 +53977,7 @@ Sorry, this file is invalid so it cannot be displayed""" ; sc:url "http://www.github.com/AntonelliLab/seqcap_processor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -67015,7 +53998,7 @@ Sorry, this file is invalid so it cannot be displayed""" ; "Vince Grolmusz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, edam:topic_3315, @@ -67038,7 +54021,7 @@ SECNVs (Simulator of Exome Copy Number Variants) is a fast, robust and customiza sc:url "https://github.com/YJulyXing/SECNVs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, edam:topic_3474 ; @@ -67050,30 +54033,8 @@ SECNVs (Simulator of Exome Copy Number Variants) is a fast, robust and customiza sc:name "SED" ; sc:url "https://zhanglab.ccmb.med.umich.edu/SED/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_0749, - edam:topic_2640, - edam:topic_3360, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6834124", - "pubmed:31635135" ; - sc:description """Functional Prediction of Candidate MicroRNAs for CRC Management Using in Silico Approach. - -Click evolutionary stage to quick search early late relapse metastasis drug resistant drug induced. - -Cancer is driven by accumulating somatic alterations which confer normal cells fitness advantage to evolve from a premalignant status to malignant tumor. The SEECancer database presents the comprehensive cancer evolutionary stage-specific somatic events (including early-specific, late-specific, relapse-specific, metastasis-specific, drug-resistant and drug-induced genomic events) and their temporal orders. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'GeneMANIA' (bio.tools/genemania), 'Trident', 'Mfold' (bio.tools/mfold), 'Cytoscape' (bio.tools/cytoscape)""" ; - sc:featureList edam:operation_0463, - edam:operation_3439, - edam:operation_3463 ; - sc:name "SEECancer" ; - sc:url "http://biocc.hrbmu.edu.cn/SEECancer/index.jsp" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3382, edam:topic_3474, @@ -67085,7 +54046,7 @@ Cancer is driven by accumulating somatic alterations which confer normal cells f sc:url "https://github.com/vivitsai/SEGAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199 ; @@ -67101,7 +54062,7 @@ Cancer is driven by accumulating somatic alterations which confer normal cells f sc:url "https://github.com/bazykinlab/SELVa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0611, edam:topic_2640, @@ -67122,7 +54083,7 @@ Cancer is driven by accumulating somatic alterations which confer normal cells f biotools:primaryContact "Kakajan Komurov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, edam:topic_3169 ; @@ -67137,22 +54098,13 @@ Cancer is driven by accumulating somatic alterations which confer normal cells f a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1755" ; - sc:name "Protein atom" ; - sc:sameAs "http://edamontology.org/data_1755" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1755" ; - sc:name "Protein atom" ; - sc:sameAs "http://edamontology.org/data_1755" ] ; + sc:additionalType "http://edamontology.org/data_1755" ; + sc:encodingFormat "http://edamontology.org/format_1475" ; + sc:name "Protein atom" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -67170,7 +54122,7 @@ Cancer is driven by accumulating somatic alterations which confer normal cells f sc:url "http://biophysics.ir/affinity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0769, edam:topic_2640, @@ -67198,7 +54150,7 @@ SEPATH is a software designed to obtain accurate taxonomic classifications from sc:url "https://github.com/UEA-Cancer-Genetics-Lab/sepath_tool_UEA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_2269, edam:topic_3168, @@ -67214,7 +54166,7 @@ SEPATH is a software designed to obtain accurate taxonomic classifications from sc:url "http://seqbeacon.genomics.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0780, edam:topic_3170, @@ -67233,7 +54185,7 @@ The file requirements.txt can be used to install all needed needed dependencies sc:url "https://github.com/malewins/SEQing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3170, @@ -67257,7 +54209,7 @@ The file requirements.txt can be used to install all needed needed dependencies sc:url "https://github.com/omicsCore/SEQprocess" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -67276,17 +54228,8 @@ The file requirements.txt can be used to install all needed needed dependencies sc:url "http://bme.ucdavis.edu/aviranlab/SEQualyzer" ; biotools:primaryContact "Sharon Aviran" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3376 ; - sc:citation , - "pubmed:31438037" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'SERENE-IoT', 'innovation', 'ibjective', 'medico-economic' | How the Maturation Cycle Allows the Correct Development Process of Innovative Technologies in the Healthcare Domain | This article illustrates the maturation process of innovative technologies in the healthcare domain. The role and the involvement of the stakeholders are explained, as well their interaction in the ecosystem. We focus on how the synergy between partners improves efficiency, boosts product development and accelerates market access. The spiral of the innovation concept is introduced to illustrate the different stages ensuring the correct development of a medical technology. This iterative cycle drives the product maturation, according to medical needs and feedback, and ensures the correct implementation of the innovation in the clinical framework" ; - sc:name "SERENE-IoT project" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31438037" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0654, edam:topic_0798, @@ -67304,7 +54247,7 @@ The file requirements.txt can be used to install all needed needed dependencies sc:url "http://seva-plasmids.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, edam:topic_3172, @@ -67321,7 +54264,7 @@ The file requirements.txt can be used to install all needed needed dependencies sc:url "http://www.bork.embl.de/Docu/sf_matching" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3474, edam:topic_3518 ; @@ -67336,7 +54279,7 @@ The file requirements.txt can be used to install all needed needed dependencies sc:url "https://github.com/jimy2020/SFLA_IWSSr-Feature-Selection" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3173, edam:topic_3308 ; @@ -67349,7 +54292,7 @@ The file requirements.txt can be used to install all needed needed dependencies sc:url "http://sgid.popgenetics.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, edam:topic_3303, @@ -67364,7 +54307,7 @@ At present, with the in-depth study of gene expression data, the significant rol sc:url "https://github.com/QUST-AIBBDRC/SGL-SVM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0749, edam:topic_3304 ; @@ -67378,7 +54321,7 @@ At present, with the in-depth study of gene expression data, the significant rol sc:url "https://github.com/jwouters91/shybrid" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3375 ; sc:citation ; @@ -67393,35 +54336,8 @@ At present, with the in-depth study of gene expression data, the significant rol sc:url "https://github.com/pogudingleb/SIAN" ; biotools:primaryContact "Gleb Pogudin" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3306, - edam:topic_3384, - edam:topic_3444 ; - sc:citation , - "pmcid:PMC6922029", - "pubmed:31857736" ; - sc:description """Coupling brain-tumor biophysical models and diffeomorphic image registration. - -We present SIBIA (Scalable Integrated Biophysics-based Image Analysis), a framework for joint image registration and biophysical inversion and we apply it to analyze MR images of glioblastomas (primary brain tumors). We have two applications in mind. The first one is normal-to-abnormal image registration in the presence of tumor-induced topology differences. The second one is biophysical inversion based on single-time patient data. The underlying optimization problem is highly non-linear and non-convex and has not been solved before with a gradient-based approach. Given the segmentation of a normal brain MRI and the segmentation of a cancer patient MRI, we determine tumor growth parameters and a registration map so that if we "grow a tumor" (using our tumor model) in the normal brain and then register it to the patient image, then the registration mismatch is as small as possible. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_2426, - edam:operation_3435, - edam:operation_3443 ; - sc:name "SIBIA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31857736" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3376 ; - sc:citation , - "pubmed:31438039" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'patient-bed', 'technological', 'Atacama' | A New Software to Improve the Patient Care Supported by a Constraint-Based Model | Health facilities are care centers that receive patients with different requirements. The management of patients falls to the clinical staff trained for this activity. However, given the demands of the population, the task of managing beds is sometimes too complicated when carried out manually. In this work, we propose the design and implementation of a technological platform that provides an improved optimization approach. It manages the patient-bed allocation efficiently, by considering hospital resources given the number of units and patient diagnosis. This tool was deployed in hospitals of the Atacama regional health service in Chile, boosting the work of the clinical staff of the health facility" ; - sc:featureList edam:operation_3760 ; - sc:name "SIGICAM" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31438039" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3303, edam:topic_3384, @@ -67436,7 +54352,7 @@ SIIM provides an unparalleled opportunity to not only hear from the best, bright sc:url "https://siim.org/general/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0601, @@ -67455,7 +54371,7 @@ SIMLIN: an improved bioinformatics approach based on multi-stage ensemble learni sc:url "http://simlin.erc.monash.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2640, @@ -67476,7 +54392,7 @@ SIMLIN: an improved bioinformatics approach based on multi-stage ensemble learni biotools:primaryContact "Sean West" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0780, @@ -67492,8 +54408,33 @@ SIMLIN: an improved bioinformatics approach based on multi-stage ensemble learni sc:url "https://github.com/maohlzj/SINE_Scan" ; biotools:primaryContact "Hao Wang" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "Nucleic acid sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0860" ; + sc:name "Sequence signature data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_3168, + edam:topic_3895, + edam:topic_3912 ; + sc:description "Accurate consensus sequence from nanopore reads of a DNA gene library. SINGLe corrects for systematic errors in nanopore sequencing reads of gene libraries and it retrieves true consensus sequences of variants identified by a barcode, needing only a few reads per variant." ; + sc:featureList edam:operation_2403, + edam:operation_3219 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SINGLe" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/rocioespci/single" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0602, edam:topic_3172, @@ -67508,7 +54449,7 @@ SIMLIN: an improved bioinformatics approach based on multi-stage ensemble learni sc:url "https://pypi.org/project/moiety-modeling/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2830, edam:topic_3305, @@ -67524,7 +54465,7 @@ SIMLIN: an improved bioinformatics approach based on multi-stage ensemble learni sc:url "https://lfz.corefacility.ca/sistr-app/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -67544,7 +54485,8 @@ SIMLIN: an improved bioinformatics approach based on multi-stage ensemble learni biotools:primaryContact "Yu Lab in the Department of Computational Biology at St. Jude Children's Research Hospital" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, edam:topic_2830, @@ -67553,17 +54495,16 @@ SIMLIN: an improved bioinformatics approach based on multi-stage ensemble learni sc:citation ; sc:description """Computing Skin Cutaneous Melanoma Outcome from the HLA-alleles and Clinical Characteristics. -Skin Cutaneous Melanoma High-Risk Prediction(SKCMhrp) webserver can be used to distinguish high risk SKCM patients from low risk SKCM patients from their HLA-superallele and clinical characterstics. The risk estimation is based on statistical and survival analysis on recent SKCM datasets. See general section for more information. - -Data download coming soon !!!!!!!!!!!!!!!!!!""" ; +Skin Cutaneous Melanoma High-Risk Prediction(SKCMhrp) webserver can be used to distinguish high risk SKCM patients from low risk SKCM patients from their HLA-superallele and clinical characteristics. The risk estimation is based on statistical and survival analysis on recent SKCM datasets. See general section for more information.""" ; sc:featureList edam:operation_0252, edam:operation_3503, edam:operation_3659 ; - sc:name "SKCM" ; + sc:name "SKCMhrp" ; + sc:softwareHelp ; sc:url "https://webs.iiitd.edu.in/raghava/skcmhrp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, edam:topic_0634, @@ -67582,23 +54523,8 @@ SKIMMR - a research prototype for machine-aided skim reading (includes back-end sc:name "SKIMMR" ; sc:url "https://github.com/vitnov/SKIMMR" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0154, - edam:topic_0601, - edam:topic_2229 ; - sc:citation ; - sc:description """non-kinase specific phosphorylation site prediction with random forests and amino acid skip-gram embeddings. - -Abstract Motivation Phosphorylation, which is catalyzed by kinase proteins, is in the top two most common and widely studied types of known essential post-translation protein modification (PTM). Phosphorylation is known to regulate most cellular processes such as protein synthesis, cell division, signal transduction, cell growth, development and aging. Various phosphorylation site prediction models have been developed, which can be broadly categorized as being kinase-specific or non-kinase specific (general). Unlike the latter, the former requires a large enough number of experimentally known phosphorylation sites annotated with a given kinase for training the model, which is not the case in reality: less than 3% of the phosphorylation sites known to date have been annotated with a responsible kinase""" ; - sc:featureList edam:operation_0267, - edam:operation_0417, - edam:operation_3904 ; - sc:name "SKIPHOS" ; - sc:url "http://fit.uet.vnu.edu.vn/SKIPHOS" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, @@ -67622,7 +54548,7 @@ Abstract Motivation Phosphorylation, which is catalyzed by kinase proteins, is i "Philipp Rescheneder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; sc:citation ; @@ -67633,21 +54559,8 @@ Abstract Motivation Phosphorylation, which is catalyzed by kinase proteins, is i sc:name "SLAST" ; sc:url "https://www.dnaservic.es/dnaresult?ob=2&min=0.5&id=5191&qid=BdZIQbHRnfIsdH0O&tkt=&code=" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3315, - edam:topic_3337, - edam:topic_3517 ; - sc:citation , - "pmcid:PMC6668092", - "pubmed:31362713" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'SLDF_REML Lanczos', 'SLDF_REML', 'interpreted-language', 'CONCLUSIONS:Both SLDF_REML L_FOMC_REML' | Stochastic Lanczos estimation of genomic variance components for linear mixed-effects models | Stochastic Lanczos REML algorithms for genomic variance component estimation | Stochastic Lanczos REML algorithms | Code accompanying Stochastic Lanczos estimation of genomic variance components for linear mixed-effects models | L_Seed constructs bases for Krylov subspaces: B, (A+σI)B, (A+σI)²B, .." ; - sc:featureList edam:operation_3192, - edam:operation_3196 ; - sc:name "SLDF_REML L_FOMC_REML" ; - sc:url "https://github.com/rborder/SL_REML" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, edam:topic_0634, @@ -67663,7 +54576,7 @@ Abstract Motivation Phosphorylation, which is catalyzed by kinase proteins, is i sc:url "https://github.com/rabbitpei/SLE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -67683,7 +54596,7 @@ Abstract Motivation Phosphorylation, which is catalyzed by kinase proteins, is i biotools:primaryContact "Hyungwon Choi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0769, @@ -67705,26 +54618,8 @@ Abstract Motivation Phosphorylation, which is catalyzed by kinase proteins, is i sc:url "https://trtcrd.github.io/SLIM/" ; biotools:primaryContact "Yoann Dufresne" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659 ; - sc:citation , - "pmcid:PMC6923828", - "pubmed:31856716" ; - sc:description """LncRNA-miRNA interaction prediction through sequence-derived linear neighborhood propagation method with information combination. - -BACKGROUND:Researchers discover lncRNAs can act as decoys or sponges to regulate the behavior of miRNAs. Identification of lncRNA-miRNA interactions helps to understand the functions of lncRNAs, especially their roles in complicated diseases. Computational methods can save time and reduce cost in identifying lncRNA-miRNA interactions, but there have been only a few computational methods. RESULTS:In this paper, we propose a sequence-derived linear neighborhood propagation method (SLNPM) to predict lncRNA-miRNA interactions. First, we calculate the integrated lncRNA-lncRNA similarity and the integrated miRNA-miRNA similarity by combining known lncRNA-miRNA interactions, lncRNA sequences and miRNA sequences. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'SLNPM-SC', 'SLNPM-PC'""" ; - sc:featureList edam:operation_0463, - edam:operation_3439, - edam:operation_3792 ; - sc:name "SLNPM-SC SLNPM-PC" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31856716" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168 ; sc:citation ; @@ -67735,31 +54630,8 @@ BACKGROUND:Researchers discover lncRNAs can act as decoys or sponges to regulate sc:name "SLR-superscaffolder" ; sc:url "https://github.com/BGI-Qingdao/SLR-superscaffolder" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0196, - edam:topic_3125 ; - sc:citation , - "pmcid:PMC6820941", - "pubmed:31666010" ; - sc:description """a scaffolding algorithm based on long reads and contig classification. - -Scaffolding using long reads obtained by the third generation sequencing technologies. - -SLR is a scaffolding tool based on long reads and contig classification. - -Step 6: SLR-unique-ambiguous -c -r -d -u -s -b -p . - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/slr""" ; - sc:featureList edam:operation_0525, - edam:operation_3198, - edam:operation_3216 ; - sc:license "GPL-3.0" ; - sc:name "SLR_autogenerated" ; - sc:url "https://github.com/luojunwei/SLR" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_2258, @@ -67782,7 +54654,7 @@ Step 6: SLR-unique-ambiguous -c -r -d a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0199, @@ -67794,7 +54666,7 @@ Step 6: SLR-unique-ambiguous -c -r -d ; sc:description "Evolutionary simulation framework that combines a powerful engine for population genetic simulations with the capability of modeling arbitrarily complex evolutionary scenarios. Includes a graphical modeling environment." ; sc:featureList edam:operation_0550, - edam:operation_3946 ; + edam:operation_3429 ; sc:isAccessibleForFree true ; sc:license "GPL-3.0" ; sc:name "SLiM" ; @@ -67804,26 +54676,13 @@ Step 6: SLR-unique-ambiguous -c -r -d , , ; - sc:softwareVersion "3.7.1" ; + sc:softwareVersion "4.0.1" ; sc:url "https://messerlab.org/slim/" ; biotools:primaryContact , . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0781, - edam:topic_2830, - edam:topic_3510 ; - sc:citation , - "pubmed:31427097" ; - sc:description "> VERY_LOW CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/slimsuite (GITHUB.COM/slimsuite/SLiMSuite) | > CORRECT NAME OF TOOL COULD ALSO BE 'biosecurity', 'mimicry', 'viral', 'immunogens' | Resources to Discover and Use Short Linear Motifs in Viral Proteins | Open source short linear motif discovery and sequence analysis | This repository contains the core code for the SLiMSuite package of short linear motif (SLiM) discovery and sequence analysis tools from the Edwards Lab | More information can be found at the SLiMSuite Blog and in the docs/ folder. Release information, including updates since the last release, can be found in docs/release/" ; - sc:featureList edam:operation_0238, - edam:operation_0239, - edam:operation_0245 ; - sc:name "SLiMs" ; - sc:url "https://github.com/slimsuite/SLiMSuite" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "Using Python® language for the validation of the CCI soil moisture products via SM2RAIN." ; sc:featureList edam:operation_2428 ; @@ -67831,7 +54690,7 @@ Step 6: SLR-unique-ambiguous -c -r -d a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -67853,25 +54712,8 @@ Step 6: SLR-unique-ambiguous -c -r -d a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0218, - edam:topic_3305, - edam:topic_3474 ; - sc:citation , - "pubmed:31647520" ; - sc:description """the social media-based addiction recovery and intervention targeting server. - -MOTIVATION:Substance abuse and addiction is a significant contemporary health crisis. Modeling its epidemiology and designing effective interventions requires real-time data analysis along with the means to contextualize addiction patterns across the individual-to-community scale. In this context, social media platforms have begun to receive significant attention as a novel source of real-time user-reported information. However, the ability of epidemiologists to use such information is significantly stymied by the lack of publicly available algorithms and software for addiction information extraction, analysis and modeling. RESULTS:SMARTS is a public, open source, web-based application that addresses the aforementioned deficiency. - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/smarts""" ; - sc:featureList edam:operation_0337 ; - sc:name "SMARTS_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31647520" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, edam:topic_2640, @@ -67888,33 +54730,14 @@ BACKGROUND:Data mining of The Cancer Genome Atlas (TCGA) data has significantly sc:name "SMART App" ; sc:url "http://www.bioinfo-zs.com/smartapp" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_0605, - edam:topic_3379 ; - sc:citation , - "pmcid:PMC6798516", - "pubmed:31660237" ; - sc:description """A national resource for IRB review for multisite studies. - -The SMART IRB Master Reliance Agreement and reciprocal IRB reliance model enable single IRB review in accordance with NIH policies on the Use of a Single Institutional Review Board for Multisite Research. - -Review the Master Common Reciprocal Institutional Review Board Authorization Agreement. - -To learn more about differences across versions of the SMART IRB Agreement read the Agreement Version Guide. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'SMART IRB'""" ; - sc:name "SMART IRB Platform" ; - sc:url "https://smartirb.org/resources/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Ultra-fast de novo assembler using long noisy reads" ; sc:name "SMARTdenovo" ; sc:url "https://github.com/ruanjue/smartdenovo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3399, edam:topic_3421 ; @@ -67926,7 +54749,7 @@ To learn more about differences across versions of the SMART IRB Agreement read sc:url "https://github.com/bandyopd/SMARTp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, edam:topic_3047, @@ -67942,7 +54765,7 @@ To learn more about differences across versions of the SMART IRB Agreement read sc:url "https://github.com/openforcefield/smirnoff99Frosst" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3070 ; sc:citation , @@ -67951,17 +54774,8 @@ To learn more about differences across versions of the SMART IRB Agreement read sc:name "SMOG" ; sc:url "https://github.com/Onto-Med/SMOG" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_3070 ; - sc:citation , - "pubmed:31483262" ; - sc:description "> HOMEPAGE MISSING! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/smog | A Lightweight Tool for Object-Spreadsheet Mapping | In the life science domain, experts are usually familiar with spreadsheet software and often use it in their daily work to collect and structure required domain knowledge. The processing and analysis of spreadsheet data is an important task that must be supported by efficient software solutions. A typical application scenario is for example an integration of spreadsheet data (specified or derived) in an ontology to provide reasoning or search. Different converter tools were developed to support a spreadsheet-to-ontology transformation. Such tools allow often only a relatively simple structure of the spreadsheet template or they require complex mapping processes to map the spreadsheet and ontological entities" ; - sc:name "SMOG_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31483262" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -67996,7 +54810,7 @@ SMSNet's predicted amino acid sequences for a public HLA peptidome dataset (Mass sc:url "https://figshare.com/articles/SMSNet_s_trained_models/8259122" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3304, @@ -68014,7 +54828,7 @@ SMSNet's predicted amino acid sequences for a public HLA peptidome dataset (Mass biotools:primaryContact "Dewan Sarwar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -68036,7 +54850,7 @@ SMSNet's predicted amino acid sequences for a public HLA peptidome dataset (Mass biotools:primaryContact "Wujuan Zhong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , @@ -68054,30 +54868,8 @@ SMSNet's predicted amino acid sequences for a public HLA peptidome dataset (Mass sc:url "https://github.com/maartenpaul/SMoLR" ; biotools:primaryContact "Maarten Paul" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0610, - edam:topic_3318, - edam:topic_3390, - edam:topic_3810 ; - sc:citation , - "pmcid:PMC6768857", - "pubmed:31570929" ; - sc:description """demonstrating the impact of a national framework for obesity prevention in low-income populations. - -SNAP-Ed Evaluation Framework – SNAP-Ed Toolkit. - -* SNAP-Ed Priority Outcome Indicator. - -Welcome to the new SNAP-Ed Toolkit website! This toolkit will help SNAP-Ed Implementing Agencies across the country find evidence-based interventions and explore the SNAP-Ed Evaluation Framework in order to strengthen our impact on our goal to help SNAP-eligible households make healthy eating and physical activity choices on a limited budget. - -In 2019, 52 new interventions were added to the SNAP-Ed Toolkit!""" ; - sc:featureList edam:operation_2421 ; - sc:name "SNAP-Ed" ; - sc:url "https://snapedtoolkit.org/framework/index/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3293, edam:topic_3305 ; @@ -68091,43 +54883,8 @@ In 2019, 52 new interventions were added to the SNAP-Ed Toolkit!""" ; sc:softwareHelp ; sc:url "https://github.com/PMMAraujo/snappy" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0593, - edam:topic_3318, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6891700", - "pubmed:31766116" ; - sc:description """Sensor Analytics Point Solutions for Detection and Decision Support Systems. - -In this review, we discuss the role of sensor analytics point solutions (SNAPS), a reduced complexity machine-assisted decision support tool. We summarize the approaches used for mobile phone-based chemical biological sensors, including general hardware and software requirements for signal transduction and acquisition. We introduce SNAPS, part of a platform approach to converge sensor data and analytics. The platform is designed to consist of a portfolio of modular tools which may lend itself to dynamic composability by enabling context-specific selection of relevant units, resulting in case-based working modules. SNAPS is an element of this platform where data analytics, statistical characterization and algorithms may be delivered to the data either via embedded systems in devices, or sourced, in near real-time, from mist, fog or cloud computing resources. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_2429, - edam:operation_3629, - edam:operation_3799 ; - sc:name "SNAPS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31766116" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749 ; - sc:citation , - ; - sc:description """Synthesizing high performance NFV service chains. - -In this paper we introduce SNF, a framework that synthesizes (S) network function (NF) service chains by eliminating redundant I O and repeated elements, while consolidating stateful cross layer packet operations across the chain. SNF uses graph composition and set theory to determine traffic classes handled by a service chain composed of multiple elements. It then synthesizes each traffic class using a minimal set of new elements that apply single-read-single-write and early-discard operations. Our SNF prototype takes a baseline state-of-the-art network functions virtualization (NFV) framework to the level of performance required for practical NFV service deployments. Software-based SNF realizes long (up to 10 NFs) and stateful service chains that achieve line-rate 40 Gbps throughput (up to 8.5x greater than the baseline NFV framework). - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'NFV'""" ; - sc:featureList edam:operation_2495, - edam:operation_3762 ; - sc:name "SNF" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.2477V3" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0089, @@ -68145,42 +54902,8 @@ In this paper we introduce SNF, a framework that synthesizes (S) network functio sc:softwareHelp ; sc:url "http://www.snomed.org/snomed-ct/five-step-briefing" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_2885, - edam:topic_3168, - edam:topic_3512, - edam:topic_3912 ; - sc:citation , - "pubmed:31822517" ; - sc:description """A Web Tool for SNP-Specific Genome Editing. - -SNP-targeted CRISPR design pipeline. - -CRISPR/Cas9 target online predictor. - -DRSC tool for designing SNP-targetted CRISPR guides. - -Are you interested in targeting SNP or INDEL variants in your experiment? Look no further! We can help you find CRISPR guide designs (both -NGG and -NAG) in Fly, Human, Mouse, Zebrafish, and Rat genomes. Each guide will be given an efficiency and off-target score based on our algorithms so that you can plan accordingly. Targeting multiple variants within the same guide is also available (select the checkbox)!. - -Online version available at: https://www.flyrnai.org/tools/snp_crispr. - -DRSC tool for search and view of pre-computed CRISPR designs for genome engineering (knock-out or knock-in) in Drosophila. - -DRSC/TRiP Functional Genomics Resources. - -— Rational design of CRISPR/Cas target. - -Enter an accession number (e.g""" ; - sc:featureList edam:operation_2421, - edam:operation_3096, - edam:operation_3227 ; - sc:license "MIT" ; - sc:name "SNP-CRISPR_autogenerated" ; - sc:url "https://www.flyrnai.org/tools/snp_crispr/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2885, edam:topic_3517 ; @@ -68193,7 +54916,7 @@ Enter an accession number (e.g""" ; sc:url "http://gong_lab.hzau.edu.cn/SNP2APA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -68213,7 +54936,7 @@ Enter an accession number (e.g""" ; biotools:primaryContact "Matthew McCoy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0208, edam:topic_0625, @@ -68227,25 +54950,8 @@ Enter an accession number (e.g""" ; sc:name "SNPector" ; sc:url "https://github.com/peterhabib/SNPector" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0203, - edam:topic_0625, - edam:topic_0634, - edam:topic_2885 ; - sc:citation ; - sc:description """SNP inspection tool for diagnosing gene pathogenicity and drug response in a naked sequence. - -According to uncovering of genetic roots of many disease, the need of tool to investigate the DNA of patient to find out what kinds of varients are located in and how it could controbute in the disease. SNPector is a python software combine between different other software could detect variants in given sequence and illustrate to which diseas those variants are contribute""" ; - sc:featureList edam:operation_0337, - edam:operation_0484, - edam:operation_3661 ; - sc:license "MIT" ; - sc:name "SNPector_autogenerated" ; - sc:url "https://github.com/peterhabib/SNPector" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2885, edam:topic_3173, @@ -68267,7 +54973,7 @@ To download and prepare annotation files""" ; sc:url "https://github.com/shraddhapai/SNPNotes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3518 ; @@ -68279,20 +54985,8 @@ To download and prepare annotation files""" ; sc:name "SNPs" ; sc:url "http://snp-seek.irri.org/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_2885, - edam:topic_3518 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Tay-Sachs', 'TSD', 'Tay-Saches', 'HEXA' | Thirty two novel nsSNPs May effect on HEXA protein Leading to Tay-Sachs disease (TSD) Using a Computational Approach | Predicting Human Disease-related Mutations in Proteins with Functional Annotations | SNPs &GO is a server for the prediction of single point protein mutations likely to be involved in the insurgence of diseases in humans" ; - sc:featureList edam:operation_0331, - edam:operation_0484, - edam:operation_3661 ; - sc:name "SNPs_autogenerated" ; - sc:url "https://snps-and-go.biocomp.unibo.it/snps-and-go/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, edam:topic_0194, @@ -68311,23 +55005,8 @@ SNiPloid assumes that short reads datasets (i.e. samples) derived from distinct sc:name "SNiPlay" ; sc:url "http://sniplay.southgreen.fr/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_3067, - edam:topic_3489 ; - sc:citation , - "pmcid:PMC6686081", - "pubmed:31392324" ; - sc:description "a FAIR web content management system that uses knowledge graphs and that is based on semantic programming | Source code ontology for SOCCOMAS | SOCCOMAS: A FAIR Web Content Management System based on Semantic Programming using the Semantic Programming Ontology | SOCCOMAS (Semantic Ontology-Controlled application for web COntent MAngement Systems) is a semantic web content management system (S-WCMS) that utilizes the Semantic Programming Ontology (SPrO; https: github.com SemanticProgramming SPrO) and a Java Interpreter (https: github.com SemanticProgramming Interpreter) as well as an Interface (https: github.com SemanticProgramming Interface)" ; - sc:featureList edam:operation_2422, - edam:operation_3096, - edam:operation_3501 ; - sc:license "LGPL-3.0" ; - sc:name "SOCCOMAS" ; - sc:url "https://github.com/SemanticProgramming/SOCCOMAS" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3068, edam:topic_3168, @@ -68344,7 +55023,7 @@ SOLQC is a novel analysis tool, which enables fast and comprehensive analysis of sc:url "https://app.gitbook.com/@yoav-orlev/s/solqc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_3474 ; sc:citation , @@ -68356,7 +55035,7 @@ SOLQC is a novel analysis tool, which enables fast and comprehensive analysis of sc:url "http://babylone.ulb.ac.be/SOLART/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:citation ; sc:description "Python library implementing the full self-organizing map (SOM) analysis workflow." ; @@ -68374,26 +55053,8 @@ SOLQC is a novel analysis tool, which enables fast and comprehensive analysis of biotools:primaryContact "Guillaume Bouvier", "Michael Nilges" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3411, - edam:topic_3419, - edam:topic_3421 ; - sc:citation , - "pubmed:31657004" ; - sc:description """SOMANZ position paper on the management of nausea and vomiting in pregnancy and hyperemesis gravidarum. - -APPROVAL OF WRITTEN GUIDELINES BY SOMANZ. - -There are two proposed methods of guideline development processes as detailed below:-. - -In 2017 SOMANZ published a multi-disciplinary guideline for the management of sepsis in pregnancy and the post-partum period. We took the broadest definition of sepsis, including the investigation of viral and non-infectious sepsis. We have included three short easy diagnostic criteria for the triage of the acute patient: Respiratory rate, Systolic Blood Pressure and Alert/non-alert which trigger a management pathway. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'auditable'""" ; - sc:name "SOMANZ" ; - sc:url "https://www.somanz.org/guidelines.asp" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3304, @@ -68413,18 +55074,8 @@ In 2017 SOMANZ published a multi-disciplinary guideline for the management of se sc:url "https://github.com/AllenInstitute/sonata" ; biotools:primaryContact "Anton Arkhipov" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0605, - edam:topic_3390, - edam:topic_3393 ; - sc:citation , - "pubmed:31446936" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Academy Nutrition', 'RDNs CNM', 'RDNs', 'CNM' | Revised 2019 Standards of Professional Performance for Registered Dietitian Nutritionists (Competent, Proficient, and Expert) in Clinical Nutrition Management | The Standards of Practice (SOP) and Standards of Professional Performance (SOPP) can be used by credentialed nutrition and dietetics practitioners to assess their individual performance needs" ; - sc:name "SOPP" ; - sc:url "http://eatrightpro.org/SOP" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3316, edam:topic_3673 ; @@ -68445,7 +55096,7 @@ Please go to the Wiki pages, https://github.com/BioHPC/SORA/wiki, to learn about sc:url "https://github.com/BioHPC/SORA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_2885, @@ -68460,7 +55111,7 @@ Please go to the Wiki pages, https://github.com/BioHPC/SORA/wiki, to learn about sc:url "https://github.com/estellerochat/SPAG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0097, edam:topic_3170, @@ -68482,7 +55133,7 @@ Please go to the Wiki pages, https://github.com/BioHPC/SORA/wiki, to learn about biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0091, edam:topic_0621 ; @@ -68495,7 +55146,7 @@ Please go to the Wiki pages, https://github.com/BioHPC/SORA/wiki, to learn about sc:url "https://sparql.orthodb.org/sparql" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2229, edam:topic_3170, @@ -68510,7 +55161,7 @@ Please go to the Wiki pages, https://github.com/BioHPC/SORA/wiki, to learn about sc:url "https://sysbiobig.dei.unipd.it/software/sparsim/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_3174 ; @@ -68524,14 +55175,13 @@ Please go to the Wiki pages, https://github.com/BioHPC/SORA/wiki, to learn about a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2851" ; - sc:name "Drug structure" ; - sc:sameAs "http://edamontology.org/data_2851" ] ; + sc:additionalType "http://edamontology.org/data_2851" ; + sc:encodingFormat "http://edamontology.org/format_3814" ; + sc:name "Drug structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1696" ; - sc:name "Drug report" ; - sc:sameAs "http://edamontology.org/data_1696" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1696" ; + sc:name "Drug report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3314 ; @@ -68549,7 +55199,7 @@ Please go to the Wiki pages, https://github.com/BioHPC/SORA/wiki, to learn about biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -68566,7 +55216,7 @@ Please go to the Wiki pages, https://github.com/BioHPC/SORA/wiki, to learn about sc:url "https://api.ncbi.nlm.nih.gov/variation/v0/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0209, edam:topic_3070, edam:topic_3373 ; @@ -68579,7 +55229,7 @@ Please go to the Wiki pages, https://github.com/BioHPC/SORA/wiki, to learn about sc:url "https://github.com/akiyamalab/SPDRank" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, edam:topic_3520 ; @@ -68595,7 +55245,7 @@ Please go to the Wiki pages, https://github.com/BioHPC/SORA/wiki, to learn about sc:url "https://github.com/BIRL/SPECTRUM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0769, @@ -68614,7 +55264,7 @@ Please go to the Wiki pages, https://github.com/BioHPC/SORA/wiki, to learn about sc:url "https://www.nitrc.org/projects/spharm-pdm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_2269, edam:topic_3174, @@ -68628,7 +55278,7 @@ Please go to the Wiki pages, https://github.com/BioHPC/SORA/wiki, to learn about sc:url "https://github.com/zdk123/SpiecEasi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0632, edam:topic_0736, @@ -68649,7 +55299,7 @@ Protein domain insertion via programmed oligo libraries""" ; sc:url "https://github.com/schmidt-lab/SPINE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0199, @@ -68670,20 +55320,8 @@ Protein domain insertion via programmed oligo libraries""" ; sc:url "http://www.splatche.com/splatche3" ; biotools:primaryContact "Mathias Currat" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3361 ; - sc:citation , - "pubmed:31880577" ; - sc:description """An Improved Robust Boosting Algorithm Based on Self-Paced Learning. - -It is known that boosting can be interpreted as an optimization technique to minimize an underlying loss function. Specifically, the underlying loss being minimized by the traditional AdaBoost is the exponential loss, which proves to be very sensitive to random noise outliers. Therefore, several boosting algorithms, e.g., LogitBoost and SavageBoost, have been proposed to improve the robustness of AdaBoost by replacing the exponential loss with some designed robust loss functions. In this article, we present a new way to robustify AdaBoost, that is, incorporating the robust learning idea of self-paced learning (SPL) into the boosting framework. Specifically, we design a new robust boosting algorithm based on the SPL regime, that is, SPLBoost, which can be easily implemented by slightly modifying off-the-shelf boosting packages. - -||| HOMEPAGE MISSING!""" ; - sc:name "SPLBoost" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31880577" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3444 ; @@ -68700,38 +55338,15 @@ It is known that boosting can be interpreted as an optimization technique to min sc:softwareHelp ; sc:url "https://www.fil.ion.ucl.ac.uk/spm/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0602, - edam:topic_2640, - edam:topic_3315 ; - sc:citation , - "pmcid:PMC6872169", - "pubmed:31710622" ; - sc:description """Uncovering the subtype-specific temporal order of cancer pathway dysregulation. - -Subtype-specific Pathway Linear Progression Model. - -An integer linear program for simultaneous identification of cancer pathways, cancer subtyes and subtype-specific order of pathway dysregulation. The input is the Cancer Cell Fraction (CCF) matrix with rows corresponding to samples and columns indicating somatic genetic variants for which CCF values are measured. The output consists of a partitioning samples into subtypes, a partitioning of variants into pathways, and a linear progression model of the pathways for each subtype. - -Our software SPM consists of three separate parts: intermediate file generation (matGenerator.cpp), the main algorithm implementation (SPM. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/SPM""" ; - sc:featureList edam:operation_2426, - edam:operation_3439 ; - sc:name "SPM_autogenerated" ; - sc:url "https://github.com/Dalton386/SPM" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0880" ; - sc:name "RNA secondary structure" ; - sc:sameAs "http://edamontology.org/data_0880" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0880" ; + sc:name "RNA secondary structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -68747,7 +55362,7 @@ Our software SPM consists of three separate parts: intermediate file generation biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0123, edam:topic_0130, @@ -68768,7 +55383,7 @@ Protein sequence profile prediction aims to generate multiple sequences from str sc:url "https://github.com/biomed-AI/SPROF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description """SPROUTS has two general functions. The first is to provide existing mutation data given a protein specified by a PDB ID. This is Query mode. @@ -68778,7 +55393,7 @@ The second is to generate new mutation data based on a new PDB ID or a user inpu sc:url "http://sprouts.rpbs.univ-paris-diderot.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3520 ; @@ -68797,7 +55412,7 @@ The second is to generate new mutation data based on a new PDB ID or a user inpu biotools:primaryContact "Paolo Inglese" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3068, @@ -68819,7 +55434,7 @@ The second is to generate new mutation data based on a new PDB ID or a user inpu "Romain Groux" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2229, edam:topic_3382 ; @@ -68833,7 +55448,7 @@ The second is to generate new mutation data based on a new PDB ID or a user inpu sc:url "https://github.com/sparq-plugin/sparq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3520, edam:topic_3697 ; @@ -68848,20 +55463,8 @@ The second is to generate new mutation data based on a new PDB ID or a user inpu sc:name "SPeDE" ; sc:url "https://github.com/LM-UGent/SPeDE" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0634, - edam:topic_3518 ; - sc:citation , - "pubmed:31479653" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'SRA01', 'LEC SRA01', 'LEC SRA01 04', 'LEC' | Molecular characterization of the human lens epithelium-derived cell line SRA01/04 | Cataract-associated gene discovery in human and animal models have informed on key aspects of human lens development, homeostasis and pathology. Additionally, in vitro models such as the culture of permanent human lens epithelium-derived cell lines (LECs) have also been utilized to understand the molecular biology of lens cells. However, these resources remain uncharacterized, specifically regarding their global gene expression and suitability to model lens cell biology. Therefore, we sought to molecularly characterize gene expression in the human LEC, SRA01 04, which is commonly used in lens studies. We first performed short tandem repeat (STR) analysis and validated SRA01 04 LEC for its human origin, as recommended by the eye research community" ; - sc:featureList edam:operation_2495, - edam:operation_3223 ; - sc:name "SRA01 04" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31479653" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0194, edam:topic_3293 ; sc:citation , @@ -68873,50 +55476,8 @@ The second is to generate new mutation data based on a new PDB ID or a user inpu sc:name "SRH" ; sc:url "https://github.com/roblanf/SRHtests" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3411, - edam:topic_3418, - edam:topic_3420, - edam:topic_3422, - edam:topic_3575 ; - sc:citation , - "pubmed:31761003" ; - sc:description """A Package of Sexual and Reproductive Health and Rights Interventions-What Does It Mean for Adolescents?. - -This article analyzes the relevance of the comprehensive definition of sexual and reproductive health and rights (SRHR) to adolescents and identifies adolescent-specific implications for the implementation of an essential package of SRHR interventions. The delivery of a comprehensive approach to SRHR targeting adolescents is underpinned by five principles-equity, quality, accountability, multisectorality, and meaningful engagement. All SRHR interventions included in the package are relevant to adolescents, given the diversity of adolescents' SRHR needs and considering their specific attributes, circumstances, and experiences. - -||| HOMEPAGE MISSING!""" ; - sc:name "SRHR" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31761003" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0593, - edam:topic_3172, - edam:topic_3390, - edam:topic_3520 ; - sc:citation , - "pmcid:PMC6918257", - "pubmed:31703392" ; - sc:description """Metabolomics Test Materials for Quality Control. - -NIST supports accurate and compatible measurements by certifying and providing over 1200 Standard Reference Materials. - -Updated NIST Lockbox Address Effective 10/10/2018. - -Browse SRMs by Technical Category. - -Search for Materials - Find an SRM/RM. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Metabolomics Test Materials Quality Control', 'urine', 'ILS'""" ; - sc:featureList edam:operation_2428, - edam:operation_3435, - edam:operation_3891 ; - sc:name "SRMs" ; - sc:url "http://www.nist.gov/srm" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , "pubmed:31504202" ; @@ -68924,16 +55485,8 @@ Search for Materials - Find an SRM/RM. sc:name "SSASU" ; sc:url "https://github.com/brossetti/ssasu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749 ; - sc:citation , - "pubmed:31536009" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | Designing a Sum of Squared Correlations Framework for Enhancing SSVEP-Based BCIs | This study illustrates and evaluates a novel subject-specific target detection framework, sum of squared correlations (SSCOR), for improving the performance of steady-state visual evoked potential (SSVEP) based brain-computer interfaces (BCIs). The SSCOR spatial filter learns a common SSVEP representation space through the optimization of the individual SSVEP templates. The projection onto this SSVEP response subspace improves the signal to noise ratio (SNR) of the SSVEP components embedded in the recorded electroencephalographic (EEG) data. To demonstrate the effectiveness of the proposed framework, the target detection performance of the SSCOR method is compared with the state of the art task-related component analysis (TRCA). The evaluation is conducted on a 40 target SSVEP benchmark data collected from 35 subjects" ; - sc:name "SSCOR" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31536009" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_2828, edam:topic_3306 ; @@ -68950,7 +55503,7 @@ X-ray crystallography and electron microscopy maps resolved to 3-8 Å are genera sc:url "https://github.com/salilab/SSEThread" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0128, edam:topic_0154, @@ -68975,7 +55528,7 @@ Estimation of binding affinity change upon mutations at protein-protein interfac sc:url "https://zhanglab.ccmb.med.umich.edu/SSIPe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0821, edam:topic_3293 ; @@ -68988,7 +55541,7 @@ Estimation of binding affinity change upon mutations at protein-protein interfac sc:url "https://github.com/ahvdk/SSNpipe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3318, edam:topic_3382 ; @@ -69003,10 +55556,10 @@ Estimation of binding affinity change upon mutations at protein-protein interfac a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275, edam:topic_3336, @@ -69026,7 +55579,7 @@ https://github.com/ekraka/SSnet""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3361, edam:topic_3489 ; sc:citation , @@ -69040,7 +55593,7 @@ Recent standardization efforts for Tactile Internet (TI) and haptic codecs have sc:url "https://www.raniahassen.com/Research/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -69057,7 +55610,7 @@ Recent standardization efforts for Tactile Internet (TI) and haptic codecs have biotools:primaryContact "Juan Felipe Pérez Juste Abascal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3382, edam:topic_3398 ; @@ -69074,7 +55627,7 @@ Changes in blood flow velocity and distribution are vital in maintaining tissue sc:url "https://github.com/icbm-iupui/STAFF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0605, edam:topic_0654, @@ -69093,30 +55646,8 @@ We use Docker to develop and manage START-R. We invite you to verify that the fo sc:name "START-R" ; sc:url "https://github.com/thomasdenecker/START-R" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0121, - edam:topic_3170, - edam:topic_3172, - edam:topic_3308 ; - sc:citation , - "pmcid:PMC6823427", - "pubmed:31672995" ; - sc:description """comprehensive multi-omics dataset of B-cell differentiation in mouse. - -STATegra is a FP7 funded project that aims to develop. - -The STATegra project aims to develop new statistical methods and tools for the integrative analysis of diverse omics data for a more efficient use of the genomics technologies. Furthermore we aim to make them readily available to the research community through rapid and efficient implementation as user-friendly software packages. Among the data-types we consider: mRNA-seq, [...] . - -||| NAME (STATegra) SIMILAR TO (PUB. DIFFERENT) bio.tools/stategra (STATegRa)""" ; - sc:featureList edam:operation_2476, - edam:operation_2495, - edam:operation_3891 ; - sc:name "STATegra_autogenerated" ; - sc:url "http://www.stategra.eu/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3324, edam:topic_3395 ; @@ -69128,70 +55659,8 @@ The STATegra project aims to develop new statistical methods and tools for the i sc:name "STEM" ; sc:url "http://www.eclipse.org/stem" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0632, - edam:topic_3303, - edam:topic_3810, - edam:topic_3895 ; - sc:citation ; - sc:description """Sequence-to-function deep learning frameworks for synthetic biology. - -While synthetic biology has revolutionized our approaches to medicine, agriculture, and energy, the design of novel circuit components beyond nature-inspired templates can prove itself challenging without well-established design rules. - -This repository provides code for Valeri, Collins, et al. 2019. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/storm. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'toehold' (bio.tools/toehold), '91,534 toehold', 'sequence-to-function', 'toehold switches'""" ; - sc:featureList edam:operation_3095, - edam:operation_3695, - edam:operation_3891 ; - sc:license "GPL-3.0" ; - sc:name "STORM_autogenerated" ; - sc:url "http://www.github.com/midas-wyss/storm" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0196, - edam:topic_3673 ; - sc:citation , - "pmcid:PMC6873635", - "pubmed:31757201" ; - sc:description """an R package for multi-locus sequence typing from whole genome sequencing data. - -BACKGROUND:Multi-locus sequence typing (MLST) is a standard typing technique used to associate a sequence type (ST) to a bacterial isolate. When the output of whole genome sequencing (WGS) of a sample is available the ST can be assigned directly processing the read-set. Current approaches employ reads mapping (SRST2) against the MLST loci, k-mer distribution (stringMLST), selective assembly (GRAbB) or whole genome assembly (BIGSdb) followed by BLASTn sequence query. Here we present STRAIN (ST Reduced Assembly IdentificatioN), an R package that implements a hybrid strategy between assembly and mapping of the reads to assign the ST to an isolate starting from its read-sets. RESULTS:Analysis of 540 publicly accessible Illumina read sets showed STRAIN to be more accurate at correct allele assignment and new alleles identification compared to SRTS2, stringMLST and GRAbB""" ; - sc:featureList edam:operation_0523, - edam:operation_0525, - edam:operation_3227, - edam:operation_3840 ; - sc:name "STRAIN" ; - sc:url "https://gitlab.com/DalsaMat/STRAIN" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0632, - edam:topic_0749, - edam:topic_3295, - edam:topic_3382 ; - sc:citation , - "pubmed:31832687" ; - sc:description """fluorescence method for direct, specific in situ detection of individual single- or double-strand DNA breaks in fixed cells. - -We here describe a technique termed STRIDE (SensiTive Recognition of Individual DNA Ends), which enables highly sensitive, specific, direct in situ detection of single- or double-strand DNA breaks (sSTRIDE or dSTRIDE), in nuclei of single cells, using fluorescence microscopy. The sensitivity of STRIDE was tested using a specially developed CRISPR Cas9 DNA damage induction system, capable of inducing small clusters or individual single- or double-strand breaks. - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/stride. - -||| NAME (STRIDE) SIMILAR TO (PUB. DIFFERENT) bio.tools/stride-assembly (StriDe)""" ; - sc:featureList edam:operation_0371, - edam:operation_3185, - edam:operation_3202 ; - sc:name "STRIDE_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31832687" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885 ; @@ -69211,7 +55680,7 @@ We here describe a technique termed STRIDE (SensiTive Recognition of Individual biotools:primaryContact "Vic Meles" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0154, edam:topic_2275, @@ -69234,7 +55703,7 @@ model_training_*.py are codes for parameter tuning in a server""" ; sc:url "https://github.com/dqwei-lab/STS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3382, @@ -69253,31 +55722,8 @@ model_training_*.py are codes for parameter tuning in a server""" ; sc:url "https://github.com/SpatialTranscriptomicsResearch/st_viewer" ; biotools:primaryContact "Jose Fernandez Navarro" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0140, - edam:topic_0154, - edam:topic_0621, - edam:topic_3047 ; - sc:citation , - "pubmed:31589422" ; - sc:description """A Stacked Ensemble Target Fishing Approach and its Application to Natural Products. - -Tool for predicting the protein targets of bioactive small molecules. - -STarFish is a Stacked Ensemble Target Fishing tool for small molecule target identification. STarFish takes a chemical structure as an input and provides a ranked list of potential protein targets along with a probability score for each. - -||| NAME (STarFish) SIMILAR TO (PUB. DIFFERENT) bio.tools/starfish (STARFISH)""" ; - sc:featureList edam:operation_2489, - edam:operation_3092, - edam:operation_3216, - edam:operation_3803 ; - sc:license "GPL-3.0" ; - sc:name "STarFish_autogenerated" ; - sc:url "https://github.com/ntcockroft/STarFish" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, edam:topic_3305, @@ -69296,23 +55742,16 @@ See the full documentation at: https://sting.readthedocs.io/""" ; sc:name "STing" ; sc:url "https://github.com/jordanlab/STing" . - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31390692" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'sustainability' | Sustainability assessment procedure for operations and production processes (SUAPRO) | Sustainability assessment is a fundamental step to support decisions towards sustainable development, and several procedures to assess the sustainability of antrophic production systems have been suggested. However, most of them lack a scientific-based construct supporting their conceptual model of sustainability, which usually results in a choice of indicator(s) without criterion that can best represent a fraction of the larger and deeper concept of sustainability. This work proposes a novel framework, named Sustainability Assessment Procedure for Operations and Production Processes (SUAPRO), supported by the PDCA four-step management method (plan, do, check, and act) and the five sectors sustainability (5SEnSU) model" ; - sc:name "SUAPRO" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31390692" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0140 ; sc:citation , @@ -69327,7 +55766,7 @@ See the full documentation at: https://sting.readthedocs.io/""" ; sc:url "http://wlab.ethz.ch/surfaceome/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3302, edam:topic_3305, @@ -69341,7 +55780,7 @@ There is a plethora of meat-borne hazards - including parasites - for which ther sc:url "https://survtools.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -69364,7 +55803,7 @@ There is a plethora of meat-borne hazards - including parasites - for which ther biotools:primaryContact "David B. Ascher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, edam:topic_2640, @@ -69385,7 +55824,7 @@ NB: If you are already a limix user, we recommend you install svca_limix and svc sc:url "https://github.com/damienArnol/svca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0625, @@ -69406,7 +55845,7 @@ SVJedi is a structural variation (SV) genotyper for long read data. Based on a r sc:url "https://github.com/llecompte/SVJedi.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3175, @@ -69426,7 +55865,7 @@ SVJedi is a structural variation (SV) genotyper for long read data. Based on a r biotools:primaryContact "Ira M. Hall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0798, edam:topic_3175, @@ -69447,7 +55886,7 @@ git clone https://github.com/EpiBlake/SVants.git""" ; sc:url "https://github.com/EpiBlake/SVants" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0114, edam:topic_0196, @@ -69467,7 +55906,7 @@ git clone https://github.com/EpiBlake/SVants.git""" ; sc:url "https://github.com/grocsvs/grocsvs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -69484,7 +55923,7 @@ git clone https://github.com/EpiBlake/SVants.git""" ; sc:url "https://github.com/Logic09/SW-Tandem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, edam:topic_3316 ; @@ -69500,7 +55939,7 @@ This is a distributed kmer counting tools for TB-PB sequencing dataset""" ; sc:url "https://github.com/mengjintao/SWAPCounter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3520, edam:topic_3673 ; @@ -69515,7 +55954,7 @@ This is a distributed kmer counting tools for TB-PB sequencing dataset""" ; sc:url "https://github.com/ChuangLi99/SWPepNovo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0593, edam:topic_3047 ; @@ -69537,7 +55976,7 @@ follow the instructions in the manual in order to get started""" ; sc:url "https://github.com/barakgilboa/SWiFi-software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3500 ; @@ -69551,7 +55990,7 @@ follow the instructions in the manual in order to get started""" ; sc:url "http://szn.i.hosei.ac.jp/HTML/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, edam:topic_0749 ; @@ -69566,7 +56005,7 @@ follow the instructions in the manual in order to get started""" ; sc:url "https://salmobase.org/apps/SalMotifDB/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, edam:topic_3407 ; @@ -69581,7 +56020,7 @@ follow the instructions in the manual in order to get started""" ; sc:url "https://gitlab.bio.di.uminho.pt/merlin-sysbio/merlin-sampler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -69603,7 +56042,7 @@ follow the instructions in the manual in order to get started""" ; "Jesús María Vázquez Cobos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0632, @@ -69624,7 +56063,7 @@ follow the instructions in the manual in order to get started""" ; biotools:primaryContact "Matthew N. Wakeling" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2229, edam:topic_3170, @@ -69639,7 +56078,7 @@ follow the instructions in the manual in order to get started""" ; sc:url "http://session.asuscomm.com:8080/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -69659,7 +56098,7 @@ follow the instructions in the manual in order to get started""" ; biotools:primaryContact "Carl Kingsford" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -69682,13 +56121,13 @@ Using the ScanFold web server you can identify regions of an RNA sequence which sc:url "https://mosslabtools.bb.iastate.edu/scanfold" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "ScanITD: detecting internal tandem duplication with robust variant allele frequency estimation" ; sc:name "ScanITD" ; sc:url "https://github.com/ylab-hi/ScanITD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, edam:topic_3170 ; @@ -69702,7 +56141,7 @@ Using the ScanFold web server you can identify regions of an RNA sequence which sc:url "https://github.com/VCCRI/Scavenger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3382, edam:topic_3489 ; @@ -69739,7 +56178,7 @@ The first pirate website in the world to open mass and public access to tens of sc:url "https://github.com/greenelab/scihub" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3305, @@ -69761,7 +56200,7 @@ The first pirate website in the world to open mass and public access to tens of biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3169, edam:topic_3170 ; @@ -69776,7 +56215,7 @@ MaizeCODE is a project aimed at identifying and analyzing functional elements in sc:url "https://sciapps.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3293, edam:topic_3297 ; @@ -69791,7 +56230,7 @@ MaizeCODE is a project aimed at identifying and analyzing functional elements in sc:url "http://www.scied.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0625, edam:topic_2229 ; @@ -69803,50 +56242,8 @@ MaizeCODE is a project aimed at identifying and analyzing functional elements in sc:name "ScisTree" ; sc:url "https://github.com/yufengwudcs/ScisTree" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0084, - edam:topic_0625, - edam:topic_2229 ; - sc:citation , - "pubmed:31504211" ; - sc:description "Accurate and Efficient Cell Lineage Tree Inference from Noisy Single Cell Data | Cell tree inference and genotype calling from noisy single cell data | ScisTree is a computer program for inferring cell tree and calling genotypes from uncertain single cell genotype data. If you use ScisTree, please cite: | The key feature of ScisTree is that it works with uncertain genotypes with individualized probability. That is, you can specify for each genotype (at a row/cell or column/site) different probabilities of being a particular genotype state. ScisTree allows both binary or ternary genotypes. Here is an example for binary genotypes. Note: don't include blank rows in the input genotype file" ; - sc:featureList edam:operation_0547, - edam:operation_3196, - edam:operation_3557 ; - sc:name "ScisTree_autogenerated" ; - sc:url "https://github.com/yufengwudcs/ScisTree" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3070, - edam:topic_3303, - edam:topic_3489 ; - sc:citation , - "pubmed:31710021" ; - sc:description """Comparing Bibliometric Analysis Using PubMed, Scopus, and Web of Science Databases. - -Elsevier’s Scopus, the largest abstract and citation database of peer-reviewed literature. Search and access research from the science, technology, medicine, social sciences and arts and humanities fields""" ; - sc:featureList edam:operation_2421, - edam:operation_3907 ; - sc:name "Scopus" ; - sc:url "http://www.scopus.com" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3170, - edam:topic_3673, - edam:topic_3676 ; - sc:citation , - "pmcid:PMC6680061", - "pubmed:31378808" ; - sc:description "A fast and scalable library for depth of coverage calculations | SeQuiLa User Guide — bdg-sequila 0.5.6-spark-2.4.3 documentation" ; - sc:featureList edam:operation_3192, - edam:operation_3680, - edam:operation_3800 ; - sc:name "SeQuiLa-cov" ; - sc:url "https://github.com/ZSI-Bio/bdg-sequila" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128 ; sc:citation , @@ -69866,14 +56263,14 @@ Elsevier’s Scopus, the largest abstract and citation database of peer-reviewed a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1475" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1756" ; - sc:name "Protein residue" ; - sc:sameAs "http://edamontology.org/data_1756" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1756" ; + sc:encodingFormat "http://edamontology.org/format_2077" ; + sc:name "Protein residue" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_1317 ; sc:description "Annotation of secondary structure elements in proteins." ; @@ -69885,7 +56282,7 @@ Elsevier’s Scopus, the largest abstract and citation database of peer-reviewed sc:url "http://webchem.ncbr.muni.cz/API/SecStr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -69905,7 +56302,7 @@ Elsevier’s Scopus, the largest abstract and citation database of peer-reviewed biotools:primaryContact "Bo Liao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3068, @@ -69931,14 +56328,14 @@ Elsevier’s Scopus, the largest abstract and citation database of peer-reviewed a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2084" ; - sc:name "Nucleic acid report" ; - sc:sameAs "http://edamontology.org/data_2084" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2084" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269, @@ -69958,7 +56355,7 @@ Elsevier’s Scopus, the largest abstract and citation database of peer-reviewed sc:url "https://github.com/felicityallen/SelfTarget" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3295 ; sc:citation , @@ -69972,7 +56369,7 @@ Elsevier’s Scopus, the largest abstract and citation database of peer-reviewed sc:url "https://github.com/ucrbioinfo/Selfish" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3300, edam:topic_3360 ; @@ -69983,7 +56380,7 @@ Elsevier’s Scopus, the largest abstract and citation database of peer-reviewed sc:url "http://Senequest.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3168, edam:topic_3810 ; @@ -69996,7 +56393,7 @@ Elsevier’s Scopus, the largest abstract and citation database of peer-reviewed sc:url "https://github.com/ncsa/Sentieon_DNASeq_Benchmarking" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3050, edam:topic_3837 ; @@ -70011,7 +56408,7 @@ Elsevier’s Scopus, the largest abstract and citation database of peer-reviewed sc:url "https://github.com/So-YeonBae/Sentinel1-Biodiversity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3810 ; sc:citation ; @@ -70020,26 +56417,8 @@ Elsevier’s Scopus, the largest abstract and citation database of peer-reviewed sc:name "Sentinel-1 SLC" ; sc:url "https://github.com/mrslab-iitb/sentinel-1-SLC-preprocessing-polarimetry" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0099, - edam:topic_3168, - edam:topic_3398, - edam:topic_3474 ; - sc:citation ; - sc:description """2-dimensional convolutional neural network on graph representation of synthetic sequences from massive-throughput assay. - -Abstract In recent years, a pipeline of massively parallel reporter assay (MPRA), and next-generation sequencing (NGS) provided large-scale datasets to investigate biological mechanisms in detail. However, bigger data often leads to larger complexity. As a result, theories derived from low-throughput experiments lose explanatory power, requiring new methods to create predictive models. Here we focus on modeling functions of nucleic acid sequences, as a study case of massive-throughput assays. We report a deep learning approach, training a two-dimensional convolutional neural network (CNN) on an ordered graph representation of nucleic acid sequences to predict their functions (Seq2DFunc). To compare the performance of Seq2DFunc with conventional methods, we obtained customized database on a CRISPR RNA processing assay. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0331, - edam:operation_3095, - edam:operation_3196 ; - sc:name "Seq2DFunc" ; - sc:url "https://doi.org/10.1101/2019.12.22.886085" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0082, @@ -70061,7 +56440,7 @@ Abstract In recent years, a pipeline of massively parallel reporter assay (MPRA) biotools:primaryContact "Prof. Michael Gromiha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3517 ; @@ -70074,7 +56453,7 @@ Abstract In recent years, a pipeline of massively parallel reporter assay (MPRA) sc:url "https://github.com/miguelperezenciso/SeqBreed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0121, edam:topic_0160, @@ -70091,7 +56470,7 @@ Abstract In recent years, a pipeline of massively parallel reporter assay (MPRA) sc:url "https://github.com/eancedeg/SeqDivA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, edam:topic_3673 ; @@ -70106,7 +56485,7 @@ Abstract In recent years, a pipeline of massively parallel reporter assay (MPRA) sc:url "http://denglab.info/SeqSero2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -70131,7 +56510,7 @@ Abstract In recent years, a pipeline of massively parallel reporter assay (MPRA) biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0218, @@ -70155,7 +56534,7 @@ Repository for the paper Modeling aspects of the language of life through transf sc:url "https://github.com/Rostlab/SeqVec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, edam:topic_3382 ; @@ -70167,7 +56546,7 @@ Repository for the paper Modeling aspects of the language of life through transf sc:url "https://vgteam.github.io/sequenceTubeMap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "The Sequencing Initiative Suomi (SISu) search engine offers a way to search for data on sequence variants in Finns. It provides valuable summary data for researchers and clinicians as well as other people having an interest in genetics in Finland. With SISu, you can examine the attributes and appearance of different variants in Finnish cohorts and see their aggregate distribution in Finland visualized on a map." ; @@ -70183,7 +56562,7 @@ Repository for the paper Modeling aspects of the language of life through transf biotools:primaryContact "Risto Kajanne" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3305, edam:topic_3418 ; @@ -70196,7 +56575,7 @@ Repository for the paper Modeling aspects of the language of life through transf sc:url "https://github.com/knightjimr/serocall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0804, edam:topic_3305, edam:topic_3324 ; @@ -70207,7 +56586,7 @@ Repository for the paper Modeling aspects of the language of life through transf sc:url "https://github.com/seroanalytics/serosolver" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3308 ; @@ -70220,7 +56599,7 @@ Repository for the paper Modeling aspects of the language of life through transf sc:url "https://github.com/qianhuiSenn/scRNA_cell_deconv_benchmark" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3315 ; sc:citation ; sc:description "Chromatin 3D structure reconstruction with consideration of adjacency relationship among genomic loci | [posMatrix,retVals]=ShNeigh(heatmapMatrix,method_type)" ; @@ -70228,7 +56607,7 @@ Repository for the paper Modeling aspects of the language of life through transf sc:url "https://github.com/fangzhen-li/ShNeigh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099, edam:topic_3474 ; @@ -70243,7 +56622,7 @@ Repository for the paper Modeling aspects of the language of life through transf sc:url "https://github.com/BackofenLab/ShaKer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -70265,18 +56644,18 @@ Repository for the paper Modeling aspects of the language of life through transf a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation , @@ -70291,7 +56670,7 @@ Repository for the paper Modeling aspects of the language of life through transf sc:url "https://github.com/AlgoLab/shark" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, edam:topic_0632 ; @@ -70307,7 +56686,7 @@ Repository for the paper Modeling aspects of the language of life through transf sc:url "http://meieringlab.uwaterloo.ca/shiftt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3297 ; sc:description "App developed in Shiny and usable in R environment that allows to visualize, explore, filter and extract data from FoodMicrobionet." ; @@ -70316,7 +56695,7 @@ Repository for the paper Modeling aspects of the language of life through transf sc:url "https://data.mendeley.com/datasets/8fwwjpm79y/1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, edam:topic_0602, @@ -70333,14 +56712,13 @@ Repository for the paper Modeling aspects of the language of life through transf a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3581" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3391, edam:topic_3473 ; @@ -70358,10 +56736,9 @@ Repository for the paper Modeling aspects of the language of life through transf a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:name "Experimental measurement" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0804, @@ -70383,7 +56760,7 @@ Repository for the paper Modeling aspects of the language of life through transf biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749, edam:topic_3382 ; @@ -70398,7 +56775,7 @@ Repository for the paper Modeling aspects of the language of life through transf sc:url "http://personal.psu.edu/dzj2/ShuTu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, edam:topic_0625 ; @@ -70415,7 +56792,7 @@ Accumulation and selection of somatic mutations in a Darwinian framework result sc:url "https://bitbucket.org/hamimzafar/siclonefit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3474 ; sc:citation , @@ -70426,32 +56803,8 @@ Situational judgment tests (SJTs) have emerged as a staple of assessment methodo sc:name "SiRJ" ; sc:url "https://grandjam.shinyapps.io/sirj" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0082, - edam:topic_0130, - edam:topic_0736 ; - sc:citation , - "pmcid:PMC6728967", - "pubmed:31492097" ; - sc:description "a computation tool to apply protein sequence statistics to predict folding and design in silico | We love Sibe and the work Sibe does. We work closely with our | Sibe is an analytical and computational framework, and it aims to provide a powerful tool for biological science, such as sequence data analysis, in silico protein folding and design. Though much of the software suite is oriented toward basic research on protein sequence analysis, folding and design, Sibe is also designed for extracting meaningful information hidden behind `big data' based on machine learning. With the help of statistical analysis methods, Sibe can infer co-evolutionary information encoded in protein amino acids sequences for protein folding and design. Now, Sibe includes seven easy-interfaced modules, several physical- & chemical-principles and statistical analysis methods, as well as different optimization solvers" ; - sc:featureList edam:operation_0303, - edam:operation_0474, - edam:operation_2415 ; - sc:name "Sibe" ; - sc:url "http://wyu.dgist.ac.kr/sibe" . - - a sc:SoftwareApplication ; - sc:citation , - "pmcid:PMC6691088", - "pubmed:31447764" ; - sc:description "> HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'bifurcation aneurysms bifurcation aneurysms', 'Sidewall bifurcation aneurysms bifurcation', 'aneurysms bifurcation aneurysms' | Bifurcation Configuration Is an Independent Risk Factor for Aneurysm Rupture Irrespective of Location | Background: Bifurcation and sidewall aneurysms have different rupture risks, but whether this difference comes from the location of the aneurysm is not clear. The objective of this study is to illustrate the rationality of ranking bifurcation configuration as an independent risk factor for aneurysm rupture. Methods: Morphological features of 719 aneurysms (216 ruptured) were automatically extracted from a consecutive cohort of patients via PyRadiomics. Rupture risks and morphological features were compared between bifurcation and sidewall aneurysms, and lasso regression was applied to explore the morphological determinants for rupture in bifurcation and sidewall aneurysms" ; - sc:featureList edam:operation_3659, - edam:operation_3891 ; - sc:name "Sidewall bifurcation aneurysms bifurcation aneurysms" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31447764" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170, @@ -70467,7 +56820,7 @@ Sierra is an R package designed for detecting differential transcript usage anal sc:url "https://github.com/VCCRI/Sierra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -70487,7 +56840,7 @@ Sierra is an R package designed for detecting differential transcript usage anal biotools:primaryContact "Andrew Fiore-Gartland" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -70504,7 +56857,7 @@ Sierra is an R package designed for detecting differential transcript usage anal sc:url "https://SigHotSpotter.lcsb.uni.lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3068, @@ -70523,7 +56876,7 @@ Sierra is an R package designed for detecting differential transcript usage anal biotools:primaryContact "Erik Bergstrom" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0154, edam:topic_0621, @@ -70546,7 +56899,7 @@ For GPU (suggest): pip3 install -r requirement.gpu.txt""" ; sc:url "https://github.com/mbilab/SigUNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, edam:topic_3169, @@ -70576,7 +56929,7 @@ Transcriptomic Cistromics (ChIP-Seq)""" ; sc:url "https://www.signalingpathways.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, edam:topic_2640 ; @@ -70591,7 +56944,7 @@ Transcriptomic Cistromics (ChIP-Seq)""" ; sc:url "https://github.com/bihealth/SigsPack" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_3382 ; @@ -70602,7 +56955,7 @@ Transcriptomic Cistromics (ChIP-Seq)""" ; sc:url "http://sikulix.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2840, @@ -70622,7 +56975,7 @@ Transcriptomic Cistromics (ChIP-Seq)""" ; biotools:primaryContact "César R. García-Jacas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3384, edam:topic_3855 ; @@ -70635,7 +56988,7 @@ Transcriptomic Cistromics (ChIP-Seq)""" ; sc:url "https://bitbucket.org/neatlabs/simbsi/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, edam:topic_3173, @@ -70652,7 +57005,7 @@ Simulate gene expression data where gene expression is determined by a linear in sc:url "https://github.com/Sim19/SimGEXPwMotifs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -70674,7 +57027,7 @@ Simulate gene expression data where gene expression is determined by a linear in "Veronika Suni" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053, edam:topic_3168 ; @@ -70692,7 +57045,7 @@ Methods to simulate genetic sequence data for pedigrees, with functionality to s sc:url "https://cran.r-project.org/web/packages/SimRVSequences/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, edam:topic_0623, @@ -70713,7 +57066,7 @@ To delete sequences, you can click on those you want deleted and click the "Dele sc:url "https://github.com/UdeS-CoBIUS/SimSpliceEvol" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3335, edam:topic_3384, edam:topic_3474 ; @@ -70724,7 +57077,7 @@ To delete sequences, you can click on those you want deleted and click the "Dele sc:url "http://simvascular.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3174, edam:topic_3512 ; @@ -70739,7 +57092,7 @@ To delete sequences, you can click on those you want deleted and click the "Dele sc:url "https://github.com/GATB/simka" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3305, edam:topic_3324 ; @@ -70752,7 +57105,7 @@ To delete sequences, you can click on those you want deleted and click the "Dele sc:url "https://simpactcyan.readthedocs.io/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130 ; sc:citation , @@ -70762,7 +57115,7 @@ To delete sequences, you can click on those you want deleted and click the "Dele sc:url "https://github.com/hscsun/SimpleDSFviewer-5.0.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0602, @@ -70788,25 +57141,8 @@ To delete sequences, you can click on those you want deleted and click the "Dele "Eduardo Pérez-Palma", "Marie Gramm" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_3050, - edam:topic_3277, - edam:topic_3382, - edam:topic_3500 ; - sc:citation , - "pmcid:PMC6917626", - "pubmed:31866739" ; - sc:description """From marine park to future genomic observatory? Enhancing marine biodiversity assessments using a biocode approach. - -The Biodiversity of Singapore""" ; - sc:featureList edam:operation_0308, - edam:operation_3200 ; - sc:name "Singapore" ; - sc:url "http://singapore.biodiversity.online" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation , "pmcid:PMC6715530", @@ -70817,7 +57153,7 @@ The Biodiversity of Singapore""" ; sc:url "https://github.com/pcahan1/singleCellNet/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_3170, @@ -70830,7 +57166,7 @@ The Biodiversity of Singapore""" ; sc:url "https://github.com/SCA-IRCM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, edam:topic_3474 ; @@ -70845,7 +57181,7 @@ The Biodiversity of Singapore""" ; sc:url "http://sinopedia.library.sh.cn/sparql" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3303, edam:topic_3360, @@ -70861,7 +57197,7 @@ SkinPhaser is a Shiny app of predicing the circadian phase using expression valu sc:url "https://github.com/gangwug/SkinPhaser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3474 ; @@ -70880,7 +57216,7 @@ SkinPhaser is a Shiny app of predicing the circadian phase using expression valu biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3512, edam:topic_3534 ; @@ -70894,7 +57230,7 @@ SkinPhaser is a Shiny app of predicing the circadian phase using expression valu sc:url "http://sliceit.soic.iupui.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3512 ; @@ -70907,17 +57243,8 @@ SkinPhaser is a Shiny app of predicing the circadian phase using expression valu sc:name "Smart-3SEQ" ; sc:url "https://github.com/jwfoley/Smart-3SEQ_paper_scripts" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3071 ; - sc:citation , - "pubmed:31442982" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'cuboids', 'cuboid', 'carefully-designed' | An Adaptive Data Management Architecture for the Real-Time Visualization of Spatiotemporal Datasets | Interactive visualization and exploration of large spatiotemporal data sets is difficult without carefully-designed data preprocessing and management tools. We propose a novel architecture for spatiotemporal data management. The architecture can dynamically update itself based on user queries. Datasets is stored in a tree-like structure to support memory sharing among cuboids in a logical structure of data cubes. An update mechanism is designed to create or remove cuboids on it, according to the analysis of the user queries, with the consideration of memory size limitation. Data structure is dynamically optimized according to different user queries. During a query process, user queries are recorded to predict the performance increment of the new cuboid" ; - sc:featureList edam:operation_0224 ; - sc:name "SmartCube" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31442982" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3360, edam:topic_3421, @@ -70934,7 +57261,7 @@ SkinPhaser is a Shiny app of predicing the circadian phase using expression valu sc:url "https://zhangzhiqiao2.shinyapps.io/Smart_cancer_predictive_system_HCC_2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3298, edam:topic_3337 ; @@ -70953,7 +57280,7 @@ The main function in the package utilizes a windowing function in the form of an sc:url "http://CRAN.R-project.org/package=SmoothWin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, edam:topic_3315 ; @@ -70966,32 +57293,8 @@ The main function in the package utilizes a windowing function in the form of an sc:name "Smudgeplots" ; sc:url "https://github.com/KamilSJaron/smudgeplot" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_0621, - edam:topic_0625, - edam:topic_0749, - edam:topic_3673 ; - sc:citation ; - sc:description """Establishment of an eHAP1 Human Haploid Cell Line Hybrid Reference Genome Assembled from Short and Long Reads. - -Sniffles provide two different output formats VCF and BEDPE. Here we describe the different output and information that is provided. - -Shows the type of the SVs. Sniffles report deletions (DEL), duplications (DUP), insertions (INS), inversion (INV) and translocations (TRA) as the standard types. Furthermore, we report inverted duplications (INVDUP). Sniffles report cases where it is not certain what type the SVs is e.g. DEL/INV. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/sniffles. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/sniffles (GITHUB.COM/fritzsedlazeck/Sniffles/wiki). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'eHAP1', 'ntEdit' (bio.tools/ntEdit), 'capture-clone', 'GridION'""" ; - sc:featureList edam:operation_0524, - edam:operation_0525, - edam:operation_3216 ; - sc:name "Sniffles_autogenerated" ; - sc:url "https://github.com/fritzsedlazeck/Sniffles/wiki/Output" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0605, edam:topic_0621, edam:topic_3474 ; @@ -71009,7 +57312,7 @@ Labeling and managing training datasets by hand is one of the biggest bottleneck sc:url "http://snorkel.stanford.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_2885, @@ -71030,7 +57333,7 @@ Labeling and managing training datasets by hand is one of the biggest bottleneck biotools:primaryContact "Weilong Guo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0769, @@ -71055,7 +57358,7 @@ Labeling and managing training datasets by hand is one of the biggest bottleneck biotools:primaryContact "B. Peng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3050, @@ -71078,7 +57381,7 @@ Labeling and managing training datasets by hand is one of the biggest bottleneck biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -71103,7 +57406,7 @@ Labeling and managing training datasets by hand is one of the biggest bottleneck biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_2640, @@ -71123,7 +57426,7 @@ Topological gene-set analysis has emerged as a powerful means for omic data inte sc:url "https://cran.r-project.org/web/packages/SourceSet/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0622, edam:topic_0780, @@ -71140,7 +57443,7 @@ Based on this strong local community in the field of agriculture, food, biodiver sc:url "https://southgreen.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3810 ; sc:description "A Galaxy instance focused on agriculture, food, biodiversity and environment, from the Agropolis campus in France." ; @@ -71150,14 +57453,13 @@ Based on this strong local community in the field of agriculture, food, biodiver a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -71178,7 +57480,7 @@ Based on this strong local community in the field of agriculture, food, biodiver biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3170, edam:topic_3308 ; @@ -71194,26 +57496,21 @@ Based on this strong local community in the field of agriculture, food, biodiver a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -71237,7 +57534,7 @@ Based on this strong local community in the field of agriculture, food, biodiver sc:url "https://mines.legumeinfo.org/soymine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:31550555" ; sc:description "> HOMEPAGE MISSING! | Towards a fast and reliable clustering for potentially divergent biological sequences | This paper presents SpCLUST, a new C++ package that takes a list of sequences as input, aligns them with MUSCLE, computes their similarity matrix in parallel and then performs the clustering. SpCLUST extends a previously released software by integrating additional scoring matrices which enables it to cover the clustering of amino-acid sequences. The similarity matrix is now computed in parallel according to the master slave distributed architecture, using MPI. Performance analysis, realized on two real datasets of 100 nucleotide sequences and 1049 amino-acids ones, show that the resulting library substantially outperforms the original Python package. The proposed package was also intensively evaluated on simulated and real genomic and protein data sets. The clustering results were compared to the most known traditional tools, such as UCLUST, CD-HIT and DNACLUST" ; @@ -71245,7 +57542,7 @@ Based on this strong local community in the field of agriculture, food, biodiver sc:url "https://github.com/johnymatar/SpCLUST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3308, edam:topic_3382, @@ -71261,25 +57558,8 @@ SpaCell has been developed for analysing spatial transcriptomics (ST) data, whic sc:name "SpaCell" ; sc:url "https://github.com/BiomedicalMachineLearning/SpaCell" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3308, - edam:topic_3382, - edam:topic_3474 ; - sc:citation , - "pubmed:31808789" ; - sc:description """integrating tissue morphology and spatial gene expression to predict disease cells. - -SpaCell has been developed for analysing spatial transcriptomics (ST) data, which include imaging data of tissue sections and RNA expression data across the tissue sections. The ST data add a novel spatial dimension to the traditional gene expression data from dissociated cells. SpaCell is desinged to integrates the two histopathological imaging and sequencing fields, with the ultimate aim to discover novel biology and to improve histopathological diagnosis in a quantitative and automated way""" ; - sc:featureList edam:operation_2454, - edam:operation_2495, - edam:operation_3799 ; - sc:license "MIT" ; - sc:name "SpaCell_autogenerated" ; - sc:url "https://github.com/BiomedicalMachineLearning/SpaCell" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -71299,7 +57579,7 @@ SpaCell has been developed for analysing spatial transcriptomics (ST) data, whic biotools:primaryContact "Zhong Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3384, @@ -71319,7 +57599,7 @@ SpaCell has been developed for analysing spatial transcriptomics (ST) data, whic biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308 ; @@ -71339,25 +57619,8 @@ SpaCell has been developed for analysing spatial transcriptomics (ST) data, whic sc:url "https://github.com/RachelQueen1/Spaniel" ; biotools:primaryContact "Rachel Queen" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_3168, - edam:topic_3512 ; - sc:citation ; - sc:description """A Publication-quality NGS Visualization Tool. - -SparK - Publication quality NGS data plotting (Version 2.4.1). - -SparK will exctract gene and transcript information from column 3 of the gff file. - -||| NAME (SparK) SIMILAR TO (PUB. DIFFERENT) bio.tools/SPar-K (SPar-K)""" ; - sc:featureList edam:operation_0337, - edam:operation_3435 ; - sc:name "SparK_autogenerated" ; - sc:url "https://github.com/harbourlab/SparK" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2830, edam:topic_3315, @@ -71372,7 +57635,7 @@ SparK will exctract gene and transcript information from column 3 of the gff fil sc:url "http://spark.apache.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0769, edam:topic_3168, @@ -71391,7 +57654,7 @@ SparkGA2 is an Apache Spark based scalable implementation of the best practice D sc:url "https://github.com/HamidMushtaq/SparkGA2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2229, edam:topic_3170, @@ -71409,16 +57672,8 @@ Spatially resolved transcriptomics providing gene expression profiles with posit sc:name "SpatialDB" ; sc:url "https://www.spatialomics.org/SpatialDB" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602 ; - sc:citation , - "pubmed:31449021" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'convGRU', 'saliency', 'attentive', 'eye-fixation' | Video Saliency Prediction using Spatiotemporal Residual Attentive Networks | This repository is the implementation of 'Video Saliency Prediction using Spatiotemporal Residual Attentive Networks (TIP2019)'" ; - sc:name "Spatiotemporal Residual Attentive Networks" ; - sc:url "https://github.com/ashleylqx/STRA-Net" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; sc:description """A new approach to estimating pairwise sequence alignments. @@ -71432,22 +57687,8 @@ To create filtered datasets run Bacterial_pipeline_part1.py and Bacterial_pipeli sc:name "Spectral Jaccard Similarity" ; sc:url "https://github.com/TavorB/spectral_jaccard_similarity" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3170, - edam:topic_3474, - edam:topic_3577 ; - sc:citation , - "pubmed:31501851" ; - sc:description "Fast density-aware spectral clustering for single and multi-omic data | Fast Adaptive Spectral Clustering for Single and Multi-View Data | A self-tuning spectral clustering method for single or multi-view data. 'Spectrum' uses a new type of adaptive density aware kernel that strengthens connections in the graph based on common nearest neighbours. It uses a tensor product graph data integration and diffusion procedure to integrate different data sources and reduce noise. 'Spectrum' uses either the eigengap or multimodality gap heuristics to determine the number of clusters. The method is sufficiently flexible so that a wide range of Gaussian and non-Gaussian structures can be clustered with automatic selection of K" ; - sc:featureList edam:operation_3432, - edam:operation_3694, - edam:operation_3860 ; - sc:license "AGPL-3.0" ; - sc:name "Spectrum_autogenerated" ; - sc:url "https://cran.r-project.org/web/packages/Spectrum/index.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304 ; sc:citation ; sc:description """SpikeInterface is an unified framework for spike sorting. @@ -71460,7 +57701,7 @@ Python-based module for extracting from, converting between, and interfacing wit sc:url "http://github.com/SpikeInterface" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3382, edam:topic_3406 ; @@ -71471,17 +57712,8 @@ Python-based module for extracting from, converting between, and interfacing wit sc:name "SpineJ" ; sc:url "https://github.com/flevet/SpineJ" . - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31385760" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | A Protein Multiple Sequence Alignment Refinement Method Based on Splitting-Splicing Vertically | BACKGROUND:Multiple sequence alignment (MSA) is a fundamental task in bioinformatics and is required for many biological analysis tasks. The more accurate the alignments are, the more credible the downstream analyses are. Most of the protein MSA algorithms realign alignment to refine it by dividing it into two groups horizontally and realign the two groups. However, this strategy doesn't consider that different regions of the sequences have different conservation, and this property may lead to incorrect residue-residue or residue-gap pairs which could not be corrected by this strategy. METHOD:Here, we present a novel refinement method based on splitting-splicing vertically, called SpliVert" ; - sc:featureList edam:operation_0322, - edam:operation_2089 ; - sc:name "SpliVert" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31385760" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0114, edam:topic_3320, edam:topic_3474 ; @@ -71498,7 +57730,7 @@ This is the source code for SpliceFinder""" ; sc:url "https://gitlab.deepomics.org/wangruohan/SpliceFinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320, edam:topic_3512, @@ -71520,7 +57752,7 @@ SpliceLauncher comes with a ready to use config.cfg file. It contains the paths sc:url "https://github.com/raphaelleman/SpliceLauncher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320, @@ -71542,7 +57774,7 @@ SpliceLauncher comes with a ready to use config.cfg file. It contains the paths biotools:primaryContact "Erik Flemington" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3307, edam:topic_3474 ; @@ -71556,7 +57788,7 @@ SpliceLauncher comes with a ready to use config.cfg file. It contains the paths sc:url "https://github.com/aaiitggrp/SpliceVec-g" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0621, edam:topic_3474 ; @@ -71571,7 +57803,7 @@ SpliceVisuL: Visualization of Bidirectional Long Short-term Memory Networks for sc:url "https://github.com/aaiitggrp/SpliceVisuL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3320, @@ -71591,7 +57823,7 @@ SpliceVisuL: Visualization of Bidirectional Long Short-term Memory Networks for biotools:primaryContact "Steve Monger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3174 ; @@ -71606,7 +57838,7 @@ SpliceVisuL: Visualization of Bidirectional Long Short-term Memory Networks for sc:url "https://anaconda.org/bioconda/spydrpick" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3293, @@ -71623,7 +57855,7 @@ SpliceVisuL: Visualization of Bidirectional Long Short-term Memory Networks for sc:url "https://github.com/Lab41/squiggle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, edam:topic_3674 ; @@ -71638,7 +57870,7 @@ SpliceVisuL: Visualization of Bidirectional Long Short-term Memory Networks for sc:url "http://bioserv.mps.ohio-state.edu/SssICalc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation , @@ -71656,7 +57888,7 @@ SpliceVisuL: Visualization of Bidirectional Long Short-term Memory Networks for biotools:primaryContact "Kevin Matlock" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, edam:topic_3474 ; @@ -71668,7 +57900,7 @@ SpliceVisuL: Visualization of Bidirectional Long Short-term Memory Networks for sc:url "https://bmll.cs.uno.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -71690,7 +57922,7 @@ SpliceVisuL: Visualization of Bidirectional Long Short-term Memory Networks for "Seung K. Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0625, edam:topic_2885, @@ -71707,7 +57939,7 @@ SpliceVisuL: Visualization of Bidirectional Long Short-term Memory Networks for sc:url "http://staphopia.emory.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_3293 ; @@ -71732,7 +57964,7 @@ SpliceVisuL: Visualization of Bidirectional Long Short-term Memory Networks for "Joe Herman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation ; @@ -71748,7 +57980,7 @@ SpliceVisuL: Visualization of Bidirectional Long Short-term Memory Networks for "Steven J. West" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0166, edam:topic_3169, @@ -71769,28 +58001,8 @@ StoatyDive is a tool to evaluate and classify predicted peak profiles to assess sc:name "StoatyDive" ; sc:url "https://anaconda.org/bioconda/stoatydive" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3377, - edam:topic_3379 ; - sc:citation , - "pmcid:PMC6892578", - "pubmed:31832289" ; - sc:description """Effect of Paper- and Computer-based Simulated Instructions on Clinical Reasoning Skills of Undergraduate Medical Students. - -Build Interactive E-Learning with Storyline 3. - -Create virtually any interaction you can imagine, in minutes. And with latest perpetual version, you'll be able to deliver mobile courses effortlessly. - -Clicking this link will get you banned. - -Compare Storyline 3 to Articulate 360. - -Create interactive courses for any device""" ; - sc:name "Storyline" ; - sc:url "https://articulate.com/p/storyline-3" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3305, edam:topic_3324 ; @@ -71805,7 +58017,7 @@ Create interactive courses for any device""" ; sc:url "http://strainhub.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3308, edam:topic_3360, @@ -71831,7 +58043,7 @@ python learn.py dataset/dataset_learn_v2_005.limma.csv dataset/dataset_learn_v2_ sc:url "https://github.com/bhi-kimlab/StressGenePred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0625, edam:topic_3300, @@ -71847,7 +58059,7 @@ python learn.py dataset/dataset_learn_v2_005.limma.csv dataset/dataset_learn_v2_ sc:url "https://github.com/samsoon-inayat/string_pulling_mouse_matlab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_2885 ; @@ -71863,7 +58075,7 @@ python learn.py dataset/dataset_learn_v2_005.limma.csv dataset/dataset_learn_v2_ sc:url "https://github.com/CarlborgGenomics/Stripes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -71883,7 +58095,7 @@ python learn.py dataset/dataset_learn_v2_005.limma.csv dataset/dataset_learn_v2_ sc:url "http://mouse.genebee.msu.ru/tools/StructAlign.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0166, @@ -71903,7 +58115,7 @@ python learn.py dataset/dataset_learn_v2_005.limma.csv dataset/dataset_learn_v2_ biotools:primaryContact "Matthias Rarey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697, edam:topic_3837 ; @@ -71916,7 +58128,7 @@ python learn.py dataset/dataset_learn_v2_005.limma.csv dataset/dataset_learn_v2_ sc:url "https://github.com/leylabmpi/Struo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3063, edam:topic_3379 ; @@ -71931,7 +58143,7 @@ python learn.py dataset/dataset_learn_v2_005.limma.csv dataset/dataset_learn_v2_ sc:url "https://studyportal.uni-muenster.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0153, edam:topic_3314, edam:topic_3448 ; @@ -71944,7 +58156,7 @@ python learn.py dataset/dataset_learn_v2_005.limma.csv dataset/dataset_learn_v2_ sc:url "http://www.biomatsite.net/suave-software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2258, edam:topic_2275, @@ -71963,7 +58175,7 @@ python learn.py dataset/dataset_learn_v2_005.limma.csv dataset/dataset_learn_v2_ sc:url "https://github.com/susanhleung/SuCOS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0209, edam:topic_0621, edam:topic_0634, @@ -71981,7 +58193,7 @@ MOTIVATION:Mitochondria are an essential organelle in most eukaryotes. They not sc:url "https://github.com/QUST-AIBBDRC/SubMito-XGBoost/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -72002,7 +58214,7 @@ MOTIVATION:Mitochondria are an essential organelle in most eukaryotes. They not biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0152, @@ -72022,46 +58234,21 @@ MOTIVATION:Mitochondria are an essential organelle in most eukaryotes. They not a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0621, @@ -72080,7 +58267,7 @@ MOTIVATION:Mitochondria are an essential organelle in most eukaryotes. They not biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623 ; sc:description "SulfAtlas describes the family and sub-families of structurally-related sulfatases. Sub-families are created based on phylogenetic analyses and essentially correspond to different substrate specificities." ; @@ -72088,7 +58275,7 @@ MOTIVATION:Mitochondria are an essential organelle in most eukaryotes. They not sc:url "http://abims.sb-roscoff.fr/sulfatlas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -72109,7 +58296,7 @@ MOTIVATION:Mitochondria are an essential organelle in most eukaryotes. They not biotools:primaryContact "Doug Speed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -72130,7 +58317,7 @@ MOTIVATION:Mitochondria are an essential organelle in most eukaryotes. They not biotools:primaryContact "Zhiao Shi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -72152,7 +58339,7 @@ MOTIVATION:Mitochondria are an essential organelle in most eukaryotes. They not "Lei Song" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3474, edam:topic_3794 ; @@ -72164,7 +58351,7 @@ MOTIVATION:Mitochondria are an essential organelle in most eukaryotes. They not sc:url "https://github.com/aamir-mustafa/super-resolution-adversarial-defense" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, edam:topic_2640, @@ -72180,7 +58367,7 @@ Super CRF toolbox for training an conditional random field in combination with s sc:url "https://github.com/Henrik86/SuperCRF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3384, edam:topic_3444 ; @@ -72194,7 +58381,7 @@ Super CRF toolbox for training an conditional random field in combination with s sc:url "https://github.com/jianlin-cheng/SuperCryoEMPicker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0625, @@ -72217,7 +58404,7 @@ Super CRF toolbox for training an conditional random field in combination with s biotools:primaryContact "Ivan Vogel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382 ; @@ -72238,27 +58425,8 @@ Super CRF toolbox for training an conditional random field in combination with s sc:url "https://github.com/sverger/SurfCut" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3382, - edam:topic_3519 ; - sc:citation , - "pubmed:31613751" ; - sc:description """Online Surfel-Based Mesh Reconstruction. - -Real-time surfel-based mesh reconstruction from RGB-D video. - -SurfelMeshing is an approach for real-time surfel-based mesh reconstruction from RGB-D video, described in the following article:. - -The repository contains the SurfelMeshing application and the library it is based on, libvis. The library is work-in-progress and it is not recommended to use it for other projects at this point""" ; - sc:featureList edam:operation_0337, - edam:operation_3435, - edam:operation_3799 ; - sc:license "BSD-3-Clause" ; - sc:name "SurfelMeshing" ; - sc:url "https://github.com/puzzlepaint/surfelmeshing" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3399, edam:topic_3421 ; @@ -72270,26 +58438,8 @@ The repository contains the SurfelMeshing application and the library it is base sc:name "SweGen" ; sc:url "https://swegen-exac.nbis.se/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0625, - edam:topic_2830, - edam:topic_3168 ; - sc:citation , - "pubmed:31844174" ; - sc:description """the high confidence HLA typing bio-resource drawn from 1000 Swedish genomes. - -There is a need to accurately call human leukocyte antigen (HLA) genes from existing short-read sequencing data, however there is no single solution that matches the gold standard of Sanger sequenced lab typing. Here we aimed to combine results from available software programs, minimizing the biases of applied algorithm and HLA reference. The result is a robust HLA population resource for the published 1000 Swedish genomes, and a framework for future HLA interrogation. HLA 2nd-field alleles were called using four imputation and inference methods for the classical eight genes (class I: HLA-A, HLA-B, HLA-C; class II: HLA-DPA1, HLA-DPB1, HLA-DQA1, HLA-DQB1, HLA-DRB1). A high confidence population set (SweHLA) was determined using an n-1 concordance rule for class I (four software) and class II (three software) alleles. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3196, - edam:operation_3227, - edam:operation_3557 ; - sc:name "SweHLA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31844174" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0621, edam:topic_0622, @@ -72310,25 +58460,8 @@ SwiftOrtho is orthology analysis tool which identifies orthologs, paralogs and c sc:name "SwiftOrtho" ; sc:url "https://github.com/Rinoahu/SwiftOrtho" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0610, - edam:topic_0769, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6915422", - "pubmed:31744156" ; - sc:description """A Novel Approach to Stroke Analysis During Swim Training Based on Attitude and Heading Reference System (AHRS). - -In a world where technology is assuming a pervasive role, sports sciences are also increasingly exploiting the possibilities opened by advanced sensors and intelligent algorithms. This paper focuses on the development of a convenient, practical, and low-cost system, SwimBIT, which is intended to help swimmers and coaches in performance evaluation, improvement, and injury reduction. Real-world data were collected from 13 triathletes (age 20.8 ± 3.5 years, height 173.7 ± 5.3 cm, and weight 63.5 ± 6.3 kg) with different skill levels in performing the four competitive styles of swimming in order to develop a representative database and allow assessment of the system's performance in swimming conditions. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'swimmers coaches', 'swimmers', 'AHRS', 'coaches'""" ; - sc:name "SwimBIT" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31744156" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3512 ; @@ -72343,7 +58476,7 @@ In a world where technology is assuming a pervasive role, sports sciences are al sc:url "https://github.com/azhu513/swishPaper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -72362,7 +58495,7 @@ In a world where technology is assuming a pervasive role, sports sciences are al biotools:primaryContact "Paul Scheet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_2885, @@ -72383,7 +58516,7 @@ Genomic differences range from single nucleotide differences to complex structur sc:url "https://schneebergerlab.github.io/syri/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3569 ; sc:citation , ; @@ -72396,7 +58529,7 @@ SymPy is an open source computer algebra system written in pure Python. It is bu sc:url "https://www.sympy.org/en/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3398, edam:topic_3895 ; @@ -72410,7 +58543,7 @@ SymPy is an open source computer algebra system written in pure Python. It is bu sc:url "https://synbiohub.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3304, edam:topic_3382, @@ -72432,7 +58565,7 @@ SynQuant performs better than peer unsupervised methods [5-8] for all the three sc:url "https://github.com/yu-lab-vt/SynQuant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Specific tools for pre-processing datas in order to use them in SynTView." ; @@ -72440,7 +58573,7 @@ SynQuant performs better than peer unsupervised methods [5-8] for all the three sc:url "https://bioweb.pasteur.fr/packages/pack@SynTViewTools@0.0.1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, edam:topic_3308, @@ -72455,7 +58588,7 @@ SyntDB - the database of human long non-coding RNAs conserved across primates. C sc:url "http://syntdb.amu.edu.pl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0091, edam:topic_0102, @@ -72483,7 +58616,7 @@ Reference species (outer ring) Mus musculus Homo sapiens""" ; sc:url "http://syntenybrowser.jax.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0621, edam:topic_0749, @@ -72500,7 +58633,7 @@ Abstract Motivation Identifying the genes regulated by a given transcription fac sc:url "http://meme-suite.org/tools/tgene" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3379, edam:topic_3473 ; @@ -72518,7 +58651,7 @@ Yamada T, Kondo Y, Momosaki R. 2019. Automated data extraction software for medi sc:url "http://www.picoron.com/tlibrary/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3384, edam:topic_3444 ; @@ -72532,7 +58665,7 @@ Yamada T, Kondo Y, Momosaki R. 2019. Automated data extraction software for medi sc:url "https://github.com/dulei323/TMTSCCA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_0780, @@ -72553,7 +58686,7 @@ Problems during installation? Try our DOCKER file.""" ; sc:url "https://github.com/GonzalezLab/T-lex3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, edam:topic_3047, @@ -72578,7 +58711,7 @@ See available and generated models""" ; sc:url "http://tpsic.igcz.poznan.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3379, edam:topic_3390, edam:topic_3418 ; @@ -72590,7 +58723,7 @@ See available and generated models""" ; sc:url "http://T1DToolkit.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0659, @@ -72609,7 +58742,7 @@ See available and generated models""" ; "Nicolas J. Tourasse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, edam:topic_3518 ; @@ -72624,7 +58757,7 @@ See available and generated models""" ; sc:url "https://tacitus.app/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, edam:topic_3295, @@ -72643,7 +58776,7 @@ TAD-Lactuca is a tool to predict Topologically Associating Domains(TAD) boundary sc:url "https://github.com/LoopGan/TAD-Lactuca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3293, edam:topic_3697 ; @@ -72655,7 +58788,7 @@ TAD-Lactuca is a tool to predict Topologically Associating Domains(TAD) boundary sc:url "https://github.com/tada-alg/TADA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3512, @@ -72676,7 +58809,7 @@ TAD-Lactuca is a tool to predict Topologically Associating Domains(TAD) boundary sc:url "https://github.com/aitgon/tagoos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3382, @@ -72699,7 +58832,7 @@ TAD-Lactuca is a tool to predict Topologically Associating Domains(TAD) boundary biotools:primaryContact "H. Tronnolone" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3512, @@ -72719,29 +58852,8 @@ TAD-Lactuca is a tool to predict Topologically Associating Domains(TAD) boundary biotools:primaryContact "Tao Jiang", "Xinshu Xiao" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2269, - edam:topic_3474, - edam:topic_3794 ; - sc:citation , - "pmcid:PMC6860437", - "pubmed:31738786" ; - sc:description """A static analysis model for PHP vulnerabilities based on token and deep learning technology. - -With the widespread usage of Web applications, the security issues of source code are increasing. The exposed vulnerabilities seriously endanger the interests of service providers and customers. There are some models for solving this problem. However, most of them rely on complex graphs generated from source code or regex patterns based on expert experience. In this paper, TAP, which is based on token mechanism and deep learning technology, was proposed as an analysis model to discover the vulnerabilities of PHP: Hypertext Preprocessor (PHP) Web programs conveniently and easily. Based on the token mechanism of PHP language, a custom tokenizer was designed, and it unifies tokens, supports some features of PHP and optimizes the parsing. - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/tap. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'tokenizer'""" ; - sc:featureList edam:operation_1812, - edam:operation_3802 ; - sc:name "TAP_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31738786" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -72763,14 +58875,12 @@ With the widespread usage of Web applications, the security issues of source cod a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622 ; @@ -72785,7 +58895,7 @@ With the widespread usage of Web applications, the security issues of source cod sc:url "http://bioinfo.szn.it/tara-oceans-data-blast-service/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, @@ -72806,7 +58916,7 @@ With the widespread usage of Web applications, the security issues of source cod biotools:primaryContact "Jacob Beal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0121, edam:topic_0821, @@ -72827,25 +58937,8 @@ Xylanases are involved in lignocellulosic biomass degradation and the enzyme opt sc:name "TAXyl" ; sc:url "https://github.com/mehdiforoozandeh/TAXyl" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_2269, - edam:topic_3063, - edam:topic_3399 ; - sc:citation , - "pmcid:PMC6808839" ; - sc:description """1338. Development of a Novel Application for Differential Diagnosis of Tick-borne Diseases. - -AbstractBackgroundEarly diagnosis and treatment of tick-borne diseases (TBDs) is critical for mitigating their adverse health outcomes, but the differential diagnosis of TBDs is challenging because many symptoms are nonspecific and commonly used diagnostic assays have significant shortcomings. Furthermore, although the local incidence of TBDs is recognized as an important factor in diagnosis, tools to help clinicians formally consider surveillance data in their decision-making are not available. To address these gaps, Gryphon Scientific developed a differential diagnosis application (app) for TBDs that calculates a patient’s likelihood of infection with specific TBDs based on their symptoms, risk factors, and state of suspected tick exposure. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'TBDs', 'BBN', 'TBD', 'diagnosis'""" ; - sc:name "TBD-DDx" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6808839/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Database portal", "Web application" ; @@ -72867,39 +58960,8 @@ Leveraging clinical, genomic, and imaging data.""" ; sc:name "TB Portals" ; sc:url "https://tbportals.niaid.nih.gov" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2885, - edam:topic_3063, - edam:topic_3324, - edam:topic_3382 ; - sc:citation , - "pubmed:31838261" ; - sc:description """Comparative analysis of genomic variability for drug-resistant strains of Mycobacterium tuberculosis. - -International partnership for clinical informatics. - -and advanced research in tuberculosis. - -Leveraging clinical, genomic, and imaging data. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/hasp (NIAID.NIH.GOV), bio.tools/nephele (NIAID.NIH.GOV), bio.tools/spice (NIAID.NIH.GOV). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'TB Portals Program', 'DR-TB', 'TBPP', 'Comparative analysis genomic variability drug-resistant strains Mycobacterium tuberculosis'""" ; - sc:name "TB Portals_autogenerated" ; - sc:url "https://TBPortals.niaid.nih.gov" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_3365 ; - sc:citation , - "pubmed:31438175" ; - sc:description "> HOMEPAGE MISSING! | A Collaborative Work Platform for Multilingual Terminology Editing and Development | Terminology facilitates consistent use and semantic integration of heterogeneous, multimodal data within and across domains. This paper presents TBench (Termilology Workbench) for multilingual terminology editing and development within a distributed environment. TBench is a web-service Java tool consisting of two main functionalities that are knowledge construction (i.e.extended model based on ISO25964, batch reusing and constructing multilingual concept hierarchy and relationships) and collaborative control in order to achieve custom extensions, reuse, multilingual alignment, integration and refactoring" ; - sc:featureList edam:operation_3096 ; - sc:name "TBench" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31438175" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, edam:topic_3360, @@ -72915,7 +58977,7 @@ Leveraging clinical, genomic, and imaging data. sc:url "https://portal.gdc.cancer.gov/projects/TCGA-LGG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3293 ; sc:citation , @@ -72929,7 +58991,7 @@ Leveraging clinical, genomic, and imaging data. sc:url "https://github.com/bielcardona/TCGenerators" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0202, edam:topic_0749, @@ -72942,10 +59004,10 @@ Leveraging clinical, genomic, and imaging data. sc:featureList edam:operation_2436, edam:operation_2489 ; sc:name "TCMSP" ; - sc:url "https://tcmspw.com/tcmsp.php" . + sc:url "https://old.tcmsp-e.com/tcmsp.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -72963,39 +59025,12 @@ Leveraging clinical, genomic, and imaging data. sc:url "https://github.com/hammerlab/t-cell-relation-extraction" ; biotools:primaryContact "Eric Czech" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0632, - edam:topic_2275, - edam:topic_2830 ; - sc:citation , - "pubmed:31589793" ; - sc:description """Geometrical characterization of T cell receptor binding modes reveals class-specific binding to maximize access to antigen. - -Geometrical approach to characterise the pMHC/TCR binding modes. - -TCR CoM : TCR complex geometrical parameters. - -T cell receptor structural repertoire database. - -tcr_mhci_pos selection [,mhc_a=None [,tcr_a = None [,tcr_b = None [,mhc_a_init=1 [,mhc_a_final=180 [,tcr_a_init=1 [,tcr_a_final=109 [, tcr_b_init=1 [,tcr_b_final=116 [,state=None ]]]]]]]]]]. - -||| NAME (TCR) SIMILAR TO (PUB. DIFFERENT) bio.tools/tcr (tcR). - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/tcrmodel (IBBR.UMD.EDU)""" ; - sc:featureList edam:operation_0252, - edam:operation_0416, - edam:operation_3899 ; - sc:license "LGPL-3.0" ; - sc:name "TCR_autogenerated" ; - sc:url "https://tcr3d.ibbr.umd.edu/tcr_com" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -73011,7 +59046,7 @@ tcr_mhci_pos selection [,mhc_a=None [,tcr_a = None [,tcr_b = None [,mhc_a_init=1 sc:url "https://tcrex.biodatamining.be/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0154, edam:topic_0804, @@ -73031,7 +59066,7 @@ TCRpMHCmodels predicts the three-dimensional structure of TCR-pMHC class I compl sc:url "http://www.cbs.dtu.dk/services/TCRpMHCmodels/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640 ; sc:citation , @@ -73045,7 +59080,7 @@ TCRpMHCmodels predicts the three-dimensional structure of TCR-pMHC class I compl sc:url "https://github.com/lrgr/tcsm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, edam:topic_2640 ; @@ -73057,7 +59092,7 @@ TCRpMHCmodels predicts the three-dimensional structure of TCR-pMHC class I compl sc:url "http://www.cuilab.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3170, edam:topic_3308 ; @@ -73072,14 +59107,12 @@ TCRpMHCmodels predicts the three-dimensional structure of TCR-pMHC class I compl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -73097,19 +59130,18 @@ TCRpMHCmodels predicts the three-dimensional structure of TCR-pMHC class I compl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Cedric Notredame", - "Web Production" ; - sc:citation ; + "Job Dispatcher" ; + sc:citation , + ; sc:description "Multiple sequence alignment that combines several alignment methods." ; sc:featureList edam:operation_0492, edam:operation_2403 ; @@ -73124,18 +59156,16 @@ TCRpMHCmodels predicts the three-dimensional structure of TCR-pMHC class I compl ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/msa/tcoffee/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -73157,7 +59187,7 @@ TCRpMHCmodels predicts the three-dimensional structure of TCR-pMHC class I compl biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3384, edam:topic_3444 ; @@ -73170,21 +59200,8 @@ TCRpMHCmodels predicts the three-dimensional structure of TCR-pMHC class I compl sc:name "TDA" ; sc:url "http://www.stat.wisc.edu/~mchung/TDA" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3372 ; - sc:citation ; - sc:description """Analyzing test driven development based on GitHub evidence. - -Testing is an integral part of the software development lifecycle, approached with varying degrees of rigor by different process models. Agile process models advocate Test Driven Development (TDD) as one among their key practices for reducing costs and improving code quality. In this paper we comparatively analyze GitHub repositories that adopt TDD against repositories that do not, in order to determine how TDD affects a number of variables related to productivity and developer satisfaction, two aspects that should be considered in a cost-benefit analysis of the paradigm. In this study, we searched through GitHub and found that a relatively small subset of Java-based repositories can be seen to adopt TDD, and an even smaller subset can be confidently identified as rigorously adhering to TDD. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'same-size', 'commits', 'sentiment', 'cost-benefit'""" ; - sc:name "TDD" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.1920V3" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3168, edam:topic_3519 ; @@ -73200,14 +59217,14 @@ Testing is an integral part of the software development lifecycle, approached wi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3170, @@ -73224,13 +59241,13 @@ Testing is an integral part of the software development lifecycle, approached wi sc:url "https://github.com/sysu-yanglab/TDimpute" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "TE-Tracker is a program for detecting germline transposition events through whole-genome resequencing." ; sc:name "TE-Tracker" ; sc:url "http://www.genoscope.cns.fr/externe/tetracker/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3068, edam:topic_3305 ; @@ -73252,39 +59269,16 @@ In health economic literature, checklists or best practice recommendations on mo sc:name "TECH-VER" ; sc:url "https://www.imta.nl/techver" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_2885, - edam:topic_3379, - edam:topic_3517, - edam:topic_3518 ; - sc:citation , - "pubmed:31728565" ; - sc:description """Plasma ascorbic acid and the risk of islet autoimmunity and type 1 diabetes. - -The Environmental Determinants of Diabetes in the Young (TEDDY). - -NIDDK Central Repository - The Environmental Determinants of Diabetes in the Young (TEDDY) resource description, availability, and access. - -Access to samples for The Environmental Determinants of Diabetes in the Young (TEDDY) is currently only available via collaboration. Please contact the parent study to ask about ancillary study opportunities. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'islet autoimmunity', 'INTERPRETATION:Higher', 'ascorbic', 'islet'""" ; - sc:featureList edam:operation_0484, - edam:operation_3196, - edam:operation_3661 ; - sc:name "TEDDY" ; - sc:url "https://www.niddkrepository.org/studies/teddy" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0897" ; - sc:name "Protein property" ; - sc:sameAs "http://edamontology.org/data_0897" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0897" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "Protein property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0736 ; sc:citation ; @@ -73301,7 +59295,7 @@ Access to samples for The Environmental Determinants of Diabetes in the Young (T . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203 ; @@ -73321,7 +59315,7 @@ Access to samples for The Environmental Determinants of Diabetes in the Young (T biotools:primaryContact "Wei Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -73341,7 +59335,7 @@ Access to samples for The Environmental Determinants of Diabetes in the Young (T biotools:primaryContact "Christopher Pietras" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_2640, @@ -73359,7 +59353,7 @@ Access to samples for The Environmental Determinants of Diabetes in the Young (T sc:url "https://github.com/karakulahg/TEffectR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0199 ; @@ -73373,7 +59367,7 @@ Access to samples for The Environmental Determinants of Diabetes in the Young (T sc:url "https://mcstitzer.github.io/maize_TEs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0736, edam:topic_0749, @@ -73388,7 +59382,7 @@ Note: do not move or hard link TEsorter.py alone to anywhere else, as it rely on sc:url "https://github.com/zhangrengang/TEsorter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0749, edam:topic_3169, @@ -73409,28 +59403,8 @@ TFBSshape provides DNA shape features for transcription factor binding sites (TF sc:name "TFBSshape" ; sc:url "https://tfbsshape.usc.edu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0114, - edam:topic_0121, - edam:topic_0204, - edam:topic_0749, - edam:topic_3407 ; - sc:citation , - "pmcid:PMC6790063", - "pubmed:31606035" ; - sc:description """conservation, variation and implications for efflux-mediated antimicrobial resistance. - -BACKGROUND:TetR-family transcriptional regulators (TFTRs) are DNA binding factors that regulate gene expression in bacteria. Well-studied TFTRs, such as AcrR, which regulates efflux pump expression, are usually encoded alongside target operons. Recently, it has emerged that there are many TFTRs which act as global multi-target regulators. Our classical view of TFTRs as simple, single-target regulators therefore needs to be reconsidered. As some TFTRs regulate essential processes (e.g. metabolism) or processes which are important determinants of resistance and virulence (e.g. biofilm formation and efflux gene expression) and as TFTRs are present throughout pathogenic bacteria, they may be good drug discovery targets for tackling antimicrobial resistant infections. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'TetR-family transcription factors Gram-negative bacteria'""" ; - sc:featureList edam:operation_3482 ; - sc:name "TFTRs" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31606035" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, edam:topic_0659, @@ -73450,7 +59424,7 @@ Please switch to Chrome , Firefox , or Safari""" ; sc:url "http://service.bioinformatik.uni-saarland.de/tfmir2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, edam:topic_3173, @@ -73468,7 +59442,7 @@ Please switch to Chrome , Firefox , or Safari""" ; sc:url "https://github.com/benoukraflab/TFregulomeR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, edam:topic_0196, @@ -73484,7 +59458,7 @@ Please switch to Chrome , Firefox , or Safari""" ; sc:url "https://github.com/BGI-Qingdao/TGS-GapCloser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3474, edam:topic_3518 ; @@ -73497,7 +59471,7 @@ Please switch to Chrome , Firefox , or Safari""" ; sc:url "https://github.com/sap01/TGS-Lite-supplem/blob/master/README.md" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, edam:topic_3067 ; @@ -73511,27 +59485,8 @@ Please switch to Chrome , Firefox , or Safari""" ; sc:name "THBP" ; sc:url "https://github.com/xuyanbuaa/THBP" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3305, - edam:topic_3419, - edam:topic_3421 ; - sc:citation , - "pmcid:PMC6798006", - "pubmed:31681029" ; - sc:description """Pan-London Network for Psychosis-Prevention (PNP). - -Tower Hamlets Early Detection Service. - -I used to have so many problems, I didn’t feel that life was worth much. Being with THEDS has satisfied me because I feel that I have got the help and support I want. Service User Tower Hamlets. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Pan-London', 'PNP', 'South-London', 'CHR-P'""" ; - sc:featureList edam:operation_3760 ; - sc:name "THEDS" ; - sc:url "https://theds.elft.nhs.uk/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3055 ; sc:citation , @@ -73547,7 +59502,7 @@ I used to have so many problems, I didn’t feel that life was worth much. Being sc:url "https://github.com/daissi/thesias" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, edam:topic_0605, @@ -73567,26 +59522,8 @@ This tool consists of TILLING populations developed in tetraploid durum wheat cv sc:name "TILLinG" ; sc:url "http://wheat-tilling.com" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_0749, - edam:topic_2229, - edam:topic_3512 ; - sc:citation , - "pubmed:31875221" ; - sc:description """a conserved RNA structure that controls Tat expression and acts as a switch for HIV productive and latent infection. - -Tat protein is essential to fully activate HIV transcription and processing of viral mRNA, and therefore determines virus expression in productive replication and the establishment and maintenance of latent infection. Here, we used thermodynamic and structure analyses to define a highly conserved sequence-structure in tat mRNA that functions as Tat IRES modulator of tat mRNA (TIM-TAM). By impeding cap-dependent ribosome progression during authentic spliced tat mRNA translation, TIM-TAM stable structure impacts on timing and level of Tat protein hence controlling HIV production and infectivity along with promoting latency. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Tat IRES modulator tat mRNA'""" ; - sc:featureList edam:operation_3454 ; - sc:name "TIM-TAM" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31875221" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0821, edam:topic_3314 ; @@ -73601,7 +59538,7 @@ TITAN (elecTric fIeld generaTion And maNipulation) is being developed by:""" ; sc:url "https://titan-code.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0593, @@ -73623,7 +59560,7 @@ TITAN (elecTric fIeld generaTion And maNipulation) is being developed by:""" ; biotools:primaryContact "Franca Fraternali" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3379, edam:topic_3421 ; @@ -73637,7 +59574,7 @@ TITAN (elecTric fIeld generaTion And maNipulation) is being developed by:""" ; sc:url "http://medicalequipoise.com/tkrclinician" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, edam:topic_3300 ; @@ -73652,7 +59589,7 @@ TITAN (elecTric fIeld generaTion And maNipulation) is being developed by:""" ; sc:url "https://zhanglab.ccmb.med.umich.edu/TM-IMC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3170, edam:topic_3308, @@ -73667,20 +59604,8 @@ TITAN (elecTric fIeld generaTion And maNipulation) is being developed by:""" ; sc:name "TM3 seq" ; sc:url "https://lufpa.github.io/TM3Seq-Pipeline/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2258, - edam:topic_2640, - edam:topic_3369 ; - sc:citation ; - sc:description "> NAME EQUAL TO (PUB. DIFFERENT) bio.tools/tmap | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/fun (GDB.TOOLS) | > CORRECT NAME OF TOOL COULD ALSO BE 'TMAP available Python' | Visualization of Very Large High-Dimensional Data Sets as Minimum Spanning Trees | Visualize big high-dimensional data | tmap is a very fast visualization library for large, high-dimensional data sets | We suggest using faerun to plot the data layed out by tmap. But you can of course also use matplotlib (which might be to slow for large data sets and doesn't provide interactive features). Following, an example plot produced with tmap and matplotlib" ; - sc:featureList edam:operation_2422, - edam:operation_2942, - edam:operation_3891 ; - sc:name "TMAP_autogenerated" ; - sc:url "http://tmap.gdb.tools" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3293, edam:topic_3697 ; @@ -73694,7 +59619,7 @@ TITAN (elecTric fIeld generaTion And maNipulation) is being developed by:""" ; sc:url "http://healthstat.snu.ac.kr/software/tmat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3125, edam:topic_3176, edam:topic_3368 ; @@ -73707,28 +59632,8 @@ TITAN (elecTric fIeld generaTion And maNipulation) is being developed by:""" ; sc:name "TMB" ; sc:url "http://dna.engr.latech.edu/~tmbshare/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3384, - edam:topic_3404, - edam:topic_3416, - edam:topic_3474, - edam:topic_3577 ; - sc:citation ; - sc:description """Using artificial intelligence on dermatology conditions in Uganda. - -Creating Innovative Digital Health Solutions to Improve Healthcare for All. - -17,440 Total calls through our Call Centre in 2018. - -14,961 Whatsapp Conversations in 2018. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Using artificial intelligence dermatology conditions Uganda', 'skin', 'dermatological', 'dermatology'""" ; - sc:featureList edam:operation_3283 ; - sc:name "TMCG" ; - sc:url "https://tmcg.co.ug" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, edam:topic_0602, @@ -73743,28 +59648,8 @@ Creating Innovative Digital Health Solutions to Improve Healthcare for All. sc:name "TMPfold" ; sc:url "https://opm.phar.umich.edu/tmpfold_server" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0176, - edam:topic_0602, - edam:topic_0736, - edam:topic_3382 ; - sc:citation , - "pubmed:31710744" ; - sc:description """Computational simulations of TNF receptor oligomerization on plasma membrane. - -The interactions between tumor necrosis factors (TNFs) and their corresponding receptors (TNFRs) play a pivotal role in inflammatory responses. Upon ligand binding, TNFR receptors were found to form oligomers on cell surfaces. However, the underlying mechanism of oligomerization is not fully understood. In order to tackle this problem, molecular dynamics (MD) simulations have been applied to the complex between TNF receptor-1 (TNFR1) and its ligand TNF-α as a specific test system. The simulations on both all-atom (AA) and coarse-grained (CG) levels achieved the similar results that the extracellular domains of TNFR1 can undergo large fluctuations on plasma membrane, while the dynamics of TNFα-TNFR1 complex is much more constrained. - -||| HOMEPAGE BROKEN!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'TNF', 'TNFa-TNFR1'""" ; - sc:featureList edam:operation_0244, - edam:operation_2476, - edam:operation_3436 ; - sc:name "TNFR1" ; - sc:url "http://www.cbligand.org/downloads/TNF_TNFR1.pdb" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3295, edam:topic_3518 ; @@ -73780,7 +59665,7 @@ The interactions between tumor necrosis factors (TNFs) and their corresponding r sc:url "https://bioconductor.org/packages/TOAST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, edam:topic_3169, @@ -73797,7 +59682,7 @@ The interactions between tumor necrosis factors (TNFs) and their corresponding r sc:url "https://github.com/loosolab/TOBIAS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0625, edam:topic_0749, @@ -73817,7 +59702,7 @@ TOFF (i.e. Traits OF Fish) is a curated database focusing on functional trait in sc:url "http://toff-project.univ-lorraine.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3318, edam:topic_3384, @@ -73837,7 +59722,7 @@ TOFF (i.e. Traits OF Fish) is a curated database focusing on functional trait in biotools:primaryContact "Joseph Perl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3314, @@ -73854,18 +59739,8 @@ TOFF (i.e. Traits OF Fish) is a curated database focusing on functional trait in biotools:primaryContact "Joost Verburg", "Thomas Bortfeld" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3179, - edam:topic_3315 ; - sc:citation , - "pubmed:31515016" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/TOPAS | > CORRECT NAME OF TOOL COULD ALSO BE 'Geant4', 'TOPAS Geant4', 'Geant4 TOPAS', 'Reconfigurable' | Monte Carlo Processing on a Chip (MCoaC)-preliminary experiments toward the realization of optimal-hardware for TOPAS/Geant4 to drive discovery | Amongst the scientific frameworks powered by the Monte Carlo (MC) toolkit Geant4 (Agostinelli et al., 2003), the TOPAS (Tool for Particle Simulation) (Perl et al., 2012) is one. TOPAS focuses on providing ease of use, and has significant implementation in the radiation oncology space at present. TOPAS functionality extends across the full capacity of Geant4, is freely available to non-profit users, and is being extended into radiobiology via TOPAS-nBIO (Ramos-Mendez et al., 2018)" ; - sc:name "TOPAS_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31515016" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, edam:topic_0209, @@ -73883,7 +59758,7 @@ Job opportunities are available""" ; sc:url "http://pattilab.wustl.edu/software/toxcms" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -73904,7 +59779,7 @@ Job opportunities are available""" ; "Lee-Wei Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3050 ; sc:citation , @@ -73915,7 +59790,7 @@ Job opportunities are available""" ; sc:url "https://CRAN.R-project.org/package=TPD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168 ; @@ -73934,7 +59809,7 @@ Job opportunities are available""" ; "Francesca Demichelis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320, @@ -73958,7 +59833,7 @@ Job opportunities are available""" ; "Roberto Vera Alvarez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, @@ -73985,7 +59860,7 @@ Job opportunities are available""" ; sc:url "https://github.com/EpistasisLab/tpot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Suite" ; @@ -74000,7 +59875,7 @@ Job opportunities are available""" ; sc:url "http://tools.proteomecenter.org/software.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, edam:topic_3308 ; @@ -74013,7 +59888,7 @@ Job opportunities are available""" ; sc:url "https://github.com/plsysu/TRANSCUP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0780, edam:topic_3170, @@ -74031,14 +59906,14 @@ Job opportunities are available""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2830 ; @@ -74054,7 +59929,7 @@ Job opportunities are available""" ; biotools:primaryContact "Shaked Afik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3314, edam:topic_3393, edam:topic_3855 ; @@ -74074,7 +59949,7 @@ Monitoring Air Quality Along UTA TRAX Lines.""" ; sc:url "http://utahaq.chpc.utah.edu/aq/cgi-bin/mobile_data.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3520 ; @@ -74093,38 +59968,28 @@ Monitoring Air Quality Along UTA TRAX Lines.""" ; sc:url "https://sites.google.com/site/dhyeonyu/software" ; biotools:primaryContact "Donghyeon Yu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0654, - edam:topic_3517 ; - sc:citation , - "pmcid:PMC6904791", - "pubmed:31708118" ; - sc:description """National Implementation of Genome-wide Non-invasive Prenatal Testing as a First-Tier Screening Test in the Netherlands. - -The Netherlands launched a nationwide implementation study on non-invasive prenatal testing (NIPT) as a first-tier test offered to all pregnant women. This started on April 1, 2017 as the TRIDENT-2 study, licensed by the Dutch Ministry of Health. In the first year, NIPT was performed in 73,239 pregnancies (42% of all pregnancies), 7,239 (4%) chose first-trimester combined testing, and 54% did not participate. The number of trisomies 21 (239, 0.33%), 18 (49, 0.07%), and 13 (55, 0.08%) found in this study is comparable to earlier studies, but the Positive Predictive Values (PPV)-96% for trisomy 21, 98% for trisomy 18, and 53% for trisomy 13-were higher than expected. Findings other than trisomy 21, 18, or 13 were reported on request of the pregnant women; 78% of women chose to have these reported. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'NIPT'""" ; - sc:name "TRIDENT-2" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31708118" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2830 ; sc:citation , "pmcid:PMC7525938", "pubmed:32993478" ; - sc:description "Antigen receptors are characterized by an extreme diversity of specificities, which poses major computational and analytical challenges, particularly in the era of high-throughput immunoprofiling by next generation sequencing (NGS). The antigen receptor gene profiler tool (TRIP) offers the opportunity for an in-depth analysis based on the processing of the output files of the IMGT/HighV-Quest tool, a standard in NGS immunoprofiling, through a number of interoperable modules. These provide detailed information about antigen receptor gene rearrangements, including variable (V), diversity (D) and joining (J) gene usage, CDR3 amino acid and nucleotide composition and clonality of both T cell receptors (TR) and B cell receptor immunoglobulins (BcR IG), and characteristics of the somatic hypermutation within the BcR IG genes. TRIP is a web application implemented in R shiny." ; + sc:description "T-cell Receptor/Immunoglobulin Profiler (TRIP)" ; sc:featureList edam:operation_2403 ; sc:isAccessibleForFree true ; sc:license "MIT" ; - sc:name "TRIP - T-cell Receptor Immunoglobulin Profiler" ; + sc:name "tripr" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; sc:softwareVersion "1.0" ; sc:url "https://github.com/BiodataAnalysisGroup/TRIP" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0780, @@ -74145,7 +60010,7 @@ The Netherlands launched a nationwide implementation study on non-invasive prena biotools:primaryContact "Martin Mascher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -74166,7 +60031,7 @@ The Netherlands launched a nationwide implementation study on non-invasive prena "Vladimir Perovic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640 ; @@ -74188,7 +60053,7 @@ The Netherlands launched a nationwide implementation study on non-invasive prena "Sourav S. Bhowmick" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2229, edam:topic_3047 ; @@ -74202,50 +60067,8 @@ TRamWAy helps analyzing single molecule dynamics. It infers the diffusivity, dri sc:name "TRamWAy" ; sc:url "http://github.com/DecBayComp/TRamWAy" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0621, - edam:topic_3512, - edam:topic_3523, - edam:topic_3912 ; - sc:citation ; - sc:description """Large-scale transgenic Drosophila resource collections for loss- and gain-of-function studies. - -DRSC/TRiP Functional Genomics Resources. - -To date the TRiP has generated over 12,000 Drosophila RNAi stocks, and developed efficient vectors for RNAi that work in all tissues. For a detailed description of the the TRiP in vivo RNAi approach click here. - -TRiP vectors are distributed by the Drosophila Genome Resource Center (Bloomington, IL, USA). - -||| NAME (TRiP) SIMILAR TO (PUB. DIFFERENT) bio.tools/trip (TRIP). - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/bioplex_2.0 (HMS.HARVARD.EDU), bio.tools/bionumbers (HMS.HARVARD.EDU), bio.tools/netdecoder (HMS.HARVARD.EDU). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'RNAi', 'fly', 'TRiP-KO', 'TRiP-OE'""" ; - sc:featureList edam:operation_0308 ; - sc:name "TRiP_autogenerated" ; - sc:url "https://fgr.hms.harvard.edu/trip-in-vivo-fly-rnai" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_0203, - edam:topic_0634 ; - sc:citation , - "pmcid:PMC6876092", - "pubmed:31760951" ; - sc:description """a web tool for tissue-specific gene set enrichment analysis based on gene ontology. - -BACKGROUND:The Gene Ontology (GO) knowledgebase is the world's largest source of information on the functions of genes. Since the beginning of GO project, various tools have been developed to perform GO enrichment analysis experiments. GO enrichment analysis has become a commonly used method of gene function analysis. Existing GO enrichment analysis tools do not consider tissue-specific information, although this information is very important to current research. RESULTS:In this paper, we built an easy-to-use web tool called TS-GOEA that allows users to easily perform experiments based on tissue-specific GO enrichment analysis. TS-GOEA uses strict threshold statistical method for GO enrichment analysis, and provides statistical tests to improve the reliability of the analysis results. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_2238, - edam:operation_2436, - edam:operation_3672 ; - sc:name "TS-GOEA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31760951" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0736, @@ -74263,7 +60086,7 @@ BACKGROUND:The Gene Ontology (GO) knowledgebase is the world's largest source of biotools:primaryContact "Kenneth Watanabe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_0634, @@ -74291,7 +60114,7 @@ The Multi-Trait Collection (MTC) traits were previously reported in the work by sc:url "https://bioinfo.uth.edu/TSEADB/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, edam:topic_0602, @@ -74311,7 +60134,7 @@ Gene co-expression network (GCN) mining aims to mine gene modules with highly co sc:url "https://github.com/huangzhii/TSUNAMI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0804, edam:topic_2640 ; @@ -74323,61 +60146,8 @@ Gene co-expression network (GCN) mining aims to mine gene modules with highly co sc:name "TTAgP" ; sc:url "https://github.com/reumandc/tsvr" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0202, - edam:topic_0659, - edam:topic_3336, - edam:topic_3379 ; - sc:citation , - "pubmed:31691823" ; - sc:description """enriched resource for facilitating research and early development of targeted therapeutics. - -Therapeutic Target Database (TTD). - -Examples: EGFR ; Vascular endothelial growth factor ; Peramivir ; Renal cell carcinoma ... - -Examples: EGFR; Vascular endothelial growth factor; Peramivir; Renal cell carcinoma ... - -Examples: Cabozantinib ; Ebola virus infection ; Oseltamivir ... - -Examples: Cabozantinib; Ebola virus infection; Oseltamivir ... - -Statistics of Therapeutic Target Database (TTD) Update 2020. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/ttd. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/VARIDT (IDRBLAB.NET). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Therapeutic target database 2020'""" ; - sc:featureList edam:operation_0463, - edam:operation_2421, - edam:operation_2422 ; - sc:name "TTD_autogenerated" ; - sc:url "http://bidd.nus.edu.sg/group/ttd/ttd.asp" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0611, - edam:topic_3304, - edam:topic_3379 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'EEG', 'Python-based', 'Topography-based', 'ERPs' | Revealing the Temporal Dynamics in Non-invasive Electrophysiological recordings with Topography-based Analyses | Topography-based Temporal-analysis Toolbox (EEG) | Topography-based Temporal-analysis Toolbox | The preprint can be found in Biorxiv" ; - sc:featureList edam:operation_3891 ; - sc:name "TTT" ; - sc:url "https://github.com/TTT-EEG/TTT-EEG" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3334, - edam:topic_3421, - edam:topic_3444 ; - sc:citation , - "pubmed:31443866" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'TTTS', 'TTTS planner', 'twin-to-twin', 'TTTS surgeries' | Patient-specific preoperative planning and simulation platform for twin-to-twin transfusion syndrome fetal surgery | Twin-to-twin transfusion syndrome (TTTS) is a serious condition that may occur in pregnancies when two or more fetuses share the same placenta. It is characterized by abnormal vascular connections in the placenta that cause blood to flow unevenly between the babies. If left untreated, perinatal mortality occurs in 90% of cases, whilst neurological injuries are still present in TTTS survivors. Minimally invasive fetoscopic laser surgery is the standard and optimal treatment for this condition, but is technically challenging and can lead to complications. Acquiring and maintaining the required surgical skills need consistent practice, and a steep learning curve. An accurate preoperative planning is thus vital for complex TTTS cases" ; - sc:name "TTTS-GPS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31443866" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0769, edam:topic_3068 ; @@ -74394,7 +60164,7 @@ Your browser does not support the video tag""" ; sc:url "https://github.com/wershofe/TWOMBLI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "In the TXG-MAPr, users can analyze dose- and time-response curves, compound correlation plots and functional annotation of the WGCNA modules to derive mechanistic information of the toxicity. In addition, we included the prediction of transcription factor activities, as well as physical interactions between downstream proteins encoded by the transcriptome, which might be useful in analyzing the perturbations triggered by exposure with toxic compounds. Users can investigate module perturbation of the TG-GATEs compounds by looking at the module eigengene scores (EGS)" ; sc:featureList edam:operation_2945 ; @@ -74402,7 +60172,7 @@ Your browser does not support the video tag""" ; sc:url "https://txg-mapr.eu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_2275, edam:topic_3385, @@ -74422,7 +60192,7 @@ Back to UT Southwestern Back to UTSW Labs""" ; sc:url "https://www.utsouthwestern.edu/labs/nicastro/tygress/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0084, @@ -74445,30 +60215,8 @@ Back to UT Southwestern Back to UTSW Labs""" ; sc:url "https://tygs.dsmz.de" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0208, - edam:topic_0602, - edam:topic_2640, - edam:topic_2885, - edam:topic_3407 ; - sc:citation , - "pmcid:PMC6787984", - "pubmed:31601265" ; - sc:description """Polymorphisms of MTHFR and TYMS predict capecitabine-induced hand-foot syndrome in patients with metastatic breast cancer. - -BACKGROUND:Breast cancer is a global problem, and a large number of new cases are diagnosed every year. Capecitabine is effective in patients with metastatic breast cancer (MBC). Hand-foot syndrome (HFS) is a common adverse effect of capecitabine. In this study, we investigated the association between single nucleotide polymorphisms (SNPs) in genes involved in capecitabine metabolism pathways and capecitabine-induced HFS in Chinese patients with MBC to identify some predictive genetic biomarkers. METHODS:We selected 3 genes involved in capecitabine metabolism and screened genetic variants in these target genes. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'rs2853741 MTHFR rs3737964 MTHFR rs4846048', 'TYMS rs2606241 TYMS rs2853741 MTHFR', 'rs2606241 TYMS rs2853741 MTHFR rs3737964', 'MTHFR rs3737964 MTHFR rs4846048'""" ; - sc:featureList edam:operation_0308, - edam:operation_3196, - edam:operation_3439 ; - sc:name "TYMS rs2853741 MTHFR rs3737964 MTHFR" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31601265" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, edam:topic_0637, @@ -74487,7 +60235,7 @@ The "tranucleotide-derived Z-value Manhattan Distance” (TZMD) approach profile sc:url "https://github.com/Yizhuangzhou/TZMD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """Targeted Bisulfite Sequencing Analysis Pipeline A pipeline to analyze the data obtained from targeted bisulfite sequencing through the ion-torrent platform. @@ -74511,7 +60259,7 @@ TaBSAP is a pipeline to map bisulfite treated sequencing reads to a genome of in sc:url "https://github.com/pradyumnasagar/TaBSAP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0621, @@ -74532,7 +60280,7 @@ TaBSAP is a pipeline to map bisulfite treated sequencing reads to a genome of in biotools:primaryContact "Theragen Etex Bio Institute" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3489 ; sc:citation , @@ -74546,7 +60294,7 @@ Open source platform for hearing assessments,and general purpose questionnaires" sc:url "http://tabsint.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_3474 ; @@ -74559,7 +60307,7 @@ Open source platform for hearing assessments,and general purpose questionnaires" sc:url "https://github.com/azevedolab/taba" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -74574,22 +60322,8 @@ Open source platform for hearing assessments,and general purpose questionnaires" sc:name "TagGraph" ; sc:url "http://kronos.stanford.edu/TAG_GRAPH/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_3068 ; - sc:citation , - "pubmed:31696634" ; - sc:description """A New Descriptive Talent Identification Instrument Based on Teachers' Ratings. - -Talent identification based on multiple criteria is a common way of considering students for gifted education services. As part of a nationwide talent identification program led by UNK (New Generation Centre, Hungary of Talents Program, 2016-2020), we developed an online rating tool with which teachers could indicate the talent areas of their 5th grade students. Through several iterations-involving the translation, application, and analysis of Renzulli's Scales for Rating the Behavioral Characteristics of Superior Students questionnaire and a custom-made normative questionnaire-we developed a matrix-style competency rating instrument called TalentTiles. The primary aim of the instrument is to collect more realistic and reliable teacher-ratings on students. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3435 ; - sc:name "TalentTiles" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31696634" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0659, @@ -74607,7 +60341,7 @@ Talent identification based on multiple criteria is a common way of considering biotools:primaryContact "Xuan Ma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0659, edam:topic_0749, @@ -74631,7 +60365,7 @@ TargetScan predicts biological targets of miRNAs by searching for the presence o sc:url "http://www.targetscan.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0625, edam:topic_3336 ; @@ -74643,7 +60377,7 @@ TargetScan predicts biological targets of miRNAs by searching for the presence o sc:url "http://tgn.broadinstitute.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0780, edam:topic_3382, @@ -74660,28 +60394,8 @@ This is the repository for TasselNetv2, presented in:""" ; sc:name "TasselNetv2" ; sc:url "https://tinyurl.com/TasselNetv2" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0593, - edam:topic_2258, - edam:topic_3068 ; - sc:citation ; - sc:description """A Comprehensive Resource for Tautomerism Analyses. - -Tautomer Structures Extracted from Experimental Literature. - -Release 1 : Release 2 : Release 3 :. - -A spreadsheet (Tautomer_database_release_3.xlsx file) with 5,977 structures extracted from experimental literature representing 2,819 cases of tautomeric tuples (mostly tautomer pairs but also a few triples and higher-order tuples). All structures have been annotated with experimental conditions, structure identifiers, bibliographic references and types of tautomerism involved. The structures and experiment-related data were extracted from a total of 171 publications, including reviews reporting on multiple primary studies. - -2,819 Tautomeric Tuples Comprising 5,977 Structures. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'tautomeric entry', 'Tautomerism Analyses'""" ; - sc:featureList edam:operation_0335 ; - sc:name "Tautomer Database" ; - sc:url "https://cactus.nci.nih.gov/download/tautomer/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -74696,7 +60410,7 @@ A spreadsheet (Tautomer_database_release_3.xlsx file) with 5,977 structures extr sc:url "https://gitlab.com/rki_bioinformatics/TaxIt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0140, @@ -74715,7 +60429,7 @@ This is a curated an in-depth subcellular proteomic map of primary human CD4+ T sc:url "https://tcellatlas.kaust.edu.sa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3519 ; @@ -74731,7 +60445,7 @@ This is a curated an in-depth subcellular proteomic map of primary human CD4+ T sc:url "https://github.com/gersteinlab/texp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0209, edam:topic_0769, edam:topic_2258, @@ -74746,32 +60460,14 @@ This is a curated an in-depth subcellular proteomic map of primary human CD4+ T sc:name "TeachOpenCADD-KNIME" ; sc:url "https://hub.knime.com/volkamerlab/space/TeachOpenCADD" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3063, - edam:topic_3305 ; - sc:citation , - "pubmed:31713181" ; - sc:description """a Force Multiplier to Improve the Care of Skeletal Diseases in Underserved Communities. - -Project ECHO is committed to addressing the needs. - -of the most vulnerable populations by equipping communities with. - -the right knowledge, at the right place, at the right time. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Bone Health TeleECHO', 'ECHO' (bio.tools/echo)""" ; - sc:name "TeleECHO" ; - sc:url "https://echo.unm.edu/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Telescope is an open-source web application that tracks the progress of jobs submitted to remote servers using Sun Grid Engine (SGE) on-demand scheduling system. It allows remote scheduling of pre-defined pipelines, as well as re-scheduling queued jobs. Moreover, output files are rendered in HTML in real time, allowing the use of markdown and rich-text features. Telescope does not assume anything from the remote server, except for SSH connection. The connection is established using SSH key pairs that are stored after encrypted." ; sc:name "Telescope" ; sc:url "https://github.com/Mangul-Lab-USC/telescope" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_3170, @@ -74794,50 +60490,8 @@ All scripts needed to examine the sensitivity and biases of computational approa sc:softwareHelp ; sc:url "https://github.com/mlbendall/telescope" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0196, - edam:topic_3170, - edam:topic_3308, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6786656", - "pubmed:31568525" ; - sc:description """Characterization of the retrotranscriptome by accurate estimation of transposable element expression. - -Quantification of transposable element expression using RNA-seq. - -Statistical Performance of TE Quantification Methods. - -All scripts needed to examine the sensitivity and biases of computational approaches for quantifying TE expression: 1) unique counts, 2) best counts, 3) RepEnrich, 4) TEtranscripts, 5) RSEM, 6) SalmonTE, and 7) Telescope. - -Demonstration of Telescope's single-locus capabilites. - -Transposable element annotations used by Telescope. - -Single locus resolution of Transposable ELEment expression. - -Install Telescope using bioconda:. - -ENCODE data is obtained from the Sequence Read Archive. The data analyzed comes from two projects:. - -Computational Biology Institute at George Washington University. - -A BAM file (alignment.bam) and annotation (annotation.gtf) are included in the telescope package for testing. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/Telescope""" ; - sc:featureList edam:operation_2495, - edam:operation_3192, - edam:operation_3198, - edam:operation_3800, - edam:operation_3891 ; - sc:license "MIT" ; - sc:name "Telescope_autogenerated" ; - sc:softwareHelp ; - sc:url "https://github.com/mlbendall/telescope" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3673, @@ -74857,39 +60511,8 @@ A BAM file (alignment.bam) and annotation (annotation.gtf) are included in the t sc:url "https://www.dkfz.de/en/applied-bioinformatics/telomerehunter/telomerehunter.html" ; biotools:primaryContact "Lina Sieverling" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068 ; - sc:citation ; - sc:description """high-capacity magazines significantly increase fatality counts, and are becoming more prevalent. - -Background: There has been disagreement in the literature regarding whether public mass shootings are becoming more frequent, or more deadly, and whether high-capacity magazine (HCM) weaponry is associated with increased fatalities. Objective: We examined the 85 non-felony- and non-gang-related mass shootings with at least four people shot and killed that occurred in public places between 1995 to 2018 to examine the frequency and deadliness of public mass shootings, as well as the role of HCM weaponry in fatalities. Findings: The per-capita rate of public mass shootings with at least four people killed has not significantly increased since 1995 (Negative Binomial linear regression p=0.20), but public mass shootings with at least six people killed have been increasing by 6.9% per year (p=0.01). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'mass shootings'""" ; - sc:featureList edam:operation_3659, - edam:operation_3799 ; - sc:name "Temporal trends public mass shootings" ; - sc:url "https://mass-shooting-analytics.shinyapps.io/mass_shootings/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3360, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6873409", - "pubmed:31752864" ; - sc:description """Prediction of cognitive impairment via deep learning trained with multi-center neuropsychological test data. - -An end-to-end open source machine learning platform. - -Announcing the TensorFlow Dev Summit 2020 Learn more. - -TensorFlow is an end-to-end open source platform for machine learning. It has a comprehensive, flexible ecosystem of tools, libraries and community resources that lets researchers push the state-of-the-art in ML and developers easily build and deploy ML powered applications""" ; - sc:featureList edam:operation_3435 ; - sc:name "TensorFlow_autogenerated" ; - sc:url "https://www.tensorflow.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -74907,7 +60530,7 @@ TensorFlow is an end-to-end open source platform for machine learning. It has a sc:url "https://github.com/aritra90/TeraPCA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_0780, @@ -74927,7 +60550,7 @@ The preprint of the manuscript is 2019_Terminome-Seq.pdf or it can be downloaded sc:url "https://github.com/BenoitCastandet/Terminome_Seq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3316, edam:topic_3810 ; @@ -74938,25 +60561,8 @@ The preprint of the manuscript is 2019_Terminome-Seq.pdf or it can be downloaded sc:name "Terra" ; sc:url "https://data.terrapop.org/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3053, - edam:topic_3174, - edam:topic_3697, - edam:topic_3837 ; - sc:citation , - "pubmed:31728526" ; - sc:description """a public repository of curated and standardized metadata for terrestrial metagenomes. - -Microbiome studies focused on the genetic potential of microbial communities (metagenomics) became standard within microbial ecology. MG-RAST and the Sequence Read Archive (SRA), the two main metagenome repositories, contain over 202 858 public available metagenomes and this number has increased exponentially. However, mining databases can be challenging due to misannotated, misleading and decentralized data. The main goal of TerrestrialMetagenomeDB is to make it easier for scientists to find terrestrial metagenomes of interest that could be compared with novel datasets in meta-analyses. We defined terrestrial metagenomes as those that do not belong to marine environments. Further, we curated the database using text mining to assign potential descriptive keywords that better contextualize environmental aspects of terrestrial metagenomes, such as biomes and materials""" ; - sc:featureList edam:operation_0306, - edam:operation_0310, - edam:operation_0362, - edam:operation_3431 ; - sc:name "TerrestrialMetagenomeDB_autogenerated" ; - sc:url "https://webapp.ufz.de/tmdb" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_3168 ; @@ -74970,23 +60576,8 @@ Microbiome studies focused on the genetic potential of microbial communities (me sc:name "Tersect" ; sc:url "https://github.com/tomkurowski/tersect" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_3068, - edam:topic_3678 ; - sc:citation , - "pmcid:PMC6894108", - "pubmed:31801517" ; - sc:description """an application for evaluating the efficiency of Chinese input method engines in electronic medical record entry task. - -BACKGROUND:With the wide application of Electronic Medical Record (EMR) systems, it has become a daily work for doctors using keyboards to input clinical information into the EMR system. Chinese Input Method Engine (IME) is essential for doctors to convert pinyin to Chinese characters, and an efficient IME would improve doctors' healthcare work. We developed a tool (called TestIME) to evaluating the efficiency of the current IMEs used in doctors' working scenario. - -||| HOMEPAGE MISSING!""" ; - sc:name "TestIME" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31801517" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_2269 ; sc:citation , @@ -74997,7 +60588,7 @@ BACKGROUND:With the wide application of Electronic Medical Record (EMR) systems, sc:url "https://github.com/sbauldry/tetrad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3474 ; sc:citation , @@ -75011,26 +60602,21 @@ ThalPred: Development of Decision Model for Discriminating Thalassemia Trait and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -75053,27 +60639,8 @@ ThalPred: Development of Decision Model for Discriminating Thalassemia Trait and sc:softwareVersion "4.3.1-20210109" ; sc:url "https://bar.utoronto.ca/thalemine" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0621, - edam:topic_3420 ; - sc:citation , - "pubmed:31637690" ; - sc:description """Using mind mapping technology for personal preparedness planning. - -TheBrain is the most powerful way to capture, organize, and share your notes, files, and web links across all your devices. - -Ideas and relationships visualized. - -As you shift focus from topic to topic, TheBrain moves right along with you, showing your information and all the connections you've made. It's a natural extension of your thinking. Now you can see how things are connected and you'll never forget or lose an idea. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'preparedness', 'disaster preparedness', 'disaster', 'RESULTS:Mind'""" ; - sc:featureList edam:operation_2429 ; - sc:name "TheBrain" ; - sc:url "https://www.thebrain.com" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0607, edam:topic_3063, @@ -75091,7 +60658,7 @@ As you shift focus from topic to topic, TheBrain moves right along with you, sho biotools:primaryContact "Adrian Bickerstaffe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3307, @@ -75115,7 +60682,7 @@ As you shift focus from topic to topic, TheBrain moves right along with you, sho "Vladimir G. Tyuterev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0154 ; @@ -75129,7 +60696,7 @@ As you shift focus from topic to topic, TheBrain moves right along with you, sho sc:url "http://opig.stats.ox.ac.uk/webapps/therasabdab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3500 ; @@ -75147,7 +60714,7 @@ As you shift focus from topic to topic, TheBrain moves right along with you, sho biotools:primaryContact "Paulo Aguiar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0097, edam:topic_3474, edam:topic_3794 ; @@ -75163,14 +60730,14 @@ As you shift focus from topic to topic, TheBrain moves right along with you, sho a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3712" ; + sc:name "Mass spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Mass spectrum" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3172, @@ -75190,7 +60757,7 @@ As you shift focus from topic to topic, TheBrain moves right along with you, sho biotools:primaryContact "Computational Omics and Systems Biology Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, edam:topic_3520 ; @@ -75204,7 +60771,7 @@ As you shift focus from topic to topic, TheBrain moves right along with you, sho sc:url "http://bitbucket.org/searleb/thesaurus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -75221,20 +60788,8 @@ As you shift focus from topic to topic, TheBrain moves right along with you, sho sc:url "https://cm.jefferson.edu/threshold-seq/" ; biotools:primaryContact "Isidore Rigoutsos" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3418 ; - sc:citation , - "pubmed:31874566" ; - sc:description """A Novel Health Education Mobile Application for Mothers Who Have Experienced Intimate Partner Violence. - -Intimate partner violence (IPV) has well-documented adverse impact on survivors and their children. In this article, we describe the development and formative evaluation of a trauma-informed, user-friendly Smartphone-based mobile application (app) to address the unmet health needs and improve the well-being of mothers who have experienced IPV. A multidisciplinary team of IPV experts developed the app (called Thrive) in partnership with software developers. Thrive includes three sections: Myself (maternal self-care, stress coping skills), My Child (stress signs in children, talking to children about IPV, mother-child dyadic communication), and My Life (hospital- and community-based resources). Sixteen providers (social workers, IPV advocates, and health care providers) and eight IPV survivors provided feedback about Thrive via structured interviews. - -||| HOMEPAGE MISSING!""" ; - sc:name "Thrive" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31874566" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0769 ; @@ -75252,7 +60807,7 @@ Intimate partner violence (IPV) has well-documented adverse impact on survivors "Peter J. Park" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749, edam:topic_2885 ; @@ -75268,7 +60823,7 @@ Intimate partner violence (IPV) has well-documented adverse impact on survivors sc:url "https://github.com/yangao07/TideHunter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3277, edam:topic_3678 ; @@ -75279,27 +60834,8 @@ Intimate partner violence (IPV) has well-documented adverse impact on survivors sc:name "Time-energy" ; sc:url "https://github.com/dloghin/multicores-time-energy" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_0769, - edam:topic_3063 ; - sc:citation , - "pubmed:31621190" ; - sc:description """Refinement, reliability and validity of the Time Capture Tool (TimeCaT) using the Omaha System to support data capture for time motion studies. - -The intrinsic variability of clinical workflow demands a representative sampling and scheduling of observations. TimeCaT facilitates this with an observations scheduling module. - -The Touch-timestamp feature allows observers to redirect their attention to the environment being studied. Additionally, the capability to correct data during the observation ensures clean data for the principal investigator. - -Our novel 3-dimensional approach to capturing multi-tasking provides an easy, accurate and reliable means for recording real-world complex multi tasking scenarios""" ; - sc:featureList edam:operation_2428, - edam:operation_3454, - edam:operation_3799 ; - sc:name "TimeCaT" ; - sc:url "https://lopetegui.net/timecat/39/login/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0798, edam:topic_3168, edam:topic_3386 ; @@ -75313,7 +60849,7 @@ Our novel 3-dimensional approach to capturing multi-tasking provides an easy, ac sc:url "https://github.com/WhiteleyLab/Tn-seq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -75336,7 +60872,7 @@ Our novel 3-dimensional approach to capturing multi-tasking provides an easy, ac biotools:primaryContact "Keita Urashima" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0637, @@ -75361,7 +60897,7 @@ Our novel 3-dimensional approach to capturing multi-tasking provides an easy, ac biotools:primaryContact "Keita Urashima" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -75377,7 +60913,7 @@ Our novel 3-dimensional approach to capturing multi-tasking provides an easy, ac sc:url "http://cab.unina.it/cgi-bin/gb2/gbrowse/SL250/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -75397,7 +60933,7 @@ Our novel 3-dimensional approach to capturing multi-tasking provides an easy, ac "Paulo C. Carvalho" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, edam:topic_3474 ; @@ -75413,7 +60949,7 @@ Our novel 3-dimensional approach to capturing multi-tasking provides an easy, ac sc:url "http://topaz.csail.mit.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3382, edam:topic_3474 ; @@ -75427,7 +60963,7 @@ Our novel 3-dimensional approach to capturing multi-tasking provides an easy, ac sc:url "https://github.com/tbepler/topaz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, @@ -75450,7 +60986,7 @@ Our novel 3-dimensional approach to capturing multi-tasking provides an easy, ac sc:url "http://bioconductor.org/packages/release/bioc/html/topconfects.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, edam:topic_0634, @@ -75468,13 +61004,13 @@ Topological-tumour-graphs""" ; sc:url "https://github.com/Henrik86/Topological-tumour-graphs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "A post sequencing QC tool for Oxford Nanopore sequencers." ; sc:name "ToulligQC" ; sc:url "https://github.com/GenomicParisCentre/toulligQC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, edam:topic_3343 ; @@ -75486,18 +61022,8 @@ Topological-tumour-graphs""" ; sc:name "Tox21" ; sc:url "https://tripod.nih.gov/tox21/samples" . - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31764420" ; - sc:description """A Random Generator of Computational Phantoms for Bone Marrow Dosimetry. - -This study was motivated by the efforts to evaluate radiation risk for leukemia incidence in the Techa River cohort, where the main bone marrow dose contributors were Sr (bone-seeking beta emitters). Energy deposition in bone marrow targets was evaluated by simulating radiation particle transport using computational phantoms. The present paper describes the computer program Trabecula implementing an algorithm for parametric generation of computational phantoms, which serve as the basis for calculating bone marrow doses. Trabecula is a user-friendly tool that automatically converts analytical models into voxelized representations that are directly compatible as input to Monte Carlo N Particle code.""" ; - sc:featureList edam:operation_3431 ; - sc:name "Trabecula" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31764420" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3382 ; sc:citation , @@ -75508,7 +61034,7 @@ This study was motivated by the efforts to evaluate radiation risk for leukemia sc:url "https://www.cai-lab.org/tracemontage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3382, edam:topic_3421 ; @@ -75518,7 +61044,7 @@ This study was motivated by the efforts to evaluate radiation risk for leukemia sc:url "https://github.com/GuangWei-Zhang/TraCon-Toolbox/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Web API", "Web service" ; @@ -75538,7 +61064,7 @@ This study was motivated by the efforts to evaluate radiation risk for leukemia "Eivind Hovig" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0659, @@ -75559,7 +61085,7 @@ This study was motivated by the efforts to evaluate radiation risk for leukemia biotools:primaryContact "Neil Pearson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3384, @@ -75579,7 +61105,7 @@ This study was motivated by the efforts to evaluate radiation risk for leukemia sc:url "http://github.com/scilus/tractoflow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3382, @@ -75598,7 +61124,7 @@ This study was motivated by the efforts to evaluate radiation risk for leukemia biotools:primaryContact "Ignacio Arganda-Carreras" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3170, edam:topic_3308, @@ -75615,13 +61141,13 @@ The second version of NanoSim (v2.0.0) uses minimap2 as default aligner to align sc:url "https://github.com/bcgsc/NanoSim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "TransDecoder identifies candidate coding regions within transcript sequences, such as those generated by de novo RNA-Seq transcript assembly using Trinity, or constructed based on RNA-Seq alignments to the genome using Tophat and Cufflinks." ; sc:name "TransDecoder" ; sc:url "https://github.com/TransDecoder/TransDecoder/wiki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, @@ -75641,7 +61167,7 @@ The second version of NanoSim (v2.0.0) uses minimap2 as default aligner to align sc:url "https://sourceforge.net/projects/transcriptomeassembly/files/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0749, edam:topic_0780, @@ -75666,7 +61192,7 @@ A deep learning approach for precise prediction of eukaryotic transcription star sc:url "https://github.com/StepanAbstro/TransPrise" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084 ; @@ -75682,7 +61208,7 @@ A deep learning approach for precise prediction of eukaryotic transcription star biotools:primaryContact "Luca Ambrosino" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3382, edam:topic_3474 ; @@ -75697,7 +61223,7 @@ The repository contains the source code for a new Transformer-CNN method describ sc:url "https://github.com/bigchem/transformer-cnn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229 ; sc:citation , "pubmed:31835003" ; @@ -75708,7 +61234,7 @@ The repository contains the source code for a new Transformer-CNN method describ sc:url "https://github.com/rochus/transitionscalespace" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0821, edam:topic_3314, edam:topic_3512 ; @@ -75721,18 +61247,8 @@ The repository contains the source code for a new Transformer-CNN method describ sc:name "Transitivity" ; sc:url "http://www.vhcsgroup.com/transitivity" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3395, - edam:topic_3421 ; - sc:citation , - "pubmed:31432957" ; - sc:description "> LOW CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/Ribopeaks (COM.) | Virtual learning object in hematopoietic stem cell transplantation for autoimmune diseases | O Transplantar é um site desenvolvido para reunir pacientes, familiares, profissionais de saúde e interessados em receber orientações e informações sobre o Transplante Autólogo de Células-Tronco Hematopoéticas para doenças autoimunes. Encontre, em cada módulo, orientações de acordo com seus interesses e necessidades" ; - sc:name "Transplant" ; - sc:url "http://www.transplantardai.com.br" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0798, @@ -75753,7 +61269,7 @@ The repository contains the source code for a new Transformer-CNN method describ biotools:primaryContact "Maria Poptsova" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation "pubmed:31797618" ; sc:description "Tree-Weighting for Multi-Study Ensemble Learners." ; @@ -75761,7 +61277,7 @@ The repository contains the source code for a new Transformer-CNN method describ sc:url "https://github.com/m-ramchandran/tree-weighting" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3293, edam:topic_3305 ; @@ -75777,7 +61293,7 @@ The repository contains the source code for a new Transformer-CNN method describ sc:url "https://github.com/niemasd/TreeCluster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -75799,7 +61315,7 @@ The repository contains the source code for a new Transformer-CNN method describ "Xun Gu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3168, edam:topic_3301, @@ -75822,7 +61338,7 @@ TreeFix-TP is a program for reconstructing highly accurate transmission phylogen sc:url "https://compbio.engr.uconn.edu/software/treefix-tp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, edam:topic_3512 ; @@ -75837,7 +61353,7 @@ TreeFix-TP is a program for reconstructing highly accurate transmission phylogen sc:url "http://github.com/ekmolloy/treemerge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0623, edam:topic_3293 ; @@ -75851,7 +61367,7 @@ TreeFix-TP is a program for reconstructing highly accurate transmission phylogen sc:url "https://project.inria.fr/treerecs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, edam:topic_3500 ; @@ -75865,7 +61381,7 @@ TreeFix-TP is a program for reconstructing highly accurate transmission phylogen sc:url "http://www.treeshrewdb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0204, @@ -75888,7 +61404,7 @@ TreeFix-TP is a program for reconstructing highly accurate transmission phylogen biotools:primaryContact "Asa Thibodeau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, @@ -75911,7 +61427,7 @@ TreeFix-TP is a program for reconstructing highly accurate transmission phylogen "Bruna Plese" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_3489 ; @@ -75928,7 +61444,7 @@ Tripal is an open-source, resource-efficient toolkit for construction of genomic sc:url "https://gitlab.com/mainlabwsu/tripal_map" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3810 ; sc:description "TropGeneDB is a database that manages genomic, genetic and phenotypic information about tropical crops. It is organised on a crop basis." ; @@ -75936,7 +61452,7 @@ Tripal is an open-source, resource-efficient toolkit for construction of genomic sc:url "http://tropgenedb.cirad.fr/tropgene/JSP/index.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3173, @@ -75957,7 +61473,7 @@ Tripal is an open-source, resource-efficient toolkit for construction of genomic biotools:primaryContact "An Zheng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0625, @@ -75978,7 +61494,7 @@ Tripal is an open-source, resource-efficient toolkit for construction of genomic biotools:primaryContact "Yongzhuang Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, edam:topic_3512 ; @@ -75993,13 +61509,13 @@ Tripal is an open-source, resource-efficient toolkit for construction of genomic sc:url "http://tupaiabase.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Protein MD Setup tutorial using BioExcel Building Blocks - a Jupyter Notebook tutorial." ; sc:name "Tutorial: MD Setup" ; sc:url "https://github.com/bioexcel/biobb_wf_md_setup" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3399, edam:topic_3697 ; @@ -76010,7 +61526,7 @@ Tripal is an open-source, resource-efficient toolkit for construction of genomic sc:url "http://twinsuk.ac.uk/resources-for-researchers/access-our-data/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_3170, @@ -76033,7 +61549,7 @@ Please adress all you questions and comments using the "issue" tab of the reposi sc:url "https://github.com/clemgoub/TypeTE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3517 ; sc:citation , @@ -76045,7 +61561,7 @@ Please adress all you questions and comments using the "issue" tab of the reposi sc:url "https://github.com/Pill-GZ/U-PASS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -76067,7 +61583,7 @@ Please adress all you questions and comments using the "issue" tab of the reposi sc:url "http://ualcan.path.uab.edu/analysis.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Database portal", "Suite" ; @@ -76083,7 +61599,7 @@ This cross-resource infrastructure is essential for an efficient, modernized bio sc:url "https://github.com/UniBioDicts" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Utilities for handling sequences and assemblies from the UCSC Genome Browser project." ; @@ -76095,26 +61611,8 @@ This cross-resource infrastructure is essential for an efficient, modernized bio "Windows" ; sc:url "http://hgdownload.cse.ucsc.edu/downloads.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3390, - edam:topic_3393, - edam:topic_3575 ; - sc:citation , - "pubmed:31779571" ; - sc:description """Developing the Global Health Cost Consortium Unit Cost Study Repository for HIV and TB. - -Consistently defined, accurate, and easily accessible cost data are a valuable resource to inform efficiency analyses, budget preparation, and sustainability planning in global health. The Global Health Cost Consortium (GHCC) designed the Unit Cost Study Repository (UCSR) to be a resource for standardised HIV and TB intervention cost data displayed by key characteristics such as intervention type, country, and target population. - -||| HOMEPAGE BROKEN!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Health', 'GHCC', 'UCSR GHCC', 'Developing Global Health Cost Consortium Unit Cost Study Repository HIV TB'""" ; - sc:featureList edam:operation_2422 ; - sc:name "UCSR" ; - sc:url "https://ghcosting.org/pages/data/ucsr/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, edam:topic_3305, @@ -76129,7 +61627,7 @@ Consistently defined, accurate, and easily accessible cost data are a valuable r sc:url "https://ugicr.org.au/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0749, edam:topic_2885 ; @@ -76150,7 +61648,7 @@ Consistently defined, accurate, and easily accessible cost data are a valuable r biotools:primaryContact "Daniel Olson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3120, edam:topic_3168 ; @@ -76164,7 +61662,7 @@ Consistently defined, accurate, and easily accessible cost data are a valuable r sc:url "https://gitlab.com/vincent-sater/umi-varcal-master" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -76186,7 +61684,7 @@ Consistently defined, accurate, and easily accessible cost data are a valuable r biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -76206,7 +61704,7 @@ Consistently defined, accurate, and easily accessible cost data are a valuable r biotools:primaryContact "Matt Wilkerson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, edam:topic_3382, @@ -76228,7 +61726,7 @@ Urakubo, H., Bullmann, T., Kubota, Y., Oba, S., Ishii, S., UNI-EM: An Environmen sc:url "https://github.com/urakubo/UNI-EM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_1775, edam:topic_3518 ; @@ -76243,7 +61741,7 @@ Urakubo, H., Bullmann, T., Kubota, Y., Oba, S., Ishii, S., UNI-EM: An Environmen sc:url "http://unipred.di.unimi.it" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3335, edam:topic_3337, @@ -76264,7 +61762,7 @@ Urakubo, H., Bullmann, T., Kubota, Y., Oba, S., Ishii, S., UNI-EM: An Environmen sc:url "http://www.unravelrdp.nl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3384, edam:topic_3444, @@ -76286,7 +61784,7 @@ UNet++ is a new general purpose image segmentation architecture for more accurat sc:url "https://github.com/MrGiovanni/UNetPlusPlus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3382, edam:topic_3474 ; @@ -76299,13 +61797,13 @@ UNet++ is a new general purpose image segmentation architecture for more accurat sc:url "https://www.github.com/visiontao/uovos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "A Convolution Neural Network (CNN) model to classify publications with accession annotations according to UniProtKB categories" ; sc:name "UPCLASS" ; sc:url "http://goldorak.hesge.ch/bioexpclass/upclass/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0621, edam:topic_0637, @@ -76328,7 +61826,7 @@ Unspecific Peroxygenase Database (UPObase) is a genome mining pipeline based dat sc:url "http://upobase.bioinformaticsreview.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_2229, @@ -76343,7 +61841,7 @@ Unspecific Peroxygenase Database (UPObase) is a genome mining pipeline based dat sc:url "http://www.urcfg.ucla.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3384, edam:topic_3444 ; @@ -76357,7 +61855,7 @@ Caucasian and Chinese Brain templates [US200 CN200]""" ; sc:url "https://www.nitrc.org/projects/us200_cn200/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3335, edam:topic_3379 ; @@ -76370,7 +61868,7 @@ Caucasian and Chinese Brain templates [US200 CN200]""" ; sc:url "http://ut-heart.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308 ; @@ -76389,7 +61887,7 @@ Caucasian and Chinese Brain templates [US200 CN200]""" ; biotools:primaryContact "Refael Kohen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0659, edam:topic_0749, @@ -76411,14 +61909,14 @@ The UTRome.org database is intended as a comprehensive resource for 3'UTR biolog a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0622, @@ -76437,19 +61935,8 @@ The UTRome.org database is intended as a comprehensive resource for 3'UTR biolog "2.7.0" ; sc:url "https://github.com/CPTR-ReSeqTB/UVP" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_0780, - edam:topic_3170 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'swuensis', 'R-Bioconductor', 'NOISeq' (bio.tools/noiseq), 'hartwegiana' | Computational search for UV radiation resistance strategies in Deinococcus swuensis isolated from Paramo ecosystems | Abstract Ultraviolet radiation (UVR) is widely known as deleterious for many organisms since it can cause damage to biomolecules either directly or indirectly via the formation of reactive oxygen species. The goal of this study was to analyze the capacity of high-mountain Espeletia hartwegiana plant phyllosphere microorganisms to survive UVR and to identify genes related to resistance strategies. A strain of Deinococcus swuensis showed a high survival rate of up to 60% after UVR treatment at 800 J m 2 and was used for differential expression analysis using RNA-seq after exposing cells to 400 J m 2 of UVR (with > 95% survival rate)" ; - sc:featureList edam:operation_3192, - edam:operation_3223 ; - sc:name "UVR" ; - sc:url "https://doi.org/10.1101/734129" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3320, edam:topic_3512 ; @@ -76462,7 +61949,7 @@ The UTRome.org database is intended as a comprehensive resource for 3'UTR biolog sc:url "https://github.com/VCCRI/Ularcirc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation ; sc:description """Geothematic open data in Umbria region. @@ -76481,7 +61968,7 @@ La cartografia di pericolosità sismica vettoriale della Regione Umbria è stata sc:url "http://dati.umbria.it" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0605, edam:topic_3306, @@ -76507,7 +61994,7 @@ First clone or fork this repository and navigate to the repository's top directo sc:url "https://github.com/churchlab/UniRep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Library" ; sc:applicationSubCategory edam:topic_0605, @@ -76526,7 +62013,7 @@ Unicorn Papers are based on an equal contribution (EC) citation model in which t sc:url "http://unicornpapers.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, edam:topic_0121, @@ -76551,7 +62038,7 @@ M. Soudy, A. Anwar, E.A. Ahmed, et al., UniprotR: Retrieving and visualizing pro sc:url "https://cran.r-project.org/web/packages/UniprotR/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3168, edam:topic_3810 ; @@ -76563,7 +62050,7 @@ M. Soudy, A. Anwar, E.A. Ahmed, et al., UniprotR: Retrieving and visualizing pro sc:url "https://github.com/SouthGreenPlatform/Uniqprimer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0166, edam:topic_0176, @@ -76583,7 +62070,7 @@ Implementation of a visualization prototype for molecular structures and network sc:url "https://sourceforge.net/projects/unitymol" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, edam:topic_0622, @@ -76598,22 +62085,8 @@ Implementation of a visualization prototype for molecular structures and network sc:name "VADR" ; sc:url "https://github.com/nawrockie/vadr" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3421 ; - sc:citation , - "pubmed:31789980" ; - sc:description """A Quality Improvement Project of a Ventricular Assist Device Program. - -BACKGROUND:As of December 31, 2016, in the United States, 22 866 patients received left ventricular assist devices (LVADs) (J Heart Lung Transplant. 2017;36(10):1080-1086). First responders are generally unfamiliar with LVAD equipment functionality (J Heart Lung Transplant. 2018;37(4):S275). When a patient has an emergency either clinically or with a controller alarm or failure, speaking with ventricle assist device (VAD)-trained personnel is imperative to the prevention of adverse events. Starting February 2017, an LVAD program totaling 181 patients at a large teaching hospital changed their afterhours process to reduce wait time between patient call and talking to VAD-trained personnel to increase patient safety and patient satisfaction. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'VAD'""" ; - sc:name "VAD Emergency" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31789980" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3168, edam:topic_3308 ; @@ -76627,22 +62100,8 @@ BACKGROUND:As of December 31, 2016, in the United States, 22 866 patients receiv sc:name "VAPPER" ; sc:url "https://github.com/PGB-LIV/VAPPER" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3170, - edam:topic_3308, - edam:topic_3673 ; - sc:citation , - "pmcid:PMC6756534", - "pubmed:31545812" ; - sc:description "> NAME EQUAL TO (PUB. DIFFERENT) bio.tools/vap | Variant analysis pipeline for accurate detection of genomic variants from transcriptome sequencing data | VAP : For Reference mapping and Variant detection | Thank you for your interest in using the Variant Analysis Pipeline. VAP is a comprehensive workflow for reference mapping and variant detection of genomic and transcriptomic reads using a suite of bioinformatics tools" ; - sc:featureList edam:operation_0484, - edam:operation_3196, - edam:operation_3227 ; - sc:name "VAP_autogenerated" ; - sc:url "https://modupeore.github.io/VAP/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3295, edam:topic_3375, edam:topic_3577 ; @@ -76655,7 +62114,7 @@ BACKGROUND:As of December 31, 2016, in the United States, 22 866 patients receiv sc:url "http://varidt.idrblab.net/ttd/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, edam:topic_3170, @@ -76677,7 +62136,7 @@ VARUS was originally written by Willy Bruhn as a Bachelors' thesis supervised by sc:url "https://github.com/Gaius-Augustus/VARUS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154, edam:topic_2814, @@ -76695,7 +62154,7 @@ VARUS was originally written by Willy Bruhn as a Bachelors' thesis supervised by sc:url "https://github.com/cmbi/vase" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation , "pubmed:31425086" ; @@ -76705,7 +62164,7 @@ VARUS was originally written by Willy Bruhn as a Bachelors' thesis supervised by sc:url "https://vassl.new-dimension.co" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3676 ; sc:citation , "pubmed:31442673" ; @@ -76716,7 +62175,7 @@ VARUS was originally written by Willy Bruhn as a Bachelors' thesis supervised by sc:url "https://github.com/sirselim/diagnostics_exome_reporting" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3168, @@ -76739,7 +62198,7 @@ VARUS was originally written by Willy Bruhn as a Bachelors' thesis supervised by biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, edam:topic_0625, @@ -76757,27 +62216,8 @@ purely within the user’s computer/browser. VCF2PopTree is compatible""" ; sc:name "VCF2PopTree" ; sc:url "https://github.com/sansubs/vcf2pop" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0084, - edam:topic_0625, - edam:topic_2885 ; - sc:citation , - "pmcid:PMC6901002", - "pubmed:31824783" ; - sc:description """a client-side software to construct population phylogeny from genome-wide SNPs. - -VCF2PopTree is a client-side software written in Javascript and it runs. - -purely within the user’s computer/browser. VCF2PopTree is compatible""" ; - sc:featureList edam:operation_0323, - edam:operation_0326, - edam:operation_3196 ; - sc:license "MIT" ; - sc:name "VCF2PopTree_autogenerated" ; - sc:url "https://github.com/sansubs/vcf2pop" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3673, @@ -76796,7 +62236,7 @@ purely within the user’s computer/browser. VCF2PopTree is compatible""" ; sc:url "https://www.niagads.org/resources/tools-and-software/vcpa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3452 ; sc:citation , @@ -76810,7 +62250,7 @@ purely within the user’s computer/browser. VCF2PopTree is compatible""" ; sc:url "https://github.com/coolleafly/VDING" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, edam:topic_0625, @@ -76833,7 +62273,7 @@ VDJbase is a publicly available database that offers easy searching of genotype sc:url "https://www.vdjbase.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0160, edam:topic_0219, @@ -76848,7 +62288,7 @@ VDJbase is a publicly available database that offers easy searching of genotype sc:url "https://vdjdb.cdr3.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3474, edam:topic_3673, @@ -76870,58 +62310,8 @@ This bash script calls example script vef_clf.py and vef_apl.py located in the e sc:name "VEF" ; sc:url "http://github.com/ChuanyiZ/vef" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0654, - edam:topic_2269, - edam:topic_3343 ; - sc:citation , - "pubmed:31757721" ; - sc:description """New in silico models to predict in vitro micronucleus induction as marker of genotoxicity. - -VEGA HUB – Virtual models for property Evaluation of chemicals within a Global Architecture. - -We use cookies to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners who may combine it with other information that you’ve provided to them or that they’ve collected from your use of their services. - -Use necessary cookies only Allow all cookies Show details. - -Offering a family of tools to evaluate chemical hazard: VEGA, ToxRead, ToxWeight, ToxDelta, and JANUS. - -Necessary (2) Preferences (0) Statistics (4) Marketing (0) Unclassified (0). - -||| NAME (VEGA) SIMILAR TO (PUB. DIFFERENT) bio.tools/vega (Vega). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'genotoxicity', 'micronucleus', 'SARpy'""" ; - sc:featureList edam:operation_3664 ; - sc:name "VEGA_autogenerated" ; - sc:url "https://www.vegahub.eu" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0084, - edam:topic_0621, - edam:topic_0623, - edam:topic_3068, - edam:topic_3168 ; - sc:citation ; - sc:description """Very large-scale Evolutionary and Selective Pressure Analyses. - -Computational & Molecular Evolutionary Biology Group, The University of Nottingham. - -“VESPA: Very large-scale Evolutionary and Selective Pressure Analyses”. - -Perl dependencies: VESPA requires users to install multiple perl scripts and modules to be fully operational. The perl dependencies may be found alongside vespa.py within the program tarball. Once downloaded, it can be installed as follows:. - -We have written a manual that will take you through the process step by step. This is constantly evolving with feedback with feedback from our users, and the latest version is hosted as vespa-evol on ReadTheDocs. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/vespa""" ; - sc:featureList edam:operation_0540, - edam:operation_3454, - edam:operation_3478 ; - sc:license "GPL-3.0" ; - sc:name "VESPA_autogenerated" ; - sc:url "http://www.mol-evol.org/VESPA" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3304, edam:topic_3500 ; @@ -76936,7 +62326,7 @@ The combination of electromyography (EMG) and transcranial magnetic stimulation sc:url "https://github.com/greenhouselab/Veta/tree/master/data" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:author ; sc:description """Performs intersectional genetics-related operations to find VEnCodes using databases provided by the FANTOM5 consortium, namely the CAGE enhancer and transcription start site (TSS) databases. @@ -76949,7 +62339,7 @@ For more information on the VEnCode technology, please refer to Macedo and Gonti biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, edam:topic_3372 ; @@ -76963,11 +62353,13 @@ For more information on the VEnCode technology, please refer to Macedo and Gonti a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2042" ; - sc:name "Evidence" ; - sc:sameAs "http://edamontology.org/data_2042" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Database portal" ; + sc:additionalType "http://edamontology.org/data_2042" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Evidence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web API", + "Web application" ; sc:applicationSubCategory edam:topic_0781, edam:topic_3489 ; sc:author , @@ -76989,7 +62381,7 @@ The VHRdb is an online resource that centralizes experimental data related to th biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0602, edam:topic_3174, @@ -77022,7 +62414,7 @@ Please work through the tutorial and use the intercom button on the bottom right sc:url "https://wiki.cyverse.org/wiki/display/DEapps/VIBRANT-1.0.1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, edam:topic_3400 ; @@ -77037,7 +62429,7 @@ Please work through the tutorial and use the intercom button on the bottom right sc:url "https://github.com/HGLab/VIC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2830, edam:topic_3421 ; @@ -77049,30 +62441,8 @@ Please work through the tutorial and use the intercom button on the bottom right sc:name "VICTOR" ; sc:url "http://www.transplanttoolbox.org/victor" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_2830, - edam:topic_3421 ; - sc:citation ; - sc:description "> NAME EQUAL TO (PUB. DIFFERENT) bio.tools/victor-virus | > NAME (VICTOR) SIMILAR TO (PUB. DIFFERENT) bio.tools/victor (Victor) | A precision virtual crossmatch decision support system for interpretation of ambiguous molecular HLA typing data | VICTOR: VIrtual CrossmaTch for mOleculaR typing data | This prototype tool computes virtual crossmatch using the candidate’s unacceptable antigens including high resolution alleles and molecular HLA typing of the donor | Web services interface information for Transplanttoolbox" ; - sc:featureList edam:operation_0416, - edam:operation_3196, - edam:operation_3891 ; - sc:name "VICTOR_autogenerated" ; - sc:url "http://www.transplanttoolbox.org/victor" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3382 ; - sc:citation , - "pubmed:31503749" ; - sc:description "> HOMEPAGE MISSING! | a versatile illumination engine with a modular optical design for fluorescence microscopy | We developed VIEW-MOD (Versatile Illumination Engine with a Modular Optical Design): a compact, multi-modality microscope, which accommodates multiple illumination schemes including variable angle total internal reflection, point scanning and vertical horizontal light sheet. This system allows combining and flexibly switching between different illuminations and imaging modes by employing three electrically tunable lenses and two fast-steering mirrors. This versatile optics design provides control of 6 degrees of freedom of the illumination source (3 translation, 2 tilt, and beam shape) plus the axial position of the imaging plane. We also developed standalone software with an easy-to-use GUI to calibrate and control the microscope. We demonstrate the applications of this system and software in biosensor imaging, optogenetics and fast 3D volume imaging" ; - sc:featureList edam:operation_3443, - edam:operation_3552 ; - sc:name "VIEW-MOD" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31503749" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, edam:topic_3308, @@ -77101,18 +62471,18 @@ Note: This version of statistics metrics does not include any instance data yet. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Peptide mass fingerprint" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3382, @@ -77130,7 +62500,7 @@ Note: This version of statistics metrics does not include any instance data yet. sc:url "https://omics.pnl.gov/software/viper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0659, edam:topic_0749, @@ -77148,7 +62518,7 @@ VISDB, visdb, virus integration site, viral integration, DNA virus, retrovirus, sc:url "https://bioinfo.uth.edu/VISDB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168, edam:topic_3173 ; @@ -77161,26 +62531,26 @@ VISDB, visdb, virus integration site, viral integration, DNA virus, retrovirus, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_2914" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence features metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2914" ; - sc:name "Sequence features metadata" ; - sc:sameAs "http://edamontology.org/data_2914" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3175, edam:topic_3511 ; @@ -77199,7 +62569,7 @@ VISDB, visdb, virus integration site, viral integration, DNA virus, retrovirus, sc:url "https://github.com/davidebolo1993/VISOR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3379, edam:topic_3577 ; @@ -77212,23 +62582,8 @@ VISDB, visdb, virus integration site, viral integration, DNA virus, retrovirus, sc:name "VIST" ; sc:url "https://vist.informatik.hu-berlin.de/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_0749, - edam:topic_3168 ; - sc:citation , - "pmcid:PMC6718772", - "pubmed:31477778" ; - sc:description "VIVA (VIsualization of VAriants) | Julia package powering VIVA, our tool for visualization of genomic variation data. Manual: | VIVA: A VCF File Visualization Tool and VariantVisualization.jl | VIVA Command Line Tool and Jupyter Notebook | VIVA is a user-friendly command line tool for creating publication quality graphics from Variant Call Format (VCF) files | VIVA is a user-friendly command line tool built with our VariantVisualization.jl package for exploratory analysis and generation of publication quality graphics for variant analysis projects using Variant Call Format (VCF) files | Then, follow add Julia to the path variable to run VIVA" ; - sc:featureList edam:operation_3196, - edam:operation_3227, - edam:operation_3675 ; - sc:name "VIVA_autogenerated" ; - sc:softwareHelp ; - sc:url "https://compbiocore.github.io/VariantVisualization.jl/latest/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3489, edam:topic_3892 ; @@ -77246,7 +62601,7 @@ Biomolecular SIMulations Research Group""" ; sc:url "https://biosim.pt/how-to-install-vmd-store/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -77267,7 +62622,7 @@ Biomolecular SIMulations Research Group""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3416, edam:topic_3452 ; sc:citation , @@ -77280,7 +62635,7 @@ Biomolecular SIMulations Research Group""" ; sc:url "http://github.com/McBrideGagyiLab/VNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_3172, @@ -77298,7 +62653,7 @@ Metabolic profiling of breath analysis involves processing, alignment, scaling a sc:url "https://github.com/Yaser218/Untargeted-Metabolomics-Clustering/tree/master/VOCCluster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3400, edam:topic_3697 ; @@ -77313,7 +62668,7 @@ Metabolic profiling of breath analysis involves processing, alignment, scaling a sc:url "http://aasix.cytoanalytics.com/volare/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -77337,7 +62692,7 @@ Metabolic profiling of breath analysis involves processing, alignment, scaling a biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3170, @@ -77359,17 +62714,8 @@ Metabolic profiling of breath analysis involves processing, alignment, scaling a sc:url "https://github.com/ShengquanChen/VPAC" ; biotools:primaryContact "Rui Jiang" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3318, - edam:topic_3855 ; - sc:citation , - "pubmed:31403424" ; - sc:description "> HOMEPAGE MISSING! | High-Fidelity Product Simulation in a Virtual-Physical Environment | In the development of a new product, the design team must describe the expected effects of the final products to potential users and stakeholders. However, existing prototyping tools can only present a product imperfectly, due to limitations at different levels. Specifically, the physical product model, which may be the product of 3D printing, could lack a visual interface; the presentation of the product through modeling software such as Rhinoceros 3D does not provide good realistic tactile perception; or the interface platforms, such as Axure RP, used to display the interactive effects differ from those to be used in the actual operation. Thus, we present the VPModel, a high-fidelity prototyping tool, able to integrate multiple prototyping methods simultaneously" ; - sc:name "VPModel" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31403424" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168 ; sc:citation , @@ -77387,7 +62733,7 @@ VPOT is a Python tool written to allow prioritisation of variants in ANNOVAR ann sc:url "https://github.com/VCCRI/VPOT/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, edam:topic_3292, @@ -77404,40 +62750,8 @@ VRTK is a collection of useful, reusable solutions to common problems found when sc:name "VRTK" ; sc:url "http://www.vrtk.io" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_0749 ; - sc:citation , - "pmcid:PMC6839581", - "pubmed:31807109" ; - sc:description """A Novel Approach To Summative Assessments In Pathology. - -Background:A solid understanding of the science underpinning treatment is essential for all doctors. Pathology teaching and assessment are fundamental components of the undergraduate medicine curriculum. Assessment drives learning and the choice of assessments influences students' learning behaviours. The use of multiple-choice questions is common but is associated with significant cueing and may promote "rote learning". Essay-type questions and Objective Structured Clinical Examinations (OSCEs) are resource-intensive in terms of delivery and marking and do not allow adequate sampling of the curriculum. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'VSAQs SBAQs EMQs', 'Very Short Answer questions', 'VSAQs SBAQs', 'SBAQs EMQs'""" ; - sc:name "VSAQs" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31807109" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0605, - edam:topic_3382, - edam:topic_3524, - edam:topic_3810 ; - sc:citation ; - sc:description """An Innovative Virtual Simulation Teaching Platform on Digital Mapping with Unmanned Aerial Vehicle for Remote Sensing Education. - -This work mainly discusses an innovative teaching platform on Unmanned Aerial Vehicle digital mapping for Remote Sensing (RS) education at Wuhan University, underlining the fast development of RS technology. Firstly, we introduce and we discuss the future development of the Virtual Simulation Experiment Teaching Platform for Unmanned Aerial Vehicle (VSETP-UAV). It includes specific topics such as the “Systems and function Design”, teaching and learning strategies, and experimental methods. This study shows that VSETP-UAV expands the usual content and training methods related to RS education, and creates a good synergy between teaching and research. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3443 ; - sc:name "VSETP-UAV" ; - sc:url "https://doi.org/10.20944/PREPRINTS201912.0106.V1" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0611, edam:topic_3170 ; @@ -77449,34 +62763,8 @@ This work mainly discusses an innovative teaching platform on Unmanned Aerial Ve sc:name "VTA" ; sc:url "https://gitlab.com/mlinitaur/vta-expression-data-extractor" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_0621, - edam:topic_3170, - edam:topic_3673, - edam:topic_3810 ; - sc:citation , - "pmcid:PMC6838444", - "pubmed:31720340" ; - sc:description """causal agent of Cercospora leaf blight and purple seed stain of soybeans. - -Cercospora kikuchii strain ARG_18_001, whole genome shotgun sequencing. - -LOCUS VTAY01000000 136 rc DNA linear PLN 21-OCT-2019. - -Cercospora kikuchii strain ARG_18_001, whole genome shotgun sequencing project. - -This entry is the master record for a whole genome shotgun sequencing project and contains no sequence data. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/insdc (NLM.NIH.GOV/nuccore)""" ; - sc:featureList edam:operation_0362, - edam:operation_0525, - edam:operation_2454 ; - sc:name "VTAY00000000" ; - sc:url "https://www.ncbi.nlm.nih.gov/nuccore/VTAY00000000" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3334, edam:topic_3384, @@ -77502,7 +62790,7 @@ Supporting code for the manuscript "Deep learning for clustering of multivariate sc:url "https://github.com/johanndejong/VaDER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3277 ; sc:citation , @@ -77514,7 +62802,7 @@ To facilitate reference-material selection for clinical genetic testing laborato sc:url "https://github.com/erscott/varcover" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3325 ; sc:description "VarFish is an easy-to-use web-based database system designed for empowering geneticists in the analysis of clinical and whole exome sequencing variant data sets for individuals and families. It provides a set of tools for supporting the full workflow from (i) variant data quality control, (ii) variant filtration and (iii) efficient assessment of variants based on visual alignment inspection and annotation data such as functional and frequency annotation." ; sc:license "MIT" ; @@ -77522,7 +62810,7 @@ To facilitate reference-material selection for clinical genetic testing laborato sc:url "https://github.com/bihealth/varfish-server" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_0634, @@ -77539,7 +62827,7 @@ To facilitate reference-material selection for clinical genetic testing laborato sc:url "https://github.com/MCorentin/VarGen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2533 ; sc:citation , @@ -77554,28 +62842,8 @@ To facilitate reference-material selection for clinical genetic testing laborato sc:url "https://github.com/frankMusacchia/VarGenius" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_2229, - edam:topic_3170 ; - sc:citation , - "pubmed:31740822" ; - sc:description """Revealing dynamics of gene expression variability in cell state space. - -VarID analysis of murine hematopoietic progenitors and intestinal epithelial cells. VarID is part of RaceID v0.1.4. - -||| NAME (VarID) SIMILAR TO (PUB. DIFFERENT) bio.tools/varid (VARID)""" ; - sc:featureList edam:operation_2495, - edam:operation_3223, - edam:operation_3659, - edam:operation_3799, - edam:operation_3891 ; - sc:name "VarID_autogenerated" ; - sc:url "https://github.com/dgrun/VarID_analysis" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0166, @@ -77596,7 +62864,7 @@ VarID analysis of murine hematopoietic progenitors and intestinal epithelial cel biotools:primaryContact "James Stephenson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:citation , "pubmed:30192923" ; @@ -77617,7 +62885,7 @@ VarID analysis of murine hematopoietic progenitors and intestinal epithelial cel biotools:primaryContact "Mohammed Sedki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_3325, @@ -77637,7 +62905,7 @@ VarSight is a collection of scripts used to test the application of classificati sc:url "https://github.com/HudsonAlpha/VarSight" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, edam:topic_0634, @@ -77657,7 +62925,7 @@ Disease Variants and Structure""" ; sc:url "https://www.ebi.ac.uk/thornton-srv/databases/VarSite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3169, edam:topic_3170 ; @@ -77675,7 +62943,7 @@ Vargas computes optimal alignments of short reads to a directed acyclic graph (D sc:url "https://github.com/langmead-lab/vargas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2885, @@ -77693,7 +62961,7 @@ Vargas computes optimal alignments of short reads to a directed acyclic graph (D sc:url "http://structure.bmc.lu.se/VariBench/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0219, edam:topic_3068, @@ -77714,7 +62982,7 @@ VariCarta is a database of human DNA genetic variants found in individuals diagn sc:url "http://varicarta.msl.ubc.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3174 ; sc:citation , @@ -77729,7 +62997,7 @@ VariCarta is a database of human DNA genetic variants found in individuals diagn sc:url "https://github.com/cosmo-team/cosmo/tree/VARI-merge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, edam:topic_3577 ; @@ -77744,7 +63012,7 @@ VariCarta is a database of human DNA genetic variants found in individuals diagn sc:url "https://github.com/Kingsford-Group/variantstore" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pmcid:PMC5765404", "pubmed:28967166" ; @@ -77761,10 +63029,9 @@ VariantValidator is a highly functional platform enabling high-throughput and em a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -77796,7 +63063,7 @@ For more information about the method and its usage, you can consult our About p biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3676 ; @@ -77818,7 +63085,7 @@ For more information about the method and its usage, you can consult our About p biotools:primaryContact "Dennis Lal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053 ; @@ -77838,7 +63105,7 @@ For more information about the method and its usage, you can consult our About p sc:url "https://github.com/sellerslab/gemini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053, edam:topic_3168, @@ -77853,7 +63120,7 @@ High precision on genetic analysis""" ; sc:url "http://varstation.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, edam:topic_2885, @@ -77871,7 +63138,7 @@ a DNA marker database for vegetables""" ; sc:url "https://vegmarks.nivot.affrc.go.jp/resource/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3170, edam:topic_3308 ; @@ -77892,7 +63159,7 @@ Currently, Venn-diaNet uses String DB""" ; sc:url "http://biohealth.snu.ac.kr/software/venndianet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -77913,46 +63180,8 @@ Currently, Venn-diaNet uses String DB""" ; biotools:primaryContact "Modesto Orozco", "Pablo D. Dans" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_3379 ; - sc:citation , - "pubmed:31837751" ; - sc:description """The Veterinary Trauma Registry. - -Identification and Verification process – ACVECC-VetCOT. - -Identification and Verification process. - -This document outlines the processes utilized for identifying, verifying and reverifying hospitals. - -The ACVECC VetCOT-Registry Subcommittee (VetCOT-RS) has elected to accept application for use of data from the trauma registry on a rolling basis. Applications for data will be accepted from any ACVECC or ECVECC Diplomate or ACVECC/ECVECC resident-in-training under the advisement of an ACVECC or ECVECC Diplomate. - -IDENTIFICATION and VERIFICATION PROCESS – APRIL2018. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Veterinary Trauma', 'Trauma', 'Veterinary'""" ; - sc:featureList edam:operation_2409 ; - sc:name "VetCOT" ; - sc:url "http://vetcot.org/index.php/home/identification-and-verification-process/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3303, - edam:topic_3382 ; - sc:citation , - "pubmed:31580745" ; - sc:description """A Platform for Constructing and Sharing of Medical Algorithms. - -The literature and the Internet provide different sources, in which medical community as well as patients can browse through medical algorithms. These algorithms are dispersed and use different formats of presentation. We present visualized diagnosis (ViDis), a web platform aimed to construction and sharing of graphical representations of medical algorithms in a single place and in a unified format. ViDis is accessible as a web application, which can run on an arbitrary platform with a modern web browser. The platform's user friendly interfaces allow the users with different backgrounds to construct, share, and browse through medical algorithms. Visualization of the algorithms can be created using a flowchart diagram notation that is commonly applied in the design of computer software and is very intuitive to use and understand. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0337, - edam:operation_3096 ; - sc:name "ViDis" ; - sc:url "http://vidis.fri.uni-lj.si/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, edam:topic_0659 ; @@ -77968,7 +63197,7 @@ The literature and the Internet provide different sources, in which medical comm sc:url "https://bioconductor.org/packages/ViSEAGO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; sc:description """An innovative visualization R package to ensure behavioral raw data reliability and transparency. @@ -77979,40 +63208,8 @@ Background In recent years, the scientific community encouraged the use of raw d sc:name "ViSiElse" ; sc:url "https://cran.csiro.au/web/packages/ViSiElse/ViSiElse.pdf" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0092, - edam:topic_3314, - edam:topic_3474 ; - sc:citation ; - sc:description """An innovative R-package to visualize raw behavioral data over time. - -The scientific community encourages the use of raw data graphs to improve the reliability and transparency of the results presented in articles. However, the current methods used to visualize raw data are limited to one or two numerical variables per graph and or small sample sizes. In the behavioral sciences, numerous variables must be plotted together in order to gain insight into the behavior in question. In this paper, we present ViSiElse, an R-package offering a new approach in the visualization of raw data. ViSiElse was developed with the open-source software R to visualize behavioral observations over time based on raw time data extracted from visually recorded sessions of experimental observations. ViSiElse gives a global overview of a process by creating a visualization of the timestamps for multiple actions and all participants into a single graph; individual or group behavior can then be easily assessed""" ; - sc:featureList edam:operation_0337, - edam:operation_3436 ; - sc:name "ViSiElse_autogenerated" ; - sc:url "https://cran.csiro.au/web/packages/ViSiElse/ViSiElse.pdf" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0781, - edam:topic_3305, - edam:topic_3324, - edam:topic_3418, - edam:topic_3577 ; - sc:citation , - "pmcid:PMC6766581", - "pubmed:31588214" ; - sc:description """An interview with Professor Barbara A. Rath, Co-founder and Chair of the Vienna Vaccine Safety Initiative. - -Vienna Vaccine Safety Initiative. - -Parents. Scientists. You. Let’s eradicate disease!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Paediatric', 'Paediatric Virology', 'Advancing challenges Paediatric Virology', 'Vienna Vaccine'""" ; - sc:name "ViVI" ; - sc:url "http://www.vi-vi.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_0780 ; @@ -78024,27 +63221,15 @@ Parents. Scientists. You. Let’s eradicate disease!. sc:name "ViVa" ; sc:url "http://plantsynbiolab.bse.vt.edu/ViVa" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3334, - edam:topic_3393, - edam:topic_3399 ; - sc:citation , - "pmcid:PMC6711438", - "pubmed:31523735" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Evidence-based practice on-the-go', 'rehabilitation' | using ViaTherapy as a tool to enhance clinical decision making in upper limb rehabilitation after stroke | Your browser does not support the video tag | International panel of researchers & clinicians | Saunderson Family Chair in Brain injury Research | ViaTherapy’s tailored questionnaire delivers only the best treatment options based on your patient’s motor impairment and time post-stroke | \"The post stroke arm rehabilitation algorithm within the ViaTherapy app help our team make multidisciplinary clinical decisions. The three key questions leads us as professionals in a quick and easy way through a structure of recommendations for treatments with a clear scope for benefits and dose of therapy.\" Jip F. Kamphuis MSc., Physical Therapist" ; - sc:featureList edam:operation_3435 ; - sc:name "ViaTherapy" ; - sc:url "http://www.viatherapy.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:description "VICTOR is an interactive and dependency-free visual analytics web application which allows the comparison and visualization of various clustering outputs." ; sc:name "VICTOR" ; sc:url "http://bib.fleming.gr:3838/VICTOR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0128, edam:topic_3474 ; @@ -78066,7 +63251,7 @@ VieClus - Vienna Graph Clustering is a memetic algorithm""" ; sc:url "http://vieclus.taa.univie.ac.at/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0625, edam:topic_3168 ; @@ -78084,7 +63269,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://vikngsdocs.readthedocs.io/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, edam:topic_0625, @@ -78102,7 +63287,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/chjiao/VirBin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3382, edam:topic_3474 ; @@ -78118,7 +63303,7 @@ Plaque assay has been used for a long time to determine infectious titers and ch sc:url "https://sourceforge.net/projects/viralplaque/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_3170, @@ -78134,7 +63319,7 @@ Plaque assay has been used for a long time to determine infectious titers and ch sc:url "https://github.com/single-cell-genetics/vireo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, edam:topic_2229 ; @@ -78145,38 +63330,8 @@ Plaque assay has been used for a long time to determine infectious titers and ch sc:name "VirtualCytometry" ; sc:url "https://www.grnpedia.org/cytometry/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_3407 ; - sc:citation , - "pmcid:PMC6715240", - "pubmed:31465473" ; - sc:description "> MEDIUM CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/visant | A new grid- and modularity-based layout algorithm for complex biological networks | An integrative platform for network/pathway analysis" ; - sc:featureList edam:operation_0277, - edam:operation_3083, - edam:operation_3439 ; - sc:name "VisANT_autogenerated" ; - sc:url "http://www.visantnet.org" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_2815, - edam:topic_3382 ; - sc:citation , - "pubmed:31631630" ; - sc:description """an independent and graph-theory based software for visualizing the human brain connectome]. - -As a complex system, the topology of human's brain network has an important effect on further study of brain's structural and functional mechanism. Graph theory, a kind of sophisticated analytic strategies, is widely used for analyzing complex brain networks effectively and comparing difference of topological structure alteration in normal development and pathological condition. For the purpose of using this analysis methodology efficiently, it is necessary to develop graph-based visualization software. Thus, we developed VisConnectome, which displays analysis results of the brain network friendly and intuitively. It provides an original graphical user interface (GUI) including the tool window, tool bar and innovative double slider filter, brain region bar, runs in any Windows operating system and doesn't rely on any platform such as Matlab. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0337, - edam:operation_3435, - edam:operation_3695 ; - sc:name "VisConnectome" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31631630" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:31504195" ; sc:description "a stand-alone program for visualizing and analyzing statistical features of biological sequences | For Microsoft Windows platform, just download the VisFeature-win32-x64.zip package from https://github.com/wangjun1996/VisFeature/releases. Unpack it to your favorite location and then open VisFeature.exe | We have tested these codes on Windows10-64bit platform and Ubuntu 16.04.5 LTS platform. There is no guarantee that these codes can be compiled and executed on other platforms without modifications" ; @@ -78187,10 +63342,10 @@ As a complex system, the topology of human's brain network has an important effe a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -78209,7 +63364,7 @@ As a complex system, the topology of human's brain network has an important effe sc:url "https://visrsoftware.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2830, edam:topic_3520 ; @@ -78223,7 +63378,7 @@ As a complex system, the topology of human's brain network has an important effe sc:url "https://masstools.ipbs.fr/mstools/visioprot-ms/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, edam:topic_3512 ; @@ -78238,22 +63393,8 @@ As a complex system, the topology of human's brain network has an important effe biotools:primaryContact "Allan Orozco-Solano", "Antonio Solano-Román" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3277, - edam:topic_3318, - edam:topic_3375 ; - sc:citation , - "pubmed:31742831" ; - sc:description """Clinical application of Web Accessible Population Pharmacokinetic Service-Hemophilia (WAPPS-Hemo). - -BACKGROUND:Use of population pharmacokinetics (PopPK) to facilitate PK-informed prophylaxis in clinical practice has gained momentum among haemophilia providers due to the accessibility of tools such as the Web Accessible Population Pharmacokinetic Service-Hemophilia (WAPPS-Hemo) and availability of extended half-life (EHL) factor concentrates. It is unknown how clinicians implement PopPK. AIM:To investigate the evolution of PopPK use in clinical practice by comparing blood sampling strategies, patient features, and factor group between initial and recent periods of WAPPS-Hemo availability. METHODS:PK data for haemophilia A and haemophilia B patients from two time periods were extracted from the WAPPS-Hemo database: early availability (10 2015-09 2016) and recent use (10 2017-09 2018). - -||| HOMEPAGE MISSING!""" ; - sc:name "WAPPS-Hemo" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31742831" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0102, edam:topic_0798 ; @@ -78266,7 +63407,7 @@ BACKGROUND:Use of population pharmacokinetics (PopPK) to facilitate PK-informed sc:url "https://archaea.i2bc.paris-saclay.fr/wasps/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0176, @@ -78289,7 +63430,7 @@ BACKGROUND:Use of population pharmacokinetics (PopPK) to facilitate PK-informed "Marcelo A. Marti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Web API", "Web application", @@ -78311,26 +63452,8 @@ BACKGROUND:Use of population pharmacokinetics (PopPK) to facilitate PK-informed sc:url "http://www.atgc-montpellier.fr/waves/" ; biotools:primaryContact "Vincent Lefort" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3419, - edam:topic_3474 ; - sc:citation , - "pubmed:31829640" ; - sc:description """Creating a theoretically based multidimensional measure of well-being to advance theory, research, policy, and practice. - -Australian Catholic University (ACU). - -1. I feel free to do whatever I decide to do. - -2. I feel free to make my own choices. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'well-being profile'""" ; - sc:featureList edam:operation_3435 ; - sc:name "WB-Pro" ; - sc:url "https://ippe.acu.edu.au/research/research-instruments/wb-pro" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3344, @@ -78346,16 +63469,8 @@ Australian Catholic University (ACU). sc:url "https://www.mathworks.com/matlabcentral/fileexchange/36634-an-efficient-technique-for-white-blood-cells-nuclei-automatic-segmentation" ; biotools:primaryContact "Mostafa M. A. Mohamed" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3421 ; - sc:citation , - "pubmed:31449781" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'Worldwide Network Blood Marrow Transplantation recommendations establishing hematopoietic stem c ...', 'HSCT', 'countries', 'socioeconomic' | Worldwide Network for Blood and Marrow Transplantation (WBMT) recommendations for establishing a hematopoietic stem cell transplantation program in countries with limited resources (Part II) | The development of hematopoietic stem cell transplantation (HSCT) programs can face significant challenges in most developing countries because such endeavors must compete with other government health care priorities, including the delivery of basic services. While this is may be a limiting factor, these countries should prioritize development of the needed expertise to offer state of the art treatments including transplantation, by providing financial, technological, legal, ethical and other needed support" ; - sc:name "WBMT" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31449781" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, edam:topic_2640 ; @@ -78369,7 +63484,7 @@ Australian Catholic University (ACU). sc:url "https://github.com/Dicrop/WBNPMD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2815, edam:topic_3673 ; @@ -78385,7 +63500,7 @@ Australian Catholic University (ACU). sc:url "https://github.com/adigenova/wengan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170, @@ -78404,7 +63519,7 @@ Australian Catholic University (ACU). biotools:primaryContact "Yongzhi Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3534 ; @@ -78421,19 +63536,8 @@ Australian Catholic University (ACU). sc:url "https://bianca.science.uu.nl/whiscy/" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3382, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6749339", - "pubmed:31480461" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | A Weakly-Supervised Approach for 3D Hand Shape and Pose Recovery from a Single Depth Image | Hand shape and pose recovery is essential for many computer vision applications such as animation of a personalized hand mesh in a virtual environment. Although there are many hand pose estimation methods, only a few deep learning based algorithms target 3D hand shape and pose from a single RGB or depth image. Jointly estimating hand shape and pose is very challenging because none of the existing real benchmarks provides ground truth hand shape. For this reason, we propose a novel weakly-supervised approach for 3D hand shape and pose recovery (named WHSP-Net) from a single depth image by learning shapes from unlabeled real data and labeled synthetic data. To this end, we propose a novel framework which consists of three novel components" ; - sc:featureList edam:operation_3659 ; - sc:name "WHSP-Net" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31480461" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, edam:topic_3168 ; @@ -78451,7 +63555,7 @@ A cost-effective approach to diploid assembly for single samples and trios. It i sc:url "https://github.com/shilpagarg/WHdenovo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168, @@ -78470,7 +63574,7 @@ A cost-effective approach to diploid assembly for single samples and trios. It i biotools:primaryContact "Sanjeev Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0637, edam:topic_0659, @@ -78489,47 +63593,8 @@ Please copy the OTU Table and the rep_set.fna file into the same directory of wi sc:name "WITOD" ; sc:url "https://github.com/johncava/WITOD" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2269, - edam:topic_3068 ; - sc:citation , - "pubmed:31577964" ; - sc:description """Fetal heart rate baseline computation with a weighted median filter. - -Live review of baseline FHR methods. - -From Live review of baseline FHR methods. - -and hayden is their best chance It'Doug Ford s holistic Conservatives succeed in part In Ontari a good thing Jones bounced back with a good performance after a poor outing against Denver in Week 3 (eight catches for 118 yards and a TD on nine targets). - -Gabriel apparently is never around in most episodes and he he knows about the Miraculouses as shown in the episode Volpina where he has an entire book on the Miraculous and the Heroes/Villains that wield them as well as in the episode Simon Says where he finds an interest in both Cat Noire and Ladybug Miraculouses and even notices Adriens Ring {which in reality is actually his miraculous disguised in it ordinary inflatable form of art glides in keeping with s f phoenix s without his Kwami Plagg in it. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'FHR'""" ; - sc:featureList edam:operation_3192, - edam:operation_3695 ; - sc:license "GPL-3.0" ; - sc:name "WMFB" ; - sc:url "http://utsb.univ-catholille.fr/fhr-wmfb" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0634, - edam:topic_0749, - edam:topic_3407, - edam:topic_3697 ; - sc:citation , - "pmcid:PMC6824056", - "pubmed:31675979" ; - sc:description """a novel weighted meta-graph-based model for predicting human microbe-disease association on heterogeneous information network. - -BACKGROUND:An increasing number of biological and clinical evidences have indicated that the microorganisms significantly get involved in the pathological mechanism of extensive varieties of complex human diseases. Inferring potential related microbes for diseases can not only promote disease prevention, diagnosis and treatment, but also provide valuable information for drug development. Considering that experimental methods are expensive and time-consuming, developing computational methods is an alternative choice. However, most of existing methods are biased towards well-characterized diseases and microbes. Furthermore, existing computational methods are limited in predicting potential microbes for new diseases""" ; - sc:featureList edam:operation_3435, - edam:operation_3439 ; - sc:name "WMGHMDA" ; - sc:url "https://github.com/yahuilong/WMGHMDA" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3399 ; sc:citation , "pmcid:PMC6707408", @@ -78539,7 +63604,7 @@ BACKGROUND:An increasing number of biological and clinical evidences have indica sc:url "http://www.wpdk.ivi.int/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0659, edam:topic_0749, @@ -78557,7 +63622,7 @@ If you use WPMIAS, please cite this article: Yuhan Fei, Yiyang Mao, Chengji Shen sc:url "https://cbi.njau.edu.cn/WPMIAS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3314, edam:topic_3315 ; @@ -78578,35 +63643,8 @@ WPTherml stands for William Paterson University’s tool for Thermal Energy and sc:name "WPTherml" ; sc:url "https://github.com/FoleyLab/wptherml" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_0218, - edam:topic_3303, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6886160", - "pubmed:31787096" ; - sc:description """Biomedical word sense disambiguation with bidirectional long short-term memory and attention-based neural networks. - -Word Sense Disambiguation (WSD) Test Collection. - -Word Sense Disambiguation (WSD)Test Collection. - -Collaborations & Outside Resources. - -Evaluation of Word Sense Disambiguation methods (WSD) in the biomedical domain is difficult because the available resources are either too small or too focused on specific types of entities (e.g. diseases or genes). We have developed a method that can be used to automatically develop a WSD test collection using the Unified Medical Language System (UMLS) Metathesaurus and the manual MeSH indexing of MEDLINE. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/ncbi_resources (NLM.NIH.GOV), bio.tools/genbank (NLM.NIH.GOV). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'BiLSTM'""" ; - sc:featureList edam:operation_0335, - edam:operation_1812, - edam:operation_2422 ; - sc:name "WSD" ; - sc:url "https://wsd.nlm.nih.gov/collaboration.shtml" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, edam:topic_0736 ; @@ -78623,7 +63661,7 @@ Evaluation of Word Sense Disambiguation methods (WSD) in the biomedical domain i sc:url "https://github.com/Xiaoheng-Wang12/Wang-xiaoheng/tree/master" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3314, edam:topic_3372 ; @@ -78635,7 +63673,7 @@ Evaluation of Word Sense Disambiguation methods (WSD) in the biomedical domain i sc:url "http://aiida-wannier90.readthedocs.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3306, edam:topic_3316, @@ -78653,19 +63691,8 @@ If you just want to use Warp, all tutorials and binaries can be found at http:// sc:name "Warp" ; sc:url "http://github.com/cramerlab/warp" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0176, - edam:topic_3318 ; - sc:citation , - "pubmed:31411345" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | A Matlab package for numerical quantum dynamics. III. Quantum-classical simulations and surface hopping trajectories | WavePacket is an open-source program package for numerical simulations in quantum dynamics. Building on the previous Part I (Schmidt and Lorenz, Comput. Phys. Commun. 2017, 213, 223] and Part II (Schmidt and Hartmann, Comput. Phys. Commun. 2018, 228, 229] which dealt with quantum dynamics of closed and open systems, respectively, the present Part III adds fully classical and mixed quantum-classical propagation techniques to WavePacket. There classical phase-space densities are sampled by trajectories which follow (diabatic or adiabatic) potential energy surfaces. In the vicinity of (genuine or avoided) intersections of those surfaces, trajectories may switch between them" ; - sc:featureList edam:operation_0244, - edam:operation_0337 ; - sc:name "WavePacket" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31411345" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0621, edam:topic_3474 ; @@ -78678,21 +63705,8 @@ If you just want to use Warp, all tutorials and binaries can be found at http:// sc:name "WebAnno" ; sc:url "http://webanno.github.io/webanno" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6691242", - "pubmed:31524257" ; - sc:description "> VERY_LOW CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/webgestalt | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/webgestalt (WEBGESTALT.ORG/option.php) | > CORRECT NAME OF TOOL COULD ALSO BE 'DEGs', 'T2DM', 'limma' (bio.tools/limma), 'GSE20966' | Identification of core genes and pathways in type 2 diabetes mellitus by bioinformatics analysis | WebGestalt (WEB-based GEne SeT AnaLysis Toolkit) | WEB-based GEne SeT AnaLysis Toolkit | Translating gene lists into biological insights.. | WebGestalt (WEB-based Gene SeT AnaLysis Toolkit) is a functional enrichment analysis web tool, which has on average 26,000 unique users from 144 countries and territories per year according to Google Analytics. The WebGestalt 2005, WebGestalt 2013 and WebGestalt 2017 papers have been cited in more than 2,500 scientific papers according to Google Scholar" ; - sc:featureList edam:operation_2436, - edam:operation_3223 ; - sc:name "WebGestalt_autogenerated" ; - sc:url "http://www.webgestalt.org/option.php" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0154, @@ -78713,7 +63727,7 @@ If you just want to use Warp, all tutorials and binaries can be found at http:// sc:url "http://webmetabase.com:8182/WebMetabaseBioinformatics/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -78738,7 +63752,7 @@ If you just want to use Warp, all tutorials and binaries can be found at http:// sc:url "https://webspecmine.bio.di.uminho.pt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, edam:topic_2275 ; @@ -78752,7 +63766,7 @@ If you just want to use Warp, all tutorials and binaries can be found at http:// sc:url "http://durrantlab.com/webina" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0749, @@ -78774,18 +63788,8 @@ If you just want to use Warp, all tutorials and binaries can be found at http:// biotools:primaryContact "Hidde de Jong", "Johannes Geiselmann" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0632, - edam:topic_3474 ; - sc:citation , - "pubmed:31442996" ; - sc:description "Interactive Probing of Machine Learning Models | Building effective machine learning models means asking a lot of questions. Look for answers using the What-if Tool, an interactive visual interface designed to probe your models better | you could inspect a machine learning model," ; - sc:name "What-If Tool" ; - sc:url "https://pair-code.github.io/what-if-tool/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0780, edam:topic_3512, @@ -78804,26 +63808,21 @@ BACKGROUND:CRISPR Cas9 gene editing has become a revolutionary technique for cro a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application", @@ -78852,26 +63851,21 @@ The WheatIS search is an implementation of DataDiscovery.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -78894,7 +63888,7 @@ The WheatIS search is an implementation of DataDiscovery.""" ; sc:url "https://urgi.versailles.inra.fr/WheatMine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3318 ; sc:citation , "pmcid:PMC6773861", @@ -78910,7 +63904,7 @@ This repository contains scripts that compile heat demand and COP time series fo sc:url "https://github.com/oruhnau/when2heat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168 ; sc:citation ; @@ -78924,7 +63918,7 @@ This repository contains scripts that compile heat demand and COP time series fo sc:url "https://github.com/refresh-bio/whisper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -78944,7 +63938,7 @@ This repository contains scripts that compile heat demand and COP time series fo biotools:primaryContact "Erik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3172, edam:topic_3474 ; @@ -78959,44 +63953,8 @@ This repository contains scripts that compile heat demand and COP time series fo sc:name "WiPP" ; sc:url "https://github.com/bihealth/WiPP" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0749, - edam:topic_2229, - edam:topic_3047, - edam:topic_3298 ; - sc:citation ; - sc:description """Wikidata as a FAIR knowledge graph for the life sciences. - -A Wikidata Python module integrating the MediaWiki API and the Wikidata SPARQL endpoint. - -Incorporate wikidata statements into phenomizer. - -Transcriptional activity of the promoter in different cell lines. - -Wikidata:WikiProject Molecular biology. - -The easiest way to install WikidataIntegrator is using pip or pip3. WikidataIntegrator supports python 3.6 and higher, hence the suggestion for pip3. If python2 is installed pip will lead to an error indicating missing dependencies. - -These statistics are based on bi-weekly Wikimedia snapshots. - -Copyright information:Taken from "CTCF binds the proximal exonic region of and inhibits its transcription"Nucleic Acids Research 2005;33(21):6850-6860. - -Jump to navigation Jump to search. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/Wikidata. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/Wikidata (WIKIDATA.ORG ; WIKIDATA.ORG/wiki/Wikidata:Database_download)""" ; - sc:featureList edam:operation_1812, - edam:operation_2422, - edam:operation_3096, - edam:operation_3695 ; - sc:license "MIT" ; - sc:name "Wikidata_autogenerated" ; - sc:url "https://www.wikidata.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation , "pmcid:PMC6838453", @@ -79008,21 +63966,8 @@ Nowadays, camera networks are part of our every-day life environments, consequen sc:name "WiseNET" ; sc:url "https://wisenet.checksem.fr/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_3068, - edam:topic_3421 ; - sc:citation , - "pubmed:31635584" ; - sc:description """Increasing deceased organ donor numbers in Johannesburg, South Africa. - -In 2016, deceased-donor organ procurement at Wits Transplant, based at Wits Donald Gordon Medical Centre in Johannesburg, South Africa (SA), was in a state of crisis. As it is the largest-volume solid-organ transplant unit in SA, and as we aspire to provide transplant services of an international standard, the time to address our procurement practice had come. The number of deceased donors consented through our centre was very low, and we needed a radical change to improve our performance. This article describes the Wits Transplant Procurement Model - the result of our work to improve procurement at our centre. The model has two core phases, one to increase referrals and the other to improve our consent rates. Within these phases there are several initiatives. To improve referrals, the threefold approach of procurement management, acknowledgement and resource utilisation was developed""" ; - sc:featureList edam:operation_3454 ; - sc:name "Wits Transplant Procurement" ; - sc:url "http://www.dgmc.co.za/docs/Wits-Transplant-Procurement-Handbook.pdf" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0621, @@ -79037,7 +63982,7 @@ In 2016, deceased-donor organ procurement at Wits Transplant, based at Wits Dona sc:url "https://github.com/gerthmicha/wolbachia-mlst" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0128, @@ -79058,47 +64003,8 @@ In 2016, deceased-donor organ procurement at Wits Transplant, based at Wits Dona sc:url "http://baderlab.org/Software/WordCloudPlugin" ; biotools:primaryContact "Layla Oesper" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0218, - edam:topic_3489 ; - sc:citation , - , - , - ; - sc:description """Implementing an open source spatio-temporal search platform for Spatial Data Infrastructures. - -Build your own mapping portal and publish it to the world or to just a few collaborators. WorldMap is open source software. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/skat (HARVARD.EDU), bio.tools/pbat (HARVARD.EDU), bio.tools/made4 (HARVARD.EDU), bio.tools/rbcbook1 (HARVARD.EDU). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'HHypermap', 'Hypermap HHypermap', 'OGC', 'CSW', 'SDI'""" ; - sc:featureList edam:operation_2421, - edam:operation_3760, - edam:operation_3891 ; - sc:name "WorldMap" ; - sc:url "http://worldmap.harvard.edu" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3077, - edam:topic_3489 ; - sc:citation , - , - ; - sc:description """virtual globe for an open smart city. - -In this paper, the open source framework NASA WorldWind is presented. NASA WorldWind comes with two versions. The Java version is well established in the market and has many customers. On the other side the new version, which is the Web version, Web WorldWind, is still at the dawn of development cycle, with many features implemented and already used in several applications, with a great future ahead. Moreover, some of the features available in the Web WorldWind are listed and a short comparison with Cesium library is provided. Additionally, an interesting application developed in the smart cities context with Web WorldWind is described. - -In this paper, the open source framework NASA WorldWind is presented. NASA WorldWind comes with two versions. The Java version is well established in the market and has many customers. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Web WorldWind', 'NASA WorldWind', 'cities'""" ; - sc:name "WorldWind" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.2139V2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2640, @@ -79119,7 +64025,7 @@ In this paper, the open source framework NASA WorldWind is presented. NASA World biotools:primaryContact "Yung-Po Liaw" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2830, edam:topic_3512 ; @@ -79130,7 +64036,7 @@ In this paper, the open source framework NASA WorldWind is presented. NASA World sc:url "http://www.wormbook.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, edam:topic_0625, @@ -79154,26 +64060,21 @@ This site contains links and information for building the WormBot, an open hardw a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -79197,7 +64098,7 @@ This site contains links and information for building the WormBot, an open hardw sc:url "http://intermine.wormbase.org/tools/wormmine/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, edam:topic_0625 ; @@ -79210,7 +64111,7 @@ This site contains links and information for building the WormBot, an open hardw sc:url "http://www.bioinformatics.nl/WormQTL2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3489 ; sc:citation , @@ -79233,7 +64134,7 @@ This site contains links and information for building the WormBot, an open hardw "Yongzhuang Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3512 ; @@ -79247,7 +64148,7 @@ This site contains links and information for building the WormBot, an open hardw sc:url "https://github.com/WenjiangDeng/XAEM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, edam:topic_0659 ; @@ -79262,7 +64163,7 @@ This site contains links and information for building the WormBot, an open hardw sc:url "http://dna.cs.miami.edu/3D-XCI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_3520 ; @@ -79276,7 +64177,7 @@ This site contains links and information for building the WormBot, an open hardw sc:url "https://github.com/optimusmoose/jsms" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3295 ; sc:citation , "pubmed:31392406" ; @@ -79285,7 +64186,7 @@ This site contains links and information for building the WormBot, an open hardw sc:url "http://www.bioml.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_2828, edam:topic_3448 ; @@ -79298,7 +64199,7 @@ This site contains links and information for building the WormBot, an open hardw sc:url "https://stash.desy.de/users/gevorkov/repos/xgandalf/browse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, edam:topic_3170, @@ -79316,7 +64217,7 @@ This site contains links and information for building the WormBot, an open hardw sc:url "https://cran.r-project.org/web/packages/xgboost/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -79337,7 +64238,7 @@ This site contains links and information for building the WormBot, an open hardw biotools:primaryContact "Lyndal Henden" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0593, edam:topic_3678 ; @@ -79353,7 +64254,7 @@ Xipp (pronounced zip) is an NMR analysis software package created and supported sc:url "https://spin.niddk.nih.gov/dgarrett/Xipp/xipp.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_3678 ; @@ -79367,21 +64268,8 @@ Xipp (pronounced zip) is an NMR analysis software package created and supported sc:name "XL-mHG" ; sc:url "https://github.com/flo-compbio/xlmhg" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0154, - edam:topic_0199 ; - sc:citation , - "pubmed:31539018" ; - sc:description "> MEDIUM CONFIDENCE! | > NAME (XMAn) SIMILAR TO (PUB. DIFFERENT) bio.tools/xman (xMAN) | > CORRECT NAME OF TOOL COULD ALSO BE 'XMAn v2' | database of Homo sapiens mutated peptides | This script eliminates the hits reported from protein identification tools (proteomics) without the mutated amino acid in the sequence | Protein Descriptions contains the descriptions of the hits and these need to include the short sequence from the XMAn.v2 headers. (e.g. GN=CDC42BPB MRCKB_HUMAN Serine/threonine-protein kinase MRCK beta:c_C3625A:p_L1209I:VGIIEGL:Missense) | A file in EXCEL format (.xlsx) containing any columns but 2 columns with the exact following names: Sequence and Protein Descriptions" ; - sc:featureList edam:operation_2929, - edam:operation_3643, - edam:operation_3767 ; - sc:name "XMAn_autogenerated" ; - sc:url "http://github.com/lazarlab/XMAnv2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3067, edam:topic_3304, edam:topic_3337, @@ -79403,26 +64291,21 @@ XTRACT can be used to automatically extract a set of carefully dissected tracts a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -79446,7 +64329,7 @@ XTRACT can be used to automatically extract a set of carefully dissected tracts sc:url "http://www.xenmine.org/xenmine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2640, edam:topic_3170, @@ -79470,7 +64353,7 @@ Your web browser (Chrome 68) is out of date. Update your browser for more securi sc:url "https://pecan.stjude.cloud/permalink/xenocp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0208, edam:topic_2640, @@ -79492,7 +64375,7 @@ Your web browser (Chrome 68) is out of date. Update your browser for more securi biotools:primaryContact "Benjamin Haibe-Kains" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2259, edam:topic_3382 ; @@ -79513,7 +64396,7 @@ XitoSBML is an ImageJ plugin which creates a Spatial SBML model from segmented i sc:url "https://github.com/spatialsimulator/XitoSBML/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0780, edam:topic_3168, @@ -79526,7 +64409,7 @@ XitoSBML is an ImageJ plugin which creates a Spatial SBML model from segmented i sc:url "https://github.com/lfaino/xylella" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0625, edam:topic_2885, @@ -79546,7 +64429,7 @@ YALFF (Yet Another Lossy FASTQ Filter) is a smoother for FASTQ files which uses sc:url "https://github.com/yhhshb/yalff" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3168, edam:topic_3512 ; @@ -79560,41 +64443,8 @@ YALFF (Yet Another Lossy FASTQ Filter) is a smoother for FASTQ files which uses sc:name "YAPP" ; sc:url "http://www.bioinformatics.org/yapp/cgi-bin/yapp.cgi" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3305, - edam:topic_3419, - edam:topic_3420 ; - sc:citation , - "pubmed:31595419" ; - sc:description """promising practices for youth and adults working in partnership. - -SETTING:Canadian youth (aged 15-29 years) are more diverse, educated, connected and socially engaged than ever before. However, many face health-related challenges, including mental health problems (10-20%), substance use concerns (14%) and obesity (45%). INTERVENTION:The Young Canadians Roundtable on Health (YCRH) was created in 2013 to be Canada's youth voice on health. Supported by the Sandbox Project, this youth-led advisory works primarily virtually, leading advocacy projects and wide-ranging health initiatives. OUTCOMES:Youth and adult allies engaged in a participatory research evaluation of the YCRH, which was identified as a living laboratory, where youth could experiment with ideas and provide new perspectives on health issues. - -||| HOMEPAGE BROKEN!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Young Canadians Roundtable Health', 'engagement', 'youth', 'youth-led'""" ; - sc:name "YCRH" ; - sc:url "http://sandboxproject.ca/ycrh-ebook/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_0610, - edam:topic_3418 ; - sc:citation , - "pubmed:31746321" ; - sc:description """Adapting an evidence-based positive youth development intervention to prevent sexual and teen dating violence. - -Adapting evidence-based interventions (EBIs) guided by implementation science frameworks is a promising way to accelerate the translation of effective violence prevention in schools. School-based interventions offer an opportunity to reduce the risk of multiple forms of violence, including sexual violence (SV) and teen dating violence (TDV). EBIs in schools reach large populations of adolescents, including those underserved in other settings. Although specific SV TDV prevention programs exist, evaluations indicate limited effectiveness over time. - -||| HOMEPAGE BROKEN!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'YES-HR school-based', 'YES', 'TDV', 'frameworks'""" ; - sc:name "YES-HR" ; - sc:url "http://www.yes.sph.umich.edu" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, edam:topic_3320 ; @@ -79610,26 +64460,21 @@ Adapting evidence-based interventions (EBIs) guided by implementation science fr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -79653,7 +64498,7 @@ Adapting evidence-based interventions (EBIs) guided by implementation science fr sc:url "https://yeastmine.yeastgenome.org/yeastmine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3382 ; @@ -79673,7 +64518,7 @@ Adapting evidence-based interventions (EBIs) guided by implementation science fr "Alex Lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0632, edam:topic_3168, @@ -79691,7 +64536,7 @@ Adapting evidence-based interventions (EBIs) guided by implementation science fr sc:url "https://bigsdb.pasteur.fr/yersinia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0130, @@ -79715,7 +64560,7 @@ Adapting evidence-based interventions (EBIs) guided by implementation science fr biotools:primaryContact "Dmitry Suplatov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0152, @@ -79738,41 +64583,8 @@ Adapting evidence-based interventions (EBIs) guided by implementation science fr biotools:primaryContact , "Liza F Felicori" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0749, - edam:topic_3512 ; - sc:citation , - "pubmed:31512145" ; - sc:description "> CORRECT NAME OF TOOL COULD ALSO BE 'ZIKAVID', 'ZIKA Virus Infection Database' | a new platform to analyze the molecular impact of Zika virus infection | ZIKV is a database that has been manually developed and cured by Brazilian researchers, experts in the fields of microbial infection and host-pathogen interaction, molecular biology, proteomics and neurochemistry. Our goal is to gather all information on gene expression alterations at mRNA and/or protein level promoted by Zika virus infection in different host models. The… | ZIKV is a database that has been manually developed and cured by Brazilian researchers, experts in the fields of microbial infection and host-pathogen interaction, molecular biology, proteomics and neurochemistry | The database provides information on genes which expression was experimentally measured after ZIKV infection" ; - sc:featureList edam:operation_3431 ; - sc:name "ZIKAVID-Zika virus infection database" ; - sc:url "https://zikavid.org" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0780, - edam:topic_3047, - edam:topic_3172 ; - sc:citation ; - sc:description """database-independent molecular formula annotation using Gibbs sampling reveals unknown small molecules. - -1 Abstract The confident high-throughput identification of small molecules remains one of the most challenging tasks in mass spectrometry-based metabolomics. SIRIUS has become a powerful tool for the interpretation of tandem mass spectra, and shows outstanding performance for identifying the molecular formula of a query compound, being the first step of structure identification. Nevertheless, the identification of both molecular formulas for large compounds above 500 Daltons and novel molecular formulas remains highly challenging. Here, we present ZODIAC, a network-based algorithm for the de novo estimation of molecular formulas. - -||| HOMEPAGE MISSING!. - -||| NAME (ZODIAC) SIMILAR TO (PUB. DIFFERENT) bio.tools/zodiac (Zodiac). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'SIRIUS'""" ; - sc:featureList edam:operation_0224, - edam:operation_2238, - edam:operation_3801, - edam:operation_3803 ; - sc:name "ZODIAC_autogenerated" ; - sc:url "https://doi.org/10.1101/842740" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0611, edam:topic_2840, @@ -79792,26 +64604,21 @@ Adapting evidence-based interventions (EBIs) guided by implementation science fr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -79836,41 +64643,13 @@ It currently includes updates of data from ZFIN, the zebrafish model organism da sc:url "http://zebrafishmine.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Zebrafish is an online database of standardized Zebrafish (a marine vertebrate model) neuroanatomy, accessible via an interactive interface for 3D visualisation." ; sc:name "Zebrafish neuroanatomy" ; sc:url "https://zebrafish.tefor.net/#/home?_k=3p8igq" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0781, - edam:topic_3305, - edam:topic_3324, - edam:topic_3334, - edam:topic_3400 ; - sc:citation , - "pmcid:PMC6818126", - "pubmed:31640505" ; - sc:description """addressing the knowledge gaps and working towards a research preparedness network in the Americas. - -From urgent response to long-term capacity. - -A global initiative to address research challenges posed by the Zika outbreak and build a sustainable response capacity in Latin America. - -Research on track and productive exchanges with Colombian partners at the annual ZikaPLAN consortium meeting. - -October 28, 2019 - The Universidad del Valle hosted the annual ZikaPLAN meeting October 21-22, convening over 60 consortium members in Cali, Colombia. Read more. - -We use cookies to track visits to our website, and we don't store any of your personal details. Find out more. - -The Global Health Network The Global Health Network. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'REDe'""" ; - sc:featureList edam:operation_3454 ; - sc:name "ZikaPLAN" ; - sc:url "https://zikaplan.tghn.org/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -79894,7 +64673,7 @@ The Global Health Network The Global Health Network. biotools:primaryContact "Sam Ireland" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, edam:topic_3382 ; @@ -79907,7 +64686,7 @@ The Global Health Network The Global Health Network. sc:url "https://github.com/ADParedes/Zirmi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084 ; sc:citation , "pubmed:31566657" ; @@ -79919,7 +64698,7 @@ The Global Health Network The Global Health Network. sc:url "https://github.com/AADavin/ZOMBI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3452 ; @@ -79938,7 +64717,7 @@ The Global Health Network The Global Health Network. biotools:primaryContact "Australian Antarctic Division" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2828, edam:topic_3489 ; @@ -79952,7 +64731,7 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr sc:url "https://mofs-genomics.github.io/Zr-MOFs-Database" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:26476781" ; @@ -79964,7 +64743,7 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr sc:url "http://web.cbio.uct.ac.za/ITGOM/adagofun/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:29329522" ; @@ -79976,8 +64755,27 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr sc:url "http://beaconlab.it/agame" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2275, + edam:topic_3047, + edam:topic_3336, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9306080", + "pubmed:35869511" ; + sc:description "A method that simultaneously identifies and optimizes hit/lead molecules by integrating chemical- and protein-space-driven architectures and stands for an automated-hit identification and optimization tool (A-HIOT)." ; + sc:featureList edam:operation_2422, + edam:operation_3935, + edam:operation_3938 ; + sc:license "Not licensed" ; + sc:name "A-HIOT" ; + sc:url "https://gitlab.com/neeraj-24/A-HIOT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3360, @@ -79996,7 +64794,7 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr sc:url "https://github.com/menghaomiao/aitr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0203 ; @@ -80016,7 +64814,7 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr "Stefania Bortoluzzi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, @@ -80038,8 +64836,43 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr sc:url "https://github.com/Julia-F-S/a-o-tool" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workflow" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3304, + edam:topic_3444 ; + sc:citation , + "pubmed:35878599" ; + sc:description "A pipeline to automatically process and analyze simultaneously acquired EEG-fMRI data for sleep research" ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "A-PASS" ; + sc:url "https://github.com/guangyuanzou/A-PASS" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0123, + edam:topic_2814, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8925138", + "pubmed:35296230" ; + sc:description "Protein structure modeling using MSA transformer" ; + sc:featureList edam:operation_0267, + edam:operation_0272, + edam:operation_0303, + edam:operation_0477, + edam:operation_0492 ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "A-Prot" ; + sc:url "https://github.com/arontier/A_Prot_Paper" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3303, @@ -80055,24 +64888,63 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr sc:softwareHelp ; sc:url "https://a2a.csiro.au/benchmarking/resources" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0632, + edam:topic_2229, + edam:topic_3170, + edam:topic_3308, + edam:topic_3518 ; + sc:citation , + "pubmed:34788798" ; + sc:description "A2Sign (Agnostic Algorithms for Signatures) a universal method for identifying molecular signatures from transcriptomic datasets prior to cell-type deconvolution." ; + sc:featureList edam:operation_0314, + edam:operation_3629, + edam:operation_3802 ; + sc:license "MIT" ; + sc:name "A2Sign" ; + sc:url "https://github.com/paulfogel/A2SIGN" ; + biotools:primaryContact "Franck Augé" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0130, + edam:topic_0166, + edam:topic_0736 ; + sc:citation ; + sc:description "A3D Database is a database for structure-based protein aggregation predictions for the human proteome" ; + sc:featureList edam:operation_0408, + edam:operation_0409, + edam:operation_0474, + edam:operation_3436, + edam:operation_4008 ; + sc:isAccessibleForFree true ; + sc:name "A3D Database" ; + sc:url "http://biocomp.chem.uw.edu.pl/A3D2/hproteome" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3113" ; - sc:name "Sample annotation" ; - sc:sameAs "http://edamontology.org/data_3113" ], + sc:additionalType "http://edamontology.org/data_3113" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Sample annotation" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_2056" ; + sc:name "Processed microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ], + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_2056" ; + sc:name "Processed microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3113" ; - sc:name "Sample annotation" ; - sc:sameAs "http://edamontology.org/data_3113" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3113" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Sample annotation" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -80095,7 +64967,7 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr "Willem Ligtenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -80118,7 +64990,7 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr "Willem Ligtenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3473, @@ -80139,7 +65011,7 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr "Willem Ligtenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -80160,7 +65032,7 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr "Willem Ligtenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0089, @@ -80181,7 +65053,7 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr "Willem Ligtenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_1775, @@ -80202,7 +65074,7 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr "Willem Ligtenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -80217,7 +65089,7 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr biotools:primaryContact "Aaron E. Darling" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation "pubmed:25338718" ; @@ -80233,14 +65105,13 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3857" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091 ; sc:description "aCLImatise is a Python library and command-line utility for parsing the help output of a command-line tool and then outputting a description of the tool in a more structured format, for example a Common Workflow Language tool definition." ; @@ -80254,7 +65125,7 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr sc:url "https://github.com/aCLImatise/CliHelpParser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -80278,7 +65149,7 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr "Wentao Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -80291,31 +65162,27 @@ You can find more than 182 experimentally synthesized guest-free and disorder-fr sc:softwareVersion "1" ; sc:url "http://tools.genouest.org/data/apurva/manual.pdf" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0121, + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0128, edam:topic_0154, - edam:topic_3168 ; - sc:citation ; - sc:description """MATLAB software for extracting protein name and sequence information from FASTA formatted proteome file. - -Convert amino acid sequence to nucleotide sequence. - -This MATLAB function converts an amino acid sequence, specified by SeqAA, to a nucleotide sequence, returned in SeqNT, using the standard genetic code. - -SeqNT = aa2nt(SeqAA, ...'GeneticCode', GeneticCodeValue, ...). - -SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with optional properties that use property name/property value pairs. You can specify one or more properties in any order. Each PropertyName must be enclosed in single quotation marks and is case insensitive. These property name/property value pairs are as follows:. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'fastaread', 'molweight', 'MATLAB', 'enmeshed'""" ; - sc:featureList edam:operation_0233, - edam:operation_0398, - edam:operation_1812 ; - sc:name "aa2nt" ; - sc:url "https://www.mathworks.com/help/bioinfo/ref/aa2nt.html" . + edam:topic_2275, + edam:topic_3336 ; + sc:citation , + "pubmed:35452230" ; + sc:description "A command line tool for protein-ligand binding affinity prediction" ; + sc:featureList edam:operation_0394, + edam:operation_1839, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "AA-Score" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/xundrug/AA-Score-Tool" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -80334,7 +65201,7 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt sc:url "https://github.com/SimpleNumber/aa_stat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -80351,7 +65218,7 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt biotools:primaryContact "ExPASy helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -80368,7 +65235,7 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt biotools:primaryContact "ExPASy helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Set of tools implementing different conservation scores." ; @@ -80381,8 +65248,25 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt sc:softwareVersion "1" ; sc:url "http://www.compbio.dundee.ac.uk/aacon/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3384, + edam:topic_3474 ; + sc:citation , + "pubmed:35862336" ; + sc:description "Automated Augmentation for Domain Generalization (AADG) is a data manipulation based domain generalization method that can sample data augmentation policies that generate domains and diversify the training set from an appropriate search space." ; + sc:featureList edam:operation_2428, + edam:operation_3799 ; + sc:license "Not licensed" ; + sc:name "AADG" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/CRazorback/AADG" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -80400,10 +65284,9 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1501" ; - sc:name "Amino acid index" ; - sc:sameAs "http://edamontology.org/data_1501" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1501" ; + sc:name "Amino acid index" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation , @@ -80433,7 +65316,7 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt sc:url "http://emboss.open-bio.org/rel/rel6/apps/aaindexextract.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0140 ; sc:citation "pubmed:18163182" ; @@ -80448,7 +65331,7 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt sc:url "http://aaindexloc.bii.a-star.edu.sg/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0097, @@ -80468,7 +65351,7 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt sc:url "https://github.com/biogramming/AASRA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation "pubmed:21992029" ; @@ -80483,14 +65366,14 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1219" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0874" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Comparison matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0080, @@ -80509,8 +65392,31 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt sc:url "http://bioserver2.sbsc.unifi.it/bioinfo/aastretch/index.html" ; biotools:primaryContact "Matteo Ramazzotti" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0199, + edam:topic_0219, + edam:topic_2830 ; + sc:citation , + "pubmed:35771624" ; + sc:description "A curated database for binding affinity and neutralization profiles of coronavirus related antibodies." ; + sc:featureList edam:operation_0331, + edam:operation_0337, + edam:operation_0416 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Ab-CoV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://web.iitm.ac.in/bioinfo2/ab-cov/home" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0605, @@ -80528,7 +65434,7 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0084, @@ -80549,7 +65455,7 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -80567,7 +65473,7 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt biotools:primaryContact "Barbara Di Camillo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -80587,7 +65493,7 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt biotools:primaryContact "Steffi Grote" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3293, @@ -80603,22 +65509,22 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2337" ; - sc:name "Resource metadata" ; - sc:sameAs "http://edamontology.org/data_2337" ], + sc:additionalType "http://edamontology.org/data_2337" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Resource metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -80643,7 +65549,7 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt biotools:primaryContact "Yongming Andrew Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0204, edam:topic_0602, @@ -80658,8 +65564,23 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt sc:name "Abasy Atlas" ; sc:url "https://abasy.ccg.unam.mx/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3174 ; + sc:citation ; + sc:description "abawaca (A Binning Algorithm Without A Cool Acronym) is a binning program that can take advantage of different types of information such as differential coverage and DNA signature." ; + sc:featureList edam:operation_3798 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "abawaca" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareHelp ; + sc:url "https://github.com/CK7/abawaca" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -80677,7 +65598,7 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt sc:url "http://www.biofacebook.com/?p=250" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169 ; @@ -80691,7 +65612,7 @@ SeqNT = aa2nt(SeqAA, ...'PropertyName', PropertyValue, ...) calls aa2nt with opt sc:url "https://github.com/mlupien/ABC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -80710,7 +65631,7 @@ ABC-Finder i.e., A Docker-based package for the identification of ABC proteins i sc:url "http://abc-finder.osdd.jnu.ac.in" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2640, @@ -80728,8 +65649,49 @@ ABC-Finder i.e., A Docker-based package for the identification of ABC proteins i sc:name "ABC-GWAS" ; sc:url "http://education.knoweng.org/abc-gwas/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workflow" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0749, + edam:topic_3169, + edam:topic_3170, + edam:topic_3179 ; + sc:citation , + "pmcid:PMC8896320", + "pubmed:35240993" ; + sc:description "abc4pwm is a software tool for clustering of pwms, classficiation of pwms to their DNA binding Domain, motif search, and other supportive modules." ; + sc:featureList edam:operation_0238, + edam:operation_0239, + edam:operation_3192, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "abc4pwm" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://omer0191.github.io/abc4pwm/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_3308, + edam:topic_3400, + edam:topic_3408 ; + sc:citation , + "pubmed:35920330" ; + sc:description "ABC portal provides web-based interactive analysis modules, especially a comprehensive cell-cell communication analysis and disease-related gene signature analysis." ; + sc:license "Not licensed" ; + sc:name "ABC portal" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://abc.sklehabc.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_3056 ; @@ -80748,7 +65710,7 @@ ABC-Finder i.e., A Docker-based package for the identification of ABC proteins i sc:url "https://yunliweb.its.unc.edu/AbCD.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -80763,7 +65725,7 @@ ABC-Finder i.e., A Docker-based package for the identification of ABC proteins i sc:url "http://www.bioinfoindia.org/abcd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workbench" ; sc:applicationSubCategory edam:topic_0218, @@ -80780,7 +65742,7 @@ ABC-Finder i.e., A Docker-based package for the identification of ABC proteins i sc:url "https://github.com/atrautm1/ABCkb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3473, @@ -80798,7 +65760,7 @@ In order to extract useful information from a huge amount of biological data now sc:url "http://lishuyan.lzu.edu.cn/ABCModeller.rar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3361 ; @@ -80812,7 +65774,7 @@ In order to extract useful information from a huge amount of biological data now sc:url "https://git.io/AdelaiDet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0121, @@ -80825,12 +65787,27 @@ In order to extract useful information from a huge amount of biological data now sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:softwareHelp ; - sc:url "http://crdd.osdd.net/raghava//abcpred/" ; + sc:softwareHelp ; + sc:url "http://webs.iiitd.edu.in/raghava/abcpred/" ; biotools:primaryContact "Gajendra P.S. Raghava" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0634, + edam:topic_3047, + edam:topic_3474 ; + sc:citation , + "pubmed:34609711" ; + sc:description "ABCpred is a webserver for the discovery of acetyl- and butyryl-cholinesterase inhibitors." ; + sc:isAccessibleForFree true ; + sc:name "ABCpred" ; + sc:url "http://codes.bio/abcpred/" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -80848,8 +65825,27 @@ In order to extract useful information from a huge amount of biological data now "Windows" ; sc:url "http://webs.iiitd.edu.in/raghava/abcrpred/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3172, + edam:topic_3315, + edam:topic_3407 ; + sc:citation , + "pubmed:35657711" ; + sc:description "ABCstats is an R package for metabolomics data transformation. Adaptive Box-Cox (ABC) transformation improves the data normality for statistical analysis." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ABCstats" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/HuanLab/ABCstats" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0196, @@ -80868,7 +65864,7 @@ In order to extract useful information from a huge amount of biological data now sc:url "https://github.com/Fleishman-Lab/AbDesign_for_enzymes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2814, edam:topic_2830, @@ -80884,16 +65880,32 @@ In order to extract useful information from a huge amount of biological data now sc:url "http://sysbio.chula.ac.th/AbDesigner3D/" ; biotools:primaryContact "Trairak Pisitkun" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_2830, + edam:topic_3168, + edam:topic_3374 ; + sc:citation ; + sc:description "AbDiver is a tool to explore the natural antibody landscape to aid therapeutic design." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3431 ; + sc:name "AbDiver" ; + sc:softwareHelp ; + sc:url "http://research.naturalantibody.com/abdiver" ; + biotools:primaryContact "Konrad Krawczyk" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1917" ; - sc:name "Atomic property" ; - sc:sameAs "http://edamontology.org/data_1917" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1917" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Atomic property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3332 ; @@ -80913,27 +65925,8 @@ In order to extract useful information from a huge amount of biological data now sc:url "http://ncbr.muni.cz/~svobodova/eem_abeem" ; biotools:primaryContact "Radka Svobodová Vařeková" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0176, - edam:topic_2229, - edam:topic_2275 ; - sc:citation , - "pubmed:31875784" ; - sc:description """Molecular Dynamics Mechanisms of the Inhibitory Effects of Abemaciclib, Hymenialdisine, and Indirubin on CDK-6. - -BACKGROUND:Cyclin-Dependent Kinases-6 (CDK-6) is a serine threonine protein kinase with regular activity in the cell cycle. Some inhibitors, such as abemaciclib, hymenialdisine, and indirubin, cause cell arrest by decreasing its activity. OBJECTIVES:The purpose of this study was to evaluate the Molecular Dynamic (MD) effects of abemaciclib, hymenialdisine, and indirubin on the structure of CDK-6. METHODS:The PDB file of CDK-6 was obtained from the Protein Data Bank (http: www.rcsb.org). After the simulation of CDK-6 in the Gromacs software, 200 stages of molecular docking were run on CDK-6 in the presence of the inhibitors using AutoDock 4.2. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'abemaciclib hymenialdisine indirubin', 'abemaciclib hymenialdisine indirubin inhibitors', 'hymenialdisine indirubin', 'abemaciclib hymenialdisine'""" ; - sc:featureList edam:operation_0478, - edam:operation_2415, - edam:operation_2476 ; - sc:name "abemaciclib indirubin hymenialdisine" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31875784" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0219 ; @@ -80951,7 +65944,7 @@ BACKGROUND:Cyclin-Dependent Kinases-6 (CDK-6) is a serine threonine protein kina biotools:primaryContact "Robert Hoehndorf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625 ; @@ -80961,7 +65954,7 @@ BACKGROUND:Cyclin-Dependent Kinases-6 (CDK-6) is a serine threonine protein kina sc:url "http://www.imbs-luebeck.de/imbs/node/40" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:description "abi2xml is a command line utility to convert an abi trace file to an xml file. Abi trace files contain DNA sequence data and are e.g. produced by ABI PRISM TM 377 DNA sequencers." ; @@ -80976,18 +65969,15 @@ BACKGROUND:Cyclin-Dependent Kinases-6 (CDK-6) is a serine threonine protein kina a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2168" ; - sc:name "Sequence trace image" ; - sc:sameAs "http://edamontology.org/data_2168" ], + sc:additionalType "http://edamontology.org/data_2168" ; + sc:name "Sequence trace image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation , @@ -81018,7 +66008,7 @@ BACKGROUND:Cyclin-Dependent Kinases-6 (CDK-6) is a serine threonine protein kina sc:url "http://emboss.open-bio.org/rel/rel6/apps/abiview.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0092 ; sc:description "This tool reads in an ABI sequence trace file and graphically displays the results." ; @@ -81032,7 +66022,7 @@ BACKGROUND:Cyclin-Dependent Kinases-6 (CDK-6) is a serine threonine protein kina sc:url "http://genius.embnet.dkfz-heidelberg.de/menu/hobit/embdoc/abiview.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -81051,7 +66041,7 @@ BACKGROUND:Cyclin-Dependent Kinases-6 (CDK-6) is a serine threonine protein kina sc:url "https://github.com/sashahafner/ABM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -81069,7 +66059,7 @@ BACKGROUND:Cyclin-Dependent Kinases-6 (CDK-6) is a serine threonine protein kina biotools:primaryContact "Xiaoqiang Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0102 ; @@ -81087,7 +66077,7 @@ BACKGROUND:Cyclin-Dependent Kinases-6 (CDK-6) is a serine threonine protein kina biotools:primaryContact "Hong Kong Bioinformatics Center" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0610, @@ -81104,7 +66094,7 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a sc:url "https://github.com/bgoch5/abmr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3070 ; @@ -81119,22 +66109,8 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a sc:softwareVersion "1.5" ; sc:url "http://pages.cs.wisc.edu/~bsettles/abner/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0203, - edam:topic_2885 ; - sc:citation , - "pmcid:PMC6754452", - "pubmed:31541133" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'associated autoimmunity', 'assumed substantially' | Evaluation of the functional effects of genetic variants‒missense and nonsense SNPs, indels and copy number variations‒in the gene encoding human deoxyribonuclease I potentially implicated in autoimmunity | Export custom datasets from Ensembl with this data-mining tool | Search our genomes for your DNA or protein sequence" ; - sc:featureList edam:operation_0484, - edam:operation_0488, - edam:operation_3196 ; - sc:name "abolishing activity" ; - sc:url "https://asia.ensembl.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176 ; sc:citation ; @@ -81149,7 +66125,7 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a biotools:primaryContact "Martin Robinson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0769 ; @@ -81163,7 +66139,7 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a sc:url "https://github.com/yangao07/abPOA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -81181,7 +66157,7 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a sc:url "https://github.com/mozack/abra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3444, edam:topic_3452 ; @@ -81197,22 +66173,19 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ], + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2741" ; - sc:name "ABS ID" ; - sc:sameAs "http://edamontology.org/data_2741" ], + sc:additionalType "http://edamontology.org/data_1077" ; + sc:name "Transcription factor identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1077" ; - sc:name "Transcription factor identifier" ; - sc:sameAs "http://edamontology.org/data_1077" ] ; + sc:additionalType "http://edamontology.org/data_2741" ; + sc:name "ABS ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation ; @@ -81228,7 +66201,7 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a sc:url "http://genome.imim.es/datasets/abs2005/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275 ; @@ -81245,7 +66218,7 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a biotools:primaryContact "Nagasuma Chandra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3297, @@ -81264,7 +66237,7 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a biotools:primaryContact "Alexander Yermanos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, @@ -81281,7 +66254,7 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a sc:url "https://web.iitm.ac.in/bioinfo2/absolurate-pred/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3374 ; @@ -81297,18 +66270,18 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Plug-in" ; @@ -81335,7 +66308,7 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a biotools:primaryContact "Wentao Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3305, @@ -81351,14 +66324,14 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:author "Shaun Jackman" ; @@ -81378,7 +66351,7 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a biotools:primaryContact "Shaun Jackman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, edam:topic_3295, @@ -81395,8 +66368,31 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a sc:operatingSystem "Windows" ; sc:url "https://github.com/JinmiaoS/AC-Caps" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3170, + edam:topic_3305, + edam:topic_3512, + edam:topic_3673, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9278763", + "pubmed:35830390" ; + sc:description "Adjustment for Confounding factors using Principal Coordinate Analysis (AC-PCoA) is a R package that adjust for confounding factors using principal coordinate analysis." ; + sc:featureList edam:operation_2939, + edam:operation_3891, + edam:operation_3935, + edam:operation_3960 ; + sc:license "Not licensed" ; + sc:name "AC-PCoA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/YuWang28/acPCoA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -81412,7 +66408,7 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a sc:url "https://github.com/cobilab/ac2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3318, edam:topic_3382 ; @@ -81426,7 +66422,7 @@ Agent-based modeling (ABM) shows promise for animal movement studies. However, a sc:url "https://github.com/juntang-zhuang/torch-ACA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0102, @@ -81442,8 +66438,19 @@ Accel-Align does base-to-base alignment by default.""" ; sc:name "Accel-Align" ; sc:url "https://github.com/raja-appuswamy/accel-align-release" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_3382 ; + sc:citation , + "pubmed:35417367" ; + sc:description "A adjacent context coordination network (ACCoNet) to explore the coordination of adjacent features in an encoder-decoder architecture for RSI-SOD." ; + sc:license "Not licensed" ; + sc:name "ACCoNet" ; + sc:url "https://github.com/MathLee/ACCoNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3673, @@ -81456,7 +66463,7 @@ Accel-Align does base-to-base alignment by default.""" ; sc:url "https://www.yfish.org/display/PUB/Accucopy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2229, @@ -81474,7 +66481,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a sc:url "https://github.com/callsobing/accuEnhancer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3370, edam:topic_3524 ; @@ -81489,7 +66496,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a sc:url "http://www.acdlabs.com/resources/freeware/colsel/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -81519,7 +66526,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a sc:url "http://emboss.open-bio.org/rel/rel6/apps/acdc.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3056 ; @@ -81535,14 +66542,14 @@ Enhancers are one class of the regulatory elements that have been shown to act a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0091 ; @@ -81560,7 +66567,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a biotools:primaryContact "Markus Lux" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -81581,7 +66588,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a biotools:primaryContact "Juan Pablo Acosta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -81611,7 +66618,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a sc:url "http://emboss.open-bio.org/rel/rel6/apps/acdpretty.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -81641,7 +66648,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a sc:url "http://emboss.open-bio.org/rel/rel6/apps/acdtable.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "Web-server for the generic analysis of large data sets of counts." ; @@ -81649,7 +66656,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a sc:url "http://www.igs.cnrs-mrs.fr/acdtool/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -81679,7 +66686,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a sc:url "http://emboss.open-bio.org/rel/rel6/apps/acdtrace.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -81709,7 +66716,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a sc:url "http://emboss.open-bio.org/rel/rel6/apps/acdvalid.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -81723,7 +66730,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a sc:url "https://github.com/sheikhizadeh/ACE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3314, edam:topic_3372 ; @@ -81736,7 +66743,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a sc:url "https://gitlab.com/aceteam.kaist/ACE-Molecule" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0659, @@ -81752,7 +66759,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a sc:url "https://gpwhiz.github.io/ACE2Netlas/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -81768,7 +66775,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a sc:url "http://www.bioinformatics.org/project/?group_id=39" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3170, @@ -81788,7 +66795,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a "Jiapeng Luo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3063, @@ -81807,7 +66814,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a biotools:primaryContact "Alison Callahan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3315, @@ -81823,7 +66830,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a biotools:primaryContact "Ashlee N. Ford Versypt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -81844,7 +66851,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a biotools:primaryContact "Yoshimasa Tsuruoka" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -81864,7 +66871,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a sc:url "https://github.com/Fuhaoyi/ACEP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:description "AceParser: Parse an Ace file (Phred/Phrap output) into a tab-delimited assembly alignment file. Options to include embedded annotation from multiple sources." ; @@ -81879,7 +66886,7 @@ Enhancers are one class of the regulatory elements that have been shown to act a sc:url "http://www.personal.psu.edu/jhm10/Vera/SoftwareC.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -81905,114 +66912,96 @@ Generates BLAST hits against each of the reference genomes, a multiple sequence a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_2704" ; + sc:name "Clone ID (IMAGE)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1027" ; - sc:name "Gene ID (NCBI)" ; - sc:sameAs "http://edamontology.org/data_1027" ], + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2803" ; - sc:name "Clone ID (RefSeq)" ; - sc:sameAs "http://edamontology.org/data_2803" ], + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_1027" ; + sc:name "Gene ID (NCBI)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2704" ; - sc:name "Clone ID (IMAGE)" ; - sc:sameAs "http://edamontology.org/data_2704" ], + sc:additionalType "http://edamontology.org/data_2292" ; + sc:name "GenBank accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_2803" ; + sc:name "Clone ID (RefSeq)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2292" ; - sc:name "GenBank accession" ; - sc:sameAs "http://edamontology.org/data_2292" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene transcript report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623, edam:topic_3512 ; @@ -82030,7 +67019,7 @@ Generates BLAST hits against each of the reference genomes, a multiple sequence sc:url "http://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_3056 ; @@ -82046,7 +67035,7 @@ Generates BLAST hits against each of the reference genomes, a multiple sequence biotools:primaryContact "Brendan O'Fallon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -82066,7 +67055,7 @@ Generates BLAST hits against each of the reference genomes, a multiple sequence biotools:primaryContact "Peter Dimitrov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -82082,8 +67071,27 @@ Generates BLAST hits against each of the reference genomes, a multiple sequence sc:name "ACID" ; sc:url "http://bioinfo.thep.lu.se/acid.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Suite" ; + sc:applicationSubCategory edam:topic_0769 ; + sc:citation , + "pmcid:PMC9237710", + "pubmed:35575355" ; + sc:description "Acidbio a system for automated testing and certification of bioinformatics file format interoperability." ; + sc:featureList edam:operation_0335, + edam:operation_0336, + edam:operation_1812, + edam:operation_3216, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "Acidbio" ; + sc:url "https://github.com/hoffmangroup/acidbio" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0623, @@ -82104,7 +67112,7 @@ Generates BLAST hits against each of the reference genomes, a multiple sequence biotools:primaryContact "The ACLAME team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0160, @@ -82126,7 +67134,7 @@ Generates BLAST hits against each of the reference genomes, a multiple sequence biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_2275 ; @@ -82141,7 +67149,7 @@ Generates BLAST hits against each of the reference genomes, a multiple sequence sc:url "http://bibiserv2.cebitec.uni-bielefeld.de/acms" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0202, @@ -82159,7 +67167,7 @@ ACNPD is an online tool that provides users with a quick search of the pharmacol sc:url "http://www.acnpd-fu.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -82178,8 +67186,33 @@ ACNPD is an online tool that provides users with a quick search of the pharmacol sc:url "https://github.com/Yoniming/code" ; biotools:primaryContact "Niu Yi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Workflow" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_2259, + edam:topic_3170, + edam:topic_3308, + edam:topic_3320 ; + sc:citation , + "pmcid:PMC8983708", + "pubmed:35383181" ; + sc:description "A tool for isoform co-usage networks from single-cell RNA-seq data" ; + sc:featureList edam:operation_0264, + edam:operation_0313, + edam:operation_3463, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "acorde" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ConesaLab/acorde" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3336, edam:topic_3373, @@ -82193,8 +67226,31 @@ ACNPD is an online tool that provides users with a quick search of the pharmacol sc:name "Acoustilytix" ; sc:url "http://acoustilytix.com/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0154, + edam:topic_3068, + edam:topic_3071 ; + sc:citation , + "pmcid:PMC9192597", + "pubmed:35697698" ; + sc:description "ACovPepDB is a comprehensive peptides database of anti-coronavirus peptides, which contains 518 enrties with 214 unique ACovPs manually extracted from research articles and public databases." ; + sc:featureList edam:operation_0306, + edam:operation_2421, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-4.0" ; + sc:name "ACovPepDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://i.uestc.edu.cn/ACovPepDB/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2640, @@ -82213,7 +67269,7 @@ ACNPD is an online tool that provides users with a quick search of the pharmacol sc:url "http://github.com/chenxgscuec/ACPDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_3474 ; @@ -82226,7 +67282,7 @@ ACNPD is an online tool that provides users with a quick search of the pharmacol sc:url "https://github.com/mrzResearchArena/Anticancer-Peptides-CNN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2640, @@ -82243,7 +67299,7 @@ ACNPD is an online tool that provides users with a quick search of the pharmacol sc:url "http://server.malab.cn/ACPred-LAF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -82261,7 +67317,7 @@ Anticancer peptides (ACPs),known as potential future therapeutics for cancer, ha sc:url "http://bigdata.biocie.cn/ACPredStackL/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0593, edam:topic_1317 ; @@ -82278,7 +67334,7 @@ Anticancer peptides (ACPs),known as potential future therapeutics for cancer, ha sc:url "http://code.google.com/p/acpype/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0621, @@ -82297,7 +67353,7 @@ Acr (anti-CRISPR) proteins are short proteins usually found in phages prophages sc:url "http://bcb.unl.edu/AcrDB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0749, @@ -82310,7 +67366,7 @@ Acr (anti-CRISPR) proteins are short proteins usually found in phages prophages sc:url "https://github.com/RiversDong/AcrDetector" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, @@ -82326,7 +67382,7 @@ Acr (anti-CRISPR) proteins are short proteins usually found in phages prophages sc:url "https://github.com/ramzan1990/ACRE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -82347,7 +67403,7 @@ Acr (anti-CRISPR) proteins are short proteins usually found in phages prophages sc:url "http://bcb.unl.edu/AcrFinder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0160, @@ -82367,7 +67423,7 @@ Bacteria and archaea have developed a wide variety of CRISPR-Cas systems to prot sc:url "http://pacrispr.erc.monash.edu/AcrHub/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -82391,22 +67447,25 @@ Bacteria and archaea have developed a wide variety of CRISPR-Cas systems to prot a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3271" ; - sc:name "Gene tree" ; - sc:sameAs "http://edamontology.org/data_3271" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3271" ; + sc:name "Gene tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3308 ; sc:citation , + , , , "pmcid:PMC1538833", + "pmcid:PMC8334378", + "pmcid:PMC8885756", "pubmed:16623895", - "pubmed:16845059" ; + "pubmed:16845059", + "pubmed:34381973", + "pubmed:35243384" ; sc:description "The Arabidopsis Coexpression Tool (ACT) is based on the coexpression analysis of 21273 Arabidopsis thaliana genes from gene pair correlation data of 3500 Affymetrix Arabidopsis ATH1 Genome Array Chip microarray samples." ; sc:featureList edam:operation_2938 ; sc:isAccessibleForFree true ; @@ -82422,14 +67481,14 @@ Bacteria and archaea have developed a wide variety of CRISPR-Cas systems to prot a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -82446,7 +67505,7 @@ Bacteria and archaea have developed a wide variety of CRISPR-Cas systems to prot biotools:primaryContact "Shahin Mohammadi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -82460,7 +67519,7 @@ Bacteria and archaea have developed a wide variety of CRISPR-Cas systems to prot sc:url "https://github.com/SindiLab/ACTIVA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0601, @@ -82493,7 +67552,7 @@ cancer mutations in CTNNB1 phosphodegron.""" ; "Michał Krassowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749 ; @@ -82509,7 +67568,7 @@ cancer mutations in CTNNB1 phosphodegron.""" ; biotools:primaryContact "Harris Engineering Center" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -82529,7 +67588,7 @@ cancer mutations in CTNNB1 phosphodegron.""" ; sc:url "https://github.com/tgen/ACValidator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3474 ; @@ -82544,7 +67603,7 @@ cancer mutations in CTNNB1 phosphodegron.""" ; sc:url "https://gitlab.cs.washington.edu/abdincer/ad-ae" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0176, @@ -82569,7 +67628,7 @@ cancer mutations in CTNNB1 phosphodegron.""" ; biotools:primaryContact "Wenjun Zheng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0637, @@ -82586,7 +67645,7 @@ cancer mutations in CTNNB1 phosphodegron.""" ; biotools:primaryContact "Matlab Mebin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Web API" ; sc:applicationSubCategory edam:topic_0634, @@ -82604,7 +67663,7 @@ cancer mutations in CTNNB1 phosphodegron.""" ; sc:url "http://adknowledgeportal.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3337, edam:topic_3571 ; @@ -82620,8 +67679,30 @@ The Automatable Discovery and Access Matrix (ADA-M) provides a standardized way sc:name "ADA-M" ; sc:url "https://github.com/ga4gh/ADA-M" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_2269, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8555268", + "pubmed:34715775" ; + sc:description "Adaptive Boltzmann machine learning for Potts models of biological data (adabmDCA) This is an implementation of the Boltzmann machine learning to infer several maximum-entropy statistical models of Potts or Ising variables given a set of observables. More precisely, it infers the couplings and the fields of a set of generalized Direct Coupling Analysis (DCA) models given a Multiple Sequence Alignment (MSA) of protein or RNA sequences. It is also possible to infer an Ising model from a set of spin configurations. The learning is performed via a gradient ascent of the likelihood of the data in which the model observables are computed via a Markov Chain Monte Carlo (MCMC) sampling." ; + sc:featureList edam:operation_0272, + edam:operation_0477, + edam:operation_2939, + edam:operation_3658, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "adabmDCA" ; + sc:softwareHelp ; + sc:url "https://github.com/anna-pa-m/adabmDCA" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3175 ; @@ -82639,7 +67720,7 @@ The Automatable Discovery and Access Matrix (ADA-M) provides a standardized way biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -82659,7 +67740,7 @@ ADACT (The Alignment-free Dissimilarity Analysis & Comparison Tool) measures dis sc:url "http://research.buet.ac.bd/ADACT/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3524 ; sc:citation ; @@ -82671,8 +67752,29 @@ ADACT (The Alignment-free Dissimilarity Analysis & Comparison Tool) measures dis sc:softwareHelp ; sc:url "http://adam.agrsci.dk/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3382, + edam:topic_3489, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9178528", + "pubmed:35707001" ; + sc:description "Adamant is a JSON schema-based metadata creation tool for various research data management workflows." ; + sc:featureList edam:operation_2422, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Adamant" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://plasma-mds.github.io/adamant" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3172, @@ -82692,7 +67794,7 @@ ADACT (The Alignment-free Dissimilarity Analysis & Comparison Tool) measures dis sc:url "https://www.adap.cloud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0769 ; sc:citation ; @@ -82706,14 +67808,14 @@ ADACT (The Alignment-free Dissimilarity Analysis & Comparison Tool) measures dis biotools:primaryContact "Vincent Moulton" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "AdapterRemoval searches for and removes adapter sequences from High-Throughput Sequencing (HTS) data and (optionally) trims low quality bases from the 3' end of reads following adapter removal. AdapterRemoval can analyze both single end and paired end data, and can be used to merge overlapping paired-ended reads into (longer) consensus sequences. Additionally, AdapterRemoval can construct a consensus adapter sequence for paired-ended reads, if which this information is not available." ; sc:name "AdapterRemoval" ; sc:softwareVersion "v2.3.2" ; sc:url "https://github.com/MikkelSchubert/adapterremoval" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3053, @@ -82734,7 +67836,7 @@ ADACT (The Alignment-free Dissimilarity Analysis & Comparison Tool) measures dis biotools:primaryContact "Weixin Cai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3293 ; @@ -82750,7 +67852,7 @@ ADACT (The Alignment-free Dissimilarity Analysis & Comparison Tool) measures dis biotools:primaryContact "Eric Alm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3295, @@ -82769,8 +67871,23 @@ ADACT (The Alignment-free Dissimilarity Analysis & Comparison Tool) measures dis ; sc:url "http://genomics.chpc.utah.edu/AD" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2885, + edam:topic_3125 ; + sc:citation ; + sc:description "The database of Allelic Dosage-corrected Allele-Specific human Transcription factor binding sites provides a genomic map of allele-specific binding at hundreds thousands single-nucleotide polymorphisms constructed by meta-analysis of thousands of ChIP-Seq experiments." ; + sc:featureList edam:operation_2409 ; + sc:isAccessibleForFree true ; + sc:name "ADASTRA" ; + sc:softwareHelp ; + sc:softwareVersion "5.1.2" ; + sc:url "https://adastra.autosome.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -82792,7 +67909,7 @@ ADACT (The Alignment-free Dissimilarity Analysis & Comparison Tool) measures dis biotools:primaryContact "Foo Cheung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3360, @@ -82810,7 +67927,7 @@ ADACT (The Alignment-free Dissimilarity Analysis & Comparison Tool) measures dis sc:url "https://adata.scai.fraunhofer.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -82831,8 +67948,53 @@ ADACT (The Alignment-free Dissimilarity Analysis & Comparison Tool) measures dis "Windows" ; sc:url "https://github.com/mwgrassgreen/AdaTiSS" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_2640, + edam:topic_2830, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8604336", + "pubmed:34752449" ; + sc:description "ADC is an efficient method to identify highly interrelated genes across datasets." ; + sc:featureList edam:operation_3223, + edam:operation_3435, + edam:operation_3891 ; + sc:name "ADC" ; + sc:url "https://github.com/zhanglabtools/ADC" ; + biotools:primaryContact . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0602, + edam:topic_2840, + edam:topic_3336, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9227411", + "pubmed:35745053" ; + sc:description "AddictedChem is a base of controlled substances and a platform for predicting NPS." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3216, + edam:operation_3929, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "AddictedChem" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://design.rxnfinder.org/addictedchem/prediction/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0102, @@ -82853,7 +68015,7 @@ ADACT (The Alignment-free Dissimilarity Analysis & Comparison Tool) measures dis sc:url "http://159.226.67.237/sun/addictgedb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749, @@ -82874,7 +68036,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "https://github.com/tdseher/addtag-project" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -82892,7 +68054,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "https://ccsm.uth.edu/ADeditome" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -82914,7 +68076,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "http://geneyun.net/ADEIP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3473 ; @@ -82927,7 +68089,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "http://git.io/AdelaiDet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0654, @@ -82944,7 +68106,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "https://github.com/edellano/Adenita-SAMSON-Edition-Linux" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_2258 ; @@ -82961,7 +68123,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho biotools:primaryContact "Stefano Moro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_2269, @@ -82978,7 +68140,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "https://cran.r-project.org/package=adepro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0769, @@ -82994,7 +68156,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "https://github.com/hms-dbmi/adept" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0154, @@ -83015,7 +68177,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho biotools:primaryContact "Adepth coordinator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -83029,23 +68191,46 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "https://cs.uwaterloo.ca/~l22he/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1147" ; + sc:name "GEO accession number" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:name "Heat map" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Expression data" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2984" ; + sc:name "Pathway or network report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, edam:topic_3170, edam:topic_3295, edam:topic_3308 ; - sc:citation ; + sc:citation , + "pmcid:PMC8223391", + "pubmed:34167460" ; sc:description "ADEx: Autoimmune Diseases Explorer is a comprehensive and centralized database for exploring omics data in Autoimmune Diseases. The database that integrates 82 curated transcriptomics and methylation studies covering 5609 samples for some of the most common autoimmune diseases." ; - sc:featureList edam:operation_2495, + sc:featureList edam:operation_0313, + edam:operation_0571, + edam:operation_2495, edam:operation_3431, + edam:operation_3436, + edam:operation_3501, + edam:operation_3927, edam:operation_3928 ; + sc:isAccessibleForFree true ; sc:name "ADEx: Autoimmune Diseases Explorer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; sc:url "https://adex.genyo.es" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, @@ -83062,7 +68247,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "https://github.com/weibozheng/ADFinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0203, @@ -83084,7 +68269,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho biotools:primaryContact "ADGO Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0637, @@ -83107,7 +68292,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho biotools:primaryContact "Dan Dediu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "A scalable tool to visualize the adjacency matrix with values on the edges, direction, and the sum of value as the node size." ; sc:featureList edam:operation_0337 ; @@ -83121,7 +68306,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho biotools:primaryContact "Chaohan Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3418, edam:topic_3474 ; @@ -83136,7 +68321,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "https://github.com/ChildDevLab/MADE-EEG-preprocessing-pipeline/tree/master/adjusted_adjust_scripts" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3444 ; @@ -83153,22 +68338,22 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3520, @@ -83184,7 +68369,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "http://blog.binfalse.de/software/adjustpkl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -83203,8 +68388,27 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho "Windows" ; sc:url "https://opendata.ncats.nih.gov/adme/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0219, + edam:topic_0634, + edam:topic_0654, + edam:topic_3295 ; + sc:citation , + "pubmed:35617175" ; + sc:description "A manually curated database for the differential methylation in Alzheimer's disease." ; + sc:featureList edam:operation_2421 ; + sc:license "Not licensed" ; + sc:name "ADmeth" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.biobdlab.cn/ADmeth" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2258, edam:topic_2275, @@ -83221,7 +68425,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho biotools:primaryContact "Dong-Sheng Cao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3056 ; @@ -83235,7 +68439,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "https://github.com/melop/admixem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3056 ; @@ -83250,7 +68454,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "http://homepages.ed.ac.uk/pmckeigu/software/admixmap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0102, @@ -83272,7 +68476,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "https://github.com/stevemussmann/admixturePipeline" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, @@ -83293,8 +68497,30 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "https://bodkan.net/admixr/articles/tutorial.html" ; biotools:primaryContact "Martin Petr" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0625, + edam:topic_3056, + edam:topic_3305, + edam:topic_3796 ; + sc:citation , + "pmcid:PMC8522168", + "pubmed:34663213" ; + sc:description "AdmixSim 2 is a forward-time simulator for modeling complex population admixture." ; + sc:featureList edam:operation_0487, + edam:operation_2426, + edam:operation_3196, + edam:operation_3891 ; + sc:license "GPL-3.0" ; + sc:name "AdmixSim 2" ; + sc:softwareHelp ; + sc:url "https://github.com/Shuhua-Group/AdmixSim2" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -83308,7 +68534,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "https://github.com/DReichLab/AdmixTools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation , @@ -83324,7 +68550,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "http://software.genetics.ucla.edu/admixture/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2269, @@ -83342,7 +68568,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho biotools:primaryContact "Thomas Mailund" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -83355,7 +68581,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "http://bioportal.bioontology.org/ontologies/ADMO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3473, @@ -83367,7 +68593,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho sc:url "https://github.com/hellloxiaotian/ADNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_2269, @@ -83384,7 +68610,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho biotools:primaryContact "Cole Monnahan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:22829571" ; @@ -83397,7 +68623,7 @@ CRISPR Cas-induced genome editing is a powerful tool for genetic engineering, ho biotools:primaryContact "Jorge Vieira" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0769, edam:topic_2640, @@ -83417,7 +68643,7 @@ The Samply.MDR-based ETL tools from ADOPT BBMRI-ERIC.""" ; sc:url "https://github.com/sebmate/ADOPT-BBMRI-ERIC-ETL-Tools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3361, @@ -83433,7 +68659,7 @@ The Samply.MDR-based ETL tools from ADOPT BBMRI-ERIC.""" ; sc:url "https://docs.adopy.org/en/stable/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -83457,7 +68683,7 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a sc:url "https://www.adpedkd.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -83474,8 +68700,26 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a biotools:primaryContact , . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0625, + edam:topic_3518, + edam:topic_3895 ; + sc:citation , + "pubmed:35385081" ; + sc:description "Adapted Functional Chi-squared test (AdpFunChisq) is a model-free functional dependency measure that uses function direction and strength as evidence for causal inference." ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "AdpFunChisq" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "https://cran.r-project.org/package=FunChisq" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -83503,7 +68747,7 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a sc:url "http://adpribodb.leunglab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -83525,7 +68769,7 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a "Owen J. L. Rackham" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -83545,7 +68789,7 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a biotools:primaryContact "Claudio Lottaz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3168, @@ -83563,7 +68807,7 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a biotools:primaryContact "Kaushalya Amarasinghe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "It can calculate four band and five band resistor's resistance." ; sc:featureList edam:operation_3482 ; @@ -83577,7 +68821,7 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a biotools:primaryContact "Yawar Rehman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2640, @@ -83598,18 +68842,15 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_0883" ; + sc:name "Structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ], + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation ; @@ -83627,7 +68868,7 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a biotools:primaryContact "Gerard Kleywegt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3473 ; @@ -83640,7 +68881,7 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a sc:url "http://zeetu.org/advit.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -83658,7 +68899,7 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a sc:url "https://advp.niagads.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3056 ; @@ -83674,7 +68915,7 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a biotools:primaryContact "Noah A Rosenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -83690,8 +68931,21 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a sc:softwareHelp ; sc:url "https://CRAN.R-project.org/package=AEenrich" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:applicationSubCategory edam:topic_0622 ; + sc:citation ; + sc:description "The AEGeAn Toolkit provides a bundle of software tools for evaluating gene structure annotations and genome organization." ; + sc:featureList edam:operation_0361, + edam:operation_2451 ; + sc:license "ISC" ; + sc:name "AEGeAn" ; + sc:softwareHelp ; + sc:softwareVersion "0.16.0" ; + sc:url "http://brendelgroup.github.io/AEGeAn/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -83706,7 +68960,7 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a sc:url "https://github.com/CunmeiJi/AEMDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0593, @@ -83728,7 +68982,7 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a sc:url "http://ann.atomistic.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -83748,7 +69002,7 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a sc:url "https://github.com/Huang-lab/AeQTL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0797 ; @@ -83765,7 +69019,7 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a sc:url "http://aequatus.tgac.ac.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2814 ; @@ -83783,33 +69037,26 @@ Together, working on ADPedKD, we will aim at completing these gaps and having a sc:url "http://aesop.readthedocs.io/en/latest/index.html" ; biotools:primaryContact "Dimitrios Morikis" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3405, - edam:topic_3421 ; - sc:citation , - "pmcid:PMC6919621", - "pubmed:31851712" ; - sc:description """HOMEPAGE LINK BROKEN -Development of a computer-aided design software for the quantitative evaluation of aesthetic damage. - -Diagnosis reports AIPE (Aesthetic damage impact/impairment assessment). - -This aesthetic damage assessment program is an open-access software ×. - -Attention! All fields are required!. - -This aesthetic damage assessment program is an open-access software (the user may register online only). It was developed by University of São Paulo School of Dentistry in a partnership with University of São Paulo Engineering School - São Carlos campus. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'aesthetic damage evaluation'""" ; - sc:featureList edam:operation_3096, - edam:operation_3799, - edam:operation_3894 ; - sc:name "aesthetic damage" ; - sc:url "https://www.aestheticdamage.com" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3474, + edam:topic_3577 ; + sc:citation , + "pubmed:36006664" ; + sc:description "AFA-Recur, a machine-learning-based probability score predicting 1-year risk of recurrent atrial arrhythmia after AF ablation" ; + sc:featureList edam:operation_3359 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "AFA-Recur" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://afarec.hpc4ai.unito.it/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0602, @@ -83828,7 +69075,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, @@ -83845,7 +69092,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "NeuroSyd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -83865,14 +69112,14 @@ This aesthetic damage assessment program is an open-access software (the user ma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -83895,7 +69142,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Rafael A. Irizarry" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -83910,7 +69157,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "http://sourceforge.net/projects/affy6cnv/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -83929,7 +69176,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Rafael A. Irizarry" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3489, @@ -83948,7 +69195,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Martin Morgan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3365, @@ -83967,7 +69214,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "V. Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -83987,14 +69234,14 @@ This aesthetic damage assessment program is an open-access software (the user ma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -84013,7 +69260,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Xuejun Arthur Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3572 ; @@ -84030,7 +69277,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "http://www.transcriptome.ens.fr/AffyGCQC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -84050,7 +69297,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Fabrice Berger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -84071,14 +69318,14 @@ This aesthetic damage assessment program is an open-access software (the user ma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -84101,7 +69348,7 @@ This aesthetic damage assessment program is an open-access software (the user ma "Yifang Hu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2885 ; sc:description "Affymetrix_Error_Rate is a simple program that identifies the error rate in files of Affymetrix microarray SNP data" ; @@ -84112,7 +69359,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "http://dna.leeds.ac.uk/AffyErrorRate/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, @@ -84134,7 +69381,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -84153,7 +69400,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Markus Schmidberger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:description "Aan R based pipeline for parallel pre-processing of Affymetrix TM chips. The pipeline starts from a directory containing raw CEL files files and produces Bioconductor R objects containing gene expression measurements suitable for further analysis." ; @@ -84168,7 +69415,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -84188,7 +69435,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Laurent Gautier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -84205,7 +69452,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Ezequiel Nicolazzie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -84227,7 +69474,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Ben Bolstad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0632, @@ -84242,7 +69489,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "http://discover.nci.nih.gov/affyprobeminer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518, @@ -84261,7 +69508,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Craig Parman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -84283,7 +69530,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Mario Fasold" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Plug-in" ; sc:applicationSubCategory edam:topic_3168, @@ -84300,7 +69547,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "https://ellispatrick.github.io/AFid" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0102, @@ -84321,14 +69568,13 @@ This aesthetic damage assessment program is an open-access software (the user ma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation , @@ -84346,7 +69592,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3314, @@ -84366,14 +69612,13 @@ This aesthetic damage assessment program is an open-access software (the user ma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0870" ; - sc:name "Sequence distance matrix" ; - sc:sameAs "http://edamontology.org/data_0870" ] ; + sc:additionalType "http://edamontology.org/data_0870" ; + sc:name "Sequence distance matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3556" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation , @@ -84391,7 +69636,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -84409,7 +69654,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "https://github.com/Shujaat123/AFP-LSE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2229, @@ -84425,8 +69670,30 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "https://yeatmanlab.github.io/AFQBrowser-demo/?table[prevSort][count]=2&table[prevSort][order]=ascending&table[prevSort][key]=&table[sort][count]=2&table[sort][order]=ascending&table[sort][key]=" ; biotools:primaryContact "Yeatman Lab" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0209, + edam:topic_0820, + edam:topic_2275, + edam:topic_3047 ; + sc:citation , + "pubmed:35348582" ; + sc:description "An integrated web-based platform for molecular modeling and screening" ; + sc:featureList edam:operation_0269, + edam:operation_3937, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "AFSE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://noveldelta.com/AFSE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3512 ; @@ -84440,20 +69707,36 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:softwareVersion "1.0" ; sc:url "http://code.google.com/p/afst/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3572 ; + sc:citation , + "pmcid:PMC5374548", + "pubmed:28361673" ; + sc:description """Automatic Filtering, Trimming, Error Removing and Quality Control for fastq data +AfterQC can simply go through all fastq files in a folder and then output three folders: good, bad and QC folders, which contains good reads, bad reads and the QC results of each fastq file/pair.""" ; + sc:featureList edam:operation_3218 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "afterqc" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/OpenGene/AfterQC" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1870" ; - sc:name "Genus name" ; - sc:sameAs "http://edamontology.org/data_1870" ], + sc:additionalType "http://edamontology.org/data_1870" ; + sc:name "Genus name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ] ; + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2530" ; - sc:name "Organism report" ; - sc:sameAs "http://edamontology.org/data_2530" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2530" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Organism report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation , @@ -84469,7 +69752,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Dr. Joseph Spatafora" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0622, @@ -84485,7 +69768,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "https://bitbucket.org/caseywdunn/agalma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -84505,7 +69788,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "AgBase Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -84524,7 +69807,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Cuilan lani Gao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation "pubmed:21233167" ; @@ -84539,7 +69822,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Abyzov Alexej" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3360, @@ -84557,7 +69840,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "http://www.ageguess.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0621, @@ -84579,7 +69862,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Alexander Sczyrba" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -84595,7 +69878,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "https://bar.utoronto.ca/AGENT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3056, @@ -84618,14 +69901,13 @@ This aesthetic damage assessment program is an open-access software (the user ma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1288" ; - sc:name "Genome map" ; - sc:sameAs "http://edamontology.org/data_1288" ] ; + sc:additionalType "http://edamontology.org/data_1288" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Genome map" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:author "Maureen Smith", @@ -84648,18 +69930,18 @@ This aesthetic damage assessment program is an open-access software (the user ma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3005" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -84679,7 +69961,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -84701,7 +69983,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "https://www.bioconductor.org/packages/release/bioc/html/aggregateBioVar.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3444 ; @@ -84717,7 +69999,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Aaron T. Becker's Robot Swarm Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -84735,7 +70017,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Misra S." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3056, edam:topic_3676 ; @@ -84748,7 +70030,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "http://dna.leeds.ac.uk/agile/AgileExomeFilter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "AgileFileConverter converts varaint data in tab delimited text files, typically supplied by commercial NGS service providers, into the format used by AgileGeneFilter, AgileVariantViewer and AgileFileViewer" ; @@ -84760,7 +70042,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "http://dna.leeds.ac.uk/agile/AgileFileConverter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0654 ; @@ -84773,7 +70055,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "http://dna.leeds.ac.uk/agile/AgileGeneFilter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -84789,7 +70071,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "http://dna.leeds.ac.uk/agile/AgileGenotyper/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "AgilePairedEndReadsCombiner reads a matching pair of fasta or fastq files created from a paired end sequence run which used PCR products as the library template and combines the data to produce a single read file contain data equivalent to the whole PCR product." ; @@ -84801,7 +70083,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "http://dna.leeds.ac.uk/agile/AgilePairedEndReadsCombiner/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3056, @@ -84815,7 +70097,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "http://dna.leeds.ac.uk/agile/AgilePindelFilter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "AgileQualityFilter performs a number of pre-alignment tasks on sequence data from an Illumina GA-II clonal sequencer. The primary function of AgileQualityFilter is to remove low quality sequence data before alignment to a reference sequence." ; @@ -84829,7 +70111,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "http://dna.leeds.ac.uk/agile/AgileQualityFilter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203 ; sc:description "This script normalises a set of gene expression data files against a predefined reference data set. The normalisation uses LOESS regression. The major assumption is that the actual data and the reference set have a similar epxression frequency distribution. Typically, the reference set used the is average of a large number of datasets such as the output of Baseline script in this package." ; @@ -84845,7 +70127,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Benny Chain" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -84864,7 +70146,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Pedro Lopez-Romero" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3518 ; sc:description "The AgiND (Agilent Normalization and Diagnostic Package) R library was developped for diagnosis and normalization of one channel and two channel Agilent microarrays." ; @@ -84879,7 +70161,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "http://tagc.univ-mrs.fr/ComputationalBiology/AgiND/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0208, @@ -84896,7 +70178,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "https://bigd.big.ac.cn/aging/index" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3308, edam:topic_3399 ; @@ -84909,8 +70191,22 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:name "aging mouse brain" ; sc:url "https://portals.broadinstitute.org/single_cell/study/aging-mouse-brain" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_3382 ; + sc:citation , + "pubmed:35436194" ; + sc:description "A framework called Attention guided Global enhancement and Local refinement Network (AGLN) to improve the encoder-decoder network for image segmentation." ; + sc:featureList edam:operation_3436, + edam:operation_3629 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "AGLN" ; + sc:url "https://github.com/zhasen1996/AGLN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, @@ -84926,7 +70222,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "https://bitbucket.org/bio2byte/agmata" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3174, @@ -84944,7 +70240,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "https://github.com/functional-dark-side/agnostos-wf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -84963,7 +70259,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749 ; @@ -84977,8 +70273,24 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:softwareHelp ; sc:url "https://github.com/kazumits/agplus" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0622 ; + sc:description "Agptools is a suite of tools for performing edits to an AGP file during this manual curation stage of genome assembly." ; + sc:featureList edam:operation_0231, + edam:operation_0525, + edam:operation_2409, + edam:operation_3216 ; + sc:license "MIT" ; + sc:name "agptools" ; + sc:softwareHelp ; + sc:softwareVersion "0.0.1" ; + sc:url "https://warrenlab.github.io/agptools/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -84999,8 +70311,32 @@ This aesthetic damage assessment program is an open-access software (the user ma "Windows" ; sc:url "https://azifi.tz.agrar.uni-goettingen.de/agreg-snpdb" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_0780, + edam:topic_2885, + edam:topic_3517, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC9138521", + "pubmed:35625412" ; + sc:description "A database storing SNPs and their predicted impact on transcription factor (TF) binding in promoter regions for different crops." ; + sc:featureList edam:operation_0440, + edam:operation_0484, + edam:operation_3196, + edam:operation_3661 ; + sc:license "Not licensed" ; + sc:name "agReg-SNPdb-Plants" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://azifi.tz.agrar.uni-goettingen.de/agreg-snpdb-plants/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -85024,7 +70360,7 @@ This aesthetic damage assessment program is an open-access software (the user ma "Tian Tian (Administrator)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -85045,7 +70381,7 @@ This aesthetic damage assessment program is an open-access software (the user ma biotools:primaryContact "Agris team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697, @@ -85061,8 +70397,30 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:name "AgroSeek" ; sc:url "https://agroseek.cs.vt.edu/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0114, + edam:topic_0154, + edam:topic_0194, + edam:topic_0199, + edam:topic_3293 ; + sc:citation , + "pmcid:PMC8768832", + "pubmed:35044202" ; + sc:description "AgrVATE is a tool for rapid identification of Staphylococcus aureus agr locus type and also reports possible variants in the agr operon." ; + sc:featureList edam:operation_0265, + edam:operation_0435, + edam:operation_0579 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "AgrVATE" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:url "https://github.com/VishnuRaghuram94/AgrVATE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -85083,7 +70441,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "https://github.com/v4yuezi/AGTAR.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -85104,8 +70462,25 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "http://ahdb.ee.ncku.edu.tw/" ; biotools:primaryContact "AH-DB team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web service" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0218, + edam:topic_0769, + edam:topic_3384, + edam:topic_3400 ; + sc:citation , + "pubmed:35672965" ; + sc:description "A REST service for mapping text analysis results from Averbis Health Discovery to FHIR resources." ; + sc:featureList edam:operation_0306 ; + sc:license "Apache-2.0" ; + sc:name "AHD2FHIR" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/miracum/ahd2fhir" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -85123,7 +70498,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "http://gitlab.com/dacs-hpi/ahlf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3301, @@ -85139,7 +70514,7 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:url "http://www.wdcm.org/AHMII/ahmii.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -85153,8 +70528,25 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:name "AhNGE" ; sc:url "http://nipgr.ac.in/AhNGE/index.php" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web API", + "Web application" ; + sc:applicationSubCategory edam:topic_0736, + edam:topic_3534 ; + sc:citation ; + sc:description "Webserver & command-line tool for search and alignment of APO (unbound) protein structures from HOLO (bound) forms and vice versa. Features: customizable search of Apo-Holo pairs in the PDB, alignment to the query structure, batch mode for fast parallel dataset processing, visualization via Molstar and PyMol, public documented REST-API." ; + sc:isAccessibleForFree true ; + sc:name "AHoJ: Apo Holo Protein Search" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "0.4.7" ; + sc:url "http://apoholo.cz/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3376 ; @@ -85167,11 +70559,42 @@ This aesthetic damage assessment program is an open-access software (the user ma sc:name "AHTPDB" ; sc:softwareHelp , ; - sc:url "http://crdd.osdd.net/raghava/ahtpdb/index.php" ; + sc:url "https://webs.iiitd.edu.in/raghava/ahtpdb/" ; biotools:primaryContact "DR. Gajendra P. S. Raghava" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0128 ; + sc:citation "pubmed:26538599" ; + sc:description "AHTpin is an in silico method developed to predict and design efficient antihypertensive peptides." ; + sc:featureList edam:operation_2415 ; + sc:name "AHTpin" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/ahtpin/index.php" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3335, + edam:topic_3474 ; + sc:citation , + "pubmed:35474167" ; + sc:description "Accurate prediction of anti-hypertensive peptides based on convolutional neural network and gated recurrent unit" ; + sc:featureList edam:operation_0267, + edam:operation_0433, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "AHTPs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://ahtps.zhanglab.site/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0634, @@ -85200,7 +70623,7 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:url "https://ai-biopsy.eipm-research.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3384, @@ -85212,7 +70635,7 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:url "http://www.ai-ct-covid.team/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -85229,7 +70652,7 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:url "http://aidriver.maolab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -85243,7 +70666,7 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:url "http://symbiosis.iis.sinica.edu.tw/PC_6/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3393, @@ -85262,7 +70685,7 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:url "https://github.com/Zhang-lab/ATAC-seq_QC_analysis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation "pubmed:20047774" ; @@ -85275,7 +70698,7 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:url "http://www.aibench.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -85303,7 +70726,7 @@ For accurate results, we recommend the use of axial images with a visible prosta biotools:primaryContact "Adam Godzik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, @@ -85319,8 +70742,30 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:name "AIDD" ; sc:url "https://github.com/RNAdetective/AIDD" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_2640, + edam:topic_3384, + edam:topic_3444, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8501087", + "pubmed:34625565" ; + sc:description "AIDE (Annotation-effIcient Deep lEarning) is a deep learning framework for automatic medical image segmentation with imperfect datasets, including those having limited annotations, lacking target domain annotations, and containing noisy annotations. Automatic segmentation of medical images plays an essential role in both scientific research and medical care. Deep learning approaches have presented encouraging performances, but existing high-performance methods typically rely on very large training datasets with high-quality manual annotations, which are normally difficult or even impossible to obtain in many clinical applications." ; + sc:featureList edam:operation_3435, + edam:operation_3443, + edam:operation_3553 ; + sc:license "LGPL-2.1" ; + sc:name "AIDE" ; + sc:url "https://github.com/lich0031/AIDE" ; + biotools:primaryContact , + , + . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3382, @@ -85337,7 +70782,7 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:url "https://github.com/maikherbig/AIDeveloper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3336, @@ -85350,7 +70795,7 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:url "https://github.com/pengsl-lab/AIdrug2cov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -85365,7 +70810,7 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:url "https://sars-covid-app.herokuapp.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3332, @@ -85386,7 +70831,7 @@ For accurate results, we recommend the use of axial images with a visible prosta biotools:primaryContact "Andrius Merkys" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3299, @@ -85405,7 +70850,7 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:url "http://chemyang.ccnu.edu.cn/ccb/server/AILDE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3518 ; sc:citation "pubmed:15376910" ; @@ -85419,8 +70864,30 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:softwareHelp ; sc:url "http://bibiserv.techfak.uni-bielefeld.de/aim/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0659, + edam:topic_2640, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8820645", + "pubmed:35081109" ; + sc:description "Autoencoder-based integrative multi-omics data embedding that allows for confounder adjustments." ; + sc:featureList edam:operation_0463, + edam:operation_3792, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:name "AIME" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/tianwei-yu/AIME" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0749, @@ -85443,7 +70910,7 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:url "https://github.com/SIAT-code/AIMEE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -85458,16 +70925,39 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:softwareHelp ; sc:url "https://github.com/bioinfo-ircm/aiMeRA/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0659, + edam:topic_0749, + edam:topic_3169, + edam:topic_3512 ; + sc:citation ; + sc:description "AIModules enables you to find transcription factor binding sites (TFBSs) and modules on DNA using own matrices or the JASPAR 2022 database." ; + sc:featureList edam:operation_0238, + edam:operation_0239, + edam:operation_0337, + edam:operation_0445 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "AIModules" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bioinfo-wuerz.de/aimodules/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1622" ; - sc:name "Disease report" ; - sc:sameAs "http://edamontology.org/data_1622" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1622" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Disease report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -85487,7 +70977,7 @@ For accurate results, we recommend the use of axial images with a visible prosta biotools:primaryContact "Eric R Paquet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3305, @@ -85506,7 +70996,7 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:url "https://github.com/yqzhong7/AIPW" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -85523,7 +71013,7 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:url "https://air.elixir-luxembourg.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0128, @@ -85539,7 +71029,7 @@ For accurate results, we recommend the use of axial images with a visible prosta sc:url "http://cs.uno.edu/~tamjid/Software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3318, edam:topic_3360, edam:topic_3520 ; @@ -85553,7 +71043,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "https://github.com/Propro-Studio/Aird-SDK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2830, @@ -85572,7 +71062,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -85585,8 +71075,30 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:name "AirLift" ; sc:url "https://github.com/CMU-SAFARI/AirLift" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0203, + edam:topic_2229, + edam:topic_3170, + edam:topic_3452 ; + sc:author ; + sc:citation ; + sc:contributor ; + sc:description "Airpart identifies sets of genes displaying differential cell-type-specific allelic imbalance across cell types or states, utilizing single-cell allelic counts. It makes use of a generalized fused lasso with binomial observations of allelic counts to partition cell types by their allelic imbalance. Alternatively, a nonparametric method for partitioning cell types is offered. The package includes a number of visualizations and quality control functions for examining single cell allelic imbalance datasets." ; + sc:featureList edam:operation_3197, + edam:operation_3658, + edam:operation_3659, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "airpart" ; + sc:url "https://bioconductor.org/packages/airpart" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0622, @@ -85609,7 +71121,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "http://pypi.python.org/pypi/airpg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -85625,7 +71137,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "https://iaidrug.stonewise.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3383 ; @@ -85641,7 +71153,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "http://www.plantontology.org/software/aiso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -85658,7 +71170,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "https://github.com/BDanalysis/aitac" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0208, edam:topic_2640, @@ -85674,7 +71186,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "https://github.com/hosseinshn/AITL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3047, @@ -85688,7 +71200,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "http://www.github.com/MolecularAI/aizynthfinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -85705,14 +71217,12 @@ AirdPro is opensource under the MulanPSL2 license.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0080, @@ -85731,7 +71241,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact "Luca Parca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -85748,7 +71258,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "https://github.com/VladoUzunangelov/aklimate" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -85764,7 +71274,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "https://github.com/Junfang/AKSmooth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3316, edam:topic_3500, @@ -85781,7 +71291,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact "Alexander H. Stram" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -85803,7 +71313,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact "T. Aleksiev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -85824,7 +71334,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "http://www.interactive-biosoftware.com/products/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -85844,7 +71354,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "https://github.com/quadram-institute-bioscience/albatradis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -85857,7 +71367,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "http://www.stat.washington.edu/thompson/Genepi/Albert/albert.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -85873,7 +71383,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "http://alchemy.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -85888,14 +71398,14 @@ AirdPro is opensource under the MulanPSL2 license.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -85915,7 +71425,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3077 ; @@ -85931,7 +71441,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact "Jonathan D. Wren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation ; @@ -85946,7 +71456,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact "Hamid Younesy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -85968,7 +71478,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact "Shigehiro Kuraku" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation , "pubmed:34107042" ; @@ -85982,7 +71492,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "http://github.com/lucian-ilie/ALeS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3320 ; sc:citation "pubmed:20835245" ; @@ -85997,7 +71507,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; "Marco A. Marra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -86021,8 +71531,30 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:softwareHelp ; sc:url "http://bioinfo.usu.edu/alfanet/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Library" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0623, + edam:topic_0749, + edam:topic_3174 ; + sc:citation , + "pmcid:PMC8969259", + "pubmed:35354426" ; + sc:description "A biological sequence clustering tool with dynamic threshold" ; + sc:featureList edam:operation_0289, + edam:operation_0291, + edam:operation_0491 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ALFATClust" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:url "https://github.com/phglab/ALFATClust" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0621, @@ -86042,14 +71574,14 @@ AirdPro is opensource under the MulanPSL2 license.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091, @@ -86072,7 +71604,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "https://github.com/tobiasrausch/alfred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3293, @@ -86091,7 +71623,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact "Sharma V. Thankachan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -86112,7 +71644,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact "Niclas Jareborg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:21471011" ; @@ -86126,7 +71658,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "http://guanine.evolbio.mpg.de/alfy/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3169, @@ -86148,7 +71680,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "https://greennetwork.us.es/AlgaeFUN/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0780, @@ -86169,7 +71701,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -86196,7 +71728,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact "Xavier Messeguer Peypoch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -86206,19 +71738,30 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:citation "pubmed:16844994" ; sc:description "Predicts allergenic proteins and maps IgE epitopes on allergenic proteins using several different approaches." ; sc:featureList edam:operation_0252, - edam:operation_0331, edam:operation_0416, - edam:operation_2429 ; + edam:operation_2429, + edam:operation_3429 ; sc:name "AlgPred" ; sc:operatingSystem "Linux", "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/algpred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/algpred/" ; biotools:primaryContact "G. P. S. Raghava" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation "pubmed:33201237" ; + sc:description "AlgPred 2.0 is an updated version of our old server AlgPred developed for predicting allergenic proteins" ; + sc:featureList edam:operation_1777 ; + sc:name "algpred2" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/algpred2/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -86234,7 +71777,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "http://cbi.labri.fr/outils/alias/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0194, @@ -86255,7 +71798,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact "Alexander Knyshov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_3304, @@ -86267,7 +71810,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -86283,7 +71826,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "https://kishanrama.github.io/AliClu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -86304,18 +71847,18 @@ AirdPro is opensource under the MulanPSL2 license.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ], + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Alexis Criscuolo" ; @@ -86339,7 +71882,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact "Alexis Criscuolo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -86356,22 +71899,22 @@ AirdPro is opensource under the MulanPSL2 license.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1984" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0869" ; - sc:name "Sequence-profile alignment" ; - sc:sameAs "http://edamontology.org/data_0869" ], + sc:additionalType "http://edamontology.org/data_0869" ; + sc:encodingFormat "http://edamontology.org/format_1984" ; + sc:name "Sequence-profile alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_1984" ; + sc:name "Sequence alignment (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -86392,7 +71935,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -86417,7 +71960,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; "Sean Tavtigian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154, @@ -86436,7 +71979,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact "Ivo Van Walle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0602 ; @@ -86446,13 +71989,13 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:isAccessibleForFree true ; sc:license "MIT" ; sc:name "Align-paths" ; - sc:softwareHelp ; + sc:softwareHelp ; sc:softwareVersion "1.0" ; sc:url "https://github.com/BiodataAnalysisGroup/align-paths" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0654, edam:topic_3382 ; @@ -86468,7 +72011,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "https://github.com/heltilda/align3d" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0654, @@ -86489,7 +72032,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; "Zhou Zhu (questions or comments)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3510 ; @@ -86504,14 +72047,12 @@ AirdPro is opensource under the MulanPSL2 license.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -86542,14 +72083,12 @@ AirdPro is opensource under the MulanPSL2 license.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -86579,7 +72118,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/aligncopypair.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0121, @@ -86597,7 +72136,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "https://github.com/biocom-uib/AligNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0196 ; @@ -86612,7 +72151,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "https://github.com/baoe/AlignGraph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769 ; @@ -86628,7 +72167,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "https://github.com/huangs001/AlignGraph2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -86654,7 +72193,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact "AlignMe Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -86677,14 +72216,14 @@ AirdPro is opensource under the MulanPSL2 license.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1433" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3160" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3070, @@ -86706,7 +72245,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; biotools:primaryContact "Ben Stöver" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, edam:topic_0160, @@ -86724,7 +72263,7 @@ AirdPro is opensource under the MulanPSL2 license.""" ; sc:url "http://alignmentviewer.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0199, @@ -86746,7 +72285,7 @@ alignparse is a Python package written by the Bloom lab. It is designed to align sc:url "https://jbloomlab.github.io/alignparse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0092, @@ -86763,7 +72302,7 @@ alignparse is a Python package written by the Bloom lab. It is designed to align biotools:primaryContact "Gilbert Deleage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -86783,8 +72322,19 @@ alignparse is a Python package written by the Bloom lab. It is designed to align sc:url "http://alignstat.science.latrobe.edu.au/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0121 ; + sc:description "LC-MS alignment algorithm based on Wasserstein distance." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Alignstein" ; + sc:softwareVersion "0.9" ; + sc:url "https://github.com/grzsko/Alignstein" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "ALION is a sequence alignment tool. Aligns two protein sequences using Needleman-Wunsch global alignment or Smith-Waterman local alignment methods with variable gap penalties and amino acid substitution matrices. Analogous to GCG GAP and BESTFIT programs." ; @@ -86798,7 +72348,7 @@ alignparse is a Python package written by the Bloom lab. It is designed to align sc:url "http://motif.stanford.edu/distributions/alion/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749, @@ -86817,22 +72367,18 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1086" ; - sc:name "Compound identifier" ; - sc:sameAs "http://edamontology.org/data_1086" ], + sc:additionalType "http://edamontology.org/data_1088" ; + sc:name "Article ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1088" ; - sc:name "Article ID" ; - sc:sameAs "http://edamontology.org/data_1088" ] ; + sc:additionalType "http://edamontology.org/data_1086" ; + sc:name "Compound identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0962" ; + sc:name "Small molecule report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_3473 ; @@ -86848,7 +72394,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il biotools:primaryContact "Jean Fred Fontaine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3321 ; @@ -86864,8 +72410,25 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:softwareHelp ; sc:url "http://pappso.inra.fr/bioinfo/all_p/index.php" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0622, + edam:topic_3676 ; + sc:citation ; + sc:description "All2 is a tool for filtering variants from all2all comparison of multiple clones or single cells. There are no variant allele frequency and mutation spectrum plots for structural variant mode and the format of the output files will be slightly different from the SNV/INDEL analyses." ; + sc:featureList edam:operation_0337, + edam:operation_3227, + edam:operation_3675 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "All2" ; + sc:url "https://github.com/abyzovlab/All2" ; + biotools:primaryContact "Alexej Abyzov" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0084, @@ -86883,7 +72446,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "https://github.com/AGOberprieler/allcopol" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -86899,7 +72462,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://acgt.cs.tau.ac.il/allegro/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0208, @@ -86921,7 +72484,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056, edam:topic_3299 ; @@ -86936,7 +72499,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "https://sites.google.com/site/alleleretain/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation , @@ -86955,7 +72518,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "https://github.com/RoelandKindt/AlleleShift" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2269, @@ -86968,7 +72531,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "https://github.com/JasonACarter/Allelic_inclusion" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -86990,7 +72553,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il biotools:primaryContact "Jesper R Gadin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3304, @@ -87015,7 +72578,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -87030,7 +72593,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://help.brain-map.org/display/api/RESTful+Model+Access+%28RMA%29" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -87049,8 +72612,33 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:name "AllEnricher" ; sc:url "https://github.com/zd105/AllEnricher" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0130, + edam:topic_0154, + edam:topic_0601, + edam:topic_0804, + edam:topic_3400 ; + sc:citation , + "pmcid:PMC9252832", + "pubmed:35640594" ; + sc:description "A web server for predicting protein allergenicity potential." ; + sc:featureList edam:operation_0252, + edam:operation_0474, + edam:operation_3092 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "AllerCatPro" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "2.0" ; + sc:url "https://allercatpro.bii.a-star.edu.sg" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3307, edam:topic_3510 ; @@ -87066,7 +72654,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il biotools:primaryContact "Ha Dang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3307 ; @@ -87084,14 +72672,13 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0804 ; sc:citation , @@ -87106,7 +72693,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://www.allergome.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_1775 ; @@ -87122,7 +72709,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il biotools:primaryContact "Drug Design Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -87142,8 +72729,25 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:name "AllesTM" ; sc:url "https://github.com/phngs/allestm" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_3473, + edam:topic_3474 ; + sc:citation , + "pubmed:31383970" ; + sc:description "Genome scaffolding based on HiC data in heterozygous and high ploidy genomes" ; + sc:featureList edam:operation_3216 ; + sc:isAccessibleForFree true ; + sc:license "BSD-2-Clause" ; + sc:name "allhic" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/tanghaibao/allhic" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0621, @@ -87161,7 +72765,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://www.alliancegenome.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -87182,7 +72786,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il "Susanne U. Franssen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -87198,7 +72802,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://mdl.shsmu.edu.cn/ALF/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3534 ; @@ -87219,7 +72823,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -87238,7 +72842,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://mdl.shsmu.edu.cn/alloscore/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0632, @@ -87256,7 +72860,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://allosigma.bii.a-star.edu.sg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082 ; @@ -87272,7 +72876,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://mdl.shsmu.edu.cn/AST/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation "pubmed:18340039" ; @@ -87287,7 +72891,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199 ; @@ -87306,7 +72910,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il biotools:primaryContact "David B. Jaffe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3418 ; @@ -87322,7 +72926,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "https://github.com/Oshlack/AllSorts/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2275, @@ -87335,7 +72939,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://www-mvsoftware.ch.cam.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3393, @@ -87352,8 +72956,28 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "https://github.com/bartongroup/AlmostSignificant" ; biotools:primaryContact "Joe Ward" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0102, + edam:topic_0196, + edam:topic_0621, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8386716", + "pubmed:34447886" ; + sc:description "Aln2tbl is a Python script for building a mitochondrial features table from a assembly alignment in fasta format. The sequencing, annotation and analysis of complete mitochondrial genomes is an important research tool in phylogeny and evolution. Starting with the primary sequence, genes features are generally annotated automatically to obtain preliminary annotations in the form of a feature table. Further manual curation in a graphic alignment editor is nevertheless necessary to revise annotations. As such, the automatically generated feature table is invalidated and has to be modified manually before submission to data banks." ; + sc:featureList edam:operation_0310, + edam:operation_0361, + edam:operation_3431 ; + sc:license "GPL-3.0" ; + sc:name "Aln2tbl" ; + sc:url "https://github.com/IMEDEA/mitogenomics" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0659, @@ -87370,7 +72994,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://nipgr.ac.in/AlnC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0203, @@ -87387,7 +73011,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "https://github.com/churchill-lab/alntools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -87407,7 +73031,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://gmc.mdc-berlin.de/alohomora/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_0203, @@ -87428,7 +73052,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "https://alona.panglaodb.se" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0622, @@ -87443,7 +73067,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://www.ncbi.nlm.nih.gov/CBBresearch/Spouge/html_ncbi/html/software/program.html?uid=6" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3293, @@ -87460,7 +73084,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il "R A Leo Elworth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -87476,8 +73100,27 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:name "Alpha-Frag" ; sc:url "http://www.github.com/YuAirLab/Alpha-Frag" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pubmed:34999750" ; + sc:description "A deep neural network for scoring the similarity between predicted and measured spectra improves peptide identification of DIA data." ; + sc:featureList edam:operation_3629, + edam:operation_3631, + edam:operation_3860 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Alpha-Tri" ; + sc:operatingSystem "Windows" ; + sc:url "https://github.com/YuAirLab/Alpha-Tri" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3474, @@ -87491,7 +73134,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://www.github.com/YuAirLab/Alpha-XIC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154, @@ -87504,7 +73147,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://motif.stanford.edu/distributions/alphabet/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2885, @@ -87519,8 +73162,38 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "https://sites.google.com/site/hickeyjohn/alphadrop" ; biotools:primaryContact "John Hickey" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Protein sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0130 ; + sc:citation ; + sc:description "AI-guided 3D structure prediction of novel proteins. AlphaFold uses neural networks to predict the tertiary (3D) structure of proteins. AlphaFold accepts an amino acid sequence as an input, which it will then will 'fold' into a 3D model." ; + sc:featureList edam:operation_0479, + edam:operation_0480, + edam:operation_0481, + edam:operation_2415 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "AlphaFold 2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "2.0.1", + "2.1.0", + "2.1.1", + "2.1.2" ; + sc:url "https://github.com/deepmind/alphafold" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -87535,8 +73208,35 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:softwareHelp ; sc:url "https://sites.google.com/site/hickeyjohn/alphaimpute" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0736, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9252816", + "pubmed:35609987" ; + sc:description "AlphaKnot is a server that measures entanglement in AlphaFold-solved protein models while considering pLDDT confidence values." ; + sc:featureList edam:operation_0278, + edam:operation_0303, + edam:operation_0477, + edam:operation_0570 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "AlphaKnot" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + , + ; + sc:url "https://alphaknot.cent.uw.edu.pl/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "AlphaMALIG  (ALPHAbet Multiple ALIGnment) is a tool which allows you to align many but no more than 200 sequences. These sequences will be formed by characters of a finite alphabet." ; @@ -87547,7 +73247,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://alggen.lsi.upc.es/recerca/align/alphamalig/intro-alphamalig.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -87568,7 +73268,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "https://github.com/MannLabs/alphamap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3307, @@ -87584,7 +73284,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il biotools:primaryContact "John Hickey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -87596,7 +73296,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://CRAN.R-project.org/package=AlphaPart" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -87616,7 +73316,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "https://github.com/MannLabs/alphapept" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -87630,11 +73330,11 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/alphapred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/alphapred/" ; biotools:primaryContact "Dr. G.P.S. Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0780, @@ -87650,7 +73350,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "https://alphagenes.roslin.ed.ac.uk/wp/software-2/alphasimr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0128, @@ -87669,7 +73369,7 @@ A high-quality chromosome-level genome sequence of alkaligrass assembled from Il sc:url "http://www.nyu.edu/projects/yzhang/AlphaSpace2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0769, @@ -87688,7 +73388,7 @@ High-resolution MS-based proteomics generates large amounts of data, even in the sc:url "https://github.com/MannLabs/alphatims" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -87701,7 +73401,7 @@ High-resolution MS-based proteomics generates large amounts of data, even in the sc:url "https://github.com/ZexinChen/AlphaTracker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2259, @@ -87723,7 +73423,7 @@ High-resolution MS-based proteomics generates large amounts of data, even in the biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, @@ -87743,14 +73443,14 @@ High-resolution MS-based proteomics generates large amounts of data, even in the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3308 ; @@ -87768,7 +73468,7 @@ High-resolution MS-based proteomics generates large amounts of data, even in the biotools:primaryContact "Yuval Kluger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2258 ; sc:description "Alternating Least Squares (or Multivariate Curve Resolution) for analytical chemical data, in particular hyphenated data where the first direction is a retention time axis, and the second a spectral axis. Package builds on the basic als function from the ALS package and adds functionality for high-throughput analysis, including definition of time windows, clustering of profiles, retention time correction, etcetera." ; @@ -87785,7 +73485,7 @@ High-resolution MS-based proteomics generates large amounts of data, even in the biotools:primaryContact "Ron Wehrens" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:18604217" ; @@ -87798,7 +73498,7 @@ High-resolution MS-based proteomics generates large amounts of data, even in the biotools:primaryContact "Yaniv Erlich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -87822,14 +73522,14 @@ High-resolution MS-based proteomics generates large amounts of data, even in the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1274" ; - sc:name "Map" ; - sc:sameAs "http://edamontology.org/data_1274" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1274" ; + sc:encodingFormat "http://edamontology.org/format_2060" ; + sc:name "Map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -87850,7 +73550,7 @@ High-resolution MS-based proteomics generates large amounts of data, even in the biotools:primaryContact "Laurent Gautier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -87868,7 +73568,7 @@ High-resolution MS-based proteomics generates large amounts of data, even in the biotools:primaryContact "ALTER Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -87887,7 +73587,7 @@ High-resolution MS-based proteomics generates large amounts of data, even in the "Dinesh Gupta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -87910,7 +73610,7 @@ High-resolution MS-based proteomics generates large amounts of data, even in the "Steffen Heber" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0749, @@ -87929,7 +73629,7 @@ High-resolution MS-based proteomics generates large amounts of data, even in the "Peter Humburg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2275, edam:topic_2814, @@ -87948,7 +73648,7 @@ altMOD is a MODELLER (https://salilab.org/modeller/) [1] plugin for improved 3D sc:url "https://github.com/pymodproject/altmod" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2885, @@ -87965,8 +73665,27 @@ altMOD is a MODELLER (https://salilab.org/modeller/) [1] plugin for improved 3D sc:url "https://sourceforge.net/projects/altools/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2640, + edam:topic_3360, + edam:topic_3500, + edam:topic_3518 ; + sc:citation , + "pubmed:35303580" ; + sc:description "AltWOA is a novel feature selection algorithm where Altruistic property of candidate whales are embedded to the Whale Optimization Algorithm (WOA)." ; + sc:featureList edam:operation_0314, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "AltWOA" ; + sc:operatingSystem "Windows" ; + sc:url "https://github.com/Rohit-Kundu/AltWOA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0622, @@ -87984,7 +73703,7 @@ altMOD is a MODELLER (https://salilab.org/modeller/) [1] plugin for improved 3D biotools:primaryContact "Richard P. Finney" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_2259, @@ -88001,7 +73720,7 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "https://ge.gitlab-pages.informatik.uni-wuerzburg.de/Dev/alveolus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -88021,7 +73740,7 @@ In interdisciplinary fields such as systems biology, close collaboration between biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0634, @@ -88037,8 +73756,48 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:name "Selective Neuronal Vulnerability Alzheimer Disease" ; sc:url "http://alz.princeton.edu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0634, + edam:topic_3474 ; + sc:citation , + "pubmed:35619290" ; + sc:description "A tool to discriminate disease-causing and neutral mutations in Alzheimer's disease." ; + sc:featureList edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Alz-disc" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://web.iitm.ac.in/bioinfo2/alzdisc/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workflow" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0625, + edam:topic_0634, + edam:topic_3170 ; + sc:citation , + "pubmed:35040932" ; + sc:description "AlzCode is a web resource that developed pipeline to evaluate the association of genes with AD. The association of genes with AD are validated by multiple lines of functional genomic evidence with statistical approaches." ; + sc:featureList edam:operation_1781, + edam:operation_3223, + edam:operation_3463 ; + sc:isAccessibleForFree true ; + sc:name "AlzCode" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.alzcode.xyz" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0202, @@ -88053,8 +73812,27 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:name "AlzGPS" ; sc:url "https://alzgps.lerner.ccf.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_3304, + edam:topic_3384, + edam:topic_3444 ; + sc:citation , + "pmcid:PMC8742670", + "pubmed:35035265" ; + sc:description "AM-UNet: Automated Mini 3D End-to-End U-NetBased Network For Brain Claustrum Segmentation." ; + sc:featureList edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "AM-UNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/AhmedAlbishri/AM-UNET" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0219, @@ -88075,7 +73853,7 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "http://gift2disease.net/GIFTED/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -88094,7 +73872,7 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "https://github.com/mariallr/amanida" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Plug-in" ; sc:applicationSubCategory edam:topic_0080, @@ -88116,7 +73894,7 @@ In interdisciplinary fields such as systems biology, close collaboration between biotools:primaryContact "Marek L. Borowiec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3520 ; @@ -88132,7 +73910,7 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "http://bix.ucsd.edu/AMASS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3301, edam:topic_3305, @@ -88145,8 +73923,30 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:name "AMASS" ; sc:url "http://www.amass.website" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script", + "Workbench" ; + sc:applicationSubCategory edam:topic_3063, + edam:topic_3315, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC8759573", + "pubmed:35047812" ; + sc:description "Adaptive and powerful microbiome multivariate association analysis via feature selection." ; + sc:featureList edam:operation_0324, + edam:operation_3435, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "AMAT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/kzb193/AMAT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3315 ; sc:citation ; @@ -88160,7 +73960,7 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "http://www.cgl.ucsf.edu/cytoscape/utilities3/amatreader.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0625, @@ -88175,7 +73975,7 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "https://www2.lghm.ufpa.br/amazonforest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -88191,11 +73991,14 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "http://sysbio.uni-ulm.de/?Software:Ambar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3307 ; - sc:citation "pubmed:16200636" ; + sc:citation , + , + "pmcid:PMC1989667", + "pubmed:16200636" ; sc:description "The Assisted Model Building with Energy Refinement tool refers to two things: a set of molecular mechanical force fields for the simulation of biomolecules (which are in the public domain, and are used in a variety of simulation programs); and a package of molecular simulation programs which includes source code and demos." ; sc:featureList edam:operation_2426 ; sc:name "AMBER" ; @@ -88206,7 +74009,7 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "http://ambermd.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0176 ; sc:citation , @@ -88224,7 +74027,7 @@ In interdisciplinary fields such as systems biology, close collaboration between biotools:primaryContact "Rommie E. Amaro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2275 ; @@ -88239,7 +74042,7 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "http://ambermd.org/#AmberTools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -88256,7 +74059,7 @@ In interdisciplinary fields such as systems biology, close collaboration between biotools:primaryContact "William Bryant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0769, @@ -88274,7 +74077,7 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "http://ambit.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0821, edam:topic_2258, @@ -88292,8 +74095,51 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "http://ambit.sourceforge.net/smirks/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workflow" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_0769, + edam:topic_3168, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC9252723", + "pubmed:35639514" ; + sc:description "Aquaculture Molecular Breeding Platform (AMBP): a web server and standalone version for genotype imputation and genetic analysis in aquaculture" ; + sc:featureList edam:operation_0487, + edam:operation_3196, + edam:operation_3557, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "AMBP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://mgb.qnlm.ac" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0625, + edam:topic_3293 ; + sc:citation , + "pubmed:34951625" ; + sc:description "Accurate mutation clustering from single-cell sequencing data." ; + sc:featureList edam:operation_3196, + edam:operation_3432, + edam:operation_3478 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "AMC" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/qasimyu/amc" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2275, @@ -88310,7 +74156,7 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "https://github.com/Valdes-Tresanco-MS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3391 ; sc:citation , @@ -88326,8 +74172,31 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "https://sourceforge.net/projects/amen/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_2640, + edam:topic_3360, + edam:topic_3474, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9252167", + "pubmed:35795065" ; + sc:description "AmetaRisk is an online tool for quantitative assessment of CRC metastasis risk based on the local invasion." ; + sc:featureList edam:operation_3227, + edam:operation_3659, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "AmetaRisk" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.bio-add.org/AmetaRisk" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0780 ; @@ -88344,7 +74213,7 @@ In interdisciplinary fields such as systems biology, close collaboration between biotools:primaryContact "Zheng Yuan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Suite" ; @@ -88367,7 +74236,7 @@ In interdisciplinary fields such as systems biology, close collaboration between . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -88388,8 +74257,28 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "http://bioalgo.iit.cnr.it/amica" ; biotools:primaryContact "AMICa Team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0128, + edam:topic_3070, + edam:topic_3520 ; + sc:citation ; + sc:description "Amica is an interactive and user-friendly web-based platform that accepts proteomic input files from different sources and provides automatically generated quality control, set comparisons, differential expression, biological network and over-representation analysis on the basis of minimal user input." ; + sc:featureList edam:operation_2939, + edam:operation_3501, + edam:operation_3557, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "amica" ; + sc:url "https://bioapps.maxperutzlabs.ac.at/app/amica" ; + biotools:primaryContact "Sebastian Didusch" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0623, edam:topic_3339, @@ -88410,7 +74299,7 @@ In interdisciplinary fields such as systems biology, close collaboration between biotools:primaryContact "Claudine Medigue" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -88429,7 +74318,7 @@ In interdisciplinary fields such as systems biology, close collaboration between biotools:primaryContact "Eva Balsa-Canto & Julio R. Banga" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation ; @@ -88445,8 +74334,30 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:softwareHelp ; sc:url "http://amigo.geneontology.org/amigo" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0097, + edam:topic_0099, + edam:topic_0621, + edam:topic_0654 ; + sc:citation , + "pubmed:35385068" ; + sc:description "AMIGOS III is a plugin to PyMOL for pseudo-torsion angle visualization and motif-based structure comparison of nucleic acids." ; + sc:featureList edam:operation_0249, + edam:operation_0570, + edam:operation_1812, + edam:operation_2518 ; + sc:isAccessibleForFree true ; + sc:license "BSD-2-Clause" ; + sc:name "AMIGOS III" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/pylelab/AMIGOSIII. a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3070, @@ -88463,7 +74374,7 @@ In interdisciplinary fields such as systems biology, close collaboration between biotools:primaryContact "Guangdi Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3295, @@ -88480,7 +74391,7 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "https://tcgi.shinyapps.io/amlrs_nomogram/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -88497,8 +74408,21 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:name "AMLVaran" ; sc:url "https://amlvaran.uni-muenster.de" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workbench" ; + sc:citation , + "pubmed:35394910" ; + sc:description "Adaptive Multilinear Meshes (AMMs) is a new framework to represent piecewise multilinear volumetric data using mixed-precision adaptive meshes." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "AMM" ; + sc:url "https://github.com/llnl/amm" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3071 ; @@ -88515,22 +74439,22 @@ In interdisciplinary fields such as systems biology, close collaboration between a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_3816" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_3816" ; + sc:name "Small molecule structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154 ; @@ -88547,7 +74471,7 @@ In interdisciplinary fields such as systems biology, close collaboration between biotools:primaryContact "Maria A. Miteva" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3293, @@ -88567,7 +74491,7 @@ In interdisciplinary fields such as systems biology, close collaboration between biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3174 ; @@ -88584,7 +74508,7 @@ In interdisciplinary fields such as systems biology, close collaboration between biotools:primaryContact "Andrew Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622 ; @@ -88601,7 +74525,7 @@ In interdisciplinary fields such as systems biology, close collaboration between biotools:primaryContact "AMOS team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -88620,7 +74544,7 @@ In interdisciplinary fields such as systems biology, close collaboration between biotools:primaryContact "Dong Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -88637,14 +74561,14 @@ In interdisciplinary fields such as systems biology, close collaboration between a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ] ; + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Experiment report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Sequence set" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Suite", "Web service" ; @@ -88663,7 +74587,7 @@ In interdisciplinary fields such as systems biology, close collaboration between biotools:primaryContact "Lenore M Martin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0121, @@ -88679,7 +74603,7 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "https://github.com/tlawrence3/amPEPpy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation ; @@ -88693,7 +74617,7 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "https://phylogenomics.me/software/amphora/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3174, @@ -88711,7 +74635,7 @@ In interdisciplinary fields such as systems biology, close collaboration between biotools:primaryContact "PIT Bioinformatics Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0194, @@ -88729,7 +74653,7 @@ In interdisciplinary fields such as systems biology, close collaboration between biotools:primaryContact "PIT Bioinformatics Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -88741,7 +74665,7 @@ In interdisciplinary fields such as systems biology, close collaboration between sc:url "https://github.com/legana/ampir" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0769, @@ -88762,7 +74686,7 @@ The ATOM Modeling PipeLine (AMPL) extends the functionality of DeepChem and supp sc:url "https://github.com/ATOMconsortium/AMPL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_2828 ; @@ -88777,7 +74701,7 @@ The ATOM Modeling PipeLine (AMPL) extends the functionality of DeepChem and supp biotools:primaryContact "D. J. Rigden" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3519 ; @@ -88795,15 +74719,8 @@ The ATOM Modeling PipeLine (AMPL) extends the functionality of DeepChem and supp sc:url "http://bioconductor.org/packages/release/bioc/html/amplican.html" ; biotools:primaryContact "Eivind Valen" . - a sc:SoftwareApplication ; - sc:description """Amplicon sequencing is based on NGS technology or PacBio SMRT sequencing. The ultra-deep sequencing of amplicons (PCR products) allows efficient variant identification and characterization. This technique has a wide range of applications, including 16S/18S/ITS gene sequencing, SNP genotyping, CRISPR sequencing, somatic/complex variant discovery, antibody screening sequencing, immune repertoire sequencing, et al. - -Whether you would like to detect the diversity of microbial communities or discover rare somatic mutations in complex samples. CD Genomics could provide professional, cost-efficient and high-speed amplicon sequencing services to meet your project requirements.""" ; - sc:name "Amplicon Sequencing Service" ; - sc:url "https://www.cd-genomics.com/amplicon-sequencing-services.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0654, @@ -88823,25 +74740,35 @@ Whether you would like to detect the diversity of microbial communities or disco sc:url "https://amplicondesign.dkfz.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "a collection of programs for the removal of noise from 454 sequenced PCR amplicons. It involves two steps the removal of noise from the sequencing itself and the removal of PCR point errors. This project also includes the Perseus algorithm for chimera removal." ; sc:featureList edam:operation_0450 ; sc:name "AmpliconNoise" ; sc:url "https://code.google.com/archive/p/ampliconnoise/" . - a sc:SoftwareApplication ; - bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:description "AnnotSV is a standalone program designed for annotating and ranking Structural Variations (SV). This tool is implemented in Tcl, with a ready to start installation, and runs in command line on all platforms." ; - sc:featureList edam:operation_0226 ; - sc:name "AmpliconQC" ; - sc:url "https://lbgi.fr/AnnotSV/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3168, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8788131", + "pubmed:35078402" ; + sc:description "AMPlify is an attentive deep learning model for antimicrobial peptide prediction." ; + sc:featureList edam:operation_3192, + edam:operation_3461, + edam:operation_3482 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "AMPlify" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bcgsc/AMPlify" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, edam:topic_3168, @@ -88859,7 +74786,7 @@ The Roche 454 GS Junior sequencing platform allows locus-specific DNA methylatio sc:url "https://bitbucket.org/svenrahmann/amplikyzer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0632, @@ -88880,7 +74807,7 @@ The Roche 454 GS Junior sequencing platform allows locus-specific DNA methylatio biotools:primaryContact "Nils Koelling" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3656, @@ -88900,7 +74827,7 @@ The Roche 454 GS Junior sequencing platform allows locus-specific DNA methylatio biotools:primaryContact "Giovanni Scala" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0077, @@ -88921,7 +74848,7 @@ The Roche 454 GS Junior sequencing platform allows locus-specific DNA methylatio biotools:primaryContact "Michal Okoniewski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation ; @@ -88935,7 +74862,7 @@ The Roche 454 GS Junior sequencing platform allows locus-specific DNA methylatio sc:url "http://www.bioinformatics.org/Antimicrobial/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3307 ; @@ -88951,10 +74878,10 @@ The Roche 454 GS Junior sequencing platform allows locus-specific DNA methylatio a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1317 ; sc:citation ; @@ -88972,7 +74899,7 @@ The Roche 454 GS Junior sequencing platform allows locus-specific DNA methylatio biotools:primaryContact "Antonio Rosato" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3050, @@ -88991,14 +74918,13 @@ The Roche 454 GS Junior sequencing platform allows locus-specific DNA methylatio a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3707" ; - sc:name "Biodiversity data" ; - sc:sameAs "http://edamontology.org/data_3707" ] ; + sc:additionalType "http://edamontology.org/data_3707" ; + sc:encodingFormat "http://edamontology.org/format_3746" ; + sc:name "Biodiversity data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3050 ; sc:citation ; @@ -89011,13 +74937,13 @@ The Roche 454 GS Junior sequencing platform allows locus-specific DNA methylatio sc:url "https://github.com/MadsAlbertsen/ampvis2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "a k-mer and metafeature approach to classify antimicrobial resistance from high-throughput short-read metagenomics data" ; sc:name "AMR-meta" ; sc:url "https://github.com/smarini/AMR-meta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3301, edam:topic_3324 ; @@ -89032,7 +74958,7 @@ The Roche 454 GS Junior sequencing platform allows locus-specific DNA methylatio sc:url "https://amrmap.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0160, @@ -89051,7 +74977,7 @@ The Roche 454 GS Junior sequencing platform allows locus-specific DNA methylatio sc:url "https://code.google.com/p/automotifserver/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3500 ; @@ -89072,7 +74998,7 @@ The Roche 454 GS Junior sequencing platform allows locus-specific DNA methylatio biotools:primaryContact "Johannes Signer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3409, edam:topic_3452 ; @@ -89090,7 +75016,7 @@ The Roche 454 GS Junior sequencing platform allows locus-specific DNA methylatio sc:url "https://github.com/superxuang/amta-net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3385, @@ -89109,7 +75035,7 @@ The Roche 454 GS Junior sequencing platform allows locus-specific DNA methylatio biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2229, @@ -89128,7 +75054,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a sc:url "https://ucarlab.github.io/AMULET/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3304, @@ -89149,7 +75075,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a sc:url "https://github.com/tyiannak/amvoc/tree/master" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0121 ; @@ -89165,7 +75091,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a sc:url "http://aias.biol.uoa.gr/AMYLPRED/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation , @@ -89183,18 +75109,18 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1093" ; - sc:name "Sequence accession" ; - sc:sameAs "http://edamontology.org/data_1093" ] ; + sc:additionalType "http://edamontology.org/data_1093" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1332" ; + sc:name "Sequence set (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0123 ; sc:citation ; @@ -89209,8 +75135,29 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a sc:softwareHelp ; sc:url "http://amypdb.genouest.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_0634, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9095707", + "pubmed:35546347" ; + sc:description "AMYPred-FRL is a novel approach for accurate prediction of amyloid proteins by using feature representation learning." ; + sc:featureList edam:operation_3092, + edam:operation_3436, + edam:operation_3767 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "AMYPred-FRL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://pmlabstack.pythonanywhere.com/AMYPred-FRL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654 ; @@ -89226,7 +75173,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a biotools:primaryContact "José Luis Oliveira" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3175, @@ -89242,7 +75189,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a "Yuanwei Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -89258,7 +75205,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a biotools:primaryContact "Akhilesh Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -89275,7 +75222,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a biotools:primaryContact "hangjun ji" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -89294,7 +75241,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a biotools:primaryContact "Brad Friedman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -89312,8 +75259,30 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a sc:url "http://bioconductor.org/packages/release/bioc/html/anamiR.html" ; biotools:primaryContact "Ti-Tai Wang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_2885, + edam:topic_3169, + edam:topic_3512, + edam:topic_3517 ; + sc:citation , + "pubmed:35446421" ; + sc:description "A web server for the identification and annotation of regulatory single-nucleotide polymorphisms (SNPs) with allele-specific binding events." ; + sc:featureList edam:operation_0484, + edam:operation_3501, + edam:operation_3661 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ANANASTRA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ananastra.autosome.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0637, @@ -89333,7 +75302,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a biotools:primaryContact "Michael W. Hall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -89351,7 +75320,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a sc:url "https://github.com/vanheeringen-lab/ANANSE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -89373,7 +75342,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a biotools:primaryContact "Ted Wong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -89390,7 +75359,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a sc:url "http://opig.stats.ox.ac.uk/webapps/sabdab-sabpred/ANARCI.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0821, @@ -89417,8 +75386,33 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a "Eleftherios Pilalis", "Olga Papadodima" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0621, + edam:topic_2259, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8555137", + "pubmed:34706638" ; + sc:description """ANAT (Advanced Network Analysis Tool) is an all-in-one resource that provides access to up-to-date large-scale physical association data in several organisms, advanced algorithms for network reconstruction, and a number of tools for exploring and evaluating the obtained network models. It is a framework for elucidating functional protein subnetworks using graph-theoretic and machine learning approaches. + +Genome-scale screening studies are gradually accumulating a wealth of data on the putative involvement of hundreds of genes in various cellular responses or functions. A fundamental challenge is to chart out the molecular pathways that underlie these systems. ANAT (Advanced Network Analysis Tool) , is an all-in-one resource that provides access to up-to-date large-scale physical association data in several organisms, advanced algorithms for network reconstruction, and a number of tools for exploring and evaluating the obtained network models. It is a plug-in for Cytoscape.""" ; + sc:featureList edam:operation_0276, + edam:operation_3925, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "ANAT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://www.cs.tau.ac.il/~bnet/ANAT/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -89434,8 +75428,26 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a sc:url "https://www.mathworks.com/matlabcentral/fileexchange/71634-anatomical-data-visualization-toolfbox-for-fmri-ecog" ; biotools:primaryContact "Edden M. Gerber" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3384, + edam:topic_3444, + edam:topic_3452, + edam:topic_3474 ; + sc:citation , + "pubmed:35768752" ; + sc:description "A medical image segmentation software supporting user interventions and user-defined funtion extention" ; + sc:featureList edam:operation_3443, + edam:operation_3553 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "AnatomySketch" ; + sc:url "https://github.com/DlutMedimgGroup/AnatomySketch-Software" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176 ; sc:citation , @@ -89453,7 +75465,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a biotools:primaryContact "S. Chakra Chennubhotla" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -89470,7 +75482,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a sc:url "http://sysbio.suda.edu.cn/anca/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -89484,7 +75496,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a sc:url "http://www.imperial.ac.uk/people/l.coin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3307, @@ -89500,7 +75512,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a biotools:primaryContact "Laboratory of Masatoshi Nei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3293 ; @@ -89517,7 +75529,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3168, @@ -89533,7 +75545,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a biotools:primaryContact "Raphael Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0160, @@ -89549,7 +75561,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a sc:url "https://github.com/jesvedberg/Ancestry_HMM-S/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0160, edam:topic_0610, @@ -89563,7 +75575,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a sc:url "https://github.com/Schumerlab/ancestryinfer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -89578,7 +75590,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a sc:url "http://genetics.med.harvard.edu/reich/Reich_Lab/Software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053, @@ -89594,7 +75606,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a biotools:primaryContact "Emile Chimusa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0196 ; sc:description "Post-processing tools for de novo assemblies." ; @@ -89607,10 +75619,10 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3320 ; @@ -89628,30 +75640,30 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_3534, @@ -89668,7 +75680,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a sc:url "https://iupred3.elte.hu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -89682,7 +75694,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a sc:url "http://dialign.gobics.de/anchor/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0797, edam:topic_3174, @@ -89709,7 +75721,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:25627242" ; @@ -89726,7 +75738,7 @@ Running AMULET consists of two parts: 1) Identifying all loci with >2 uniquely a "Youri Kravatsky" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, edam:topic_0602, @@ -89745,7 +75757,7 @@ The rapid growth of scientific literature has rendered the task of finding relev sc:url "https://anddigest.sysbio.ru/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -89770,14 +75782,14 @@ The rapid growth of scientific literature has rendered the task of finding relev a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0870" ; - sc:name "Sequence distance matrix" ; - sc:sameAs "http://edamontology.org/data_0870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0870" ; + sc:encodingFormat "http://edamontology.org/format_1423" ; + sc:name "Sequence distance matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293 ; sc:author "Fabian Klötzl" ; @@ -89798,7 +75810,7 @@ The rapid growth of scientific literature has rendered the task of finding relev biotools:primaryContact "Fabian Klötzl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -89817,7 +75829,7 @@ The rapid growth of scientific literature has rendered the task of finding relev biotools:primaryContact "Dominik Schaack & Steffen Schmidt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -89841,7 +75853,7 @@ The rapid growth of scientific literature has rendered the task of finding relev biotools:primaryContact "Andrej Sali" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -89857,7 +75869,7 @@ The rapid growth of scientific literature has rendered the task of finding relev biotools:primaryContact "Vladimir A Ivanisenko" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3416, @@ -89873,7 +75885,7 @@ The rapid growth of scientific literature has rendered the task of finding relev biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Web application" ; sc:applicationSubCategory edam:topic_0610, @@ -89893,7 +75905,7 @@ The rapid growth of scientific literature has rendered the task of finding relev sc:url "https://www.anecdata.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0610, @@ -89908,7 +75920,7 @@ This package models simple aquifer and well configurations.""" ; sc:url "http://gopalpenny.shinyapps.io/anem-app" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -89931,7 +75943,7 @@ This package models simple aquifer and well configurations.""" ; "Aaron Taudt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3390, @@ -89948,8 +75960,25 @@ This package models simple aquifer and well configurations.""" ; sc:url "https://www.mathworks.com/matlabcentral/fileexchange/63729-jm61288-aneurysm_detection" ; biotools:primaryContact "Jubin Mitra" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0634, + edam:topic_3170, + edam:topic_3308, + edam:topic_3335 ; + sc:citation , + "pubmed:34626395" ; + sc:description "anexVis is a transcriptome tool to visualize organ/tissue-specific glycosaminoglycan biosynthetic and catabolic pathways in human health and diseases. anexVis allows one to analyze a large number of genes that are related to biosynthetic and catabolic pathways of all glycosaminoglycans, such as heparan sulfate, chondroitin sulfate, keratan sulfate, and hyaluronic acid, in parallel across various human tissues organs. Such visual analyses have not been accessible to the broad research community despite the accumulation of a large amount of RNA-seq data." ; + sc:featureList edam:operation_0314, + edam:operation_3463, + edam:operation_3926 ; + sc:name "anexVis" ; + sc:url "https://anexvis.chpc.utah.edu/" ; + biotools:primaryContact "Balagurunathan Kuberan" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3391 ; sc:citation ; @@ -89966,7 +75995,7 @@ This package models simple aquifer and well configurations.""" ; biotools:primaryContact "Tianle Ma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0769, @@ -89982,7 +76011,7 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together sc:url "https://github.com/ForomePlatform/AnFiSA#public-demo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3308 ; sc:citation ; @@ -90001,7 +76030,7 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together biotools:primaryContact "David Horner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3335, edam:topic_3382, @@ -90019,7 +76048,7 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together sc:url "https://github.com/kritiyer/AngioNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3307, @@ -90037,7 +76066,7 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together biotools:primaryContact "Antti Niemistö" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -90052,7 +76081,7 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together biotools:primaryContact "Kana Shimizu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0166, edam:topic_2814 ; @@ -90072,14 +76101,14 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3056 ; @@ -90102,7 +76131,7 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together "Thorfinn Korneliussen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3056, @@ -90120,7 +76149,7 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together biotools:primaryContact "Paul Hoffman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2269, @@ -90138,7 +76167,7 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together biotools:primaryContact "Dylan Owen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3474, @@ -90153,7 +76182,7 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together sc:url "https://aniamppred.anvil.app/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -90170,7 +76199,7 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together sc:url "http://gong_lab.hzau.edu.cn/Animal-APAdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0659, @@ -90190,8 +76219,31 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together "Windows" ; sc:url "http://gong_lab.hzau.edu.cn/Animal-eRNAdb/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0219, + edam:topic_0625, + edam:topic_2885, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8728226", + "pubmed:34850103" ; + sc:description "The Animal QTLdb and CorrDB are unique resources for livestock animal genetics and genomics research which have been used extensively by the international livestock genome research community." ; + sc:featureList edam:operation_0282, + edam:operation_0484, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-4.0" ; + sc:name "Animal QTLdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.animalgenome.org/QTLdb" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -90213,7 +76265,7 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together "Hongmei Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_3174, @@ -90233,7 +76285,7 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together sc:url "https://github.com/compbiomed/animalcules" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -90253,8 +76305,33 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together sc:url "http://animalnexus.ca/" ; biotools:primaryContact "Stefanie E. LaZerte" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0219, + edam:topic_0610, + edam:topic_3299, + edam:topic_3407, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9163144", + "pubmed:35654905" ; + sc:description "AnimalTraits is a curated database containing body mass, metabolic rate and brain size measurements across a wide range of terrestrial animal taxa." ; + sc:featureList edam:operation_3435, + edam:operation_3436, + edam:operation_3695, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "CC0-1.0" ; + sc:name "AnimalTraits" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://animaltraits.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_0621, @@ -90269,7 +76346,7 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together sc:url "http://anipose.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -90286,8 +76363,26 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together sc:name "AniProtDB" ; sc:url "https://research.nhgri.nih.gov/aniprotdb" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3315 ; + sc:citation , + "pubmed:35856714" ; + sc:description "ANISE (grAphical coNfigurator of TiFoSi In Silico Experiments) is an application that allows you to configure the input file of TiFoSi (Tissues: Forces & Signalling) which is a computational tool to simulate the cellular dynamics of planar epithelia." ; + sc:featureList edam:operation_3096 ; + sc:license "Not licensed" ; + sc:name "ANISE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://lsymserver.uv.es/lsym/ANISE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -90309,7 +76404,7 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together biotools:primaryContact "Gabriel Ramos Llordén" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2275 ; @@ -90326,7 +76421,7 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together sc:url "http://anm.csb.pitt.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -90345,7 +76440,7 @@ Anfisa is a Variant Analysis and Curation Tool. Its purpose is to bring together sc:url "https://github.com/BioInfoLeo/ANMDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in", "Script" ; sc:applicationSubCategory edam:topic_0634, @@ -90366,14 +76461,14 @@ Large-scale data analysis of synaptic morphology is becoming increasingly import a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2717" ; - sc:name "Oligonucleotide probe annotation" ; - sc:sameAs "http://edamontology.org/data_2717" ] ; + sc:additionalType "http://edamontology.org/data_2717" ; + sc:encodingFormat "http://edamontology.org/format_2031" ; + sc:name "Oligonucleotide probe annotation" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2084" ; - sc:name "Nucleic acid report" ; - sc:sameAs "http://edamontology.org/data_2084" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2084" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -90391,7 +76486,7 @@ Large-scale data analysis of synaptic morphology is becoming increasingly import biotools:primaryContact "Colin A. Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0154, @@ -90408,7 +76503,7 @@ Large-scale data analysis of synaptic morphology is becoming increasingly import sc:url "https://github.com/filipspl/AnnapuRNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3473 ; @@ -90423,7 +76518,7 @@ Large-scale data analysis of synaptic morphology is becoming increasingly import sc:url "http://arrowsmith.psych.uic.edu/cgi-bin/arrowsmith_uic/AnneOTate.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_1775 ; @@ -90443,14 +76538,14 @@ Large-scale data analysis of synaptic morphology is becoming increasingly import a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2031" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0077, @@ -90469,7 +76564,7 @@ Large-scale data analysis of synaptic morphology is becoming increasingly import biotools:primaryContact "Chris Wirth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -90488,7 +76583,7 @@ Large-scale data analysis of synaptic morphology is becoming increasingly import sc:url "http://dandelion.liveholonics.com/dart/annoj.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0114, edam:topic_0203, @@ -90506,7 +76601,7 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine sc:url "https://github.com/d3b-center/annoFuse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3512 ; @@ -90522,7 +76617,7 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine biotools:primaryContact "Frank Musacchia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0622, @@ -90539,7 +76634,7 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine sc:url "https://github.com/shengqh/annogen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2640 ; @@ -90552,7 +76647,7 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine sc:url "http://bjpop.github.io/annokey/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -90572,7 +76667,7 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -90592,7 +76687,7 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine sc:url "http://annolnc.gao-lab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -90610,7 +76705,7 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine sc:url "http://chimborazo.ibdm.univ-mrs.fr/AnnoMiner/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -90627,16 +76722,60 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine sc:name "annonex2embl" ; sc:url "https://github.com/michaelgruenstaeudl/annonex2embl" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0102, + edam:topic_0602, + edam:topic_0621, + edam:topic_3053 ; + sc:citation , + "pmcid:PMC9252745", + "pubmed:35640593" ; + sc:description "The Annotation Query (AnnoQ) is an integrated functional annotation platform for large-scale genetic variant annotation." ; + sc:featureList edam:operation_0224, + edam:operation_0361, + edam:operation_1812 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "AnnoQ" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://annoq.org/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_0622, + edam:topic_0659, + edam:topic_0769, + edam:topic_0780 ; + sc:citation , + "pmcid:PMC8825457", + "pubmed:34792587" ; + sc:description "AnnoSINE is a SINE annotation tool for plant genomes. The program is designed to generate high-quality non-redundant SINE libraries for genome annotation. It uses the manually curated SINE library in the Oryza sativa genome to benchmark the annotation performance." ; + sc:featureList edam:operation_0224, + edam:operation_0362, + edam:operation_0525 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "AnnoSINE" ; + sc:url "https://github.com/yangli557/AnnoSINE" ; + biotools:primaryContact . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -90656,34 +76795,34 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -90701,7 +76840,7 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0622 ; @@ -90718,36 +76857,49 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine sc:url "http://cru.genomics.iit.it/AnnotateGenomicRegions/" ; biotools:primaryContact "Contact form" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:description "This tool can get annotation for a generic set of IDs, using the Bioconductor annotation data packages. Supported organisms are human, mouse, rat, fruit fly and zebrafish. The org.db packages that are used here are primarily based on mapping using Entrez Gene identifiers. More information on the annotation packages can be found at the Bioconductor website, for example, information on the human annotation package (org.Hs.eg.db) can be found here." ; + sc:featureList edam:operation_0226 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "annotatemyids" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://usegalaxy.org.au/root?tool_id=toolshed.g2.bx.psu.edu%2Frepos%2Fiuc%2Fannotatemyids%2Fannotatemyids%2F3.12.0%2Bgalaxy1" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3169 ; @@ -90765,14 +76917,14 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3621" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_1920" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -90792,7 +76944,7 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0219 ; sc:description "It provides class and other infrastructure to implement filters for manipulating Bioconductor annotation resources. The filters will be used by ensembldb, Organism.dplyr, and other packages." ; @@ -90809,18 +76961,18 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_2195" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2195" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3621" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3366, @@ -90841,14 +76993,14 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2091" ; - sc:name "Accession" ; - sc:sameAs "http://edamontology.org/data_2091" ] ; + sc:additionalType "http://edamontology.org/data_2091" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2091" ; - sc:name "Accession" ; - sc:sameAs "http://edamontology.org/data_2091" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2091" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Accession" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3366 ; @@ -90866,7 +77018,7 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine biotools:primaryContact "Stefan McKinnon Edwards" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0605, @@ -90886,7 +77038,7 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -90906,14 +77058,14 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -90936,7 +77088,7 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine biotools:primaryContact "Alexandre Kuhn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382, edam:topic_3474 ; @@ -90951,7 +77103,7 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine sc:url "https://github.com/spreka/annotatorj" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0160, @@ -90973,14 +77125,12 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0085 ; sc:citation ; @@ -90998,14 +77148,20 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine biotools:primaryContact "GenOuest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Command-line tool" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web service" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0199, edam:topic_3325 ; - sc:citation , + sc:citation , + , + , "pmcid:PMC2938201", - "pubmed:20601685" ; + "pmcid:PMC4718734", + "pubmed:20601685", + "pubmed:22717648", + "pubmed:26379229" ; sc:description "A tool for finding relevant genetic variants from high-throughput sequencing data based on functional annotation." ; sc:featureList edam:operation_2403, edam:operation_3226, @@ -91021,26 +77177,26 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168 ; @@ -91059,26 +77215,26 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -91099,7 +77255,7 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3300, @@ -91121,7 +77277,7 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine biotools:primaryContact "Maciel C. Vidal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2814 ; @@ -91139,7 +77295,7 @@ Using annoFuse, users can filter out fusions known to be artifactual and retaine biotools:primaryContact "Francisco Melo Ledermann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3325, edam:topic_3577 ; @@ -91158,7 +77314,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:url "https://github.com/bristena-op/AnoniMME" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -91178,7 +77334,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a biotools:primaryContact "Ola Larsson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -91204,7 +77360,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a "Julie Lorent" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2640, @@ -91219,7 +77375,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -91237,8 +77393,43 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:url "http://services.bioinformatics.dtu.dk/service.php?AnOxPePred-1.0" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3382 ; + sc:citation , + "pmcid:PMC8894515", + "pubmed:35342875" ; + sc:description "Implementing Automated Nonparametric Statistical Analysis on Functional Analysis Data." ; + sc:featureList edam:operation_0337, + edam:operation_2238 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "ANSA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ansa.shinyapps.io/ansa/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workflow" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_2640, + edam:topic_3168, + edam:topic_3360 ; + sc:citation , + "pubmed:35025668" ; + sc:description "ANSWER can be used by clinical geneticists or pathologists to identify clinically actionable variants from next-generation sequencing data for the purposes of recommending personalized treatment options." ; + sc:featureList edam:operation_0337, + edam:operation_3675, + edam:operation_3920 ; + sc:name "ANSWER" ; + sc:url "https://answer-wiki.readthedocs.io" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -91256,14 +77447,14 @@ Advances in genome sequencing and genomics research are bringing us closer to a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0880" ; - sc:name "RNA secondary structure" ; - sc:sameAs "http://edamontology.org/data_0880" ] ; + sc:additionalType "http://edamontology.org/data_0880" ; + sc:encodingFormat "http://edamontology.org/format_1457" ; + sc:name "RNA secondary structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author , @@ -91287,7 +77478,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a "Robert Kleinkauf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2830 ; @@ -91302,7 +77493,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:url "http://anthem.erc.monash.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -91318,19 +77509,55 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:url "http://antheprot-pbil.ibcp.fr/" ; biotools:primaryContact "Gilbert Deléage" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0622, - edam:topic_3557 ; - sc:citation , - "pmcid:PMC6739104", - "pubmed:31506266" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Acrs', 'Aca', 'self-targeting spacers', 'Acr' | Bioinformatics Identification of Anti-CRISPR Loci by Using Homology, Guilt-by-Association, and CRISPR Self-Targeting Spacer Approaches | Visse funktioner i Excel kan ikke vises i Google Sheets og vil forsvinde, hvis du foretager ændringer | Reference (First author, year, journal) | Tryk på Ctrl-F5 for at opdatere siden, og prøv igen" ; - sc:name "anti-CRISPR" ; - sc:url "https://tinyurl.com/anti-CRISPR" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0218, + edam:topic_3324, + edam:topic_3397, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9216567", + "pubmed:35653350" ; + sc:description "Anthrax Knowledge Portal (AnthraxKP) is a multi-module database management system, which allows researchers to query, browse and download anthrax biomedical resources in multiple formats" ; + sc:featureList edam:operation_0337, + edam:operation_3280, + edam:operation_3625, + edam:operation_3778 ; + sc:license "Not licensed" ; + sc:name "AnthraxKP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://139.224.212.120:18095/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0114, + edam:topic_0196, + edam:topic_0203, + edam:topic_3068, + edam:topic_3168 ; + sc:citation , + "pubmed:35348649" ; + sc:description "an online repository of anti-CRISPR proteins including information on inhibitory mechanisms, activities and neighbors of curated anti-CRISPR proteins." ; + sc:featureList edam:operation_0310, + edam:operation_0435, + edam:operation_2421, + edam:operation_2962 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Anti-CRISPRdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "2.2" ; + sc:url "http://guolab.whu.edu.cn/anti-CRISPRdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_2275, @@ -91351,7 +77578,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:url "https://bioinfo.imtech.res.in/manojk/antiebola" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -91365,11 +77592,11 @@ Advances in genome sequencing and genomics research are bringing us closer to a "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://crdd.osdd.net/raghava/antiangiopred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/antiangiopred/" ; biotools:primaryContact "V Subrmanian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154 ; @@ -91382,10 +77609,20 @@ Advances in genome sequencing and genomics research are bringing us closer to a "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/antibp/" . + sc:url "https://webs.iiitd.edu.in/raghava/antibp/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:applicationSubCategory edam:topic_2814 ; + sc:citation "pubmed:20122190" ; + sc:description "AntiBP2 server predicts the antibacterial peptides in a protein sequence" ; + sc:featureList edam:operation_1777 ; + sc:name "antibp2" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/antibp2/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3372, @@ -91402,7 +77639,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:url "https://m-py.github.io/anticlust/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0121, @@ -91416,15 +77653,57 @@ Advances in genome sequencing and genomics research are bringing us closer to a "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://crdd.osdd.net/raghava/anticp/" ; + sc:url "https://webs.iiitd.edu.in/raghava/anticp/" ; biotools:primaryContact "Gajendra P. S. Raghava" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation "pubmed:32770192" ; + sc:description "AntiCP 2.0 is an updated version of AntiCP, developed to predict and design anticancer peptides with high accuracy" ; + sc:featureList edam:operation_2997 ; + sc:name "anticp2" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/anticp2/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_3336, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9205309", + "pubmed:35722269" ; + sc:description "The AntiDMPpred tool is a predictor that can be used to foretell if the query peptides might be anti-diabetic bioactive peptides." ; + sc:featureList edam:operation_0224, + edam:operation_3631, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "AntiDMPpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://i.uestc.edu.cn/AntiDMPpred/cgi-bin/AntiDMPpred.pl" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation "pubmed:29535692" ; + sc:description "Antifp is an in silico method, which is developed to predict and design antifungal peptides. The main dataset used in this method consists of 1459 antifungal peptides." ; + sc:featureList edam:operation_0527 ; + sc:name "antifp" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/antifp/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0804, - edam:topic_2830, edam:topic_3324 ; sc:citation "pubmed:19820110" ; sc:description "Contains 500 antigens to pathogenic species curated from the literature and other immunological resources. In it, a database entry contains information regarding the sequence, structure, origin, etc. of an antigen with additional information such as B and T-cell epitopes, MHC binding, function, gene-expression and post translational modifications, where available. It also provides links to major internal and external databases." ; @@ -91437,18 +77716,16 @@ Advances in genome sequencing and genomics research are bringing us closer to a "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/antigendb/" . + sc:url "http://webs.iiitd.edu.in/raghava/antigendb/" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1534" ; - sc:name "Peptide immunogenicity data" ; - sc:sameAs "http://edamontology.org/data_1534" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1534" ; + sc:name "Peptide immunogenicity data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation , @@ -91477,8 +77754,19 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/antigenic.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation "pubmed:30416494" ; + sc:description "AntiMPmod is an in silico method, which is developed to predict efficient modified antimicrobial peptides (ModAMP)." ; + sc:featureList edam:operation_1777 ; + sc:name "antimpmod" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/antimpmod/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -91497,7 +77785,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a biotools:primaryContact "Hector Corrada Bravo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0623 ; @@ -91528,7 +77816,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_0154, @@ -91546,8 +77834,30 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:softwareHelp ; sc:url "http://bioinformatics.biol.uoa.gr/ANTISOMA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation "pubmed:29688365" ; + sc:description "AntiTbPdb is a database of experimentally verified anti-tubercular or anti-mycobacterial peptides" ; + sc:featureList edam:operation_2945 ; + sc:name "AntiTbPdb" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/antitbpdb/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation "pubmed:30210341" ; + sc:description "This webserver is designed to predict peptides having effective bactreicidal activity against Mycobacteruium species." ; + sc:featureList edam:operation_2945 ; + sc:name "AntiTbPred" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/antitbpred/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -91564,7 +77874,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:url "http://lbm.ab.a.u-tokyo.ac.jp/~iwata/antmap/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474, @@ -91577,7 +77887,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:url "http://antrax.readthedocs.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_0610, @@ -91595,8 +77905,14 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:name "ANTs" ; sc:url "https://github.com/SebastianSosa/ANTs" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "This tool is provided for marking ant motion trajectories dataset from video. We provide marking software, three data quality analysis scripts, and a tracking performance evaluation tool." ; + sc:name "ANTS_marking_and_analysis_tools" ; + sc:url "https://github.com/holmescao/ANTS_marking_and_analysis_tools" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3383, @@ -91614,7 +77930,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:url "https://github.com/ANTsX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -91634,7 +77950,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:url "https://github.com/CRG-CNAG/anubis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -91652,7 +77968,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a biotools:primaryContact "Michael Gromiha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0605, edam:topic_2885, @@ -91669,14 +77985,19 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:url "https://anvilproject.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0194, edam:topic_3174, edam:topic_3301, edam:topic_3308, edam:topic_3391 ; - sc:citation ; + sc:citation , + , + "pmcid:PMC4614810", + "pmcid:PMC8116326", + "pubmed:26500826", + "pubmed:33349678" ; sc:description "Anvi’o is an open-source, community-driven analysis and visualization platform for microbial ‘omics. It brings together many aspects of today’s cutting-edge strategies including genomics, metagenomics, metatranscriptomics, pangenomics, metapangenomics, phylogenomics, and microbial population genetics in an integrated and easy-to-use fashion through extensive interactive visualization capabilities." ; sc:featureList edam:operation_0310, edam:operation_0337 ; @@ -91686,8 +78007,24 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:url "https://merenlab.org/software/anvio/" ; biotools:primaryContact "Meren Lab" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_3572 ; + sc:description "Convert various sequence formats to FASTA" ; + sc:featureList edam:operation_0233, + edam:operation_0335 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "any2fasta" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/tseemann/any2fasta" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203 ; sc:description "AnyExpress is a software package that combines cross-platform gene expression data using a fast interval-matching algorithm." ; @@ -91700,7 +78037,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:url "http://anyexpress.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -91718,7 +78055,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a biotools:primaryContact "Hao Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0154, @@ -91735,8 +78072,51 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:name "Aom2S" ; sc:url "https://mstools.epfl.ch/am2s/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_2840, + edam:topic_3068, + edam:topic_3407, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8796376", + "pubmed:34718414" ; + sc:description "AOP-helpFinder is a web tool for identification and extraction of associations between stressors and biological events at various level of the biological organization (molecular initiating event (MIE), key event (KE), and adverse outcome (AO)). AOP-helpFinder is a hybrid tool, combining text mining and graph theory. Currently, AOP-helpFinder screens all the >30 millions of abstracts available from the PubMed database, to decipher co-mentioned terms (e.g. a stressor and a MIE)." ; + sc:featureList edam:operation_0305, + edam:operation_0306, + edam:operation_1812 ; + sc:license "CECILL-2.1" ; + sc:name "AOP-helpFinder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://aop-helpfinder.u-paris-sciences.fr/index.php" ; + biotools:primaryContact . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3786" ; + sc:encodingFormat "http://edamontology.org/format_3790" ; + sc:name "Query script" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "SPARQL endpoint", + "Web application" ; + sc:applicationSubCategory edam:topic_2840 ; + sc:citation ; + sc:description "SPARQL interface for AOP-Wiki data" ; + sc:featureList edam:operation_2421 ; + sc:isAccessibleForFree true ; + sc:name "AOP-Wiki RDF" ; + sc:url "https://aopwiki.rdf.bigcat-bioinformatics.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -91754,7 +78134,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:url "http://www.biomedicale.parisdescartes.fr/aop4EUpest/home.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -91772,7 +78152,7 @@ Advances in genome sequencing and genomics research are bringing us closer to a sc:url "https://github.com/ChengF-Lab/AOPEDF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0659, @@ -91794,7 +78174,7 @@ APA-Scan is a python tool which can be downloaded directly from github. Python ( sc:url "https://github.com/compbiolabucf/APA-Scan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Web API", @@ -91828,7 +78208,7 @@ APA-Scan is a python tool which can be downloaded directly from github. Python ( "Apache Taverna mailing lists" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -91844,7 +78224,7 @@ APA-Scan is a python tool which can be downloaded directly from github. Python ( sc:url "https://bioconductor.org/packages/release/bioc/html/APAlyzer.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0749, @@ -91866,7 +78246,7 @@ APA-Scan is a python tool which can be downloaded directly from github. Python ( sc:url "http://gpcr.ut.ee/aparecium.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2275, edam:topic_3318 ; @@ -91881,7 +78261,7 @@ APA-Scan is a python tool which can be downloaded directly from github. Python ( sc:url "https://github.com/BaoJingxiao/APBScore" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0610, @@ -91898,7 +78278,7 @@ APA-Scan is a python tool which can be downloaded directly from github. Python ( sc:url "https://biostatistics.mdanderson.org/shinyapps/aPCoA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0078, @@ -91920,7 +78300,7 @@ APA-Scan is a python tool which can be downloaded directly from github. Python ( biotools:primaryContact "Denise Scholtens" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -91943,7 +78323,7 @@ APA-Scan is a python tool which can be downloaded directly from github. Python ( sc:url "https://ape-framework.readthedocs.io/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520, @@ -91960,7 +78340,7 @@ APA-Scan is a python tool which can be downloaded directly from github. Python ( sc:url "https://trac.nbic.nl/apecs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -91981,7 +78361,7 @@ APA-Scan is a python tool which can be downloaded directly from github. Python ( biotools:primaryContact "Anqi Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2885, @@ -92000,7 +78380,7 @@ Aperture takes paired-end reads in fastq format as inputs and reports all SVs an sc:url "https://github.com/liuhc8/Aperture" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0108, @@ -92019,7 +78399,7 @@ Aperture takes paired-end reads in fastq format as inputs and reports all SVs an sc:url "http://sourceforge.net/projects/apexqpt/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3293, @@ -92039,7 +78419,7 @@ Aperture takes paired-end reads in fastq format as inputs and reports all SVs an biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3293 ; @@ -92062,14 +78442,14 @@ Aperture takes paired-end reads in fastq format as inputs and reports all SVs an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -92086,7 +78466,7 @@ Aperture takes paired-end reads in fastq format as inputs and reports all SVs an biotools:primaryContact "BIPAA platform" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769 ; sc:citation ; @@ -92097,7 +78477,7 @@ Aperture takes paired-end reads in fastq format as inputs and reports all SVs an biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -92109,29 +78489,79 @@ Aperture takes paired-end reads in fastq format as inputs and reports all SVs an biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2764" ; + sc:encodingFormat "http://edamontology.org/format_1963" ; + sc:name "Protein name (UniProt)" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; - sc:applicationSubCategory edam:topic_0078, - edam:topic_0128, - edam:topic_0130, - edam:topic_0602, - edam:topic_3557 ; - sc:citation "pubmed:16845013" ; - sc:description "Agile Protein Interaction DataAnalyzer (APID) allows you to query protein-protein interactions using a common platform facilitating comparison across different datasets. Currently supported interaction databases are BIND, HPRD, DIP, IntAct, and MINT." ; - sc:featureList edam:operation_0224, - edam:operation_2464, - edam:operation_2492, - edam:operation_2949 ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0602 ; + sc:author ; + sc:citation , + , + "pmcid:PMC4987915", + "pmcid:PMC6354026", + "pubmed:27131791", + "pubmed:30715274" ; + sc:description """APID Interactomes provides a comprehensive collection of protein interactomes for more than 500 organisms based on the integration of known experimentally validated protein-protein physical interactions (PPIs). Construction of the interactomes is done with a methodological approach to report quality levels and coverage over the proteomes for each organism included. +APID unifies PPIs from primary databases of molecular interactions (BIND, BioGRID, DIP, HPRD, IntAct, MINT) and from experimentally resolved 3D structures (PDB) where more than two distinct proteins have been identified. APID also includes a data visualization web-tool that allows the construction of sub-interactomes using query lists of proteins of interest and the visual exploration of the corresponding networks, including an interactive selection of the properties of the interactions reliability of the "edges") and a mapping of the functional environment of the proteins (functional annotations of the "nodes").""" ; + sc:featureList edam:operation_0276, + edam:operation_3094, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-4.0" ; sc:name "APID" ; sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:softwareHelp ; - sc:url "http://bioinfow.dep.usal.es/apid/" ; - biotools:primaryContact "De Las Rivas J." . + sc:provider ; + sc:softwareHelp ; + sc:url "http://apid.dep.usal.es" ; + biotools:primaryContact , + . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2764" ; + sc:encodingFormat "http://edamontology.org/format_1963" ; + sc:name "Protein name (UniProt)" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0602 ; + sc:author ; + sc:citation , + , + "pmcid:PMC4987915", + "pmcid:PMC6354026", + "pubmed:27131791", + "pubmed:30715274" ; + sc:description """APID Interactomes provides a comprehensive collection of protein interactomes for more than 500 organisms based on the integration of known experimentally validated protein-protein physical interactions (PPIs). Construction of the interactomes is done with a methodological approach to report quality levels and coverage over the proteomes for each organism included. +APID unifies PPIs from primary databases of molecular interactions (BIND, BioGRID, DIP, HPRD, IntAct, MINT) and from experimentally resolved 3D structures (PDB) where more than two distinct proteins have been identified. APID also includes a data visualization web-tool that allows the construction of sub-interactomes using query lists of proteins of interest and the visual exploration of the corresponding networks, including an interactive selection of the properties of the interactions reliability of the "edges") and a mapping of the functional environment of the proteins (functional annotations of the "nodes").""" ; + sc:featureList edam:operation_0276, + edam:operation_3094, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-4.0" ; + sc:name "APID Interactomes" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:provider ; + sc:softwareHelp ; + sc:url "http://apid.dep.usal.es" ; + biotools:primaryContact , + . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_3474 ; @@ -92148,7 +78578,7 @@ BACKGROUND:Antibiotic resistance has become an increasingly serious problem in t sc:url "https://github.com/zhanglabNKU/APIN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_0080, @@ -92169,7 +78599,7 @@ BACKGROUND:Antibiotic resistance has become an increasingly serious problem in t sc:url "https://github.com/yiling0210/APIR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053, @@ -92185,7 +78615,7 @@ BACKGROUND:Antibiotic resistance has become an increasingly serious problem in t biotools:primaryContact "John P. Hussman Institute for Human Genomics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3170, @@ -92205,14 +78635,14 @@ There are two major routes of data analysis. The first, which we call unsupervis a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3714" ; + sc:name "Peptide mass fingerprint" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Peptide mass fingerprint" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -92223,32 +78653,19 @@ There are two major routes of data analysis. The first, which we call unsupervis sc:softwareHelp ; sc:url "http://www.wehi.edu.au/people/andrew-webb/1298/apl-mgf-converter" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0154, - edam:topic_3360, - edam:topic_3379, - edam:topic_3520 ; - sc:citation , - "pmcid:PMC6885709", - "pubmed:31591263" ; - sc:description """Absolute Quantification of Apolipoproteins Following Treatment with Omega-3 Carboxylic Acids and Fenofibrate Using a High Precision Stable Isotope-labeled Recombinant Protein Fragments Based SRM Assay. - -/Panorama Public/2019/KTH Uhlen Lab. - -KTH Uhlen Lab - APO-project (Effect1). - -Stable isotope-labeled standard (SIS) peptides are used as internal standards in targeted proteomics to provide robust protein quantification, which is required in clinical settings. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'apoAII', 'SIS PrESTs', 'SIS', 'PrESTs'""" ; - sc:featureList edam:operation_3435, - edam:operation_3454, - edam:operation_3799 ; - sc:name "apoCIV" ; - sc:url "https://panoramaweb.org/apo.url" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation "pubmed:26861916" ; + sc:description "ApoCanD: Database of Human Apoptotic Proteins in the context of cancer" ; + sc:featureList edam:operation_2945 ; + sc:name "apocand" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/apocand/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -92260,11 +78677,15 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in sc:description "APOD (Accurate Predictor Of Disordered flexible linkers) is an accurate sequence-based predictor of disordered flexible linkers. It utilizes both local- and protein-level inputs that quantify propensity for disorder, sequence composition, sequence conservation and selected putative structural properties." ; sc:featureList edam:operation_0267, edam:operation_3904 ; + sc:isAccessibleForFree true ; sc:name "APOD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; sc:url "https://yanglab.nankai.edu.cn/APOD/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -92282,7 +78703,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in sc:url "http://www.hpppi.iicb.res.in/APODHIN/home.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0219, @@ -92302,7 +78723,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in biotools:primaryContact "Apollo team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -92320,7 +78741,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in sc:url "https://github.com/CMU-SAFARI/Apollo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0820, @@ -92336,7 +78757,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in sc:url "http://tang-biolab.com/server/ApoPred/service.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -92352,7 +78773,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in biotools:primaryContact "Fulden Buyukozturk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -92376,7 +78797,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in biotools:primaryContact "Arthur Melo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3379, edam:topic_3416 ; @@ -92389,7 +78810,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in sc:url "http://www.appeco.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0203, @@ -92406,7 +78827,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in sc:url "http://www.appex.kr/appex/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0780, @@ -92423,7 +78844,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in biotools:primaryContact "Eran Tauber" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, edam:topic_3293 ; @@ -92438,7 +78859,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in sc:url "http://github.com/balabanmetin/apples" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -92456,7 +78877,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in sc:url "https://github.com/mhpuglia/APPLESEED" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -92479,18 +78900,16 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:provider "CNIO", - "INB", - "cnio.es" ; + sc:provider "BU_CNIO", + "CNIO", + "INB" ; sc:softwareHelp , ; sc:softwareVersion "202011_v37" ; - sc:url "http://appris-tools.org" ; - biotools:primaryContact "Jose Rodriguez", - "Michael Tress" . + sc:url "http://appris-tools.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099, @@ -92509,7 +78928,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in biotools:primaryContact "Thomas Harrison" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -92526,7 +78945,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in biotools:primaryContact "Nathaniel Barlow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0176 ; @@ -92542,7 +78961,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workbench" ; sc:applicationSubCategory edam:topic_0769, @@ -92564,7 +78983,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in sc:url "https://appyters.maayanlab.cloud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, edam:topic_3474 ; @@ -92578,7 +78997,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in sc:url "https://github.com/ChunhuaLiLab/aPRbind" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0128, @@ -92593,7 +79012,7 @@ Stable isotope-labeled standard (SIS) peptides are used as internal standards in biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3070, @@ -92612,8 +79031,27 @@ Scientific publications are meant to exchange knowledge among researchers but th sc:name "APRICOT" ; sc:url "https://github.com/grycap/apricot" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0632, + edam:topic_0769, + edam:topic_3050 ; + sc:citation , + "pubmed:36029248" ; + sc:description "Apscale is a metabarcoding pipeline that handles the most common tasks in metabarcoding pipelines like paired-end merging, primer trimming, quality filtering, otu clustering and denoising as well as an otu filtering step." ; + sc:featureList edam:operation_0232, + edam:operation_3192 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "APSCALE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/DominikBuchner/apscale" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068 ; sc:citation ; @@ -92628,8 +79066,18 @@ Scientific publications are meant to exchange knowledge among researchers but th sc:url "http://pubmed.ict.griffith.edu.au/" ; biotools:primaryContact "Australia" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "This server allow to predict the secondary structure of protein's from their amino acid sequence" ; + sc:featureList edam:operation_2945 ; + sc:name "apssp" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/apssp/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_3542 ; @@ -92640,18 +79088,18 @@ Scientific publications are meant to exchange knowledge among researchers but th edam:operation_2479, edam:operation_2488 ; sc:name "APSSP2" ; - sc:url "http://www.imtech.res.in/raghava/apssp2/" . + sc:url "https://webs.iiitd.edu.in/raghava/apssp2/" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_1317, @@ -92667,7 +79115,7 @@ Scientific publications are meant to exchange knowledge among researchers but th biotools:primaryContact "Howard Y Chang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3374 ; @@ -92679,7 +79127,7 @@ Scientific publications are meant to exchange knowledge among researchers but th sc:url "https://github.com/wyjhxq/AptaBlocks" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071, @@ -92695,7 +79143,7 @@ Scientific publications are meant to exchange knowledge among researchers but th sc:url "https://www.ncbi.nlm.nih.gov/CBBresearch/Przytycka/index.cgi#aptatools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_3511 ; @@ -92710,7 +79158,7 @@ Scientific publications are meant to exchange knowledge among researchers but th biotools:primaryContact "Silvio Bicciato" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -92732,7 +79180,7 @@ Scientific publications are meant to exchange knowledge among researchers but th biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0160, @@ -92746,7 +79194,7 @@ Scientific publications are meant to exchange knowledge among researchers but th sc:url "https://bitbucket.org/shiehk/aptcompare" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3393 ; @@ -92761,14 +79209,13 @@ Scientific publications are meant to exchange knowledge among researchers but th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3307 ; sc:description "The AQMM was developed to perform absolute quantification of multiple metagenomes and it's parallel metatranscriptome. In order to use this algorithm, the experiment should be designed with both metagenome and metatranscriptome data. From the initial stage, the molecular experimental data should be recorded to help on estimating the overall DNA or RNA of a unit (ml/gram) of the sample. The AQMM was demonstrated to obtain better results of differential expression genes identification in comparative metatranscriptomic studies." ; @@ -92782,7 +79229,7 @@ Scientific publications are meant to exchange knowledge among researchers but th sc:url "https://github.com/biofuture/aqmm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0593, edam:topic_2814 ; @@ -92795,7 +79242,7 @@ Scientific publications are meant to exchange knowledge among researchers but th sc:url "https://code.google.com/archive/p/aquad/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -92815,7 +79262,7 @@ Induced chromatin interactions anchored with protein contacts will be readily di sc:url "https://github.com/GryderArt/AQuA-HiChIP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0089, @@ -92837,24 +79284,41 @@ Induced chromatin interactions anchored with protein contacts will be readily di sc:softwareHelp ; sc:url "https://github.com/SPARC-FAIR-Codeathon/aqua" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Script" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0749, + edam:topic_3500, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC9342733", + "pubmed:35913974" ; + sc:description "A tool to assist aquaculture production design based on abiotic requirements of animal species." ; + sc:featureList edam:operation_3960 ; + sc:license "Not licensed" ; + sc:name "AquaDesign" ; + sc:url "https://github.com/GregoireButruille/AquaDesign" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1096" ; - sc:name "Sequence accession (protein)" ; - sc:sameAs "http://edamontology.org/data_1096" ], + sc:additionalType "http://edamontology.org/data_1869" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Organism identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1869" ; - sc:name "Organism identifier" ; - sc:sameAs "http://edamontology.org/data_1869" ], + sc:additionalType "http://edamontology.org/data_1063" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1063" ; - sc:name "Sequence identifier" ; - sc:sameAs "http://edamontology.org/data_1063" ] ; + sc:additionalType "http://edamontology.org/data_1096" ; + sc:encodingFormat "http://edamontology.org/format_1963" ; + sc:name "Sequence accession (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0893" ; - sc:name "Sequence-structure alignment" ; - sc:sameAs "http://edamontology.org/data_0893" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0893" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Sequence-structure alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -92901,7 +79365,7 @@ Induced chromatin interactions anchored with protein contacts will be readily di "Seán O'Donoghue" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3068, @@ -92922,7 +79386,7 @@ Induced chromatin interactions anchored with protein contacts will be readily di sc:url "https://www.aquarium.bio/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3050, edam:topic_3500 ; @@ -92944,7 +79408,7 @@ Read more about the global trade of clownfish by RET TALBOT""" ; sc:url "https://www.aquariumtradedata.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2828 ; @@ -92960,7 +79424,7 @@ Read more about the global trade of clownfish by RET TALBOT""" ; biotools:primaryContact "Poitevin F." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3384 ; @@ -92972,7 +79436,7 @@ Read more about the global trade of clownfish by RET TALBOT""" ; sc:url "https://github.com/shennanw/AR2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -92990,11 +79454,11 @@ Read more about the global trade of clownfish by RET TALBOT""" ; "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/ar_nhpred" ; + sc:url "https://webs.iiitd.edu.in/raghava/ar_nhpred" ; biotools:primaryContact "Dr. G. P. S. Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3277, edam:topic_3518 ; @@ -93010,14 +79474,12 @@ Read more about the global trade of clownfish by RET TALBOT""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0780 ; @@ -93033,7 +79495,7 @@ Read more about the global trade of clownfish by RET TALBOT""" ; sc:url "http://bioinformatics.psb.ugent.be/supplementary_data/ehsab/gene_prioritization/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -93051,14 +79513,14 @@ Read more about the global trade of clownfish by RET TALBOT""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3626" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2013" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -93079,7 +79541,7 @@ Read more about the global trade of clownfish by RET TALBOT""" ; biotools:primaryContact "Leonid Savtchenko" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0089, @@ -93100,7 +79562,7 @@ Read more about the global trade of clownfish by RET TALBOT""" ; biotools:primaryContact "ArachnoServer Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -93118,18 +79580,17 @@ Read more about the global trade of clownfish by RET TALBOT""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0625, @@ -93158,16 +79619,48 @@ Read more about the global trade of clownfish by RET TALBOT""" ; "1.3.1" ; sc:url "https://github.com/Gregor-Mendel-Institute/aradeepopsis" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_0659 ; + sc:citation , + "pmcid:PMC373265", + "pubmed:14704338" ; + sc:description "ARAGORN detects tRNA, mtRNA info about tmRNA, and tmRNA genes" ; + sc:featureList edam:operation_2454 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "aragorn" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.ansikte.se/ARAGORN/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0769, + edam:topic_3050 ; + sc:citation ; + sc:description "arakno is an R package for effective spider nomenclature, distribution and trait data retrieval from online resources. Online open databases are increasing in number, usefulness, and ease of use. There are currently two main global databases exclusive for spiders, the World Spider Catalogue (WSC) and the World Spider Trait (WST) database. Both are regularly used by thousands of researchers. Computational tools that allow effective processing of large data are now part of the workflow of any researcher and R is becoming a de facto standard for data manipulation, analysis, and presentation. Here we present an R package, arakno , that allows interface with the two databases. Implemented tools include checking species names against nomenclature of the WSC, obtaining and mapping data on distribution of species from both WST and the Global Biodiversity Information Facility (GBIF), and downloading trait data from the WST." ; + sc:featureList edam:operation_2422 ; + sc:license "GPL-3.0" ; + sc:name "arakno" ; + sc:softwareHelp ; + sc:url "https://CRAN.R-project.org/package=arakno" ; + biotools:primaryContact . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1895" ; - sc:name "Locus ID (AGI)" ; - sc:sameAs "http://edamontology.org/data_1895" ] ; + sc:additionalType "http://edamontology.org/data_1895" ; + sc:name "Locus ID (AGI)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0780, edam:topic_0820 ; @@ -93186,7 +79679,7 @@ Read more about the global trade of clownfish by RET TALBOT""" ; biotools:primaryContact "Rainer Schwacke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0196, @@ -93204,7 +79697,7 @@ Read more about the global trade of clownfish by RET TALBOT""" ; biotools:primaryContact "B Aguado" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -93228,7 +79721,7 @@ Read more about the global trade of clownfish by RET TALBOT""" ; sc:url "https://arapheno.1001genomes.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; sc:applicationSubCategory edam:topic_0622, @@ -93247,7 +79740,7 @@ Read more about the global trade of clownfish by RET TALBOT""" ; sc:url "https://www.araport.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3360, @@ -93266,10 +79759,10 @@ It allows easy access to the data of all published Arabidopsis thaliana genetica a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084 ; @@ -93303,8 +79796,23 @@ It allows easy access to the data of all published Arabidopsis thaliana genetica sc:url "http://arb-home.de" ; biotools:primaryContact "ARB Users Mailing List" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_3170, + edam:topic_3518 ; + sc:citation ; + sc:description "ARBic is an All-Round Biclustering Algorithm for Analyzing Gene Expression Data. Identifying significant biclusters of genes with specific expression patterns is an effective approach to reveal functionally correlated genes in gene expression data. However, existing algorithms are limited to finding either broad or narrow biclusters but both due to failure of balancing between effectiveness and efficiency. ARBic can accurately identify any meaningful biclusters of shape no matter broad or narrow in a large scale gene expression data matrix, even when the values in the biclusters to be identified have the same distribution as that the background data has. ARBic is developed by integrating column-based and row-based strategies into biclustering procedure. The column-based strategy borrowed from ReBic, a recently published biclustering tool, prefers to narrow bicluters." ; + sc:featureList edam:operation_3463, + edam:operation_3501 ; + sc:license "MIT" ; + sc:name "ARBic" ; + sc:url "https://github.com/holyzews/ARBic" ; + biotools:primaryContact "Guojun Li" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -93320,7 +79828,7 @@ It allows easy access to the data of all published Arabidopsis thaliana genetica sc:url "https://github.com/markhilt/ARBitR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -93337,7 +79845,7 @@ It allows easy access to the data of all published Arabidopsis thaliana genetica biotools:primaryContact "Jonathan P. Zehr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_3170 ; @@ -93356,7 +79864,7 @@ Free document hosting provided by Read the Docs.""" ; sc:url "http://arboreto.readthedocs.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3053, @@ -93371,7 +79879,7 @@ Free document hosting provided by Read the Docs.""" ; sc:url "http://pages.discovery.wisc.edu/~sroy/arboretum/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:description "ARC is a pipeline which facilitates iterative, reference guided de novo assemblies." ; @@ -93385,7 +79893,7 @@ Free document hosting provided by Read the Docs.""" ; sc:url "http://ibest.github.io/ARC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0607, edam:topic_3068, @@ -93402,7 +79910,7 @@ Free document hosting provided by Read the Docs.""" ; sc:url "http://arc.epfl.ch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -93419,18 +79927,18 @@ Free document hosting provided by Read the Docs.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1775 ; sc:citation , @@ -93452,7 +79960,7 @@ Free document hosting provided by Read the Docs.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -93472,7 +79980,7 @@ Free document hosting provided by Read the Docs.""" ; biotools:primaryContact "Tan Jie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3510 ; @@ -93489,7 +79997,7 @@ Free document hosting provided by Read the Docs.""" ; biotools:primaryContact "Andrey V. Kajava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0166 ; sc:author ; @@ -93507,7 +80015,7 @@ Free document hosting provided by Read the Docs.""" ; sc:url "http://sbi.imim.es/archdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0780 ; @@ -93524,7 +80032,7 @@ Free document hosting provided by Read the Docs.""" ; sc:url "https://archidart.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0121, @@ -93540,8 +80048,27 @@ Free document hosting provided by Read the Docs.""" ; sc:url "http://mouse.belozersky.msu.ru/~evgeniy/cgi-bin/proton/proton.php?subproj=archip" ; biotools:primaryContact "Evgeniy Aksianov" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0602, + edam:topic_0621, + edam:topic_0821, + edam:topic_3407 ; + sc:citation ; + sc:description "Architect is a tool for producing high-quality metabolic models through improved enzyme annotation. Architect is a pipeline for automatic metabolic model reconstruction. Given the protein sequences of an organism, enzyme annotation is first performed through ensemble approaches (that is, combining predictions from individual enzyme annotation tools), followed by gap-filling." ; + sc:featureList edam:operation_3092, + edam:operation_3660, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Architect" ; + sc:url "https://github.com/ParkinsonLab/Architect" ; + biotools:primaryContact "John Parkinson" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0166, @@ -93557,7 +80084,7 @@ Free document hosting provided by Read the Docs.""" ; sc:url "http://bioinf.uab.es/cgi-bin/archki/loops.pl?class=all&set=ArchKI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -93579,7 +80106,7 @@ Free document hosting provided by Read the Docs.""" ; biotools:primaryContact "biosilico Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -93597,7 +80124,7 @@ Free document hosting provided by Read the Docs.""" ; sc:url "http://www.ArchRProject.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -93610,8 +80137,22 @@ Free document hosting provided by Read the Docs.""" ; sc:softwareVersion "1.1" ; sc:url "http://www.ebi.ac.uk/Tools/archschema/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0622 ; + sc:citation ; + sc:description "Scaffolding genome assemblies using 10X Genomics Chromium data or stLFR linked reads" ; + sc:featureList edam:operation_0525, + edam:operation_3216 ; + sc:license "GPL-3.0" ; + sc:name "ARCS" ; + sc:softwareVersion "1.2.4" ; + sc:url "https://github.com/bcgsc/ARCS/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -93627,7 +80168,7 @@ Free document hosting provided by Read the Docs.""" ; sc:url "http://genomics.senescence.info/software/perl.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -93642,14 +80183,13 @@ Free document hosting provided by Read the Docs.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0166, @@ -93674,8 +80214,22 @@ Free document hosting provided by Read the Docs.""" ; sc:url "http://ardock.ibcp.fr" ; biotools:primaryContact "Guillaume Launay" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0769, + edam:topic_3305 ; + sc:citation ; + sc:description "AREAdata is a worldwide climate dataset averaged across spatial units at different scales through time. It is a PearseLab data resource where you can download daily estimates of climate/environmental data which have been averaged across different levels of spatial units. Additionally, we include data on population density and estimates from future climate forecasting models at the same spatial levels." ; + sc:featureList edam:operation_2428 ; + sc:license "GPL-3.0" ; + sc:name "AREAdata" ; + sc:url "https://pearselab.github.io/areadata/" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169 ; sc:citation "pubmed:22035330" ; @@ -93689,7 +80243,7 @@ Free document hosting provided by Read the Docs.""" ; biotools:primaryContact "Xiaohui Xie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602 ; @@ -93704,7 +80258,7 @@ Free document hosting provided by Read the Docs.""" ; sc:url "https://arena3d.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:33885790" ; sc:description "Arena3Dweb is the first, fully interactive and dependency-free, web application which allows the visualization of multi-layered graphs in 3D space. With Arena3Dweb, users can integrate multiple networks in a single view along with their intra- and inter-layer connections. For clearer and more informative views, users can choose between a plethora of layout algorithms and apply them on a set of selected layers either individually or in combination. Users can align networks and highlight node topological features, whereas each layer as well as the whole scene can be translated, rotated and scaled in 3D space. User-selected edge colors can be used to highlight important paths, while node positioning, coloring and resizing can be adjusted on-the-fly. In its current version, Arena3Dweb supports weighted and unweighted undirected graphs, is written in R, Shiny and Javascript." ; @@ -93713,7 +80267,7 @@ Free document hosting provided by Read the Docs.""" ; sc:url "http://bib.fleming.gr:3838/Arena3D/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0196, @@ -93732,10 +80286,10 @@ Free document hosting provided by Read the Docs.""" ; a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1274" ; - sc:name "Map" ; - sc:sameAs "http://edamontology.org/data_1274" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1274" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128 ; sc:citation ; @@ -93757,7 +80311,7 @@ Free document hosting provided by Read the Docs.""" ; biotools:primaryContact "Jörg Fallmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3068, @@ -93775,7 +80329,7 @@ An R package also contains analysis scripts for eye tracking data acquired using biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "arf is a genetic analysis program for sequencing data." ; @@ -93788,7 +80342,7 @@ An R package also contains analysis scripts for eye tracking data acquired using biotools:primaryContact "Arf Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, edam:topic_3168, @@ -93805,8 +80359,24 @@ An R package also contains analysis scripts for eye tracking data acquired using sc:name "ARG-SHINE" ; sc:url "https://github.com/ziyewang/ARG_SHINE" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3170, + edam:topic_3308, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC8533512", + "pubmed:34681124" ; + sc:description "ARGEOS is a bioinformatic tool for detailed systematics search in GEO and ArrayExpress. ARGEOS will allow you to carry out a systematic search for transcriptomes, collecting all the unique datasets from the most popular databases. With the web tool, you can conveniently select publicly available datasets for data reanalysis! All you need is to compose a query that will be searched. ARGEOS will let you carry out a systematic search for transcriptomes, methylation data, CHIP-seq experiments, and many others. Handy output format minimizes the need for additional information." ; + sc:featureList edam:operation_2421 ; + sc:name "ARGEOS" ; + sc:url "http://www.ar-geos.org" ; + biotools:primaryContact "Dmitry V. Chistyakov" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0154, @@ -93823,7 +80393,7 @@ An R package also contains analysis scripts for eye tracking data acquired using sc:url "https://bench.cs.vt.edu/argminer/#/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -93845,7 +80415,7 @@ An R package also contains analysis scripts for eye tracking data acquired using biotools:primaryContact "Nikolay A. Kolchanov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -93864,7 +80434,7 @@ An R package also contains analysis scripts for eye tracking data acquired using sc:url "https://hub.docker.com/r/coonlabs/argonaut" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -93888,7 +80458,7 @@ An R package also contains analysis scripts for eye tracking data acquired using biotools:primaryContact "Argonne Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -93909,7 +80479,7 @@ An R package also contains analysis scripts for eye tracking data acquired using biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3174, @@ -93927,7 +80497,7 @@ An R package also contains analysis scripts for eye tracking data acquired using sc:url "http://args-osp.herokuapp.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3524 ; @@ -93946,7 +80516,7 @@ An R package also contains analysis scripts for eye tracking data acquired using sc:url "http://github.com/jimmink/argslab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2275 ; @@ -93960,7 +80530,7 @@ An R package also contains analysis scripts for eye tracking data acquired using sc:url "http://www.arguslab.com/arguslab.com/ArgusLab.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -93979,14 +80549,13 @@ An R package also contains analysis scripts for eye tracking data acquired using a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3488" ; - sc:name "NMR spectrum" ; - sc:sameAs "http://edamontology.org/data_3488" ] ; + sc:additionalType "http://edamontology.org/data_3488" ; + sc:name "NMR spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1743" ; - sc:name "Atomic coordinate" ; - sc:sameAs "http://edamontology.org/data_1743" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1743" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Atomic coordinate" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -94017,7 +80586,7 @@ An R package also contains analysis scripts for eye tracking data acquired using biotools:primaryContact "Michael Nilges" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -94039,7 +80608,7 @@ An R package also contains analysis scripts for eye tracking data acquired using biotools:primaryContact "Sara Nasso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -94059,18 +80628,16 @@ An R package also contains analysis scripts for eye tracking data acquired using a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3488" ; - sc:name "NMR spectrum" ; - sc:sameAs "http://edamontology.org/data_3488" ] ; + sc:additionalType "http://edamontology.org/data_3488" ; + sc:name "NMR spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1539" ; - sc:name "Protein structural quality report" ; - sc:sameAs "http://edamontology.org/data_1539" ], + sc:additionalType "http://edamontology.org/data_1539" ; + sc:name "Protein structural quality report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1743" ; - sc:name "Atomic coordinate" ; - sc:sameAs "http://edamontology.org/data_1743" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1743" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Atomic coordinate" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -94100,7 +80667,7 @@ An R package also contains analysis scripts for eye tracking data acquired using biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3174, @@ -94117,7 +80684,7 @@ An R package also contains analysis scripts for eye tracking data acquired using sc:url "https://aries.iss.it" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -94137,7 +80704,7 @@ An R package also contains analysis scripts for eye tracking data acquired using biotools:primaryContact "Wudi Wei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -94155,7 +80722,7 @@ An R package also contains analysis scripts for eye tracking data acquired using sc:url "https://github.com/RWilton/Arioc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3360, @@ -94177,7 +80744,7 @@ An R package also contains analysis scripts for eye tracking data acquired using biotools:primaryContact "Matthew Lea" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0154, @@ -94190,8 +80757,25 @@ An R package also contains analysis scripts for eye tracking data acquired using sc:name "ARISTO" ; sc:url "http://www.ionspectra.org/aristo" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0622, + edam:topic_3172, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC8760642", + "pubmed:35033007" ; + sc:description "Aristotle addresses the two challenges intrinsic to omics data: high dimensionality and hidden stratification. It employs existing biological knowledge and a state-of-the-art patient stratification method to tackle the above challenges and applies a quasi-experimental design method to each stratum to find stratum-specific potential causes." ; + sc:featureList edam:operation_0337, + edam:operation_0484, + edam:operation_3661 ; + sc:name "Aristotle" ; + sc:url "https://github.com/MehrdadMansouri/Aristotle" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -94207,7 +80791,7 @@ An R package also contains analysis scripts for eye tracking data acquired using sc:url "http://www.bioinformatics.roslin.ed.ac.uk/arkmap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168 ; @@ -94226,7 +80810,7 @@ An R package also contains analysis scripts for eye tracking data acquired using biotools:primaryContact "René L. Warren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3056 ; @@ -94243,7 +80827,7 @@ An R package also contains analysis scripts for eye tracking data acquired using sc:url "http://cmpg.unibe.ch/software/arlequin35/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3314, @@ -94261,7 +80845,7 @@ An R package also contains analysis scripts for eye tracking data acquired using biotools:primaryContact "Mohammed Sadeq Al-Rawi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -94284,8 +80868,27 @@ An R package also contains analysis scripts for eye tracking data acquired using "Windows" ; sc:url "https://github.com/Dulab2020/ARMT" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Script" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0199, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC9375295", + "pubmed:35964008" ; + sc:description "An evolutionary algorithm for inverse pseudoknotted RNA folding inspired by Lévy flights." ; + sc:featureList edam:operation_0278, + edam:operation_0483, + edam:operation_0570 ; + sc:license "GPL-3.0" ; + sc:name "aRNAque" ; + sc:operatingSystem "Mac" ; + sc:url "https://github.com/strevol-mpi-mis/aRNAque" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0209, @@ -94303,7 +80906,7 @@ An R package also contains analysis scripts for eye tracking data acquired using sc:url "https://github.com/hewg2008/AromTool" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, @@ -94323,7 +80926,7 @@ An R package also contains analysis scripts for eye tracking data acquired using sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=34117635" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0092, @@ -94346,7 +80949,7 @@ An R package also contains analysis scripts for eye tracking data acquired using sc:url "http://www.embl-hamburg.de/ARP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -94365,7 +80968,7 @@ An R package also contains analysis scripts for eye tracking data acquired using biotools:primaryContact "Jubb HC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -94386,7 +80989,7 @@ This folder provides the ARPEGGIO config file and the metadata file used to run sc:url "https://github.com/supermaxiste/ARPEGGIO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -94404,7 +81007,7 @@ This folder provides the ARPEGGIO config file and the metadata file used to run sc:url "https://github.com/supermaxiste/ARPEGGIO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0089, @@ -94426,7 +81029,7 @@ This folder provides the ARPEGGIO config file and the metadata file used to run sc:url "https://github.com/giuliospinozzi/arpir" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622 ; @@ -94439,7 +81042,7 @@ This folder provides the ARPEGGIO config file and the metadata file used to run sc:url "http://compbio.med.wayne.edu/software/primerDesign/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -94454,7 +81057,7 @@ This folder provides the ARPEGGIO config file and the metadata file used to run biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3277 ; @@ -94469,7 +81072,7 @@ This folder provides the ARPEGGIO config file and the metadata file used to run sc:url "http://www.ism.ac.jp/~higuchi/arraycluster.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0203 ; @@ -94489,7 +81092,7 @@ This folder provides the ARPEGGIO config file and the metadata file used to run biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -94511,7 +81114,7 @@ This folder provides the ARPEGGIO config file and the metadata file used to run "Angela Goncalves" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -94527,7 +81130,7 @@ This folder provides the ARPEGGIO config file and the metadata file used to run sc:url "https://github.com/adam-sam-brown/aRrayLasso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -94545,7 +81148,7 @@ This folder provides the ARPEGGIO config file and the metadata file used to run sc:url "https://github.com/cw2014/ArrayMaker/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2259, @@ -94566,7 +81169,7 @@ The arrayMap resource represents the part of the Progenetix project for which di biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203 ; sc:description "ArrayMiner® is a set of analysis tools using advanced algorithms to reveal the true structure of your gene expression data. Its unique graphical interface gives you an intimate understanding of the analysis and an easy publishing of its results." ; @@ -94580,7 +81183,7 @@ The arrayMap resource represents the part of the Progenetix project for which di sc:url "http://www.optimaldesign.com/ArrayMiner/ArrayMiner.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0654, @@ -94602,7 +81205,7 @@ The arrayMap resource represents the part of the Progenetix project for which di biotools:primaryContact "V. Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, @@ -94624,7 +81227,7 @@ The arrayMap resource represents the part of the Progenetix project for which di biotools:primaryContact "Karsten Hokamp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0623, @@ -94640,7 +81243,7 @@ The arrayMap resource represents the part of the Progenetix project for which di sc:url "http://string32.embl-heidelberg.de:8080/prophecies_html/prophecies.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518, @@ -94659,7 +81262,7 @@ The arrayMap resource represents the part of the Progenetix project for which di biotools:primaryContact "Agnes Paquet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518, @@ -94679,7 +81282,7 @@ The arrayMap resource represents the part of the Progenetix project for which di biotools:primaryContact "Audrey Kauffmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0199, @@ -94702,14 +81305,14 @@ The arrayMap resource represents the part of the Progenetix project for which di a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -94728,7 +81331,7 @@ The arrayMap resource represents the part of the Progenetix project for which di biotools:primaryContact "Arthur Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0208, @@ -94748,7 +81351,7 @@ The arrayMap resource represents the part of the Progenetix project for which di biotools:primaryContact "Weida Tong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -94768,7 +81371,7 @@ The arrayMap resource represents the part of the Progenetix project for which di biotools:primaryContact "Eitan Halper-Stromberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3518 ; @@ -94787,7 +81390,7 @@ The arrayMap resource represents the part of the Progenetix project for which di biotools:primaryContact "Ju Han Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0804, @@ -94804,7 +81407,7 @@ The arrayMap resource represents the part of the Progenetix project for which di sc:url "http://tools.bat.infspire.org/arrest/assignsubsets/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0160, @@ -94824,7 +81427,7 @@ The arrayMap resource represents the part of the Progenetix project for which di biotools:primaryContact "Jean-Philippe Fortin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3307 ; @@ -94838,7 +81441,7 @@ The arrayMap resource represents the part of the Progenetix project for which di sc:url "https://www.ncbi.nlm.nih.gov/CBBresearch/Spouge/html_ncbi/html/software/program.html?uid=3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2275, @@ -94855,7 +81458,7 @@ The arrayMap resource represents the part of the Progenetix project for which di sc:url "http://www-sidechain.ch.cam.ac.uk/ArShift/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091 ; sc:citation ; sc:description "ART is a set of simulation tools to generate synthetic next-generation sequencing reads. ART simulates sequencing reads by mimicking real sequencing process with empirical error models or quality profiles summarized from large recalibrated sequencing data. ART can also simulate reads using user own read error model or quality profiles. ART supports simulation of single-end, paired-end/mate-pair reads of three major commercial next-generation sequencing platforms. Illuminas Solexa, Roches 454 and Applied Biosystems SOLiD" ; @@ -94869,7 +81472,7 @@ The arrayMap resource represents the part of the Progenetix project for which di sc:url "https://www.niehs.nih.gov/research/resources/software/biostatistics/art/index.cfm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3421 ; @@ -94883,7 +81486,7 @@ The arrayMap resource represents the part of the Progenetix project for which di sc:url "https://github.com/kamruleee51/ART-Net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0749, @@ -94905,10 +81508,19 @@ The arrayMap resource represents the part of the Progenetix project for which di sc:url "https://github.com/sjroth/ARTDeco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092 ; - sc:citation ; + sc:citation , + , + , + , + "pmcid:PMC2606163", + "pmcid:PMC3278759", + "pubmed:11120685", + "pubmed:12846394", + "pubmed:18845581", + "pubmed:22199388" ; sc:description "Free genome browser and annotation tool that allows visualisation of sequence features, next generation data and the results of analyses within the context of the sequence, and also its six-frame translation." ; sc:featureList edam:operation_3208 ; sc:name "Artemis" ; @@ -94920,29 +81532,29 @@ The arrayMap resource represents the part of the Progenetix project for which di biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "The Arthropoda Assembly Assessment Catalogue is a database of metadata and assembly quality metrics for all Arthropod assemblies on the NCBI" ; sc:name "Arthropoda Assembly Assessment Catalogue" ; sc:url "https://evofunvm.dcsr.unil.ch/" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:author , @@ -94957,8 +81569,26 @@ The arrayMap resource represents the part of the Progenetix project for which di sc:softwareVersion "1.1.0-rc2" ; sc:url "https://github.com/artic-network/fieldbioinformatics" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Suite" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0769, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9202890", + "pubmed:35709137" ; + sc:description "Artifact3-D offers a suite of functions for analysing 3D scans of archaeological artifacts. These functions are repeatable, objective, precise, and customizable." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Artifact3-D" ; + sc:operatingSystem "Windows" ; + sc:url "https://sourceforge.net/projects/artifact3-d/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3299, @@ -94975,7 +81605,7 @@ The arrayMap resource represents the part of the Progenetix project for which di biotools:primaryContact "Seyed Muhammad Hossein Mousavi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3315, @@ -94989,7 +81619,7 @@ The arrayMap resource represents the part of the Progenetix project for which di sc:url "https://artistoo.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:23145042" ; @@ -95003,7 +81633,7 @@ The arrayMap resource represents the part of the Progenetix project for which di sc:url "http://bioinfo.cs.technion.ac.il/people/zohar/ARTO/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_2885, @@ -95024,7 +81654,7 @@ The arrayMap resource represents the part of the Progenetix project for which di "Kai Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -95044,8 +81674,28 @@ The arrayMap resource represents the part of the Progenetix project for which di sc:url "http://bioinfo3d.cs.tau.ac.il/ARTS/" ; biotools:primaryContact "ARTS team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_3168, + edam:topic_3174, + edam:topic_3293, + edam:topic_3336 ; + sc:citation , + "pmcid:PMC8728217", + "pubmed:34718689" ; + sc:description "ARTS-DB is an online repository of precomputed results of Antibiotic Resistant Target Seeker (ARTS), a rapid genome mining tool for the exploration of antibiotics with interesting and novel targets. ARTS-DB supports two main searching functionalities." ; + sc:featureList edam:operation_0310, + edam:operation_2421, + edam:operation_3482 ; + sc:name "ARTS-DB" ; + sc:softwareHelp ; + sc:url "https://arts-db.ziemertlab.com/" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0780 ; @@ -95064,7 +81714,7 @@ The arrayMap resource represents the part of the Progenetix project for which di sc:url "https://arts.ziemertlab.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3360, @@ -95084,8 +81734,26 @@ The arrayMap resource represents the part of the Progenetix project for which di "Mac" ; sc:url "https://www.nitrc.org/projects/arts/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0781, + edam:topic_2830, + edam:topic_3948, + edam:topic_3966 ; + sc:author "ICMR-National Institute of Virology" ; + sc:citation ; + sc:description "ArVirInd is a knowledge-base of Arbo-Viral proteins from India and its neighbourhood. his is a annotated database, which acts as a repository of Protein sequences for arbo-viruses along with antigenic information. Users can search for protein sequences by virus / protein name or by country of origin (India and countries of the Indian subcontinent: Nepal, Bhutan, Bangladesh, SriLanka, Pakistan) and year of collection (that is, the year of outbreak which defines the origin of the strain)." ; + sc:featureList edam:operation_0252, + edam:operation_0416, + edam:operation_2421 ; + sc:isAccessibleForFree true ; + sc:name "ArVirInd" ; + sc:url "http://www.arvirind.co.in" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_3063, @@ -95109,7 +81777,7 @@ ARX is able to handle large datasets on commodity hardware and it features an in sc:url "https://arx.deidentifier.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -95127,7 +81795,7 @@ ARX is able to handle large datasets on commodity hardware and it features an in biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0082, @@ -95153,7 +81821,7 @@ ARX is able to handle large datasets on commodity hardware and it features an in biotools:primaryContact "Adam Zemla" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3056, @@ -95171,7 +81839,7 @@ ARX is able to handle large datasets on commodity hardware and it features an in biotools:primaryContact "Qian Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3168, @@ -95191,10 +81859,10 @@ ARX is able to handle large datasets on commodity hardware and it features an in a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Web application" ; @@ -95214,7 +81882,7 @@ ARX is able to handle large datasets on commodity hardware and it features an in biotools:primaryContact "Troels T. Marstrand" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0196, @@ -95236,7 +81904,7 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses sc:url "https://bioinfo.mnhn.fr/abi/public/asap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0634, @@ -95255,7 +81923,7 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses sc:url "https://github.com/HassounLab/ASAP-SML" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0099, @@ -95274,18 +81942,18 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3747" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3747" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -95307,7 +81975,7 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses sc:url "http://tools.proteomecenter.org/ASAPRatio.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation ; @@ -95323,14 +81991,12 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2523" ; - sc:name "Phylogenetic data" ; - sc:sameAs "http://edamontology.org/data_2523" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2523" ; + sc:name "Phylogenetic data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation , @@ -95347,7 +82013,7 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses sc:url "http://bioinformatics.psb.ugent.be/software/details/ASaturA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -95371,7 +82037,7 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses "Zhijin Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3170, @@ -95387,7 +82053,7 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses sc:url "https://github.com/KirstLab/asc_seurat/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -95408,7 +82074,7 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses sc:url "http://shtest.evrogen.net/AScall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -95426,10 +82092,10 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3110" ; - sc:name "Raw microarray data" ; - sc:sameAs "http://edamontology.org/data_3110" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3110" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Raw microarray data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2640, @@ -95449,10 +82115,10 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170 ; @@ -95472,21 +82138,8 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses ; sc:url "https://github.com/IMB-Computational-Genomics-Lab/ascend" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_3170 ; - sc:citation , - "pmcid:PMC6735844", - "pubmed:31505654" ; - sc:description "> MEDIUM CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/ascend | > CORRECT NAME OF TOOL COULD ALSO BE 'FINDINGS:ascend', 'CONCLUSIONS:ascend' | R package for analysis of single-cell RNA-seq data | Analysis of Single Cell Expression, Normalization and Differential expression | ascend (Analysis of Single Cell Expression, Normalisation and Differential expression) is a user-friendly scRNA-seq analysis toolkit implemented in R. Using pre-existing and novel methods, ascend offers quick and robust tools for quality control, normalisation, dimensionality reduction, clustering and differential expression" ; - sc:featureList edam:operation_3432, - edam:operation_3435, - edam:operation_3695 ; - sc:name "ascend_autogenerated" ; - sc:url "https://github.com/powellgenomicslab/ascend" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, @@ -95509,8 +82162,24 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses sc:softwareHelp ; sc:url "https://github.com/wmglab-duke/ascent" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3047, + edam:topic_3336, + edam:topic_3474 ; + sc:citation ; + sc:description "ASCoVPred is a machine learning-based platform for quantitative prediction of anti-SARS-CoV-2 activity and human cell toxicity of molecules. ASCoVPred is a collection of compounds descriptors / fingerprints (FPs) calculator tool (PaDEL v2.21) and different machine learning (ML) algorithms (implemented in Weka v3.8.2) that are used to build the ML-based quantitative structure-activity relationship (QSAR) prediction models. These QSAR models can be used for ML-assisted prediction of anti-SARS-CoV-2 activity and human cell toxicity of compounds." ; + sc:featureList edam:operation_3799 ; + sc:name "ASCoVPred" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareHelp ; + sc:url "http://14.139.62.220/ascovpred/" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -95532,7 +82201,7 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses "Jian Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workbench" ; sc:applicationSubCategory edam:topic_0203, @@ -95553,7 +82222,7 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses sc:url "https://github.com/chenchenxiong/ASDmiR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3510 ; @@ -95570,7 +82239,7 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses biotools:primaryContact "Likun Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -95584,7 +82253,7 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses sc:url "http://genome.ewha.ac.kr/ASePCR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -95604,7 +82273,7 @@ ASAP is the implementation of a hierarchical clustering algorithm that only uses sc:url "http://aser.ihb.ac.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0632, edam:topic_3168, @@ -95629,7 +82298,7 @@ Foreign Animal Disease Diagnostic Laboratory, National Veterinary Services Labor sc:url "https://github.com/rwbarrette/ASFV_MinION_RapidAssembler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -95649,7 +82318,7 @@ Foreign Animal Disease Diagnostic Laboratory, National Veterinary Services Labor sc:url "https://github.com/Bioinformatics-Laboratory/project/tree/master/ASFold" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275, @@ -95665,7 +82334,7 @@ Foreign Animal Disease Diagnostic Laboratory, National Veterinary Services Labor sc:url "http://cadd.zju.edu.cn/asfp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -95683,7 +82352,7 @@ Foreign Animal Disease Diagnostic Laboratory, National Veterinary Services Labor sc:url "http://asfvdb.popgenetics.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0625, @@ -95702,7 +82371,7 @@ Foreign Animal Disease Diagnostic Laboratory, National Veterinary Services Labor biotools:primaryContact "Hela Romdhani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -95717,14 +82386,8 @@ Foreign Animal Disease Diagnostic Laboratory, National Veterinary Services Labor sc:name "ASHIC" ; sc:url "https://github.com/wmalab/ASHIC" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:description "We are Providing High-Quality Kolkata Escorts Services. if you are looking hot & Sexy Call Girls in Kolkata at a Low Price. Call +91-8420572561 to Hire Call Girls Number Sonagachi." ; - sc:name "Ashika Singh" ; - sc:url "https://www.hotgirlsecret.net" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation , @@ -95739,7 +82402,7 @@ Foreign Animal Disease Diagnostic Laboratory, National Veterinary Services Labor sc:url "http://github.com/friendsofstrandseq/ashleys-qc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -95760,7 +82423,7 @@ Foreign Animal Disease Diagnostic Laboratory, National Veterinary Services Labor sc:url "http://eureka.cbrc.jp/asian/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3172 ; @@ -95779,7 +82442,7 @@ Foreign Animal Disease Diagnostic Laboratory, National Veterinary Services Labor biotools:primaryContact "Gaëlle Lefort" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -95794,7 +82457,7 @@ Foreign Animal Disease Diagnostic Laboratory, National Veterinary Services Labor sc:url "http://sysbio.kribb.re.kr/AsiDesigner/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170, @@ -95814,22 +82477,22 @@ Foreign Animal Disease Diagnostic Laboratory, National Veterinary Services Labor a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_2376" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2376" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3366 ; sc:author "Olivier Filangi" ; @@ -95847,7 +82510,7 @@ Foreign Animal Disease Diagnostic Laboratory, National Veterinary Services Labor "Olivier Dameron" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0621, @@ -95867,7 +82530,7 @@ The alternative splicing in livestock animals database (ASlive.org) is a collect sc:url "http://ASlive.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0769, @@ -95884,7 +82547,7 @@ The alternative splicing in livestock animals database (ASlive.org) is a collect sc:url "https://pennlinc.github.io/aslprep_paper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3401, edam:topic_3444 ; @@ -95898,7 +82561,7 @@ The alternative splicing in livestock animals database (ASlive.org) is a collect sc:url "https://cfn.upenn.edu/~zewang/ASLtbx.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:description "Cconverts the Celera ASM assembly format to the Consed ACE or the CAF file format." ; @@ -95910,8 +82573,29 @@ The alternative splicing in livestock animals database (ASlive.org) is a collect sc:url "http://sourceforge.net/projects/asm2ace/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0654, + edam:topic_2640, + edam:topic_3170, + edam:topic_3295, + edam:topic_3674 ; + sc:citation , + "pmcid:PMC8728259", + "pubmed:34664666" ; + sc:description "Allele-Specific DNA Methylation Databases (ASMdb) is a comprehensive database for allele-specific DNA methylation in diverse organisms. ASMdb is aiming to provide a comprehensive resource and a web tool for showing the DNA methylation level and differential DNA methylation in diverse organisms." ; + sc:featureList edam:operation_3186, + edam:operation_3192, + edam:operation_3206, + edam:operation_3207, + edam:operation_3919 ; + sc:name "ASMdb" ; + sc:url "http://www.dna-asmdb.com" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -95928,7 +82612,7 @@ The alternative splicing in livestock animals database (ASlive.org) is a collect sc:url "http://genome.ewha.ac.kr/ECgene/ASmodeler/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175, edam:topic_3516 ; @@ -95946,14 +82630,12 @@ The alternative splicing in livestock animals database (ASlive.org) is a collect a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -95967,14 +82649,13 @@ The alternative splicing in livestock animals database (ASlive.org) is a collect a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:name "Mathematical model" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3071 ; @@ -95989,23 +82670,30 @@ The alternative splicing in livestock animals database (ASlive.org) is a collect sc:url "https://www.york.ac.uk/computational-immunology/software/aspasia/" ; biotools:primaryContact "Kieran Alden" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0218, - edam:topic_3372, - edam:topic_3489 ; - sc:citation ; - sc:description """Comparative Analysis of Compiler Performances and Program Efficiency. - -With the existence of several programming languages such as C C++, Java, C#, LISP, Prolog, Python, Simula, F#, Go, Haskell, Scala, Ruby, Dart, Swift, Groovy etc. and diverse paradigms like structured, object-oriented, list, aspect-oriented, service-oriented, web, mobile and logic programming, there is a need to perform an exhaustive comparative analysis of diverse compilers and environments before making a choice of implementation technology in software engineering. Optimization of compilers helps to reduce execution time by making use of high speed processor registers, thereby, eliminating redundant computation. This paper reports some series of performance analysis done with some popular programming languages including Java, C++, Python and PHP. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Prolog', 'LISP', 'service-oriented', 'Simula'""" ; - sc:name "aspect-oriented" ; - sc:url "https://doi.org/10.20944/PREPRINTS201909.0322.V1" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0625, + edam:topic_3170, + edam:topic_3320, + edam:topic_3512 ; + sc:citation , + "pubmed:35085775" ; + sc:description "This package provides functionalities for a systematic and integrative analysis of alternative splicing events and their functional interactions." ; + sc:featureList edam:operation_0264, + edam:operation_2436, + edam:operation_3280 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ASpediaFI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bioconductor.org/packages/ASpediaFI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -96019,7 +82707,7 @@ With the existence of several programming languages such as C C++, Java, C#, LIS biotools:primaryContact "David Hinds" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0797, edam:topic_3053, @@ -96039,7 +82727,7 @@ With the existence of several programming languages such as C C++, Java, C#, LIS biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3512 ; sc:citation ; @@ -96057,7 +82745,7 @@ With the existence of several programming languages such as C C++, Java, C#, LIS "Raffaella Rizzi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3308 ; @@ -96076,38 +82764,32 @@ With the existence of several programming languages such as C C++, Java, C#, LIS a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ], + sc:additionalType "http://edamontology.org/data_0582" ; + sc:name "Ontology" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_0582" ; + sc:name "Ontology" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ], + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene transcript report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0114, edam:topic_3320, @@ -96130,8 +82812,31 @@ With the existence of several programming languages such as C C++, Java, C#, LIS sc:url "http://srv00.recas.ba.infn.it/ASPicDB/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0769, + edam:topic_3168, + edam:topic_3174, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC8791494", + "pubmed:35081137" ; + sc:description "An automated pipeline for identification of SARS-Cov2 nucleotidic variants." ; + sc:featureList edam:operation_3196, + edam:operation_3227, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ASPICov" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.com/vtilloy/aspicov" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170, @@ -96149,7 +82854,7 @@ With the existence of several programming languages such as C C++, Java, C#, LIS biotools:primaryContact "Estefania Mancini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3170, @@ -96163,7 +82868,7 @@ With the existence of several programming languages such as C C++, Java, C#, LIS sc:url "https://gitlab.com/ChernoLab/aspli2_sm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -96183,7 +82888,7 @@ structures with arbitrary pseudoknots.""" ; sc:url "https://github.com/bdslab/aspralign" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3517, @@ -96201,7 +82906,7 @@ structures with arbitrary pseudoknots.""" ; sc:url "https://cran.r-project.org/web/packages/aSPU/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -96215,7 +82920,7 @@ structures with arbitrary pseudoknots.""" ; sc:url "https://asreml.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -96238,7 +82943,7 @@ structures with arbitrary pseudoknots.""" ; biotools:primaryContact "ASSAM Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3393, @@ -96255,7 +82960,7 @@ structures with arbitrary pseudoknots.""" ; biotools:primaryContact "Bogdan Mazoure" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0199, @@ -96271,7 +82976,7 @@ structures with arbitrary pseudoknots.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3172, @@ -96290,14 +82995,14 @@ structures with arbitrary pseudoknots.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:description "Assemblage is a microbial genome assembly pipeline that runs various QC, assembly and post-assembly steps on Illumina PE/SE reads. The different steps of the pipeline are - downsample reads using Seqtk/Mash (optional), clean reads with Trimmomatic, assemble clean reads with SPAdes assembler, perform post-assembly correction with PILON and annotates assembled genome using PROKKA." ; @@ -96310,7 +83015,7 @@ structures with arbitrary pseudoknots.""" ; sc:url "https://github.com/alipirani88/assemblage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation ; @@ -96325,7 +83030,7 @@ structures with arbitrary pseudoknots.""" ; sc:url "http://bioinformatics.org/assemble/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0611, @@ -96346,7 +83051,7 @@ structures with arbitrary pseudoknots.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0196, @@ -96366,10 +83071,10 @@ structures with arbitrary pseudoknots.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3007" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation ; @@ -96388,7 +83093,7 @@ structures with arbitrary pseudoknots.""" ; biotools:primaryContact "Andrew Yates" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0632, @@ -96409,14 +83114,14 @@ structures with arbitrary pseudoknots.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1921" ; + sc:name "Sequence assembly" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1921" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622 ; @@ -96449,7 +83154,7 @@ structures with arbitrary pseudoknots.""" ; sc:url "http://www.bioinformatics.nl/cgi-bin/emboss/assemblyget" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3173, @@ -96465,7 +83170,7 @@ structures with arbitrary pseudoknots.""" ; sc:url "http://andersonlab.qb3.berkeley.edu/#/software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0102, @@ -96485,14 +83190,14 @@ structures with arbitrary pseudoknots.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Genotype/phenotype report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -96513,22 +83218,22 @@ structures with arbitrary pseudoknots.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -96547,7 +83252,7 @@ structures with arbitrary pseudoknots.""" ; biotools:primaryContact "Ying Shen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """Assignment of DNA and RNA conformers A unified dinucleotide alphabet describing both RNA and DNA structures by Černý et al., was published in Nucleic Acids Research, Vol 48, pages 63667-6381 (2020). @@ -96559,7 +83264,7 @@ The web service in version 2 is described in Černý et al., Nucleic Acids Resea sc:url "https://www.dnatco.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053 ; @@ -96579,7 +83284,7 @@ The web service in version 2 is described in Černý et al., Nucleic Acids Resea biotools:primaryContact "Diego Micheletti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -96593,7 +83298,7 @@ The web service in version 2 is described in Černý et al., Nucleic Acids Resea sc:url "http://www.computationalbiology.it/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -96608,7 +83313,7 @@ The web service in version 2 is described in Černý et al., Nucleic Acids Resea biotools:primaryContact "Olivier Martin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_3542 ; @@ -96625,14 +83330,13 @@ The web service in version 2 is described in Černý et al., Nucleic Acids Resea a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:author "Micha Sammeth" ; @@ -96654,7 +83358,7 @@ The web service in version 2 is described in Černý et al., Nucleic Acids Resea biotools:primaryContact "Micha Sammeth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -96670,138 +83374,120 @@ The web service in version 2 is described in Černý et al., Nucleic Acids Resea a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2367" ; - sc:name "ASTD ID" ; - sc:sameAs "http://edamontology.org/data_2367" ], + sc:additionalType "http://edamontology.org/data_2371" ; + sc:name "ASTD ID (tss)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2367" ; - sc:name "ASTD ID" ; - sc:sameAs "http://edamontology.org/data_2367" ], + sc:additionalType "http://edamontology.org/data_2398" ; + sc:name "Ensembl protein ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2367" ; - sc:name "ASTD ID" ; - sc:sameAs "http://edamontology.org/data_2367" ], + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2368" ; - sc:name "ASTD ID (exon)" ; - sc:sameAs "http://edamontology.org/data_2368" ], + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2367" ; - sc:name "ASTD ID" ; - sc:sameAs "http://edamontology.org/data_2367" ], + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2398" ; - sc:name "Ensembl protein ID" ; - sc:sameAs "http://edamontology.org/data_2398" ], + sc:additionalType "http://edamontology.org/data_2367" ; + sc:name "ASTD ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2367" ; - sc:name "ASTD ID" ; - sc:sameAs "http://edamontology.org/data_2367" ], + sc:additionalType "http://edamontology.org/data_2367" ; + sc:name "ASTD ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2371" ; - sc:name "ASTD ID (tss)" ; - sc:sameAs "http://edamontology.org/data_2371" ], + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ], + sc:additionalType "http://edamontology.org/data_2367" ; + sc:name "ASTD ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ], + sc:additionalType "http://edamontology.org/data_2370" ; + sc:name "ASTD ID (polya)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2370" ; - sc:name "ASTD ID (polya)" ; - sc:sameAs "http://edamontology.org/data_2370" ], + sc:additionalType "http://edamontology.org/data_2369" ; + sc:name "ASTD ID (intron)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2369" ; - sc:name "ASTD ID (intron)" ; - sc:sameAs "http://edamontology.org/data_2369" ], + sc:additionalType "http://edamontology.org/data_2367" ; + sc:name "ASTD ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2398" ; - sc:name "Ensembl protein ID" ; - sc:sameAs "http://edamontology.org/data_2398" ], + sc:additionalType "http://edamontology.org/data_2367" ; + sc:name "ASTD ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ], + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2367" ; - sc:name "ASTD ID" ; - sc:sameAs "http://edamontology.org/data_2367" ], + sc:additionalType "http://edamontology.org/data_2367" ; + sc:name "ASTD ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2367" ; - sc:name "ASTD ID" ; - sc:sameAs "http://edamontology.org/data_2367" ], + sc:additionalType "http://edamontology.org/data_2368" ; + sc:name "ASTD ID (exon)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ], + sc:additionalType "http://edamontology.org/data_2367" ; + sc:name "ASTD ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ] ; + sc:additionalType "http://edamontology.org/data_2398" ; + sc:name "Ensembl protein ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene transcript report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_1927" ; + sc:name "Gene transcript report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ], + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Gene transcript report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ], + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_1927" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Gene transcript report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0114 ; sc:citation ; @@ -96816,7 +83502,7 @@ The web service in version 2 is described in Černý et al., Nucleic Acids Resea biotools:primaryContact "Contact List" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -96831,8 +83517,34 @@ The web service in version 2 is described in Černý et al., Nucleic Acids Resea sc:name "Asterias" ; sc:url "http://asterias.bioinfo.cnio.es/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Expression data" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal", + "Web application" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3391 ; + sc:description "A Tool for the ExploRation and Integration of omiCS" ; + sc:featureList edam:operation_3438 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ASTERICS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "2.1" ; + sc:url "https://asterics.miat.inrae.fr/" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, edam:topic_3172, @@ -96853,8 +83565,27 @@ The web service in version 2 is described in Černý et al., Nucleic Acids Resea "Windows" ; sc:url "https://github.com/klamt-lab/astheriscPackage" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0208, + edam:topic_0218, + edam:topic_3390, + edam:topic_3473, + edam:topic_3474 ; + sc:citation , + "pubmed:35963184" ; + sc:description "An asthma-environment interaction knowledge graph leveraging public databases and scientific literature." ; + sc:featureList edam:operation_3349 ; + sc:license "Not licensed" ; + sc:name "AsthmaKGxE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://asthmakgxe.moreair.info/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3382, @@ -96870,7 +83601,7 @@ The web service in version 2 is described in Černý et al., Nucleic Acids Resea sc:url "https://www.github.com/camlab-bioml/astir" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, @@ -96883,12 +83614,18 @@ The web service in version 2 is described in Černý et al., Nucleic Acids Resea sc:url "https://github.com/AISKhalil/AStra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3293, edam:topic_3321 ; - sc:citation "pubmed:26072508" ; + sc:citation , + , + "pmcid:PMC4147915", + "pmcid:PMC5998893", + "pubmed:25161245", + "pubmed:26072508", + "pubmed:29745866" ; sc:description "Java program for estimating a species tree given a set of unrooted gene trees." ; sc:featureList edam:operation_0323 ; sc:name "ASTRAL" ; @@ -96900,7 +83637,7 @@ The web service in version 2 is described in Černý et al., Nucleic Acids Resea biotools:primaryContact "Siavash Mirarab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3053 ; @@ -96913,8 +83650,32 @@ The web service in version 2 is described in Černý et al., Nucleic Acids Resea biotools:primaryContact "Alain Tchagang", "Takis Benos" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Workflow" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0634, + edam:topic_2640, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC9477531", + "pubmed:35924984" ; + sc:description "ASURAT is a software for single-cell data analysis. Using ASURAT, one can simultaneously perform unsupervised clustering and biological interpretation in terms of cell type, disease, biological process, and signaling pathway activity." ; + sc:featureList edam:operation_2436, + edam:operation_3432, + edam:operation_3891 ; + sc:license "GPL-3.0" ; + sc:name "ASURAT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "1.0.0" ; + sc:url "https://www.bioconductor.org/packages/release/bioc/html/ASURAT.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0621, @@ -96934,7 +83695,7 @@ The web service in version 2 is described in Černý et al., Nucleic Acids Resea sc:url "https://github.com/Ahituv-lab/Asymmetron" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0797, @@ -96951,7 +83712,7 @@ AsymmetryScaler takes the results from AsymmetryCounter and summarizes substitut biotools:primaryContact "McDonald, J.H" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -96968,14 +83729,8 @@ AsymmetryScaler takes the results from AsymmetryCounter and summarizes substitut biotools:primaryContact "Brian Walenz", "Liliana Florea" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:description "By advantage of the cutting-edge Illumina platform and widely accepted analysis software, CD Genomics provides a comprehensive solution for your needs to investigate whether epigenetics plays a role in the response of your cell system." ; - sc:name "ATAC Seq" ; - sc:url "https://www.cd-genomics.com/atac-seq.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, @@ -96992,7 +83747,7 @@ AsymmetryScaler takes the results from AsymmetryCounter and summarizes substitut sc:url "http://www.licpathway.net/ATACdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_3169, @@ -97011,7 +83766,7 @@ AsymmetryScaler takes the results from AsymmetryCounter and summarizes substitut sc:url "https://github.com/RitataLU/ATACgraph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -97029,8 +83784,32 @@ AsymmetryScaler takes the results from AsymmetryCounter and summarizes substitut sc:url "http://bioconductor.org/packages/release/bioc/html/ATACseqQC.html" ; biotools:primaryContact "Jianhong Ou" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0610, + edam:topic_0769, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC9404342", + "pubmed:36033257" ; + sc:description "aTAP is a comprehensive bioinformatics web-based platform for analyze RNA-Seq data." ; + sc:featureList edam:operation_0524, + edam:operation_3192, + edam:operation_3223, + edam:operation_3258, + edam:operation_3800 ; + sc:isAccessibleForFree true ; + sc:name "aTAP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://atap.psu.ac.th/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0091, @@ -97050,7 +83829,7 @@ AsymmetryScaler takes the results from AsymmetryCounter and summarizes substitut sc:url "https://github.com/ParkerLab/ataqv/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0204, @@ -97069,7 +83848,7 @@ AsymmetryScaler takes the results from AsymmetryCounter and summarizes substitut biotools:primaryContact "Aviad Tsherniak (Broad Institute)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0102, @@ -97089,7 +83868,7 @@ ATAV stores variant and per site coverage data for all samples in a centralized sc:url "http://atavdb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0154, @@ -97107,14 +83886,13 @@ ATAV stores variant and per site coverage data for all samples in a centralized a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0963" ; - sc:name "Cell line report" ; - sc:sameAs "http://edamontology.org/data_0963" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0963" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Cell line report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2229 ; sc:description "Global biological materials resource and standards organization whose mission focuses on the acquisition, authentication, production, preservation, development, and distribution of standard reference microorganisms, cell lines, and other materials." ; @@ -97129,14 +83907,12 @@ ATAV stores variant and per site coverage data for all samples in a centralized a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1097" ; - sc:name "Sequence accession (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1097" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1097" ; + sc:name "Sequence accession (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation ; @@ -97155,7 +83931,7 @@ ATAV stores variant and per site coverage data for all samples in a centralized biotools:primaryContact "Klaas Vandepoele" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0601, edam:topic_0602, @@ -97173,7 +83949,7 @@ ATAV stores variant and per site coverage data for all samples in a centralized sc:url "http://www.bigzju.com/ATdb/#/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654 ; @@ -97187,8 +83963,30 @@ ATAV stores variant and per site coverage data for all samples in a centralized sc:softwareHelp ; sc:url "http://atgme.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_2269, + edam:topic_3299, + edam:topic_3474 ; + sc:citation , + "pubmed:35286461" ; + sc:description "Sequence-based prediction of autophagy proteins with feature representation learning." ; + sc:featureList edam:operation_3092, + edam:operation_3767, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ATGPred-FL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://lab.malab.cn/~acy/ATGPred-FL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -97210,8 +84008,29 @@ ATAV stores variant and per site coverage data for all samples in a centralized sc:url "http://www.athamap.de/" ; biotools:primaryContact "Artyom Romanov (Webmaster)" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_2640, + edam:topic_3308, + edam:topic_3382, + edam:topic_3934 ; + sc:citation , + "pmcid:PMC9154280", + "pubmed:35485743" ; + sc:description "ATHENA is an open-source computational framework written in Python that facilitates the visualization, processing and analysis of (spatial) heterogeneity from spatial omics data." ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "ATHENA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/AI4SCR/ATHENA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -97232,7 +84051,7 @@ ATAV stores variant and per site coverage data for all samples in a centralized biotools:primaryContact "ATIVS Suppport" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -97253,7 +84072,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "http://atlantic.proteomics.wzw.tum.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -97268,7 +84087,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "https://www.hgsc.bcm.edu/software/atlas-whole-genome-assembly-suite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3308, edam:topic_3517 ; @@ -97284,7 +84103,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "https://atlas.ctglab.nl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, edam:topic_0749, @@ -97300,7 +84119,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "https://github.com/networkbiolab/atlas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation "pubmed:20019143" ; @@ -97313,7 +84132,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of biotools:primaryContact "Fuli Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -97331,7 +84150,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of biotools:primaryContact "Fuli Yu, Ph.D." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3444, edam:topic_3500 ; @@ -97346,7 +84165,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "https://www.github.com/jlohmeier/atlasBREX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -97360,7 +84179,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "https://www.hgsc.bcm.edu/software/atlas-gapfill" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -97377,7 +84196,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of biotools:primaryContact "Fuli Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3304, edam:topic_3384 ; @@ -97389,14 +84208,13 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0971" ; - sc:name "Article" ; - sc:sameAs "http://edamontology.org/data_0971" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0971" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Article" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3303 ; @@ -97421,7 +84239,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of "Philippe Dessen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -97441,7 +84259,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of biotools:primaryContact "Simon Jupp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -97457,7 +84275,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "https://lcsb-databases.epfl.ch/Atlas2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0780, @@ -97476,8 +84294,33 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:name "AtMAD" ; sc:url "http://119.3.41.228:8080/atmad/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0153, + edam:topic_0736, + edam:topic_0749, + edam:topic_0820 ; + sc:citation , + "pubmed:34954796" ; + sc:description "ATOLL (Aligned Transmembrane dOmain Layout fLattening) is a program for visualizing 3D structures of the transmembrane helix bundle of membrane proteins." ; + sc:featureList edam:operation_0244, + edam:operation_0269, + edam:operation_2241, + edam:operation_2476, + edam:operation_2487 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "ATOLL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://atoll.drugdesign.unistra.fr/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0611, edam:topic_1317, @@ -97500,43 +84343,51 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Web application" ; - sc:applicationSubCategory edam:topic_2258, - edam:topic_2275, - edam:topic_3047, - edam:topic_3068, - edam:topic_3332 ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Small molecule structure" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web API", + "Web application" ; + sc:applicationSubCategory edam:topic_3332 ; + sc:author ; sc:citation , "pmcid:PMC7319571", "pubmed:32402071" ; sc:description "Atomic Charge Calculator II (ACC II) is a web application for fast calculation of partial atomic charges." ; - sc:featureList edam:operation_0337, - edam:operation_3893, - edam:operation_3938 ; + sc:featureList edam:operation_3438 ; + sc:isAccessibleForFree true ; sc:license "MIT" ; sc:name "Atomic Charge Calculator II" ; + sc:provider ; sc:softwareHelp ; - sc:url "https://acc2.ncbr.muni.cz" . + sc:softwareVersion "2" ; + sc:url "https://acc2.ncbr.muni.cz" ; + biotools:primaryContact . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1463" ; + sc:name "Small molecule structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1917" ; - sc:name "Atomic property" ; - sc:sameAs "http://edamontology.org/data_1917" ], + sc:additionalType "http://edamontology.org/data_2085" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2085" ; - sc:name "Structure report" ; - sc:sameAs "http://edamontology.org/data_2085" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1917" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Atomic property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0081, @@ -97567,7 +84418,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of "Primary Contact" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0593 ; @@ -97583,7 +84434,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "https://atomium.samireland.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2830, @@ -97601,7 +84452,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "https://jun-csbio.github.io/atpdock/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -97622,8 +84473,18 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:softwareHelp ; sc:url "http://www.megabionet.org/atpid/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "ATPint:is a web based tool for prediction of ATP binding residue in protein sequence" ; + sc:featureList edam:operation_2945 ; + sc:name "atpint" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/atpint/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168 ; @@ -97641,7 +84502,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "https://github.com/juliema/aTRAM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0157, @@ -97658,7 +84519,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "http://www.cs.technion.ac.il/labs/cbl/atrhunter/ATRinformation.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0196, @@ -97675,8 +84536,63 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:name "Atria" ; sc:url "https://github.com/cihga39871/Atria" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_3444 ; + sc:citation , + "pubmed:34875581" ; + sc:description "AtrialJSQnet is a modified U-Net consisting of two decoders for LA segmentation and scar quantification, respectively." ; + sc:featureList edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "AtrialJSQnet" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/Marie0909/AtrialJSQnet" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workflow" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_0769, + edam:topic_3384, + edam:topic_3444, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8582149", + "pubmed:34758821" ; + sc:description "Atri-U is a tool for assisted image analysis in routine cardiovascular magnetic resonance volumetry of the left atrium. Atri-U is an automated data analysis pipeline for long-axis cardiac cine images, computes the atrial volume by: (i) detecting the end-systolic frame, (ii) outlining the endocardial borders of the LA, (iii) localizing the mitral annular hinge points and constructing the longitudinal atrial diameters, equivalent to the usual workup done by clinicians." ; + sc:featureList edam:operation_3443 ; + sc:license "Not licensed" ; + sc:name "Atri-U" ; + sc:url "https://git.upd.unibe.ch/openscience/atri-u" ; + biotools:primaryContact . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0634, + edam:topic_3305, + edam:topic_3416, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9321399", + "pubmed:35788746" ; + sc:description "A machine learning based tool for clinical decision making of anti-TNF treatment in rheumatoid arthritis patients." ; + sc:featureList edam:operation_0314, + edam:operation_2949, + edam:operation_3092 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ATRPred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ShuklaLab/ATRPred" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -97695,7 +84611,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of "Xiucai Ye" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2885 ; @@ -97711,7 +84627,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of biotools:primaryContact "Chandler Zu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -97731,8 +84647,32 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "http://bioinfo3.noble.org/AtSubP/" ; biotools:primaryContact "AtSubP team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal", + "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0780, + edam:topic_3170, + edam:topic_3300, + edam:topic_3308, + edam:topic_3518 ; + sc:citation , + "pubmed:35353884" ; + sc:description "ATTED-II is a gene coexpression database for nine plant species based on publicly available RNAseq and microarray data." ; + sc:featureList edam:operation_3463, + edam:operation_3891, + edam:operation_3960 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-SA-2.0" ; + sc:name "ATTED-II" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://atted.jp" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation , @@ -97745,7 +84685,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "https://github.com/emadeldeen24/AttnSleep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -97765,7 +84705,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of biotools:primaryContact "Samuel Zimmerman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3304, @@ -97781,7 +84721,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of biotools:primaryContact "Uri Shalit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:citation , "pmcid:PMC3609896", @@ -97797,7 +84737,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of biotools:primaryContact "Louis Mayaud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3308 ; @@ -97816,8 +84756,19 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "http://bioconductor.org/packages/release/bioc/html/AUCell.html" ; biotools:primaryContact "Sara Aibar" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:citation ; + sc:description "AUCpreD is a method that predicts intrinsically disordered regions (IDR). AUCpreD works well without sequence profile, comparing favorably to or even outperforming many methods using sequence profile." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "AUCpreD" ; + sc:operatingSystem "Linux" ; + sc:url "http://raptorx2.uchicago.edu/StructurePropertyPred/predict/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3444, @@ -97836,7 +84787,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "https://github.com/Haifengtao/AUCseg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3304 ; sc:citation , @@ -97851,7 +84802,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "https://pypi.org/project/audiomath" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -97866,7 +84817,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of biotools:primaryContact "Dr M Murali Krishna Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623, edam:topic_3512 ; @@ -97893,7 +84844,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of biotools:primaryContact "Mario Stanke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3053, @@ -97914,14 +84865,13 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workbench", "Workflow" ; @@ -97937,7 +84887,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "http://aureme.genouest.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -97953,7 +84903,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "http://www.aureolib.de/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "Compute AUROC (Area under Receiver Operating Characteristic) from frequency weighted instances of predictions and ratio of positive instances" ; @@ -97967,7 +84917,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of biotools:primaryContact "Stefan Schroedl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315 ; sc:description "Receiver Operating Characteristic curve with convex hull, plus areas under ROC and ROCCH." ; @@ -97981,7 +84931,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of biotools:primaryContact "Ged Ridgway" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0102, @@ -97999,7 +84949,7 @@ Integrated analysis of genomes, transcriptomes, proteomes and drug responses of sc:url "https://github.com/highlei/AUSPP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3063, edam:topic_3325, @@ -98023,7 +84973,7 @@ See a sample consent form for an Australian Genomics flagship study.""" ; sc:url "http://australiangenomics.org.au" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2640 ; @@ -98040,7 +84990,7 @@ An interactive, online atlas designed to show how the burden of cancer varies ac sc:url "https://atlas.cancer.org.au" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0160, @@ -98057,7 +85007,7 @@ An interactive, online atlas designed to show how the burden of cancer varies ac sc:url "https://github.com/StephanePeyregne/AuthentiCT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -98074,7 +85024,7 @@ An interactive, online atlas designed to show how the burden of cancer varies ac biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0208, @@ -98097,7 +85047,7 @@ An interactive, online atlas designed to show how the burden of cancer varies ac biotools:primaryContact "AutismKB Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0625, @@ -98112,7 +85062,7 @@ An interactive, online atlas designed to show how the burden of cancer varies ac biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -98130,7 +85080,7 @@ An interactive, online atlas designed to show how the burden of cancer varies ac sc:url "https://github.com/emdadi/Auto-HMM-LMF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -98146,7 +85096,7 @@ An interactive, online atlas designed to show how the burden of cancer varies ac sc:url "http://auto-q-pcr.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_2828 ; sc:citation , @@ -98165,7 +85115,7 @@ An interactive, online atlas designed to show how the burden of cancer varies ac biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3172, edam:topic_3372 ; @@ -98178,25 +85128,8 @@ Home >> Software >> autoGCMSDataAnal""" ; sc:name "autoGCMSDataAnal" ; sc:url "http://software.tobaccodb.org/software/autogcmsdataanal" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_3050, - edam:topic_3360, - edam:topic_3518, - edam:topic_3520 ; - sc:citation , - "pubmed:31838165" ; - sc:description """Holistic characterization of autoantigen repertoires for a better understanding of autoimmune diseases. - -Autoimmune diseases are mostly characterized by autoantibodies in the patients' serum or cerebrospinal fluid, representing diagnostic or prognostic biomarkers. For decades, research has focused on single autoantigens or panels of single autoantigens. In this article, we advocate to broaden the focus by addressing the entire autoantigen repertoire in a systemic "omics-like" way. This approach aims to capture the enormous biodiversity in the sets of targeted antigens and pave the way toward a more holistic understanding of the concerted character of antibody-related humoral immune responses. Ongoing technological progress permits high-throughput screenings of thousands of autoantigens in parallel, e.g., via protein microarrays, phage display, or immunoprecipitation with mass spectrometry. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3501 ; - sc:name "autoantigenomics" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31838165" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -98212,7 +85145,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "http://sourceforge.net/projects/autoassemblyd/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_1317 ; @@ -98229,7 +85162,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "http://www-nmr.cabm.rutgers.edu/NMRsoftware/nmr_software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -98246,7 +85179,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' biotools:primaryContact "Alfonso JARAMILLO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0080, @@ -98263,7 +85196,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://github.com/jingry/autoBioSeqpy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3179, @@ -98278,7 +85211,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://github.com/Licheng-Guo/AutoBridge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_2640, @@ -98295,7 +85228,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://github.com/cew88/AutoCAT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3172, @@ -98316,7 +85249,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://github.com/PNNL-Comp-Mass-Spec/AutoCCS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -98331,7 +85264,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://github.com/datapplab/AutoClass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0623, @@ -98352,7 +85285,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' biotools:primaryContact "Denis Mestivier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:description "A web app to run AutoClass C Bayesian clustering" ; sc:isAccessibleForFree true ; @@ -98365,7 +85298,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://github.com/pierrepo/autoclassweb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0623, edam:topic_3391, @@ -98382,7 +85315,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://github.com/pierrepo/autoclasswrapper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Workflow" ; @@ -98403,8 +85336,27 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:name "AutoCloner" ; sc:url "http://www.autocloner.com" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0622, + edam:topic_3958 ; + sc:citation , + "pmcid:PMC8496072", + "pubmed:34615484" ; + sc:description "AutoCNV is a semiautomatic CNV interpretation system for clinical interpretation of copy number loss or gain based on the 2019 ACMG/ClinGen Technical Standards for CNVs. It is a semiautomatic CNV interpretation system based on the 2019 ACMG/ClinGen Technical Standards for CNVs." ; + sc:featureList edam:operation_3225, + edam:operation_3431, + edam:operation_3435, + edam:operation_3961 ; + sc:name "AutoCNV" ; + sc:softwareHelp , + ; + sc:url "https://phoenix.bgi.com/autocnv/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0128, @@ -98420,8 +85372,26 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:name "AutoCoEv" ; sc:url "https://github.com/mattilalab/autocoev" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0634, + edam:topic_3297 ; + sc:citation , + "pmcid:PMC9036508", + "pubmed:35468739" ; + sc:description "AutoCoV, a deep learning method with multiple loss object, that can track the early spread of COVID-19 in terms of spatial and temporal patterns until the disease is fully spread over the world in July 2020." ; + sc:featureList edam:operation_3432, + edam:operation_3472, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "AutoCoV" ; + sc:url "https://github.com/smaster7/AutoCoV" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -98438,8 +85408,26 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:softwareVersion "1.0" ; sc:url "http://www.sanger.ac.uk/science/tools/autocsa" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0780, + edam:topic_3170, + edam:topic_3173, + edam:topic_3474 ; + sc:citation , + "pubmed:35583303" ; + sc:description "A tailored AutoML for disease classification from gene expression data" ; + sc:featureList edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "AutoDC" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/dingdian110/AutoDC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -98454,14 +85442,13 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:name "Structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0889" ; - sc:name "Structural profile" ; - sc:sameAs "http://edamontology.org/data_0889" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0889" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Structural profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0092, @@ -98481,7 +85468,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://moleculeviewer.lifesciences.autodesk.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0632, @@ -98498,7 +85485,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "http://www.cstl.nist.gov/strbase/AutoDimerHomepage/AutoDimerProgramHomepage.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -98518,7 +85505,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "http://autodock.scripps.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3336 ; @@ -98533,21 +85520,48 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:softwareVersion "1.1.2" ; sc:url "http://vina.scripps.edu/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3384, - edam:topic_3444, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6770116", - "pubmed:31450799" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'stacked autoencoders', 'Cancer Diagnosis Using Deep Learning', 'autoencoders SAE convolutional autoencoders', 'autoencoders' | Cancer Diagnosis Using Deep Learning | Automated Cardiac Diagnosis Challenge (ACDC) | in conjonction with the STACOM workshop | The overall ACDC dataset was created from real clinical exams acquired at the University Hospital of Dijon" ; - sc:featureList edam:operation_3629, - edam:operation_3891 ; - sc:name "autoencoders CAE" ; - sc:url "https://www.creatis.insa-lyon.fr/Challenge/acdc/databases.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0199, + edam:topic_0632, + edam:topic_3301, + edam:topic_3912 ; + sc:citation , + "pmcid:PMC9252779", + "pubmed:35639727" ; + sc:description "A web tool for automatic editing sequence design for genetic manipulation of microorganisms." ; + sc:featureList edam:operation_0308, + edam:operation_0310, + edam:operation_3096, + edam:operation_3196 ; + sc:license "Not licensed" ; + sc:name "AutoESD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "1.0" ; + sc:url "https://autoesd.biodesign.ac.cn/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0769 ; + sc:citation , + "pubmed:34749004" ; + sc:description "AutoFAIR is portal for automating FAIR assessments for bioinformatics resources. AutoFAIR a semi-automated tool to assess a resource according to the Findability, Accessibility, Interoperability and Reusability (FAIR) criteria. The aim is to create a portal that presents the assessment score together with a report that researchers can use to gauge a resource." ; + sc:featureList edam:operation_2421 ; + sc:name "AutoFAIR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://autofair.research.um.edu.mt/portal/home/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0605 ; sc:citation ; @@ -98560,7 +85574,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://github.com/tspsyched/autoFC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -98576,7 +85590,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://github.com/theislab/AutoGeneS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -98590,7 +85604,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' biotools:primaryContact "Derrien T" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -98607,7 +85621,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://github.com/TanemuraKiyoto/AutoGraph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, @@ -98626,14 +85640,14 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -98649,7 +85663,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "http://www.ms-utils.org/autohd.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3179 ; @@ -98661,8 +85675,24 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:softwareVersion "20150224" ; sc:url "http://dna.leeds.ac.uk/AutoIdeogram/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_3382 ; + sc:citation , + "pubmed:35349939" ; + sc:description "Scientific software for analyzing 6xxx Al-Mg-Si-(Cu) precipitates in atomic resolution HAADF-STEM images." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "AutomAl 6000" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://automal.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, @@ -98680,7 +85710,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' biotools:primaryContact "Daniel Asarnow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -98697,7 +85727,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' biotools:primaryContact "Benjamin Infantolino" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -98713,8 +85743,30 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://www.mathworks.com/matlabcentral/fileexchange/55227-automatic-objective-neuronal-spike-detection" ; biotools:primaryContact "Jarno Tanskanen" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_3372, + edam:topic_3474 ; + sc:citation ; + sc:description "Tool that automatically detects the histological type of a tumor region of interest from Whole Slide Imaging technique" ; + sc:featureList edam:operation_3443 ; + sc:name "Automatic segmentation tool" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:url "http://telemed.uca.es:443/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3293, @@ -98729,7 +85781,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "http://www.uhnresearch.ca/labs/tillier/software.htm#6" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0602, @@ -98747,8 +85799,30 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:operatingSystem "Linux" ; sc:url "https://rxnkin.usc.es/amk/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_3473, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9047440", + "pubmed:35412809" ; + sc:description "An R Package for Fully Automatic LC-QQQ-MS Data Preprocessing Powered by Machine Learning." ; + sc:featureList edam:operation_0337, + edam:operation_2409, + edam:operation_3215 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "automRm" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.gwdg.de/joerg.buescher/automrm" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3307, @@ -98764,7 +85838,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "http://babylone.ulb.ac.be/autoosc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3318, @@ -98782,14 +85856,12 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293 ; sc:description "An automatic pipeline for phylogenetic analysis." ; @@ -98802,7 +85874,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "http://code.google.com/p/autophylo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0769, @@ -98820,7 +85892,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://github.com/FrancescoFerrari88/AutoRELACS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -98838,7 +85910,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' biotools:primaryContact "Michael P. Pound" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2275, @@ -98854,7 +85926,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "http://rpa.renlab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -98869,7 +85941,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "http://www.helsinki.fi/~tsjuntun/autoscan/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3379, edam:topic_3421, @@ -98884,8 +85956,27 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:name "AutoScore" ; sc:url "https://github.com/nliulab/AutoScore" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Workbench" ; + sc:applicationSubCategory edam:topic_2815, + edam:topic_3379, + edam:topic_3474 ; + sc:citation , + "pubmed:34826628" ; + sc:description "Given a new dataset with time-to-event outcomes and baseline covariates, the AutoScore-Survival package provides a pipeline of functions to split data and implement the six modules to generate the final scores that require minimal manipulation from users." ; + sc:featureList edam:operation_3659, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:name "AutoScore-Survival" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/nliulab/AutoScore-Survival" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, @@ -98902,7 +85993,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' biotools:primaryContact "Sun Yan-Bo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -98916,7 +86007,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "http://indra.mullins.microbiol.washington.edu/perlscript/docs/AutoSequin.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3510, edam:topic_3534 ; @@ -98933,7 +86024,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' biotools:primaryContact "Michel F. Sanner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -98948,7 +86039,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' biotools:primaryContact "Ian Carr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -98970,8 +86061,25 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:softwareHelp ; sc:url "http://autosnpdb.appliedbioinformatics.com.au/index.jsp?species=" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_3047, + edam:topic_3314, + edam:topic_3474 ; + sc:citation , + "pubmed:35364887" ; + sc:description "Automated workflow for generating quantum chemistry calculation of explicitly solvated molecules" ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "AutoSolvate" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/Liu-group/AutoSolvate" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -98987,7 +86095,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://autospill.vib.be" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3382, @@ -98999,8 +86107,31 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:name "AutoTune" ; sc:url "https://github.com/JekyllAndHyde8999/AutoTune_CNN_TransferLearning" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3063, + edam:topic_3305, + edam:topic_3324, + edam:topic_3400 ; + sc:citation , + "pmcid:PMC8688874", + "pubmed:34922324" ; + sc:description "Here we present the AntiViral Antibody Response Deconvolution Algorithm (AVARDA), a multi-module software package for analyzing VirScan datasets" ; + sc:featureList edam:operation_0252, + edam:operation_0416, + edam:operation_3629 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "AVARDA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/drmonaco/AVARDA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, edam:topic_0634, @@ -99015,7 +86146,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://github.com/sysbio-bioinf/avatar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2269, edam:topic_3384, @@ -99033,7 +86164,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://gitlab.com/LungModelling/avatree" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0780, edam:topic_2885, @@ -99053,7 +86184,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' biotools:primaryContact "Yong-Bi Fu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2533, edam:topic_3053 ; @@ -99071,7 +86202,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://avia-abcc.ncifcrf.gov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0154, @@ -99089,7 +86220,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://avimm.ab.mpg.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3068, @@ -99104,7 +86235,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://www.ccb.uni-saarland.de/aviator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0176, @@ -99126,7 +86257,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://github.com/avis-md/avis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3314, @@ -99143,7 +86274,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "http://avogadro.cc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -99164,7 +86295,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' biotools:primaryContact "Dr. Manoj Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0781, @@ -99186,7 +86317,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' biotools:primaryContact "Dr. Manoj Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -99203,7 +86334,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://github.com/mpouryah/aWCluster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3360, edam:topic_3518 ; @@ -99215,7 +86346,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://github.com/Caleb-Huo/AWFisher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -99236,8 +86367,24 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:softwareHelp ; sc:url "https://awsem.rice.edu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3444, + edam:topic_3474 ; + sc:citation , + "pubmed:35091277" ; + sc:description "An auto-weighted supervision attention network for myocardial scar and edema segmentation in multi-sequence cardiac magnetic resonance images." ; + sc:isAccessibleForFree true ; + sc:name "AWSnet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/soleilssss/AWSnet/tree/master" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -99252,7 +86399,7 @@ Autoimmune diseases are mostly characterized by autoantibodies in the patients' sc:url "https://github.com/drisso/awst" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, edam:topic_2830, @@ -99269,7 +86416,7 @@ Antigen eXpression based Epitope Likelihood-Function (AXEL-F)""" ; sc:url "http://axelf-beta.iedb.org/axelf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3383, @@ -99280,7 +86427,7 @@ Antigen eXpression based Epitope Likelihood-Function (AXEL-F)""" ; sc:url "http://www.maldi-msi.org/index.php?option=com_content&view=article&id=87&Itemid=48" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3697 ; @@ -99295,7 +86442,7 @@ Antigen eXpression based Epitope Likelihood-Function (AXEL-F)""" ; biotools:primaryContact "Dr. Josh Neufeld" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -99314,7 +86461,7 @@ Antigen eXpression based Epitope Likelihood-Function (AXEL-F)""" ; biotools:primaryContact "Katrin Deinhardt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3334, @@ -99333,7 +86480,7 @@ Antigen eXpression based Epitope Likelihood-Function (AXEL-F)""" ; biotools:primaryContact "Julien Cohen-Adad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -99352,7 +86499,7 @@ Antigen eXpression based Epitope Likelihood-Function (AXEL-F)""" ; biotools:primaryContact "Aldo Zaimi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0166, @@ -99370,7 +86517,7 @@ Antigen eXpression based Epitope Likelihood-Function (AXEL-F)""" ; biotools:primaryContact "Dr. William Harvey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0092, @@ -99390,7 +86537,7 @@ Antigen eXpression based Epitope Likelihood-Function (AXEL-F)""" ; biotools:primaryContact "Arroyuelo A." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0593, edam:topic_1317 ; @@ -99405,7 +86552,7 @@ Antigen eXpression based Epitope Likelihood-Function (AXEL-F)""" ; sc:url "http://www.ccpn.ac.uk/azara/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3325, @@ -99423,8 +86570,34 @@ Antigen eXpression based Epitope Likelihood-Function (AXEL-F)""" ; sc:url "http://azphewas.com/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0160, + edam:topic_2275, + edam:topic_3068, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8716830", + "pubmed:34976872" ; + sc:description "B-AMP is an Antimicrobial Peptide (AMP) repository for biofilms, consisting of a vast library of 5544 structural AMP models, AMPs annotated to relevant biofilm literature, and protein-peptide interaction models with potential biofilm targets." ; + sc:featureList edam:operation_0321, + edam:operation_0482, + edam:operation_3778, + edam:operation_3802, + edam:operation_3899 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "B-AMP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://b-amp.karishmakaushiklab.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3070, @@ -99447,7 +86620,7 @@ Antigen eXpression based Epitope Likelihood-Function (AXEL-F)""" ; biotools:primaryContact "Nicola Strisciuglio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_2640, @@ -99464,7 +86637,7 @@ Antigen eXpression based Epitope Likelihood-Function (AXEL-F)""" ; sc:url "https://github.com/xuwenjian85/B-GEX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -99480,10 +86653,10 @@ Antigen eXpression based Epitope Likelihood-Function (AXEL-F)""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """The bio2byte tools server (b2btools) offers the following single protein sequence based predictions: - Backbone and sidechain dynamics (DynaMine) - Helix, sheet, coil and polyproline-II propensity @@ -99498,8 +86671,29 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi sc:name "b2bTools" ; sc:url "https://www.bio2byte.be/b2btools/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2258, + edam:topic_3047, + edam:topic_3332, + edam:topic_3374 ; + sc:citation , + "pmcid:PMC8556334", + "pubmed:34716354" ; + sc:description "Blood-Brain Barrier Database (B3DB) is a curated diverse molecular database of blood-brain barrier permeability with chemical descriptors." ; + sc:featureList edam:operation_3431, + edam:operation_3659, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "CC0-1.0" ; + sc:name "B3DB" ; + sc:url "https://github.com/theochem/B3DB" ; + biotools:primaryContact "Paul W. Ayers" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3304, @@ -99519,7 +86713,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi sc:url "https://webs.iiitd.edu.in/raghava/b3pdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0804, @@ -99536,7 +86730,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi sc:url "https://webs.iiitd.edu.in/raghava/b3pred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3292 ; sc:citation ; @@ -99552,7 +86746,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi biotools:primaryContact "Riccardo Percudani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0611, edam:topic_3315 ; @@ -99563,7 +86757,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31486672" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation ; @@ -99580,7 +86774,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi "Vladimir B. Bajic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0625, @@ -99595,10 +86789,10 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation , @@ -99615,7 +86809,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi sc:url "https://huygens.science.uva.nl/BA-plotteR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -99636,34 +86830,28 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_3110" ; + sc:name "Raw microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ], + sc:additionalType "http://edamontology.org/data_2872" ; + sc:name "ID list" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3110" ; - sc:name "Raw microarray data" ; - sc:sameAs "http://edamontology.org/data_3110" ], + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2872" ; - sc:name "ID list" ; - sc:sameAs "http://edamontology.org/data_2872" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ], + sc:additionalType "http://edamontology.org/data_0582" ; + sc:name "Ontology" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0622, @@ -99694,7 +86882,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi biotools:primaryContact "babelomics@cipf.es (Francisco García)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -99714,7 +86902,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi biotools:primaryContact "Raphael Gottardo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0203, @@ -99735,7 +86923,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi biotools:primaryContact "Vittorio Fortino" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -99752,7 +86940,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi sc:url "http://bacant.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3344, edam:topic_3524 ; @@ -99769,7 +86957,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi biotools:primaryContact "Johannes Zimmermann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0160, @@ -99789,7 +86977,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi sc:url "http://proteininformatics.org/mkumar/bacarscan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3379 ; @@ -99804,74 +86992,73 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_2912" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Strain accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2912" ; - sc:name "Strain accession" ; - sc:sameAs "http://edamontology.org/data_2912" ] ; + sc:additionalType "http://edamontology.org/data_1045" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Species name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3719" ; - sc:name "Biosafety classification" ; - sc:sameAs "http://edamontology.org/data_3719" ], + sc:additionalType "http://edamontology.org/data_1097" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence accession (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1097" ; - sc:name "Sequence accession (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1097" ], + sc:additionalType "http://edamontology.org/data_3719" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Biosafety classification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2087" ; - sc:name "Molecular property" ; - sc:sameAs "http://edamontology.org/data_2087" ], + sc:additionalType "http://edamontology.org/data_1179" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "NCBI taxonomy ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0912" ; - sc:name "Nucleic acid property" ; - sc:sameAs "http://edamontology.org/data_0912" ], + sc:additionalType "http://edamontology.org/data_2087" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecular property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_3720" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Geographic location" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_1872" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Taxonomic classification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1872" ; - sc:name "Taxonomic classification" ; - sc:sameAs "http://edamontology.org/data_1872" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3720" ; - sc:name "Geographic location" ; - sc:sameAs "http://edamontology.org/data_3720" ], + sc:additionalType "http://edamontology.org/data_3723" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Morphology parameter" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_3722" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Physiology parameter" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3718" ; - sc:name "Pathogenicity report" ; - sc:sameAs "http://edamontology.org/data_3718" ], + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3723" ; - sc:name "Morphology parameter" ; - sc:sameAs "http://edamontology.org/data_3723" ], + sc:additionalType "http://edamontology.org/data_3718" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathogenicity report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2912" ; - sc:name "Strain accession" ; - sc:sameAs "http://edamontology.org/data_2912" ], + sc:additionalType "http://edamontology.org/data_3721" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Isolation source" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3722" ; - sc:name "Physiology parameter" ; - sc:sameAs "http://edamontology.org/data_3722" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3721" ; - sc:name "Isolation source" ; - sc:sameAs "http://edamontology.org/data_3721" ], + sc:additionalType "http://edamontology.org/data_0912" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1179" ; - sc:name "NCBI taxonomy ID" ; - sc:sameAs "http://edamontology.org/data_1179" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2912" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Strain accession" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3050, @@ -99897,54 +87084,51 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_1870" ; + sc:name "Genus name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1870" ; - sc:name "Genus name" ; - sc:sameAs "http://edamontology.org/data_1870" ], + sc:additionalType "http://edamontology.org/data_2912" ; + sc:name "Strain accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2912" ; - sc:name "Strain accession" ; - sc:sameAs "http://edamontology.org/data_2912" ] ; + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1097" ; - sc:name "Sequence accession (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1097" ], + sc:additionalType "http://edamontology.org/data_1179" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "NCBI taxonomy ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1179" ; - sc:name "NCBI taxonomy ID" ; - sc:sameAs "http://edamontology.org/data_1179" ], + sc:additionalType "http://edamontology.org/data_2087" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Molecular property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0912" ; - sc:name "Nucleic acid property" ; - sc:sameAs "http://edamontology.org/data_0912" ], + sc:additionalType "http://edamontology.org/data_0912" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Nucleic acid property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2912" ; - sc:name "Strain accession" ; - sc:sameAs "http://edamontology.org/data_2912" ], + sc:additionalType "http://edamontology.org/data_2912" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Strain accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_1872" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Taxonomic classification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2087" ; - sc:name "Molecular property" ; - sc:sameAs "http://edamontology.org/data_2087" ], + sc:additionalType "http://edamontology.org/data_1097" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Sequence accession (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1872" ; - sc:name "Taxonomic classification" ; - sc:sameAs "http://edamontology.org/data_1872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal" ; sc:applicationSubCategory edam:topic_0621, @@ -99967,14 +87151,12 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Plug-in", @@ -100000,7 +87182,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -100024,14 +87206,14 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0621, @@ -100050,7 +87232,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi biotools:primaryContact "Andrea Pierleoni" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082 ; sc:citation ; @@ -100068,7 +87250,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi biotools:primaryContact "Antonio Trovato" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0637, @@ -100086,7 +87268,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi sc:url "http://AciDB.cl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3308, @@ -100103,14 +87285,12 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -100141,14 +87321,12 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0080 ; @@ -100171,18 +87349,15 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1597" ; - sc:name "Codon usage table" ; - sc:sameAs "http://edamontology.org/data_1597" ] ; + sc:additionalType "http://edamontology.org/data_1597" ; + sc:name "Codon usage table" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -100213,14 +87388,12 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -100243,7 +87416,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi biotools:primaryContact "Web Production" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -100266,7 +87439,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi biotools:primaryContact "Feedback form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3372, edam:topic_3391 ; sc:citation , @@ -100278,7 +87451,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi sc:url "https://github.com/becavin-lab/bacnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269, @@ -100295,7 +87468,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi biotools:primaryContact "Torsten H. Struck" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2269, @@ -100312,7 +87485,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi sc:url "http://code.google.com/p/bacom/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3173, @@ -100334,7 +87507,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0736, edam:topic_0769, @@ -100348,8 +87521,30 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi sc:name "BACPHLIP" ; sc:url "https://github.com/adamhockenberry/bacphlip" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0128, + edam:topic_0154, + edam:topic_3336, + edam:topic_3474 ; + sc:citation , + "pubmed:35043942" ; + sc:description "A bi-directional attention neural network for compound-protein interaction and binding affinity prediction." ; + sc:featureList edam:operation_2492, + edam:operation_3094, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "BACPI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/CSUBioGroup/BACPI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Workflow" ; sc:applicationSubCategory edam:topic_0621, @@ -100374,7 +87569,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi sc:url "https://github.com/wholeGenomeSequencingAnalysisPipeline/BacPipe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0749, @@ -100392,7 +87587,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3070, @@ -100408,7 +87603,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi biotools:primaryContact "juntao jia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -100426,26 +87621,16 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi sc:url "https://www.mathworks.com/matlabcentral/fileexchange/61666-safire_olympus_ix81" ; biotools:primaryContact "Abigail Reens" . - a sc:SoftwareApplication ; - sc:description "In recent years, high throughput sequencing of cDNA libraries (RNA-Seq) has emerged as a powerful technology for profiling gene expression, discovering previously unannotated genes, and mapping transcriptome architecture in a wide variety of bacterial species. CD Genomics provides a fast, one-stop bacterial RNA sequencing solution from the quality control of sample to comprehensive data analysis. Please contact us for more information and a detailed quote." ; - sc:name "Bacterial RNA Sequencing" ; - sc:url "https://www.cd-genomics.com/Bacterial-RNA-Sequencing.html" . - - a sc:SoftwareApplication ; - sc:description "CD Genomics is providing PacBio Single Molecular Real-Time (SMRT) sequencing to increase your research method for bacterial whole genome sequencing. A comprehensive view of the bacterial genome, including genes, regulatory regions, IS elements, phage integration sites, and base modifications is vital to understanding key traits such as antibiotic resistance, virulence, and metabolism." ; - sc:name "Bacterial Whole Genome de novo Sequencing" ; - sc:url "https://www.cd-genomics.com/Bacterial-Whole-Genome-de-novo-Sequencing.html" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3053 ; @@ -100462,20 +87647,31 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi sc:url "http://genome.jouy.inra.fr/ssb/SHOW/" ; biotools:primaryContact "Pierre Nicolas" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3070, + edam:topic_3314 ; + sc:citation ; + sc:description "Bacting is an open-source platform for chemo- and bioinformatics based on Bioclipse that defines a number of common domain objects and wraps common functionality, providing a toolkit independent, scriptable solution to handle data from the life sciences. Like Bioclipse, Bacting is written in the Java language, making use in Java-derived languages like Groovy easy, but also accessible to Python. Deposition of the Bacting package on Maven Central allows it to be easily used in Groovy scripts with @Grab instructions." ; + sc:name "Bacting" ; + sc:softwareVersion "0.0.34" ; + sc:url "https://github.com/egonw/bacting" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2091" ; - sc:name "Accession" ; - sc:sameAs "http://edamontology.org/data_2091" ], + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2091" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Accession" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:citation , "pmcid:PMC7406220", @@ -100496,8 +87692,23 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi sc:url "https://bactopia.github.io/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:36084380" ; + sc:description "BacVacDB is a manually curated comprehensive database containing information of the vaccines for human bacterial diseases" ; + sc:featureList edam:operation_2945 ; + sc:name "BacVacDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/bacvacdb/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2885, @@ -100517,14 +87728,14 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2084" ; - sc:name "Nucleic acid report" ; - sc:sameAs "http://edamontology.org/data_2084" ] ; + sc:additionalType "http://edamontology.org/data_2084" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -100544,7 +87755,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi biotools:primaryContact "Andreas Neudecker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -100559,7 +87770,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi biotools:primaryContact "Prof Paola Sebastiani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0632, @@ -100578,10 +87789,9 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3861" ; - sc:name "Electronic health record" ; - sc:sameAs "http://edamontology.org/data_3861" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3861" ; + sc:name "Electronic health record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3303 ; @@ -100595,7 +87805,7 @@ In addition, multiple sequence alignments (MSAs) can be uploaded to scan the 'bi sc:url "https://github.com/HicServices/BadMedicine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0199, @@ -100616,7 +87826,7 @@ Our services require cookies to keep track of your submissions and find your res sc:url "http://score.generesearch.ru/services/badmut/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0077, @@ -100638,7 +87848,7 @@ Our services require cookies to keep track of your submissions and find your res biotools:primaryContact "Sarah Sandmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199 ; @@ -100653,7 +87863,7 @@ Our services require cookies to keep track of your submissions and find your res biotools:primaryContact "Nicola De Maio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_3170 ; @@ -100667,8 +87877,26 @@ Our services require cookies to keep track of your submissions and find your res sc:name "baerhunter" ; sc:url "https://github.com/irilenia/baerhunter" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_2815, + edam:topic_3412, + edam:topic_3520 ; + sc:citation , + "pubmed:35403420" ; + sc:description "BAFinder is a program developed for the unknown bile acid identification from LC-MS/MS data in both positive and negative modes." ; + sc:featureList edam:operation_3643, + edam:operation_3767 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "BAFinder" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "https://bafinder.github.io/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3516, @@ -100682,7 +87910,7 @@ Our services require cookies to keep track of your submissions and find your res sc:url "http://genome.sph.umich.edu/wiki/BAFRegress" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0204, @@ -100704,7 +87932,7 @@ Our services require cookies to keep track of your submissions and find your res biotools:primaryContact "A.J. van Heel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0622, @@ -100722,7 +87950,7 @@ Our services require cookies to keep track of your submissions and find your res biotools:primaryContact "A.J. van Heel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2640, edam:topic_3053, @@ -100735,7 +87963,7 @@ Our services require cookies to keep track of your submissions and find your res sc:url "https://github.com/hart-lab/bagel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -100756,7 +87984,7 @@ Our services require cookies to keep track of your submissions and find your res biotools:primaryContact "A.J. van Heel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3174 ; @@ -100771,7 +87999,7 @@ Our services require cookies to keep track of your submissions and find your res biotools:primaryContact "Anne de Jong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0621, @@ -100792,7 +88020,7 @@ Our services require cookies to keep track of your submissions and find your res biotools:primaryContact "Jacques Oberto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -100812,7 +88040,7 @@ Our services require cookies to keep track of your submissions and find your res sc:url "http://www.motorprotein.de/bagheera" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -100826,7 +88054,7 @@ Our services require cookies to keep track of your submissions and find your res sc:url "http://valdarlab.unc.edu/bagphenotype.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -100841,14 +88069,14 @@ Our services require cookies to keep track of your submissions and find your res a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -100866,7 +88094,7 @@ Our services require cookies to keep track of your submissions and find your res biotools:primaryContact "Alejandro Quiroz-Zarate" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654, edam:topic_3050, @@ -100880,8 +88108,28 @@ Our services require cookies to keep track of your submissions and find your res sc:name "BAGS" ; sc:url "https://github.com/tadeu95/BAGS" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0202, + edam:topic_2269, + edam:topic_2840, + edam:topic_3378 ; + sc:citation , + "pubmed:35840802" ; + sc:description "Bayesian Hierarchical Analyses of MedDRA-coded Adverse Events (BAHAMA): A Bayesian hierarchical model for the detection of MedDRA coded adverse events in RCTs." ; + sc:featureList edam:operation_3435, + edam:operation_3436 ; + sc:license "Not licensed" ; + sc:name "BAHAMA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Alma-Revers/BAHAMA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:citation ; sc:description "Open source code for calculating bioaeosol deposition in lungs" ; @@ -100896,7 +88144,7 @@ Our services require cookies to keep track of your submissions and find your res biotools:primaryContact "Suvajyoti Guha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -100914,7 +88162,7 @@ Our services require cookies to keep track of your submissions and find your res sc:url "http://sourceforge.net/projects/bait/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2269, @@ -100930,7 +88178,7 @@ Our services require cookies to keep track of your submissions and find your res sc:url "https://github.com/mrborges23/Bait-ER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_3174, @@ -100949,26 +88197,26 @@ Our services require cookies to keep track of your submissions and find your res a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2914" ; - sc:name "Sequence features metadata" ; - sc:sameAs "http://edamontology.org/data_2914" ], + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; + sc:additionalType "http://edamontology.org/data_2914" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence features metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ], + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Feature table" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -100990,12 +88238,12 @@ Our services require cookies to keep track of your submissions and find your res , , ; - sc:softwareVersion "v1.3.3" ; + sc:softwareVersion "v1.5.0" ; sc:url "https://github.com/oschwengers/bakta" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -101012,7 +88260,7 @@ Our services require cookies to keep track of your submissions and find your res sc:url "https://balas.app" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_1317 ; sc:citation ; @@ -101028,7 +88276,7 @@ Our services require cookies to keep track of your submissions and find your res sc:url "https://www2.mrc-lmb.cam.ac.uk/groups/murshudov/content/balbes/balbes.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0219, @@ -101045,7 +88293,7 @@ Our services require cookies to keep track of your submissions and find your res biotools:primaryContact "Kenneth Bryan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -101063,14 +88311,14 @@ Our services require cookies to keep track of your submissions and find your res a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3170 ; @@ -101087,7 +88335,7 @@ Our services require cookies to keep track of your submissions and find your res sc:url "https://www.bosingerlab.com/baldr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3293 ; @@ -101107,7 +88355,7 @@ Our services require cookies to keep track of your submissions and find your res sc:url "http://www.bali-phy.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0130, @@ -101122,7 +88370,7 @@ Our services require cookies to keep track of your submissions and find your res sc:url "http://www.ccb.uni-saarland.de/?page_id=1127" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0091, @@ -101143,7 +88391,7 @@ Our services require cookies to keep track of your submissions and find your res sc:url "https://ball-project.org/ballaxy/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -101164,7 +88412,7 @@ Our services require cookies to keep track of your submissions and find your res biotools:primaryContact "Jack Fu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0203, edam:topic_0621, @@ -101181,14 +88429,12 @@ Our services require cookies to keep track of your submissions and find your res a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2534" ; - sc:name "Sequence attribute" ; - sc:sameAs "http://edamontology.org/data_2534" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2534" ; + sc:name "Sequence attribute" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Extract and plot Lorenz and Coverage stats directly derived from bam files" ; sc:featureList edam:operation_0258 ; sc:name "bam-lorenz-coverage" ; @@ -101197,10 +88443,10 @@ Our services require cookies to keep track of your submissions and find your res a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """The purpose of this program is to generate metrics at single nucleotide positions. There are number of metrics generated which can be useful for filtering out false positive calls. Help is currently available on the commandline if you do not supply the program @@ -101211,22 +88457,22 @@ any arguments.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071, @@ -101247,14 +88493,14 @@ any arguments.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -101274,14 +88520,14 @@ any arguments.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3006" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -101299,14 +88545,14 @@ any arguments.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -101324,18 +88570,18 @@ any arguments.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -101353,7 +88599,7 @@ any arguments.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -101375,7 +88621,7 @@ any arguments.""" ; biotools:primaryContact "National Cancer Institute" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -101392,7 +88638,7 @@ any arguments.""" ; biotools:primaryContact "Info CBCB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, edam:topic_3407 ; @@ -101407,7 +88653,7 @@ any arguments.""" ; sc:url "http://github.com/markusheinonen/bamfa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3071, @@ -101421,7 +88667,7 @@ any arguments.""" ; sc:url "https://github.com/DecodeGenetics/BamHash" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Bamkit is a collection of tools for common BAM file manipulations" ; @@ -101431,7 +88677,7 @@ any arguments.""" ; sc:url "https://github.com/hall-lab/bamkit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3169 ; @@ -101449,7 +88695,7 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" sc:url "https://bammmotif.mpibpc.mpg.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -101464,7 +88710,7 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" sc:url "http://dna.ku.dk/~sapfo/bammds.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0749, @@ -101482,7 +88728,7 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" sc:url "https://moseleybioinformaticslab.github.io/BaMORC/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0203, @@ -101504,7 +88750,7 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" sc:url "https://github.com/ncbi/BAMscale" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3308 ; @@ -101519,7 +88765,7 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" biotools:primaryContact "Bamseek issues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3574 ; @@ -101537,14 +88783,14 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0867" ; + sc:encodingFormat "http://edamontology.org/format_1921" ; + sc:name "Sequence alignment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -101563,7 +88809,7 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" biotools:primaryContact "Alessandro Mammana" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -101579,22 +88825,22 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2269, @@ -101613,27 +88859,38 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_3462" ; + sc:name "Nucleic acid sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3583" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; - sc:citation ; + sc:author ; + sc:citation , + , + "pmcid:PMC9048650", + "pubmed:35199151" ; sc:description "Tools to extract coverage informations from BAM (and CRAM) files, based on the covtobed algorithm that supports stranded coverage and physical coverage, input from streams and uses a memory-efficient algorithm." ; sc:featureList edam:operation_0260 ; sc:license "MIT" ; sc:name "bamtocov" ; sc:operatingSystem "Linux", "Mac" ; - sc:softwareVersion "2.5.0" ; - sc:url "https://telatin.github.io/bamtocov/" . + sc:softwareVersion "2.5.0", + "2.7.0", + "2.8.0" ; + sc:url "https://telatin.github.io/bamtocov/" ; + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071, @@ -101652,7 +88909,7 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" biotools:primaryContact "Derek Barnett" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -101667,7 +88924,7 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" biotools:primaryContact "Mary Kate Wing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -101684,18 +88941,15 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_1590" ; + sc:name "DNA base trimer roll angles data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1590" ; - sc:name "DNA base trimer roll angles data" ; - sc:sameAs "http://edamontology.org/data_1590" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0912" ; - sc:name "Nucleic acid property" ; - sc:sameAs "http://edamontology.org/data_0912" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0912" ; + sc:name "Nucleic acid property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -101725,7 +88979,7 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" sc:url "http://emboss.open-bio.org/rel/rel6/apps/banana.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -101742,10 +88996,9 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:name "Sequence assembly" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622 ; @@ -101771,8 +89024,32 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" biotools:primaryContact "Australia", "Ryan Wick" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "Daftar bandar togel online resmi pasaran togel singapore pools 4d sgp 49 dan dapat bonus welcome terbesar dengan hadiah bettingan full" ; + sc:name "Bandar Togel Online Singapore 4D Deposit Dana Terpercaya" ; + sc:url "https://a1togelslot.net/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "Daftar bandar togel online resmi pasaran togel singapore pools 4d sgp 49 dan dapat bonus welcome terbesar dengan hadiah bettingan full" ; + sc:name "Bandar Togel Online Singapore 4D Sgp 49 Terpercaya" ; + sc:url "http://a1slottogel.org/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "A1slottogel adalah bandar togel online resmi pasaran togel singapore pools 4d terpercaya, menyediakan bonus new member sebesar 10%" ; + sc:name "Bandar Togel Online Singapore 4D Terpercaya" ; + sc:url "https://datanomortogel.com/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "Daftar bandar togel online resmi pasaran togel singapore pools 4d sgp 49 dan dapat bonus welcome terbesar dengan hadiah bettingan full" ; + sc:name "Bandar Togel Online Singapore Pools 4D Terpercaya" ; + sc:url "https://singapore49.blogspot.com/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -101790,7 +89067,7 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" sc:url "https://bandit.uni-mainz.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168, @@ -101815,7 +89092,7 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" biotools:primaryContact "Eric W. Sayers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -101832,7 +89109,7 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" sc:url "https://github.com/lcrawlab/BANNs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation , @@ -101853,86 +89130,86 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0982" ; - sc:name "Molecule identifier" ; - sc:sameAs "http://edamontology.org/data_0982" ], + sc:additionalType "http://edamontology.org/data_1179" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "NCBI taxonomy ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1138" ; - sc:name "Pfam accession number" ; - sc:sameAs "http://edamontology.org/data_1138" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1179" ; - sc:name "NCBI taxonomy ID" ; - sc:sameAs "http://edamontology.org/data_1179" ], + sc:additionalType "http://edamontology.org/data_0982" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecule identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1176" ; - sc:name "GO concept ID" ; - sc:sameAs "http://edamontology.org/data_1176" ], + sc:additionalType "http://edamontology.org/data_1179" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "NCBI taxonomy ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ], + sc:additionalType "http://edamontology.org/data_1179" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "NCBI taxonomy ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1179" ; - sc:name "NCBI taxonomy ID" ; - sc:sameAs "http://edamontology.org/data_1179" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_1138" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pfam accession number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ], + sc:additionalType "http://edamontology.org/data_1176" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "GO concept ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1179" ; - sc:name "NCBI taxonomy ID" ; - sc:sameAs "http://edamontology.org/data_1179" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Taxonomy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1176" ; - sc:name "GO concept ID" ; - sc:sameAs "http://edamontology.org/data_1176" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_1176" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "GO concept ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ], + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Taxonomy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence cluster (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0123, @@ -101966,14 +89243,14 @@ Discovery of regulatory motifs with higher-order Bayesian Markov Models (BaMMs)" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0123, @@ -102000,7 +89277,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r biotools:primaryContact "Giuseppe Profiti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0108, @@ -102021,14 +89298,12 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2337" ; - sc:name "Resource metadata" ; - sc:sameAs "http://edamontology.org/data_2337" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2337" ; + sc:name "Resource metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation ; @@ -102039,7 +89314,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:url "http://barcdb.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -102056,7 +89331,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:url "http://wwwabi.snv.jussieu.fr/public/Barcod/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157, edam:topic_3168, @@ -102075,7 +89350,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3168, edam:topic_3452, @@ -102090,7 +89365,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:url "https://github.com/ECBCgit/Barcoder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_2229, @@ -102108,7 +89383,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:url "https://dunbarlabNIH.github.io/barcodetrackR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -102124,7 +89399,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r biotools:primaryContact "Panu Somervuo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0632, @@ -102144,7 +89419,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r biotools:primaryContact "Daniel N. Frank" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3382, @@ -102160,7 +89435,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:url "https://github.com/jacksonloper/bardensr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2269, @@ -102175,8 +89450,32 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:name "BAREB" ; sc:url "https://cran.r-project.org/package=BAREB" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Script" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3170, + edam:topic_3308, + edam:topic_3512, + edam:topic_3934 ; + sc:citation , + "pmcid:PMC8756634", + "pubmed:35021985" ; + sc:description "The baredSC (Bayesian Approach to Retreive Expression Distribution of Single Cell) is a tool that uses a Monte-Carlo Markov Chain to estimate a confidence interval on the probability density function (PDF) of expression of one or two genes from single-cell RNA-seq data." ; + sc:featureList edam:operation_2422, + edam:operation_3223, + edam:operation_3463 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "baredSC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/lldelisle/baredSC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -102194,7 +89493,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:url "https://www.inetbio.org/barleynet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0632, edam:topic_2885, @@ -102213,7 +89512,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:url "http://146.118.64.11/BarleyVar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation ; @@ -102230,7 +89529,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r biotools:primaryContact "Thomas Hamelryck" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:22244497" ; @@ -102245,15 +89544,16 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Command-line tool" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622 ; sc:author "Torsten Seemann" ; @@ -102272,7 +89572,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r "Torsten Seemann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -102284,7 +89584,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:url "http://wpicr.wpic.pitt.edu/WPICCompGen/bars.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0749, @@ -102300,7 +89600,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r biotools:primaryContact "Chongzhi Zang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -102316,7 +89616,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:url "https://zanglab.github.io/bartcancer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3169, @@ -102332,7 +89632,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:url "https://github.com/zanglab/bart3d" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0623, @@ -102352,7 +89652,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r "Song Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -102367,8 +89667,32 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:name "BARTweb" ; sc:url "http://bartweb.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Workflow" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_0769, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8962164", + "pubmed:35346022" ; + sc:description "A software tools for barcoded single-cell genomics" ; + sc:featureList edam:operation_3200, + edam:operation_3431, + edam:operation_3629, + edam:operation_3799, + edam:operation_3933 ; + sc:isAccessibleForFree true ; + sc:license "BSD-2-Clause" ; + sc:name "BarWare" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/AllenInstitute/BarWare-pipeline" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3382, @@ -102381,7 +89705,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:url "https://www.breastsymmetry.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -102397,14 +89721,12 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -102420,7 +89742,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:url "http://base.thep.lu.se" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0804, @@ -102433,7 +89755,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:url "https://github.com/automatedSequencing/BASE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0769, @@ -102446,7 +89768,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:url "http://github.com/for-giobbe/BASE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "Base Pad is a windows based base sequence editor. Search, complement, XNA to amino acid,amino acid to XNA,3 to1 & 1to 3 letter code, invert, find ORF,statistics of bps,2bp palindromes" ; @@ -102457,7 +89779,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:url "http://www.bioinformatics.org/groups/?group_id=493" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "This package provides tools to work with Illumina bcl2Fastq software.Prior to basecalling and demultiplexing using the bcl2Fastq software, basecallQC functions allow the user to update Illumina sample sheets from versions <= 1.8.9 to >= 2.1.7 standards, clean sample sheets of common problems such as invalid sample names and IDs, create read and index basemasks and the bcl2Fastq command." ; @@ -102474,21 +89796,21 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r biotools:primaryContact "Thomas Carroll" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "High performance of a GPU-accelerated variant calling tool in genome data analysis" ; sc:name "BaseNumber" ; sc:url "https://github.com/QZH2022/germline_flow" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -102508,8 +89830,25 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r sc:url "http://bioconductor.org/packages/release/bioc/html/BaseSpaceR.html" ; biotools:primaryContact "Jared O'Connell" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_3474 ; + sc:citation , + "pubmed:35482152" ; + sc:description "A new machine learning-derived questionnaire for screening obstructive sleep apnea." ; + sc:featureList edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "BASH-GN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://c2ship.org/bash-gn" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3382, @@ -102526,7 +89865,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r biotools:primaryContact "Carsten Marr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -102548,14 +89887,14 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2830, @@ -102574,7 +89913,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r biotools:primaryContact "Aly Azeem Khan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -102599,7 +89938,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r "Nils Eling" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -102619,7 +89958,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r biotools:primaryContact "Annika Buerger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation ; @@ -102636,7 +89975,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r biotools:primaryContact "Thomas Hamelryck" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0123, @@ -102655,7 +89994,7 @@ This is a legacy version, please refer to https://bio.tools/bar for the latest r "Trevor Lithgow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0160, @@ -102676,7 +90015,7 @@ Secretion systems are one of the key “weapons” used by bacteria to unleash a sc:url "http://bastionhub.erc.monash.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0154, @@ -102699,7 +90038,7 @@ Secretion systems are one of the key “weapons” used by bacteria to unleash a biotools:primaryContact "Gary Van Domselaar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Suite", "Workflow" ; @@ -102716,7 +90055,7 @@ Secretion systems are one of the key “weapons” used by bacteria to unleash a sc:url "http://www.bioinf.uni-leipzig.de/Software/BAT/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3474, @@ -102734,7 +90073,7 @@ Secretion systems are one of the key “weapons” used by bacteria to unleash a "Oisin Mac Aodha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2269, edam:topic_3676 ; @@ -102751,7 +90090,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "http://github.com/bmannakee/batcaver" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091 ; sc:description "This file batch download files from NCBI GEO according to a list of URLs." ; @@ -102764,8 +90103,27 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://www.mathworks.com/matlabcentral/fileexchange/43170-batch-download-geo-data-samples-series" ; biotools:primaryContact "Sisi Ma" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0769, + edam:topic_3382, + edam:topic_3474, + edam:topic_3500 ; + sc:citation ; + sc:description """Batch-Mask is an automated mask R-CNN workflow to isolate non-standard biological specimens for color pattern analysis. +Batch-Mask utilizes a customized region-based convolutional neural network (R-CNN) model to generate masks of snakes in photographs.""" ; + sc:featureList edam:operation_3435, + edam:operation_3799, + edam:operation_3927 ; + sc:license "MIT" ; + sc:name "Batch-Mask" ; + sc:url "https://github.com/EMBiRLab/batch-mask" ; + biotools:primaryContact "Talia Y. Moore" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0203, @@ -102782,7 +90140,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://github.com/cellgeni/batchbench" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3524 ; @@ -102798,7 +90156,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact "Bastian Schiffthaler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -102821,7 +90179,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact "Solaiappan Manimaran" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -102837,7 +90195,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://lifeinfo.shinyapps.io/batchserver/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0780 ; @@ -102851,7 +90209,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "http://pgrc.ipk-gatersleben.de/batex/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0153, edam:topic_2269, @@ -102869,7 +90227,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3295 ; sc:citation "pubmed:18612301" ; @@ -102883,7 +90241,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee "William Astle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2229, @@ -102896,7 +90254,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://github.com/mandricigor/batman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0219, @@ -102913,7 +90271,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "http://imbatmat.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -102929,7 +90287,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://code.google.com/p/batmeth/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Library" ; @@ -102945,20 +90303,8 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:softwareHelp ; sc:url "http://www.math.unipa.it/~raffaele/BATS/index.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_3170, - edam:topic_3512 ; - sc:citation ; - sc:description "> LOW CONFIDENCE! | > NAME (bats) SIMILAR TO (PUB. DIFFERENT) bio.tools/bats (BATS) | > CORRECT NAME OF TOOL COULD ALSO BE 'bat species', 'ncRNA' | A comprehensive annotation and differential expression analysis of short and long non-coding RNAs in 16 bat genomes | A comprehensive annotation and differential expression analysis of | short and long non-coding RNAs in 16 bat genomes | Nelly F Mostajo, Marie Lataretu, Sebastian Krautwurst, Florian Mock, Daniel Desiro, Kevin Lamkiewicz, Maximilian Collatz, Andreas Schoen, Friedemann Weber, Manja Marz and Martin Hölzer | If you use our data please cite: Mostajo, Nelly F., et al. \"A comprehensive annotation and differential expression analysis of short and long non-coding RNAs in 16 bat genomes.\" NAR Genomics and Bioinformatics 2.1 (2019): lqz006 | White-nose syndrome (WNS) caused by a psychrophilic fungus Pseudogymnoascus destructans in hibernating bats" ; - sc:featureList edam:operation_3192, - edam:operation_3216, - edam:operation_3792 ; - sc:name "bats_autogenerated" ; - sc:url "https://www.rna.uni-jena.de/supplements/bats/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2640, @@ -102979,7 +90325,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://github.com/hjalal/BayCANN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -102998,7 +90344,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://github.com/McIntyre-Lab/BayesASE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, @@ -103013,7 +90359,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "http://www.rannala.org/?page_id=245" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation "pubmed:19661376" ; @@ -103030,7 +90376,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee "Yun S. Song" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2885, @@ -103047,16 +90393,34 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "http://cmpg.unibe.ch/software/bayescan/" ; biotools:primaryContact "Matthieu Foll" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3379 ; + sc:citation , + "pmcid:PMC8715862", + "pubmed:34975350" ; + sc:description "An R Package for Bayesian Trial Design Using Historical Control Data." ; + sc:featureList edam:operation_2238 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "BayesCTDesign" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://CRAN.R-project.org/package=BayesCTDesign" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2769" ; - sc:name "Transcript ID" ; - sc:sameAs "http://edamontology.org/data_2769" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2769" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Transcript ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0196, @@ -103079,7 +90443,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee "Lasse Maretty" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "This software tool is used for accessing the performance of different epidemiological models (including both growth and compartmental models) in a Bayesian framework." ; @@ -103089,7 +90453,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://github.com/liqiwei2000/BayesEpiModels" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "We develop this web app to help local people assess both short- and long-term forecasts of COVID-19 across the United States at multiple levels. This has been done by implementing one time-series model (ARIMA), one compartmental models (basic SIR), and six classical growth models, which all yield satisfactory prediction results in the past and current pandemics at an early stage." ; @@ -103098,7 +90462,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://qiwei.shinyapps.io/PredictCOVID19/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3372, edam:topic_3384 ; @@ -103111,7 +90475,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://github.com/hyemin-han/BayesFactorFMRI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0610, @@ -103130,7 +90494,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact "Ilya Potapov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -103145,8 +90509,24 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "http://www.reading.ac.uk/Statistics/genetics/software.html" ; biotools:primaryContact "D.J. Balding" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_2275, + edam:topic_3336, + edam:topic_3474 ; + sc:citation , + "pubmed:35709752" ; + sc:description "BayeshERG : A Bayesian Graph Neural Network for predicting hERG blockers." ; + sc:featureList edam:operation_0478, + edam:operation_0479, + edam:operation_3927 ; + sc:license "GPL-3.0" ; + sc:name "BayeshERG" ; + sc:url "https://github.com/GIST-CSBL/BayeshERG" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3344 ; @@ -103162,7 +90542,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact "Alp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -103182,7 +90562,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact "William Chad Young" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -103202,7 +90582,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee "Ole Winther" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -103218,7 +90598,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "http://bcb.dfci.harvard.edu/bayesmendel/software.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269 ; @@ -103234,7 +90614,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "http://bioinformatics.mdanderson.org/main/BayesMix:Overview" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0140 ; sc:citation ; @@ -103250,7 +90630,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "http://mleg.cse.sc.edu/BayesMotif/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3125, @@ -103271,7 +90651,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact "Jonathan Cairns" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2269, @@ -103293,7 +90673,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact "Junbai Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3293, @@ -103309,8 +90689,32 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "http://www.stanford.edu/group/hadlylab/ssc/index.html" ; biotools:primaryContact "Christian Anderson" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0593, + edam:topic_0625, + edam:topic_3172, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC7612194", + "pubmed:35001978" ; + sc:description "A computationally efficient Bayesian seemingly unrelated regressions model for high-dimensional quantitative trait loci discovery." ; + sc:featureList edam:operation_3196, + edam:operation_3232, + edam:operation_3659, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "BayesSUR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cran.r-project.org/web/packages/BayesSUR/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2885, @@ -103329,7 +90733,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee "Lasse Maretty" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0202, edam:topic_2269, @@ -103346,8 +90750,29 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://github.com/ocbe-uio/bayesynergy" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_2815, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8667382", + "pubmed:34895155" ; + sc:description "Analysis of zero inflated dichotomous variables from a Bayesian perspective." ; + sc:featureList edam:operation_2426, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "bayesZIB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cran.r-project.org/package=bayesZIB" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -103362,14 +90787,14 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3170, @@ -103390,7 +90815,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact "Wenhao Tang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -103407,7 +90832,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact "Mathieu Gautier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -103423,7 +90848,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://github.com/melishg/BayPR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -103442,7 +90867,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact "Thomas J. Hardcastle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -103459,7 +90884,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3305, @@ -103476,7 +90901,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://github.com/tianjianzhou/BaySIR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3055 ; sc:citation ; @@ -103494,18 +90919,18 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2166" ; - sc:name "Sequence composition plot" ; - sc:sameAs "http://edamontology.org/data_2166" ], + sc:additionalType "http://edamontology.org/data_2166" ; + sc:encodingFormat "http://edamontology.org/format_2921" ; + sc:name "Sequence composition plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2921" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -103525,7 +90950,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact "Sarah Sandmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2830, @@ -103543,14 +90968,12 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3308 ; @@ -103569,7 +90992,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact "Sarah Teichmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3170, @@ -103594,10 +91017,9 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3337 ; sc:description "Database of collections of biomaterial and associated data subsumed under the umbrella of BBMRI-EU." ; @@ -103613,10 +91035,9 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3337 ; sc:citation ; @@ -103634,10 +91055,9 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3337 ; sc:citation ; @@ -103653,7 +91073,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact "Raffael Bild" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3068, @@ -103668,8 +91088,28 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "http://BBPpred.xialab.info" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3374, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9152268", + "pubmed:35656322" ; + sc:description "The BBPpredict tool is a predictor that can be used to foretell if your peptides might be blood-brain barrier penetrating peptide." ; + sc:featureList edam:operation_3936, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "BBPpredict" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://i.uestc.edu.cn/BBPpredict/cgi-bin/BBPpredict.pl" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2830, @@ -103686,7 +91126,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://bioturing.com/bbrowser/download" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_2269, @@ -103705,14 +91145,14 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1213" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -103732,7 +91172,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact "Yi-Hui Zhou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -103751,7 +91191,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "http://bcgenex.ico.unicancer.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0622, @@ -103765,7 +91205,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://store.genomecenter.ru/bc-store" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199 ; sc:description "Database platform for managing molecular data (sequence variants and DNA array) with associated phenotypes and analyzing the data for QTL mapping." ; @@ -103779,7 +91219,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "http://www.bcplatforms.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0769 ; sc:citation ; @@ -103803,7 +91243,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact "Brad Chapman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308 ; @@ -103820,7 +91260,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "http://bioinformatics.sph.harvard.edu/bcbioRNASeq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3304, @@ -103837,7 +91277,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee biotools:primaryContact "Michel Thiebaut de Schotten" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0632, @@ -103859,7 +91299,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://bcdatabaser.molecular.eco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -103881,7 +91321,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "https://mmb.irbbarcelona.org/BCE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_3306 ; @@ -103894,7 +91334,7 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee sc:url "http://thalis.biol.uoa.gr/BCEconsensus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation ; @@ -103905,18 +91345,18 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/bcepred/" . + sc:url "https://webs.iiitd.edu.in/raghava/bcepred/" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3020" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3020" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -103935,14 +91375,14 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3020" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3020" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168 ; @@ -103962,18 +91402,18 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3020" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168 ; @@ -103991,10 +91431,10 @@ This package is an implementation of the BATCAVE algorithm described in Mannakee a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Web API", @@ -104028,14 +91468,14 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0199, @@ -104070,6 +91510,8 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp "1.13", "1.14", "1.15", + "1.15.1", + "1.16", "1.2", "1.3", "1.3.1", @@ -104084,18 +91526,18 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3020" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -104113,7 +91555,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -104132,14 +91574,14 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3496" ; - sc:name "RNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3496" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3496" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal", "Web application" ; @@ -104165,8 +91607,24 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp sc:url "http://rna.tbi.univie.ac.at/bcheck/index.html" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:15921533" ; + sc:description """A database of b cell epitopes. +The prime/boost vaccine strategy has suggested that only immunodominant epitopes, rather than a large collection of defined epitopes with varying immunogenicity should be selected for vaccines.""" ; + sc:featureList edam:operation_2945 ; + sc:name "bcipep" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/bcipep/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -104189,7 +91647,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp biotools:primaryContact "Jens Meiler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -104206,7 +91664,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp sc:url "http://meilerlab.org/bclconf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259, edam:topic_2269, @@ -104224,7 +91682,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp biotools:primaryContact "Lodewyk F. A. Wessels" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0108, @@ -104244,7 +91702,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp biotools:primaryContact "Randall F. Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3168, @@ -104260,7 +91718,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp sc:url "https://sbg.github.io/bco-app/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3305, @@ -104276,18 +91734,18 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_1984" ; + sc:name "Sequence alignment (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_3474 ; @@ -104304,7 +91762,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp biotools:primaryContact "Castrense Savojardo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0749 ; @@ -104321,7 +91779,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp biotools:primaryContact "Adam Ameur" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -104338,7 +91796,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp sc:url "https://github.com/hqyone/BCR_Evaluator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2640, @@ -104357,7 +91815,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp sc:url "http://publichealth.lsuhsc.edu/BCRgt.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0634, @@ -104379,7 +91837,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp biotools:primaryContact "Khanh To Duc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0654, @@ -104399,7 +91857,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp sc:url "https://github.com/MBoemo/bcs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0204, @@ -104420,7 +91878,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp biotools:primaryContact "Jiaxing Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308 ; sc:citation ; @@ -104433,12 +91891,54 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp "Windows" ; sc:url "http://www-rcf.usc.edu/~liangche/software.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0654, + edam:topic_3295, + edam:topic_3518, + edam:topic_3674 ; + sc:citation , + "pubmed:35505215" ; + sc:description "R package that can be used to detect differentially methylated CG sites and differentially methylated regions using a Bayesian smoothing curve method." ; + sc:featureList edam:operation_3206, + edam:operation_3207, + edam:operation_3809 ; + sc:license "Not licensed" ; + sc:name "BCurve" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://www.asc.ohio-state.edu/statistics/statgen/SOFTWARE/BCurve/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0804, + edam:topic_2229, + edam:topic_2259, + edam:topic_3934 ; + sc:citation , + "pubmed:35933055" ; + sc:description "BCyto is an open-source project that provides an user-friendly, high-performance interface for Flow Cytometry analysis in R." ; + sc:featureList edam:operation_0337, + edam:operation_0560, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "BCyto" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BonilhaCaio/BCyto" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3071 ; @@ -104460,7 +91960,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp sc:url "http://www.sing-group.org/BDBM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -104477,7 +91977,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp sc:url "http://t21omics.cngb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275 ; sc:citation ; @@ -104489,7 +91989,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp sc:url "http://www.biotec.tu-dresden.de/~bhuang/bdock/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3050, @@ -104506,7 +92006,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp biotools:primaryContact "Vijay Barve" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0108, @@ -104525,7 +92025,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp sc:url "http://danioffenlab.pythonanywhere.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -104543,7 +92043,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp biotools:primaryContact "Aaron T. L. Lun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0622, @@ -104564,7 +92064,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp biotools:primaryContact "Contact list" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0632 ; sc:description "Beacon Designer™ automates the design of real time primers and probes. It is used by molecular biologists worldwide to design successful real time PCR assays. It saves the time and the money involved in failed experiments. Beacon Designer™ is a flexible solution to your real time primer and probe design needs and pays for itself many times over." ; @@ -104580,18 +92080,18 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ] ; + sc:additionalType "http://edamontology.org/data_2295" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_2755" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Transcription factor name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2755" ; - sc:name "Transcription factor name" ; - sc:sameAs "http://edamontology.org/data_2755" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -104612,7 +92112,7 @@ BcForms includes a grammar for describing forms of macromolecular complexes comp "Giulio Pavesi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web service" ; sc:applicationSubCategory edam:topic_2533, @@ -104630,7 +92130,7 @@ While not primarily documented for independent deployment, the Beacon+ code base biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -104651,7 +92151,7 @@ While not primarily documented for independent deployment, the Beacon+ code base biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -104672,7 +92172,7 @@ While not primarily documented for independent deployment, the Beacon+ code base biotools:primaryContact "Jan Oosting" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3365, @@ -104693,7 +92193,7 @@ While not primarily documented for independent deployment, the Beacon+ code base biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306 ; sc:description "Monte-Carlo simulation to calculate position of micronsized particles in optical trap" ; @@ -104707,7 +92207,7 @@ While not primarily documented for independent deployment, the Beacon+ code base biotools:primaryContact "Fabian Czerwinski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, @@ -104723,7 +92223,7 @@ While not primarily documented for independent deployment, the Beacon+ code base sc:url "https://bitbucket.org/t_scherr/beadnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169 ; sc:citation "pubmed:21646344" ; @@ -104739,10 +92239,19 @@ While not primarily documented for independent deployment, the Beacon+ code base "Thomas Down" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; - sc:citation ; + sc:citation , + , + , + , + "pmcid:PMC4716681", + "pmcid:PMC6128308", + "pmcid:PMC8551421", + "pubmed:26748515", + "pubmed:30100085", + "pubmed:34478634" ; sc:description "Beagle is a software package that performs genotype calling, genotype phasing, imputation of ungenotyped markers, and identity-by-descent segment detection." ; sc:featureList edam:operation_3454, edam:operation_3557 ; @@ -104754,7 +92263,7 @@ While not primarily documented for independent deployment, the Beacon+ code base sc:url "https://faculty.washington.edu/browning/beagle/beagle.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3293, @@ -104776,7 +92285,7 @@ While not primarily documented for independent deployment, the Beacon+ code base biotools:primaryContact "Daniel L. Ayres" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -104793,20 +92302,8 @@ While not primarily documented for independent deployment, the Beacon+ code base biotools:primaryContact "Contact List", "Marco Pietrosanto" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3382 ; - sc:citation , - "pmcid:PMC6889808", - "pubmed:31613246" ; - sc:description """Development of a beam propagation method to simulate the point spread function degradation in scattering media. - -Our model based on the beam propagation method calculates the wavefront propagation in the scattering medium with the scattering mean free path and anisotropy factor characterized""" ; - sc:featureList edam:operation_3454 ; - sc:name "beam propagation method" ; - sc:url "https://github.com/BUNPC/Beam-Propagation-Method" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation , @@ -104825,7 +92322,7 @@ Our model based on the beam propagation method calculates the wavefront propagat biotools:primaryContact "Con" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -104845,7 +92342,7 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based sc:url "https://github.com/lcnbeapp/beapp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659 ; sc:citation ; @@ -104861,7 +92358,7 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based sc:url "http://bioinformatica.uniroma2.it/BEAR/BEAR_Encoder.zip" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -104877,7 +92374,7 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based sc:url "http://giscompute.gis.a-star.edu.sg/~vega/BEARR1.0/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308 ; @@ -104894,11 +92391,17 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based biotools:primaryContact "Benjamin Schuster-Boeckler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3293 ; - sc:citation ; + sc:citation , + , + , + "pmcid:PMC2247476", + "pmcid:PMC6007674", + "pubmed:17996036", + "pubmed:29942656" ; sc:description "The Bayesian Evolutionary Analysis Sampling Trees is a cross-platform program for Bayesian analysis of molecular sequences using MCMC (Markov chain Monte Carlo). It is entirely orientated towards rooted, time-measured phylogenies inferred using strict or relaxed molecular clock models. It can be used as a method of reconstructing phylogenies but is also a framework for testing evolutionary hypotheses without conditioning on a single tree topology." ; sc:featureList edam:operation_0492, edam:operation_0540, @@ -104911,7 +92414,7 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based sc:url "http://beast.bio.ed.ac.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0194, @@ -104927,8 +92430,24 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based sc:softwareVersion "2.5.1" ; sc:url "http://www.beast2.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_2269, + edam:topic_3293, + edam:topic_3316 ; + sc:citation ; + sc:description "Beastiary is designed for visualising and analysing MCMC trace files generated from Bayesian phylogenetic analyses. Beastiary works in real-time and on remote servers (e.g. a HPC). Its goal is to be a beautiful and simple yet powerful tool for Bayesian phylogenetic inference." ; + sc:featureList edam:operation_0323, + edam:operation_0337 ; + sc:name "Beastiary" ; + sc:softwareHelp ; + sc:url "https://github.com/Wytamma/beastiary" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3293 ; @@ -104944,14 +92463,14 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2548" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3295 ; @@ -104969,7 +92488,7 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based biotools:primaryContact "Kemal Akman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -104990,7 +92509,7 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based "Yves Dehouck" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation , @@ -105007,7 +92526,7 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -105026,7 +92545,7 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based sc:url "https://github.com/developerpiru/BEAVR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_3068, @@ -105044,14 +92563,14 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2548" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3295, @@ -105071,7 +92590,7 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based biotools:primaryContact "Markus Merl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2815, @@ -105088,7 +92607,7 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based biotools:primaryContact "M S Kobor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3345 ; sc:citation ; @@ -105104,7 +92623,7 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based biotools:primaryContact "Patrice Godard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3173, edam:topic_3293 ; @@ -105118,8 +92637,22 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based sc:url "https://github.com/james-e-barrett/bed" ; biotools:primaryContact "James E. Barrett" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3068 ; + sc:description "Convert a BED format file of the proteins from a proteomics search database into a tabular format for the Multiomics Visualization Platform (MVP)." ; + sc:featureList edam:operation_3434 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "bed to protein map" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://usegalaxy.org.au/root?tool_id=toolshed.g2.bx.psu.edu/repos/galaxyp/bed_to_protein_map/bed_to_protein_map/0.2.0" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -105132,7 +92665,7 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based sc:url "https://www.encodeproject.org/software/bedgraphtobigwig/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0160 ; @@ -105148,7 +92681,7 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based sc:url "https://bedops.readthedocs.io/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:32117432" ; sc:description "An Integrated Web Server Application to Perform Intersection, Visualization, and Functional Annotation of Genomic Regions From Multiple Datasets" ; @@ -105157,7 +92690,7 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based sc:url "http://imgsb.org/bedsect/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -105171,7 +92704,7 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based sc:url "https://bedshift.databio.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , ; sc:description "Bedtk is a set of simple tools to process BED files. It so far implements intersection, subtraction, sorting, merging and computing the breadth of coverage." ; @@ -105183,7 +92716,7 @@ The Boston EEG Automated Processing Pipeline (BEAPP) is a modular, Matlab-based sc:url "https://github.com/lh3/bedtk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:description """Convert a bed file to a genePred file. If BED has at least 12 columns, then a genePred with blocks is created. Otherwise single-exon genePreds are @@ -105193,7 +92726,7 @@ created.""" ; sc:url "https://github.com/ENCODE-DCC/kentUtils" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0622 ; @@ -105210,14 +92743,14 @@ created.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -105237,18 +92770,18 @@ created.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -105267,14 +92800,14 @@ created.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -105294,50 +92827,50 @@ created.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -105355,18 +92888,18 @@ created.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -105384,22 +92917,22 @@ created.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168 ; @@ -105419,22 +92952,22 @@ created.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -105452,7 +92985,7 @@ created.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0654, @@ -105467,7 +93000,7 @@ created.""" ; sc:url "http://phanstiel-lab.med.unc.edu/bedtoolsr.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -105482,7 +93015,7 @@ created.""" ; "Yunlong Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -105501,7 +93034,7 @@ created.""" ; sc:url "http://bike-bee.snu.ac.kr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3697, @@ -105522,7 +93055,7 @@ created.""" ; sc:url "https://github.com/CSB5/BEEM-static" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -105539,8 +93072,25 @@ created.""" ; sc:name "BeEP" ; sc:url "http://www.embnet.qb.fcen.uba.ar/embnet/beep.php" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2269 ; + sc:citation , + "pubmed:35959988" ; + sc:description "BEER implements a Bayesian model for analyzing phage-immunoprecipitation sequencing (PhIP-seq) data. Given a PhIPData object, BEER returns posterior probabilities of enriched antibody responses, point estimates for the relative fold-change in comparison to negative control samples, and more." ; + sc:featureList edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "BEER" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bioconductor.org/packages/release/bioc/html/beer.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -105556,7 +93106,7 @@ created.""" ; sc:url "http://www.beespace.illinois.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -105569,7 +93119,7 @@ created.""" ; sc:url "http://beetl.github.io/BEETL/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -105593,14 +93143,12 @@ created.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0960" ; - sc:name "User metadata" ; - sc:sameAs "http://edamontology.org/data_0960" ] ; + sc:additionalType "http://edamontology.org/data_0960" ; + sc:name "User metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2531" ; + sc:name "Experiment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3332 ; sc:citation ; @@ -105618,7 +93166,7 @@ created.""" ; biotools:primaryContact "Jan Řezáč" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3300, @@ -105639,7 +93187,7 @@ created.""" ; sc:url "https://github.com/GliaLab/Begonia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3304, @@ -105659,7 +93207,7 @@ created.""" ; sc:url "https://github.com/DeNardoLab/BehaviorDEPOT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3071, @@ -105675,7 +93223,7 @@ created.""" ; biotools:primaryContact "Martin Hofmann-Apitius" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3304, @@ -105691,7 +93239,7 @@ created.""" ; sc:url "https://r-spatialecology.github.io/belg/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -105709,7 +93257,7 @@ created.""" ; sc:url "http://belief.scai.fraunhofer.de/BeliefDashboard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3169, @@ -105728,14 +93276,12 @@ created.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -105750,7 +93296,7 @@ created.""" ; biotools:primaryContact "Erik LL Sonnhammer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -105766,7 +93312,7 @@ created.""" ; sc:url "https://github.com/LifanLiang/EM_BMF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0769, @@ -105783,7 +93329,7 @@ created.""" ; "Stefan Michiels" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3314, edam:topic_3318 ; @@ -105799,7 +93345,7 @@ created.""" ; biotools:primaryContact "Christine Davis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_0218, @@ -105815,7 +93361,7 @@ created.""" ; sc:url "http://bio-nlp.org/bentodemo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_0602, @@ -105837,7 +93383,7 @@ created.""" ; "Zuhong Lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -105856,14 +93402,14 @@ created.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3534 ; @@ -105882,7 +93428,7 @@ created.""" ; biotools:primaryContact "Morten Nielsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3489 ; sc:citation ; @@ -105897,7 +93443,7 @@ created.""" ; sc:url "http://infos.korea.ac.kr/berex/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0194, @@ -105919,8 +93465,28 @@ created.""" ; sc:url "http://phylogenomics.berkeley.edu/" ; biotools:primaryContact "Kimmen Sjölander" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_3316 ; + sc:description "Trim, circularise, orient and filter long read bacterial genome assemblies" ; + sc:featureList edam:operation_3192, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "berokka" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/tseemann/berokka" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0634, @@ -105936,8 +93502,42 @@ created.""" ; sc:url "https://github.com/ncbi/bert_gt" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0218, + edam:topic_0601, + edam:topic_3474 ; + sc:citation , + "pubmed:34643684" ; + sc:description "BERT-Kcr is a tool for prediction of lysine crotonylation sites by a transfer learning method with pre-trained BERT models." ; + sc:featureList edam:operation_0417, + edam:operation_0477, + edam:operation_3645 ; + sc:isAccessibleForFree true ; + sc:name "BERT-Kcr" ; + sc:url "http://zhulab.org.cn/BERT-Kcr_models/" ; + biotools:primaryContact . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_0749, + edam:topic_3474 ; + sc:citation , + "pubmed:35863177" ; + sc:description "An improved sequence-based predictor of DNA promoter using BERT pre-trained model and SHAP feature selection." ; + sc:featureList edam:operation_0440, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "BERT-Promoter" ; + sc:url "https://github.com/khanhlee/bert-promoter" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3373, @@ -105953,7 +93553,7 @@ created.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -105971,7 +93571,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/s6juncheng/BERTMHC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -105988,8 +93588,33 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:name "BESC" ; sc:url "http://explainbio.com/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0769, + edam:topic_2229, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC8573822", + "pubmed:34761219" ; + sc:description "The BESCA (BEyond Single Cell Analysis) package contains many useful python functions to use for your single-cell analysis." ; + sc:featureList edam:operation_0314, + edam:operation_0335, + edam:operation_2436, + edam:operation_3629 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Besca" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/bedapub/besca" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation , @@ -106009,7 +93634,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Kristoffer Sahlin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2814, @@ -106025,7 +93650,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Alexander Popov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_3295, @@ -106042,7 +93667,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://best.psych.ac.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -106060,7 +93685,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Vikas Thapa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3068, @@ -106079,7 +93704,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Jaewoo Kang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0736, @@ -106100,7 +93725,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip "József Kardos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0166, @@ -106116,7 +93741,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://voronoi.hanyang.ac.kr/betacavityweb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2269, edam:topic_3299 ; @@ -106133,7 +93758,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/ksiewert/BetaScan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation ; @@ -106148,7 +93773,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://yunliweb.its.unc.edu/betaseq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -106165,11 +93790,11 @@ Improves MHC-peptide class II interaction prediction with transformer and multip "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/betatpred/" ; + sc:url "https://webs.iiitd.edu.in/raghava/betatpred/" ; biotools:primaryContact "Dr. G.P.S. Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -106186,12 +93811,24 @@ Improves MHC-peptide class II interaction prediction with transformer and multip "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/betatpred2/" ; + sc:url "https://webs.iiitd.edu.in/raghava/betatpred2/" ; biotools:primaryContact "Dr. G.P.S. Raghava", "Harpreet Kaur" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:11934756" ; + sc:description "Beta Turn predictions in proteins" ; + sc:featureList edam:operation_2945 ; + sc:name "betatpred3" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/betatpred3/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0166, @@ -106202,12 +93839,12 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:name "Betaturns" ; sc:operatingSystem "Linux" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/betaturns/" ; + sc:url "https://webs.iiitd.edu.in/raghava/betaturns/" ; biotools:primaryContact "Dr. G.P.S. Raghava", "Harpreet Kaur" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3173, @@ -106220,7 +93857,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/gevaertlab/BetaVAEImputation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0166, @@ -106236,18 +93873,17 @@ Improves MHC-peptide class II interaction prediction with transformer and multip a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0889" ; - sc:name "Structural profile" ; - sc:sameAs "http://edamontology.org/data_0889" ], + sc:additionalType "http://edamontology.org/data_0889" ; + sc:name "Structural profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -106272,14 +93908,14 @@ Improves MHC-peptide class II interaction prediction with transformer and multip a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0820 ; sc:citation ; @@ -106298,7 +93934,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip "Pier Luigi Martelli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -106315,7 +93951,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/lujonathanh/BETS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0219, @@ -106329,7 +93965,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Alan Dombkowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, edam:topic_2640 ; @@ -106345,7 +93981,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3297, edam:topic_3301, @@ -106361,8 +93997,31 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://sing.ei.uvigo.es/bew" ; biotools:primaryContact "Anália García Lourenço" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0654, + edam:topic_2269, + edam:topic_3295, + edam:topic_3305, + edam:topic_3411 ; + sc:citation , + "pmcid:PMC9128296", + "pubmed:35610583" ; + sc:description "Measuring the degree of the skewness of the X chromosome inactivation by the Bayesian method, the penalized Fieller's method and the Fieller's method." ; + sc:featureList edam:operation_0484, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "BEXCIS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Wen-YiYu/BEXCIS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3050, @@ -106385,25 +94044,52 @@ Improves MHC-peptide class II interaction prediction with transformer and multip . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Gene expression profile" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression matrix" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3768" ; + sc:name "Clustered expression profiles" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:name "Statistical estimate score" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1621" ; + sc:name "Pharmacogenomic test report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0208, edam:topic_2229, edam:topic_2640, edam:topic_3170, edam:topic_3308 ; - sc:citation ; + sc:citation , + "pmcid:PMC8675493", + "pubmed:34911571" ; sc:description "Beyondcell is a computational methodology for identifying tumour cell subpopulations with distinct drug responses in single-cell RNA-seq data and proposing cancer-specific treatments." ; sc:featureList edam:operation_0313, edam:operation_3223, edam:operation_4009 ; + sc:isAccessibleForFree true ; sc:license "Other" ; sc:name "Beyondcell" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:provider "BU_CNIO", + "CNIO" ; + sc:softwareHelp , + ; + sc:softwareVersion "1.3.3" ; sc:url "https://gitlab.com/bu_cnio/beyondcell/" ; - biotools:primaryContact "Fátima Al-Shahrour" . + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3673 ; sc:citation "pubmed:19508732" ; @@ -106420,7 +94106,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Nils Homer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -106435,7 +94121,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Heng Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, @@ -106451,7 +94137,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Pall Melsted" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0749, @@ -106466,7 +94152,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://github.com/fhh2626/BFEE2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -106480,7 +94166,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/maiziezhoulab/Bfimpute" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -106498,7 +94184,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Alberto Comin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0820, edam:topic_2229, @@ -106518,7 +94204,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Daniel Šmít" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -106536,7 +94222,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://www.stat.duke.edu/research/software/west/bfrm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0078, @@ -106555,7 +94241,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Iain Wallace" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0797, @@ -106570,7 +94256,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Alex Buerkle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -106594,30 +94280,24 @@ Improves MHC-peptide class II interaction prediction with transformer and multip a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ] ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_0928" ; + sc:name "Gene expression profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0797, @@ -106636,7 +94316,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://bgee.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -106651,7 +94331,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://bioconductor.org/packages/BgeeCall/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0089, @@ -106671,7 +94351,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip "Andrea Komljenovic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -106686,8 +94366,30 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:softwareVersion "1.01" ; sc:url "http://bgf.genomics.org.cn/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_0625, + edam:topic_2269, + edam:topic_3372 ; + sc:citation , + "pmcid:PMC9434216", + "pubmed:35924977" ; + sc:description "The BGLR-R package implements various types of single-trait shrinkage variable selection Bayesian regressions." ; + sc:featureList edam:operation_3196, + edam:operation_3659, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "BGLR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/gdlc/BGLR-R" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -106707,7 +94409,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Alex Lewin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0623, @@ -106728,7 +94430,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://www.ncbi.nlm.nih.gov/projects/gv/rbc/xslcgi.fcgi?cmd=bgmut/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -106748,7 +94450,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Farouk S. Nathoo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3277, @@ -106763,7 +94465,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Heng Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_2830, @@ -106777,7 +94479,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://clingen.igib.res.in/bgvar/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -106794,7 +94496,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/n-mounier/bGWAS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2269, @@ -106814,7 +94516,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Ernest Turro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082 ; @@ -106829,7 +94531,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://www.scfbio-iitd.res.in/bhageerath/index.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3324 ; @@ -106843,7 +94545,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://cran.r-project.org/package=BHAI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -106861,11 +94563,11 @@ Improves MHC-peptide class II interaction prediction with transformer and multip "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/bhairpred/" ; + sc:url "https://webs.iiitd.edu.in/raghava/bhairpred/" ; biotools:primaryContact "GPS Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269 ; @@ -106883,7 +94585,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Rich Savage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -106899,7 +94601,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://www.ssg.uab.edu/bhglm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -106918,7 +94620,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/princeps091-binf/BHi-Cect" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2885, @@ -106933,7 +94635,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Juexin Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3302, edam:topic_3500 ; @@ -106954,7 +94656,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Colin B. Fogarty a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -106970,8 +94672,19 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:softwareVersion "v2" ; sc:url "http://biclue.mpi-inf.mpg.de/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation ; + sc:description "A Database for Benzylisoquinoline Alkaloids is an attempt to gather the scattered information related to the BIA's." ; + sc:featureList edam:operation_2945 ; + sc:name "BIAdb" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/biadb/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench", "Workflow" ; sc:applicationSubCategory edam:topic_0769, @@ -106989,7 +94702,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://biaflows.neubias.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_2259 ; sc:author ; @@ -107008,7 +94721,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://sbi.imim.es/web/index.php/research/servers/biana?page=biana.server" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3334, @@ -107028,7 +94741,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0157, @@ -107048,7 +94761,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://biapss.chem.iastate.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0157, @@ -107068,7 +94781,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://biasaway.uio.no" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0102, @@ -107085,7 +94798,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://bibliome.ai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2885 ; @@ -107099,7 +94812,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://skyline.gs.washington.edu/labkey/project/home/software/BiblioSpec/begin.view" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0605, @@ -107118,7 +94831,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Pierre Gestraud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3305, @@ -107133,14 +94846,12 @@ Improves MHC-peptide class II interaction prediction with transformer and multip a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -107158,7 +94869,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Jan Baumbach" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -107174,7 +94885,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://www.australianprostatecentre.org/research/software/seed-based-biclustering-of-gene-expression-data" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -107194,7 +94905,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://exbio.wzw.tum.de/bicon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -107215,7 +94926,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://cran.r-project.org/package=BICORN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0203, @@ -107233,7 +94944,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Rodrigo Santamaría" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web API" ; sc:applicationSubCategory edam:topic_0602, @@ -107252,7 +94963,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Rui Henriques" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:author "Bioinformatics Unit. CNIO: Spanish National Cancer Research Centre", @@ -107269,7 +94980,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://www.sing-group.org/bicycle/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, @@ -107289,7 +95000,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "George M. Spyrou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3169, @@ -107306,7 +95017,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Theodore J. Perkins, PhD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3050, @@ -107320,7 +95031,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Javier Otegui" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3334, @@ -107341,7 +95052,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://bids-apps.neuroimaging.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3384 ; @@ -107355,7 +95066,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Peer Herholz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -107382,7 +95093,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "BiERapp team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3305, @@ -107398,7 +95109,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://bifap.aemps.es" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -107417,7 +95128,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Ahrim Youn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -107433,7 +95144,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://bioinfo.utu.fi/BiForceToolbox/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -107450,7 +95161,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/pmelsted/bifrost" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0102, @@ -107468,7 +95179,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://bigfam.bioinformatics.nl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Workflow" ; @@ -107491,7 +95202,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/medema-group/BiG-MAP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, edam:topic_0602, @@ -107510,7 +95221,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/pereiramemo/BiG-MEx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_3170 ; @@ -107526,7 +95237,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://lindsayrutter.github.io/bigPint" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3053 ; sc:description "BiG-SLiCE is a Python-based tool to perform a large-scale (>> 1 million) clustering analysis of Biosynthetic Gene Cluster data." ; @@ -107538,7 +95249,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/medema-group/bigslice" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, edam:topic_2640, @@ -107557,7 +95268,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/TomasYang001/BiGAN-lncRNA-disease-associations-prediction.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -107573,7 +95284,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/caseypaquola/BigBrainWarp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -107592,7 +95303,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "José M. Abuín" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Plug-in" ; sc:applicationSubCategory edam:topic_0611, @@ -107607,7 +95318,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/bigdataprocessor/bigdataprocessor2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -107627,8 +95338,27 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Anand K. Gavai", "Hannes Hettling" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3336 ; + sc:author , + "Maxim Nazarov" ; + sc:citation , + "pubmed:34608741" ; + sc:description "BIGL R-package which allows for a quick screening of drug combinations. Combination therapies are increasingly adopted as the standard of care for various diseases to improve treatment response, minimise the development of resistance and or minimise adverse events. Therefore, synergistic combinations are screened early in the drug discovery process, in which their potential is evaluated by comparing the observed combination effect to that expected under a null model." ; + sc:featureList edam:operation_2238 ; + sc:license "GPL-3.0" ; + sc:name "BIGL" ; + sc:softwareHelp , + , + ; + sc:url "https://CRAN.R-project.org/package=BIGL" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0199, @@ -107648,7 +95378,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip "Yun Joo Yoo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -107667,7 +95397,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Tyler Gorrie-Stone" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0605, @@ -107686,7 +95416,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Peter M. Haverty" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0654, @@ -107702,7 +95432,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://gitlab.com/alexmascension/bigmpi4py" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Workbench" ; sc:applicationSubCategory edam:topic_0077, @@ -107729,7 +95459,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Adam Hospital" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3305, edam:topic_3318, @@ -107747,7 +95477,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://bigoprogram.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -107763,22 +95493,22 @@ Improves MHC-peptide class II interaction prediction with transformer and multip a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3546" ; - sc:name "Image metadata" ; - sc:sameAs "http://edamontology.org/data_3546" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; + sc:additionalType "http://edamontology.org/data_3546" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Image metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3546" ; - sc:name "Image metadata" ; - sc:sameAs "http://edamontology.org/data_3546" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3546" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Image metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3384 ; sc:author "Erwin Vast" ; @@ -107798,7 +95528,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Stefan Klein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -107817,7 +95547,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip "Michael G B Blum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3569, edam:topic_3570 ; @@ -107834,7 +95564,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip "Michael G B Blum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3168, @@ -107851,7 +95581,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://dnanexus.github.io/bigtop/build/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, edam:topic_3316, @@ -107872,7 +95602,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/ikmb/gwas-assoc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:description "A GWAS Quality Control Pipeline for big data" ; sc:isAccessibleForFree true ; @@ -107883,14 +95613,14 @@ Improves MHC-peptide class II interaction prediction with transformer and multip a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3006" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -107905,8 +95635,28 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://hgdownload.cse.ucsc.edu/downloads.html" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0601, + edam:topic_3301 ; + sc:citation , + "pmcid:PMC8621415", + "pubmed:34828801" ; + sc:description "BIKE is a Bayesian dietary exposure assessment model for microbiological and chemical hazards." ; + sc:featureList edam:operation_0337, + edam:operation_0479, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "BIKE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/jukran/BIKE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0102, @@ -107920,8 +95670,24 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://bioinformaticstools.mayo.edu/research/bima/" ; biotools:primaryContact "George Vasmastzis" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3305 ; + sc:citation , + "pmcid:PMC8580266" ; + sc:description "BIMAM (Bayesian IMputation and Analysis Model) is a tool for imputing variables missing across datasets using a Bayesian imputation and analysis model. The BIMAM tool is a user-friendly, freely available tool that does not require knowledge of Bayesian methods. The combination of multiple datasets is routine in modern epidemiology, but different studies may have measured different sets of variables; this is often inefficiently dealt with by excluding studies or dropping variables. Multilevel multiple imputation methods to impute these “systematically” missing data (as opposed to “sporadically” missing data within a study) are available, but problems may arise when many random effects are needed in the analysis and imputation models to allow for heterogeneity across studies. BIMAM implements a Bayesian method that works well in this situation." ; + sc:featureList edam:operation_3435, + edam:operation_3557, + edam:operation_3659 ; + sc:name "BIMAM" ; + sc:operatingSystem "Windows" ; + sc:url "http://www.alecstudy.org/bimam" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation , @@ -107937,7 +95703,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://www.haplotype.org/bimbam.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -107953,8 +95719,28 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://www.helsinki.fi/~mjxpirin/download.html" ; biotools:primaryContact "Matti Pirinen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0602, + edam:topic_2640, + edam:topic_3170 ; + sc:citation , + "pubmed:35998480" ; + sc:description "A novel Bioinformatic Inference and Multiscale Modeling (BIMM) method that can discovers hub genes of TGFβ, MYC, and SMAD3 varied underlie DEX treatment" ; + sc:featureList edam:operation_1781, + edam:operation_2436, + edam:operation_3928 ; + sc:license "Not licensed" ; + sc:name "BIMM" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "https://github.com/chenm19/BIMM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -107975,7 +95761,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://www.breedwithbims.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3673, @@ -107997,7 +95783,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Matthew DeMaere" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3517 ; @@ -108011,7 +95797,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/venyao/binQTL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275, @@ -108028,7 +95814,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Jacob Durrant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3474, @@ -108045,7 +95831,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Dr Oluleye Babatunde" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Creates a set of binary volumes from a volume of labels (integers value)" ; sc:isAccessibleForFree true ; @@ -108058,7 +95844,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Christopher Coello" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -108075,18 +95861,15 @@ Improves MHC-peptide class II interaction prediction with transformer and multip a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1174" ; - sc:name "ChEBI ID" ; - sc:sameAs "http://edamontology.org/data_1174" ] ; + sc:additionalType "http://edamontology.org/data_1174" ; + sc:name "ChEBI ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_0962" ; + sc:name "Small molecule report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258 ; @@ -108107,7 +95890,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Pablo Moreno" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -108129,7 +95912,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Christopher W. V. Hogue" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3071 ; @@ -108146,70 +95929,62 @@ Improves MHC-peptide class II interaction prediction with transformer and multip a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ], + sc:additionalType "http://edamontology.org/data_1187" ; + sc:name "PubMed ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1187" ; - sc:name "PubMed ID" ; - sc:sameAs "http://edamontology.org/data_1187" ], + sc:additionalType "http://edamontology.org/data_1009" ; + sc:name "Protein name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1009" ; - sc:name "Protein name" ; - sc:sameAs "http://edamontology.org/data_1009" ], + sc:additionalType "http://edamontology.org/data_2580" ; + sc:name "BindingDB Monomer ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1009" ; - sc:name "Protein name" ; - sc:sameAs "http://edamontology.org/data_1009" ], + sc:additionalType "http://edamontology.org/data_1009" ; + sc:name "Protein name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2580" ; - sc:name "BindingDB Monomer ID" ; - sc:sameAs "http://edamontology.org/data_2580" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1566" ; - sc:name "Protein-ligand interaction report" ; - sc:sameAs "http://edamontology.org/data_1566" ], + sc:additionalType "http://edamontology.org/data_0962" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Small molecule report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ], + sc:additionalType "http://edamontology.org/data_1566" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein-ligand interaction report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1566" ; - sc:name "Protein-ligand interaction report" ; - sc:sameAs "http://edamontology.org/data_1566" ], + sc:additionalType "http://edamontology.org/data_1566" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein-ligand interaction report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ], + sc:additionalType "http://edamontology.org/data_1566" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein-ligand interaction report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ], + sc:additionalType "http://edamontology.org/data_0962" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Small molecule report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1566" ; - sc:name "Protein-ligand interaction report" ; - sc:sameAs "http://edamontology.org/data_1566" ], + sc:additionalType "http://edamontology.org/data_0962" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Small molecule report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0962" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Small molecule report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154 ; @@ -108226,7 +96001,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, edam:topic_0749, @@ -108241,7 +96016,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/CSB-KaracaLab/BINDKIN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -108258,7 +96033,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "http://bioinformatics.ksu.edu/bindn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2229, @@ -108276,7 +96051,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip sc:url "https://github.com/KChen-lab/bindSC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -108296,7 +96071,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Gary D. Bader" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0099, @@ -108315,7 +96090,7 @@ Improves MHC-peptide class II interaction prediction with transformer and multip biotools:primaryContact "Yael Mandel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -108335,22 +96110,19 @@ To begin DE analysis of Bulk RNA-Seq data, first a count table with a specific f a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2338" ; - sc:name "Ontology identifier" ; - sc:sameAs "http://edamontology.org/data_2338" ], + sc:additionalType "http://edamontology.org/data_2338" ; + sc:name "Ontology identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2338" ; - sc:name "Ontology identifier" ; - sc:sameAs "http://edamontology.org/data_2338" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2338" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Ontology identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0085 ; sc:citation ; @@ -108366,8 +96138,30 @@ To begin DE analysis of Bulk RNA-Seq data, first a count table with a specific f sc:url "http://www.psb.ugent.be/cbd/papers/BiNGO/Home.html" ; biotools:primaryContact "Steven Maere" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0769, + edam:topic_2885 ; + sc:citation , + "pmcid:PMC8933389", + "pubmed:35437391" ; + sc:description "BinMat offers users of fragment analysis methods an efficient and easy-to-use platform to process their binary data matrices, by means of either a graphical user interface or an R package." ; + sc:featureList edam:operation_0337, + edam:operation_0543, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "BinMat" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://clarkevansteenderen.shinyapps.io/BINMAT/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -108390,7 +96184,7 @@ To begin DE analysis of Bulk RNA-Seq data, first a count table with a specific f biotools:primaryContact "Mihai Pop" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610 ; sc:citation , "pmcid:PMC6802074", @@ -108407,8 +96201,29 @@ Kernel density and distribution estimation for interval-grouped data (Reyes, Fra sc:name "binnednp" ; sc:url "https://cran.r-project.org/package=binnednp" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_3172, + edam:topic_3360, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9345815", + "pubmed:35917032" ; + sc:description "A spectral binning approach for flow infusion electrospray high resolution mass spectrometry (FIE-HRMS) metabolome fingerprinting data." ; + sc:featureList edam:operation_3215, + edam:operation_3436, + edam:operation_3704 ; + sc:license "GPL-3.0" ; + sc:name "binneR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://aberhrml.github.io/binneR/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation ; sc:description "Scripts required to calculate tetramer frequencies and create input files for ESOM" ; @@ -108419,7 +96234,7 @@ Kernel density and distribution estimation for interval-grouped data (Reyes, Fra sc:url "https://github.com/tetramerFreqs/Binning" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_2828 ; @@ -108437,7 +96252,7 @@ Kernel density and distribution estimation for interval-grouped data (Reyes, Fra sc:url "https://github.com/id03/binoculars" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -108455,7 +96270,7 @@ Kernel density and distribution estimation for interval-grouped data (Reyes, Fra biotools:primaryContact "Andrei Zinovyev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0634, @@ -108472,7 +96287,7 @@ Kernel density and distribution estimation for interval-grouped data (Reyes, Fra sc:url "https://github.com/SamirRachidZaim/binomialRF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -108493,7 +96308,7 @@ Accurate drug resistance detection is key for guiding effective tuberculosis tre sc:url "http://www.github.com/ngs-fzb/binoSNP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0196, @@ -108508,7 +96323,7 @@ Accurate drug resistance detection is key for guiding effective tuberculosis tre sc:url "https://sourceforge.net/projects/transcriptomeassembly/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3127, edam:topic_3168, @@ -108526,7 +96341,7 @@ Accurate drug resistance detection is key for guiding effective tuberculosis tre biotools:primaryContact "Emily Goren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation ; sc:description "Unsupervised Clustering of Environmental Microbial Assemblies Using Coverage and Affinity Propagation" ; @@ -108539,7 +96354,7 @@ Accurate drug resistance detection is key for guiding effective tuberculosis tre sc:url "https://github.com/edgraham/BinSanity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, edam:topic_3303, @@ -108556,7 +96371,7 @@ Accurate drug resistance detection is key for guiding effective tuberculosis tre sc:url "https://github.com/scicrunch/bio-answerfinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Parse CIGAR strings and translate coordinates to/from reference/query." ; @@ -108568,7 +96383,7 @@ Accurate drug resistance detection is key for guiding effective tuberculosis tre sc:url "https://github.com/MullinsLab/Bio-Cigar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3170, @@ -108585,7 +96400,7 @@ Accurate drug resistance detection is key for guiding effective tuberculosis tre biotools:primaryContact "Konstantinos Krampis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3070 ; sc:description "Bio-Formats is a standalone Java library for reading and writing life sciences image file formats. It is capable of parsing both pixels and metadata for a large number of formats, as well as writing to several formats. See the table below for a complete list (click the headers to sort, and format names to see all information)." ; @@ -108599,7 +96414,7 @@ Accurate drug resistance detection is key for guiding effective tuberculosis tre sc:url "http://www.openmicroscopy.org/site/products/bio-formats" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0820, @@ -108619,7 +96434,7 @@ Accurate drug resistance detection is key for guiding effective tuberculosis tre sc:url "https://github.com/amara86/Bio-GATS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -108635,7 +96450,7 @@ Accurate drug resistance detection is key for guiding effective tuberculosis tre sc:url "http://ls5-www.cs.tu-dortmund.de/projects/biojeti/about.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -108652,7 +96467,7 @@ To overcome drawbacks of classical on-lattice models, we introduce a novel on-la sc:url "https://github.com/sisyga/BIO-LGCA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "The first tool for integrating methodologically diverse OD (Ortholog detection) methods." ; @@ -108667,7 +96482,7 @@ To overcome drawbacks of classical on-lattice models, we introduce a novel on-la biotools:primaryContact "Admin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:25819670" ; @@ -108682,7 +96497,7 @@ To overcome drawbacks of classical on-lattice models, we introduce a novel on-la biotools:primaryContact "Raoul J.P. Bonnal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091 ; sc:citation ; @@ -108696,7 +96511,7 @@ To overcome drawbacks of classical on-lattice models, we introduce a novel on-la sc:url "http://www.bioinformatics.deib.polimi.it/bio-seco/seco/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3077, @@ -108716,7 +96531,7 @@ To overcome drawbacks of classical on-lattice models, we introduce a novel on-la biotools:primaryContact "Etienne Gnimpieba" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0798, @@ -108730,7 +96545,7 @@ To overcome drawbacks of classical on-lattice models, we introduce a novel on-la sc:url "https://github.com/sanger-pathogens/Bio-Tradis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654 ; sc:description "Bio2Midi converts the text of a DNA or protein sequence to a MIDI file, which you may immediately audition, or import into any MIDI sequencer for further compositional processing." ; @@ -108742,7 +96557,7 @@ To overcome drawbacks of classical on-lattice models, we introduce a novel on-la sc:url "http://algoart.com/bio2midi.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0821, @@ -108755,7 +96570,7 @@ To overcome drawbacks of classical on-lattice models, we introduce a novel on-la sc:url "http://design.rxnfinder.org/bio2rxn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0091, @@ -108776,7 +96591,7 @@ To overcome drawbacks of classical on-lattice models, we introduce a novel on-la sc:url "http://thegrantlab.org/bio3d/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -108793,23 +96608,8 @@ To overcome drawbacks of classical on-lattice models, we introduce a novel on-la sc:name "Bio3D-Web" ; sc:url "https://bitbucket.org/Grantlab/bio3d-web" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3071, - edam:topic_3303 ; - sc:citation , - "pubmed:31725862" ; - sc:description """Leveraging word embeddings and medical entity extraction for biomedical dataset retrieval using unstructured texts. - -Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; - sc:featureList edam:operation_2421, - edam:operation_2422, - edam:operation_3280 ; - sc:name "bioCADDIE_autogenerated" ; - sc:url "https://github.com/yanshanwang/biocaddie2016mayodata" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0196, edam:topic_3382 ; @@ -108839,26 +96639,8 @@ Free document hosting provided by Read the Docs""" ; sc:softwareHelp ; sc:url "https://github.com/mjoppich/bioGUI" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3070, - edam:topic_3304, - edam:topic_3379 ; - sc:citation ; - sc:description """the preprint server for biology. - -MS Word templates for a more readable BioRxiv product. - -bioRxiv - the preprint server for biology, operated by Cold Spring Harbor Laboratory, a research and educational institution. - -We use cookies on this site to enhance your user experience. By clicking any link on this page you are giving your consent for us to set cookies. - -This template aims to create reader-friendly BioRxiv preprints. Inspiration for this template comes from a similar effort by Dr. Dennis Eckmeier (http://www.eckmeier.de/?attachment_id=340)""" ; - sc:name "bioRxiv" ; - sc:url "http://bioRxiv.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -108872,8 +96654,14 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for sc:softwareVersion "1.0" ; sc:url "http://www.kofler.or.at/bioinformatics/biosharp.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "Software for implementing the algorithms proposed in Lanciano et al. \"Contrast Subgraphs Allow Comparing Homogeneous and Heterogeneous Networks Derived from Omics Data\"" ; + sc:name "bio_contrast_subgraph" ; + sc:url "https://github.com/tlancian/bio_cs" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2840, @@ -108889,8 +96677,21 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for sc:url "https://mosaic.univ-lyon1.fr/bioacc" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3474 ; + sc:citation , + "pubmed:35876792" ; + sc:description "Biomedical machine reading comprehension (biomedical-MRC) aims to comprehend complex biomedical narratives and assist healthcare professionals in retrieving information from them." ; + sc:featureList edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "BioADAPT-MRC" ; + sc:url "https://github.com/mmahbub/BioADAPT-MRC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0602, @@ -108910,7 +96711,7 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for sc:url "http://www.bioafmviewer.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3295, edam:topic_3305, @@ -108931,7 +96732,7 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for sc:url "http://github.com/dayoonkwon/BioAge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -108946,16 +96747,32 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for sc:name "BioAider" ; sc:url "https://github.com/ZhijianZhou01/BioAider" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0091, + edam:topic_0218 ; + sc:citation , + "pmcid:PMC9022356", + "pubmed:35448946" ; + sc:description "Benchmarking for biomedical natural language processing tasks with a domain specific ALBERT." ; + sc:featureList edam:operation_3280 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "BioALBERT" ; + sc:url "https://github.com/usmaann/BioALBERT" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ] ; + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "File name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "File name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Pierre Lindenbaum" ; @@ -108977,7 +96794,7 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for biotools:primaryContact "Pierre Lindenbaum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -108999,14 +96816,14 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1566" ; - sc:name "Protein-ligand interaction report" ; - sc:sameAs "http://edamontology.org/data_1566" ] ; + sc:additionalType "http://edamontology.org/data_1566" ; + sc:encodingFormat "http://edamontology.org/format_2054" ; + sc:name "Protein-ligand interaction report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1566" ; - sc:name "Protein-ligand interaction report" ; - sc:sameAs "http://edamontology.org/data_1566" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1566" ; + sc:encodingFormat "http://edamontology.org/format_2054" ; + sc:name "Protein-ligand interaction report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -109026,8 +96843,30 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for sc:url "http://bioconductor.org/packages/release/bioc/html/bioassayR.html" ; biotools:primaryContact "Tyler Backman" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_0749, + edam:topic_3474, + edam:topic_3512, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC9294424", + "pubmed:35753697" ; + sc:description "Automated feature engineering and metalearning to predict noncoding RNAs in bacteria." ; + sc:featureList edam:operation_3096, + edam:operation_3799, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "BioAutoML" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:url "https://github.com/Bonidia/BioAutoML" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0637, @@ -109046,7 +96885,7 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for biotools:primaryContact "Curtis Huttenhower" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -109060,7 +96899,7 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for sc:url "http://www.sanger.ac.uk/science/tools/biobambam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -109083,7 +96922,7 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -109101,14 +96940,13 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3842" ; - sc:name "Molecular simulation data" ; - sc:sameAs "http://edamontology.org/data_3842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3842" ; + sc:name "Molecular simulation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3307, edam:topic_3314 ; @@ -109159,8 +96997,33 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for "Alpha" ; sc:url "https://mmb.irbbarcelona.org/biobb" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0769, + edam:topic_2275, + edam:topic_3316, + edam:topic_3892 ; + sc:citation , + "pmcid:PMC9252775", + "pubmed:35639735" ; + sc:description "BioExcel Building Blocks Workflows (BioBB-Wfs) is a integrated web-based platform for biomolecular simulations." ; + sc:featureList edam:operation_0337, + edam:operation_0482, + edam:operation_2476, + edam:operation_3893, + edam:operation_3899 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "BioBB-Wfs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://mmb.irbbarcelona.org/biobb-wfs" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation ; @@ -109178,7 +97041,7 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for biotools:primaryContact "Moritz Kreysing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2259, @@ -109200,7 +97063,7 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for biotools:primaryContact "Jeff Elhai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -109221,7 +97084,7 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for sc:url "http://ritchielab.psu.edu/software/biobin-download" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -109236,8 +97099,29 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for sc:softwareHelp ; sc:url "http://bioblender.eu/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:applicationSubCategory edam:topic_0176, + edam:topic_0196, + edam:topic_2275 ; + sc:citation , + "pmcid:PMC8796382", + "pubmed:34791029" ; + sc:description "Biobox provides a collection of data structures and methods for loading, manipulating and analyzing atomistic and pseudoatomistic structures." ; + sc:featureList edam:operation_0337, + edam:operation_0478, + edam:operation_2476, + edam:operation_3891, + edam:operation_3907 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Biobox" ; + sc:softwareHelp ; + sc:url "https://github.com/degiacom/biobox" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -109257,7 +97141,7 @@ This template aims to create reader-friendly BioRxiv preprints. Inspiration for "John D. Storey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3071, edam:topic_3303 ; @@ -109274,7 +97158,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "https://github.com/yanshanwang/biocaddie2016mayodata" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -109294,7 +97178,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Karim Mezhoud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769 ; @@ -109309,7 +97193,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "https://github.com/InscriptaLabs/BioCantor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219 ; sc:citation ; @@ -109324,7 +97208,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; "Nazar Zaki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -109341,8 +97225,27 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://www.biocarta.com/" ; biotools:primaryContact "BIOCARTA Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_3305, + edam:topic_3324, + edam:topic_3474, + edam:topic_3575 ; + sc:citation , + "pubmed:35900173" ; + sc:description "Automatic Disease Outbreaks Detection from Global News Media." ; + sc:featureList edam:operation_0306 ; + sc:isAccessibleForFree true ; + sc:name "BioCaster" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://biocaster.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, @@ -109361,7 +97264,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "https://github.com/DanilKrivonos/BioCAT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3070, @@ -109378,7 +97281,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -109393,7 +97296,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "https://www.biocatalogue.org/wiki/doku.php?id=public:api#the_biocatalogue_rest_api" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3305, @@ -109412,7 +97315,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0769, @@ -109431,7 +97334,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3524, @@ -109445,7 +97348,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://biocellion.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3489 ; sc:description "This package creates a persistent on-disk cache of files that the user can add, update, and retrieve. It is useful for managing resources (such as custom Txdb objects) that are costly or difficult to create, web resources, and data files used across sessions." ; @@ -109461,7 +97364,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Lori Shepherd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -109485,7 +97388,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -109504,8 +97407,33 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/biocGraph.html" ; biotools:primaryContact "Florian Hahne" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workflow" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0218, + edam:topic_0602, + edam:topic_3375, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9138786", + "pubmed:35625486" ; + sc:description "BioChemDDI web server is constructed to predict drug-drug interactions, which is compatible with most major browsers, and the parallel speed-up is implemented." ; + sc:featureList edam:operation_3092, + edam:operation_3927, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "BioChemDDI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://120.77.11.78/BioChemDDI/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3303, @@ -109522,7 +97450,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; "Milad Moradi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0607 ; @@ -109542,14 +97470,12 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2087" ; - sc:name "Molecular property" ; - sc:sameAs "http://edamontology.org/data_2087" ] ; + sc:additionalType "http://edamontology.org/data_2087" ; + sc:name "Molecular property" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2087" ; - sc:name "Molecular property" ; - sc:sameAs "http://edamontology.org/data_2087" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2087" ; + sc:name "Molecular property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3292 ; sc:citation ; @@ -109565,7 +97491,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://bioclipse.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0202, @@ -109585,7 +97511,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -109601,7 +97527,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "https://github.com/s312569/clj-biosequence" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -109617,7 +97543,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "https://github.com/tzok/BioCommons" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3068, @@ -109636,7 +97562,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "https://github.com/ncbi-nlp/BioConceptVec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -109655,7 +97581,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "VJ Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2258, @@ -109672,30 +97598,25 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2269, @@ -109715,7 +97636,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://www.bioconductor.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -109736,7 +97657,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Yasset Perez-Riverol" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3047, @@ -109752,7 +97673,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://biocontext.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2259, @@ -109772,7 +97693,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Lluís Revilla Sancho" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -109790,7 +97711,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3474 ; sc:description "This package provides interfaces to selected sklearn elements, and demonstrates fault tolerant use of python modules requiring extensive iteration." ; @@ -109807,14 +97728,14 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0958" ; - sc:name "Tool metadata" ; - sc:sameAs "http://edamontology.org/data_0958" ] ; + sc:additionalType "http://edamontology.org/data_0958" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Tool metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0958" ; - sc:name "Tool metadata" ; - sc:sameAs "http://edamontology.org/data_0958" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0958" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Tool metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3068 ; @@ -109832,7 +97753,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3372 ; @@ -109850,7 +97771,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769 ; sc:description "Provides functions to ease the transition between Rmarkdown and LaTeX documents when authoring a Bioconductor Workflow." ; @@ -109867,7 +97788,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Mike Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -109890,7 +97811,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioCyC Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3391 ; @@ -109904,7 +97825,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://dataome.mensxmachina.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3489 ; @@ -109915,8 +97836,25 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; "Windows" ; sc:url "http://www.franz.com/services/conferences_seminars/ismb2000/karp.biodb.lhtml" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0769 ; + sc:citation , + "pubmed:35462395" ; + sc:description "A computational environment for Independent Component Analysis of omics data." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "BIODICA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://sysbio-curie.github.io/biodica-environment/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0081 ; @@ -109934,7 +97872,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -109955,7 +97893,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Samy O. Meroueh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0780 ; @@ -109971,7 +97909,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Wilson Lara" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_3366 ; @@ -109991,7 +97929,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2259, @@ -110007,7 +97945,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://www.biodynamo.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0089, @@ -110026,7 +97964,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2259, @@ -110043,7 +97981,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "https://github.com/CocoGzh/Bioentity2vec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3303, @@ -110062,46 +98000,46 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1459" ; - sc:name "Nucleic acid structure" ; - sc:sameAs "http://edamontology.org/data_1459" ], + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Trajectory data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1459" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Nucleic acid structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2085" ; - sc:name "Structure report" ; - sc:sameAs "http://edamontology.org/data_2085" ], + sc:additionalType "http://edamontology.org/data_2085" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Trajectory data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1459" ; - sc:name "Nucleic acid structure" ; - sc:sameAs "http://edamontology.org/data_1459" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1459" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Nucleic acid structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web service" ; sc:applicationSubCategory edam:topic_0081, @@ -110137,18 +98075,18 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3872" ; - sc:name "Topology data" ; - sc:sameAs "http://edamontology.org/data_3872" ], + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Trajectory data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3872" ; + sc:encodingFormat "http://edamontology.org/format_3881" ; + sc:name "Topology data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0176 ; @@ -110174,18 +98112,18 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ], + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Trajectory data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3872" ; - sc:name "Topology data" ; - sc:sameAs "http://edamontology.org/data_3872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3872" ; + sc:encodingFormat "http://edamontology.org/format_3881" ; + sc:name "Topology data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2814 ; @@ -110211,14 +98149,14 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3872" ; - sc:name "Topology data" ; - sc:sameAs "http://edamontology.org/data_3872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3872" ; + sc:encodingFormat "http://edamontology.org/format_3880" ; + sc:name "Topology data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176 ; @@ -110243,18 +98181,18 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ], + sc:additionalType "http://edamontology.org/data_3872" ; + sc:encodingFormat "http://edamontology.org/format_3880" ; + sc:name "Topology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3872" ; - sc:name "Topology data" ; - sc:sameAs "http://edamontology.org/data_3872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3910" ; + sc:name "Trajectory data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0176, @@ -110281,18 +98219,18 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3872" ; - sc:name "Topology data" ; - sc:sameAs "http://edamontology.org/data_3872" ], + sc:additionalType "http://edamontology.org/data_3872" ; + sc:encodingFormat "http://edamontology.org/format_3880" ; + sc:name "Topology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3910" ; + sc:name "Trajectory data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0176, @@ -110319,26 +98257,26 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ], + sc:additionalType "http://edamontology.org/data_3872" ; + sc:encodingFormat "http://edamontology.org/format_3880" ; + sc:name "Topology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3872" ; - sc:name "Topology data" ; - sc:sameAs "http://edamontology.org/data_3872" ] ; + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3875" ; + sc:name "Trajectory data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ], + sc:additionalType "http://edamontology.org/data_3779" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Annotated text" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3779" ; - sc:name "Annotated text" ; - sc:sameAs "http://edamontology.org/data_3779" ], + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3910" ; + sc:name "Trajectory data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3905" ; - sc:name "Histogram" ; - sc:sameAs "http://edamontology.org/data_3905" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3905" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Histogram" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3120 ; @@ -110365,18 +98303,18 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1461" ; - sc:name "Protein-ligand complex" ; - sc:sameAs "http://edamontology.org/data_1461" ] ; + sc:additionalType "http://edamontology.org/data_1461" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein-ligand complex" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3872" ; - sc:name "Topology data" ; - sc:sameAs "http://edamontology.org/data_3872" ], + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3910" ; + sc:name "Trajectory data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3872" ; + sc:encodingFormat "http://edamontology.org/format_3880" ; + sc:name "Topology data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0176, @@ -110404,18 +98342,18 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3872" ; - sc:name "Topology data" ; - sc:sameAs "http://edamontology.org/data_3872" ], + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Trajectory data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3872" ; + sc:encodingFormat "http://edamontology.org/format_3881" ; + sc:name "Topology data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0176, @@ -110442,18 +98380,18 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_3814" ; + sc:name "Small molecule structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1461" ; - sc:name "Protein-ligand complex" ; - sc:sameAs "http://edamontology.org/data_1461" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1461" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein-ligand complex" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2275 ; @@ -110479,18 +98417,18 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3872" ; - sc:name "Topology data" ; - sc:sameAs "http://edamontology.org/data_3872" ], + sc:additionalType "http://edamontology.org/data_3872" ; + sc:encodingFormat "http://edamontology.org/format_3880" ; + sc:name "Topology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3910" ; + sc:name "Trajectory data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0176, @@ -110517,18 +98455,18 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ], + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Trajectory data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3872" ; - sc:name "Topology data" ; - sc:sameAs "http://edamontology.org/data_3872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3872" ; + sc:encodingFormat "http://edamontology.org/format_3881" ; + sc:name "Topology data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0176, @@ -110556,18 +98494,18 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ], + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3910" ; + sc:name "Trajectory data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3872" ; - sc:name "Topology data" ; - sc:sameAs "http://edamontology.org/data_3872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3872" ; + sc:encodingFormat "http://edamontology.org/format_3880" ; + sc:name "Topology data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Workflow" ; sc:applicationSubCategory edam:topic_0081, @@ -110594,22 +98532,22 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ] ; + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Trajectory data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0912" ; - sc:name "Nucleic acid property" ; - sc:sameAs "http://edamontology.org/data_0912" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3905" ; - sc:name "Histogram" ; - sc:sameAs "http://edamontology.org/data_3905" ], + sc:additionalType "http://edamontology.org/data_3905" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Histogram" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0912" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Nucleic acid property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0097 ; sc:author , @@ -110634,46 +98572,46 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1459" ; - sc:name "Nucleic acid structure" ; - sc:sameAs "http://edamontology.org/data_1459" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ], + sc:additionalType "http://edamontology.org/data_1459" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Nucleic acid structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Trajectory data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Trajectory data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_1459" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Nucleic acid structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1459" ; - sc:name "Nucleic acid structure" ; - sc:sameAs "http://edamontology.org/data_1459" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2085" ; - sc:name "Structure report" ; - sc:sameAs "http://edamontology.org/data_2085" ], + sc:additionalType "http://edamontology.org/data_2085" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Web application", "Workflow" ; @@ -110709,14 +98647,14 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Workflow" ; @@ -110740,7 +98678,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Darren White" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0091, @@ -110762,7 +98700,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -110775,7 +98713,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://y-s.wikidot.com/bioface" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -110794,7 +98732,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Biofactoid" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, @@ -110812,7 +98750,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Curtis Larimer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation ; @@ -110825,7 +98763,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Airat R. Kayumov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:description "Biofouling is a MATLAB function will output the typical required values for mussel growth on structures." ; sc:isAccessibleForFree true ; @@ -110838,7 +98776,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Melanie MacBain" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0602, @@ -110855,7 +98793,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Paul Macklin, Ph.D" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3315, @@ -110870,8 +98808,25 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "https://www.mathworks.com/matlabcentral/fileexchange/47311-biogeography-based-optimizer-bbo-for-training-multi-layer-perceptron-mlp-breast-cancer-dataset" ; biotools:primaryContact "Seyedali Mirjalili" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0780, + edam:topic_3500 ; + sc:citation , + "pubmed:35879250" ; + sc:description "An R package for simulating and fitting natural shapes." ; + sc:featureList edam:operation_2950 ; + sc:license "GPL-3.0" ; + sc:name "biogeom" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/cran/biogeom" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -110883,7 +98838,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "https://biogitflow.readthedocs.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -110904,7 +98859,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioGRID Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091 ; sc:description "BioGridRunner is a distributed computing application for bioinformatics, incorporating directory services (data and software), grid computing methods (security, authentication, data transport and remote jobs), and gene sequence and genomic data processing methods." ; @@ -110918,7 +98873,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://iubio.bio.indiana.edu/grid/runner/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -110936,7 +98891,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "https://github.com/phac-nml/biohansel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3053 ; @@ -110950,7 +98905,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://ico2s.org/software/biohel.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation ; @@ -110965,14 +98920,12 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3424" ; - sc:name "Raw image" ; - sc:sameAs "http://edamontology.org/data_3424" ] ; + sc:additionalType "http://edamontology.org/data_3424" ; + sc:name "Raw image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0621, @@ -110992,7 +98945,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -111013,13 +98966,28 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://bioinfo3d.cs.tau.ac.il/" ; biotools:primaryContact "BioInfo3D team" . - a sc:SoftwareApplication ; - sc:description "CD Genomics’ bioinformatics services cover a wide range of genomic applications, including genomics, transcriptomics, epigenomics, and microarray. CD Genomics provides statistical and bioinformatic data analysis services that help our customers to explain large amounts of data that generated by sequencing, genotyping, and microarray experiments." ; - sc:name "Bioinformatics Services" ; - sc:url "https://www.cd-genomics.com/Bioinformatics-Services.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0196, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8766334", + "pubmed:35069687" ; + sc:description "An Online Tool to Design and Display Multi-Panel Scientific Figure Interactively." ; + sc:featureList edam:operation_0310, + edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "bioInfograph" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://baohongz.github.io/bioInfograph/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -111041,7 +99009,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "MPI-toolkit feedback" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_1317 ; sc:citation ; @@ -111057,7 +99025,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://www.bioisis.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3070, @@ -111074,7 +99042,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "General contact" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0601, @@ -111091,7 +99059,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Peter W. Rose" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -111105,7 +99073,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://oss-lab.github.io/biojazz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0092, @@ -111121,7 +99089,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://biojs.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -111139,7 +99107,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Ricardo H. Ramirez-Gonzalez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -111156,14 +99124,14 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1192" ; - sc:name "Tool name (BLAST)" ; - sc:sameAs "http://edamontology.org/data_1192" ] ; + sc:additionalType "http://edamontology.org/data_1192" ; + sc:encodingFormat "http://edamontology.org/format_3331" ; + sc:name "Tool name (BLAST)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1192" ; - sc:name "Tool name (BLAST)" ; - sc:sameAs "http://edamontology.org/data_1192" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1192" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Tool name (BLAST)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3365 ; @@ -111184,10 +99152,10 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1982" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -111203,7 +99171,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "greenify" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -111220,14 +99188,14 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -111245,7 +99213,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "greenify" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3071 ; @@ -111263,7 +99231,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioJS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -111278,7 +99246,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "greenify" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -111296,7 +99264,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "David Dao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3168 ; @@ -111314,7 +99282,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Ricardo H. Ramirez-Gonzalez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation ; @@ -111331,7 +99299,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioJS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091 ; sc:citation ; @@ -111346,7 +99314,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioJS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -111362,7 +99330,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioJS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0092 ; @@ -111380,7 +99348,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioJS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091 ; sc:citation ; @@ -111397,7 +99365,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioJS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3077 ; sc:citation ; @@ -111417,10 +99385,9 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:name "DNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -111438,7 +99405,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "greenify" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -111454,7 +99421,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Gustavo A. Salazar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -111471,7 +99438,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "jmVillaveces" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3071 ; @@ -111488,7 +99455,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "greenify" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0092, @@ -111506,7 +99473,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Xavier Watkins" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -111523,10 +99490,10 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -111545,7 +99512,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "ljgarcia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3053 ; @@ -111563,7 +99530,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Tambet Arak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0203 ; @@ -111581,14 +99548,13 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1274" ; - sc:name "Map" ; - sc:sameAs "http://edamontology.org/data_1274" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1274" ; + sc:name "Map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2885 ; @@ -111607,7 +99573,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Saket Choudhary" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108 ; sc:citation ; @@ -111623,7 +99589,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Rafael C Jimenez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0219 ; @@ -111640,7 +99606,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Ctibor S?kuta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0128, @@ -111659,14 +99625,12 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2343" ; - sc:name "Pathway ID (KEGG)" ; - sc:sameAs "http://edamontology.org/data_2343" ] ; + sc:additionalType "http://edamontology.org/data_2343" ; + sc:name "Pathway ID (KEGG)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation , @@ -111685,7 +99649,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "José Villaveces" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081 ; sc:citation ; @@ -111701,7 +99665,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Ian Sillitoe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3077 ; @@ -111719,7 +99683,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Francesco Talo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092 ; @@ -111736,7 +99700,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Ricardo H. Ramirez-Gonzalez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -111753,7 +99717,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioJS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -111770,7 +99734,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Anil S. Thanki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0602, @@ -111785,8 +99749,29 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:name "BioKC" ; sc:url "https://biokc.pages.uni.lu/roadmap/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Suite" ; + sc:applicationSubCategory edam:topic_0194, + edam:topic_0196, + edam:topic_0203, + edam:topic_0621, + edam:topic_0769 ; + sc:citation ; + sc:description "BioKIT is a versatile toolkit for processing and analyzing diverse types of sequence data. BioKIT is a UNIX shell toolkit for processing molecular sequence data." ; + sc:featureList edam:operation_0286, + edam:operation_0525, + edam:operation_3192 ; + sc:license "MIT" ; + sc:name "BioKIT" ; + sc:softwareHelp ; + sc:url "https://anaconda.org/jlsteenwyk/jlsteenwyk-biokit" ; + biotools:primaryContact , + . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3473 ; @@ -111801,7 +99786,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://biolabeler.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0605, @@ -111817,14 +99802,14 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2979" ; - sc:name "Peptide property" ; - sc:sameAs "http://edamontology.org/data_2979" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2979" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Peptide property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -111839,13 +99824,13 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://theorchromo.ru/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "BioLib is a tool for building webservers. The platform allows developers to create webservers without having to build front-end or setting up and maintaining server infrastructure." ; sc:name "BioLib" ; sc:url "https://biolib.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3335, @@ -111863,7 +99848,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0089 ; @@ -111875,7 +99860,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://biolit.ucsd.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3050, @@ -111891,7 +99876,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "https://biologer.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0102, @@ -111908,16 +99893,30 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:name "BiologicalNetworks" ; sc:url "http://brak.sdsc.edu/pub/BiologicalNetworks/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation , + "pmcid:PMC3892043", + "pubmed:24321545" ; + sc:description "A model representation format and infrastructure to foster interactions between qualitative modelling formalisms and tools" ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "BioLQM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "http://www.colomoto.org/biolqm/index.html" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1052" ; - sc:name "URL" ; - sc:sameAs "http://edamontology.org/data_1052" ] ; + sc:additionalType "http://edamontology.org/data_1052" ; + sc:name "URL" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0955" ; - sc:name "Data index" ; - sc:sameAs "http://edamontology.org/data_0955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0955" ; + sc:name "Data index" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3071 ; @@ -111938,7 +99937,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "GenOuest platform" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -111955,7 +99954,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://www.liuzlab.org/?page_id=547" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -111985,7 +99984,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Mike Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -112006,7 +100005,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Arek Kasprzyk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -112021,7 +100020,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://www.biomart.org/martservice_9.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0622, @@ -112040,7 +100039,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Hajk-Georg Drost" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174 ; sc:description "A bioinformatic pipeline designed to support biomolecular researchers involved in taxonomic studies of environmental microbial communities by a completely automated workflow." ; @@ -112058,30 +100057,30 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Nucleic acid sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Nucleic acid sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ], + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Taxonomy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3391 ; sc:author ; @@ -112104,7 +100103,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -112121,7 +100120,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "http://www.biomaster-uestc.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3174, @@ -112137,7 +100136,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "BioMe Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3405, edam:topic_3474, @@ -112154,7 +100153,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "https://biomedisa.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174, @@ -112173,7 +100172,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "https://blekhmanlab.github.io/biomehorizon/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -112199,7 +100198,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; biotools:primaryContact "Intawat Nookaew" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0166, @@ -112218,7 +100217,7 @@ Mayo's Data for the bioCADDIE 2016 Dataset Retrieval Challenge""" ; sc:url "https://github.com/insilichem/biometall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0769, @@ -112239,7 +100238,7 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O sc:url "https://www.vibcancer.be/software-tools/biomex" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -112258,7 +100257,7 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O biotools:primaryContact "Paul J. McMurdie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0196, @@ -112283,22 +100282,27 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Mathematical model" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; sc:author "BioModels Team" ; - sc:citation , + sc:citation , + , , "pmcid:PMC2909940", - "pubmed:20587024" ; + "pmcid:PMC5753244", + "pmcid:PMC7145643", + "pubmed:20587024", + "pubmed:29106614", + "pubmed:31701150" ; sc:description "Database of annotated published models is a data resource that allows biologists to store, search and retrieve published mathematical models of biological interests. Models present in this database are annotated and linked to relevant data resources, such as publications, databases of compounds and controlled vocabularies, and this modelling formats can be converted, with some of them being available online to be used directly." ; sc:featureList edam:operation_0226, edam:operation_0335, @@ -112311,13 +100315,13 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O "Mac", "Windows" ; sc:provider "EMBL-EBI" ; - sc:softwareHelp , - ; - sc:url "http://www.ebi.ac.uk/biomodels" ; - biotools:primaryContact "Camille Laibe" . + sc:softwareHelp , + ; + sc:url "https://www.ebi.ac.uk/biomodels" ; + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0602, @@ -112339,14 +100343,14 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Mathematical model" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:author "BioModels Team" ; @@ -112365,7 +100369,7 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O biotools:primaryContact "Camille Laibe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0607 ; @@ -112384,18 +100388,18 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_1920" ; + sc:name "Gene expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_1920" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -112418,7 +100422,7 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O biotools:primaryContact "Yang Du" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -112432,7 +100436,7 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O biotools:primaryContact "Emil Alexov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0593, @@ -112448,7 +100452,7 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O sc:url "http://compbio.clemson.edu/BION-2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -112468,34 +100472,34 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2091" ; - sc:name "Accession" ; - sc:sameAs "http://edamontology.org/data_2091" ], + sc:additionalType "http://edamontology.org/data_0976" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier (by type of data)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0976" ; - sc:name "Identifier (by type of data)" ; - sc:sameAs "http://edamontology.org/data_0976" ], + sc:additionalType "http://edamontology.org/data_2099" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2007" ; - sc:name "UniProt keyword" ; - sc:sameAs "http://edamontology.org/data_2007" ], + sc:additionalType "http://edamontology.org/data_2091" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2099" ; - sc:name "Name" ; - sc:sameAs "http://edamontology.org/data_2099" ] ; + sc:additionalType "http://edamontology.org/data_2007" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "UniProt keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; sc:applicationSubCategory edam:topic_0078, @@ -112524,7 +100528,7 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O biotools:primaryContact "bioinfoservice@rub.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, edam:topic_3474 ; @@ -112537,7 +100541,7 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O sc:url "https://github.com/JogleLew/bioner-cross-sharing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -112556,7 +100560,7 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O sc:url "http://bioconductor.org/packages/BioNERO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0128, @@ -112577,7 +100581,7 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O biotools:primaryContact "Marcus Dittrich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -112593,7 +100597,7 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O sc:url "https://www.sys2diag.cnrs.fr/index.php?page=bionetcad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -112611,7 +100615,7 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -112626,7 +100630,7 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O biotools:primaryContact "Brandon Thomas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -112642,7 +100646,7 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O sc:url "http://bionetgen.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -112664,7 +100668,7 @@ BIOMEX is a data analysis platform to facilitate the Biological Interpretation O biotools:primaryContact "Vinicius Jardim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0769, @@ -112688,7 +100692,7 @@ This repository contains source code and datasets for paper "Graph Embedding on sc:url "https://github.com/xiangyue9607/BioNEV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3365, edam:topic_3366, @@ -112705,7 +100709,7 @@ This repository contains source code and datasets for paper "Graph Embedding on "General" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0654, @@ -112723,7 +100727,7 @@ This repository contains source code and datasets for paper "Graph Embedding on biotools:primaryContact "Eric RIVALS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3070, @@ -112743,14 +100747,13 @@ This repository contains source code and datasets for paper "Graph Embedding on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Web application", @@ -112770,7 +100773,7 @@ This repository contains source code and datasets for paper "Graph Embedding on biotools:primaryContact "Bionode Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -112788,14 +100791,14 @@ This repository contains source code and datasets for paper "Graph Embedding on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -112815,14 +100818,12 @@ This repository contains source code and datasets for paper "Graph Embedding on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1056" ; - sc:name "Database name" ; - sc:sameAs "http://edamontology.org/data_1056" ] ; + sc:additionalType "http://edamontology.org/data_1056" ; + sc:name "Database name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091, @@ -112842,7 +100843,7 @@ This repository contains source code and datasets for paper "Graph Embedding on biotools:primaryContact "Bionode Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -112859,7 +100860,7 @@ This repository contains source code and datasets for paper "Graph Embedding on biotools:primaryContact "Bionode Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "A Node.js wrapper for SRA Toolkit." ; @@ -112873,7 +100874,7 @@ This repository contains source code and datasets for paper "Graph Embedding on biotools:primaryContact "Bruno Vieira" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091 ; sc:description "Template module to use as base for quickly creating bionode modules." ; @@ -112887,7 +100888,7 @@ This repository contains source code and datasets for paper "Graph Embedding on biotools:primaryContact "Bruno Vieira" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -112906,7 +100907,7 @@ This repository contains source code and datasets for paper "Graph Embedding on sc:url "https://github.com/CSBG-LSU/BionoiNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2275 ; @@ -112926,7 +100927,7 @@ dynamics. It includes a visual representation of the network that enables resear sc:url "http://bionsi.wixsite.com/bionsi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -112944,7 +100945,7 @@ dynamics. It includes a visual representation of the network that enables resear sc:url "https://github.com/lasigeBioTM/BiONT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2229, @@ -112965,7 +100966,7 @@ dynamics. It includes a visual representation of the network that enables resear biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -112987,7 +100988,7 @@ dynamics. It includes a visual representation of the network that enables resear biotools:primaryContact "Support Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0602, @@ -113004,7 +101005,7 @@ dynamics. It includes a visual representation of the network that enables resear biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3300, edam:topic_3414, @@ -113021,7 +101022,7 @@ dynamics. It includes a visual representation of the network that enables resear biotools:primaryContact "Grand Roman Joldes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -113036,7 +101037,7 @@ dynamics. It includes a visual representation of the network that enables resear sc:url "http://www.dbbm.fiocruz.br/BioParser.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3398, @@ -113057,7 +101058,7 @@ Capturing, storing, and sharing biological DNA parts data are integral parts of sc:url "http://bioparts.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0196, @@ -113074,7 +101075,7 @@ Capturing, storing, and sharing biological DNA parts data are integral parts of sc:url "https://github.com/baderzone/biopartsbuilder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3047, @@ -113088,7 +101089,7 @@ Capturing, storing, and sharing biological DNA parts data are integral parts of sc:url "https://github.com/baderzone/biopartsdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -113106,7 +101107,7 @@ in a tabular format.""" ; sc:url "https://gitlab.com/giuseppeagapito/bip" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2259 ; @@ -113122,7 +101123,7 @@ in a tabular format.""" ; sc:url "https://code.google.com/p/biopax-pattern/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3071, @@ -113140,7 +101141,7 @@ in a tabular format.""" ; biotools:primaryContact "BioPerl team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3360, @@ -113156,7 +101157,7 @@ in a tabular format.""" ; sc:url "http://www.prognosticenrichment.com/surv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2830, @@ -113176,7 +101177,7 @@ in a tabular format.""" ; sc:url "https://biophi.dichlab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3071, @@ -113192,30 +101193,8 @@ in a tabular format.""" ; sc:url "http://biophp.org/" ; biotools:primaryContact "Contact form" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0130, - edam:topic_0154, - edam:topic_0166, - edam:topic_3306 ; - sc:citation , - "pubmed:31795635" ; - sc:description """a Monomer-Based Approach to Predict Inter-Subunit Affinity of Protein Dimers. - -SEPAS performs the predictions using 3D structure of just one monomer. - -Executable version 1.0 for running in Linux x86_64. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Complex Stability Encoded Binding Patch Softness', 'SEPAS', 'PBP'""" ; - sc:featureList edam:operation_0331, - edam:operation_0474, - edam:operation_2575, - edam:operation_3454 ; - sc:name "biophysics" ; - sc:url "http://biophysics.ir/affinity" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622 ; sc:description "Collection of bioinformatics tools that can be pieced together in a very easy and flexible manner to perform both simple and complex tasks. It works on a data stream in such a way that the data stream can be passed through several different tasks: modifying or adding records to the data stream, creating plots, or uploading data to databases and web services." ; @@ -113233,7 +101212,7 @@ Executable version 1.0 for running in Linux x86_64. biotools:primaryContact "Martin Asser Hansen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -113249,7 +101228,7 @@ Executable version 1.0 for running in Linux x86_64. biotools:primaryContact "Zhong Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -113265,7 +101244,7 @@ Executable version 1.0 for running in Linux x86_64. sc:url "http://www.cancergenomics.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0166, @@ -113282,7 +101261,7 @@ Executable version 1.0 for running in Linux x86_64. biotools:primaryContact "Dr. Andrew C.R. Martin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0102, @@ -113302,7 +101281,7 @@ Executable version 1.0 for running in Linux x86_64. biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3372 ; @@ -113311,7 +101290,7 @@ Executable version 1.0 for running in Linux x86_64. sc:url "http://biopp.univ-montp2.fr/wiki/index.php/Main_Page" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2259, @@ -113327,7 +101306,7 @@ Executable version 1.0 for running in Linux x86_64. sc:url "https://sites.google.com/site/biopredynbenchmarks/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -113348,7 +101327,7 @@ Executable version 1.0 for running in Linux x86_64. biotools:primaryContact "Ilene Karsch-Mizrachi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -113372,7 +101351,7 @@ Executable version 1.0 for running in Linux x86_64. biotools:primaryContact "Douglas L. Brutlag" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3300, edam:topic_3416, @@ -113387,7 +101366,7 @@ Executable version 1.0 for running in Linux x86_64. biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Suite" ; sc:applicationSubCategory edam:topic_0749, @@ -113408,7 +101387,7 @@ Executable version 1.0 for running in Linux x86_64. sc:url "https://gitlab.inria.fr/biopyc/BioPyC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -113425,7 +101404,7 @@ Executable version 1.0 for running in Linux x86_64. biotools:primaryContact "Jarny Choi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3071, @@ -113448,7 +101427,7 @@ Executable version 1.0 for running in Linux x86_64. biotools:primaryContact "Biopython mailing list" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -113467,7 +101446,7 @@ Executable version 1.0 for running in Linux x86_64. biotools:primaryContact "Jitao David Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0622, @@ -113483,7 +101462,7 @@ Executable version 1.0 for running in Linux x86_64. sc:url "http://bioinformaticstools.mayo.edu/research/bior/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, edam:topic_3300, @@ -113494,8 +101473,53 @@ Executable version 1.0 for running in Linux x86_64. sc:name "bioreactor" ; sc:url "https://github.com/Szczesnytendon/Bioreactor" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0218, + edam:topic_0634, + edam:topic_3063 ; + sc:citation , + "pubmed:35849818" ; + sc:description "a biomedical relation extraction dataset (BioRED) with multiple entity types (e.g. gene/protein, disease, chemical) and relation pairs (e.g. gene-disease; chemical-chemical) at the document level, on a set of 600 PubMed abstracts." ; + sc:featureList edam:operation_3096, + edam:operation_3280, + edam:operation_3625, + edam:operation_3778 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "BioRED" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ftp.ncbi.nlm.nih.gov/pub/lu/BioRED/" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_3345, + edam:topic_3366 ; + sc:citation ; + sc:description "An open source, community curated registry, meta-registry, and compact identifier resolver" ; + sc:featureList edam:operation_0336 ; + sc:isAccessibleForFree true ; + sc:license "CC0-1.0" ; + sc:name "Bioregistry" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://bioregistry.io" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3577, @@ -113512,7 +101536,7 @@ Executable version 1.0 for running in Linux x86_64. sc:url "https://eig.research.chop.edu/brptoolkit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2840, edam:topic_3300, @@ -113531,7 +101555,7 @@ Executable version 1.0 for running in Linux x86_64. sc:url "https://github.com/milesilab/BioRssay" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3071, @@ -113553,7 +101577,7 @@ Executable version 1.0 for running in Linux x86_64. biotools:primaryContact "Bioruby mailing list" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -113574,19 +101598,21 @@ Executable version 1.0 for running in Linux x86_64. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3273" ; - sc:name "Sample ID" ; - sc:sameAs "http://edamontology.org/data_3273" ] ; + sc:additionalType "http://edamontology.org/data_3273" ; + sc:name "Sample ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3567" ; - sc:name "Reference sample report" ; - sc:sameAs "http://edamontology.org/data_3567" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3567" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Reference sample report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3277 ; - sc:citation , + sc:citation , + , "pmcid:PMC3245134", - "pubmed:22096232" ; + "pmcid:PMC8728232", + "pubmed:22096232", + "pubmed:34747489" ; sc:description "This database stores information about biological samples used in molecular experiments, such as sequencing, gene expression or proteomics. It includes reference samples, such as cell lines, which are repeatedly used in experiments. Accession numbers for the reference samples will be exchanged with a similar database at NCBI, and DDBJ (Japan). Record access may be affected due to different release cycles and inter-institutional synchronisation." ; sc:featureList edam:operation_2422 ; sc:name "BioSamples" ; @@ -113599,7 +101625,7 @@ Executable version 1.0 for running in Linux x86_64. biotools:primaryContact "Query email" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3314, @@ -113615,7 +101641,7 @@ Executable version 1.0 for running in Linux x86_64. sc:url "https://github.com/efajiculay/SysBioSoft/tree/main/BioSANS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -113629,41 +101655,14 @@ Executable version 1.0 for running in Linux x86_64. sc:url "https://github.com/abdrakhimov1/Biosaur" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0632, - edam:topic_3370, - edam:topic_3371, - edam:topic_3520 ; - sc:citation , - "pubmed:31859508" ; - sc:description """Structural Analysis of 14-3-3-ζ Derived Phosphopeptides using Electron Capture Dissociation Mass Spectrometry, Travelling Wave Ion Mobility Spectrometry and Molecular Modelling. - -The Cooper Mass Spectrometry Group. - -Proteome Exchange dataset from the paper: Probing the Complementarity of FAIMS and Strong Cation Exchange Chromatography in Shotgun Proteomics, JASMS, 2013, page 431-443. - -Zipped mgf file from SCX-ETD analysis of synthetic phosphopeptides, Analytical Chemistry, 2013, page 4836-4843. - -Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical Chemistry, 2013, page 4836-4843. - -||| CORRECT NAME OF TOOL COULD ALSO BE '14-3-3-', 'biologically-derived', 'phosphopeptide', 'VVGARRSsWRVVSSI'""" ; - sc:featureList edam:operation_2929, - edam:operation_3755, - edam:operation_3767 ; - sc:name "biosciences-labs" ; - sc:url "http://www.biosciences-labs.bham.ac.uk/cooper/datasets.php" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -113694,7 +101693,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "http://emboss.open-bio.org/rel/rel6/apps/biosed.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "This service provides operations to (i) obtain synonyms for protein names from a number of sources (ii) provide uniprot identifiers for the input." ; @@ -113705,7 +101704,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "http://biosemantics.org/index.php/software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_3474, edam:topic_3512 ; @@ -113719,7 +101718,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "http://bliulab.net/BioSeq-Analysis2.0/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0218, @@ -113735,7 +101734,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "http://bliulab.net/BioSeq-BLM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -113754,7 +101753,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical biotools:primaryContact "Li Hong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -113769,7 +101768,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "http://bio.codeplex.com/wikipage?title=sequenceassembler&referringTitle=sampleapps&ANCHOR#sampleapps" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -113787,7 +101786,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "https://github.com/bioinformatics-polito/BioSeqZip" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation "pubmed:24064416" ; @@ -113802,7 +101801,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "https://bioservices.readthedocs.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0081, @@ -113819,7 +101818,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "https://bioshell.readthedocs.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0160, @@ -113837,7 +101836,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "http://www.bioshell.pl/threader/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3304 ; sc:description "Small collection of functions that I developed for processing and analysis of biological signals." ; @@ -113851,7 +101850,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical biotools:primaryContact "Ikaro Silva" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -113872,14 +101871,14 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Mathematical model" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Trajectory data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API", "Web application", @@ -113895,12 +101894,13 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:license "MIT" ; sc:name "BioSimulations" ; sc:softwareHelp , - , - ; + , + , + ; sc:url "https://www.biosimulations.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -113923,7 +101923,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "https://biosimulators.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2258, @@ -113939,7 +101939,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "http://metabolomics.pharm.uconn.edu/?q=Software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3071, @@ -113960,7 +101960,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "http://biosmalltalk.github.io/web/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0128, @@ -113977,7 +101977,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical biotools:primaryContact "BIOSMILE Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3292 ; @@ -113993,7 +101993,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical biotools:primaryContact "Mai Hamdalla" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3050, @@ -114009,14 +102009,14 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3520 ; sc:author "Martin Raus" ; @@ -114034,12 +102034,13 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3707" ; - sc:name "Biodiversity data" ; - sc:sameAs "http://edamontology.org/data_3707" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3707" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Biodiversity data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0610, + edam:topic_3050, edam:topic_3307 ; sc:description "Biospytial is a modular open source knowledge engine designed to import, organise, analyse and visualise big spatial ecological datasets using the power of graph theory. It handles species occurrences and their taxonomic classification for performing ecological analysis on biodiversity and species distributions. The engine uses a hybrid graph-relational approach to store and access information. The data are linked with relationships that are stored in a graph database, while tabular and geospatial (vector and raster) data are stored in a relational database management system (RDBMS). The graph data structure provides a scalable design that eases the problem of merging datasets from different sources. The linkage relationships use semantic structures (objects and predicates) to answer scientific questions represented as complex data structures stored in the graph database." ; sc:featureList edam:operation_0224, @@ -114057,30 +102058,30 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3115" ; - sc:name "Microarray metadata" ; - sc:sameAs "http://edamontology.org/data_3115" ], + sc:additionalType "http://edamontology.org/data_3115" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "Microarray metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3115" ; - sc:name "Microarray metadata" ; - sc:sameAs "http://edamontology.org/data_3115" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3115" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Microarray metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -114101,7 +102102,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical biotools:primaryContact "H. Pagès" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2814, @@ -114120,7 +102121,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical biotools:primaryContact "Yuan-Yu Chang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3678 ; sc:citation ; @@ -114131,7 +102132,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical biotools:primaryContact "Ugis Sarkans" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -114144,7 +102145,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "http://biosunms.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2814, @@ -114164,7 +102165,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical biotools:primaryContact "Ruben Abagyan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -114186,7 +102187,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical "Matthew Brauer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0204, @@ -114205,7 +102206,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "https://github.com/CBigOxf/BioSWITCH" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -114224,7 +102225,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "https://biosyntax.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -114246,8 +102247,30 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "http://www.ncbi.nlm.nih.gov/biosystems" ; biotools:primaryContact "Lewis Y. Geer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workbench" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_0602, + edam:topic_3306, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9096447", + "pubmed:35571058" ; + sc:description "BioTAGME framework which combinesTAGME annotation framework based on Wikipedia corpus, with DT-Hybrid methodology." ; + sc:featureList edam:operation_0306, + edam:operation_3778, + edam:operation_3927 ; + sc:license "Proprietary" ; + sc:name "BioTAGME" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://biotagme.eu/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -114263,7 +102286,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "http://www.biotapestry.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0091, @@ -114281,7 +102304,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation , @@ -114296,8 +102319,63 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "http://bioinformatics.med.uoc.gr/biotextquest" ; biotools:primaryContact "IOANNIS ILIOPOULOS" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description """BioTherapi : Bioinformatics for Therapeutic Peptides and Proteins. +This include all the relevant information about the use of Peptides/Proteins in drug and synthesis of new peptides. It also cover problems, in their formulation, synthesis and delivery process.""" ; + sc:featureList edam:operation_2945 ; + sc:name "BioTherapi" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/biotherapi/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Suite", + "Workbench" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0769, + edam:topic_3303 ; + sc:citation ; + sc:description "BioThings is a toolkit for building high-performance data APIs in biomedical research. BioThings SDK provides a Python-based toolkit to build high-performance data APIs (or web services) from a single data source or multiple data sources. It has the particular focus on building data APIs for biomedical-related entities, a.k.a \"BioThings\" (such as genes, genetic variants, drugs, chemicals, diseases, etc.).." ; + sc:featureList edam:operation_1812, + edam:operation_2422, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "BioThings" ; + sc:softwareHelp ; + sc:url "https://biothings.io/" ; + biotools:primaryContact . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0625, + edam:topic_3170, + edam:topic_3360, + edam:topic_3452 ; + sc:citation , + "pubmed:35640613" ; + sc:description "BioTIP: an R-package for Characterization of Biological Tipping Points." ; + sc:featureList edam:operation_0314, + edam:operation_1781, + edam:operation_3463 ; + sc:license "Not licensed" ; + sc:name "BioTIP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/xyang2uchicago/BioTIP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -114315,7 +102393,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:url "https://www.biotite-python.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -114336,7 +102414,7 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical biotools:primaryContact "Nima Hejazi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0769, @@ -114351,8 +102429,53 @@ Zipped mgf file from FAIMS-ETD analysis of synthetic phosphopeptides, Analytical sc:name "BioTracs" ; sc:url "https://bioaster.github.io/biotracs/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_0798 ; + sc:citation , + "pmcid:PMC4896371", + "pubmed:26794317" ; + sc:description "The Bio::TraDIS pipeline provides software utilities for the processing, mapping, and analysis of transposon insertion sequencing data. The pipeline was designed with the data from the TraDIS sequencing protocol in mind, but should work with a variety of transposon insertion sequencing protocols as long as they produce data in the expected format." ; + sc:featureList edam:operation_2403 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "biotradis" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/sanger-pathogens/Bio-Tradis" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Desktop application", + "Web application" ; + sc:applicationSubCategory edam:topic_0152, + edam:topic_0154, + edam:topic_0593, + edam:topic_3172, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC9252798", + "pubmed:35536252" ; + sc:description "BioTransformer is a freely available web server that supports accurate, rapid and comprehensive in silico metabolism prediction." ; + sc:featureList edam:operation_0417, + edam:operation_3803, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "BioTransformer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "3.1.0" ; + sc:url "https://biotransformer.ca" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0602, @@ -114384,7 +102507,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; "Olga Papadodima" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_2259, @@ -114399,14 +102522,30 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:softwareHelp ; sc:url "http://www.biouml.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_3344 ; + sc:citation , + "pmcid:PMC8756089", + "pubmed:34636886" ; + sc:description "BioVAE is a pre-trained latent variable language model for biomedical text mining. Large scale pre-trained language models (PLMs) have advanced state-of-the-art (SOTA) performance on various biomedical text mining tasks. The power of such PLMs can be combined with the advantages of deep generative models. These are examples of these combinations. However, they are trained only on general domain text, and biomedical models are still missing. In this work, we describe BioVAE, the first large scale pre-trained latent variable language model for the biomedical domain, which uses the OPTIMUS framework to train on large volumes of biomedical text. The model shows SOTA performance on several biomedical text mining tasks when compared to existing publicly available biomedical PLMs." ; + sc:featureList edam:operation_0306 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "BioVAE" ; + sc:url "https://github.com/aistairc/BioVAE" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "JSON payloads and ontologies become widely adopted in the life science community, validation of ontologies described in JSON documents becomes ever more important. ELIXIR biovalidator is a custom extension to existing JSON Schema syntax to include ontology validation and an implementation based on the Ajv javascript library" ; sc:name "biovalidator" ; sc:url "https://github.com/elixir-europe/biovalidator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0092, @@ -114425,7 +102564,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; biotools:primaryContact "Tim Hulsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602 ; @@ -114439,8 +102578,29 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:name "Bioverse" ; sc:url "http://bioverse.compbio.washington.edu/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_2640, + edam:topic_3372 ; + sc:citation , + "pmcid:PMC9233186", + "pubmed:35782729" ; + sc:description "A Markdown-based lightweight website builder for reproducible and interactive visualization of results from peer-reviewed publications." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "BioVisReport" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://biovis.report/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0780, @@ -114457,7 +102617,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "https://bioviz.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -114477,7 +102637,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; biotools:primaryContact "Michael Lawrence" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0208, edam:topic_2640, @@ -114498,7 +102658,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "http://biohealth.snu.ac.kr/software/biovlab_cancer_pharmacogenomics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -114515,7 +102675,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "https://github.com/LichtargeLab/BioVNN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -114533,10 +102693,10 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3298 ; @@ -114556,7 +102716,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "https://bip.earlham.ac.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092 ; sc:description "Search engine for popular or influential open access papers in Life Sciences that supports visualization of publication analytics." ; @@ -114570,22 +102730,20 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1042" ; - sc:name "SCOP sunid" ; - sc:sameAs "http://edamontology.org/data_1042" ] ; + sc:additionalType "http://edamontology.org/data_1042" ; + sc:name "SCOP sunid" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ], + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein interaction data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128 ; sc:citation ; @@ -114597,7 +102755,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; biotools:primaryContact "Semin Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -114612,7 +102770,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "http://bipad.cmh.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0821, @@ -114632,14 +102790,13 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1218" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_2259 ; sc:author ; @@ -114657,8 +102814,31 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:softwareVersion "1" ; sc:url "http://sbi.imim.es/BIPS.php" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0196, + edam:topic_2275, + edam:topic_3474, + edam:topic_3534 ; + sc:citation , + "pubmed:35662471" ; + sc:description "BIPSPI (xgBoost Interface Prediction of Specific Partner Interactions) is a partner specific binding site predictor that employs the XGBoost algorithm" ; + sc:featureList edam:operation_2492, + edam:operation_2575, + edam:operation_3350, + edam:operation_3899 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "BIPSPI+" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bipspi.cnb.csic.es" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3173, @@ -114679,7 +102859,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; biotools:primaryContact "BiQ Analyzer team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0654, @@ -114702,7 +102882,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; "Web-site problems" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3168, @@ -114722,7 +102902,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; biotools:primaryContact "Pavlo Lutsik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3382, @@ -114739,7 +102919,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "https://github.com/bleach1by1/BIRDS_plugin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602 ; @@ -114758,8 +102938,28 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/BiRewire.html" ; biotools:primaryContact "Andrea Gobbi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_3170, + edam:topic_3308, + edam:topic_3315, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9178250", + "pubmed:35692809" ; + sc:description "A computational method BiRGRN to infer GRNs from time-series scRNA-seq data." ; + sc:featureList edam:operation_1781, + edam:operation_3625, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "BiRGRN" ; + sc:url "https://gitee.com/DHUDBLab/bi-rgrn" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -114780,18 +102980,18 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2013" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -114811,7 +103011,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; biotools:primaryContact "Holger Froehlich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3168, @@ -114830,7 +103030,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; biotools:primaryContact "Benjamin P Berman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0623 ; @@ -114847,7 +103047,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; "Francesco Oteri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3125 ; @@ -114862,7 +103062,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "http://bisa.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3170, @@ -114883,7 +103083,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "https://github.com/tgen/bisbee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -114904,8 +103104,26 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "https://bisc.soe.ucsc.edu/" ; biotools:primaryContact "Dietlind L. Gerloff" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_3068, + edam:topic_3452 ; + sc:citation , + "pubmed:34986264" ; + sc:description "BISCAP (Biofilm Imaging and Structure Classification Automatic Processor) a high-fidelity strategy for the automatic processing of 2D OCT biofilm." ; + sc:featureList edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "BISCAP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/diogonarciso/BISCAP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2269, @@ -114920,7 +103138,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "http://cfdr.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -114940,7 +103158,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "https://github.com/institut-de-genomique/biscot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3292 ; @@ -114955,7 +103173,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "http://virtualrat.org/software/bisen/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -114974,7 +103192,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; biotools:primaryContact "Katja Hebestreit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, edam:topic_2640, @@ -114991,7 +103209,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "https://github.com/LingtaoSu/BISG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3173, @@ -115011,7 +103229,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; biotools:primaryContact "Simon Andrews" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3295 ; @@ -115028,7 +103246,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; biotools:primaryContact "Devon Patrick Ryan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219, edam:topic_3512 ; @@ -115041,7 +103259,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "http://bisque.yulab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "BiSSAP is a computer program designed to facilitate the creation of sequence listings for patent applications containing biological sequences (see Rule 30 EPC, Rule 5.2 PCT, and the Decision of the President and Notice from the EPO dated 28 April 2011 (OJ EPO 6/2011, 372 ff.))." ; @@ -115056,7 +103274,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "http://www.epo.org/applying/online-services/online-filing/auxiliary/bissap.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -115070,7 +103288,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "http://epigenome.cbrc.jp/bisulfighter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Bit-Table Based Biclustering and Frequent Closed Itemset Mining in High-Dimensional Binary Data. Method to find both frequent closed itemsets and biclusters in high-dimensional binary data." ; sc:isAccessibleForFree true ; @@ -115083,7 +103301,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; biotools:primaryContact "Janos Abonyi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Script" ; sc:applicationSubCategory edam:topic_0736, @@ -115102,8 +103320,28 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:name "BiteNet" ; sc:url "https://github.com/i-Molecule/bitenet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_2640, + edam:topic_3421, + edam:topic_3474, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC9235492", + "pubmed:35758796" ; + sc:description "BITES: Balanced Individual Treatment Effect for Survival data is a package for counterfactual survival analysis with the aim to predict the individual treatment effect of patients based on right-censored data." ; + sc:featureList edam:operation_2422, + edam:operation_3435, + edam:operation_3503 ; + sc:isAccessibleForFree true ; + sc:license "BSD-2-Clause" ; + sc:name "BITES" ; + sc:url "https://github.com/sschrod/BITES" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053, @@ -115120,14 +103358,13 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "BitMapperBS is an ultra-fast and memory-efficient aligner that is designed for WGBS reads from directional protocol." ; sc:featureList edam:operation_3186 ; @@ -115135,7 +103372,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:url "https://github.com/chhylp123/BitMapperBS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation , @@ -115152,7 +103389,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; biotools:primaryContact "Joshua Loving" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0203, @@ -115169,20 +103406,60 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:softwareHelp ; sc:url "https://github.com/LQCT/BitQT.git" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3384, + edam:topic_3444, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9396958", + "pubmed:36005929" ; + sc:description "A CNN-Transformer combined model, called BiTr-Unet, with specific modifications for brain tumor segmentation on multi-modal MRI scans" ; + sc:featureList edam:operation_2422, + edam:operation_2428, + edam:operation_3435 ; + sc:license "Apache-2.0" ; + sc:name "BiTr-Unet" ; + sc:url "https://github.com/JustaTinyDot/BiTr-Unet" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0625, + edam:topic_2640, + edam:topic_3676, + edam:topic_3974 ; + sc:citation , + "pmcid:PMC9116244", + "pubmed:35368055" ; + sc:description "Bayesian inference of Tumor clonal Tree by joint analysis of Single-Cell SNV and CNA data" ; + sc:featureList edam:operation_0323, + edam:operation_2238, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "BiTSC2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ucasdp/BiTSC2" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -115204,7 +103481,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; "Panagiotis Papastamoulis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3292, @@ -115221,7 +103498,7 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -115238,29 +103515,29 @@ http://motherbox.chemeng.ntua.gr/anastasia_dev/""" ; sc:name "Bivartect" ; sc:url "https://github.com/ykat0/bivartect" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3361, - edam:topic_3379, - edam:topic_3421, - edam:topic_3571 ; - sc:citation , - "pmcid:PMC6811965", - "pubmed:31667297" ; - sc:description """Survey data on the quality of life of consumers fitted with osseointegrated fixation and bone-anchored limb prostheses provided by government organization. - -Survey on the quality of life of consumers fitted with osseointegrated fixation and bone-anchored limb prostheses provided by government organization. - -This specifically-designed survey data on the quality of life was administered by Queensland Artificial Limb Services (QALS) as an integrated part of its continuous quality improvement procedure for assessing the provision of bone-anchored prosthesis. - -Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'QALS', 'bone-anchored prosthesis', 'bone-anchored', 'prosthesis'""" ; - sc:featureList edam:operation_3435 ; - sc:name "bkbxxmrhfh" ; - sc:url "https://data.mendeley.com/datasets/bkbxxmrhfh/1" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_2269, + edam:topic_2815 ; + sc:citation , + "pmcid:PMC8978432", + "pubmed:35369863" ; + sc:description "An R package for the nonparametric and semiparametric analysis of bivariate alternating recurrent events." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "BivRec" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cran.r-project.org/package=BivRec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0602, @@ -115275,7 +103552,7 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. biotools:primaryContact "Liming Cai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3305, @@ -115291,14 +103568,13 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634 ; sc:citation , @@ -115315,7 +103591,7 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. sc:url "http://www.dbagenes.unito.it" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3316, @@ -115332,7 +103608,7 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. sc:url "https://github.com/biointec/blamm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "Generates bland Altman plot" ; @@ -115347,7 +103623,7 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. biotools:primaryContact "Barry Greene" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -115369,8 +103645,31 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. sc:url "http://ekhidna.biocenter.helsinki.fi/poxo/blannotator" ; biotools:primaryContact "BLANNOTATOR Webmaster" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_2830, + edam:topic_3305, + edam:topic_3575, + edam:topic_3673 ; + sc:citation , + ; + sc:description "The blantyreESBL R package is a repository for data generated as part of a study into carriage of resistant bacteria in Blantyre, Malawi" ; + sc:featureList edam:operation_0323, + edam:operation_0337, + edam:operation_3431, + edam:operation_3840 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "blantyreESBL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://doi.org/10.5281/zenodo.5554082" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -115386,30 +103685,29 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0080, - edam:topic_0622 ; + edam:topic_0091 ; sc:citation , , + , + , + "pmcid:PMC2447716", + "pmcid:PMC3692093", "pmcid:PMC5013910", + "pubmed:18440982", + "pubmed:2231712", + "pubmed:23609542", "pubmed:27256311" ; sc:description "A tool that finds regions of similarity between biological sequences. The program compares nucleotide or protein sequences to sequence databases and calculates the statistical significance." ; sc:featureList edam:operation_0292, @@ -115419,12 +103717,13 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:softwareHelp ; + sc:softwareHelp , + ; sc:url "https://blast.ncbi.nlm.nih.gov/Blast.cgi" ; biotools:primaryContact "BLAST Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -115446,7 +103745,7 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. biotools:primaryContact "Patrick Durand" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -115463,7 +103762,7 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. sc:url "https://github.com/torkian/blast-QC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -115484,18 +103783,20 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3511 ; - sc:citation ; + sc:citation , + , + "pmcid:PMC2425479", + "pubmed:16081474", + "pubmed:18445632" ; sc:description "Bioinformatics platform for high-quality functional annotation and analysis of genomic datasets. It allows analyzing and visualizing newly sequenced genomes by combining state-of-the-art methodologies, standard resources and algorithms. It allows to gain biological insights fast and easy even for completely novel genomes. Perform out-of-the-box the entire workflow of functional annotation of your transcriptomic datasets including its analysis and biological interpretation." ; sc:featureList edam:operation_3672 ; sc:name "Blast2GO" ; @@ -115507,18 +103808,15 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -115532,14 +103830,12 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -115556,14 +103852,14 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence search results" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -115584,14 +103880,12 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0781, @@ -115604,21 +103898,20 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622 ; - sc:author "Web Production" ; + sc:author "Job Dispatcher" ; sc:citation , + , , "pmcid:PMC2803857", "pmcid:PMC5013910", @@ -115637,18 +103930,16 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. , ; sc:url "http://www.ebi.ac.uk/Tools/sss/ncbiblast/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -115665,7 +103956,7 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. biotools:primaryContact "ExPASy helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0092, @@ -115688,7 +103979,7 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. sc:url "https://github.com/pgdurand/BlastViewer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -115703,7 +103994,7 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. sc:url "http://evolve.zoo.ox.ac.uk/Evolve/Blastalign.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -115721,7 +104012,7 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. sc:url "https://github.com/nluhmann/BlastFrost" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3316 ; @@ -115734,7 +104025,7 @@ Published: 19 Jul 2019 : Version 1 : DOI: 10.17632/bkbxxmrhfh.1. sc:url "https://github.com/GuillaumeHolley/BlastGraph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0081, @@ -115751,7 +104042,7 @@ Users can build databases and perform sequence filtering and sequence alignment sc:url "https://github.com/byemaxx/BlastGUI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3174 ; @@ -115767,7 +104058,7 @@ Users can build databases and perform sequence filtering and sequence alignment biotools:primaryContact "Minoru Kanehisa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:17483516" ; @@ -115779,14 +104070,12 @@ Users can build databases and perform sequence filtering and sequence alignment a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -115799,7 +104088,7 @@ Users can build databases and perform sequence filtering and sequence alignment sc:url "http://prodom.prabi.fr/prodom/current/documentation/blastProDom.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -115813,8 +104102,22 @@ Users can build databases and perform sequence filtering and sequence alignment sc:softwareVersion "2.2" ; sc:url "http://www.tcoffee.org/Projects/blastr/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3068 ; + sc:description "Convert BlastXML results into GFF3 format." ; + sc:featureList edam:operation_3434 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "blastxml to gapped gff3" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://usegalaxy.org.au/root?tool_id=toolshed.g2.bx.psu.edu/repos/iuc/blastxml_to_gapped_gff3/blastxml_to_gapped_gff3/1.1" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:11932250" ; @@ -115831,7 +104134,7 @@ Users can build databases and perform sequence filtering and sequence alignment "Website and data questions" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -115845,7 +104148,7 @@ Users can build databases and perform sequence filtering and sequence alignment biotools:primaryContact "Anand Ramachandran" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0157, edam:topic_0196, @@ -115862,8 +104165,29 @@ Users can build databases and perform sequence filtering and sequence alignment sc:url "https://github.com/Swart-lab/bleties" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0769, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8961055", + "pubmed:35382539" ; + sc:description "A Python package for integrating BioLector microcultivation devices in the Design-Build-Test-Learn cycle." ; + sc:featureList edam:operation_1812, + edam:operation_3799, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "bletl" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/JuBiotech/bletl" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3174, @@ -115881,7 +104205,7 @@ Users can build databases and perform sequence filtering and sequence alignment . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -115899,7 +104223,7 @@ Users can build databases and perform sequence filtering and sequence alignment biotools:primaryContact "Vojtech Kulvait" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199 ; @@ -115915,7 +104239,7 @@ Users can build databases and perform sequence filtering and sequence alignment biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description """Server for performing blind docking calculations. Unique approach where user only inputs ligand and protein, and where the whole protein surface area is processed in order to find potential ligand interaction spots. Main application case can be found at: @@ -115925,7 +104249,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "https://bio-hpc.ucam.edu/achilles" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3293 ; @@ -115940,7 +104264,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "Erik Sonnhammer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_1775, @@ -115961,7 +104285,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "Tin Nguyen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, @@ -115981,7 +104305,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "Julie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -115998,16 +104322,34 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:operatingSystem "Linux" ; sc:url "https://github.com/DRL/blobtools" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_3518, + edam:topic_3520 ; + sc:citation ; + sc:description "SIMD-accelerated library for computing global and X-drop affine gap penalty sequence-to-sequence or sequence-to-profile alignments using an adaptive block-based algorithm." ; + sc:featureList edam:operation_0300, + edam:operation_0491, + edam:operation_0496 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "block aligner" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/Daniel-Liu-c0deb0t/block-aligner" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence coordinates" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation , @@ -116019,7 +104361,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://hoffmann.bioinf.uni-leipzig.de/LIFE/blockbuster.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0160, @@ -116035,8 +104377,29 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://research4.dfci.harvard.edu/cvc/blocklogo/index.php" ; biotools:primaryContact "Lars Rønn Olsen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_3474, + edam:topic_3673 ; + sc:citation , + "pubmed:34619757" ; + sc:description "Tool for accurate polishing of long-read assembly via block divide-and-conquer" ; + sc:featureList edam:operation_0310, + edam:operation_0491, + edam:operation_0492, + edam:operation_3195 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "BlockPolish" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/huangnengCSU/BlockPolish" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -116058,7 +104421,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0097 ; @@ -116071,7 +104434,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "https://code.google.com/p/backbone-advance/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3344, @@ -116087,7 +104450,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "Chen yuan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0218, edam:topic_2840, @@ -116103,7 +104466,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://bloodexposome.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -116119,7 +104482,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "John Hedengren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Control blood sugar levels by adjusting insulin injection pump rate" ; sc:isAccessibleForFree true ; @@ -116132,7 +104495,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "John Hedengren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -116151,7 +104514,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "Ashkan Abbasi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0804, @@ -116174,7 +104537,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "https://github.com/Drinchai/BloodGen3Module" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -116193,7 +104556,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "https://github.com/Drinchai/BloodGen3Module" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3070, @@ -116212,18 +104575,15 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1863" ; - sc:name "Haplotype map" ; - sc:sameAs "http://edamontology.org/data_1863" ] ; + sc:additionalType "http://edamontology.org/data_1863" ; + sc:name "Haplotype map" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation , @@ -116240,7 +104600,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "Thomas Mailund" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -116257,7 +104617,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://microbiology.se/software/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3047, @@ -116275,14 +104635,12 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3148" ; - sc:name "Gene family report" ; - sc:sameAs "http://edamontology.org/data_3148" ] ; + sc:additionalType "http://edamontology.org/data_3148" ; + sc:name "Gene family report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1353" ; + sc:name "Sequence motif" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0797 ; sc:citation ; @@ -116297,7 +104655,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://bioinformatics.intec.ugent.be/blsspeller/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -116312,7 +104670,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://www.bioinformatics.csiro.au/blue/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -116332,7 +104690,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "https://github.com/TXiang-lab/blupADC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation , @@ -116348,7 +104706,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://nce.ads.uga.edu/html/projects/programs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, edam:topic_0160, @@ -116364,7 +104722,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://lbgi.fr/blur/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3332 ; sc:citation ; @@ -116381,7 +104739,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "Silvio C.E. Tosatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -116398,7 +104756,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "https://github.com/galvezuma/BLVector" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -116414,7 +104772,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://health.bsd.uchicago.edu/yji/soft.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -116431,7 +104789,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "Juhee Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -116444,8 +104802,32 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:softwareHelp ; sc:url "http://bioputer.mimuw.edu.pl/papers/bmap/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_0821, + edam:topic_2229, + edam:topic_3293, + edam:topic_3944 ; + sc:citation , + "pmcid:PMC9052549", + "pubmed:35484563" ; + sc:description "A webtool to identify and analyze bacterial microcompartment types in sequence data." ; + sc:featureList edam:operation_0314, + edam:operation_0477, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "BMC Caller" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bmc-caller.prl.msu.edu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "Probability results are informed plus recall, precision, F factor, G factor, correlation and kappa." ; @@ -116460,7 +104842,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "David Powers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -116475,7 +104857,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "https://github.com/Greco-Lab/BMDx/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0128, @@ -116492,18 +104874,18 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1998" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1973" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084 ; sc:author "Alexis Criscuolo" ; @@ -116527,7 +104909,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "Alexis Criscuolo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078 ; sc:description "B-MIPT is a tool using Image Processing and Genetic Algorithm to study the rate of expression of both the proteins in the placenta." ; @@ -116540,7 +104922,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://www.juit.ac.in/attachments/Bmipt/Home%20Page.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -116558,7 +104940,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://motif.t-ridership.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in", "Suite" ; sc:applicationSubCategory edam:topic_3361, @@ -116573,7 +104955,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "https://biomotionlab.github.io/TUX/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3293, @@ -116593,7 +104975,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "Remco R. Bouckaert" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, @@ -116613,7 +104995,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://www.bmrb.wisc.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -116628,7 +105010,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://www.cbil.ece.vt.edu/software.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_3071 ; @@ -116645,7 +105027,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "M.A.Swertz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Library" ; sc:applicationSubCategory edam:topic_0769, @@ -116660,7 +105042,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "https://github.com/EngBioNUS/BMSS2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0632, @@ -116681,7 +105063,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "https://github.com/nasiriqbal012/BMT_SETUP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -116698,7 +105080,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "https://alleninstitute.github.io/bmtk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -116713,7 +105095,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://www.bioinformatics.org/bna/wiki/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation ; @@ -116730,7 +105112,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "Kipper Fletez-Brant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -116750,7 +105132,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; "Xiaoning Qian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -116765,7 +105147,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://www.csbio.sjtu.edu.cn/bioinf/BND/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -116780,8 +105162,18 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:name "BnpC" ; sc:url "https://github.com/cbg-ethz/BnpC" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "Steady-state analysis of Boolean molecular network models via model reduction and computational algebra" ; + sc:isAccessibleForFree true ; + sc:license "Freeware" ; + sc:name "BNReduction" ; + sc:softwareHelp ; + sc:url "https://github.com/alanavc/BNReduction" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2815, @@ -116802,7 +105194,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "https://github.com/midiacom/BNS-Framework" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, edam:topic_0194, @@ -116817,7 +105209,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://boa.cs.iastate.edu/boag" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3382 ; @@ -116827,7 +105219,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "http://www.genoscope.cns.fr/boardion/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -116843,7 +105235,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "https://github.com/shunfumao/boassembler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0209, @@ -116863,7 +105255,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "Dušanka Janežič" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -116879,7 +105271,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "Qin Ma, Ph.D" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0820, @@ -116896,7 +105288,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; biotools:primaryContact "Arne Elofsson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0166, @@ -116912,8 +105304,28 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:softwareHelp ; sc:url "http://users.abo.fi/bodil/about.php" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0092, + edam:topic_2640, + edam:topic_3063, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8903180", + "pubmed:35274087" ; + sc:description "R package and Shiny application designed to generate anatomical visualizations of cancer lesions." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "BodyMapR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/TheMillerLab/BodyMapR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0097, edam:topic_3071, @@ -116932,8 +105344,55 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "https://github.com/jpritt/boiler" ; biotools:primaryContact "Langmead B" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Suite", + "Web application" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_2640, + edam:topic_3379 ; + sc:citation , + , + , + "pmcid:PMC8462603", + "pmcid:PMC8579094", + "pubmed:33439726", + "pubmed:34777832" ; + sc:description "The Bayesian optimal interval (BOIN) design is a novel phase I clinical trial design for finding the maximum tolerated dose (MTD). It can be used to design both single-agent and drug-combination trials." ; + sc:featureList edam:operation_0479, + edam:operation_3454, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "BOIN" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "https://www.trialdesign.org/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0769, + edam:topic_3170 ; + sc:citation , + "pubmed:34788788" ; + sc:description "Bollito is a Snakemake pipeline that performs a comprehensive single-cell RNA-seq analysis, covering both the basic steps (QC, alignment, quantification and cell specific QC) and more advanced downstream analyses (clustering, diferential expresion, trajectory inference, functional analysis and RNA velocity)." ; + sc:featureList edam:operation_0244, + edam:operation_3223, + edam:operation_3680 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "bollito" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://gitlab.com/bu_cnio/bollito" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3127, @@ -116953,7 +105412,7 @@ https://www.nature.com/articles/s41589-019-0278-6""" ; sc:url "https://github.com/salzberg-lab/bolotie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -116971,23 +105430,40 @@ Authors: Anastasia Voronkova, Pavel Sulimov, and Attila Kertesz-Farkas National sc:url "https://github.com/kfattila/BoltzMatch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:applicationSubCategory edam:topic_0080, + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_0080, edam:topic_0121, + edam:topic_0152, + edam:topic_0153, edam:topic_0601, edam:topic_0749, edam:topic_3390 ; sc:citation , - "pubmed:31958638" ; - sc:description "BoMiProt is a manually curated, comprehensive repository of published information of bovine milk proteins. It provides a bird’s eye view of the on-going research on bovine milk and possible information gaps that needs attention for maximizing health promoting effects of milk and different dairy products. It is a focused effort to consolidate the existing information of different milk proteins with focus on functions, biochemical properties, post translational modifications and significance of the protein in milk." ; - sc:featureList edam:operation_0477, + , + "pubmed:31958638", + "pubmed:35995382" ; + sc:description "BoMiProt is a manually curated, comprehensive repository of published information of bovine milk proteins." ; + sc:featureList edam:operation_0269, + edam:operation_0303, + edam:operation_0477, edam:operation_0570, - edam:operation_2422 ; + edam:operation_2422, + edam:operation_3904 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; sc:name "BoMiProt" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "2.0" ; sc:url "http://bomiprot.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0736, @@ -117006,7 +105482,7 @@ Authors: Anastasia Voronkova, Pavel Sulimov, and Attila Kertesz-Farkas National biotools:primaryContact "BOMP Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3360 ; @@ -117024,7 +105500,7 @@ Authors: Anastasia Voronkova, Pavel Sulimov, and Attila Kertesz-Farkas National biotools:primaryContact "Francesco Sambo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -117043,8 +105519,19 @@ Authors: Anastasia Voronkova, Pavel Sulimov, and Attila Kertesz-Farkas National sc:url "http://bonej.org" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "Synthesis of Most Permissive Boolean Networks from network architecture and dynamical properties" ; + sc:isAccessibleForFree true ; + sc:name "BoNesis" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bioasp/bonesis" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0625, @@ -117060,7 +105547,7 @@ Authors: Anastasia Voronkova, Pavel Sulimov, and Attila Kertesz-Farkas National biotools:primaryContact "Ethan M. Jewett" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -117078,7 +105565,7 @@ Behavioural Tracking and Analysis.""" ; biotools:primaryContact "Tod R. Thiele" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3063 ; sc:description "A framework for blood type prediction from genotype data." ; @@ -117093,8 +105580,40 @@ Behavioural Tracking and Analysis.""" ; sc:url "http://protein.bio.unipd.it/download/" ; biotools:primaryContact "Silvio C.E. Tosatto" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0749, + edam:topic_3170, + edam:topic_3308, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9245221", + "pubmed:35768836" ; + sc:description "Bookend is a comprehensive framework for end-guided assembly of short-read, long-read, and end-capture RNA-seq data." ; + sc:featureList edam:operation_0523, + edam:operation_3192, + edam:operation_3258 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Bookend" ; + sc:url "https://github.com/Gregor-Mendel-Institute/bookend" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "Intuitive and accessible tools for simulating biological regulatory networks in a boolean formalism" ; + sc:isAccessibleForFree true ; + sc:license "gnuplot" ; + sc:name "BooleanNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ialbert/booleannet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0780, @@ -117107,8 +105626,18 @@ Behavioural Tracking and Analysis.""" ; sc:url "https://github.com/dyhe-2000/Boolink-GUI" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "Provides methods to reconstruct and generate synchronous, asynchronous, probabilistic and temporal Boolean networks, and to analyze and visualize attractors in Boolean networks." ; + sc:isAccessibleForFree true ; + sc:name "BoolNet" ; + sc:softwareHelp ; + sc:softwareVersion "2.1.5" ; + sc:url "https://cran.r-project.org/web/packages/BoolNet/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation "pubmed:24166654" ; @@ -117120,7 +105649,7 @@ Behavioural Tracking and Analysis.""" ; sc:url "https://sites.google.com/site/boolspace/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Boost is a set of libraries for the C++ programming language that provides support for tasks and structures such as linear algebra, pseudorandom number generation, multithreading, image processing, regular expressions, and unit testing." ; sc:license "Other" ; @@ -117131,16 +105660,34 @@ Behavioural Tracking and Analysis.""" ; ; sc:url "https://www.boost.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0821, + edam:topic_3407, + edam:topic_3474 ; + sc:citation , + "pubmed:35412599" ; + sc:description "Boost-RS is an innovative general RS framework that enhances RS performance by “boosting” embedding vectors based on auxiliary data." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Boost-RS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/HassounLab/Boost-RS" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -117163,7 +105710,7 @@ Behavioural Tracking and Analysis.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -117181,7 +105728,7 @@ Behavioural Tracking and Analysis.""" ; biotools:primaryContact "The Tien Mai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3575 ; sc:citation ; @@ -117193,7 +105740,7 @@ Behavioural Tracking and Analysis.""" ; sc:url "https://CRAN.R-project.org/package=bootComb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -117209,7 +105756,7 @@ Behavioural Tracking and Analysis.""" ; sc:url "http://www.csc.kth.se/~arve/code/bootfam/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Suite" ; sc:applicationSubCategory edam:topic_3416 ; @@ -117224,7 +105771,7 @@ Behavioural Tracking and Analysis.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749, @@ -117242,7 +105789,7 @@ Behavioural Tracking and Analysis.""" ; sc:url "https://github.com/betsig/borf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3444, edam:topic_3452, @@ -117253,8 +105800,88 @@ Behavioural Tracking and Analysis.""" ; sc:name "Bosniak Calculator" ; sc:url "https://bosniak-calculator.herokuapp.com/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2640, + edam:topic_3375, + edam:topic_3407, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9187084", + "pubmed:35639775" ; + sc:description "BOSO, an R package to perform feature selection in a linear regression problem." ; + sc:featureList edam:operation_3435, + edam:operation_3659, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "BOSO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cran.r-project.org/web/packages/BOSO/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9200967", + "pubmed:35719691" ; + sc:description "Building one-shot semi-supervised (BOSS) learning on CIFAR-10 and SVHN up to attain test accuracies that are comparable to fully supervised learning." ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "BOSS" ; + sc:url "https://github.com/lnsmith54/BOSS" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0611, + edam:topic_3071, + edam:topic_3304, + edam:topic_3384, + edam:topic_3452 ; + sc:citation , + "pmcid:PMC8885591", + "pubmed:35242021" ; + sc:description "Scalable volumetric 3D and 4D database for the cloud." ; + sc:featureList edam:operation_0337, + edam:operation_3431, + edam:operation_3761 ; + sc:isAccessibleForFree true ; + sc:name "BossDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bossdb.org/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0637, + edam:topic_0780, + edam:topic_3068, + edam:topic_3305 ; + sc:citation , + "pmcid:PMC8517499", + "pubmed:34651182" ; + sc:description "Is an online platform focuses on providing an up-to-date account of Botryosphaeriales with notes on orders, families and genera and species, keeping abreast of the current literature." ; + sc:isAccessibleForFree true ; + sc:name "Botryosphaeriales" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://botryosphaeriales.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -117272,7 +105899,7 @@ Behavioural Tracking and Analysis.""" ; biotools:primaryContact "E. A. Müller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3068 ; @@ -117289,7 +105916,7 @@ Behavioural Tracking and Analysis.""" ; biotools:primaryContact "BotDB team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0654, @@ -117306,7 +105933,7 @@ Behavioural Tracking and Analysis.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0605, @@ -117323,8 +105950,28 @@ Behavioural Tracking and Analysis.""" ; sc:url "http://boutiques.github.io/" ; biotools:primaryContact "Tristan Glatard" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench", + "Workflow" ; + sc:applicationSubCategory edam:topic_3382, + edam:topic_3500, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC8928879", + "pubmed:35342615" ; + sc:description "A deep learning-based software for pose estimation to evaluate nightly behavior and its application to Common Elands (Tragelaphus oryx) in zoos." ; + sc:featureList edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "BOVIDS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Klimroth/BOVIDS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3071 ; @@ -117339,7 +105986,7 @@ Behavioural Tracking and Analysis.""" ; biotools:primaryContact "Dong Xie's contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0820, @@ -117357,14 +106004,13 @@ Behavioural Tracking and Analysis.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3449" ; - sc:name "Cell migration track image" ; - sc:sameAs "http://edamontology.org/data_3449" ] ; + sc:additionalType "http://edamontology.org/data_3449" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Cell migration track image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2269, @@ -117385,26 +106031,26 @@ Behavioural Tracking and Analysis.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -117431,14 +106077,14 @@ Behavioural Tracking and Analysis.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622 ; @@ -117469,7 +106115,7 @@ Behavioural Tracking and Analysis.""" ; biotools:primaryContact "Ben Langmead" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -117493,7 +106139,7 @@ Behavioural Tracking and Analysis.""" ; biotools:primaryContact "Support form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_0203, @@ -117512,7 +106158,7 @@ Behavioural Tracking and Analysis.""" ; sc:url "https://github.com/sunshanwen/BP4RNAseq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3335, @@ -117528,7 +106174,7 @@ Behavioural Tracking and Analysis.""" ; biotools:primaryContact "Alexandre Laurin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -117541,7 +106187,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://data.bioplatforms.com/organization/pages/bioplatforms-australia/api-access" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3474 ; @@ -117557,7 +106203,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Jiang Qian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -117574,8 +106220,28 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://biocomputer.bio.cuhk.edu.hk/T3DB/BPBAac.php" ; biotools:primaryContact "Yejun Wang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:34846675" ; + sc:description "A package for Bayesian Paired Comparison analysis with Stan." ; + sc:featureList edam:operation_3435, + edam:operation_3659, + edam:operation_3664 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "bpcs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://davidissamattos.github.io/bpcs/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -117592,7 +106258,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://webtom.cabgrid.res.in/bpdrtdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2814 ; @@ -117607,10 +106273,10 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Web API", @@ -117643,7 +106309,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://www.bpforms.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0605, @@ -117657,7 +106323,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://docs.bpipe.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, @@ -117673,7 +106339,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Kengo SATO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091 ; sc:citation ; @@ -117689,7 +106355,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3452 ; sc:citation , @@ -117702,7 +106368,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -117718,8 +106384,27 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://bcb.cs.tufts.edu/validatedBPM/index.html" ; biotools:primaryContact "Ben Hescott" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0097, + edam:topic_0099, + edam:topic_0154, + edam:topic_3382 ; + sc:citation , + "pubmed:35059942" ; + sc:description "This software is for computing base pair networks found in DNA/RNA. The software also calculates the overlap based network computations." ; + sc:featureList edam:operation_0394, + edam:operation_0570, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "BPNet" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/computational-biology/bpnet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3299 ; sc:author , @@ -117737,7 +106422,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3293 ; @@ -117755,8 +106440,33 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP ; sc:url "http://abacus.gene.ucl.ac.uk/software.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal", + "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_0089, + edam:topic_0780, + edam:topic_3297, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC9216523", + "pubmed:35396594" ; + sc:description "A web-based tool to access and analyse bacterial pesticidal proteins." ; + sc:featureList edam:operation_0474, + edam:operation_2421, + edam:operation_2997 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "BPPRC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.bpprc.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -117773,7 +106483,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://www.bios.unc.edu/~weisun/software/BPrimm.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -117791,7 +106501,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Chantriolnt-Andreas Kapourani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -117812,7 +106522,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3071, @@ -117830,7 +106540,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP "Olga Vitek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697 ; @@ -117843,20 +106553,44 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:softwareHelp ; sc:url "https://ccb.jhu.edu/software/bracken/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0209, + edam:topic_2258, + edam:topic_3343, + edam:topic_3375 ; + sc:citation , + "pubmed:35089481" ; + sc:description "The Brazilian Compound Library (BraCoLi) a repository of chemical and biological information for drug design." ; + sc:featureList edam:operation_2939, + edam:operation_3216, + edam:operation_3431, + edam:operation_3891, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "BraCoLi" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "1.0" ; + sc:url "https://www.farmacia.ufmg.br/qf/downloads/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_3554" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1857" ; - sc:name "Atomic occupancy" ; - sc:sameAs "http://edamontology.org/data_1857" ] ; + sc:additionalType "http://edamontology.org/data_1857" ; + sc:encodingFormat "http://edamontology.org/format_3554" ; + sc:name "Atomic occupancy" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -117881,7 +106615,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Piotr Dittwald" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -117898,7 +106632,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Wu Qiu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -117915,7 +106649,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Vijay Iyer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3304, @@ -117935,7 +106669,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Manu BN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3067, @@ -117952,7 +106686,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://mcx.space/brain2mesh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0634, @@ -117968,8 +106702,31 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP "Windows" ; sc:url "http://www.brain-uk.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal", + "Database portal" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0634, + edam:topic_3173, + edam:topic_3304, + edam:topic_3374 ; + sc:citation , + "pmcid:PMC8728122", + "pubmed:34718720" ; + sc:description "BrainBase is a curated knowledgebase for brain diseases." ; + sc:featureList edam:operation_0314, + edam:operation_2422, + edam:operation_2436 ; + sc:isAccessibleForFree true ; + sc:name "BrainBase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ngdc.cncb.ac.cn/brainbase/faq" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2885, @@ -117983,7 +106740,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://braincloud.jhmi.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3170, @@ -118001,8 +106758,27 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP "Windows" ; sc:url "http://brainexpnpd.org:8088/BrainEXPNPD/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_3315, + edam:topic_3360, + edam:topic_3384, + edam:topic_3444 ; + sc:citation , + "pmcid:PMC8662626", + "pubmed:34899274" ; + sc:description "Measuring the Intracranial Brain Volume With Fractal Dimension. The validation of the BrainFD software is based on T1-weighted MRI images from the Open Access Series of Imaging Studies (OASIS)-3 brain database, where each participant has multiple MRI scan sessions." ; + sc:featureList edam:operation_3443, + edam:operation_3659, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "BrainFD" ; + sc:url "https://github.com/BrainLabVol/BrainFD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -118019,7 +106795,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://github.com/hessJ/BrainGENIE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3372, @@ -118040,7 +106816,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://brainiak.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3304, @@ -118063,7 +106839,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://brainlit.neurodata.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3304, @@ -118080,7 +106856,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://github.com/zzstefan/BrainNetClass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3304, @@ -118097,8 +106873,51 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:name "BrainPainter" ; sc:url "http://brainpainter.csail.mit.edu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0601, + edam:topic_0821, + edam:topic_3170, + edam:topic_3334 ; + sc:citation ; + sc:description "A curated RNA-seq database of palmitoylating and de-palmitoylating enzyme expression in the mouse brain." ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_0417, + edam:operation_3463 ; + sc:isAccessibleForFree true ; + sc:name "BrainPalmSeq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://brainpalmseq.med.ubc.ca/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Suite" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3304, + edam:topic_3421, + edam:topic_3444, + edam:topic_3452 ; + sc:citation , + "pmcid:PMC8782204", + "pubmed:35069168" ; + sc:description "A multi-modal neurodata processing software for intracranial stereo-encephalography (SEEG) electrode localization, ictal & inter-ictal data analysis, and cortical surface reconstruction." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "BrainQuake" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/HongLabTHU/Brainquake" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3304, @@ -118114,7 +106933,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://github.com/brainglobe/brainrender" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3334, @@ -118137,7 +106956,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP "Sjoerd M.H. Huisman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -118155,7 +106974,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Itoshi NIKAIDO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3383, @@ -118173,7 +106992,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Michael S. Smirnov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3067, edam:topic_3295, @@ -118188,7 +107007,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://Brainwiki.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0769, @@ -118202,7 +107021,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://bioinf.uni-greifswald.de/bioinf/braker/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -118217,7 +107036,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Plamen Trayanov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -118239,7 +107058,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Beth Signal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -118260,7 +107079,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://babylone.3bio.ulb.ac.be/BRANEart" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3070, @@ -118274,7 +107093,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://millar.bio.ed.ac.uk/PEBrown/BRASS/BrassPage.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation ; @@ -118290,7 +107109,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_0780, @@ -118309,7 +107128,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://biodb.swu.edu.cn/brassica/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3173, edam:topic_3295 ; @@ -118329,7 +107148,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP "Sampo Pyysalo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -118347,7 +107166,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://www.magnoliasci.com/brat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3304, @@ -118365,7 +107184,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://neuronflow.github.io/BraTS-Toolkit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3334, @@ -118383,7 +107202,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Diego A. Angulo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -118397,7 +107216,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://linus.nci.nih.gov/BRB-ArrayTools.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -118418,7 +107237,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -118440,7 +107259,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "BRCAShare Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -118456,7 +107275,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://github.com/Serian1992/ImgBio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3379 ; sc:citation , @@ -118465,8 +107284,29 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:name "brea" ; sc:url "https://cran.r-project.org/web/packages/brea/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0622, + edam:topic_0654, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC9013057", + "pubmed:35428171" ; + sc:description "A Perl program to align chimaeric (split) genomic NGS reads and allow visual confirmation of novel retroviral integrations." ; + sc:featureList edam:operation_0492, + edam:operation_3198, + edam:operation_3359 ; + sc:isAccessibleForFree true ; + sc:license "GPL-1.0" ; + sc:name "BreakAlign" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/marchiem/breakalign" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3175 ; @@ -118480,7 +107320,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "K. Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0196, @@ -118497,8 +107337,29 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:softwareVersion "1.0.1" ; sc:url "http://bioinformatics.mdanderson.org/main/BreakFusion#" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0199, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8641175", + "pubmed:34856923" ; + sc:description "A deep learning method to detect deletion from long reads alignment." ; + sc:featureList edam:operation_0487, + edam:operation_3198, + edam:operation_3962 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "BreakNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/luojunwei/BreakNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168 ; sc:citation , @@ -118509,7 +107370,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://bioconductor.org/packages/breakpointR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168 ; @@ -118523,7 +107384,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Ruping Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation "pubmed:20037582" ; @@ -118537,7 +107398,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Mark B. Gerstein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0102, @@ -118555,7 +107416,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Ken Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -118574,20 +107435,8 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://sourceforge.net/projects/breakway/" ; biotools:primaryContact "Admin" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_2229, - edam:topic_2640 ; - sc:citation , - "pubmed:31463796" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'CUL3', 'overexpression CUL3', 'lung adenocarcinoma', 'immunohistochemistry' | Cullin 3 overexpression inhibits lung cancer metastasis and is associated with survival of lung adenocarcinoma | Kaplan Meier-plotter [Breast cancer] | Our aim was to develop an online Kaplan-Meier plotter which can be used to assess the effect of the genes on breast cancer prognosis" ; - sc:featureList edam:operation_3216, - edam:operation_3446 ; - sc:name "breast" ; - sc:url "http://kmplot.com/analysis/index.php?p=service&cancer=breast" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Functions to resize, place, and fuse breast phantoms to a whole-body voxel model" ; sc:isAccessibleForFree true ; @@ -118601,7 +107450,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Joseph Rispoli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3070, @@ -118619,7 +107468,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Ahmed raafat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3421, @@ -118636,7 +107485,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Lance Levine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3303 ; sc:citation ; @@ -118651,7 +107500,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://github.com/johnksander/BreatheEasyEDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0102, @@ -118668,8 +107517,27 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:name "BREC" ; sc:url "https://github.com/ymansour21/BREC" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3305, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC9110408", + "pubmed:35577853" ; + sc:description "Using population-based data to evaluate the impact of adherence to endocrine therapy on survival in breast cancer through the web-application BreCanSurvPred." ; + sc:featureList edam:operation_3503, + edam:operation_3659 ; + sc:license "Not licensed" ; + sc:name "BreCanSurvPred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://pdocomputation.snpstats.net/BreCanSurvPred" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0085 ; sc:description "Relational database which aims to support breeding for quantitative agronomical traits. The database can be explored through a web-based interface, which offers tools to present basic statistical overviews such as box plots, histograms, but also multivariate tools. The tool is designed to store data from both inbreeding and out-breeding crop species and the analysis and visualization methods adapt automatically to the type of population on hand." ; @@ -118684,7 +107552,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://www.wageningenur.nl/en/show/BreeDB.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0625, @@ -118700,7 +107568,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://breedbase.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3343, @@ -118717,7 +107585,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://breeze.fimm.fi/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0121, @@ -118736,126 +107604,96 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0990" ; - sc:name "Compound name" ; - sc:sameAs "http://edamontology.org/data_0990" ], + sc:additionalType "http://edamontology.org/data_2342" ; + sc:name "Pathway or network name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_1179" ; + sc:name "NCBI taxonomy ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1011" ; - sc:name "EC number" ; - sc:sameAs "http://edamontology.org/data_1011" ], + sc:additionalType "http://edamontology.org/data_1051" ; + sc:name "Ontology name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2342" ; - sc:name "Pathway or network name" ; - sc:sameAs "http://edamontology.org/data_2342" ], + sc:additionalType "http://edamontology.org/data_0990" ; + sc:name "Compound name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1046" ; - sc:name "Strain name" ; - sc:sameAs "http://edamontology.org/data_1046" ], + sc:additionalType "http://edamontology.org/data_1012" ; + sc:name "Enzyme name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ], + sc:additionalType "http://edamontology.org/data_2108" ; + sc:name "Reaction ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1179" ; - sc:name "NCBI taxonomy ID" ; - sc:sameAs "http://edamontology.org/data_1179" ], + sc:additionalType "http://edamontology.org/data_1187" ; + sc:name "PubMed ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2365" ; - sc:name "Pathway or network accession" ; - sc:sameAs "http://edamontology.org/data_2365" ], + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1051" ; - sc:name "Ontology name" ; - sc:sameAs "http://edamontology.org/data_1051" ], + sc:additionalType "http://edamontology.org/data_2024" ; + sc:name "Enzyme kinetics data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1187" ; - sc:name "PubMed ID" ; - sc:sameAs "http://edamontology.org/data_1187" ], + sc:additionalType "http://edamontology.org/data_1011" ; + sc:name "EC number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2024" ; - sc:name "Enzyme kinetics data" ; - sc:sameAs "http://edamontology.org/data_2024" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2108" ; - sc:name "Reaction ID" ; - sc:sameAs "http://edamontology.org/data_2108" ], + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1012" ; - sc:name "Enzyme name" ; - sc:sameAs "http://edamontology.org/data_1012" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ], + sc:additionalType "http://edamontology.org/data_2365" ; + sc:name "Pathway or network accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2291" ; - sc:name "UniProt ID" ; - sc:sameAs "http://edamontology.org/data_2291" ], + sc:additionalType "http://edamontology.org/data_1046" ; + sc:name "Strain name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2909" ; - sc:name "Organism name" ; - sc:sameAs "http://edamontology.org/data_2909" ] ; + sc:additionalType "http://edamontology.org/data_2909" ; + sc:name "Organism name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2365" ; - sc:name "Pathway or network accession" ; - sc:sameAs "http://edamontology.org/data_2365" ], + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1179" ; - sc:name "NCBI taxonomy ID" ; - sc:sameAs "http://edamontology.org/data_1179" ], + sc:additionalType "http://edamontology.org/data_1046" ; + sc:name "Strain name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2291" ; - sc:name "UniProt ID" ; - sc:sameAs "http://edamontology.org/data_2291" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_2700" ; + sc:name "CATH identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2700" ; - sc:name "CATH identifier" ; - sc:sameAs "http://edamontology.org/data_2700" ], + sc:additionalType "http://edamontology.org/data_1011" ; + sc:name "EC number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2342" ; - sc:name "Pathway or network name" ; - sc:sameAs "http://edamontology.org/data_2342" ], + sc:additionalType "http://edamontology.org/data_2024" ; + sc:name "Enzyme kinetics data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2909" ; - sc:name "Organism name" ; - sc:sameAs "http://edamontology.org/data_2909" ], + sc:additionalType "http://edamontology.org/data_2108" ; + sc:name "Reaction ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1012" ; - sc:name "Enzyme name" ; - sc:sameAs "http://edamontology.org/data_1012" ], + sc:additionalType "http://edamontology.org/data_2342" ; + sc:name "Pathway or network name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1011" ; - sc:name "EC number" ; - sc:sameAs "http://edamontology.org/data_1011" ], + sc:additionalType "http://edamontology.org/data_2365" ; + sc:name "Pathway or network accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1046" ; - sc:name "Strain name" ; - sc:sameAs "http://edamontology.org/data_1046" ], + sc:additionalType "http://edamontology.org/data_2909" ; + sc:name "Organism name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2108" ; - sc:name "Reaction ID" ; - sc:sameAs "http://edamontology.org/data_2108" ], + sc:additionalType "http://edamontology.org/data_1039" ; + sc:name "SCOP domain identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ], + sc:additionalType "http://edamontology.org/data_1012" ; + sc:name "Enzyme name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2024" ; - sc:name "Enzyme kinetics data" ; - sc:sameAs "http://edamontology.org/data_2024" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1039" ; - sc:name "SCOP domain identifier" ; - sc:sameAs "http://edamontology.org/data_1039" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1179" ; + sc:name "NCBI taxonomy ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0821, @@ -118903,22 +107741,22 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2533, @@ -118939,22 +107777,22 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -118975,26 +107813,26 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -119014,7 +107852,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0082, @@ -119033,8 +107871,54 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:name "Brewery" ; sc:url "http://distilldeep.ucd.ie/brewery/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0769, + edam:topic_3303, + edam:topic_3379, + edam:topic_3571 ; + sc:citation ; + sc:description "The Biomedical Research Hub (BRH) is a cloud-based and multifunctional web interface that provides a secure environment for discovery and analysis of scientific results and data." ; + sc:featureList edam:operation_0224, + edam:operation_3436, + edam:operation_3761 ; + sc:isAccessibleForFree true ; + sc:name "BRH" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://brh.data-commons.org" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_0634, + edam:topic_3067, + edam:topic_3304, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9139690", + "pubmed:35625024" ; + sc:description "Brain Research Hotspot Database (BRHD) a A comprehensive platform for the latest advances in brain research" ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-SA-3.0" ; + sc:name "BRHD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.brainresearch.cn/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3304, edam:topic_3474 ; @@ -119050,7 +107934,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://github.com/brian-team/brian2genn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0176, @@ -119070,7 +107954,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://gitlab.com/ETh_TU_Delft/Brick-CFCMC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0804, edam:topic_2640, @@ -119087,7 +107971,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://github.com/NortonS1/BrickPlots" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -119105,7 +107989,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Raphael Gottardo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench", "Workflow" ; sc:applicationSubCategory edam:topic_0154, @@ -119123,7 +108007,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://github.com/scientificomputing/BRIDGE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0153, @@ -119144,37 +108028,30 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1086" ; - sc:name "Compound identifier" ; - sc:sameAs "http://edamontology.org/data_1086" ], + sc:additionalType "http://edamontology.org/data_0989" ; + sc:name "Protein identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ], + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; + sc:additionalType "http://edamontology.org/data_1086" ; + sc:name "Compound identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1086" ; - sc:name "Compound identifier" ; - sc:sameAs "http://edamontology.org/data_1086" ], + sc:additionalType "http://edamontology.org/data_0989" ; + sc:name "Protein identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ], + sc:additionalType "http://edamontology.org/data_1086" ; + sc:name "Compound identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0622, edam:topic_3172, edam:topic_3325 ; sc:citation , - , "pubmed:20047655" ; sc:description "BridgeDb is a framework to map identifiers between various databases. It includes a Java library that provides an API to work with identifier-identifier mapping databases and resources." ; sc:featureList edam:operation_0224 ; @@ -119189,44 +108066,36 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP "Maastricht University", "Manchester University", "maastrichtuniversity.nl" ; - sc:softwareHelp ; - sc:softwareVersion "1" ; + sc:softwareHelp ; + sc:softwareVersion "3.0.13" ; sc:url "http://www.bridgedb.org/" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3325, edam:topic_3345 ; @@ -119242,38 +108111,38 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1086" ; - sc:name "Compound identifier" ; - sc:sameAs "http://edamontology.org/data_1086" ], + sc:additionalType "http://edamontology.org/data_1025" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2108" ; - sc:name "Reaction ID" ; - sc:sameAs "http://edamontology.org/data_2108" ], + sc:additionalType "http://edamontology.org/data_2108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Reaction ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ], + sc:additionalType "http://edamontology.org/data_1086" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Compound identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ] ; + sc:additionalType "http://edamontology.org/data_0989" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ], + sc:additionalType "http://edamontology.org/data_1086" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Compound identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ], + sc:additionalType "http://edamontology.org/data_2108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Reaction ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2108" ; - sc:name "Reaction ID" ; - sc:sameAs "http://edamontology.org/data_2108" ], + sc:additionalType "http://edamontology.org/data_1025" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1086" ; - sc:name "Compound identifier" ; - sc:sameAs "http://edamontology.org/data_1086" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0989" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3325, @@ -119288,12 +108157,33 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP "Mac", "Windows" ; sc:softwareHelp ; - sc:softwareVersion "1.8.0" ; + sc:softwareVersion "1.8.0", + "2.4.0" ; sc:url "http://bioconductor.org/packages/release/bioc/html/BridgeDbR.html" ; biotools:primaryContact "Egon Willighagen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_3336, + edam:topic_3474 ; + sc:citation , + "pubmed:35274672" ; + sc:description "A Novel Graph Neural Network for Predicting Drug-Protein Interactions." ; + sc:featureList edam:operation_2492, + edam:operation_3927, + edam:operation_3938 ; + sc:license "Apache-2.0" ; + sc:name "BridgeDPI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/SenseTime-Knowledge-Mining/BridgeDPI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3308 ; @@ -119309,7 +108199,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://sourceforge.net/projects/rnaseqassembly/files/?source=navbar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3421, @@ -119323,7 +108213,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://agegap.shef.ac.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0797 ; sc:citation ; @@ -119339,7 +108229,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Scott A Beatson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0160, @@ -119358,7 +108248,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal", "Web API", @@ -119396,7 +108286,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP "Shajid Issa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -119418,7 +108308,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Luis Serrano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3169 ; @@ -119432,7 +108322,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://jordan.biology.gatech.edu/page/software/broadpeak/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0749, @@ -119450,7 +108340,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP "Carl G. de Boer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0218, @@ -119470,7 +108360,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Kyubum Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -119487,7 +108377,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Ulf Leser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -119507,7 +108397,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "T. Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3307, edam:topic_3361, @@ -119520,7 +108410,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://pitgroup.org/brownian/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092 ; @@ -119537,7 +108427,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Paul Shannon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -119556,21 +108446,8 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://bioconductor.org/packages/release/bioc/html/BrowserVizDemo.html" ; biotools:primaryContact "Paul Shannon" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0780, - edam:topic_3517, - edam:topic_3810 ; - sc:citation , - "pubmed:31566222" ; - sc:description "> LOW CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/3CDB (BIG.AC.CN) | > CORRECT NAME OF TOOL COULD ALSO BE 'GWAS Atlas' | a curated resource of genome-wide variant-trait associations in plants and animals | a curated resource of genome-wide variant-trait associations | e.g. plant; plant height; Zm00001d021954; chr1:14702150-37601000 | GWAS Atlas: a curated resource of genome-wide variant-trait associations in plants and animals. Nucleic Acids Res 2019. [PMID=31566222]" ; - sc:featureList edam:operation_0279, - edam:operation_3095, - edam:operation_3559 ; - sc:name "browsing downloading" ; - sc:url "https://bigd.big.ac.cn/gwas/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -119586,7 +108463,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://www.bioinformatics.leeds.ac.uk/BRS-nonint/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0780, @@ -119603,7 +108480,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://github.com/camoragaq/BrumiR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0102, @@ -119623,7 +108500,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Weilong Guo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2269, @@ -119637,7 +108514,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://github.com/hellbelly/BS-Snper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0781, edam:topic_3295, @@ -119653,7 +108530,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Bolund Christian N S Pedersen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3173 ; sc:citation "pubmed:20416082" ; @@ -119667,7 +108544,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Matteo Pellegrini Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_0102, @@ -119685,7 +108562,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://www.sciapps.org/page/bsa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -119702,8 +108579,33 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:name "BSBolt" ; sc:url "https://github.com/NuttyLogic/BSBolt" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_3295, + edam:topic_3512, + edam:topic_3674 ; + sc:citation , + "pmcid:PMC8965078", + "pubmed:35368672" ; + sc:description "Buffalo Subclinical Mastitis Methylome–Transcriptome database (BSCM2TDb) is a three-tier architecture-based relational database in Water Buffalo." ; + sc:featureList edam:operation_0314, + edam:operation_3196, + edam:operation_3207, + edam:operation_3222, + edam:operation_3809 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "BSCM2TDb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://webtom.cabgrid.res.in/BSCM2TDb" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -119726,7 +108628,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Marek Cieplak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -119747,8 +108649,32 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://iris.physics.iisc.ernet.in/bsdd/" ; biotools:primaryContact "K. Sekar" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application", + "Workflow" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0203, + edam:topic_0625, + edam:topic_3170, + edam:topic_3517 ; + sc:citation , + "pubmed:35333298" ; + sc:description "A single-cell RNAseq differential expression analysis approach in case-control study" ; + sc:featureList edam:operation_3223, + edam:operation_3435, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "BSDE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/mqzhanglab/BSDE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -119762,7 +108688,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://github.com/hutuqiu/bseqc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3473 ; sc:citation ; @@ -119780,7 +108706,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Samuel H. Payne" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, edam:topic_3382 ; @@ -119794,7 +108720,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://github.com/leonid-sokolinsky/BSF-skeleton" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -119812,18 +108738,18 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -119844,7 +108770,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "H. Pagès" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295 ; @@ -119856,7 +108782,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://madbessoul.github.io/bshmm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -119875,7 +108801,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "https://bsma.pdbj.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3295 ; sc:citation "pubmed:19635165" ; @@ -119889,7 +108815,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Y. Xi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3382, @@ -119900,8 +108826,30 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:name "BSNet" ; sc:url "https://github.com/PRIS-CV/BSNet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0611, + edam:topic_2229, + edam:topic_3047 ; + sc:citation , + "pmcid:PMC9081485", + "pubmed:35800093" ; + sc:description "Bsoft is a collection of programs and a platform for development of software for image and molecular processing in structural biology." ; + sc:featureList edam:operation_2480, + edam:operation_3443, + edam:operation_3695 ; + sc:license "Not licensed" ; + sc:name "Bsoft" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://bsoft.ws" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275 ; @@ -119917,7 +108865,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Yang Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -119934,7 +108882,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Yang Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -119948,7 +108896,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP sc:url "http://www.beespace.uiuc.edu/QuestionAnswer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -119969,7 +108917,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP "Lei LI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -119990,7 +108938,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -120008,7 +108956,7 @@ The Data Portal API allows programmatic access via the standard CKAN API. The AP biotools:primaryContact "Zheng Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0625, @@ -120024,7 +108972,7 @@ visualizer for bisulfite sequencing data.""" ; biotools:primaryContact "Hao Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation "pubmed:15290767" ; @@ -120034,10 +108982,10 @@ visualizer for bisulfite sequencing data.""" ; sc:name "BTEVAL" ; sc:operatingSystem "Linux" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/bteval" . + sc:url "https://webs.iiitd.edu.in/raghava/bteval" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0621, @@ -120059,26 +109007,26 @@ visualizer for bisulfite sequencing data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_1056" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1056" ; - sc:name "Database name" ; - sc:sameAs "http://edamontology.org/data_1056" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_2066" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:encodingFormat "http://edamontology.org/format_1333" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -120095,7 +109043,7 @@ visualizer for bisulfite sequencing data.""" ; sc:url "https://blast.ncbi.nlm.nih.gov/Blast.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:21651976" ; @@ -120108,7 +109056,7 @@ visualizer for bisulfite sequencing data.""" ; biotools:primaryContact "Yong Kong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Workflow" ; @@ -120129,7 +109077,7 @@ visualizer for bisulfite sequencing data.""" ; sc:url "http://bcam.hzau.edu.cn/BtToxin_Digger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269 ; @@ -120151,22 +109099,18 @@ visualizer for bisulfite sequencing data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1588" ; - sc:name "DNA base pair stacking energies data" ; - sc:sameAs "http://edamontology.org/data_1588" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_1588" ; + sc:name "DNA base pair stacking energies data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1589" ; - sc:name "DNA base pair twist angle data" ; - sc:sameAs "http://edamontology.org/data_1589" ] ; + sc:additionalType "http://edamontology.org/data_1589" ; + sc:name "DNA base pair twist angle data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0912" ; - sc:name "Nucleic acid property" ; - sc:sameAs "http://edamontology.org/data_0912" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0912" ; + sc:name "Nucleic acid property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -120195,8 +109139,22 @@ visualizer for bisulfite sequencing data.""" ; sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/btwisted.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation "pubmed:18391233" ; + sc:description "The aim of BTXpred server is to predict bacterial toxins and its function from primary amino acid sequence using SVM, HMM and PSI-Blast" ; + sc:featureList edam:operation_2945 ; + sc:name "BTXpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/btxpred/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0154, @@ -120214,7 +109172,7 @@ visualizer for bisulfite sequencing data.""" ; sc:url "https://github.com/lmc297/BTyper3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -120233,14 +109191,12 @@ visualizer for bisulfite sequencing data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ] ; + sc:additionalType "http://edamontology.org/data_0582" ; + sc:name "Ontology" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2223" ; - sc:name "Ontology metadata" ; - sc:sameAs "http://edamontology.org/data_2223" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2223" ; + sc:name "Ontology metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -120265,7 +109221,7 @@ visualizer for bisulfite sequencing data.""" ; biotools:primaryContact "James Malone" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0625, @@ -120282,7 +109238,7 @@ visualizer for bisulfite sequencing data.""" ; biotools:primaryContact "Spinelli L" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -120298,7 +109254,7 @@ visualizer for bisulfite sequencing data.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -120315,18 +109271,18 @@ visualizer for bisulfite sequencing data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2921" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3567" ; - sc:name "Reference sample report" ; - sc:sameAs "http://edamontology.org/data_3567" ], + sc:additionalType "http://edamontology.org/data_3567" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Reference sample report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1622" ; - sc:name "Disease report" ; - sc:sameAs "http://edamontology.org/data_1622" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1622" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Disease report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640, @@ -120348,7 +109304,7 @@ visualizer for bisulfite sequencing data.""" ; "Wei Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0166, edam:topic_2269, @@ -120364,7 +109320,7 @@ visualizer for bisulfite sequencing data.""" ; biotools:primaryContact "Kevin Cowtan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -120386,7 +109342,7 @@ visualizer for bisulfite sequencing data.""" ; biotools:primaryContact "Andreas D. Baxevanis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3068, @@ -120402,10 +109358,10 @@ visualizer for bisulfite sequencing data.""" ; a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091 ; sc:citation , @@ -120422,7 +109378,7 @@ visualizer for bisulfite sequencing data.""" ; sc:url "https://github.com/diwis/BUFET/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3365 ; @@ -120440,7 +109396,7 @@ visualizer for bisulfite sequencing data.""" ; biotools:primaryContact "Benjamin Milo Bolstad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -120458,7 +109414,7 @@ visualizer for bisulfite sequencing data.""" ; biotools:primaryContact "B. M. Bolstad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -120479,7 +109435,7 @@ visualizer for bisulfite sequencing data.""" ; biotools:primaryContact "Adam A. Witney" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -120494,7 +109450,7 @@ visualizer for bisulfite sequencing data.""" ; sc:url "http://www.imperial.ac.uk/bioinformatics-data-science-group/resources/software/bugbuilder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3301, @@ -120505,16 +109461,36 @@ visualizer for bisulfite sequencing data.""" ; sc:name "BugSeq" ; sc:url "https://bugseq.com/free" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workflow" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0769, + edam:topic_3168, + edam:topic_3174 ; + sc:citation ; + sc:description "Taxonomic binning of metagenomic assemblies enables genome-resolved metagenomics." ; + sc:featureList edam:operation_0310, + edam:operation_3460, + edam:operation_3482 ; + sc:isAccessibleForFree true ; + sc:name "BugSplit" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bugseq.com/academic" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2850" ; - sc:name "Lipid structure" ; - sc:sameAs "http://edamontology.org/data_2850" ] ; + sc:additionalType "http://edamontology.org/data_2850" ; + sc:encodingFormat "http://edamontology.org/format_3866" ; + sc:name "Lipid structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2850" ; - sc:name "Lipid structure" ; - sc:sameAs "http://edamontology.org/data_2850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2850" ; + sc:encodingFormat "http://edamontology.org/format_3866" ; + sc:name "Lipid structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0081 ; @@ -120536,7 +109512,7 @@ visualizer for bisulfite sequencing data.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0736 ; @@ -120553,7 +109529,7 @@ visualizer for bisulfite sequencing data.""" ; sc:url "http://www.genesilico.pl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0199, @@ -120578,7 +109554,7 @@ visualizer for bisulfite sequencing data.""" ; biotools:primaryContact "Alina Selega" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -120598,26 +109574,8 @@ visualizer for bisulfite sequencing data.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/bumphunter.html" ; biotools:primaryContact "Rafael A. Irizarry" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2269, - edam:topic_3324 ; - sc:citation , - "pmcid:PMC6864977", - "pubmed:31771703" ; - sc:description """Application of a new methodology and R package reveals a high burden of healthcare-associated infections (HAI) in Germany compared to the average in the European Union/European Economic Area, 2011 to 2012. - -Estimate the Burden of Healthcare-Associated Infections. - -Provides an approach which is based on the methodology of the Burden of Communicable Diseases in Europe (BCoDE) and can be used for large and small samples such as individual countries. The Burden of Healthcare-Associated Infections (BHAI) is estimated in disability-adjusted life years, number of infections as well as number of deaths per year. Results can be visualized with various plotting functions and exported into tables. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'HAI', 'burden healthcare-associated infections', 'HAIs DALYs', 'DALYs'""" ; - sc:featureList edam:operation_0337 ; - sc:license "GPL-3.0" ; - sc:name "burden HAIs" ; - sc:url "https://CRAN.R-project.org/package=BHAI" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0622, @@ -120639,7 +109597,7 @@ Provides an approach which is based on the methodology of the Burden of Communic biotools:primaryContact "Elhanan Borenstein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -120659,7 +109617,7 @@ Provides an approach which is based on the methodology of the Burden of Communic biotools:primaryContact "Yuanhua Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3954 ; sc:citation , "pubmed:31978805" ; @@ -120672,18 +109630,18 @@ Provides an approach which is based on the methodology of the Burden of Communic a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Taxonomy" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_3307, @@ -120709,22 +109667,32 @@ Provides an approach which is based on the methodology of the Burden of Communic a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, edam:topic_0622, edam:topic_3308 ; - sc:citation ; + sc:citation , + , + , + , + "pmcid:PMC5850278", + "pmcid:PMC8476166", + "pubmed:29220515", + "pubmed:34320186", + "pubmed:34936221" ; sc:description "Provides measures for quantitative assessment of genome assembly, gene set, and transcriptome completeness based on evolutionarily informed expectations of gene content from near-universal single-copy orthologs." ; - sc:featureList edam:operation_3180 ; + sc:featureList edam:operation_0525, + edam:operation_3180, + edam:operation_3216, + edam:operation_3258 ; sc:name "BUSCO" ; sc:operatingSystem "Linux" ; sc:provider "SIB Swiss Institute of Bioinformatics" ; @@ -120733,7 +109701,7 @@ Provides an approach which is based on the methodology of the Burden of Communic sc:url "http://busco.ezlab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3297, @@ -120749,7 +109717,7 @@ Provides an approach which is based on the methodology of the Burden of Communic biotools:primaryContact "Prof. Dr. Andreas Keller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0769 ; sc:description "Collection of tools whose goal is to aid researchers in carrying out scientific analyses on a multitude of cloud computing platforms. It concerns itself with providing functionality in four broad areas: Provisioning; Configuration Management; Workflow Management; Operations Management." ; @@ -120765,82 +109733,75 @@ Provides an approach which is based on the methodology of the Burden of Communic a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3210" ; - sc:name "Genome index" ; - sc:sameAs "http://edamontology.org/data_3210" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_3210" ; + sc:name "Genome index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1332" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ], + sc:additionalType "http://edamontology.org/data_1916" ; + sc:name "Alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3210" ; - sc:name "Genome index" ; - sc:sameAs "http://edamontology.org/data_3210" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3210" ; + sc:name "Genome index" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workbench" ; sc:applicationSubCategory edam:topic_0102 ; @@ -120875,10 +109836,10 @@ Provides an approach which is based on the methodology of the Burden of Communic a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation ; @@ -120891,7 +109852,7 @@ Provides an approach which is based on the methodology of the Burden of Communic sc:url "https://github.com/bwa-mem2/bwa-mem2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -120907,7 +109868,7 @@ Provides an approach which is based on the methodology of the Burden of Communic sc:url "https://github.com/kaist-ina/BWA-MEME/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102 ; @@ -120924,7 +109885,7 @@ Provides an approach which is based on the methodology of the Burden of Communic sc:url "http://bwa-pssm.binf.ku.dk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation , @@ -120946,7 +109907,7 @@ Provides an approach which is based on the methodology of the Burden of Communic biotools:primaryContact "bwa team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0769, @@ -120964,7 +109925,7 @@ Provides an approach which is based on the methodology of the Burden of Communic sc:url "https://BrendelGroup.org/SingularityHub/bwasp.sif" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3077, @@ -120977,7 +109938,7 @@ Provides an approach which is based on the methodology of the Burden of Communic sc:url "https://github.com/JoseDAssisCordeiro/BWDAT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3382 ; sc:citation ; @@ -120999,7 +109960,7 @@ A computational tool to describe patterns from black and white images""" ; sc:url "https://cran.r-project.org/web/packages/bwimage/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091 ; sc:description "Illustrates the Burrows-Wheeler Matrix (BWM) Transform." ; @@ -121016,14 +109977,12 @@ A computational tool to describe patterns from black and white images""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -121040,7 +109999,7 @@ A computational tool to describe patterns from black and white images""" ; biotools:primaryContact "GitHub Issues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3169, @@ -121053,7 +110012,7 @@ A computational tool to describe patterns from black and white images""" ; sc:url "https://github.com/CRG-Barcelona/bwtool/wiki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Script" ; sc:applicationSubCategory edam:topic_0080 ; @@ -121069,7 +110028,7 @@ A computational tool to describe patterns from black and white images""" ; biotools:primaryContact "Taylor Lab at Johns Hopkins University" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -121088,7 +110047,7 @@ A computational tool to describe patterns from black and white images""" ; sc:url "https://github.com/ncjllld/byase" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -121108,7 +110067,7 @@ A computational tool to describe patterns from black and white images""" ; biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -121125,7 +110084,7 @@ A computational tool to describe patterns from black and white images""" ; biotools:primaryContact "Ligia M. Mateiu MD PhD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0218, @@ -121143,7 +110102,7 @@ A computational tool to describe patterns from black and white images""" ; biotools:primaryContact "Suppoer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2269, @@ -121160,7 +110119,7 @@ A computational tool to describe patterns from black and white images""" ; biotools:primaryContact "Alexandre Gillet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -121177,7 +110136,7 @@ A computational tool to describe patterns from black and white images""" ; sc:url "http://tagc.univ-mrs.fr/welcome/spip.php?rubrique7" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3053, @@ -121194,7 +110153,7 @@ A computational tool to describe patterns from black and white images""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -121211,7 +110170,7 @@ A computational tool to describe patterns from black and white images""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -121227,7 +110186,7 @@ A computational tool to describe patterns from black and white images""" ; biotools:primaryContact "Swati Kaushik, PhD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3295, edam:topic_3474 ; @@ -121242,7 +110201,7 @@ A computational tool to describe patterns from black and white images""" ; sc:url "https://github.com/Peppags/C-RNNCrispr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -121262,8 +110221,26 @@ A computational tool to describe patterns from black and white images""" ; "Rakesh K Mishra", "Surabhi Srivastava" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3068, + edam:topic_3303 ; + sc:citation ; + sc:description "A System for Predicting Mortality of Patients with COVID-19 Pneumonia at the Time They Require Mechanical Ventilation." ; + sc:featureList edam:operation_0252, + edam:operation_3503, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:name "C-TIME" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://phoenixmed.arizona.edu/ctime" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3307, @@ -121276,24 +110253,8 @@ A computational tool to describe patterns from black and white images""" ; sc:url "http://www.bioinformatics.org/c2analyzer/" ; biotools:primaryContact "Arindam Deb" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_3068 ; - sc:citation , - "pubmed:31668749" ; - sc:description """Computational Modeling Reveals Frequency Modulation of Calcium-cAMP/PKA Pathway in Dendritic Spines. - -Dendritic spines are the primary excitatory postsynaptic sites that act as subcompartments of signaling. Ca2+ is often the first and most rapid signal in spines. Downstream of calcium, the cyclic adenosine monophosphate (cAMP) protein kinase A (PKA) pathway plays a critical role in the regulation of spine formation, morphological modifications, and ultimately, learning and memory. Although the dynamics of calcium are reasonably well-studied, calcium-induced cAMP PKA dynamics, particularly with respect to frequency modulation, are not fully explored. In this study, we present a well-mixed model for the dynamics of calcium-induced cAMP PKA dynamics in dendritic spines. The model is constrained using experimental observations in the literature. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'dendritic spines', 'spines', 'well-mixed', 'calcium-induced'""" ; - sc:featureList edam:operation_3439, - edam:operation_3450, - edam:operation_3891 ; - sc:name "cAMP PKA" ; - sc:url "https://github.com/donya26/cAMP-PKA-temporal.git" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0219, edam:topic_2830 ; @@ -121305,7 +110266,7 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco sc:url "https://cab-rep.c2b2.columbia.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -121323,7 +110284,7 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco sc:url "http://www.cBioportal.org/index.do" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169 ; @@ -121337,7 +110298,7 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco sc:url "https://github.com/YaqiangCao/cLoops" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -121359,7 +110320,7 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco biotools:primaryContact "Luis G. Leal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3050 ; @@ -121376,7 +110337,7 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco biotools:primaryContact "R. Harbert" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -121397,7 +110358,7 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco sc:url "https://cran.r-project.org/package=cRegulome" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_3384, @@ -121413,7 +110374,7 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco sc:url "https://github.com/HiLab-git/CA-Net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0130, @@ -121428,7 +110389,7 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco biotools:primaryContact "Mayuko Takeda-Shitaka" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, edam:topic_3303, @@ -121443,7 +110404,7 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco sc:url "https://satoss.uni.lu/software/CABEAN/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -121461,8 +110422,32 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco sc:url "http://bimib.disco.unimib.it/index.php/CABERNET" ; biotools:primaryContact "marco antoniotti" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0196, + edam:topic_0199, + edam:topic_0769, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC9196194", + "pubmed:35711759" ; + sc:description "A Web Application for the Bioinformatic Analysis of Bacterial Genomes." ; + sc:featureList edam:operation_0524, + edam:operation_0525, + edam:operation_3227, + edam:operation_3840 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CABGen" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://aureus.procc.fiocruz.br/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; @@ -121475,7 +110460,7 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco sc:url "https://github.com/he2016012996/CABnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation "pubmed:18952627" ; @@ -121490,18 +110475,16 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2597" ; - sc:name "CABRI catalogue name" ; - sc:sameAs "http://edamontology.org/data_2597" ], + sc:additionalType "http://edamontology.org/data_2380" ; + sc:name "CABRI accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2380" ; - sc:name "CABRI accession" ; - sc:sameAs "http://edamontology.org/data_2380" ] ; + sc:additionalType "http://edamontology.org/data_2597" ; + sc:name "CABRI catalogue name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0963" ; - sc:name "Cell line report" ; - sc:sameAs "http://edamontology.org/data_0963" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0963" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Cell line report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3301, edam:topic_3339, @@ -121530,7 +110513,7 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco biotools:primaryContact "Paolo Romano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, @@ -121548,7 +110531,7 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco "Laboratory of Theory of Biopolymers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -121572,7 +110555,7 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco "Laboratory of Theory of Biopolymers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0153, edam:topic_3305, @@ -121593,10 +110576,9 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -121627,10 +110609,9 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -121661,10 +110642,9 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -121695,10 +110675,9 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -121727,8 +110706,24 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/cacheensembl.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Script" ; + sc:applicationSubCategory edam:topic_3068, + edam:topic_3489 ; + sc:citation , + "pmcid:PMC9283915", + "pubmed:35845039" ; + sc:description "CACHET-CADB is 259 days long contextualised single-channel ECG arrhythmia database from 24 patients recording under a free-living ambulatory setting" ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CACHET-CADB" ; + sc:operatingSystem "Windows" ; + sc:url "https://github.com/cph-cachet/cachet-ecg-db" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -121759,7 +110754,7 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco "David Haussler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -121779,8 +110774,32 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco sc:url "https://github.com/LUMC/CACTUS" ; biotools:primaryContact "Ewa Szczurek" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2640, + edam:topic_2830, + edam:topic_3379, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9133807", + "pubmed:35646870" ; + sc:description "Cancer Antigens Database (CAD) designed to facilitate users to perform a complete exploration of cancer antigens online." ; + sc:featureList edam:operation_0252, + edam:operation_0416, + edam:operation_3695 ; + sc:license "Not licensed" ; + sc:name "CAD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://cad.bio-it.cn/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_2275, @@ -121800,7 +110819,7 @@ Dendritic spines are the primary excitatory postsynaptic sites that act as subco sc:url "http://bioinformatics.lt/software/cad-score" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -121824,24 +110843,8 @@ Web site created using create-react-app. sc:url "https://cada.gene-talk.de/webservice/" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3372, - edam:topic_3382 ; - sc:citation ; - sc:description """An open-source based toolchain for the georeferencing of old cadastral maps. - -More and more historical data are available on the web. In France, old cadastral maps are regularly published by the “départements”. Such material is relevant to various applications (on-the-field search of specific objects such as old boundary stakes, historical studies of demography, human activities, land cover…). The GeF laboratory is working on the development of a complete methodological toolchain to vectorise, correct and analyse cadastral parcels and their evolution, using open source software and programming language only (QGIS, GDAL, Python). This article details the use of a part of this toolchain - georeferencing old cadastral data - on parcels located near the Loir river, in two villages of southern Sarthe: Vaas and Aubigné-Racan. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'QGIS', 'GDAL', 'toolchain', 'georeferencing'""" ; - sc:featureList edam:operation_2429 ; - sc:name "cadastral" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.2222V3" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -121856,7 +110859,7 @@ More and more historical data are available on the web. In France, old cadastral biotools:primaryContact "Praveen K. Raj Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -121865,8 +110868,14 @@ More and more historical data are available on the web. In France, old cadastral edam:topic_3325, edam:topic_3574 ; sc:citation , + , + , "pmcid:PMC3992975", - "pubmed:24487276" ; + "pmcid:PMC6323892", + "pmcid:PMC7901104", + "pubmed:24487276", + "pubmed:30371827", + "pubmed:33618777" ; sc:description "Combined Annotation Dependent Depletion (CADD) - tool for scoring the deleteriousness of single nucleotide variants as well as insertion/deletions variants in the human genome." ; sc:featureList edam:operation_2238, edam:operation_2436, @@ -121881,8 +110890,33 @@ More and more historical data are available on the web. In France, old cadastral sc:url "http://cadd.gs.washington.edu/" ; biotools:primaryContact "CADD support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application", + "Workflow" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2640, + edam:topic_3336, + edam:topic_3373, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC9252786", + "pubmed:35580047" ; + sc:description "Cancer Driver Drug Interaction Explorer (CADDIE) It provides an interface for a variety of CADDIEs functionalities, giving the user the possibility to execute tasks on CADDIE programmatically without using the website." ; + sc:featureList edam:operation_3925, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CADDIE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://exbio.wzw.tum.de/caddie/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -121904,7 +110938,7 @@ More and more historical data are available on the web. In France, old cadastral biotools:primaryContact "Qing Kenneth Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0654, @@ -121920,7 +110954,7 @@ More and more historical data are available on the web. In France, old cadastral biotools:primaryContact "Shawn Douglas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -121940,8 +110974,31 @@ More and more historical data are available on the web. In France, old cadastral sc:url "http://www.cadre-genomes.org.uk/index.html" ; biotools:primaryContact "Jane Mabey Gilsenan" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0208, + edam:topic_2640, + edam:topic_3170, + edam:topic_3308, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8680165", + "pubmed:34915921" ; + sc:description "Predicting heterogeneity in clone-specific therapeutic vulnerabilities using single-cell transcriptomic signatures." ; + sc:featureList edam:operation_3436, + edam:operation_3891, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CaDRReS-Sc" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/CSB5/CaDRReS-Sc" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -121958,7 +111015,7 @@ More and more historical data are available on the web. In France, old cadastral sc:url "https://bioconductor.org/packages/devel/bioc/html/CAEN.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3315 ; @@ -121973,7 +111030,7 @@ More and more historical data are available on the web. In France, old cadastral biotools:primaryContact "Ehsan Tahami" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0097, @@ -121990,7 +111047,7 @@ More and more historical data are available on the web. In France, old cadastral sc:url "https://simtk.org/home/cafa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053, @@ -122010,7 +111067,7 @@ More and more historical data are available on the web. In France, old cadastral biotools:primaryContact "Sander Bollen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091, @@ -122030,8 +111087,30 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:name "CAFE-R" ; sc:url "http://microbiology.se/software/cafe/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0623 ; + sc:citation , + , + , + "pmcid:PMC1182228", + "pubmed:16077014", + "pubmed:16543274", + "pubmed:33325502" ; + sc:description "The purpose of CAFE is to analyze changes in gene family size in a way that accounts for phylogenetic history and provides a statistical foundation for evolutionary inferences. The program uses a birth and death process to model gene gain and loss across a user-specified phylogenetic tree. The distribution of family sizes generated under this model can provide a basis for assessing the significance of the observed family size differences among taxa." ; + sc:featureList edam:operation_3947 ; + sc:isAccessibleForFree true ; + sc:license "ECL-2.0" ; + sc:name "cafe5" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/hahnlab/CAFE5" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0196, @@ -122053,8 +111132,52 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "Prof. Fengzhu Sun", "Yang Lu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0203, + edam:topic_0625, + edam:topic_0634, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC8874223", + "pubmed:35085493" ; + sc:description "CAFEH is a method that performs finemapping and colocalization jointly over multiple phenotypes. CAFEH can be run with 10s of phenotypes and 1000s of variants in a few minutes." ; + sc:featureList edam:operation_0282, + edam:operation_0314, + edam:operation_3226, + edam:operation_3232, + edam:operation_3791 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CAFEH" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/karltayeb/cafeh" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3299, + edam:topic_3314, + edam:topic_3520, + edam:topic_3524 ; + sc:citation , + "pubmed:34788021" ; + sc:description "Client-based Application for Fast Electrophoresis Simulation (CAFES) a client-side web-based simulator for complex electrophoresis phenomena, including isotachophoresis." ; + sc:featureList edam:operation_2426 ; + sc:isAccessibleForFree true ; + sc:name "CAFES" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://microfluidics.stanford.edu/cafes" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3512 ; @@ -122069,7 +111192,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://github.com/LiRuiyi-raptor/CaFew_Project" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3300, edam:topic_3375 ; @@ -122085,7 +111208,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://asancpt.github.io/caffsim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654 ; @@ -122100,7 +111223,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "http://www.sanger.ac.uk/science/tools/caf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -122117,7 +111240,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "Per Uhlén" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -122141,7 +111264,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "Malte Thodberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -122162,7 +111285,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "http://bioconductor.org/packages/cageminer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -122184,7 +111307,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3053, @@ -122201,18 +111324,15 @@ The R package part of CAFE can be installed in R using the devtools package and: a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1597" ; - sc:name "Codon usage table" ; - sc:sameAs "http://edamontology.org/data_1597" ], + sc:additionalType "http://edamontology.org/data_1597" ; + sc:name "Codon usage table" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2865" ; - sc:name "Codon usage bias" ; - sc:sameAs "http://edamontology.org/data_2865" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2865" ; + sc:name "Codon usage bias" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -122242,7 +111362,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "http://emboss.open-bio.org/rel/rel6/apps/cai.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3293, @@ -122256,8 +111376,51 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "http://www.bio.ic.ac.uk/evolve/software/caic/index.html" ; biotools:primaryContact "Andy Purvis" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0821, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8729106", + "pubmed:34986805" ; + sc:description "Stochastic simulation tool for gene regulatory networks" ; + sc:featureList edam:operation_2426, + edam:operation_3927, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "CaiNet" ; + sc:url "https://gitlab.com/GebhardtLab/CaiNet" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0769, + edam:topic_2885, + edam:topic_3170, + edam:topic_3958 ; + sc:citation , + "pmcid:PMC8939069", + "pubmed:35313800" ; + sc:description "A software to integrate copy number variations and single nucleotide mutations for genetic heterogeneity profiling and subclone detection by single-cell RNA sequencing-" ; + sc:featureList edam:operation_3196, + edam:operation_3227, + edam:operation_3961 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CAISC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/lizamathews/CAISC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654 ; @@ -122271,7 +111434,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "http://cakesomatic.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workbench" ; sc:applicationSubCategory edam:topic_0121, @@ -122293,7 +111456,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://fcampelo.github.io/CALANGO/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0203, @@ -122313,14 +111476,14 @@ The R package part of CAFE can be installed in R using the devtools package and: a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0977" ; - sc:name "Tool identifier" ; - sc:sameAs "http://edamontology.org/data_0977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0977" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Tool identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0091, @@ -122346,7 +111509,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "Lefteris Koumakis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3344, @@ -122365,7 +111528,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "Mithun Kumar PK." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3318, @@ -122382,7 +111545,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "Laurent MacKay" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053 ; sc:description "Given two genomes, find the shortest sequence of 2-Breaks transforming one genome into another" ; @@ -122396,7 +111559,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "Shuang Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3344, @@ -122414,8 +111577,39 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://www.mathworks.com/matlabcentral/fileexchange/41401-calculation-of-ct-mtf-and-nps-using-the-acr-accreditation-phantom" ; biotools:primaryContact "Saul N. Friedman" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3314 ; + sc:citation , + "pubmed:35226807" ; + sc:description "CalcUS is a quantum chemistry plateform. It strives for simplicity, clarity and efficiency. It brings all the necessary tools to perform quantum chemistry in a user-friendly web interface." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CalcUS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/cyllab/CalcUS" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0625, + edam:topic_2885, + edam:topic_3517 ; + sc:citation ; + sc:description "A tool for finding all significant de Bruijn subgraphs for bacterial GWAS." ; + sc:featureList edam:operation_0524 ; + sc:isAccessibleForFree true ; + sc:name "CALDERA" ; + sc:url "https://github.com/HectorRDB/Caldera_Recomb" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0623 ; @@ -122428,7 +111622,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "Hao Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -122445,14 +111639,14 @@ The R package part of CAFE can be installed in R using the devtools package and: a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -122461,7 +111655,8 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:author , , "Sava Nedeljkovic" ; - sc:citation ; + sc:citation , + ; sc:contributor , , , @@ -122490,12 +111685,12 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:softwareHelp , , ; - sc:softwareVersion "1.3" ; + sc:softwareVersion "2.0" ; sc:url "https://loschmidt.chemi.muni.cz/calfitter/" ; biotools:primaryContact "CalFitter team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -122515,18 +111710,18 @@ The R package part of CAFE can be installed in R using the devtools package and: a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Plug-in", "Script", @@ -122553,7 +111748,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "PD Dr. Martin Eisenacher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3577 ; @@ -122573,7 +111768,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://github.com/yubin-park/califorest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3301, edam:topic_3520 ; @@ -122590,7 +111785,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "Manuel Kleiner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_0203, @@ -122609,7 +111804,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://www.cabselab.com/calista" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2229, @@ -122631,7 +111826,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://github.com/MathSZhang/CALLR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3518 ; @@ -122647,8 +111842,32 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:softwareVersion "0.12.0" ; sc:url "http://cran.r-project.org/web/packages/calmate/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workbench" ; + sc:applicationSubCategory edam:topic_0605, + edam:topic_0622, + edam:topic_3305, + edam:topic_3324, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC8712659", + "pubmed:34970567" ; + sc:description "CalmBelt, an integrated framework for on-site whole genome characterization and outbreak tracking." ; + sc:featureList edam:operation_2938, + edam:operation_3227, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CalmBelt" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://calmbelt-demo.mtms.dev" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3383 ; @@ -122664,7 +111883,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "Yoshikazu Ohya" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3175, @@ -122680,7 +111899,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0625, @@ -122695,7 +111914,7 @@ The R package part of CAFE can be installed in R using the devtools package and: . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3170, @@ -122718,8 +111937,53 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:name "CAMAMED" ; sc:url "https://github.com/mhnb/camamed" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0749, + edam:topic_3308, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8577786", + "pubmed:34679099" ; + sc:description "Codon Arrangement MAP Predictor, predicting MHC-I Associated Peptides presentation form mRNA" ; + sc:featureList edam:operation_0284, + edam:operation_2429, + edam:operation_2962 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CAMAP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/tariqdaouda/CAMAP" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_3063, + edam:topic_3304, + edam:topic_3400, + edam:topic_3419, + edam:topic_3421 ; + sc:citation , + "pmcid:PMC8635805", + "pubmed:34867492" ; + sc:description "Cambridge Cognitive and Psychiatric Test Kit (CamCOPS) an open-source application for capturing information relevant for cognitive and psychiatric assessment, on tablets, laptops, and desktops. It offers simple questionnaires and more complex tasks, and sends its data securely to your server." ; + sc:featureList edam:operation_2422, + edam:operation_3283, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CamCOPS" ; + sc:operatingSystem "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/RudolfCardinal/camcops" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295 ; @@ -122735,7 +111999,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://github.com/JxTang-bioinformatics/CaMelia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -122754,14 +112018,14 @@ The R package part of CAFE can be installed in R using the devtools package and: a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1539" ; - sc:name "Protein structural quality report" ; - sc:sameAs "http://edamontology.org/data_1539" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1539" ; + sc:encodingFormat "http://edamontology.org/format_1999" ; + sc:name "Protein structural quality report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081 ; @@ -122781,7 +112045,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3172 ; @@ -122801,7 +112065,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "Steffen Neumann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3315, @@ -122819,7 +112083,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://github.com/rgerum/cameratransform" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_0821, @@ -122836,7 +112100,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "http://csbl.bmb.uga.edu/CaMeRe/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0769, edam:topic_2229, @@ -122855,7 +112119,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://github.com/CAMI-challenge/CAMITAX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3174, @@ -122870,7 +112134,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://github.com/algo-cancer/CAMMiQ" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -122890,7 +112154,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://www.camoip.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -122910,7 +112174,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "Biomedical Informatics Centre" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0128, @@ -122928,7 +112192,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://github.com/twopin/CAMP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -122953,7 +112217,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://github.com/itmat/CAMPAREE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0130, @@ -122975,7 +112239,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "Alessandro Paiardin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0769, @@ -122996,7 +112260,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://github.com/ELELAB/CAncer-bioMarker-Prediction-Pipeline-CAMPP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0204, edam:topic_0749, @@ -123013,7 +112277,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://camregbase.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654 ; @@ -123029,7 +112293,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "Sergey S. Aganezov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, @@ -123046,7 +112310,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "Paola Bertolazzi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -123067,7 +112331,7 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://sourceforge.net/projects/canmd/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2885 ; @@ -123082,8 +112346,31 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:url "https://github.com/PapenfussLab/Canary" ; biotools:primaryContact "Kenneth D. Doig" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Suite" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2885, + edam:topic_3316, + edam:topic_3379, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9327220", + "pubmed:35896971" ; + sc:description "Canary is a bioinformatics tool that allows for the automatic conversion of MaCH dosage files (mlinfo and mldose) into PLINK1 and PLINK2 compatible files." ; + sc:featureList edam:operation_0335, + edam:operation_3196, + edam:operation_3557, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Canary" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/anb94/Canary" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3534 ; @@ -123097,30 +112384,30 @@ The R package part of CAFE can be installed in R using the devtools package and: a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_1920" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_1920" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_1920" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Genotype/phenotype report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2984" ; - sc:name "Pathway or network report" ; - sc:sameAs "http://edamontology.org/data_2984" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2984" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -123142,7 +112429,7 @@ The R package part of CAFE can be installed in R using the devtools package and: biotools:primaryContact "Karim Mezhoud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -123157,31 +112444,93 @@ The R package part of CAFE can be installed in R using the devtools package and: sc:name "Cancer SIGVAR" ; sc:url "http://cancersigvar.bgi.com/" . - a sc:SoftwareApplication ; + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal", + "Database portal" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0749, + edam:topic_2640, + edam:topic_3169, + edam:topic_3940 ; + sc:citation , + "pmcid:PMC8546348", + "pubmed:34712617" ; + sc:description "CancerCRCdb is a comprehensive database of human core regulatory circuitry." ; + sc:featureList edam:operation_0314, + edam:operation_3222, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:name "Cancer CRC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bio.liclab.net/Cancer_crc/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, edam:topic_2640, + edam:topic_3170, edam:topic_3360, edam:topic_3512 ; - sc:citation , - "pmcid:PMC6757265", - "pubmed:31579079" ; - sc:description """Identification of key pathways and genes in colorectal cancer to predict the prognosis based on mRNA interaction network. - -The Cancer Genome Atlas (TCGA) is a landmark cancer genomics program that sequenced and molecularly characterized over 11,000 cases of primary cancer samples. Learn more about how the program transformed the cancer research community and beyond. - -||| NAME (cancer) SIMILAR TO (PUB. DIFFERENT) bio.tools/cancer (canceR). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'limma' (bio.tools/limma), 'CRC' (bio.tools/CRC), 'KEGG', 'CDKN1A'""" ; - sc:featureList edam:operation_2495, - edam:operation_3083, + sc:citation , + "pmcid:PMC8463781", + "pubmed:34589189" ; + sc:description "An integrative analysis platform for investigating differentially expressed gene-level and isoform-level human cancer markers" ; + sc:featureList edam:operation_0264, + edam:operation_0315, edam:operation_3223, - edam:operation_3439 ; - sc:name "cancer_autogenerated" ; - sc:url "https://www.cancer.gov/tcga" . + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:name "Cancer DEIso" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://cosbi4.ee.ncku.edu.tw/DEIso/" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workflow" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0622, + edam:topic_2640, + edam:topic_3063, + edam:topic_3577 ; + sc:citation , + "pubmed:34310709" ; + sc:contributor ; + sc:description "The Cancer Predisposition Sequencing Reporter (CPSR) is a computational workflow that interprets and classifies germline DNA variants identified from next-generation sequencing in the context of cancer predisposition and inherited cancer syndromes. The workflow can also report incidental findings (ACMG v3.0) as well as the genotypes of common germline variants associated with cancer risk, as reported in the NHGRI-EBI GWAS catalog." ; + sc:featureList edam:operation_0331, + edam:operation_3225, + edam:operation_3226, + edam:operation_3661, + edam:operation_3672 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Cancer Predisposition Sequencing Reporter (CPSR)" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareHelp , + , + , + ; + sc:softwareVersion "1.0.0" ; + sc:url "https://github.com/sigven/cpsr" ; + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, @@ -123200,8 +112549,21 @@ The purpose of the project is to stratify the cancer patients into clinical asso sc:name "cancer_subtyping" ; sc:url "https://github.com/tjgu/cancer_subtyping" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "CancerABC is a manually curated comprehensive database containing information of the cell-free Nucleic Acid biomarkers against cancer" ; + sc:featureList edam:operation_2945 ; + sc:name "CancerABC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/cancerabcd/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -123216,7 +112578,7 @@ The purpose of the project is to stratify the cancer patients into clinical asso sc:url "https://github.com/bowen-gao/cancerAlign" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -123235,8 +112597,24 @@ The purpose of the project is to stratify the cancer patients into clinical asso sc:name "CancerCellNet" ; sc:url "http://www.cahanlab.org/resources/cancerCellNet_web" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench", + "Workflow" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_2640, + edam:topic_3382 ; + sc:citation , + "pubmed:35751591" ; + sc:description "A framework, CancerCellTracker to process the time-lapse microscopy images and track the behavior of thousands of MM cells simultaneously for drug response prediction of patients" ; + sc:featureList edam:operation_3443 ; + sc:license "Not licensed" ; + sc:name "CancerCellTracker" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/compbiolabucf/CancerCellTracker" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640, @@ -123255,7 +112633,7 @@ The purpose of the project is to stratify the cancer patients into clinical asso biotools:primaryContact "Daniel Kosztyla" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -123277,8 +112655,50 @@ The purpose of the project is to stratify the cancer patients into clinical asso "Windows" ; sc:url "https://dnahive.fda.gov/review/cancercocoputs/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:28349958" ; + sc:description "CancerCSP (clear cell renal cancer stage prediction) is a web-bench developed for predicting Early and Late stage of clear cell renal cell carcinoma (ccRCC) patients using gene expression data derived from RNA-seq experiments in the form of RNA-Seq by Expectation Maximization (RSEM) values." ; + sc:featureList edam:operation_2945 ; + sc:name "CancerCSP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/cancercsp/index.php" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:27030518" ; + sc:description "cancerdp: Prioritization of anticancer drugs" ; + sc:featureList edam:operation_2945 ; + sc:name "cancerdp" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/cancerdp/about.php" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:23486013" ; + sc:description "CancerDR is the compilation of mutation data and pharmacological drug profiles from Catalogue Of Somatic Mutations (COSMIC)and Cancer Cell Line Encyclopedia (CCLE)" ; + sc:featureList edam:operation_2945 ; + sc:name "CancerDR" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/cancerdr/general.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -123295,7 +112715,7 @@ The purpose of the project is to stratify the cancer patients into clinical asso sc:url "https://github.com/saifurcubd/Cancer-Detection" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -123313,8 +112733,21 @@ CancerEnD Genome-wide association studies have successfully identified thousands sc:name "CancerEnD" ; sc:url "https://webs.iiitd.edu.in/raghava/cancerend/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "One stop portal for cancer resources" ; + sc:featureList edam:operation_2945 ; + sc:name "canceres" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/canceres/db.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2229, @@ -123328,8 +112761,21 @@ Antimicrobial peptides (AMPs) constitute a diverse group of bioactive molecules sc:name "CancerGram" ; sc:url "http://biongram.biotech.uni.wroc.pl/CancerGram/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "Class-I HLA alleles Database" ; + sc:featureList edam:operation_2945 ; + sc:name "cancerhla1" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/cancerhla1/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_2640, @@ -123347,7 +112793,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://www.cancerimmunityqtl-hust.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640 ; @@ -123366,7 +112812,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou "Thomas D. Sherman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -123385,7 +112831,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "https://webs.iiitd.edu.in/raghava/cancerliver" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, @@ -123404,22 +112850,22 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ], + sc:additionalType "http://edamontology.org/data_3273" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sample ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3273" ; - sc:name "Sample ID" ; - sc:sameAs "http://edamontology.org/data_3273" ] ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -123438,8 +112884,46 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://bioconductor.org/packages/release/bioc/html/CancerMutationAnalysis.html" ; biotools:primaryContact "Simina M. Boca" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Workbench" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3173, + edam:topic_3360, + edam:topic_3474, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC9195411", + "pubmed:35698059" ; + sc:description "A VAE based deep learning approach to cancer tissue of origin classification." ; + sc:featureList edam:operation_3935 ; + sc:license "Not licensed" ; + sc:name "CancerNet" ; + sc:url "https://www.cancer.gov/tcga" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0203, + edam:topic_0602, + edam:topic_2640, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9119687", + "pubmed:35601606" ; + sc:description "A Graph Neural Network Model for prediction of the effectiveness of a drug on a given cancer cell lines" ; + sc:featureList edam:operation_3223, + edam:operation_3927, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CancerOmicsNet" ; + sc:url "https://github.com/pulimeng/CancerOmicsNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0199, @@ -123455,8 +112939,25 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://www.cancerouspdomains.ir/" ; biotools:primaryContact "Zahra Razaghi-Moghadam" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC5431423", + "pubmed:28473704" ; + sc:description "CancerPDF is a manually curated database of cancer-associated peptides found in different human bodyfluids (e.g., serum, urine, plasma and saliva)." ; + sc:featureList edam:operation_2945 ; + sc:name "CancerPDF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/cancerpdf/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0219, @@ -123471,11 +112972,11 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://crdd.osdd.net/raghava/cancerppd/" ; + sc:url "https://webs.iiitd.edu.in/raghava/cancerppd/" ; biotools:primaryContact "Gajendra P. S. Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640 ; @@ -123488,10 +112989,10 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/cancer_pred/" . + sc:url "https://webs.iiitd.edu.in/raghava/cancer_pred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0208, @@ -123510,8 +113011,31 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact "Bjoern Gohlke", "Robert Preissner" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0203, + edam:topic_2229, + edam:topic_2640, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8728207", + "pubmed:34643725" ; + sc:description "Database of single-cell expression map across various human cancers." ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_3463, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:name "CancerSCEM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ngdc.cncb.ac.cn/cancerscem" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, edam:topic_3170, @@ -123531,7 +113055,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou "Yidong Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, edam:topic_2640, @@ -123548,8 +113072,21 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:name "CANCERSIGN" ; sc:url "https://github.com/bcb-sut/CANCERSIGN" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "CancerSP is a web bench developed for analyzing genomics data and for predicting Early and Late stage of cancer using genomics data." ; + sc:featureList edam:operation_2945 ; + sc:name "CancerSP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/cancersp/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -123568,8 +113105,23 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://bioconductor.org/packages/release/bioc/html/CancerSubtypes.html" ; biotools:primaryContact "Taosheng Xu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation ; + sc:description """In silico Platform for designing genome-based +Personalized immunotherapy or Vaccine against Cancer.""" ; + sc:featureList edam:operation_2945 ; + sc:name "cancertope" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/cancertope/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, edam:topic_3170, @@ -123585,8 +113137,44 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:name "CancerTSP" ; sc:url "http://webs.iiitd.edu.in/raghava/cancertsp/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "CancerUBM is a web bench developed for analyzing proteomics data and for predicting cancer status of a urine sample from its proteomics data." ; + sc:featureList edam:operation_2945 ; + sc:name "cancerubm" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/cancerubm/index.php" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2640, + edam:topic_3379, + edam:topic_3474, + edam:topic_3966 ; + sc:citation , + "pmcid:PMC9364268", + "pubmed:35967400" ; + sc:description "A library of peptide-based cancer vaccines and their clinical attributes, named CancerVaccine" ; + sc:featureList edam:operation_0252, + edam:operation_0416, + edam:operation_0560 ; + sc:license "Not licensed" ; + sc:name "CancerVaccine" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://peptidecancervaccine.weebly.com/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -123602,7 +113190,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://cancervar.wglab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0084 ; @@ -123619,8 +113207,31 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://bioconductor.org/packages/release/bioc/html/CAnD.html" ; biotools:primaryContact "Caitlin McHugh" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_2229, + edam:topic_2640, + edam:topic_3170, + edam:topic_3572 ; + sc:citation , + "pmcid:PMC8524992", + "pubmed:34663427" ; + sc:description "CanDI - A global cancer data integrator." ; + sc:featureList edam:operation_1812, + edam:operation_2422, + edam:operation_3223 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CanDI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/GilbertLabUCSF/CanDI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0780, @@ -123639,7 +113250,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "https://github.com/xukaili/CandiHap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -123655,7 +113266,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://candis.ijs.si" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -123670,7 +113281,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact "Li-Zhi Gao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0196, edam:topic_0209, @@ -123688,7 +113299,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "https://github.com/chopralab/candock" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Script" ; sc:applicationSubCategory edam:topic_0199, @@ -123707,7 +113318,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou "Zhan Zhou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3318, @@ -123722,7 +113333,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -123742,7 +113353,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact "Dmitry Velmeshev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0108, @@ -123766,7 +113377,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3293 ; @@ -123782,7 +113393,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact "Schlötterer C." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_2640, @@ -123803,7 +113414,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://www.biomedical-web.com/cancerit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0780, @@ -123821,7 +113432,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3293, edam:topic_3305 ; @@ -123836,7 +113447,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://baccompare.imst.nsysu.edu.tw" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0780, @@ -123855,8 +113466,22 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:name "CANOPUS" ; sc:url "https://bio.informatik.uni-jena.de/software/canopus/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2269 ; + sc:description "Our variation of canopy clustering focuses on efficient clustering of points in multi-dimensional pearson correlation space. The basic notion of the heuristic is choosing a point(seed point) at random, and upon establishing it's distance to all the other points, single out those that are within a specified canopy distance. A median profile of those points is then calculated creating a canopy centroid. The canopy creation process is then repeated perpetually(canopy walk) from the previously created centroid until the distance between previous centroid is small enough. All points from the last canopy are then marked, and will not become seed points again. The above will be repeated for all possible seed points." ; + sc:featureList edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "canopy" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bitbucket.org/HeyHo/mgs-canopy-algorithm/wiki/Home" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -123871,8 +113496,14 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:name "CanPredict" ; sc:url "http://www.cgl.ucsf.edu/Research/genentech/canpredict/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "CanProSite is developed in IIT Madras from Protein Bioinformatics Lab. It is useful for the identification of disease prone sites in lung cancer using deep neural network" ; + sc:name "CanProSite" ; + sc:url "https://web.iitm.ac.in/bioinfo2/CanProSite/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2640, @@ -123888,7 +113519,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://CanRisk.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -123907,8 +113538,29 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "https://cansar.icr.ac.uk/" ; biotools:primaryContact "The Institute of Cancer Research" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workflow" ; + sc:applicationSubCategory edam:topic_0202, + edam:topic_0769, + edam:topic_2640, + edam:topic_3336, + edam:topic_3371 ; + sc:citation , + "pmcid:PMC9148294", + "pubmed:35643512" ; + sc:description "canSAR is a chemistry registration and standardization pipeline." ; + sc:featureList edam:operation_3435, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-SA-4.0" ; + sc:name "canSARchem" ; + sc:softwareHelp ; + sc:url "http://cansar.icr.ac.uk" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2885, @@ -123923,8 +113575,31 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:softwareHelp ; sc:url "https://github.com/adrlar/CanSNPer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_0219, + edam:topic_0602, + edam:topic_3168, + edam:topic_3174 ; + sc:citation , + "pmcid:PMC8767102", + "pubmed:35069469" ; + sc:description "Calgary approach to ANnoTating HYDrocarbon degradation genes (CANT-HYD), a database of 37 HMMs of marker genes involved in anaerobic and aerobic degradation pathways of aliphatic and aromatic hydrocarbons." ; + sc:featureList edam:operation_0224, + edam:operation_0362, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CANT-HYD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/dgittins/CANT-HYD-HydrocarbonBiodegradation" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -123942,7 +113617,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "https://sourceforge.net/projects/cytomelodics/files/CANTARE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -123955,7 +113630,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "https://github.com/marbl/canu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -123976,7 +113651,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "https://canvar.icr.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -123992,8 +113667,49 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://ithaka.rrp.demokritos.gr/CanVaS/genes" ; biotools:primaryContact . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2523" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Phylogenetic data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:applicationSubCategory edam:topic_3070, + edam:topic_3316, + edam:topic_3391 ; + sc:description "Complexity Analysis Viral Sequences" ; + sc:featureList edam:operation_2945, + edam:operation_2990 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CANVAS" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:softwareVersion "1.0" ; + sc:url "https://github.com/jorgeMFS/canvas" ; + biotools:primaryContact "Jorge Miguel Ferreira da Silva" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0121, + edam:topic_0128, + edam:topic_0769 ; + sc:citation , + "pubmed:34432510" ; + sc:description "CANVS is an easy-to-use application for the analysis and visualization of mass spectrometry-based protein-protein interaction/association data. The elucidation of a protein's interaction association network is important for defining its biological function. Mass spectrometry-based proteomic approaches have emerged as powerful tools for identifying protein-protein interactions (PPIs) and protein-protein associations (PPAs). However, interactome association experiments are difficult to interpret, considering the complexity and abundance of data that are generated. Although tools have been developed to identify protein interactions associations quantitatively, there is still a pressing need for easy-to-use tools that allow users to contextualize their results. To address this, we developed CANVS, a computational pipeline that cleans, analyzes, and visualizes mass spectrometry-based interactome association data" ; + sc:featureList edam:operation_2949, + edam:operation_3799, + edam:operation_3925 ; + sc:name "CANVS" ; + sc:url "https://sourceforge.net/projects/canvs/files/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -124012,8 +113728,14 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://bioconductor.org/packages/release/bioc/html/caOmicsV.html" ; biotools:primaryContact "Henry Zhang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "CaosDB is a software toolbox for data management. Its focus lies on managing data in dynamic environments of research and development where changes are too frequent or projects are too small to bear the great cost of implementing a traditional specialized and but inflexible data management system. The research data management system (RDMS) CaosDB uses a semantic data model that allows to grow and change in those dynamic environments!" ; + sc:name "CaosDB" ; + sc:url "https://caosdb.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -124034,7 +113756,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact "X. Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3068, @@ -124053,7 +113775,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact "Chris A. Brackley" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -124070,7 +113792,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact "Ben Hescott" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0625, @@ -124090,7 +113812,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact "Anna L. Tyler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0078, @@ -124106,7 +113828,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "https://github.com/drou0302/CapiPy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3277, edam:topic_3518 ; @@ -124122,7 +113844,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact "Henning Redestig" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3077, edam:topic_3318 ; @@ -124135,7 +113857,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://www.github.com/barnzilla/capl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -124150,7 +113872,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact "Tsukasa Fukunaga" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0154, @@ -124168,7 +113890,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "https://github.com/BactSymEvol/Caprib" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -124189,7 +113911,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact "Narcis Fernandez-Fuentes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3379, @@ -124206,7 +113928,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact "Lachlan J M Coin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -124224,7 +113946,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://www.csbg-jlu.info/CapsNet-SSP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0160, @@ -124242,8 +113964,52 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:softwareHelp ; sc:url "http://csbg-jlu.site/lpc/predict" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0637, + edam:topic_0780, + edam:topic_3293, + edam:topic_3794, + edam:topic_3944 ; + sc:citation , + "pmcid:PMC9158481", + "pubmed:35664339" ; + sc:description "An interactive web tool to provide taxonomic context for a given phylogenetic tree." ; + sc:featureList edam:operation_0323, + edam:operation_0325, + edam:operation_0326, + edam:operation_0551, + edam:operation_0567 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CAPT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ghattab/CAPT" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0601, + edam:topic_0634, + edam:topic_3300, + edam:topic_3474 ; + sc:citation , + "pubmed:34806952" ; + sc:description "Captor is a tool for O-glycosylation site prediction in Homo sapiens. It works by combining properties and sequence features with support vector machine." ; + sc:featureList edam:operation_0253, + edam:operation_0417, + edam:operation_3645 ; + sc:name "Captor" ; + sc:url "https://github.com/YanZhu06/Captor/" ; + biotools:primaryContact "Cangzhi Jia", + "Jia Zheng" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0102, @@ -124264,7 +114030,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "https://github.com/LieberInstitute/CaPTure" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0654, @@ -124280,7 +114046,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://userweb.molbiol.ox.ac.uk/public/telenius/CaptureCompendium/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -124297,7 +114063,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://bioinfo.curie.fr/CAPweb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0625, @@ -124314,7 +114080,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "https://github.com/morris-lab/Capybara" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -124332,8 +114098,42 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://genome.cs.nthu.edu.tw/CAR/" ; biotools:primaryContact "Dr. Chin Lung Lu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0152, + edam:topic_0203, + edam:topic_3292, + edam:topic_3489, + edam:topic_3518 ; + sc:citation , + "pubmed:35352122" ; + sc:description "Carbohydrate microArray Analysis and Reporting Tool (CarbArrayART) is a software tool for glycan microarray experimental design, data storage, processing, presentation and reporting." ; + sc:featureList edam:operation_2428, + edam:operation_2495, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-4.0" ; + sc:name "CarbArrayART" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "https://glycosciences.med.ic.ac.uk/carbarrayart.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "Carbohydrate epitope prediction server" ; + sc:featureList edam:operation_2945 ; + sc:name "CARBOTOPE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/carbotope/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0602, @@ -124350,7 +114150,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact "Tzong-Yi Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -124371,7 +114171,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou "Xiangjie Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_3170, @@ -124388,7 +114188,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "https://github.com/single-cell-genetics/cardelino" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3068, edam:topic_3335, @@ -124406,7 +114206,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -124423,7 +114223,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact "Jiri Chmelik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0632, @@ -124442,14 +114242,14 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3682" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -124470,7 +114270,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou biotools:primaryContact "Kylie A. Bemis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -124487,7 +114287,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "https://www.cardiodb.org/cardioboost/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3063, @@ -124502,8 +114302,25 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:name "CardioPy" ; sc:url "http://github.com/CardioPy/CardioPy" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3384, + edam:topic_3444, + edam:topic_3474 ; + sc:citation , + "pubmed:35368227" ; + sc:description "A convolutional neural network for cross vendor automated sorting of cardiac MR images." ; + sc:featureList edam:operation_3443, + edam:operation_3695, + edam:operation_3802 ; + sc:license "CC-BY-1.0" ; + sc:name "CardiSort" ; + sc:url "https://github.com/cianmscannell/cardisort" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -124519,7 +114336,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "https://github.com/fkallen/CARE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -124540,7 +114357,7 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://www.bioinformatics.nl/caretta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -124561,26 +114378,8 @@ Tumor-infiltrating immune cells, as the component of tumor microenvironment, cou sc:url "http://cargo2.bioinfo.cnio.es/docs/aboutCargo.html" ; biotools:primaryContact "José Manuel Rodríguez" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0084, - edam:topic_0199, - edam:topic_2229, - edam:topic_3676 ; - sc:citation ; - sc:description """Single-cell tumor phylogeny inference with copy-number constrained mutation losses. - -SCARLET (Single-cell Algorithm for Reconstructing Loss-supported Evolution of Tumors) is an algorithm that reconstructs tumor phylogenies from single-cell DNA sequencing data. SCARLET uses a loss-supported model that constrains mutation losses based on observed copy-number data. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'S carlet', 'loss-supported'""" ; - sc:featureList edam:operation_0323, - edam:operation_3196, - edam:operation_3799 ; - sc:license "BSD-3-Clause" ; - sc:name "carlet" ; - sc:url "http://github.com/raphael-group/scarlet" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_1775, @@ -124599,7 +114398,7 @@ SCARLET (Single-cell Algorithm for Reconstructing Loss-supported Evolution of Tu biotools:primaryContact "Johannes Rainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -124613,7 +114412,7 @@ SCARLET (Single-cell Algorithm for Reconstructing Loss-supported Evolution of Tu sc:url "http://carmen.cebitec.uni-bielefeld.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_2885, @@ -124629,7 +114428,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "http://carmen.gao-lab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3379, @@ -124646,26 +114445,26 @@ Large-scale genome-wide association and expression quantitative trait loci studi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_1982" ; + sc:name "Alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097 ; @@ -124690,7 +114489,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi "Sebastian Will" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -124713,7 +114512,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact "Carnac team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -124729,7 +114528,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "https://github.com/boutroslab/caRpools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -124751,7 +114550,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact "P. M. Haverty" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -124764,8 +114563,33 @@ Large-scale genome-wide association and expression quantitative trait loci studi "Windows" ; sc:url "http://carrot.stanford.edu/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_0634, + edam:topic_0749, + edam:topic_3071 ; + sc:citation , + "pmcid:PMC9309178", + "pubmed:35898309" ; + sc:description "A database of polar amylodogenic peptides from disordered proteins." ; + sc:featureList edam:operation_0470, + edam:operation_3431, + edam:operation_3436, + edam:operation_3904 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CARs-DB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://carsdb.ppmclab.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0601, @@ -124783,7 +114607,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi "Xiangxiang Zeng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0082, @@ -124800,7 +114624,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "http://cartaj.lri.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -124815,7 +114639,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact "Patrick Chabrier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0749, @@ -124831,7 +114655,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3293, @@ -124848,7 +114672,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "http://dendrome.ucdavis.edu/cartogratree/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3307, @@ -124863,7 +114687,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "https://github.com/cdanielmachado/carveme" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -124879,7 +114703,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "http://www.stanford.edu/group/sherlocklab/software.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, @@ -124896,7 +114720,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact "Ray Sachs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0154, @@ -124912,14 +114736,14 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "http://rgenome.net/cas-designer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Cas-OFFinder is OpenCL based, ultrafast and versatile program that searches for potential off-target sites of CRISPR/Cas-derived RNA-guided endonucleases (RGEN)." ; sc:featureList edam:operation_3938 ; sc:name "Cas-OFFinder" ; sc:url "https://github.com/snugel/cas-offinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_3168 ; @@ -124931,8 +114755,30 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:name "CAS" ; sc:url "https://github.com/Kingsford-Group/CAS_code" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2258, + edam:topic_2840, + edam:topic_3068, + edam:topic_3314 ; + sc:citation , + "pmcid:PMC9199008", + "pubmed:35559614" ; + sc:description "CAS Common Chemistry is an open web resource that provides access to reliable chemical substance information for the scientific community." ; + sc:featureList edam:operation_2421, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-4.0" ; + sc:name "CAS Common Chemistry" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://commonchemistry.cas.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382, @@ -124951,7 +114797,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact "Karolina Nurzynska" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_3678 ; @@ -124966,8 +114812,30 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "http://bbisr.shinyapps.winship.emory.edu/CASAS/" ; biotools:primaryContact "Maintainer- Manali Rupji" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workbench" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3173, + edam:topic_3390, + edam:topic_3474, + edam:topic_3517 ; + sc:citation , + "pubmed:34643213" ; + sc:description "CASAVA provides a comprehensive annotation of disease risk in 24 disease categories for any non-coding variant in the genome." ; + sc:featureList edam:operation_2422, + edam:operation_3225, + edam:operation_3226 ; + sc:name "CASAVA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://zhanglabtools.org/CASAVA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0798, @@ -124984,7 +114852,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "https://github.com/BackofenLab/Casboundary" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -124999,7 +114867,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "http://www-math.u-strasbg.fr/genpred/spip.php?article3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2640, @@ -125019,7 +114887,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0114, @@ -125040,7 +114908,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "https://github.com/sandialabs/CasCollect" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3344, edam:topic_3452 ; @@ -125054,7 +114922,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact "Pangyu Teng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -125074,8 +114942,31 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "http://cistrome.dfci.harvard.edu/CaSNP/" ; biotools:primaryContact "X. Shirley Liu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0203, + edam:topic_0659, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8889671", + "pubmed:35236300" ; + sc:description "CASowary is a command line machine learning tool written in Python 3.6.8 for predicting the efficacy of sgRNAs for CRISPR Cas13 and other transcript targeting systems." ; + sc:featureList edam:operation_3096, + edam:operation_3222, + edam:operation_3901 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CASowary" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Janga-Lab/CASowary" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382, @@ -125090,7 +114981,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "http://casplab.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053, @@ -125105,7 +114996,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact "Richa Agarwala" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3320 ; @@ -125125,7 +115016,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact "David Rossell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -125141,7 +115032,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "http://best.snu.ac.kr/casper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -125158,7 +115049,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "http://igs-server.cnrs-mrs.fr/Caspr/index.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_0659, @@ -125172,7 +115063,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "https://judithbergada.github.io/CASPR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -125196,7 +115087,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "http://i.uestc.edu.cn/caspredict/cgi-bin/CASPredict.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -125214,7 +115105,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "https://github.com/soli/casq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3524 ; @@ -125228,7 +115119,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "https://liberles.cst.temple.edu/Software/CASS/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0654, @@ -125244,7 +115135,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact "Dr. Ekaterina Shelest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -125261,7 +115152,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "http://www.zbh.uni-hamburg.de/en/research/application-oriented-bioinformatics/researchprojects/cassys.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation , @@ -125274,8 +115165,27 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "https://youkiti.shinyapps.io/CAST-HSROC/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0780, + edam:topic_3169 ; + sc:citation , + "pubmed:35294034" ; + sc:description "An application to visualize circadian and heat stress-responsive genes in plants." ; + sc:featureList edam:operation_0314, + edam:operation_0531, + edam:operation_3925 ; + sc:license "Not licensed" ; + sc:name "CAST-R" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://nagellab.shinyapps.io/CASTR-v1/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in", "Workflow" ; sc:applicationSubCategory edam:topic_0625, @@ -125292,7 +115202,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "https://gitlab.bham.ac.uk/spillf-leukocytes-image-analysis/castle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -125306,7 +115216,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "https://ramanlab.github.io/CASTLE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0637, @@ -125325,7 +115235,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact "Stilianos Louca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -125350,8 +115260,20 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "http://sts.bioe.uic.edu/castp/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "a tool for pathway analysis of proteomic and phosphoproteomic datasets" ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "CausalPath" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "1.2.0" ; + sc:url "https://github.com/PathwayAndDataAnalysis/causalpath" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0637, @@ -125371,7 +115293,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact "Bas E. Dutilh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2640, @@ -125387,7 +115309,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "http://bio.licpathway.net/cata/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3314, @@ -125404,7 +115326,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "https://www.catalysis-hub.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "Mass cytometry uses heavy metal isotopes rather than fluorescent tags as reporters to label antibodies, thereby substantially decreasing spectral overlap and allowing for examination of over 50 parameters at the single cell level. Cytometry dATa anALYSis Tools is designed to provide a pipeline for preprocessing of cytometry data, including i) normalization using bead standards, ii) single-cell deconvolution, and iii) bead-based compensation." ; @@ -125421,7 +115343,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact "Helena L. Crowell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -125443,8 +115365,34 @@ Large-scale genome-wide association and expression quantitative trait loci studi "Mac" ; sc:url "https://catsid.llnl.gov/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0077, + edam:topic_0130, + edam:topic_0154, + edam:topic_0176, + edam:topic_3297 ; + sc:citation , + "pmcid:PMC9252799", + "pubmed:35544315" ; + sc:description "A user-friendly, web-based modelling tool to design and manipulate proteins, DNA and DNA nanostructures. State-of-the-art features from standalone tools for modelling, manipulation, and visualization of complex molecular systems" ; + sc:featureList edam:operation_0244, + edam:operation_0337, + edam:operation_0477, + edam:operation_2476, + edam:operation_4008 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Catana" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://catana.ait.ac.at/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2259, @@ -125459,7 +115407,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact "Edward Marcotte" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0621, @@ -125479,7 +115427,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "https://github.com/ccdmb/catastrophy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3179 ; @@ -125496,7 +115444,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact "Fiona Nielsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_2269, @@ -125517,54 +115465,48 @@ Large-scale genome-wide association and expression quantitative trait loci studi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2388" ; - sc:name "TAIR accession (At gene)" ; - sc:sameAs "http://edamontology.org/data_2388" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2388" ; - sc:name "TAIR accession (At gene)" ; - sc:sameAs "http://edamontology.org/data_2388" ], + sc:additionalType "http://edamontology.org/data_2388" ; + sc:name "TAIR accession (At gene)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2388" ; - sc:name "TAIR accession (At gene)" ; - sc:sameAs "http://edamontology.org/data_2388" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_2388" ; + sc:name "TAIR accession (At gene)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_2388" ; + sc:name "TAIR accession (At gene)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2388" ; - sc:name "TAIR accession (At gene)" ; - sc:sameAs "http://edamontology.org/data_2388" ] ; + sc:additionalType "http://edamontology.org/data_2388" ; + sc:name "TAIR accession (At gene)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Data reference" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0780 ; @@ -125581,33 +115523,20 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:softwareHelp ; sc:url "http://urgv.evry.inra.fr/CATdb" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0199, - edam:topic_3474 ; - sc:citation , - "pmcid:PMC6668108", - "pubmed:31362714" ; - sc:description "> LOW CONFIDENCE! | HIV drug resistance prediction with weighted categorical kernel functions | BACKGROUND:Antiretroviral drugs are a very effective therapy against HIV infection. However, the high mutation rate of HIV permits the emergence of variants that can be resistant to the drug treatment. Predicting drug resistance to previously unobserved variants is therefore very important for an optimum medical treatment. In this paper, we propose the use of weighted categorical kernel functions to predict drug resistance from virus sequence data. These kernel functions are very simple to implement and are able to take into account HIV data particularities, such as allele mixtures, and to weigh the different importance of each protein residue, as it is known that not all positions contribute equally to the resistance" ; - sc:featureList edam:operation_3482, - edam:operation_3891 ; - sc:name "categorical kernel" ; - sc:url "https://bitbucket.org/elies_ramon/catkern" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091, @@ -125627,18 +115556,18 @@ Large-scale genome-wide association and expression quantitative trait loci studi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -125659,7 +115588,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -125680,7 +115609,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi biotools:primaryContact "I. Sillitoe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, edam:topic_3474 ; @@ -125694,7 +115623,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "https://bitbucket.org/elies_ramon/catkern" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -125708,7 +115637,7 @@ Large-scale genome-wide association and expression quantitative trait loci studi sc:url "https://www.catkinas.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, @@ -125727,7 +115656,7 @@ Enzymes are catalysts in biochemical reactions that, by definition, increase rat sc:url "https://plattlab.shinyapps.io/catKLS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, @@ -125750,7 +115679,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "http://www.github.com/coryandar/CATNIP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -125768,7 +115697,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Peter LaPan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -125787,7 +115716,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "http://www.dutchconnectomelab.nl/CATO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0099, @@ -125806,7 +115735,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Gian Gaetano Tartaglia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -125820,7 +115749,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Gian Gaetano Tartaglia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_3053 ; @@ -125836,14 +115765,14 @@ The CATNIP repurposing network can be searched either by specifying one or more a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3619" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Extraction of causal molecular interactions from the Reactome database." ; sc:featureList edam:operation_2423, edam:operation_3928 ; @@ -125854,14 +115783,13 @@ The CATNIP repurposing network can be searched either by specifying one or more a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ] ; + sc:additionalType "http://edamontology.org/data_3671" ; + sc:name "Text" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3779" ; - sc:name "Annotated text" ; - sc:sameAs "http://edamontology.org/data_3779" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3779" ; + sc:encodingFormat "http://edamontology.org/format_3242" ; + sc:name "Annotated text" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602 ; sc:description "The causalBuilder is a prototype web application for the curation of molecular interaction causal statements. This interface takes advantage of the VSM framework (https://github.com/vsmjs/) to generate customized VSM-templates for the annotation of specific causal statements. The causal statements generated are compatible with the MI2CAST (Minimum Information about a Molecular Interaction Causal Statement) checklist that is available at https://github.com/MI2CAST/MI2CAST." ; @@ -125877,7 +115805,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "https://mi2cast.github.io/causalBuilder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -125893,7 +115821,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "http://uhlerlab.github.io/causaldag" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602 ; @@ -125912,7 +115840,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "https://github.com/fjmurguzur/causalizeR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3053, @@ -125930,7 +115858,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "http://causalmgm.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602 ; @@ -125950,10 +115878,10 @@ The CATNIP repurposing network can be searched either by specifying one or more a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3619" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0602 ; @@ -125970,14 +115898,14 @@ The CATNIP repurposing network can be searched either by specifying one or more a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814 ; @@ -126029,18 +115957,18 @@ The CATNIP repurposing network can be searched either by specifying one or more a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3910" ; + sc:name "Trajectory data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814 ; @@ -126089,10 +116017,10 @@ The CATNIP repurposing network can be searched either by specifying one or more a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Plug-in" ; sc:applicationSubCategory edam:topic_0078, @@ -126146,14 +116074,14 @@ The CATNIP repurposing network can be searched either by specifying one or more a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814 ; @@ -126194,18 +116122,18 @@ The CATNIP repurposing network can be searched either by specifying one or more a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -126246,8 +116174,30 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "https://loschmidt.chemi.muni.cz/caverdock/" ; biotools:primaryContact "CaverDock team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2830, + edam:topic_3068, + edam:topic_3299, + edam:topic_3966 ; + sc:citation , + "pmcid:PMC9227564", + "pubmed:35746624" ; + sc:description "CAVES (Comparative Analysis of Variant Epitope Sequences) is an tool created to automate comparative epitope analyses." ; + sc:featureList edam:operation_0416, + edam:operation_2421, + edam:operation_3197, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "CAVES" ; + sc:operatingSystem "Windows" ; + sc:url "https://github.com/connor-lowey/CAVES" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2269, @@ -126263,7 +116213,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Farhad Hormozdiari" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0166, @@ -126286,7 +116236,7 @@ The CATNIP repurposing network can be searched either by specifying one or more . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -126301,16 +116251,48 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:softwareHelp ; sc:url "http://repharma.pku.edu.cn/cavityplus" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1009" ; + sc:name "Protein name" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2764" ; + sc:name "Protein name (UniProt)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0082, + edam:topic_0121, + edam:topic_0154, + edam:topic_3534 ; + sc:citation , + "pmcid:PMC9312471", + "pubmed:35883523" ; + sc:description "A database of potential ligand binding sites in the human proteome." ; + sc:featureList edam:operation_0474, + edam:operation_3897, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "CavitySpace" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.pkumdl.cn:8000/cavityspace/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0622, @@ -126334,7 +116316,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3307, @@ -126349,14 +116331,13 @@ The CATNIP repurposing network can be searched either by specifying one or more a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2702" ; - sc:name "Enzyme ID (CAZy)" ; - sc:sameAs "http://edamontology.org/data_2702" ] ; + sc:additionalType "http://edamontology.org/data_2702" ; + sc:name "Enzyme ID (CAZy)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0821 ; sc:citation , @@ -126373,8 +116354,32 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "http://www.cazy.org/" ; biotools:primaryContact "CAZy Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0209, + edam:topic_0769, + edam:topic_2258, + edam:topic_2275 ; + sc:citation , + "pmcid:PMC9252749", + "pubmed:35609983" ; + sc:description "CB-Dock2 is an improved version of the CB-Dock server for protein-ligand blind docking, integrating cavity detection, docking and homologous template fitting." ; + sc:featureList edam:operation_0482, + edam:operation_2575, + edam:operation_3899, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CB-Dock2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://cadd.labshare.cn/cb-dock2/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:description "CBA (Consistency Based Alignment) builds multiple structure alignments from pairwise superpositions using consistency as a driving force.The software harnesses the information contained within regions that are consistently aligned among a set of pairwise superpositions in order to realign pairs of proteins through both global and local refinement methods. It then constructs a multiple alignment that is maximally consistent with the improved pairwise alignments." ; @@ -126386,7 +116391,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "http://motif.stanford.edu/distributions/cba/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3170, @@ -126406,7 +116411,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Arman Shahrisa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -126429,7 +116434,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Zhanjiang Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3293 ; @@ -126444,7 +116449,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "http://cbcanalyzer.bioapps.biozentrum.uni-wuerzburg.de/cgi-bin/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654, @@ -126464,7 +116469,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Oluwatosin Oluwadare" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3344, @@ -126481,8 +116486,31 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "https://www.mathworks.com/matlabcentral/fileexchange/35548-3d-cone-beam-ct-cbct-projection-backprojection-fdk-iterative-reconstruction-matlab-examples" ; biotools:primaryContact "Kyungsang Kim" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3068, + edam:topic_3170, + edam:topic_3673, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9154102", + "pubmed:35584140" ; + sc:description "R package for performing enrichment analysis for microbiome relative abundance data using the CBEA approach." ; + sc:featureList edam:operation_2238, + edam:operation_2436, + edam:operation_3436, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CBEA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.github.com/qpmnguyen/CBEA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -126498,8 +116526,26 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:name "cblaster" ; sc:url "http://github.com/gamcil/cblaster" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Script" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_2229, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pubmed:35870203" ; + sc:description "Cauchy-based bounded constraint low-rank representation (CBLRR), is a low-rank representation-based method by introducing bounded nuclear norm regulation and cauchy loss function (CLF) to achieve better clustering in single-cell RNA-seq data." ; + sc:featureList edam:operation_0314, + edam:operation_3432, + edam:operation_3435 ; + sc:license "Not licensed" ; + sc:name "CBLRR" ; + sc:url "https://github.com/Ginnay/CBLRR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workbench" ; sc:applicationSubCategory edam:topic_2229, @@ -126514,8 +116560,29 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:softwareHelp ; sc:url "https://github.com/somathias/cbmos" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Workflow" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_3068, + edam:topic_3170 ; + sc:citation , + "pubmed:35333314" ; + sc:description "CBNplot: Bayesian network plot for the enrichment analysis results." ; + sc:featureList edam:operation_0337, + edam:operation_1781, + edam:operation_3223, + edam:operation_3501 ; + sc:name "CBNplot" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cbnplot.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_2229, @@ -126531,7 +116598,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "http://cbo.biocomplexity.indiana.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -126548,8 +116615,33 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:name "CBP-JMF" ; sc:url "https://github.com/wangbingbo2019/CBP-JMF" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2640, + edam:topic_3063, + edam:topic_3263, + edam:topic_3421 ; + sc:citation , + "pmcid:PMC8686377", + "pubmed:34930224" ; + sc:description "This R package provides an R Shiny application that enables the user to generate, manage, and edit data and metadata files suitable for the import in cBioPortal for Cancer Genomics." ; + sc:featureList edam:operation_0337, + edam:operation_2422, + edam:operation_3096 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "cbpManager" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://bioconductor.org/packages/cbpManager/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -126567,7 +116659,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "https://github.com/inm7/cbptools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0157, @@ -126590,7 +116682,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Pall Olason" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation ; @@ -126603,8 +116695,24 @@ The CATNIP repurposing network can be searched either by specifying one or more "Windows" ; sc:url "http://doxey.uwaterloo.ca/cgi-bin/cbsPredict.cgi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC2974664", + "pubmed:20961417" ; + sc:description "Conformational B cell epitope prediction" ; + sc:featureList edam:operation_2945 ; + sc:name "cbtope" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/cbtope/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -126626,14 +116734,13 @@ The CATNIP repurposing network can be searched either by specifying one or more a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2778" ; - sc:name "CCAP strain number" ; - sc:sameAs "http://edamontology.org/data_2778" ] ; + sc:additionalType "http://edamontology.org/data_2778" ; + sc:name "CCAP strain number" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0963" ; - sc:name "Cell line report" ; - sc:sameAs "http://edamontology.org/data_0963" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0963" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Cell line report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2229 ; sc:citation ; @@ -126646,8 +116753,32 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:softwareHelp ; sc:url "http://www.ccap.ac.uk/index.htm" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_2640, + edam:topic_3379, + edam:topic_3958 ; + sc:citation , + "pmcid:PMC9403316", + "pubmed:36035123" ; + sc:description "One-stop and comprehensive annotation system for individual cancer genome at multi-omics level." ; + sc:featureList edam:operation_0362, + edam:operation_1812, + edam:operation_2422, + edam:operation_2436 ; + sc:license "CC-BY-NC-3.0" ; + sc:name "CCAS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ngdc.cncb.ac.cn/ccas/#/home" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3176 ; @@ -126663,7 +116794,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "http://cmb.gis.a-star.edu.sg/ChIPSeq/paperCCAT.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3047 ; @@ -126681,7 +116812,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Jeremy E. Purvis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3047 ; @@ -126697,7 +116828,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "https://github.com/vogt-m/ccbmlib" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2814 ; @@ -126713,7 +116844,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "G. Grigoryan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814, @@ -126729,7 +116860,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Michel Petitjean" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0601, @@ -126756,7 +116887,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "https://ccd.rhpc.nki.nl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -126771,19 +116902,42 @@ The CATNIP repurposing network can be searched either by specifying one or more edam:operation_2436 ; sc:name "CCDB" ; sc:softwareHelp ; - sc:url "http://crdd.osdd.net/raghava/ccdb" ; + sc:url "https://webs.iiitd.edu.in/raghava/ccdb" ; biotools:primaryContact "Dr. Subhash M. Agarwal" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0602, + edam:topic_3172, + edam:topic_3390, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC9195052", + "pubmed:35461097" ; + sc:description "A database for exploring inter-chemical correlations in metabolomics and exposomics datasets." ; + sc:featureList edam:operation_3463, + edam:operation_3502, + edam:operation_3766, + edam:operation_3929 ; + sc:license "Not licensed" ; + sc:name "CCDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.ccdb.idsl.me" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -126792,20 +116946,8 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:name "CCdigest" ; sc:url "https://www.massenspektrometrie.uni-osnabrueck.de/SoftwareTools/CC%3A%3Ain%20silico%20digestion.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_2640, - edam:topic_3168 ; - sc:citation , - "pubmed:31447070" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | Non-invasive genotyping of metastatic colorectal cancer using circulating cell free DNA | Circulating cell-free DNA (ccfDNA) in plasma provides an easily accessible source of circulating tumor DNA (ctDNA) for detecting actionable genomic alterations that can be used to guide colorectal cancer (CRC) treatment and surveillance. The goal of this study was to test the feasibility of using a traditional amplicon-based next-generation sequencing (NGS) on Ion Torrent platform to detect low-frequency alleles in ctDNA and compare it with a digital NGS assay specifically designed to detect low-frequency variants (as low as 0.1%) to provide evidence for the standard care of CRC. The study cohort consisted of 48 CRC patients for whom matched samples of formalin-fixed, paraffin-embedded tumor tissue, plasma, and peripheral blood mononuclear cells were available" ; - sc:featureList edam:operation_3196, - edam:operation_3227 ; - sc:name "ccfDNA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31447070" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -126815,7 +116957,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "https://www.massenspektrometrie.uni-osnabrueck.de/SoftwareTools/CC%3A%3Aintroduction.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0114, edam:topic_3308 ; @@ -126834,7 +116976,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Jun Woo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -126854,14 +116996,14 @@ The CATNIP repurposing network can be searched either by specifying one or more a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2877" ; - sc:name "Protein complex" ; - sc:sameAs "http://edamontology.org/data_2877" ] ; + sc:additionalType "http://edamontology.org/data_2877" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein complex" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3332 ; sc:author , @@ -126884,14 +117026,14 @@ The CATNIP repurposing network can be searched either by specifying one or more a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0736, @@ -126911,7 +117053,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Piero Fariselli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3068, @@ -126933,7 +117075,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2640, @@ -126949,8 +117091,29 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:softwareVersion "1.0" ; sc:url "https://github.com/pengfeeei/cci" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3170, + edam:topic_3308, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9306045", + "pubmed:35869420" ; + sc:description "the ccImpute R package is an effective algorithm to correct for dropout events and improve downstream analysis of scRNA-seq data" ; + sc:featureList edam:operation_3432, + edam:operation_3436, + edam:operation_3557 ; + sc:license "Not licensed" ; + sc:name "ccImpute" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/khazum/ccImpute" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3169, @@ -126963,7 +117126,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "https://github.com/GaoLabXDU/CCIP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0610, edam:topic_2269, @@ -126979,7 +117142,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Minghua Deng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -126995,7 +117158,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Jason Roszik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -127013,7 +117176,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Alex Pickering" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3063, @@ -127030,7 +117193,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "https://github.com/HoytWen/CCMDR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -127048,7 +117211,7 @@ The CATNIP repurposing network can be searched either by specifying one or more "Fan Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0152, edam:topic_0593, @@ -127064,8 +117227,27 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:name "CCMRD" ; sc:url "http://www.ccmrd.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0625, + edam:topic_3519 ; + sc:citation , + "pubmed:35863018" ; + sc:description "Carbapenemase-encoding gene Copy Number Estimator (ccne) is a tool to estimate the copy number of AMR genes. It uses housekeeping gene as the reference and compares the count of reads that mapped to AMR genes with the count of reads that mapped to the reference gene." ; + sc:featureList edam:operation_3196, + edam:operation_3233, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CCNE" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/biojiang/ccne" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; @@ -127080,7 +117262,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "https://github.com/speedinghzl/CCNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3315, @@ -127096,7 +117278,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "http://helikarlab.github.io/ccNetViz/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, @@ -127110,8 +117292,39 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:name "CCNMF" ; sc:url "https://github.com/XQBai/CCNMF" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1176" ; + sc:name "GO concept ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1893" ; + sc:name "Locus ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2757" ; + sc:name "Pfam domain name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0659, + edam:topic_0749, + edam:topic_3173, + edam:topic_3308 ; + sc:citation , + "pubmed:35660007" ; + sc:description "A Database for Comparing Co-expression Networks Analysis of Allohexaploid Wheat and Its Progenitors." ; + sc:featureList edam:operation_2436, + edam:operation_3463, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:name "ccnWheat" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinformatics.cau.edu.cn/ccnWheat" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0128, @@ -127127,14 +117340,13 @@ The CATNIP repurposing network can be searched either by specifying one or more a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2537" ; - sc:name "Protein structure raw data" ; - sc:sameAs "http://edamontology.org/data_2537" ] ; + sc:additionalType "http://edamontology.org/data_2537" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure raw data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2828 ; @@ -127153,7 +117365,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "http://www.ccp4.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_1317 ; sc:citation ; @@ -127170,10 +117382,10 @@ The CATNIP repurposing network can be searched either by specifying one or more a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0611, edam:topic_1317 ; @@ -127192,7 +117404,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "http://www.ccp4.ac.uk/MG/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -127210,19 +117422,40 @@ The CATNIP repurposing network can be searched either by specifying one or more "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://crdd.osdd.net/raghava/ccpdb/" ; + sc:url "https://webs.iiitd.edu.in/raghava/ccpdb/" ; biotools:primaryContact "Dr. Gajendra P. S. Raghava" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0203, + edam:topic_0602, + edam:topic_2229, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8789092", + "pubmed:34931240" ; + sc:description "CCPE is a cell cycle pseudotime estimation method characterizing cell cycle timing from single-cell RNA-seq data." ; + sc:featureList edam:operation_3223, + edam:operation_3454, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CCPE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/LiuJJ0327/CCPE" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0940" ; - sc:name "Electron microscopy volume map" ; - sc:sameAs "http://edamontology.org/data_0940" ] ; + sc:additionalType "http://edamontology.org/data_0940" ; + sc:name "Electron microscopy volume map" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0611 ; sc:citation , @@ -127238,8 +117471,27 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "http://www.ccpem.ac.uk" ; biotools:primaryContact "CCP-EM Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_2229, + edam:topic_3308 ; + sc:citation ; + sc:description "CCPLS reveals cell-type-specific spatial dependence of transcriptomes in single cells." ; + sc:featureList edam:operation_0314, + edam:operation_3659, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CCPLS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bioinfo-tsukuba/CCPLS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_1317 ; @@ -127257,7 +117509,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "http://www.ccpn.ac.uk/v3-software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -127278,7 +117530,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "https://github.com/qingxiangguo/CCPRD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -127297,7 +117549,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Xueyuan Cao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2885, @@ -127314,18 +117566,18 @@ The CATNIP repurposing network can be searched either by specifying one or more a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091, @@ -127348,7 +117600,7 @@ The CATNIP repurposing network can be searched either by specifying one or more "George Weingart" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0166, @@ -127369,7 +117621,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Shandar Ahmad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3071, @@ -127386,7 +117638,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "https://CCSbase.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0123, @@ -127400,7 +117652,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Gian Gaetano Tartaglia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3307, @@ -127416,7 +117668,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Benjamin Landsteiner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0736, edam:topic_0820, @@ -127437,27 +117689,36 @@ The CATNIP repurposing network can be searched either by specifying one or more a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; - sc:citation , - , - ; + sc:citation , + , + , + , + , + "pmcid:PMC2828112", + "pmcid:PMC3516142", + "pubmed:11294794", + "pubmed:11836214", + "pubmed:16731699", + "pubmed:20053844", + "pubmed:23060610" ; sc:description "Cluster a nucleotide dataset into representative sequences." ; sc:featureList edam:operation_0291 ; sc:name "cd-hit" ; @@ -127469,8 +117730,30 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "https://github.com/weizhongli/cdhit" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workbench" ; + sc:applicationSubCategory edam:topic_0081, + edam:topic_3047, + edam:topic_3314, + edam:topic_3474 ; + sc:citation , + "pubmed:35094072" ; + sc:description "Cross-Dependent Graph Neural Networks for Molecular Property Prediction." ; + sc:featureList edam:operation_0337, + edam:operation_3927, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CD-MVGNN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/uta-smile/CD-MVGNN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -127489,7 +117772,7 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:url "https://project.iith.ac.in/cdnuss/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0102, @@ -127512,7 +117795,7 @@ The CATNIP repurposing network can be searched either by specifying one or more biotools:primaryContact "Help Desk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, edam:topic_0602, @@ -127528,8 +117811,31 @@ The CATNIP repurposing network can be searched either by specifying one or more sc:softwareHelp ; sc:url "https://github.com/sbgn/cd2sbgnml" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0804, + edam:topic_3324, + edam:topic_3474, + edam:topic_3966 ; + sc:citation , + "pmcid:PMC9354802", + "pubmed:35937988" ; + sc:description "An effective sequence-based predictor named CD8TCEI-EukPath, capable of rapidly identifying eukaryotic pathogen-derived antigen epitopes for host CD8+ T cells from large peptide-coding datasets." ; + sc:featureList edam:operation_0252, + edam:operation_0416, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CD8TCEI-EukPath" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://lab.malab.cn/~hrs/CD8TCEI-EukPath/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0634, @@ -127549,7 +117855,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://github.com/BioinformaticsCSU/CDASOR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080 ; @@ -127567,7 +117873,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0654, @@ -127581,89 +117887,137 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://www.uni-ulm.de/en/in/institute-of-theoretical-computer-science/research/seqana.html" ; biotools:primaryContact "Dr. Enno Ohlebusch" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3063, + edam:topic_3305, + edam:topic_3324, + edam:topic_3325, + edam:topic_3390 ; + sc:citation , + "pmcid:PMC9258452", + "pubmed:35709356" ; + sc:description "Population Level Analysis and Community EStimates (PLACES) that provides model-based estimates for 29 measures among all counties and most incorporated and census-designated places, census tracts, and ZIP Code tabulation areas across the US." ; + sc:featureList edam:operation_0337, + edam:operation_3659 ; + sc:license "Not licensed" ; + sc:name "CDC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://www.cdc.gov/places/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0202, + edam:topic_0218, + edam:topic_3336, + edam:topic_3375 ; + sc:citation , + "pmcid:PMC9163158", + "pubmed:35654801" ; + sc:description "A large and continuously updated drug combination database." ; + sc:featureList edam:operation_3436, + edam:operation_3938 ; + sc:license "Not licensed" ; + sc:name "CDCDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://icc.ise.bgu.ac.il/medical_ai/CDCDB/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2327" ; - sc:name "GI number (protein)" ; - sc:sameAs "http://edamontology.org/data_2327" ], + sc:additionalType "http://edamontology.org/data_2666" ; + sc:name "CDD ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2666" ; - sc:name "CDD ID" ; - sc:sameAs "http://edamontology.org/data_2666" ], + sc:additionalType "http://edamontology.org/data_2327" ; + sc:name "GI number (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2714" ; - sc:name "CDD PSSM-ID" ; - sc:sameAs "http://edamontology.org/data_2714" ], + sc:additionalType "http://edamontology.org/data_2714" ; + sc:name "CDD PSSM-ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2714" ; - sc:name "CDD PSSM-ID" ; - sc:sameAs "http://edamontology.org/data_2714" ], + sc:additionalType "http://edamontology.org/data_2714" ; + sc:name "CDD PSSM-ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2666" ; - sc:name "CDD ID" ; - sc:sameAs "http://edamontology.org/data_2666" ], + sc:additionalType "http://edamontology.org/data_2327" ; + sc:name "GI number (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1096" ; - sc:name "Sequence accession (protein)" ; - sc:sameAs "http://edamontology.org/data_1096" ], + sc:additionalType "http://edamontology.org/data_2714" ; + sc:name "CDD PSSM-ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1096" ; - sc:name "Sequence accession (protein)" ; - sc:sameAs "http://edamontology.org/data_1096" ], + sc:additionalType "http://edamontology.org/data_2666" ; + sc:name "CDD ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2714" ; - sc:name "CDD PSSM-ID" ; - sc:sameAs "http://edamontology.org/data_2714" ], + sc:additionalType "http://edamontology.org/data_1096" ; + sc:name "Sequence accession (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2327" ; - sc:name "GI number (protein)" ; - sc:sameAs "http://edamontology.org/data_2327" ] ; + sc:additionalType "http://edamontology.org/data_1096" ; + sc:name "Sequence accession (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ], + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein family report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein family report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ], + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence alignment (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein family report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ], + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence alignment (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0166, edam:topic_0623, edam:topic_0736 ; - sc:citation , + sc:citation , + , + , + , + , + , + , "pmcid:PMC3013737", + "pmcid:PMC6943070", + "pubmed:11752315", + "pubmed:15608175", + "pubmed:17135202", + "pubmed:18984618", "pubmed:21109532", - "pubmed:25414356" ; + "pubmed:23197659", + "pubmed:25414356", + "pubmed:31777944" ; sc:description "Resource for the annotation of protein sequences with the location of conserved domain footprints, and functional sites inferred from these footprints. It includes manually curated domain models that make use of protein 3D structure to refine domain models and provide insights into sequence/structure/function relationships." ; sc:featureList edam:operation_0224 ; sc:name "Conserved domain database CDD" ; @@ -127676,7 +118030,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0602, @@ -127692,7 +118046,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "http://apps.cytoscape.org/apps/cddapp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0176, @@ -127714,7 +118068,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "Mark Bathe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3382, edam:topic_3474 ; @@ -127727,7 +118081,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://cdeep3m-stage.crbs.ucsd.edu/cdeep3m" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -127745,14 +118099,14 @@ License either MIT, or GPLv3 or later""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3520 ; sc:description "A simple reader of mass spectra in netCDF." ; @@ -127768,7 +118122,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "http://cdfread.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_3293 ; @@ -127787,7 +118141,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://github.com/ElsevierSoftwareX/SOFTX-D-17-00024" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2258 ; @@ -127809,8 +118163,25 @@ License either MIT, or GPLv3 or later""" ; sc:softwareVersion "1" ; sc:url "http://github.com/cdk/cdk/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1712" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Chemical structure image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:applicationSubCategory edam:topic_3314 ; + sc:description "Tool to visualize chemical structures in the SMILES line notation as 2D chemical structures." ; + sc:featureList edam:operation_0570 ; + sc:isAccessibleForFree true ; + sc:name "CDK Depict" ; + sc:softwareVersion "1.9.2" ; + sc:url "https://www.simolecule.com/cdkdepict/depict.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0637, edam:topic_2269, @@ -127828,7 +118199,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://github.com/SJTU-CGM/CDKAM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -127849,7 +118220,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "Kosuke Fujishima" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -127869,8 +118240,21 @@ License either MIT, or GPLv3 or later""" ; "Windows" ; sc:url "https://github.com/rheinbaylab/cDNA-detector" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "CDpred is a web based approach used to predict the celiac disease associated peptides and motifs." ; + sc:featureList edam:operation_2945 ; + sc:name "CDpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/cdpred/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3055, @@ -127890,7 +118274,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "Raquel Assis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -127909,8 +118293,28 @@ License either MIT, or GPLv3 or later""" ; sc:url "http://hazeslab.med.ualberta.ca/CDSbank/" ; biotools:primaryContact "Bart Hazes" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pubmed:35751187" ; + sc:description "CDSImpute is a novel effective method to impute the dropout events of a scRNA-seq expression matrix." ; + sc:featureList edam:operation_3223, + edam:operation_3463, + edam:operation_3557 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CDSImpute" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/riasatazim/CDSImpute" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3174, @@ -127926,7 +118330,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://github.com/ydkondratenko/cdsnake" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -127943,7 +118347,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "http://bioinformatics.albany.edu/~cemc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, edam:topic_3512 ; @@ -127958,7 +118362,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://github.com/ChaowangLan/ceRNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0769, edam:topic_3500 ; @@ -127972,7 +118376,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -127994,8 +118398,50 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "Liping Wei", "X. Shirley Liu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0219, + edam:topic_2840, + edam:topic_3360, + edam:topic_3366 ; + sc:citation , + "pmcid:PMC8728139", + "pubmed:34751388" ; + sc:description "A curated toxicology database with enhanced tools for data integration." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3431, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:name "CEBS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cebs.niehs.nih.gov/cebs/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3407, + edam:topic_3955 ; + sc:citation , + "pubmed:35595250" ; + sc:description "Web server for standardized and visual instationary 13C metabolic flux analysis." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3715 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CeCaFLUX" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.cecaflux.net" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0080, @@ -128010,7 +118456,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "http://www3.cmbi.umcn.nl/cedar/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation ; @@ -128025,8 +118471,31 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://chrome.google.com/webstore/search/CEDAROnDemand" ; biotools:primaryContact "Syed Ahmad Chan Bukhari" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0625, + edam:topic_2229, + edam:topic_2640, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8728137", + "pubmed:34634794" ; + sc:description "A knowledgebase of cellular drug response." ; + sc:featureList edam:operation_0314, + edam:operation_2429, + edam:operation_2436, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "CeDR Atlas" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ngdc.cncb.ac.cn/cedr" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3068, edam:topic_3390, @@ -128041,7 +118510,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://environmentalevidence.shinyapps.io/CEEDER/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, edam:topic_2229, @@ -128059,7 +118528,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "http://cefg.uestc.cn/ceg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0797 ; sc:citation ; @@ -128073,7 +118542,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "http://cega.ezlab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654 ; @@ -128090,7 +118559,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "http://korflab.ucdavis.edu/Datasets/cegma/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, @@ -128109,7 +118578,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://github.com/chenlabgccri/CeL-ID" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3382 ; @@ -128122,8 +118591,28 @@ License either MIT, or GPLv3 or later""" ; sc:softwareHelp ; sc:url "http://www.celavi.pro" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_2229, + edam:topic_3382, + edam:topic_3474 ; + sc:citation ; + sc:description "A GUI-based Python framework for segmentation, tracking and cell cycle annotations of microscopy data." ; + sc:featureList edam:operation_3443, + edam:operation_3553, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "Cell-ACDC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/SchmollerLab/Cell_ACDC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, @@ -128140,7 +118629,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "Brian DuChez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275 ; sc:citation ; @@ -128150,7 +118639,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "http://mmb.pcb.ub.es/~cpons/Cell-Dock/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_2269, @@ -128167,14 +118656,12 @@ License either MIT, or GPLv3 or later""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3449" ; - sc:name "Cell migration track image" ; - sc:sameAs "http://edamontology.org/data_3449" ] ; + sc:additionalType "http://edamontology.org/data_3449" ; + sc:name "Cell migration track image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3449" ; - sc:name "Cell migration track image" ; - sc:sameAs "http://edamontology.org/data_3449" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3449" ; + sc:name "Cell migration track image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229 ; sc:citation , @@ -128193,7 +118680,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "Lennart Martens" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3344, @@ -128210,7 +118697,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "Tomas Vicar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2229, @@ -128229,7 +118716,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "zhenzhou wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3344, @@ -128247,7 +118734,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "Costas Panagiotakis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3344, @@ -128265,7 +118752,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "Christof Seiler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3344, @@ -128283,7 +118770,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "Benjamin Gantenbein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, edam:topic_2258, @@ -128299,7 +118786,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "http://www.rxnfinder.org/cell2chem/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3170, edam:topic_3308 ; @@ -128311,8 +118798,29 @@ License either MIT, or GPLv3 or later""" ; sc:softwareHelp ; sc:url "https://github.com/AltAnalyze/cellHarmony-Align" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3308, + edam:topic_3395 ; + sc:citation , + "pmcid:PMC9362878", + "pubmed:35967929" ; + sc:description "Cell Layers is an interactive Sankey tool for the quantitative investigation of gene expression, coexpression, biological processes, and cluster integrity across clustering resolutions." ; + sc:featureList edam:operation_0313, + edam:operation_2844, + edam:operation_3799, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Cell Layers" ; + sc:softwareHelp , + ; + sc:url "https://github.com/apblair/CellLayers" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -128333,18 +118841,18 @@ License either MIT, or GPLv3 or later""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2337" ; - sc:name "Resource metadata" ; - sc:sameAs "http://edamontology.org/data_2337" ], + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Gene expression matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_2337" ; + sc:encodingFormat "http://edamontology.org/format_3326" ; + sc:name "Resource metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0867" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Sequence alignment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -128363,7 +118871,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "Ayelet Alpert" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -128379,7 +118887,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://data.test.hubmapconsortium.org/app/cellar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_2259 ; @@ -128398,7 +118906,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "babelomics@cipf.es (Francisco García)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3489 ; sc:description "This package makes use of the exhaustive RESTful Web service API that has been implemented for the Cellabase database. It enable researchers to query and obtain a wealth of biological information from a single database saving a lot of time. Another benefit is that researchers can easily make queries about different biological topics and link all this information together as all information is integrated." ; @@ -128417,7 +118925,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "Mohammed OE Abdallah" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0602, @@ -128439,7 +118947,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://github.com/ShellyCoder/cellcall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3170, @@ -128455,7 +118963,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://github.com/sqjin/CellChat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -128473,24 +118981,29 @@ License either MIT, or GPLv3 or later""" ; sc:softwareHelp ; sc:url "https://github.com/dapogon/cellcoal" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "The Cell Collective is a platform that allows the world-wide scientific community to create these models collectively. Its interface enables users to build and use models without specifying any mathematical equations or computer code - addressing one of the major hurdles with computational research. In addition, this platform allows scientists to simulate and analyze the models in real-time on the web, including the ability to simulate loss/gain of function and test what-if scenarios in real time." ; + sc:name "CellCollective" ; + sc:url "https://cellcollective.org/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2764" ; - sc:name "Protein name (UniProt)" ; - sc:sameAs "http://edamontology.org/data_2764" ], + sc:additionalType "http://edamontology.org/data_2764" ; + sc:name "Protein name (UniProt)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ], + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0623, @@ -128507,8 +119020,28 @@ License either MIT, or GPLv3 or later""" ; sc:url "http://www.itb.cnr.it/cellcycle/index.html" ; biotools:primaryContact "Roberta Alfieri" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2229, + edam:topic_3170, + edam:topic_3489 ; + sc:citation ; + sc:description "A unified repository for scRNA-seq data and visual exploration." ; + sc:featureList edam:operation_0224, + edam:operation_0337, + edam:operation_3223 ; + sc:isAccessibleForFree true ; + sc:name "CellDepot" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://celldepot.bxgenomics.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0108, @@ -128527,8 +119060,33 @@ License either MIT, or GPLv3 or later""" ; sc:softwareHelp ; sc:url "https://ot-cellector.shinyapps.io/CELLector_App/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_3170, + edam:topic_3308, + edam:topic_3512 ; + sc:description """Cellenics® is an open source, cloud-based analytics tool for single cell RNA sequencing data. It allows you to explore and analyze single cell datasets without the need to develop bioinformatics skills. Cellenics® has a user-friendly interface with a clear workflow. Offers a variety of pre-loaded publication-ready plots. + +Cellenics® software was developed by © 2020-2022 President and Fellows of Harvard College. +Biomage is an open source software company that provided services to Harvard Medical School for the design and development of Cellenics®.""" ; + sc:featureList edam:operation_0337, + edam:operation_3432, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:name "Cellenics" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + , + ; + sc:url "https://scp.biomage.net" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Workflow" ; sc:applicationSubCategory edam:topic_0769, @@ -128546,14 +119104,14 @@ License either MIT, or GPLv3 or later""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0963" ; - sc:name "Cell line report" ; - sc:sameAs "http://edamontology.org/data_0963" ] ; + sc:additionalType "http://edamontology.org/data_0963" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Cell line report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -128573,16 +119131,37 @@ License either MIT, or GPLv3 or later""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/cellGrowth.html" ; biotools:primaryContact "Julien Gagneur" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3168, + edam:topic_3308 ; + sc:citation , + "pubmed:35394016" ; + sc:description "An R package designed to demultiplex cell hashing data" ; + sc:featureList edam:operation_0314, + edam:operation_3200, + edam:operation_3933 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "cellhashR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/BimberLab/cellhashR" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3523 ; @@ -128605,7 +119184,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "Joseph Barry" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3382, @@ -128629,7 +119208,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "David Orloff, Manager of the Library" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154 ; @@ -128645,7 +119224,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "http://www.rna-society.org/cellinker/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -128665,7 +119244,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact "Tomislav Ilicic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, edam:topic_2229, @@ -128680,7 +119259,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://www.cellkb.com/immune" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128 ; sc:citation ; @@ -128692,7 +119271,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://github.com/sacdallago/cellmap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -128711,7 +119290,7 @@ License either MIT, or GPLv3 or later""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2229, @@ -128729,7 +119308,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://github.com/ocbe-uio/CellMAPtracer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_2229, @@ -128748,14 +119327,12 @@ License either MIT, or GPLv3 or later""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3449" ; - sc:name "Cell migration track image" ; - sc:sameAs "http://edamontology.org/data_3449" ] ; + sc:additionalType "http://edamontology.org/data_3449" ; + sc:name "Cell migration track image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3449" ; - sc:name "Cell migration track image" ; - sc:sameAs "http://edamontology.org/data_3449" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3449" ; + sc:name "Cell migration track image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229 ; sc:citation , @@ -128772,7 +119349,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "https://github.com/compomics/cellmissy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3277 ; @@ -128788,7 +119365,7 @@ License either MIT, or GPLv3 or later""" ; sc:url "http://web.cbio.uct.ac.za/~renaud/CRAN/web/CellMix/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3300, edam:topic_3315 ; @@ -128803,16 +119380,25 @@ License either MIT, or GPLv3 or later""" ; sc:softwareVersion "2.0" ; sc:url "https://cellml.org/specifications/cellml_2.0/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "CellModeller is a Python-based framework for modelling large-scale multi-cellular systems, such as biofilms, plant and animal tissue." ; + sc:isAccessibleForFree true ; + sc:name "CellModeller" ; + sc:softwareHelp ; + sc:url "https://haselofflab.github.io/CellModeller/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Mathematical model" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3307 ; @@ -128839,7 +119425,7 @@ Metabolic networks can be analyzed by means of stoichiometric and constraint-bas biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229 ; @@ -128857,14 +119443,14 @@ Metabolic networks can be analyzed by means of stoichiometric and constraint-bas a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3619" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2984" ; - sc:name "Pathway or network report" ; - sc:sameAs "http://edamontology.org/data_2984" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2984" ; + sc:encodingFormat "http://edamontology.org/format_3619" ; + sc:name "Pathway or network report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -128884,7 +119470,7 @@ Metabolic networks can be analyzed by means of stoichiometric and constraint-bas biotools:primaryContact "T.Cokelaer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Ontology", "Web application" ; @@ -128906,18 +119492,15 @@ Metabolic networks can be analyzed by means of stoichiometric and constraint-bas a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ], + sc:additionalType "http://edamontology.org/data_3671" ; + sc:name "Text" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0963" ; - sc:name "Cell line report" ; - sc:sameAs "http://edamontology.org/data_0963" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0963" ; + sc:name "Cell line report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -128936,7 +119519,7 @@ Metabolic networks can be analyzed by means of stoichiometric and constraint-bas sc:url "http://web.expasy.org/cellosaurus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2229, @@ -128954,8 +119537,33 @@ Metabolic networks can be analyzed by means of stoichiometric and constraint-bas sc:url "http://www.cellpack.org/" ; biotools:primaryContact "Support forum" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal", + "Desktop application" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_0611, + edam:topic_2229, + edam:topic_2828, + edam:topic_3452 ; + sc:citation , + "pmcid:PMC8594902", + "pubmed:34790910" ; + sc:description "CellPAINT is a free-form painting app that allows users to create their own living illustrations of cellular landscapes." ; + sc:featureList edam:operation_0310, + edam:operation_0337, + edam:operation_1812 ; + sc:isAccessibleForFree true ; + sc:name "CellPAINT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "2.0" ; + sc:url "http://ccsb.scripps.edu/cellpaint" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, @@ -128973,7 +119581,7 @@ Metabolic networks can be analyzed by means of stoichiometric and constraint-bas biotools:primaryContact "Paul Macklin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2830, @@ -128990,8 +119598,35 @@ Metabolic networks can be analyzed by means of stoichiometric and constraint-bas sc:name "CellPhoneDB" ; sc:url "http://www.CellPhoneDB.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workbench", + "Workflow" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0199, + edam:topic_0610, + edam:topic_0625, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC8790911", + "pubmed:35081992" ; + sc:description "CellPhy: accurate and fast probabilistic inference of single-cell phylogenies." ; + sc:featureList edam:operation_0323, + edam:operation_0567, + edam:operation_3196, + edam:operation_3227, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "CellPhy" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareHelp ; + sc:url "https://github.com/amkozlov/cellphy" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0749, @@ -129008,8 +119643,45 @@ Metabolic networks can be analyzed by means of stoichiometric and constraint-bas sc:softwareHelp ; sc:url "http://www.cellpose.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC3615965", + "pubmed:23517638" ; + sc:description "CellPPD is an in silico method, which is developed to predict and design efficient cell penetrating peptides (CPPs). The main dataset used in this method consists of 708 experimentally validated CPPs." ; + sc:featureList edam:operation_2945 ; + sc:name "cellppd" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/cellppd/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3374, + edam:topic_3375, + edam:topic_3474, + edam:topic_3930 ; + sc:citation , + "pubmed:34766282" ; + sc:description "CellPPD-Mod is an in silico method, which is developed to predict efficient modified cell penetrating peptides (CellPPD-Mods)." ; + sc:featureList edam:operation_0252, + edam:operation_0418, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "CellPPDMod" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://webs.iiitd.edu.in/raghava/cellppdmod/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0625, @@ -129031,7 +119703,7 @@ Metabolic networks can be analyzed by means of stoichiometric and constraint-bas sc:url "https://cellprofileranalyst.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -129051,7 +119723,7 @@ Metabolic networks can be analyzed by means of stoichiometric and constraint-bas sc:url "https://github.com/theislab/cellrank" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -129076,18 +119748,15 @@ Perform quality control on genes and cells.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2523" ; - sc:name "Phylogenetic data" ; - sc:sameAs "http://edamontology.org/data_2523" ], + sc:additionalType "http://edamontology.org/data_2914" ; + sc:name "Sequence features metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2914" ; - sc:name "Sequence features metadata" ; - sc:sameAs "http://edamontology.org/data_2914" ] ; + sc:additionalType "http://edamontology.org/data_2523" ; + sc:name "Phylogenetic data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2229, @@ -129109,7 +119778,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Maia Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0203, @@ -129128,8 +119797,30 @@ Perform quality control on genes and cells.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/CellScore.html" ; biotools:primaryContact "Nancy Mah" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3382, + edam:topic_3474, + edam:topic_3934 ; + sc:citation , + "pmcid:PMC8767664", + "pubmed:35042474" ; + sc:description "A robust, pre-trained nucleus segmentation and pixel quantification software for highly multiplexed fluorescence images." ; + sc:featureList edam:operation_3435, + edam:operation_3443, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CellSeg" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://michaellee1.github.io/CellSegSite/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885 ; sc:citation ; @@ -129141,8 +119832,17 @@ Perform quality control on genes and cells.""" ; sc:softwareHelp ; sc:url "https://github.com/single-cell-genetics/cellsnp-lite" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "CellSys is a modular software tool for efficient off-lattice simulation of growth and organization processes in multicellular systems in two and three dimensions. It implements an agent-based model that approximates cells as isotropic, elastic and adhesive objects. Cell migration is modeled by an equation of motion for each cell. The software includes many modules specifically tailored to support the simulation and analysis of virtual tissues including real-time 3D visualization and VRML 2.0 support. All cell and environment parameters can be independently varied which facilitates species specific simulations and allows for detailed analyses of growth dynamics and links between cellular and multicellular phenotypes." ; + sc:name "CellSys" ; + sc:softwareHelp ; + sc:softwareVersion "5.0" ; + sc:url "https://www.hoehme.com/software/tisim" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0219, @@ -129160,7 +119860,7 @@ Perform quality control on genes and cells.""" ; sc:url "http://tcm.zju.edu.cn/celltalkdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3385 ; @@ -129176,7 +119876,7 @@ Perform quality control on genes and cells.""" ; sc:url "http://www.stat.duke.edu/research/software/west/celltracer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Suite" ; sc:applicationSubCategory edam:topic_2269, @@ -129193,7 +119893,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://github.com/WangLabTHU/CellTracker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3299, @@ -129213,7 +119913,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Thomas Buder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -129235,7 +119935,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "David duVerle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -129251,7 +119951,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://github.com/AlgoLab/celluloid/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0203, @@ -129268,7 +119968,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://github.com/davidbuterez/CellVGAE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, @@ -129284,7 +119984,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://github.com/PollardLab/CellWalker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2229, @@ -129296,7 +119996,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://github.com/PFPrzytycki/CellWalkR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3308 ; @@ -129311,7 +120011,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://github.com/chanzuckerberg/cellxgene" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, @@ -129330,7 +120030,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Lit-Hsin Loo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308 ; @@ -129346,7 +120046,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Itai Yanai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0196, @@ -129363,7 +120063,7 @@ Perform quality control on genes and cells.""" ; sc:url "http://alumni.cs.ucr.edu/~liw/cem.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, @@ -129381,7 +120081,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://github.com/liubailong/CEMDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3308, @@ -129401,7 +120101,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Helder Nakaya" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3335, edam:topic_3384, @@ -129422,7 +120122,7 @@ Perform quality control on genes and cells.""" ; sc:url "http://www.cemrgapp.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -129439,7 +120139,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://gitlab.ebi.ac.uk/cansu/centools_pycen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -129453,7 +120153,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://github.com/mayalevy/CENA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3360, @@ -129471,7 +120171,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://github.com/GaoLabXDU/CeNetOmnibus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3379, @@ -129487,14 +120187,12 @@ Perform quality control on genes and cells.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157 ; sc:author "Oleksiy Kohany", @@ -129516,7 +120214,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Web Production" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -129533,7 +120231,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Centdist webmaster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in", "Web application" ; sc:applicationSubCategory edam:topic_0602 ; @@ -129554,7 +120252,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Giacomina Bruttomesso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Web application" ; @@ -129575,7 +120273,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Mahdi Jalili" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -129600,7 +120298,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://www.centogene.com/mutation-database-centomd.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3301 ; @@ -129615,7 +120313,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://ccb.jhu.edu/software/centrifuge/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; sc:description "Assembling Centromeres with Long Error-Prone Reads | An algorithm for centromere assembly using long error-prone reads | Scripts for analyses and figures for centroFlye manuscript | centroFlye is an algorithm for centromere assembly using long error-prone reads. Currently it supports assembly of a human centromere X. Here we show how to apply it for the centromere X of the CHM13hTERT human cell line | Results_and_several_Appendices.ipynb replicates Results and Appendices: Analysis of centromeric reads that do not map to centroFlye assembly, Hanging index test, and Breakpoint test" ; @@ -129625,7 +120323,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://github.com/seryrzu/centroFlye" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -129647,7 +120345,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Sato K." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -129669,7 +120367,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Hamada M" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2815, @@ -129686,14 +120384,12 @@ Perform quality control on genes and cells.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3047 ; sc:citation , @@ -129711,7 +120407,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Joan Segura" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -129733,7 +120429,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Zuguang Gu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Workflow" ; sc:applicationSubCategory edam:topic_3068, @@ -129752,7 +120448,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0769 ; @@ -129765,7 +120461,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://github.com/YanZheng-16/CEPZ_DHS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -129784,7 +120480,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Rocco Piazza" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3334, @@ -129802,7 +120498,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://newton.isye.gatech.edu/CERC1/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3379, edam:topic_3384, @@ -129819,8 +120515,32 @@ Perform quality control on genes and cells.""" ; sc:softwareVersion "2.0" ; sc:url "https://www.welcome.alviss.ai/#/cvecalculator" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Workflow" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0602, + edam:topic_3170, + edam:topic_3512, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC8907976", + "pubmed:35281847" ; + sc:description "The CerealESTdb, a user-friendly, searchable, and interactive database has been developed with a primary goal to provide information on assembled and annotated ESTs from four major crop plants, namely wheat, rice, maize, and sorghum under multiple environmental stresses including cold, heat, drought, and salt stress as well as on the application of ABA." ; + sc:featureList edam:operation_0526, + edam:operation_0533, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CerealESTdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://cabgrid.res.in/CerealESTDb" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3334 ; sc:citation , @@ -129838,7 +120558,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Ethan Bahl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3384, @@ -129856,7 +120576,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://my.cerec.com/en/products/cerec-sw-4-6.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3332, @@ -129875,7 +120595,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0611, edam:topic_2275 ; @@ -129893,30 +120613,29 @@ Perform quality control on genes and cells.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2042" ; - sc:name "Evidence" ; - sc:sameAs "http://edamontology.org/data_2042" ], + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "File name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2854" ; - sc:name "Position-specific scoring matrix" ; - sc:sameAs "http://edamontology.org/data_2854" ], + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Nucleic acid sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ], + sc:additionalType "http://edamontology.org/data_2854" ; + sc:name "Position-specific scoring matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ], + sc:additionalType "http://edamontology.org/data_2042" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Evidence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "File name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2762" ; - sc:name "Sequence signature report" ; - sc:sameAs "http://edamontology.org/data_2762" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2762" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence signature report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation ; @@ -129931,7 +120650,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://ohlerlab.mdc-berlin.de/software/cERMIT_82/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -129952,7 +120671,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0634, @@ -129970,8 +120689,46 @@ Perform quality control on genes and cells.""" ; sc:name "CeRNASeek" ; sc:url "https://CRAN.R-project.org/package=CeRNASeek" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0634, + edam:topic_0659, + edam:topic_3300, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9136144", + "pubmed:35647026" ; + sc:description "ceRNAshiny, an interactive R/Shiny application, which integrates widely used computational methods and databases to provide and visualize the construction and analysis of ceRNA network, including differential gene analysis and functional annotation." ; + sc:featureList edam:operation_3223, + edam:operation_3792, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ceRNAshiny" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cerna.shinyapps.io/cerna_shiny/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3063, + edam:topic_3071 ; + sc:citation , + "pmcid:PMC9097703", + "pubmed:35571362" ; + sc:description "Decentralized healthcare training certificate management system using blockchain and smart contracts." ; + sc:featureList edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CertificateChain" ; + sc:url "https://doi.org/10.5281/zenodo.6257094" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -129984,7 +120741,7 @@ Perform quality control on genes and cells.""" ; sc:url "http://sourceforge.net/projects/ceruleanassembler/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204 ; sc:author "Joachim Weischenfeldt" ; @@ -130003,7 +120760,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -130020,7 +120777,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://bioconductor.org/packages/CeTF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3068, edam:topic_3520 ; @@ -130035,26 +120792,26 @@ Perform quality control on genes and cells.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0844" ; - sc:name "Molecular mass" ; - sc:sameAs "http://edamontology.org/data_0844" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0844" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecular mass" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2639" ; - sc:name "PubChem ID" ; - sc:sameAs "http://edamontology.org/data_2639" ], + sc:additionalType "http://edamontology.org/data_2639" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "PubChem ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2622" ; - sc:name "Compound ID (HMDB)" ; - sc:sameAs "http://edamontology.org/data_2622" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2622" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Compound ID (HMDB)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3172 ; sc:citation , @@ -130073,7 +120830,7 @@ Perform quality control on genes and cells.""" ; sc:url "http://ceumass.eps.uspceu.es/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0128, @@ -130093,7 +120850,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Pedro Madrigal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -130110,18 +120867,18 @@ Perform quality control on genes and cells.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -130140,7 +120897,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Herbert Braselmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3520 ; @@ -130152,7 +120909,7 @@ Perform quality control on genes and cells.""" ; sc:url "https://github.com/z-x-yang/CFBI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Workflow" ; @@ -130174,7 +120931,7 @@ Perform quality control on genes and cells.""" ; "Lei Wei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3168, @@ -130192,7 +120949,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Norbert Niklas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2229, @@ -130210,7 +120967,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Yulia A. Medvedeva" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -130231,7 +120988,7 @@ Perform quality control on genes and cells.""" ; biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, edam:topic_0623, @@ -130250,32 +121007,52 @@ Perform quality control on genes and cells.""" ; sc:name "CFSP" ; sc:url "https://github.com/HePeng2016/CFSP" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0623, + edam:topic_0749, + edam:topic_3293, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9102596", + "pubmed:35562653" ; + sc:description "An interactive desktop platform for drawing gene structure and protein architecture" ; + sc:featureList edam:operation_0326, + edam:operation_0551, + edam:operation_2475 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CFVisual" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ChenHuilong1223/CFVisual/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ], + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_1954" ; + sc:name "Nucleic acid sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ], + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_1954" ; + sc:name "Nucleic acid sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3181" ; - sc:name "Sequence assembly report" ; - sc:sameAs "http://edamontology.org/data_3181" ], + sc:additionalType "http://edamontology.org/data_3181" ; + sc:name "Sequence assembly report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0862" ; - sc:name "Dotplot" ; - sc:sameAs "http://edamontology.org/data_0862" ], + sc:additionalType "http://edamontology.org/data_3181" ; + sc:name "Sequence assembly report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3181" ; - sc:name "Sequence assembly report" ; - sc:sameAs "http://edamontology.org/data_3181" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0862" ; + sc:name "Dotplot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196 ; sc:author "Peter Husemann" ; @@ -130299,7 +121076,7 @@ Perform quality control on genes and cells.""" ; sc:url "http://bibiserv.cebitec.uni-bielefeld.de/cgcat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -130320,7 +121097,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "https://github.com/csbio/CG-TARGET" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -130343,7 +121120,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "https://github.com/csclab/CGA-BNI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -130362,7 +121139,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "http://cgatools.sourceforge.net/docs/1.8.0/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -130383,7 +121160,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "NCICB Application Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0209, edam:topic_2840, @@ -130399,8 +121176,30 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "https://github.com/zhc940702/CGATCPred" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0199, + edam:topic_3168, + edam:topic_3299, + edam:topic_3305 ; + sc:citation , + "pmcid:PMC8921643", + "pubmed:35043153" ; + sc:description "Coronavirus GenBrowser for monitoring the transmission and evolution of SARS-CoV-2." ; + sc:featureList edam:operation_0337, + edam:operation_3431, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:name "CGB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.biosino.org/cgb/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3569 ; @@ -130418,7 +121217,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0176 ; sc:citation ; @@ -130432,7 +121231,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "https://github.com/duartegroup/cgbind" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -130455,7 +121254,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3315, @@ -130473,10 +121272,10 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_1207" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0097 ; @@ -130491,7 +121290,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "Prof. John H. Maddocks" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0622, @@ -130508,7 +121307,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "Benjamin Gross" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053, @@ -130527,7 +121326,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "William Wheeler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -130543,7 +121342,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "http://www.cgga.org.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -130560,7 +121359,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "Mark van de Wiel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640 ; @@ -130578,7 +121377,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "Mark van de Wiel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0654, @@ -130595,7 +121394,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "I. Faustino" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -130615,7 +121414,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "J. Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -130634,7 +121433,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "Bart P.P. van Houte" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0634, @@ -130654,7 +121453,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting "Sylvain Marescha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -130673,30 +121472,30 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3275" ; - sc:name "Phenotype name" ; - sc:sameAs "http://edamontology.org/data_3275" ], + sc:additionalType "http://edamontology.org/data_3275" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Phenotype name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3275" ; - sc:name "Phenotype name" ; - sc:sameAs "http://edamontology.org/data_3275" ] ; + sc:additionalType "http://edamontology.org/data_3275" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Phenotype name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ], + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Feature table" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API", "Web application" ; @@ -130723,7 +121522,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "https://www.cancergenomeinterpreter.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_2275, @@ -130739,7 +121538,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "https://github.com/WebyGit/CGINet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3315, @@ -130755,7 +121554,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "https://github.com/huthvincent/cGLMM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3379, edam:topic_3407 ; @@ -130773,7 +121572,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "Tim Vigers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0199, @@ -130791,7 +121590,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "Weilong Guo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3305, @@ -130805,8 +121604,27 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:name "cgMLSTatTaiwan" ; sc:url "http://rdvd.cdc.gov.tw/cgMLST" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3068, + edam:topic_3303, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC8901031", + "pubmed:35402978" ; + sc:description "The cgmquantify software resource enables comprehensive analysis of continuous glucose monitor data with clinically validated metrics and easy to implement visualizations." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "cgmquantify" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "https://pypi.org/project/cgmquantify/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "Continuous Glucose Monitoring Time Series Data Analysis (CGMTSA) is an R package for continuous glucose monitoring time series data analysis." ; sc:featureList edam:operation_0337, @@ -130816,8 +121634,21 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:name "CGMTSA" ; sc:url "https://github.com/RyanJ-Shao/CGMTSA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3452, + edam:topic_3474 ; + sc:citation , + "pubmed:35704010" ; + sc:description "A novel end-to-end three-stage channel and position attention (CPA) module integrated graph reasoning convolutional neural network (CGNet) for retinal OCTA vessel segmentation." ; + sc:license "Not licensed" ; + sc:name "CGNet" ; + sc:url "https://github.com/GE-123-cpu/CGnet-for-vessel-segmentation" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -130834,7 +121665,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "https://cgpe.soic.iupui.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625 ; sc:citation , @@ -130849,8 +121680,31 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting "Windows" ; sc:url "http://cowry.agri.huji.ac.il/QTLMAP/qtlmap.htm" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0593, + edam:topic_3047, + edam:topic_3314, + edam:topic_3489 ; + sc:citation , + "pubmed:34843251" ; + sc:description "CGRdb2 is a Python package connecting to a PostgreSQL database that enables native searches for molecules and reactions without complicated SQL syntax." ; + sc:featureList edam:operation_1812, + edam:operation_2421, + edam:operation_2422, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CGRdb2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/icredd-cheminfo/CGRdb2" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -130869,7 +121723,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "Webmaster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -130885,7 +121739,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "http://39.100.117.92/CGRS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, edam:topic_2640, @@ -130901,7 +121755,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "https://github.com/ChengSQXJTU/CGSEA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -130924,8 +121778,26 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "Jason Grant", "Paul Stothard" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0769, + edam:topic_3174 ; + sc:citation , + "pubmed:35964419" ; + sc:description "CH-Bin - metagenomic binning using convex-hull distance metric" ; + sc:featureList edam:operation_0310, + edam:operation_3432, + edam:operation_3798 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CH-Bin" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/kdsuneraavinash/CH-Bin" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3305, @@ -130940,7 +121812,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "https://shiny.dide.imperial.ac.uk/chainchecker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0622, @@ -130955,7 +121827,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "Michael Hiller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3519, @@ -130972,7 +121844,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "Izaskun Mallona" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -130989,7 +121861,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -131005,7 +121877,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "https://github.com/ntpz870817/Chamaeleo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169, @@ -131028,14 +121900,14 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3168 ; @@ -131054,30 +121926,30 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -131095,26 +121967,26 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -131131,7 +122003,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -131148,22 +122020,22 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2878" ; - sc:name "Protein structural motif" ; - sc:sameAs "http://edamontology.org/data_2878" ], + sc:additionalType "http://edamontology.org/data_2878" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein structural motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0128, @@ -131202,14 +122074,12 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2166" ; - sc:name "Sequence composition plot" ; - sc:sameAs "http://edamontology.org/data_2166" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2166" ; + sc:name "Sequence composition plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -131239,7 +122109,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "http://emboss.open-bio.org/rel/rel6/apps/chaos.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0602, @@ -131261,8 +122131,29 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "http://dialign.gobics.de/chaos-dialign-submission" ; biotools:primaryContact "Prof. Dr. Burkhard Morgenstern" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0194, + edam:topic_0659, + edam:topic_0780, + edam:topic_3293, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9015123", + "pubmed:35436292" ; + sc:description "CHAPAO (Compressing Alignments using Hierarchical and Probabilistic Approach) is a novel reference-based technique for compressing MSA files." ; + sc:featureList edam:operation_0492, + edam:operation_3198, + edam:operation_3211 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CHAPAO" ; + sc:operatingSystem "Windows" ; + sc:url "https://github.com/ashiq24/CHAPAO" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3053 ; @@ -131275,7 +122166,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "http://genetics.emory.edu/labs/epstein/software/chaplin/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -131295,18 +122186,15 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1502" ; - sc:name "Amino acid index (chemical classes)" ; - sc:sameAs "http://edamontology.org/data_1502" ], + sc:additionalType "http://edamontology.org/data_1502" ; + sc:name "Amino acid index (chemical classes)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1523" ; - sc:name "Protein charge plot" ; - sc:sameAs "http://edamontology.org/data_1523" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1523" ; + sc:name "Protein charge plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0123 ; sc:citation , @@ -131336,7 +122224,7 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "http://emboss.open-bio.org/rel/rel6/apps/charge.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203 ; sc:description "Identifies genomic duplications or deletions from gene expression data." ; @@ -131351,8 +122239,29 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "http://bioconductor.org/packages/release/bioc/html/CHARGE.html" ; biotools:primaryContact "Benjamin Mayne" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_2885, + edam:topic_3169, + edam:topic_3474, + edam:topic_3940 ; + sc:citation , + "pubmed:35077535" ; + sc:description "CharID (Chromatin Accessible Region Interaction Detector), a two-step model that combines neural network and ensemble learning to predict OCR-mediated loops." ; + sc:featureList edam:operation_0445, + edam:operation_0481, + edam:operation_2437 ; + sc:isAccessibleForFree true ; + sc:name "CharID" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/Yin-Shen/CharID" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518, @@ -131372,28 +122281,8 @@ CG-TARGET is a collection of R scripts to be used for the purpose of predicting sc:url "http://bioconductor.org/packages/release/bioc/html/charm.html" ; biotools:primaryContact "Peter Murakami" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_3315, - edam:topic_3372 ; - sc:citation ; - sc:description """The charming code that error messages are talking about. - -The intent of high test coverage is to ensure that the dark nooks and crannies of code are exercised and tested. In a language like Python this is especially important as syntax errors can lurk in unevaluated blocks, only to be discovered once they are finally executed. Bugs that present themselves as error messages mentioning a line of code which is unrelated to the cause of the bug can be difficult and time-consuming to fix when a developer must first determine the actual location of the fault. A new code metric, charm, is presented. - -||| HOMEPAGE MISSING!. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/charm. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'charm cyclomatic', 'release-quality', 'cyclomatic', 'Python'""" ; - sc:featureList edam:operation_3435, - edam:operation_3659, - edam:operation_3799 ; - sc:name "charm_autogenerated" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.1138V2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0780, edam:topic_3168, @@ -131410,7 +122299,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "https://github.com/Yin-Shen/CharPlant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0089, @@ -131431,7 +122320,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a biotools:primaryContact "Ramana Madupu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_0203, @@ -131447,8 +122336,43 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:name "CHARTS" ; sc:url "http://charts.morgridge.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_3316 ; + sc:citation ; + sc:description "Chaste (Cooper et al., 2020) is an open-source, general-purpose simulation package for modelling soft tissues and discrete cell populations that can be used with MPI. This tool allows using different modelling frameworks on a given problem, enabling users to select the most appropriate one for their research and to better understand the limitations of each one of them. Chaste has been used for a wide range of projects, such as intestinal (Dunn et al., 2013) or colonic crypt (Dunn et al., 2012) studies." ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "Chaste" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "2021.1" ; + sc:url "http://www.cs.ox.ac.uk/chaste/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_3300, + edam:topic_3315 ; + sc:citation ; + sc:description "The chaste_codegen module takes CellML models as input, via cellmlmanip to read and manipulate them, then uses templating to generate C++ code." ; + sc:featureList edam:operation_2426, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "chaste_codegen" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://pypi.org/project/chaste-codegen/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_2640, @@ -131468,7 +122392,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a biotools:primaryContact "Simon Baker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0082, @@ -131484,8 +122408,41 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:name "CHC_FIND" ; sc:url "http://schubert.bio.uniroma1.it/CHC_FIND/index.html" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1904" ; + sc:name "Locus ID (EntrezGene)" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1106" ; + sc:name "dbSNP ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0602, + edam:topic_0625, + edam:topic_0634, + edam:topic_3335 ; + sc:citation , + "pubmed:35961607" ; + sc:description "A Comprehensive Knowledgebase for Congenital Heart Disease-related Genes and Clinical Manifestations." ; + sc:featureList edam:operation_0314, + edam:operation_1812, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:name "CHDbase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://chddb.fwgenetics.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -131504,14 +122461,13 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1174" ; - sc:name "ChEBI ID" ; - sc:sameAs "http://edamontology.org/data_1174" ] ; + sc:additionalType "http://edamontology.org/data_1174" ; + sc:name "ChEBI ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0962" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Small molecule report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3369 ; @@ -131530,14 +122486,13 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1174" ; - sc:name "ChEBI ID" ; - sc:sameAs "http://edamontology.org/data_1174" ] ; + sc:additionalType "http://edamontology.org/data_1174" ; + sc:name "ChEBI ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0962" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Small molecule report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0154, @@ -131555,7 +122510,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "http://www.ebi.ac.uk/chebi/webServices.do" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2828 ; @@ -131570,7 +122525,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "https://checkcif.iucr.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3297 ; sc:description "A Microsoft Windows-based software application for checking biotechnology Sequence Listings for compliance with 37 Code of Federal Regulations (CFR) 1.821 – 1.825 for both ‘old rules’ (October 1990) and ‘new rules’ (July 1998)." ; @@ -131582,7 +122537,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "http://www.uspto.gov/patents-getting-started/patent-basics/types-patent-applications/utility-patent/checker-version-446" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0622, edam:topic_0637, @@ -131598,7 +122553,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "https://ecogenomics.github.io/CheckM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -131617,7 +122572,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3071 ; @@ -131635,8 +122590,29 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "https://checkmyindex.pasteur.fr" ; biotools:primaryContact "Hugo Varet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9248842", + "pubmed:35775980" ; + sc:description "CheckMySequence is a Python package for the automated detection of register-shift errors in cryo-EM models." ; + sc:featureList edam:operation_0479, + edam:operation_2428, + edam:operation_3460 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "checkMySequence" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.com/gchojnowski/checkmysequence" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, @@ -131658,22 +122634,18 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623 ; sc:citation , @@ -131703,7 +122675,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "http://emboss.open-bio.org/rel/rel6/apps/checktrans.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -131718,7 +122690,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "http://bitbucket.org/berkeleylab/CheckV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0637, @@ -131733,7 +122705,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "https://github.com/KennthShang/CHEER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, @@ -131750,7 +122722,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "https://www.github.com/BiocomputeLab/cheetah" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275, @@ -131769,7 +122741,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "https://www.txms.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3314 ; @@ -131782,7 +122754,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "http://chem4word.codeplex.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2258, @@ -131800,7 +122772,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a biotools:primaryContact "Man-ling Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -131820,7 +122792,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "https://chembench.mml.unc.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_0154, @@ -131839,14 +122811,13 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2646" ; - sc:name "Compound ID (ChEMBL)" ; - sc:sameAs "http://edamontology.org/data_2646" ] ; + sc:additionalType "http://edamontology.org/data_2646" ; + sc:name "Compound ID (ChEMBL)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0962" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Small molecule report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0154, @@ -131870,14 +122841,13 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0962" ; + sc:name "Small molecule report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154 ; @@ -131898,14 +122868,13 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0962" ; + sc:name "Small molecule report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154, @@ -131927,14 +122896,12 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3490" ; - sc:name "Chemical structure sketch" ; - sc:sameAs "http://edamontology.org/data_3490" ] ; + sc:additionalType "http://edamontology.org/data_3490" ; + sc:name "Chemical structure sketch" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0962" ; + sc:name "Small molecule report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3324 ; @@ -131955,14 +122922,12 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3490" ; - sc:name "Chemical structure sketch" ; - sc:sameAs "http://edamontology.org/data_3490" ] ; + sc:additionalType "http://edamontology.org/data_3490" ; + sc:name "Chemical structure sketch" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0962" ; + sc:name "Small molecule report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258 ; @@ -131981,8 +122946,19 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "https://www.ebi.ac.uk/chembl/compound" ; biotools:primaryContact "Mark Davies" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "ChemChains is a logical network simulation and analysis suite." ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "Chemchain" ; + sc:softwareHelp ; + sc:softwareVersion "1.20" ; + sc:url "https://www.bioinformatics.org/chemchains/wiki/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -131997,8 +122973,32 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:softwareVersion "1.22" ; sc:url "http://www.bioinformatics.org/chemchains/wiki/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0821, + edam:topic_3172, + edam:topic_3292, + edam:topic_3407, + edam:topic_3955 ; + sc:citation ; + sc:description """Simulating spatially inhomogenous biochemical reaction-diffusion systems for modelling cell-environment feedbacks. + +Instructions for installation and explanation of the ChemChaste package may be found in ChemChaste_Documentation.pdf.""" ; + sc:featureList edam:operation_0334, + edam:operation_2426, + edam:operation_3660 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "ChemChaste" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/OSS-Lab/ChemChaste" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0202, @@ -132015,7 +123015,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a biotools:primaryContact "Chun-Wei Tung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -132035,7 +123035,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a biotools:primaryContact "Kirill A Veselkov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154 ; sc:description "Used for drawing accurate, chemically-aware structures for use in database queries, preparation of publication-quality graphics, and entry for modeling and other programs that require an electronic description of molecules and reactions." ; @@ -132046,7 +123046,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "http://www.cambridgesoft.com/software/overview.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0621, @@ -132062,7 +123062,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "https://github.com/klaris-ak/ChemFate" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, @@ -132078,7 +123078,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "http://admet.scbdd.com/chemfluc/index/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3336, edam:topic_3369, @@ -132094,7 +123094,7 @@ The result of OCR (Open Chromatin Region) assay technologies such as DNase-seq a sc:url "http://admet.scbdd.com/chemfluo/index/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2258, edam:topic_3068, @@ -132113,25 +123113,8 @@ There are two ways to try out chemfp. From the download page page you can reques sc:name "chemfp" ; sc:url "http://www.chemfp.com/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_2258, - edam:topic_3314 ; - sc:citation , - "pmcid:PMC6896769" ; - sc:description """Fast cheminformatics fingerprint search, at your fingertips. - -Chemfp is a set of command-line tools and a Python library for fingerprint generation and high-performance similarity search. - -There are two ways to try out chemfp. From the download page page you can request an evaluation copy of the most recent version of chemfp, or you can download an earlier version for no cost under the MIT license""" ; - sc:featureList edam:operation_0335, - edam:operation_2421, - edam:operation_3802 ; - sc:name "chemfp_autogenerated" ; - sc:url "http://www.chemfp.com/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -132147,14 +123130,12 @@ There are two ways to try out chemfp. From the download page page you can reques a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2087" ; - sc:name "Molecular property" ; - sc:sameAs "http://edamontology.org/data_2087" ] ; + sc:additionalType "http://edamontology.org/data_2087" ; + sc:name "Molecular property" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2087" ; - sc:name "Molecular property" ; - sc:sameAs "http://edamontology.org/data_2087" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2087" ; + sc:name "Molecular property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application", "Web service" ; @@ -132173,10 +123154,9 @@ There are two ways to try out chemfp. From the download page page you can reques a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2050" ; - sc:name "Molecular property (general)" ; - sc:sameAs "http://edamontology.org/data_2050" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2050" ; + sc:name "Molecular property (general)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3314 ; sc:citation ; @@ -132192,7 +123172,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "http://sabio.h-its.org/chemHits/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3047, @@ -132206,7 +123186,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "http://www.rxnfinder.org/chemhub/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:32440008" ; sc:description "The Chemical Checker (CC) is a resource that provides processed, harmonized and integrated bioactivity data on 800,000 small molecules. The CC divides data into five levels of increasing complexity, ranging from the chemical properties of compounds to their clinical outcomes. In between, it considers targets, off-targets, perturbed biological networks and several cell-based assays such as gene expression, growth inhibition and morphological profilings. In the CC, bioactivity data are expressed in a vector format, which naturally extends the notion of chemical similarity between compounds to similarities between bioactivity signatures of different kinds." ; @@ -132214,7 +123194,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "https://chemicalchecker.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3071 ; @@ -132229,7 +123209,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "http://cactus.nci.nih.gov/chemical/structure/documentation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workbench", "Workflow" ; @@ -132248,7 +123228,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "https://cheminformatics.usegalaxy.eu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3077, @@ -132267,7 +123247,7 @@ There are two ways to try out chemfp. From the download page page you can reques biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -132289,22 +123269,22 @@ There are two ways to try out chemfp. From the download page page you can reques a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2050" ; - sc:name "Molecular property (general)" ; - sc:sameAs "http://edamontology.org/data_2050" ], + sc:additionalType "http://edamontology.org/data_2050" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecular property (general)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], + sc:additionalType "http://edamontology.org/data_2050" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecular property (general)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2050" ; - sc:name "Molecular property (general)" ; - sc:sameAs "http://edamontology.org/data_2050" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Small molecule structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2258 ; @@ -132326,22 +123306,22 @@ There are two ways to try out chemfp. From the download page page you can reques a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2050" ; - sc:name "Molecular property (general)" ; - sc:sameAs "http://edamontology.org/data_2050" ], + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Small molecule structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_2050" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecular property (general)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Small molecule structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2050" ; - sc:name "Molecular property (general)" ; - sc:sameAs "http://edamontology.org/data_2050" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2050" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecular property (general)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2258 ; @@ -132369,8 +123349,23 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "http://bioconductor.org/packages/release/bioc/html/ChemmineR.html" ; biotools:primaryContact "Thomas Girke" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:19491216" ; + sc:description "A server to predict chemokines and their receptors." ; + sc:featureList edam:operation_2945 ; + sc:name "chemopred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/chemopred/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3314, edam:topic_3474, @@ -132385,7 +123380,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "https://github.com/aspuru-guzik-group/ChemOS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0769, @@ -132399,7 +123394,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "http://chemotion-repository.net/home/welcome" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2258, @@ -132418,7 +123413,7 @@ There are two ways to try out chemfp. From the download page page you can reques biotools:primaryContact "Stefan Bräse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, edam:topic_3314, @@ -132436,7 +123431,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "https://github.com/mtzgroup/ChemPixCH" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0108, @@ -132453,14 +123448,14 @@ There are two ways to try out chemfp. From the download page page you can reques a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0990" ; - sc:name "Compound name" ; - sc:sameAs "http://edamontology.org/data_0990" ] ; + sc:additionalType "http://edamontology.org/data_0990" ; + sc:encodingFormat "http://edamontology.org/format_1196" ; + sc:name "Compound name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0602 ; @@ -132482,7 +123477,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "http://cbs.dtu.dk/services/ChemProt-2.0/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, @@ -132499,7 +123494,7 @@ There are two ways to try out chemfp. From the download page page you can reques biotools:primaryContact "Dongsheng Cao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, @@ -132517,7 +123512,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "https://github.com/complat/chem_scanner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -132535,7 +123530,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "http://www.chemschematicresolver.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0593, @@ -132552,7 +123547,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "https://eln.chemotion.net/chemspectra-editor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3071 ; @@ -132568,7 +123563,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "http://www.chemspider.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3314 ; sc:description "ChemSpotlight is a Spotlight metadata importer plugin for Mac OS X, which reads common chemical file formats using the Open Babel chemistry library. Spotlight can then index and search chemical data: molecular weights, formulas, SMILES, InChI, fingerprints, etc." ; @@ -132580,7 +123575,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "http://chemspotlight.openmolecules.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3314, @@ -132592,7 +123587,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "https://github.com/lilott8/BioScript" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275 ; sc:citation ; @@ -132604,7 +123599,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "http://www.esa.ipb.pt/biochemcore/index.php/ds/c" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0218, @@ -132619,8 +123614,31 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "https://github.com/zenanz/ChemTables" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0219, + edam:topic_2258, + edam:topic_3067, + edam:topic_3292 ; + sc:citation , + "pmcid:PMC8991844", + "pubmed:35415670" ; + sc:description "A curated database of molecular tastants." ; + sc:featureList edam:operation_0337, + edam:operation_2422, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-4.0" ; + sc:name "ChemTastesDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://doi.org/10.5281/zenodo.5747393" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0209, edam:topic_3047, @@ -132640,7 +123658,7 @@ There are two ways to try out chemfp. From the download page page you can reques "Dan Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3314, edam:topic_3474 ; @@ -132650,7 +123668,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "https://bitbucket.org/mtzcloud/chemvox_tutorial/src/master" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0593, @@ -132664,7 +123682,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "https://sites.google.com/view/chescachespa-sparky" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, edam:topic_0593, @@ -132680,7 +123698,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "https://st-protein.chem.au.dk/chespi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0622, edam:topic_3382, @@ -132698,7 +123716,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "https://github.com/B-UMMI/Chewie-NS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3293, @@ -132713,7 +123731,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "https://github.com/compimmuno/CHfinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -132731,7 +123749,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "http://www.bio-bigdata.com/CHG/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3169, @@ -132752,7 +123770,7 @@ There are two ways to try out chemfp. From the download page page you can reques biotools:primaryContact "Guipeng Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0769, @@ -132771,7 +123789,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "https://github.com/TheJacksonLaboratory/ChIA-PIPE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3393 ; @@ -132789,7 +123807,7 @@ There are two ways to try out chemfp. From the download page page you can reques biotools:primaryContact "Carmen Maria Livi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0602, @@ -132806,7 +123824,7 @@ There are two ways to try out chemfp. From the download page page you can reques biotools:primaryContact "Mikhail Spivakov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -132826,7 +123844,7 @@ There are two ways to try out chemfp. From the download page page you can reques biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_0204, @@ -132847,7 +123865,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "https://cran.r-project.org/web/packages/chicane" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0218, @@ -132867,7 +123885,7 @@ There are two ways to try out chemfp. From the download page page you can reques biotools:primaryContact "Hao Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3169, @@ -132887,11 +123905,25 @@ There are two ways to try out chemfp. From the download page page you can reques biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0611, - edam:topic_1317 ; - sc:citation ; + edam:topic_1317, + edam:topic_2275 ; + sc:citation , + , + , + , + , + , + "pmcid:PMC1368656", + "pmcid:PMC4086125", + "pubmed:15264254", + "pubmed:15766548", + "pubmed:16478715", + "pubmed:16836757", + "pubmed:16963278", + "pubmed:24861624" ; sc:description "Highly extensible program for interactive visualization and analysis of molecular structures and related data, including density maps, supramolecular assemblies, sequence alignments, docking results, trajectories, and conformational ensembles. High-quality images and animations can be generated." ; sc:featureList edam:operation_0570, edam:operation_2480 ; @@ -132906,7 +123938,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "http://www.cgl.ucsf.edu/chimera/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_3382, edam:topic_3474 ; @@ -132921,7 +123953,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "https://github.com/lin-chen-VA/chimeraplugin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0114 ; sc:citation ; @@ -132941,7 +123973,7 @@ There are two ways to try out chemfp. From the download page page you can reques biotools:primaryContact "Raffaele A Calogero" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, @@ -132960,7 +123992,7 @@ There are two ways to try out chemfp. From the download page page you can reques biotools:primaryContact "Christopher A. Maher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -132976,7 +124008,7 @@ There are two ways to try out chemfp. From the download page page you can reques sc:url "http://microbiomeutil.sourceforge.net/#A_CS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3053, @@ -132996,14 +124028,16 @@ There are two ways to try out chemfp. From the download page page you can reques biotools:primaryContact "Rolf I. Skotheim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0605, edam:topic_2275, edam:topic_3382, edam:topic_3794 ; sc:citation , + , "pmcid:PMC7737788", + "pubmed:28710774", "pubmed:32881101" ; sc:description """Structure visualization for researchers, educators, and developers. @@ -133020,7 +124054,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "https://www.rbvi.ucsf.edu/chimerax" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0203, @@ -133045,8 +124079,28 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "J. Kang", "S. Lee" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0659, + edam:topic_0749, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pubmed:35339665" ; + sc:description "Identifying the oncogenic potential of gene fusions exploiting miRNAs" ; + sc:featureList edam:operation_0463 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ChimerDriver" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/martalovino/ChimerDriver" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3169, @@ -133067,7 +124121,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "https://github.com/mjflab/chinn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0091, @@ -133088,7 +124142,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Stephen B Montgomery" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Workflow" ; @@ -133109,7 +124163,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re "Daniel G. Tenen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -133131,8 +124185,32 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "http://jjwanglab.org/chip-array/" ; biotools:primaryContact "Junwen Wang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Suite", + "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_2885, + edam:topic_3169, + edam:topic_3173, + edam:topic_3940 ; + sc:citation , + "pubmed:35325188" ; + sc:description "ChIP-Atlas is a web service providing both GUI- and API-based data-mining tools to reveal the architecture of the transcription regulatory landscape." ; + sc:featureList edam:operation_0224, + edam:operation_0525, + edam:operation_3208 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ChIP-Atlas" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://chip-atlas.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -133153,7 +124231,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -133170,8 +124248,32 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:name "ChIP-GSM" ; sc:url "https://sourceforge.net/projects/chipgsm/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_0780, + edam:topic_3169, + edam:topic_3173, + edam:topic_3179 ; + sc:citation , + "pmcid:PMC9197862", + "pubmed:35701419" ; + sc:description "ChIP-Hub is an integrative web-based/Shiny application for exploring plant regulome." ; + sc:featureList edam:operation_0314, + edam:operation_0438, + edam:operation_2942, + edam:operation_3211, + edam:operation_3222 ; + sc:license "Not licensed" ; + sc:name "ChIP-Hub" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://biobigdata.nju.edu.cn/ChIPHub/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, @@ -133186,7 +124288,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "http://bioinformaticstools.mayo.edu/research/chip-rna-seqpro/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3169 ; sc:citation ; @@ -133203,7 +124305,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0749, edam:topic_3169 ; @@ -133218,7 +124320,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "https://ict.biouml.org/bioumlweb/chipseq_analysis.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -133242,7 +124344,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Patrick C.N. Martin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3179, edam:topic_3656 ; @@ -133257,7 +124359,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "http://compbio.med.harvard.edu/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169 ; @@ -133277,7 +124379,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Li Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -133294,18 +124396,18 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169, @@ -133327,7 +124429,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Raymond G. Cavalcante" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -133347,7 +124449,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Rene Welch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3169, @@ -133370,7 +124472,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "https://github.com/BoevaLab/CHIPIN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -133384,7 +124486,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "http://genomics.bioen.illinois.edu/chipinfo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -133400,7 +124502,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re "Zhaohui S. Qin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3169 ; @@ -133418,22 +124520,22 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3169, @@ -133455,18 +124557,18 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_2078" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169, @@ -133488,7 +124590,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re "Lihua Julie Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169 ; @@ -133510,14 +124612,12 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2865" ; - sc:name "Codon usage bias" ; - sc:sameAs "http://edamontology.org/data_2865" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2865" ; + sc:name "Codon usage bias" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -133547,7 +124647,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "http://emboss.open-bio.org/rel/rel6/apps/chips.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, @@ -133568,18 +124668,18 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_2078" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -133603,7 +124703,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3068, @@ -133616,7 +124716,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "https://github.com/LM-group/ChipSeg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169 ; @@ -133634,7 +124734,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169, @@ -133655,7 +124755,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -133675,7 +124775,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Nicolas Descostes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169, @@ -133694,7 +124794,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Peter Humburg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654 ; sc:description "Combine all  tasks required for analysis and quantitation of micro-array data – both DNA or protein arrays. It’s image processing routines may be also applied to automated evaluation and quantiation of microscopic images." ; @@ -133709,7 +124809,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "http://angiogenesis.dkfz.de/oncoexpress/software/chipskipper/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Workbench" ; @@ -133729,7 +124829,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "http://chipster.csc.fi/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, @@ -133748,7 +124848,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "https://gitlab.pasteur.fr/hub/chipuana" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0607, edam:topic_3169, @@ -133766,7 +124866,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Olgica Milenković" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -133786,7 +124886,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "George Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0602, edam:topic_0659 ; @@ -133800,7 +124900,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Pavankumar Videm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -133815,8 +124915,28 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Haotian Teng", "Lachlan J M Coin" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0637, + edam:topic_3050, + edam:topic_3071, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC8761365", + "pubmed:35070499" ; + sc:description "A public library of bat calls" ; + sc:featureList edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:name "ChiroVox" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.chirovox.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -133831,8 +124951,28 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:name "CHIT" ; sc:url "https://github.com/QiYanPitt/CHIT" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workflow" ; + sc:applicationSubCategory edam:topic_0114, + edam:topic_0203, + edam:topic_2640, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8633610", + "pubmed:34859212" ; + sc:description "ChiTaH, a fast and accurate method for the discovery of known human chimeras or fusion genes using DNA-Seq or RNA-Seq data generated using NGS technologies" ; + sc:featureList edam:operation_0450, + edam:operation_3799, + edam:operation_3918 ; + sc:isAccessibleForFree true ; + sc:name "ChiTaH" ; + sc:operatingSystem "Windows" ; + sc:url "https://github.com/Rajesh-Detroja/ChiTaH" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -133852,14 +124992,14 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3510 ; @@ -133881,7 +125021,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "http://cbs.dtu.dk/services/ChloroP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0122, edam:topic_0203, @@ -133899,14 +125039,14 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "https://irscope.shinyapps.io/chloroplot/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "CHM-eval, aka Syndip, is a benchmark dataset for evaluating the accuracy of small variant callers. It is constructed from the PacBio assemblies of two independent CHM cell lines using procedures largely orthogonal to the methodology used for short-read variant calling, which makes it more comprehensive and less biased in comparison to existing benchmark datasets." ; sc:name "chm-eval" ; sc:softwareVersion "20180222" ; sc:url "https://github.com/lh3/CHM-eval" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0781, edam:topic_3360, @@ -133927,7 +125067,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Youyi Fong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -133946,7 +125086,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "http://www.chomics.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_1317 ; sc:citation ; @@ -133959,7 +125099,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "http://www.gwyndafevans.co.uk/chooch.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0157, @@ -133981,10 +125121,10 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_2078" ; + sc:name "DNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workbench" ; sc:applicationSubCategory edam:topic_0080 ; @@ -134002,7 +125142,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Tessa Montague" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2885 ; @@ -134020,7 +125160,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Hin-Tak Leung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3320, @@ -134040,7 +125180,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re "Inanc Birol" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -134055,7 +125195,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "https://github.com/13308204545/Chord" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3300, @@ -134078,7 +125218,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "javimazzaf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -134102,7 +125242,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re "Jiming Jiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -134121,12 +125261,12 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/chpredict" ; + sc:url "https://webs.iiitd.edu.in/raghava/chpredict" ; biotools:primaryContact "Dr. G.P.S. Raghava", "Harpreet Kaur" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -134147,7 +125287,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Comments or Questions" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2229, @@ -134164,7 +125304,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Pingzhao Hu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -134183,7 +125323,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Oscar Reina" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382, @@ -134203,7 +125343,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re biotools:primaryContact "Atsushi Matsuda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654 ; sc:description "Chromas is a low-cost chromatogram file editor with search, vector sequence detection and multi-format sequence export functions, plus powerful batch processing." ; @@ -134217,7 +125357,7 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re sc:url "http://technelysium.com.au/?page_id=13" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3179, edam:topic_3656 ; @@ -134229,14 +125369,14 @@ UCSF ChimeraX is the next-generation molecular visualization program from the Re a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1212" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2033" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0097, @@ -134250,7 +125390,7 @@ Multiscale Complex Genomics (MuG) VM""" ; sc:url "http://mmb.irbbarcelona.org/www/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -134272,18 +125412,18 @@ Multiscale Complex Genomics (MuG) VM""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_3236" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Cytoband position" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3236" ; - sc:name "Cytoband position" ; - sc:sameAs "http://edamontology.org/data_3236" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1283" ; - sc:name "Cytogenetic map" ; - sc:sameAs "http://edamontology.org/data_1283" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1283" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Cytogenetic map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092 ; @@ -134303,7 +125443,7 @@ Multiscale Complex Genomics (MuG) VM""" ; biotools:primaryContact "Jan Janecka" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -134319,7 +125459,7 @@ Multiscale Complex Genomics (MuG) VM""" ; biotools:primaryContact "Oluwatosin Oluwadare" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -134333,8 +125473,20 @@ Multiscale Complex Genomics (MuG) VM""" ; sc:name "ChromeGCN" ; sc:url "https://github.com/QData/ChromeGCN" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0797 ; + sc:citation ; + sc:description "An ultra fast, heuristic approach to detect conserved signals in extremely large pairwise genome comparisons (dotplot)." ; + sc:featureList edam:operation_0490 ; + sc:license "GPL-3.0" ; + sc:name "Chromeister" ; + sc:softwareVersion "1.5.a" ; + sc:url "https://github.com/estebanpw/chromeister" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -134353,7 +125505,7 @@ Multiscale Complex Genomics (MuG) VM""" ; biotools:primaryContact "Tim F. Rayner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3173 ; sc:citation "pubmed:22373907" ; @@ -134369,7 +125521,7 @@ Multiscale Complex Genomics (MuG) VM""" ; biotools:primaryContact "Jason Ernst" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -134386,8 +125538,31 @@ Multiscale Complex Genomics (MuG) VM""" ; sc:url "http://chromnet.cs.washington.edu/" ; biotools:primaryContact "Su-In Lee" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0621, + edam:topic_0625, + edam:topic_2885, + edam:topic_3173 ; + sc:citation , + "pmcid:PMC8753883", + "pubmed:35016614" ; + sc:description "R package for interactive visualization of multi-omics data and annotation of chromosomes." ; + sc:featureList edam:operation_0337, + edam:operation_0525, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "chromoMap" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://lakshay-anand.github.io/chromoMap/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -134407,7 +125582,7 @@ Multiscale Complex Genomics (MuG) VM""" ; sc:url "http://catchenlab.life.illinois.edu/chromonomer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0080, @@ -134427,17 +125602,27 @@ Multiscale Complex Genomics (MuG) VM""" ; sc:url "https://people.maths.bris.ac.uk/~madjl/finestructure-old/chromopainter_info.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2856" ; + sc:encodingFormat "http://edamontology.org/format_3590" ; + sc:name "Structural distance matrix" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, edam:topic_0654, edam:topic_3473 ; + sc:author ; sc:citation , ; sc:description "Chromosight is an algorithm inspired from computer vision that can detect patterns in Hi-C maps. Chromosight has greater sensitivity than existing methods, while being faster and applicable to any type of genomes, including bacteria, viruses, yeasts and mammals." ; sc:featureList edam:operation_2429, + edam:operation_3222, edam:operation_3435, edam:operation_3501 ; sc:name "Chromosight" ; @@ -134445,7 +125630,7 @@ Multiscale Complex Genomics (MuG) VM""" ; sc:url "https://github.com/koszullab/chromosight" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0203, @@ -134462,7 +125647,7 @@ Multiscale Complex Genomics (MuG) VM""" ; sc:url "http://www.snubi.org/software/ChromoViz/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654 ; @@ -134476,7 +125661,7 @@ Multiscale Complex Genomics (MuG) VM""" ; sc:url "http://chromozoom.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -134495,7 +125680,7 @@ Multiscale Complex Genomics (MuG) VM""" ; biotools:primaryContact "Karen Y. Orostica" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0204, @@ -134518,7 +125703,7 @@ Multiscale Complex Genomics (MuG) VM""" ; sc:url "https://vallotlab.shinyapps.io/ChromSCape/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169 ; @@ -134536,7 +125721,7 @@ Multiscale Complex Genomics (MuG) VM""" ; biotools:primaryContact "Aaron Taudt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0203, @@ -134557,7 +125742,7 @@ Multiscale Complex Genomics (MuG) VM""" ; biotools:primaryContact "Selin Jessa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0749, @@ -134576,7 +125761,7 @@ Multiscale Complex Genomics (MuG) VM""" ; biotools:primaryContact "GreenleafLab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3382, @@ -134595,7 +125780,7 @@ Multiscale Complex Genomics (MuG) VM""" ; biotools:primaryContact "Pavel Skums" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -134617,18 +125802,15 @@ Multiscale Complex Genomics (MuG) VM""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -134653,7 +125835,7 @@ Multiscale Complex Genomics (MuG) VM""" ; "Panos Balomenos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2640 ; sc:citation ; @@ -134664,8 +125846,26 @@ Multiscale Complex Genomics (MuG) VM""" ; sc:name "Chronos" ; sc:url "https://github.com/broadinstitute/chronos" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0199, + edam:topic_0621 ; + sc:citation ; + sc:description "Chronumental is a tool for creating a \"time-tree\" (where distance on the tree represents time) from a phylogenetic divergence-tree (where distance on the tree reflects a number of genetic substitutions)." ; + sc:featureList edam:operation_0323, + edam:operation_0326, + edam:operation_0567, + edam:operation_3942 ; + sc:name "Chronumental" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/theosanderson/chronumental" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -134685,14 +125885,14 @@ Multiscale Complex Genomics (MuG) VM""" ; biotools:primaryContact "Jason T.L. Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:description "ChunkChromosome is a helper utility for minimac and MaCH. It can be used to facilitate analyses of very large datasets in overlapping slices." ; sc:name "ChunkChromosome" ; sc:url "https://genome.sph.umich.edu/wiki/ChunkChromosome" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3070, @@ -134713,7 +125913,7 @@ Multiscale Complex Genomics (MuG) VM""" ; sc:url "http://cibex.nig.ac.jp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0203, @@ -134731,8 +125931,55 @@ Multiscale Complex Genomics (MuG) VM""" ; sc:name "CICERO" ; sc:url "https://github.com/stjude/Cicero" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0625, + edam:topic_0780, + edam:topic_0798, + edam:topic_2885 ; + sc:citation , + "pmcid:PMC8584679", + "pubmed:34762703" ; + sc:description "A web-based database for high-resolution genome-wide identification of transposable elements in Cicer species." ; + sc:featureList edam:operation_0525, + edam:operation_2421, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:name "CicerSpTEdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://cicersptedb.easyomics.org/index.php" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Workflow" ; + sc:applicationSubCategory edam:topic_2259, + edam:topic_3170, + edam:topic_3308, + edam:topic_3360, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC9307566", + "pubmed:35880126" ; + sc:description "Cross-platform training In CLinical Outcome PredictionS (ciclops) is a pipeline for building clinical outcome prediction models on training dataset and transfer learning on validation datasets." ; + sc:featureList edam:operation_2428, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Ciclops" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://pypi.org/project/ciclops/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3393 ; sc:citation , @@ -134747,7 +125994,7 @@ Multiscale Complex Genomics (MuG) VM""" ; sc:url "https://github.com/gcgbarbosa/cidacs-rl-v1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320, @@ -134769,7 +126016,7 @@ Multiscale Complex Genomics (MuG) VM""" ; "Knut Reinert" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -134788,7 +126035,7 @@ Multiscale Complex Genomics (MuG) VM""" ; biotools:primaryContact "Alex S. Holehouse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -134807,8 +126054,29 @@ Multiscale Complex Genomics (MuG) VM""" ; "Windows" ; sc:url "https://github.com/dbwilburn/cider" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2229, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8667531", + "pubmed:34903266" ; + sc:description "R package CIDER: Meta-Clustering for Single-Cell Data Integration and Evaluation" ; + sc:featureList edam:operation_3223, + edam:operation_3432, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CIDER" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/zhiyhu/CIDER" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -134828,8 +126096,29 @@ Multiscale Complex Genomics (MuG) VM""" ; biotools:primaryContact "David M. Geiser", "Kerry O'Donnell" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3304, + edam:topic_3384, + edam:topic_3444 ; + sc:citation , + "pmcid:PMC9119143", + "pubmed:35051581" ; + sc:description "A package for reading, writing, visualizing, and manipulating CIFTI files in R." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:name "ciftiTools" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/mandymejia/ciftiTools/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0621, @@ -134847,18 +126136,17 @@ Multiscale Complex Genomics (MuG) VM""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3210" ; - sc:name "Genome index" ; - sc:sameAs "http://edamontology.org/data_3210" ], + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Gene expression matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3210" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Genome index" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3320 ; @@ -134882,7 +126170,7 @@ Together with the circ fraction (circ/(circ+lin)), a 95% confidence interval is sc:url "https://github.com/OncoRNALab/CiLiQuant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3336, @@ -134899,8 +126187,31 @@ Together with the circ fraction (circ/(circ+lin)), a 95% confidence interval is biotools:primaryContact "Miguel Vazquez", "Åsmund Flobak" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2258, + edam:topic_3047, + edam:topic_3375, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8981840", + "pubmed:35379315" ; + sc:description "CIME (ChemInformatics Model Explorer), an interactive web-based system that allows users to inspect chemical data sets, visualize model explanations, compare interpretability techniques, and explore subgroups of compounds." ; + sc:featureList edam:operation_0337, + edam:operation_3935, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "CIME" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/jku-vds-lab/cime" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3335, edam:topic_3360, edam:topic_3474 ; @@ -134916,7 +126227,7 @@ Click on the different areas to enter strain values.""" ; sc:url "https://cimti.usj.edu.lb/strain/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, @@ -134935,7 +126246,7 @@ Click on the different areas to enter strain values.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -134955,7 +126266,7 @@ Click on the different areas to enter strain values.""" ; biotools:primaryContact "Yuriy Gusev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3168 ; @@ -134970,8 +126281,46 @@ Click on the different areas to enter strain values.""" ; sc:operatingSystem "Linux" ; sc:url "https://github.com/Hongweihuo-Lab/CIndex" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2828, + edam:topic_3520 ; + sc:citation , + "pubmed:34717419" ; + sc:description "Real-time tools for analysis of dynamic diamond anvil cell experiment data." ; + sc:featureList edam:operation_0337, + edam:operation_3453, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "Cinema Snap" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/cinemascience/cinema_snap" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0634, + edam:topic_0654, + edam:topic_2640, + edam:topic_3068 ; + sc:citation ; + sc:description "An R package for chromosomal instability analysis." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CINmetrics" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cran.r-project.org/package=CINmetrics" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_3169, @@ -134989,7 +126338,7 @@ Click on the different areas to enter strain values.""" ; "Iván D’Orso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3308 ; sc:citation , @@ -135000,7 +126349,7 @@ Click on the different areas to enter strain values.""" ; sc:url "http://github.com/YidingZhang117/CIPHER-SC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -135021,7 +126370,7 @@ Click on the different areas to enter strain values.""" ; sc:url "https://aekiz.shinyapps.io/CIPR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3307, @@ -135048,7 +126397,7 @@ Click on the different areas to enter strain values.""" ; "Wayne Pfeiffer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3384, @@ -135062,7 +126411,7 @@ Click on the different areas to enter strain values.""" ; sc:url "https://github.com/CloudDataLab/CIR-Net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -135082,7 +126431,7 @@ Click on the different areas to enter strain values.""" ; sc:url "https://circ2GO.dkfz.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, edam:topic_3512 ; @@ -135096,7 +126445,7 @@ Click on the different areas to enter strain values.""" ; sc:url "https://github.com/lichen-lab/circMeta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -135118,7 +126467,7 @@ Circular RNAs (circRNAs) are widely expressed in diverse eukaryotic species and sc:url "http://bioinfo.snnu.edu.cn/CircR2Disease/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0749, edam:topic_3474 ; @@ -135133,54 +126482,8 @@ Circular RNAs (circRNAs) are widely expressed in diverse eukaryotic species and sc:name "circRNA" ; sc:url "https://github.com/chl556/Contextual_Regression_for_CircRNA" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0634, - edam:topic_3360, - edam:topic_3474, - edam:topic_3512 ; - sc:citation , - "pubmed:31793982" ; - sc:description """An Efficient Approach based on Multi-sources Information to Predict CircRNA-disease Associations Using Deep Convoltional Neural Network. - -In this project, we propose a novel computational method based on multi-source information combined with deep convolutional neural network to predict circRNA-disease associations. The method first fuses multi-source information including disease semantic similarity, disease Gaussian interaction profile kernel similarity, and circRNA Gaussian interaction profile kernel similarity, and then extracts its hidden deep feature through the convolutional neural network, and finally sends them to the extreme learning machine classifier for prediction. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CircRNA-disease Associations Using Deep Convoltional', 'CircRNA-disease Associations Using', 'CircRNA-disease Associations Using Deep', 'circRNA-disease associations'""" ; - sc:featureList edam:operation_0306, - edam:operation_2492, - edam:operation_3439 ; - sc:name "circRNA-disease" ; - sc:url "https://github.com/look0012/circRNA-Disease-association" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_0659, - edam:topic_3308, - edam:topic_3419, - edam:topic_3512 ; - sc:citation , - "pubmed:31570194" ; - sc:description """The Landscape of Circular RNA Expression in the Human Brain. - -The landscape of circRNA expression in the human brain. - -Gokool et al. Biological Psychiatry (2019). - -Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated in response to neuronal differentiation and depolarisation. These RNA molecules, formed by non-canonical back-splicing, have both regulatory and translational potential. Here, we carried out an extensive characterisation of circRNA expression in the human brain, in nearly two hundred human brain samples, from both healthy individuals and autism cases. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/circRNA. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/genomics_virtual_lab (EDU.AU). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Circular RNA'""" ; - sc:featureList edam:operation_3463, - edam:operation_3792, - edam:operation_3800 ; - sc:name "circRNA_autogenerated" ; - sc:url "http://www.voineagulab.unsw.edu.au/circ_rna" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -135202,7 +126505,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated biotools:primaryContact "Yi Zhao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0634, @@ -135219,19 +126522,68 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "http://clingen.igib.res.in/circad/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; - sc:applicationSubCategory edam:topic_3391 ; - sc:citation ; + sc:applicationSubCategory edam:topic_3391, + edam:topic_3407 ; + sc:citation , + , + "pmcid:PMC9252794", + "pubmed:35657089" ; sc:description "Integrating circadian genomics, transcriptomics, proteomics and metabolomics." ; - sc:featureList edam:operation_2409 ; + sc:featureList edam:operation_2409, + edam:operation_3435, + edam:operation_3436, + edam:operation_3454 ; sc:name "CircadiOmics" ; sc:softwareHelp ; sc:url "http://circadiomics.ics.uci.edu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_3170, + edam:topic_3308, + edam:topic_3320, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8513298", + "pubmed:34645386" ; + sc:description "A fast and accurate methodology for discovery of circular RNAs from paired-end RNA-sequencing data." ; + sc:featureList edam:operation_1812, + edam:operation_3198, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Circall" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.meb.ki.se/sites/biostatwiki/circall" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_3172, + edam:topic_3308, + edam:topic_3518, + edam:topic_3678 ; + sc:citation ; + sc:description "Experimental Design and Power Calculation in Omics Circadian Rhythmicity Detection." ; + sc:featureList edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CircaPower" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/circaPower/circaPower" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, @@ -135251,7 +126603,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "https://github.com/xiaofengsong/CircAST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0659, @@ -135270,26 +126622,22 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3496" ; - sc:name "RNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3496" ], + sc:additionalType "http://edamontology.org/data_3496" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0099 ; sc:citation ; @@ -135302,8 +126650,28 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:softwareHelp ; sc:url "http://www.circbase.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_0659, + edam:topic_3320, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9373444", + "pubmed:35962324" ; + sc:description "Python code for Predicting the Back-Splicing Sites for Circular RNA Formation by Cross-Validation and Convolutional Neural Networks" ; + sc:featureList edam:operation_0253, + edam:operation_3435, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CircCNN" ; + sc:url "https://github.com/szhh521/CircCNN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -135321,7 +126689,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "https://github.com/lxwgcool/CircDBG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -135340,7 +126708,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "http://soft.bioinfo-minzhao.org/circexp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0203, @@ -135359,7 +126727,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "https://github.com/YangLab/CLEAR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654, @@ -135373,7 +126741,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "https://tree-timc.github.io/circhic/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -135398,14 +126766,14 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0848" ; - sc:name "Raw sequence" ; - sc:sameAs "http://edamontology.org/data_0848" ] ; + sc:additionalType "http://edamontology.org/data_0848" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Raw sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3047 ; @@ -135420,8 +126788,31 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "https://github.com/tsailabSJ/circleseq" ; biotools:primaryContact "Shengdar Q. Tsai" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0654, + edam:topic_2640, + edam:topic_3169, + edam:topic_3295 ; + sc:citation , + "pmcid:PMC8728191", + "pubmed:34792166" ; + sc:description "An integrated resource and analysis platform for human eccDNAs." ; + sc:featureList edam:operation_2437, + edam:operation_3435, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:name "CircleBase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://circlebase.maolab.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -135439,7 +126830,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "https://github.com/Peppags/circLGB-circMRT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3391 ; sc:author "Zuguang Gu" ; @@ -135455,7 +126846,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "https://CRAN.R-project.org/package=circlize" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -135470,8 +126861,32 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "https://github.com/smw1414/circlncRNAnet" ; biotools:primaryContact "Bertrand Chin-Ming Tan" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_0780, + edam:topic_3500, + edam:topic_3512, + edam:topic_3794 ; + sc:citation , + "pmcid:PMC9074202", + "pubmed:35524165" ; + sc:description "CircMiMi (circRNA-miRNA-mRNA interactions), a modular, Python-based software to identify circRNA-miRNA-mRNA interactions across 18 species (including 16 animals and 2 plants) with the given coordinates of circRNA junctions." ; + sc:featureList edam:operation_0463, + edam:operation_3216, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CircMiMi" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://circmimi.genomics.sinica.edu.tw/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0108, @@ -135493,7 +126908,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "http://hpcc.siat.ac.cn/circmine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320, @@ -135510,20 +126925,67 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:name "CircMiner" ; sc:url "https://github.com/vpc-ccg/circminer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0659, + edam:topic_0749, + edam:topic_2640, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC8728223", + "pubmed:34850139" ; + sc:description "CircNet 2.0 provides a practical and user-friendly platform on which researchers can explore novel cancer biomarkers and circRNAs related to the pathogenesis, diagnosis, and therapy of malignant and other diseases." ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_0463, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:name "CircNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "2.0" ; + sc:url "https://awi.cuhk.edu.cn/~CircNet" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0659, + edam:topic_3170, + edam:topic_3308, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8769706", + "pubmed:34698333" ; + sc:description "CirComPara2 is a computational pipeline to detect, quantify, and correlate expression of linear and circular RNAs from RNA-seq data that combines multiple circRNA-detection methods." ; + sc:featureList edam:operation_3192, + edam:operation_3216, + edam:operation_3219, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CirComPara2" ; + sc:url "https://github.com/egaffo/CirComPara2" ; + biotools:primaryContact , + . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0797 ; @@ -135539,7 +127001,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated biotools:primaryContact "Martin Krzywinski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0199, @@ -135556,7 +127018,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated biotools:primaryContact "M. Salmon-Divon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0203, @@ -135578,7 +127040,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "https://github.com/SharkoTools/CircParser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0659, @@ -135594,7 +127056,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "http://bis.zju.edu.cn/circplant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0659, @@ -135612,7 +127074,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "http://gyanxet-beta.com/circdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0128, @@ -135629,8 +127091,27 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:name "circRB" ; sc:url "https://github.com/wzf171/circRB" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workbench" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_0749, + edam:topic_3320, + edam:topic_3512, + edam:topic_3794 ; + sc:citation , + "pubmed:35641157" ; + sc:description "circRIP: An accurate tool for identifying circRNA-RBP interaction." ; + sc:featureList edam:operation_3198, + edam:operation_3357, + edam:operation_3901 ; + sc:license "Not licensed" ; + sc:name "circRIP" ; + sc:url "https://github.com/bioinfolabwhu/circRIP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_0769, @@ -135647,7 +127128,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "https://github.com/Aufiero/circRNAprofiler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, edam:topic_3308, @@ -135662,7 +127143,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "https://mulongdu.shinyapps.io/circrnas_in_fluids/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0203, @@ -135681,7 +127162,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated sc:url "https://github.com/johnlcd/CIRCScan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0659, @@ -135700,7 +127181,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated "Tobias Jakobi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation ; @@ -135717,7 +127198,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated biotools:primaryContact "Zdravko Botev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3070, @@ -135734,7 +127215,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated biotools:primaryContact "Philipp Berens" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0654, @@ -135753,7 +127234,7 @@ Circular RNAs (circRNAs) are enriched in the mammalian brain and are upregulated "Zhenqing Ye" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0659, @@ -135774,10 +127255,9 @@ Circular RNAs (circRNAs), the 3' and 5' ends of which are covalently linked, are a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1278" ; - sc:name "Genetic map" ; - sc:sameAs "http://edamontology.org/data_1278" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1278" ; + sc:name "Genetic map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation , @@ -135807,7 +127287,7 @@ Circular RNAs (circRNAs), the 3' and 5' ends of which are covalently linked, are sc:url "http://emboss.open-bio.org/rel/rel6/apps/cirdna.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -135823,8 +127303,30 @@ Circular RNAs (circRNAs), the 3' and 5' ends of which are covalently linked, are sc:name "CIRI-vis" ; sc:url "https://sourceforge.net/projects/ciri/files/CIRI-vis" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_2814, + edam:topic_3398, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8513176", + "pubmed:34641789" ; + sc:description "CirPred is a structure modeling and linker design system for circularly permuted proteins. It is a protein engineering techniques based on a structural rearrangement phenomenon called circular permutation (CP), equivalent to connecting the native termini of a protein followed by creating new termini at another site. Although CP has been applied in many fields, its implementation is still costly because of inevitable trials and errors. Compared with state-of-the-art protein structure modeling methods, CirPred is the only one fully capable of both circularly-permuted modeling and traditional co-linear modeling." ; + sc:featureList edam:operation_0303, + edam:operation_0477, + edam:operation_2476, + edam:operation_4008 ; + sc:name "CirPred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://140.113.120.231/~lab/CirPred/srv/" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -135842,7 +127344,7 @@ Circular RNAs (circRNAs), the 3' and 5' ends of which are covalently linked, are sc:url "http://server.malab.cn/CirRNAPL/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:description "CISA has been developed to integrate the assemblies into a hybrid set of contigs, resulting in assemblies of superior contiguity and accuracy, compared with the assemblies generated by the state-of-the-art assemblers and the hybrid assemblies merged by existing tools." ; @@ -135854,7 +127356,7 @@ Circular RNAs (circRNAs), the 3' and 5' ends of which are covalently linked, are sc:url "http://sb.nhri.org.tw/CISA/en/CISA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3169, @@ -135875,7 +127377,7 @@ Circular RNAs (circRNAs), the 3' and 5' ends of which are covalently linked, are "Wing Hung Wong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0749, @@ -135894,7 +127396,7 @@ Circular RNAs (circRNAs), the 3' and 5' ends of which are covalently linked, are biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -135915,7 +127417,7 @@ Circular RNAs (circRNAs), the 3' and 5' ends of which are covalently linked, are biotools:primaryContact "Webmaster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -135935,7 +127437,7 @@ Circular RNAs (circRNAs), the 3' and 5' ends of which are covalently linked, are biotools:primaryContact "Likun Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0621, @@ -135954,7 +127456,7 @@ Circular RNAs (circRNAs), the 3' and 5' ends of which are covalently linked, are biotools:primaryContact "Questions or comments" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -135975,7 +127477,7 @@ Circular RNAs (circRNAs), the 3' and 5' ends of which are covalently linked, are biotools:primaryContact "Alan Moses" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:description "CIST (Confidence Intervals for SAGE Tags )is a Windows program for the analysis of gene expression data generated using SAGE (Serial Analysis of Gene Expression)." ; @@ -135986,14 +127488,14 @@ Circular RNAs (circRNAs), the 3' and 5' ends of which are covalently linked, are a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3424" ; - sc:name "Raw image" ; - sc:sameAs "http://edamontology.org/data_3424" ] ; + sc:additionalType "http://edamontology.org/data_3424" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Raw image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1710" ; - sc:name "Structure image" ; - sc:sameAs "http://edamontology.org/data_1710" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1710" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Structure image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0092, @@ -136013,7 +127515,7 @@ Circular RNAs (circRNAs), the 3' and 5' ends of which are covalently linked, are biotools:primaryContact "Timothy Grant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, edam:topic_2229, @@ -136031,7 +127533,7 @@ cisTopic v3: Faster topic modelling based on WarpLDA (see vignettes for details) sc:url "http://github.com/aertslab/cistopic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, @@ -136052,7 +127554,7 @@ cisTopic v3: Faster topic modelling based on WarpLDA (see vignettes for details) biotools:primaryContact "Myles Brown Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3298, @@ -136072,7 +127574,7 @@ cisTopic v3: Faster topic modelling based on WarpLDA (see vignettes for details) biotools:primaryContact "Joshua Millstein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3068, @@ -136089,7 +127591,7 @@ cisTopic v3: Faster topic modelling based on WarpLDA (see vignettes for details) sc:url "https://citation.js.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -136108,7 +127610,7 @@ cisTopic v3: Faster topic modelling based on WarpLDA (see vignettes for details) sc:url "https://www.citdbase.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0625, @@ -136127,22 +127629,20 @@ cisTopic v3: Faster topic modelling based on WarpLDA (see vignettes for details) a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1187" ; - sc:name "PubMed ID" ; - sc:sameAs "http://edamontology.org/data_1187" ], + sc:additionalType "http://edamontology.org/data_1187" ; + sc:name "PubMed ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1187" ; - sc:name "PubMed ID" ; - sc:sameAs "http://edamontology.org/data_1187" ] ; + sc:additionalType "http://edamontology.org/data_1187" ; + sc:name "PubMed ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3505" ; - sc:name "Bibliography" ; - sc:sameAs "http://edamontology.org/data_3505" ], + sc:additionalType "http://edamontology.org/data_3505" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Bibliography" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3505" ; - sc:name "Bibliography" ; - sc:sameAs "http://edamontology.org/data_3505" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3505" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Bibliography" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3068 ; sc:citation ; @@ -136156,24 +127656,46 @@ cisTopic v3: Faster topic modelling based on WarpLDA (see vignettes for details) sc:url "http://www.ebi.ac.uk/web_guidelines/html/mitigation/frontier_test_02.html" ; biotools:primaryContact "Help desk" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0203, + edam:topic_0602, + edam:topic_3068 ; + sc:citation , + "pmcid:PMC8948830", + "pubmed:35328768" ; + sc:description "CITL (Causal inference with time-lagged information) that infer the time-lagged causality of genes using scRNA-seq data" ; + sc:featureList edam:operation_1781, + edam:operation_2437, + edam:operation_3625 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CITL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/wJDKnight/CITL-Rpackage" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3756" ; - sc:name "Localisation score" ; - sc:sameAs "http://edamontology.org/data_3756" ], + sc:additionalType "http://edamontology.org/data_3756" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Localisation score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Mass spectrum" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -136198,31 +127720,8 @@ cisTopic v3: Faster topic modelling based on WarpLDA (see vignettes for details) sc:url "https://github.com/Citrullia-SDU/Citrullia" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_0602, - edam:topic_0780, - edam:topic_3512, - edam:topic_3810 ; - sc:citation ; - sc:description """Chromosomal length reference assembly for Diaphorina citri using single-molecule sequencing and Hi-C proximity ligation with manually curated genes in developmental, structural and immune pathways. - -This site uses cookies to provide logins and other features. Please accept the use of cookies by clicking Accept. - -The citrus hosts infected by Huanglongbing or yellow dragon disease. - -The citrus greening disease (also called huanglongbing) has devastated the Florida citrus industry, and is now in CA and TX. Fruit from infected trees is safe to eat, but production is reduced so much that citrus may cease to be inexpensive and broadly available. If you are a citrus lover you should know that massive research efforts, including this project, are underway to keep citrus affordable and plentiful. See impact on US production.. - -The Asian citrus psyllid is a sap-sucking, hemipteran bug in the family Psyllidae. The new v2.0 genome is online!""" ; - sc:featureList edam:operation_0524, - edam:operation_0525, - edam:operation_3192, - edam:operation_3216 ; - sc:name "citrus greening" ; - sc:url "https://citrusgreening.org/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -136254,7 +127753,7 @@ Having trouble viewing events on the calendar?""" ; sc:url "https://citrusgreening.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, edam:topic_2885, @@ -136271,7 +127770,7 @@ Having trouble viewing events on the calendar?""" ; sc:url "http://bioinfo.deinfo.uepg.br/citrus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0625, @@ -136289,7 +127788,7 @@ Having trouble viewing events on the calendar?""" ; sc:url "https://cran.r-project.org/package=CKAT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -136312,7 +127811,7 @@ Having trouble viewing events on the calendar?""" ; "Yanxia Jiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0769, @@ -136329,7 +127828,7 @@ Having trouble viewing events on the calendar?""" ; sc:url "https://github.com/MannLabs/CKG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, edam:topic_2640, @@ -136350,7 +127849,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:url "http://cki.ccs.miami.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0659, @@ -136368,7 +127867,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:url "http://www.ckttdb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -136388,8 +127887,47 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:url "http://cladeoscope.cs.huji.ac.il" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2830, + edam:topic_3343 ; + sc:citation , + "pmcid:PMC9131445", + "pubmed:35442032" ; + sc:description "A tool for investigating the impact of labelled ligand affinity in competition experiments." ; + sc:featureList edam:operation_0337, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CLAffinity" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/stevenshave/competition-label-affinity" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workbench" ; + sc:applicationSubCategory edam:topic_3382, + edam:topic_3570 ; + sc:citation , + "pmcid:PMC8923611", + "pubmed:35295546" ; + sc:description "CLAIRE stands for Constrained Large Deformation Diffeomorphic Image Registration. It is a C/C++ software package for velocity-based diffeomorphic image registration in three dimensions." ; + sc:featureList edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CLAIRE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/andreasmang/claire" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -136406,8 +127944,24 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:url "https://github.com/Gaius-Augustus/clamsa" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0194 ; + sc:citation , + "pubmed:15374874" ; + sc:description "Constructing consensus trees and supertrees from multiple source trees" ; + sc:featureList edam:operation_3947 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "Clann" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ChrisCreevey/clann" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -136426,7 +127980,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact "Michal Linial" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0736, @@ -136445,7 +127999,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact "N. Srinivasan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2229, @@ -136462,7 +128016,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:url "https://clara.baker.edu.au" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, @@ -136481,16 +128035,37 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:softwareHelp ; sc:url "https://github.com/HallLab/clarite-python" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_3295, + edam:topic_3299 ; + sc:citation , + "pmcid:PMC8652278", + "pubmed:34909208" ; + sc:description "Clarity: An R package for Comparing SimiLARITY Matrices and comparing heterogeneous data using dissimilarity." ; + sc:featureList edam:operation_0337, + edam:operation_3432, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CLARITY" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/danjlawson/CLARITY" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -136507,7 +128082,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact "Stefano Lonardi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3301 ; sc:description "Clarke EGA quantifies the accuracy of glucose estimates generated by meters as compared to reference" ; @@ -136520,8 +128095,30 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:url "https://www.mathworks.com/matlabcentral/fileexchange/20545-clarke-error-grid-analysis" ; biotools:primaryContact "Edgar Guevara" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0659, + edam:topic_3170, + edam:topic_3512, + edam:topic_3794 ; + sc:citation , + "pmcid:PMC8788457", + "pubmed:35076587" ; + sc:description "A Web Server to Identify In Vivo RNA-RNA Interactions from CLASH Data." ; + sc:featureList edam:operation_0322, + edam:operation_3192, + edam:operation_3219 ; + sc:isAccessibleForFree true ; + sc:name "CLASH Analyst" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cosbi7.ee.ncku.edu.tw/CLASHanalyst/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0102, @@ -136536,7 +128133,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:url "http://www.bioinf.uni-leipzig.de/Software/clasp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3379, @@ -136554,8 +128151,31 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:url "https://imperfect-gold-standard.shinyapps.io/classification-noise/" ; biotools:primaryContact "Leo C. McHugh" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workbench" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_2640, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC8974006", + "pubmed:35361119" ; + sc:description "classifieR a flexible interactive cloud-application for functional annotation of cancer transcriptomes." ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_2436 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "classifieRc" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://generatr.qub.ac.uk/app/classifieRc" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3304, @@ -136569,7 +128189,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:url "https://brainlife.io/app/5d6fcae439867216d8496442" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0769, @@ -136585,7 +128205,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:url "https://github.com/Genotek/ClassifyCNV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -136604,7 +128224,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact "Dario Strbenac" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0637, @@ -136621,44 +128241,57 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact , . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "CLBTope: Conformational and linear B-cell epitope prediction" ; + sc:featureList edam:operation_2945 ; + sc:name "clbtope" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/clbtope/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3284" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_3693" ; + sc:name "Sequence assembly" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168 ; @@ -136678,18 +128311,18 @@ CKI - Dark Kinase Knaowledgebase App.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -136707,18 +128340,18 @@ CKI - Dark Kinase Knaowledgebase App.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -136736,18 +128369,18 @@ CKI - Dark Kinase Knaowledgebase App.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168 ; @@ -136767,14 +128400,14 @@ CKI - Dark Kinase Knaowledgebase App.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -136791,26 +128424,26 @@ CKI - Dark Kinase Knaowledgebase App.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168 ; @@ -136830,26 +128463,26 @@ CKI - Dark Kinase Knaowledgebase App.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168 ; @@ -136869,22 +128502,22 @@ CKI - Dark Kinase Knaowledgebase App.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168 ; @@ -136905,14 +128538,14 @@ CKI - Dark Kinase Knaowledgebase App.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -136930,18 +128563,18 @@ CKI - Dark Kinase Knaowledgebase App.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -136958,7 +128591,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -136989,7 +128622,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -137003,7 +128636,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:url "http://genome.ucf.edu/fly3UTRcluster/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0114, @@ -137021,7 +128654,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact "Michael Boutros" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -137037,38 +128670,38 @@ CKI - Dark Kinase Knaowledgebase App.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071, @@ -137087,7 +128720,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -137103,7 +128736,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact "Clean_reads team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0632, @@ -137120,7 +128753,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:url "https://cran.r-project.org/web/packages/CleanBSequences/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3518 ; @@ -137138,22 +128771,20 @@ CKI - Dark Kinase Knaowledgebase App.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2710" ; - sc:name "CleanEx dataset code" ; - sc:sameAs "http://edamontology.org/data_2710" ], + sc:additionalType "http://edamontology.org/data_2709" ; + sc:name "CleanEx entry name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2709" ; - sc:name "CleanEx entry name" ; - sc:sameAs "http://edamontology.org/data_2709" ] ; + sc:additionalType "http://edamontology.org/data_2710" ; + sc:name "CleanEx dataset code" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ], + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Experiment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene expression profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623, edam:topic_3308 ; @@ -137170,18 +128801,18 @@ CKI - Dark Kinase Knaowledgebase App.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -137198,7 +128829,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -137219,8 +128850,28 @@ CKI - Dark Kinase Knaowledgebase App.""" ; "Lihua Julie Zhu", "Sarah Sheppard" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_3168, + edam:topic_3512, + edam:topic_3958 ; + sc:citation , + "pubmed:35751599" ; + sc:description "ClearCNV - CNV analysis in the presence of ambiguity and noise" ; + sc:featureList edam:operation_0337, + edam:operation_3960, + edam:operation_3961 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "clearCNV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bihealth/clear-cnv" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659 ; @@ -137234,7 +128885,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact "Mike Axtell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3510 ; @@ -137252,7 +128903,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact "Sebastian Gibb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0821, edam:topic_3510, @@ -137271,7 +128922,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3308, edam:topic_3474, @@ -137287,7 +128938,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:url "https://github.com/hybrid-kg/clep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0623, @@ -137310,7 +128961,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact "Taegyun Yun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0099, @@ -137331,7 +128982,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; "Sarah E. Calvo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -137352,7 +129003,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact "Click Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0154, @@ -137369,7 +129020,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:url "https://github.com/Yujie-S/Click-ExM_data_process_and_example" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0121, @@ -137387,7 +129038,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; biotools:primaryContact "Vincent Zoete" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3383, @@ -137403,38 +129054,34 @@ CKI - Dark Kinase Knaowledgebase App.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2319" ; - sc:name "Cell line name (no punctuation)" ; - sc:sameAs "http://edamontology.org/data_2319" ], + sc:additionalType "http://edamontology.org/data_2317" ; + sc:name "Cell line name (exact)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2320" ; - sc:name "Cell line name (assonant)" ; - sc:sameAs "http://edamontology.org/data_2320" ], + sc:additionalType "http://edamontology.org/data_2319" ; + sc:name "Cell line name (no punctuation)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2318" ; - sc:name "Cell line name (truncated)" ; - sc:sameAs "http://edamontology.org/data_2318" ], + sc:additionalType "http://edamontology.org/data_2320" ; + sc:name "Cell line name (assonant)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2317" ; - sc:name "Cell line name (exact)" ; - sc:sameAs "http://edamontology.org/data_2317" ] ; + sc:additionalType "http://edamontology.org/data_2318" ; + sc:name "Cell line name (truncated)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0963" ; - sc:name "Cell line report" ; - sc:sameAs "http://edamontology.org/data_0963" ], + sc:additionalType "http://edamontology.org/data_0963" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Cell line report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0963" ; - sc:name "Cell line report" ; - sc:sameAs "http://edamontology.org/data_0963" ], + sc:additionalType "http://edamontology.org/data_0963" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Cell line report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0963" ; - sc:name "Cell line report" ; - sc:sameAs "http://edamontology.org/data_0963" ], + sc:additionalType "http://edamontology.org/data_0963" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Cell line report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0963" ; - sc:name "Cell line report" ; - sc:sameAs "http://edamontology.org/data_0963" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0963" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Cell line report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2229 ; sc:citation ; @@ -137451,18 +129098,16 @@ CKI - Dark Kinase Knaowledgebase App.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1691" ; - sc:name "Email address" ; - sc:sameAs "http://edamontology.org/data_1691" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_2892" ; + sc:name "Cell type name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2892" ; - sc:name "Cell type name" ; - sc:sameAs "http://edamontology.org/data_2892" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1691" ; + sc:name "Email address" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_2815, @@ -137487,7 +129132,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; "Barbara Parodi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0102, @@ -137498,8 +129143,29 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:name "CLIN-IK-LINKS" ; sc:url "http://keg.act.uji.es/demoCLINIKLINKS/home.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0749, + edam:topic_0769, + edam:topic_3050, + edam:topic_3056 ; + sc:citation , + "pmcid:PMC8520269", + "pubmed:34656096" ; + sc:description "ClineHelpR is an R package for genomic cline outlier detection and visualization. ClineHelpR allows you to plot BGC (Bayesian Genomic Cline) output." ; + sc:featureList edam:operation_0337, + edam:operation_1812, + edam:operation_3799, + edam:operation_3946 ; + sc:license "GPL-3.0" ; + sc:name "ClineHelpR" ; + sc:softwareHelp ; + sc:url "https://github.com/btmartin721/ClineHelpR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -137517,7 +129183,7 @@ CKI - Dark Kinase Knaowledgebase App.""" ; sc:url "http://github.com/btmartin721/ClinePlotR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0659, @@ -137535,7 +129201,7 @@ Identification and characterization of lncRNAs in cancer with a view to their ap sc:url "http://bio-bigdata.hrbmu.edu.cn/cling/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0219, @@ -137551,7 +129217,7 @@ Identification and characterization of lncRNAs in cancer with a view to their ap biotools:primaryContact "Helio Costa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0199, @@ -137576,7 +129242,7 @@ Identification and characterization of lncRNAs in cancer with a view to their ap sc:url "http://calculator.clinicalgenome.org/site/cg-calculator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Workbench" ; @@ -137605,7 +129271,7 @@ Clinica is command-line driven and written in Python. It uses the Nipype system sc:url "http://www.clinica.run" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -137618,7 +129284,7 @@ Clinica is command-line driven and written in Python. It uses the Nipype system sc:url "https://github.com/NLPIE/clinical-sentences" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168, @@ -137639,14 +129305,12 @@ Clinica is command-line driven and written in Python. It uses the Nipype system a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3558" ; - sc:name "Clinical trial report" ; - sc:sameAs "http://edamontology.org/data_3558" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3558" ; + sc:name "Clinical trial report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3077 ; sc:citation ; @@ -137658,7 +129322,7 @@ Clinica is command-line driven and written in Python. It uses the Nipype system biotools:primaryContact "Benjamin Braasch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3374, @@ -137678,7 +129342,7 @@ Clinica is command-line driven and written in Python. It uses the Nipype system biotools:primaryContact "Christopher Naugler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0602, edam:topic_0769, @@ -137703,7 +129367,7 @@ clustermap.js is an interactive, reusable d3 chart designed to visualise homolog sc:url "http://github.com/gamcil/clinker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3379, @@ -137721,18 +129385,18 @@ clustermap.js is an interactive, reusable d3 chart designed to visualise homolog a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_1063" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1063" ; - sc:name "Sequence identifier" ; - sc:sameAs "http://edamontology.org/data_1063" ] ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3063 ; @@ -137749,7 +129413,7 @@ clustermap.js is an interactive, reusable d3 chart designed to visualise homolog sc:url "https://github.com/rbutleriii/Clinotator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3393 ; @@ -137767,7 +129431,7 @@ clustermap.js is an interactive, reusable d3 chart designed to visualise homolog biotools:primaryContact "Ram Vinay Pandey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, @@ -137789,7 +129453,7 @@ clustermap.js is an interactive, reusable d3 chart designed to visualise homolog sc:url "https://github.com/KCCG/ClinSV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Python package for the analysis of trajectories in clinical data" ; sc:license "LGPL-2.1" ; @@ -137797,7 +129461,7 @@ clustermap.js is an interactive, reusable d3 chart designed to visualise homolog sc:url "https://github.com/auranic/ClinTrajan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -137806,8 +129470,11 @@ clustermap.js is an interactive, reusable d3 chart designed to visualise homolog edam:topic_3063, edam:topic_3325 ; sc:citation , + , "pmcid:PMC3965032", - "pubmed:24234437" ; + "pmcid:PMC5753237", + "pubmed:24234437", + "pubmed:29165669" ; sc:description "A freely accessible, public archive of reports of relationships among medically important variants and phenotypes hosted by the NCBI. It integrates and cross-references data from multiple databases at NCBI. In addition to dbSNP and dbVar, it depends on MedGen to represent phenotype, Gene to represent genes, and on human RefSeqs to represent the location of sequence variation. Each record represents the submitter, the variation and the phenotype." ; sc:featureList edam:operation_0224, edam:operation_3197, @@ -137823,7 +129490,7 @@ clustermap.js is an interactive, reusable d3 chart designed to visualise homolog biotools:primaryContact "Donna R. Maglott" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -137849,7 +129516,7 @@ clustermap.js is an interactive, reusable d3 chart designed to visualise homolog biotools:primaryContact "Mohamed Uduman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -137866,7 +129533,7 @@ clustermap.js is an interactive, reusable d3 chart designed to visualise homolog sc:url "https://github.com/wwylab/CliP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation ; @@ -137877,7 +129544,7 @@ clustermap.js is an interactive, reusable d3 chart designed to visualise homolog biotools:primaryContact "Masao Nagasaki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121 ; @@ -137896,7 +129563,7 @@ clustermap.js is an interactive, reusable d3 chart designed to visualise homolog biotools:primaryContact "Stephen Nyangoma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085 ; sc:citation , @@ -137916,7 +129583,7 @@ clustermap.js is an interactive, reusable d3 chart designed to visualise homolog biotools:primaryContact "Chiara Romualdi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_3169, @@ -137933,7 +129600,7 @@ A p-value-free method for controlling false discovery rates in high-throughput b sc:url "https://github.com/JSB-UCLA/Clipper/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, @@ -137953,7 +129620,7 @@ A p-value-free method for controlling false discovery rates in high-throughput b sc:url "https://github.com/ulelab/clipplotr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0601, @@ -137973,7 +129640,7 @@ A p-value-free method for controlling false discovery rates in high-throughput b sc:url "https://github.com/loolab2020/ClipsMS-Version-1.0.0" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, edam:topic_3175 ; @@ -137988,7 +129655,7 @@ A p-value-free method for controlling false discovery rates in high-throughput b sc:url "https://github.com/ChongLab/ClipSV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -138009,8 +129676,30 @@ A p-value-free method for controlling false discovery rates in high-throughput b sc:url "http://www.clipz.unibas.ch" ; biotools:primaryContact "Mihaela Zavolan" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Workflow" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0623, + edam:topic_0820, + edam:topic_2229, + edam:topic_3293 ; + sc:citation , + "pmcid:PMC8893610", + "pubmed:35239724" ; + sc:description "“Cliquely” is a tool that discovers protein-protein interaction networks by identifying proteins that are functionally linked to each other." ; + sc:featureList edam:operation_3094, + edam:operation_3432, + edam:operation_3900 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Cliquely" ; + sc:operatingSystem "Windows" ; + sc:url "https://github.com/NoamAndRoy/Cliquely" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0634, edam:topic_0769, @@ -138030,7 +129719,7 @@ CLIR - Collaborative Laboratory Integrated Reports.""" ; sc:url "https://clir.mayo.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3344, @@ -138047,7 +129736,7 @@ CLIR - Collaborative Laboratory Integrated Reports.""" ; biotools:primaryContact "Emad Mohammed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2269, @@ -138065,8 +129754,27 @@ COLORS is more effcient than PSICOV, mfDCA and plmDCA.""" ; sc:name "clmDCA" ; sc:url "http://protein.ict.ac.cn/clmDCA/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0769, + edam:topic_3174, + edam:topic_3474, + edam:topic_3697 ; + sc:citation ; + sc:description "Contrastive Learning framework for Metagenome Binning (CLMB) is a framework for metagenomic binning. The basic idea of the CLMB module is that, since the noise of real dataset is hard to calculate, we add simulated noise to the data and force the training to be robustto them. By effectively tacking the noise in the metagenomics data using the contrastive deep learning framework, it is possible to group pairs of contigs that originate from the same type of bacterial together while dividing contigs from different species to different bins." ; + sc:featureList edam:operation_0310, + edam:operation_3432, + edam:operation_3798, + edam:operation_3935 ; + sc:license "MIT" ; + sc:name "CLMB" ; + sc:url "https://github.com/zpf0117b/CLMB/" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3068, edam:topic_3386 ; @@ -138087,26 +129795,28 @@ Estimation and inference for linear models where some or all of the fixed-effect sc:name "CLME" ; sc:url "https://CRAN.R-project.org/package=CLME" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0654, - edam:topic_3295, - edam:topic_3518 ; - sc:citation ; - sc:description """An epigenetic clock for human skeletal muscle. - -Abstract Background Ageing is associated with DNA methylation changes in all human tissues, and epigenetic markers can estimate chronological age based on DNA methylation patterns across tissues. However, the construction of the original pan-tissue epigenetic clock did not include skeletal muscle samples, and hence exhibited a strong deviation between DNA methylation and chronological age in this tissue. Methods To address this, we developed a more accurate, muscle-specific epigenetic clock based on the genome-wide DNA methylation data of 682 skeletal muscle samples from 12 independent datasets (18-89 years old, 22% women, 99% Caucasian), all generated with Illumina HumanMethylation arrays (HM27, HM450 or HMEPIC). - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'MEAT', 'pan-tissue clock', 'muscle clock', 'muscle'""" ; - sc:featureList edam:operation_0417, - edam:operation_2436, - edam:operation_3207 ; - sc:name "clock" ; - sc:url "https://doi.org/10.1101/821009" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script", + "Web application" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0621, + edam:topic_0634 ; + sc:citation , + "pubmed:35997565" ; + sc:description "A deep learning model to predict CTCF-mediated chromatin loops in the different cell lines and CTCF-binding sites (CBS) pair types." ; + sc:featureList edam:operation_0481 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CLNN-loop" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://hwclnn.sdu.edu.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3305, @@ -138121,14 +129831,14 @@ Abstract Background Ageing is associated with DNA methylation changes in all hum a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1622" ; - sc:name "Disease report" ; - sc:sameAs "http://edamontology.org/data_1622" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1622" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Disease report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -138151,7 +129861,7 @@ Abstract Background Ageing is associated with DNA methylation changes in all hum biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, edam:topic_0084, @@ -138169,18 +129879,18 @@ Abstract Background Ageing is associated with DNA methylation changes in all hum a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1622" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Disease report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1622" ; - sc:name "Disease report" ; - sc:sameAs "http://edamontology.org/data_1622" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -138200,7 +129910,7 @@ Abstract Background Ageing is associated with DNA methylation changes in all hum biotools:primaryContact "Irina Ostrovnaya" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -138217,7 +129927,7 @@ Abstract Background Ageing is associated with DNA methylation changes in all hum sc:url "http://code.google.com/p/clonalorigin/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, edam:topic_2640, @@ -138231,7 +129941,7 @@ Abstract Background Ageing is associated with DNA methylation changes in all hum sc:url "https://github.com/elkebir-group/ClonArch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0749, edam:topic_3341, @@ -138252,7 +129962,7 @@ CLoNe is a clustering algorithm with highly general applicability. Based on the sc:url "http://www.epfl.ch/labs/lbm/resources" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102 ; @@ -138268,7 +129978,7 @@ CLoNe is a clustering algorithm with highly general applicability. Based on the sc:url "http://bioinformatics.lif.univ-mrs.fr/RNAiMap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0804, @@ -138288,7 +129998,7 @@ CLoNe is a clustering algorithm with highly general applicability. Based on the biotools:primaryContact "Anke Fähnrich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2229, edam:topic_2830, @@ -138312,7 +130022,7 @@ Single Clonotype Search Search Multiple Clonotypes From File.""" ; sc:url "https://github.com/crowelab/clonomatch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -138330,26 +130040,31 @@ Single Clonotype Search Search Multiple Clonotypes From File.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/clonotypeR.html" ; biotools:primaryContact "Charles Plessy" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3304, - edam:topic_3384 ; - sc:citation ; - sc:description """A framework for closed-loop neurofeedback for real-time EEG decoding. - -Framework for building a closed loop neurofeedback system. - -Closed-Loop EEG Neurofeedback System. - -The system requires images for the visual paradigm (see Stimuli). The recorded EEG data will be saved in the \\ClosedLoop\\subjectsData folder (see “Saving data”). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'neurofeedback', 'EEG', 'scalp', 'decoding'""" ; - sc:featureList edam:operation_3799 ; - sc:name "closed-loop" ; - sc:url "https://github.com/gretatuckute/ClosedLoop/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0204, + edam:topic_0749, + edam:topic_3169, + edam:topic_3315 ; + sc:citation , + "pmcid:PMC8754654", + "pubmed:34928392" ; + sc:description "cLoops2: full stack analysis tool for chromatin interactions." ; + sc:featureList edam:operation_2939, + edam:operation_3436, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "cLoops2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/KejiZhaoLab/cLoops2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0749, @@ -138362,7 +130077,7 @@ The system requires images for the visual paradigm (see Stimuli). The recorded E sc:url "https://github.com/gretatuckute/ClosedLoop/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3334, edam:topic_3360, @@ -138376,7 +130091,7 @@ Targeted interrogation of brain networks through invasive brain stimulation has sc:url "https://github.com/Center-For-Neurotechnology/CLoSES-SEM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0199, @@ -138397,7 +130112,7 @@ Targeted interrogation of brain networks through invasive brain stimulation has biotools:primaryContact "ClotBase Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0202, edam:topic_3336, @@ -138414,7 +130129,7 @@ The Cloud 3D-QSAR Server is developed to help running 3D-QSAR jobs by submitting sc:url "http://chemyang.ccnu.edu.cn/ccb/server/cloud3dQSAR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -138430,7 +130145,7 @@ The Cloud 3D-QSAR Server is developed to help running 3D-QSAR jobs by submitting sc:url "http://cab.spbu.ru/software/spades/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation "pubmed:21645377" ; @@ -138444,7 +130159,7 @@ The Cloud 3D-QSAR Server is developed to help running 3D-QSAR jobs by submitting biotools:primaryContact "Nguyen T" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, edam:topic_2885, @@ -138471,7 +130186,7 @@ To be able use CloudASM, you need to create an account on https://cloud.google.c sc:url "https://console.cloud.google.com/storage/browser/cloudasm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3316, @@ -138490,7 +130205,7 @@ To be able use CloudASM, you need to create an account on https://cloud.google.c sc:url "https://github.com/gvlproject/cloudbridge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3577 ; @@ -138506,7 +130221,7 @@ To be able use CloudASM, you need to create an account on https://cloud.google.c biotools:primaryContact "Schatz MC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3444, @@ -138522,7 +130237,7 @@ To be able use CloudASM, you need to create an account on https://cloud.google.c sc:url "https://cloudreg.neurodata.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, edam:topic_3168 ; @@ -138539,8 +130254,23 @@ Clover is a clustering-oriented de novo assembler for Illumina sequences, which sc:name "Clover" ; sc:url "https://oz.nthu.edu.tw/~d9562563/src.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Library" ; + sc:applicationSubCategory edam:topic_0654 ; + sc:citation , + "pubmed:35975958" ; + sc:description "An Efficient DNA Clustering algorithm based on Tree Structure." ; + sc:featureList edam:operation_2422, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Clover" ; + sc:url "https://github.com/Guanjinqu/Clover" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2828, @@ -138552,8 +130282,20 @@ Clover is a clustering-oriented de novo assembler for Illumina sequences, which sc:name "CLPred" ; sc:url "https://github.com/xuanwenjing/CLPred" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_3382 ; + sc:citation , + "pubmed:35294359" ; + sc:description "Pruning Networks With Cross-Layer Ranking & k-Reciprocal Nearest Filters." ; + sc:featureList edam:operation_3695 ; + sc:license "Not licensed" ; + sc:name "CLR-RNF" ; + sc:url "https://github.com/lmbxmu/CLR-RNF" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474, edam:topic_3810 ; @@ -138571,7 +130313,7 @@ The proposed CLRS data set consists of 15,000 remote sensing images divided into sc:url "https://github.com/lehaifeng/CLRS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -138590,7 +130332,7 @@ The proposed CLRS data set consists of 15,000 remote sensing images divided into biotools:primaryContact "Noah Hoffman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0637 ; @@ -138608,7 +130350,7 @@ The proposed CLRS data set consists of 15,000 remote sensing images divided into biotools:primaryContact "Noah Hoffman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0769, edam:topic_3168, @@ -138625,7 +130367,7 @@ Choose the library format of your file.""" ; sc:url "http://www.crispr-clue.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3068, edam:topic_3570 ; @@ -138638,7 +130380,7 @@ Choose the library format of your file.""" ; sc:url "https://github.com/pogudingleb/CLUE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -138653,7 +130395,7 @@ Choose the library format of your file.""" ; sc:url "http://clumpak.tau.ac.il/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3398, edam:topic_3474, @@ -138666,7 +130408,7 @@ Choose the library format of your file.""" ; sc:url "https://github.com/MdOchiuddinMiah/MI-BCI_ML" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0123, @@ -138692,7 +130434,7 @@ Choose the library format of your file.""" ; biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0622, @@ -138711,14 +130453,14 @@ Choose the library format of your file.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0080, @@ -138746,14 +130488,14 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -138770,14 +130512,14 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -138804,19 +130546,20 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Des Higgins", - "Web Production" ; - sc:citation ; + "Job Dispatcher" ; + sc:citation , + ; sc:description "Multiple sequence alignment using guide trees and HMM profile-profile techniques." ; sc:featureList edam:operation_0492 ; sc:name "Clustal Omega (EBI)" ; @@ -138829,18 +130572,18 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/msa/clustalo/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Align two or more protein sequences on the UniProt web site using ClustalOmega." ; @@ -138854,14 +130597,14 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -138878,14 +130621,14 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0080 ; @@ -138909,14 +130652,12 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Des Higgins", @@ -138938,14 +130679,12 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3293 ; sc:author "Des Higgins", @@ -138967,14 +130706,14 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1949" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Command-line tool", "Web API", @@ -138996,14 +130735,14 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "ClustalW is a general purpose multiple sequence alignment program for DNA or proteins" ; @@ -139016,30 +130755,8 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C sc:url "http://npsa-pbil.ibcp.fr/cgi-bin/npsa_automat.pl?page=npsa_clustalw.html" ; biotools:primaryContact "Gilbert Deleage" . - a sc:SoftwareApplication ; - bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Web application" ; - sc:applicationSubCategory edam:topic_0080 ; - sc:description "Multiple alignment of nucleic acid and protein sequences." ; - sc:featureList edam:operation_0492 ; - sc:name "ClustalW (SIB)" ; - sc:operatingSystem "Linux", - "Mac", - "Windows" ; - sc:softwareHelp ; - sc:url "http://embnet.vital-it.ch/software/ClustalW.html" ; - biotools:primaryContact "Vital-IT Support" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3321 ; @@ -139057,7 +130774,7 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C biotools:primaryContact "Aurora Torrente" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154, @@ -139072,38 +130789,28 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C sc:url "https://github.com/svalkiers/clustcr" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_0659 ; - sc:citation , - "pmcid:PMC6755151", - "pubmed:31432119" ; - sc:description "> LOW CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/clusterprofiler (BIOCONDUCTOR.ORG/packages/release/bioc/html/clusterProfiler.html) | > CORRECT NAME OF TOOL COULD ALSO BE 'pheatmap' (bio.tools/pheatmap), 'limma' (bio.tools/limma), 'injury treadmill', 'treadmill' | MAP‑1B, PACS‑2 and AHCYL1 are regulated by miR‑34A/B/C and miR‑449 in neuroplasticity following traumatic spinal cord injury in rats | statistical analysis and visualization of functional profiles for genes and gene clusters | This package implements methods to analyze and visualize functional profiles (GO and KEGG) of gene and gene clusters | Annotation, Clustering, GO, GeneSetEnrichment, KEGG, MultipleComparison, Pathways, Reactome, Software, Visualization" ; - sc:featureList edam:operation_0277, - edam:operation_0313, - edam:operation_3439 ; - sc:license "Artistic-2.0" ; - sc:name "clusterProfile" ; - sc:url "http://bioconductor.org/packages/release/bioc/html/clusterProfiler.html" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_2830 ; - sc:citation , - "pmcid:PMC6676656", - "pubmed:31452735" ; - sc:description "> VERY_LOW CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/clusterprofiler | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/clusterprofiler (BIOCONDUCTOR.ORG/packages/release/bioc/html/clusterProfiler.html) | > CORRECT NAME OF TOOL COULD ALSO BE 'HTR1D TIMP1 SERPINE1 MMP3 CNR2', 'TIMP1 SERPINE1 MMP3 CNR2', 'HTR1D TIMP1 SERPINE1 MMP3', 'HTR1D TIMP1 SERPINE1' | HTR1D, TIMP1, SERPINE1, MMP3 and CNR2 affect the survival of patients with colon adenocarcinoma | statistical analysis and visualization of functional profiles for genes and gene clusters | This package implements methods to analyze and visualize functional profiles (GO and KEGG) of gene and gene clusters | Annotation, Clustering, GO, GeneSetEnrichment, KEGG, MultipleComparison, Pathways, Reactome, Software, Visualization" ; - sc:featureList edam:operation_0313, - edam:operation_0533, - edam:operation_3501 ; - sc:license "Artistic-2.0" ; - sc:name "clusterProfiler_autogenerated" ; - sc:url "http://www.bioconductor.org/packages/release/bioc/html/clusterProfiler.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3293, + edam:topic_3305 ; + sc:citation , + "pmcid:PMC9214145", + "pubmed:35769891" ; + sc:description "A interactive web-based tool to facilitate effective and intuitive SARS-CoV-2 geographic data exploration and visualization across the USA." ; + sc:featureList edam:operation_3431, + edam:operation_3432, + edam:operation_3478 ; + sc:license "Not licensed" ; + sc:name "Cluster-Tracker" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://clustertracker.gi.ucsc.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -139126,7 +130833,7 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C biotools:primaryContact "Martin Frith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0769, @@ -139144,7 +130851,7 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C biotools:primaryContact "PHIL EWELS Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0654, @@ -139165,7 +130872,7 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C biotools:primaryContact "Tung Hoang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -139184,7 +130891,7 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C biotools:primaryContact "Elizabeth Purdom" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0091, @@ -139203,7 +130910,7 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C biotools:primaryContact "Phil Ewels" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0099, @@ -139221,7 +130928,7 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C biotools:primaryContact "Avi Ma’ayan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3520 ; @@ -139238,14 +130945,14 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -139261,7 +130968,7 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "The ClusteringSuite is the software package that includes the cluster analysis tool." ; @@ -139272,42 +130979,42 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168 ; @@ -139325,7 +131032,7 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269 ; @@ -139343,7 +131050,7 @@ Names occassionally spelled also as Clustal W2, ClustalW2, ClustalW, ClustalX, C biotools:primaryContact "Adrian Pasculescu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0128, edam:topic_0160, @@ -139363,7 +131070,7 @@ Source Code and Supplementary Materials for ClusterM. sc:url "http://www.ece.tamu.edu/~xqian/ClusterM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3277 ; @@ -139379,7 +131086,7 @@ ClusterMine is a knowledge-integrated clustering approach to cluster samples bas sc:url "http://www.genemine.org/clustermine.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3173, @@ -139400,22 +131107,22 @@ ClusterMine is a knowledge-integrated clustering approach to cluster samples bas a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1027" ; - sc:name "Gene ID (NCBI)" ; - sc:sameAs "http://edamontology.org/data_1027" ] ; + sc:additionalType "http://edamontology.org/data_1027" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene ID (NCBI)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_0862" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Dotplot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0862" ; - sc:name "Dotplot" ; - sc:sameAs "http://edamontology.org/data_0862" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -139438,7 +131145,7 @@ ClusterMine is a knowledge-integrated clustering approach to cluster samples bas biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168 ; @@ -139458,8 +131165,29 @@ ClusterMine is a knowledge-integrated clustering approach to cluster samples bas sc:url "http://bioconductor.org/packages/release/bioc/html/clusterSeq.html" ; biotools:primaryContact "Thomas J. Hardcastle" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0154, + edam:topic_3520 ; + sc:author "Paul Ka Po To" ; + sc:citation , + , + "pubmed:34734728" ; + sc:description "ClusterSheep is a GPU/CUDA-accelerated software tool for large-scale clustering of tandem mass spectra from shotgun proteomics." ; + sc:featureList edam:operation_0337, + edam:operation_3432, + edam:operation_3801 ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "ClusterSheep" ; + sc:url "https://github.com/kpto/ClusterSheep" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0623 ; @@ -139478,7 +131206,7 @@ ClusterMine is a knowledge-integrated clustering approach to cluster samples bas biotools:primaryContact "Jason T Serviss" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -139496,7 +131224,7 @@ ClusterMine is a knowledge-integrated clustering approach to cluster samples bas biotools:primaryContact "James W. MacDonald" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3372 ; @@ -139514,22 +131242,20 @@ ClusterMine is a knowledge-integrated clustering approach to cluster samples bas a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2730" ; - sc:name "COGEME unisequence ID" ; - sc:sameAs "http://edamontology.org/data_2730" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1413" ; - sc:name "Sequence similarity" ; - sc:sameAs "http://edamontology.org/data_1413" ], + sc:additionalType "http://edamontology.org/data_2730" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "COGEME unisequence ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_1413" ; + sc:name "Sequence similarity" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_2259, @@ -139554,7 +131280,7 @@ ClusterMine is a knowledge-integrated clustering approach to cluster samples bas . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -139576,7 +131302,7 @@ clustifyr classifies cells and clusters in single-cell RNA sequencing experiment sc:url "https://rnabioco.github.io/clustifyr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:description "An R package to build predictive genomic signatures of microbial phenotypes" ; sc:featureList edam:operation_3482 ; @@ -139586,7 +131312,7 @@ clustifyr classifies cells and clusters in single-cell RNA sequencing experiment sc:url "https://gitlab.com/biomerieux-data-science/clustlasso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0219, @@ -139607,7 +131333,7 @@ clustifyr classifies cells and clusters in single-cell RNA sequencing experiment "Kyung Mo Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, edam:topic_0769, @@ -139623,7 +131349,7 @@ clustifyr classifies cells and clusters in single-cell RNA sequencing experiment sc:url "https://github.com/galadrielbriere/ClustOmics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, edam:topic_3168 ; @@ -139638,8 +131364,30 @@ clust.perturb is an R package designed to test the robustness of graph-based clu sc:name "clust.perturb" ; sc:url "https://rstacey.shinyapps.io/clust-perturb-tool/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0621, + edam:topic_3170, + edam:topic_3308, + edam:topic_3320 ; + sc:citation ; + sc:description "A cluster-guided short read de novo transcriptome assembly pipeline." ; + sc:featureList edam:operation_0524, + edam:operation_3198, + edam:operation_3258, + edam:operation_3472 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ClusTrast" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/karljohanw/clustrast" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_2885, @@ -139660,7 +131408,7 @@ Genome-wide association studies (GWAS) have been extensively used to estimate th sc:url "https://github.com/aritra90/CluStrat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3382 ; sc:citation , @@ -139680,26 +131428,26 @@ Note that RcppEigen (which clustRviz internally) triggers many compiler warnings a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3113" ; - sc:name "Sample annotation" ; - sc:sameAs "http://edamontology.org/data_3113" ], + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ], + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Processed microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; + sc:additionalType "http://edamontology.org/data_3113" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sample annotation" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2269 ; @@ -139723,7 +131471,7 @@ Note that RcppEigen (which clustRviz internally) triggers many compiler warnings biotools:primaryContact "Tauno Metsalu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -139741,8 +131489,32 @@ Note that RcppEigen (which clustRviz internally) triggers many compiler warnings sc:url "http://bioconductor.org/packages/release/bioc/html/CMA.html" ; biotools:primaryContact "Christoph Bernau" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0602, + edam:topic_3168, + edam:topic_3474, + edam:topic_3895 ; + sc:citation , + "pmcid:PMC8784771", + "pubmed:35083201" ; + sc:description "cMatch is a simple, lightweight tool to perform quality control of modular synthetic constructs at speed and scale" ; + sc:featureList edam:operation_0310, + edam:operation_0495, + edam:operation_3180, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "cMatch" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/kitneylab/cmatch" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2640, @@ -139761,7 +131533,7 @@ Note that RcppEigen (which clustRviz internally) triggers many compiler warnings biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -139782,7 +131554,7 @@ Note that RcppEigen (which clustRviz internally) triggers many compiler warnings sc:url "http://fantom.gsc.riken.jp/software/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0602, @@ -139805,7 +131577,7 @@ Note that RcppEigen (which clustRviz internally) triggers many compiler warnings biotools:primaryContact "CMCompare Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, edam:topic_0602, @@ -139825,14 +131597,13 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634 ; sc:citation ; @@ -139843,8 +131614,47 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:softwareHelp ; sc:url "https://eds.gene.le.ac.uk" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_3342, + edam:topic_3577, + edam:topic_3673, + edam:topic_3796 ; + sc:citation , + "pubmed:35871305" ; + sc:description "Chinese Millionome Database (CMDB), a database that contains 9.04 million single nucleotide variants (SNV) with allele frequency information derived from low-coverage (0.06×–0.1×) whole-genome sequencing (WGS) data of 141 431 unrelated healthy Chinese individuals." ; + sc:featureList edam:operation_2421, + edam:operation_3196, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "CMDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://db.cngb.org/cmdb/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:35635814" ; + sc:description "CMDSR is a novel conditional meta-network framework which helps the SR framework learn how to adapt to changes in the degradation distribution of input." ; + sc:featureList edam:operation_3443, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CMDSR" ; + sc:url "https://github.com/guanghaoyin/CMDSR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3277 ; sc:citation ; @@ -139857,7 +131667,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://www.cme.msu.edu/cmeias/color.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -139871,7 +131681,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://www.stat.ucla.edu/~zhou/CMF/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170, @@ -139886,8 +131696,25 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:name "CMF-Impute" ; sc:url "https://github.com/xujunlin123/CMFImpute.git" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0099 ; + sc:citation , + "pubmed:16357030" ; + sc:description "The cmfinder program infers an alignment and consensus secondary structure of an RNA, using unaligned sequences as input." ; + sc:featureList edam:operation_0502 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "cmfinder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://sourceforge.net/projects/weinberg-cmfinder/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -139903,7 +131730,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/LoseHair/CMFMTL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3336 ; sc:citation ; @@ -139916,8 +131743,26 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" "Quan Zou", "Shaoliang PengEmail author" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3068, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC9308261", + "pubmed:35870880" ; + sc:description "An efficient quality score compressor with random access functionality." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3435 ; + sc:license "Apache-2.0" ; + sc:name "CMIC" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/Humonex/Cmic" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -139940,7 +131785,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/HaohanWang/CMM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0780, edam:topic_3336, @@ -139956,8 +131801,31 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:name "CMNPD" ; sc:url "https://www.cmnpd.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0625, + edam:topic_2229, + edam:topic_3335, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC8606902", + "pubmed:34841289" ; + sc:description "C-MORE (cellular morphology recognition) is a workflow from bench to data analysis tailored for heterogeneous primary cells using the R package cmoRe." ; + sc:featureList edam:operation_3435, + edam:operation_3629, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "cmoRe" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/mknoll/cmoRe" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -139975,14 +131843,13 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ] ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Gene name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1710" ; - sc:name "Structure image" ; - sc:sameAs "http://edamontology.org/data_1710" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1710" ; + sc:name "Structure image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -139999,7 +131866,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Bjorn Sommer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0797, @@ -140016,7 +131883,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3304, @@ -140034,7 +131901,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/mytalbot/cms" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -140051,7 +131918,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Ce Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0203, @@ -140068,7 +131935,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Lothe Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3068, @@ -140083,7 +131950,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://www.biosino.org/CMTTdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, edam:topic_0625, @@ -140099,7 +131966,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/ucl-pathgenomics/cmvdrg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0102, @@ -140123,7 +131990,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "CMWeb support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -140146,7 +132013,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Stephen H. Bryant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -140164,7 +132031,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/hanjunwei-lab/CNA2Subpathway" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3360, @@ -140180,7 +132047,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/YingLianghnu/CNA_origin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -140197,7 +132064,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://cailab.labshare.cn/CNAdbCC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2885, @@ -140214,7 +132081,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -140238,7 +132105,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640, @@ -140258,7 +132125,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885 ; sc:description "CNAnova is a stand-alone software package for identifying recurrent regions of copy number aberrations (CNAs) using SNP microarray data. It runs from the command line on the Linux platforms and is composed of several modules written in the R programming language." ; @@ -140272,7 +132139,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://www.compbio.group.cam.ac.uk/software/cnanova" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2259, edam:topic_2640, @@ -140288,8 +132155,28 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:name "CNApp" ; sc:url "https://tools.idibaps.org/CNApp/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_3407, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8826044", + "pubmed:34878104" ; + sc:description "An integrated environment for metabolic network analysis." ; + sc:featureList edam:operation_3660, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "CNApy" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/cnapy-org/CNApy" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3053, @@ -140305,8 +132192,35 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:softwareVersion "1.0" ; sc:url "http://www.compbio.group.cam.ac.uk/software/cnaseg" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression matrix" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3768" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Clustered expression profiles" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0654, + edam:topic_2640 ; + sc:citation ; + sc:description "User-guided local and global copy-number segmentation for tumor sequencing data." ; + sc:featureList edam:operation_3227, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CNAViz" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://elkebir-group.github.io/cnaviz/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -140322,7 +132236,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://cncdatabase.med.cornell.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0108, @@ -140340,7 +132254,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://www.rna-society.org/cncrnadb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3263, @@ -140355,7 +132269,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/insilico/cncv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation "pubmed:20022973" ; @@ -140366,7 +132280,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Webmaster of CnD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0659 ; @@ -140385,7 +132299,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Ge Tan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -140404,7 +132318,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/tf2/CNest.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749, @@ -140421,7 +132335,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://db.cngb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0123, edam:topic_3474 ; @@ -140435,8 +132349,25 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/whiteclarence/CNN-BLPred" ; biotools:primaryContact "KC Dukka" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2640, + edam:topic_3170, + edam:topic_3474 ; + sc:citation , + "pubmed:35810236" ; + sc:description "CNN-based survial prediction model combining with prognosis-related cascaded Wx feature selection." ; + sc:featureList edam:operation_0314, + edam:operation_3927, + edam:operation_3936 ; + sc:license "Not licensed" ; + sc:name "CNN-Cox" ; + sc:url "https://github.com/wangwangCCChen/CNN-Cox" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3047, edam:topic_3169, @@ -140453,8 +132384,26 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:name "CNN-Peaks" ; sc:url "http://github.com/odb9402/CNNPeaks" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8652105", + "pubmed:34601583" ; + sc:description "CNN-PepPred is an open-source tool to create convolutional NN models for the discovery of patterns in peptide sets. Application to peptide-MHC class II binding prediction." ; + sc:featureList edam:operation_0252, + edam:operation_0416, + edam:operation_3927 ; + sc:license "Apache-2.0" ; + sc:name "CNN-PepPred" ; + sc:softwareHelp ; + sc:url "https://github.com/ComputBiol-IBB/CNN-PepPred" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, @@ -140471,7 +132420,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/Peppags/CNN-SVR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -140485,7 +132434,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://github.com/nongdaxiaofeng/CNNAthUbi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -140503,7 +132452,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/LQYoLH/CnnCrispr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3175, @@ -140520,7 +132469,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" "Lei Cai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web service" ; sc:applicationSubCategory edam:topic_3474, @@ -140534,8 +132483,43 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://hlt.hitsz.edu.cn/CNNH_PSS/" ; biotools:primaryContact "Ruifeng Xu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_3174, + edam:topic_3301 ; + sc:citation , + "pubmed:35460223" ; + sc:description "A CNN-based predictor website for identifying the optimal growth temperatures of prokaryotes using only genomic k-mers distribution." ; + sc:featureList edam:operation_2495 ; + sc:license "Not licensed" ; + sc:name "CnnPOGTP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.orgene.net/CnnPOGTP" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0114, + edam:topic_0194, + edam:topic_3474 ; + sc:citation , + "pubmed:35798684" ; + sc:description "A CNN approach for multiple tree classification. It returns a number of clusters of the input phylogenetic trees for different-size sets of trees." ; + sc:featureList edam:operation_0326, + edam:operation_0553, + edam:operation_0555, + edam:operation_0556 ; + sc:license "Not licensed" ; + sc:name "CNNTrees" ; + sc:url "https://tahirinadia.github.io/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0621 ; @@ -140562,14 +132546,14 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3619" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2984" ; - sc:name "Pathway or network report" ; - sc:sameAs "http://edamontology.org/data_2984" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2984" ; + sc:encodingFormat "http://edamontology.org/format_3619" ; + sc:name "Pathway or network report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -140590,18 +132574,18 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0905" ; - sc:name "Protein interaction raw data" ; - sc:sameAs "http://edamontology.org/data_0905" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_0905" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein interaction raw data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2984" ; - sc:name "Pathway or network report" ; - sc:sameAs "http://edamontology.org/data_2984" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2984" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Pathway or network report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602 ; @@ -140620,7 +132604,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "F.Eduati" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3474 ; @@ -140639,14 +132623,14 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3619" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2984" ; - sc:name "Pathway or network report" ; - sc:sameAs "http://edamontology.org/data_2984" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2984" ; + sc:encodingFormat "http://edamontology.org/format_3619" ; + sc:name "Pathway or network report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -140665,20 +132649,43 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://bioconductor.org/packages/release/bioc/html/CNORode.html" ; biotools:primaryContact "David Henriques" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0654, + edam:topic_2229, + edam:topic_2640, + edam:topic_3295 ; + sc:citation , + "pmcid:PMC9272807", + "pubmed:35640971" ; + sc:description "CNpare is designed to compare and contrast genome-wide tumour copy number profiles." ; + sc:featureList edam:operation_3233, + edam:operation_3463, + edam:operation_3894 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CNpare" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/macintyrelab/CNpare" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -140700,7 +132707,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Jacob Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_3070, @@ -140716,7 +132723,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://db.cngb.org/cnsa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0593, edam:topic_2275, @@ -140734,7 +132741,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://cns-online.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -140751,8 +132758,27 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://bioconductor.org/packages/release/bioc/html/CNTools.html" ; biotools:primaryContact "J. Zhang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0218, + edam:topic_3474, + edam:topic_3518, + edam:topic_3958 ; + sc:citation , + "pubmed:35240378" ; + sc:description "A scalable artificial intelligence platform that automatically finds copy number variations (CNVs) in journal articles and transforms them into a database." ; + sc:featureList edam:operation_3961 ; + sc:name "CNV-ETLAI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://lmic.mgh.harvard.edu/CNV-ETLAI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0625, @@ -140772,7 +132798,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/sunnyzxh/CNV-JACG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3474, @@ -140785,7 +132811,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/wonderful1/CNV-PG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:19267900" ; @@ -140798,8 +132824,29 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://tiger.dbs.nus.edu.sg/cnv-seq/" ; biotools:primaryContact "Xie Chao" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_3474, + edam:topic_3673, + edam:topic_3958 ; + sc:citation , + "pmcid:PMC8645205", + "pubmed:34917425" ; + sc:description "CNV-P: A machine-learning framework for filtering copy number variations." ; + sc:featureList edam:operation_3359, + edam:operation_3695, + edam:operation_3961 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CNV-P" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/wonderful1/CNV-P" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3056, @@ -140817,7 +132864,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Yu Jiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -140837,7 +132884,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "CNVer support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3168, @@ -140857,7 +132904,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" "Conxi Lázaro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199 ; @@ -140875,7 +132922,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Joseph Lugo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053 ; @@ -140890,8 +132937,31 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://www.imperial.ac.uk/people/l.coin" ; biotools:primaryContact "LACHLAN COIN" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workflow" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_3316, + edam:topic_3673, + edam:topic_3676, + edam:topic_3958 ; + sc:citation , + "pmcid:PMC8897915", + "pubmed:35247967" ; + sc:description "An open source cloud-based pipeline for rare CNVs detection in whole exome sequencing data based on the depth of coverage." ; + sc:featureList edam:operation_3435, + edam:operation_3961 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CNVind" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/wkusmirek/CNVind" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2640, @@ -140909,7 +132979,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://cnvintegrate.cgm.ntu.edu.tw/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation ; @@ -140923,7 +132993,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Boris C. Bastian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -140939,7 +133009,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Alexej Abyzov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3175, @@ -140957,7 +133027,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -140975,7 +133045,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Thomas Wolf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3673, @@ -140994,18 +133064,18 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2885, @@ -141025,7 +133095,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Hoang Tan Nguyen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -141044,7 +133114,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Chris Barnes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -141061,7 +133131,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://cnvxplorer.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0769, @@ -141078,7 +133148,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/onkarS23/CoAMPpred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3384 ; @@ -141093,7 +133163,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/JiarunLiu/Co-Correcting" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Suite" ; sc:applicationSubCategory edam:topic_0128, @@ -141115,7 +133185,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://www.hpppi.iicb.res.in/ishi/covar/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3510, @@ -141133,7 +133203,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" "Zhenling Peng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2275, @@ -141149,7 +133219,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "http://yanglab.nankai.edu.cn/COACH-D/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3403, edam:topic_3474, @@ -141163,10 +133233,9 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091 ; sc:description "Simulated Annealing Search for Coalescent Trees." ; @@ -141183,10 +133252,9 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -141203,7 +133271,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Thomas Mailund" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0781, edam:topic_3305, @@ -141217,7 +133285,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/niemasd/CoaTran" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -141233,7 +133301,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" sc:url "https://github.com/bertrand-lab/cobia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0749, @@ -141253,7 +133321,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact "Manuela Benary" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -141271,7 +133339,7 @@ CMcrpred:Risk prediction in cutaneous melanoma patients using clinical featurs"" biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0769, edam:topic_3169, @@ -141289,7 +133357,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "https://bitbucket.org/cfce/cobra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3382 ; @@ -141305,7 +133373,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa "Eric C Chi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -141324,7 +133392,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa biotools:primaryContact "openCOBRA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3179, edam:topic_3518, @@ -141342,7 +133410,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "http://www.ciml.univ-mrs.fr/software/cocas/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation "pubmed:24564762" ; @@ -141354,18 +133422,18 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1904" ; - sc:name "Locus ID (EntrezGene)" ; - sc:sameAs "http://edamontology.org/data_1904" ] ; + sc:additionalType "http://edamontology.org/data_1904" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Locus ID (EntrezGene)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_0972" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text mining report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0972" ; - sc:name "Text mining report" ; - sc:sameAs "http://edamontology.org/data_0972" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0218 ; @@ -141384,7 +133452,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168, @@ -141401,7 +133469,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "http://bioconductor.org/packages/COCOA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -141418,7 +133486,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "ftp://milton.cshl.edu/data/scripts/cococonetLite.R" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation , @@ -141437,7 +133505,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa biotools:primaryContact "Luigi Cavallo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3360, @@ -141450,7 +133518,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "https://ashis-das.shinyapps.io/CoCoMoRP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -141467,7 +133535,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "https://github.com/KIT-MBS/coconet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, @@ -141486,7 +133554,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "https://github.com/Puumanamana/CoCoNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0154, @@ -141503,8 +133571,30 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:softwareHelp ; sc:url "https://coconut.naturalproducts.net" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0154, + edam:topic_0166, + edam:topic_0736, + edam:topic_0820 ; + sc:citation , + "pubmed:34718416" ; + sc:description "Coiled-coil protein structural feature prediction from amino acid sequence using deep neural networks." ; + sc:featureList edam:operation_0253, + edam:operation_0272, + edam:operation_0474, + edam:operation_3092 ; + sc:isAccessibleForFree true ; + sc:name "CoCoPRED" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.csbio.sjtu.edu.cn/bioinf/CoCoPRED" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , @@ -141514,8 +133604,33 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:name "COD" ; sc:url "http://mmcheng.net/cod" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2640, + edam:topic_2830, + edam:topic_3930, + edam:topic_3966 ; + sc:citation ; + sc:description "Establishing immune-relevant regions for cancer vaccine design." ; + sc:featureList edam:operation_0252, + edam:operation_0416, + edam:operation_3227, + edam:operation_3629, + edam:operation_3755 ; + sc:isAccessibleForFree true ; + sc:name "COD-dipp" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.proteogenomics.ca/COD-dipp" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -141532,8 +133647,27 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "https://code.google.com/archive/p/codabc/" ; biotools:primaryContact "Miguel Arenas" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0605, + edam:topic_2640, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9278500", + "pubmed:35845844" ; + sc:description "Codabench, a meta-benchmark platform that is open sourced and community driven for benchmarking algorithms or software agents versus datasets or tasks." ; + sc:featureList edam:operation_0337, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "Codabench" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:url "https://github.com/codalab/codabench/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3174, @@ -141554,7 +133688,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "https://github.com/egr95/R-codacore" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2229, @@ -141568,7 +133702,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "http://github.com/GhoshLab/CODAK/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0659, @@ -141583,18 +133717,15 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1597" ; - sc:name "Codon usage table" ; - sc:sameAs "http://edamontology.org/data_1597" ], + sc:additionalType "http://edamontology.org/data_1597" ; + sc:name "Codon usage table" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1597" ; - sc:name "Codon usage table" ; - sc:sameAs "http://edamontology.org/data_1597" ] ; + sc:additionalType "http://edamontology.org/data_1597" ; + sc:name "Codon usage table" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1602" ; - sc:name "Codon usage fraction difference" ; - sc:sameAs "http://edamontology.org/data_1602" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1602" ; + sc:name "Codon usage fraction difference" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -141625,14 +133756,12 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1597" ; - sc:name "Codon usage table" ; - sc:sameAs "http://edamontology.org/data_1597" ] ; + sc:additionalType "http://edamontology.org/data_1597" ; + sc:name "Codon usage table" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1597" ; - sc:name "Codon usage table" ; - sc:sameAs "http://edamontology.org/data_1597" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1597" ; + sc:name "Codon usage table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -141663,7 +133792,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "http://emboss.open-bio.org/rel/rel6/apps/codcopy.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3050, @@ -141680,7 +133809,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0634, @@ -141702,7 +133831,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -141720,20 +133849,34 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "http://bioconductor.org/packages/release/bioc/html/codelink.html" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_3474 ; + sc:citation , + "pubmed:34990838" ; + sc:description "CODER embeddings excellently reflect semantic similarity and relatedness of medical concepts. One can use CODER for embedding-based medical term normalization or to provide features for machine learning. Similar to other pretrained language models, CODER can also be fine-tuned for specific tasks." ; + sc:featureList edam:operation_3432, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:name "CODER" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/GanjinZero/CODER" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3077 ; sc:citation , @@ -141765,7 +133908,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "http://emboss.open-bio.org/rel/rel6/apps/coderet.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3676 ; @@ -141783,7 +133926,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa biotools:primaryContact "Yuchao Jiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3169, @@ -141803,7 +133946,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa biotools:primaryContact "Bertie Gottgens" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0621, edam:topic_2814 ; @@ -141817,7 +133960,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "http://github.com/iobio-zjut/CoDiFold" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0610, @@ -141836,7 +133979,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "https://CRAN.R-project.org/package=CoDiNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3512 ; sc:description "Combined DNA Index System (CODIS) is a GUI tool for forensic paternity lawsuit." ; @@ -141850,7 +133993,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa biotools:primaryContact "Giuseppe Cardillo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -141865,7 +134008,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "http://ufq.unq.edu.ar/codnasrna" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0203, @@ -141887,7 +134030,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa biotools:primaryContact "Justin Miller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0203, @@ -141908,7 +134051,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "http://www.kazusa.or.jp/codon/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, @@ -141924,7 +134067,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "https://github.com/tiffany-nguyen/CodonAdjust" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622 ; @@ -141945,7 +134088,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa biotools:primaryContact "Ginger Han" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Simplify the Multivariate analysis (correspondence analysis) of codon and amino acid usage" ; sc:featureList edam:operation_0236 ; sc:license "GPL-2.0" ; @@ -141954,7 +134097,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa sc:url "http://codonw.sourceforge.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0199, @@ -141972,7 +134115,7 @@ CoBRA combines the use of several dozen ChIP/ATAC‐seq tools, suites, and packa biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3325, edam:topic_3382, @@ -141997,7 +134140,7 @@ CoDysAn collaborates with various Associations.""" ; sc:url "http://www.codysan.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -142024,7 +134167,7 @@ CoDysAn collaborates with various Associations.""" ; "Pedro Sernadela" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3299 ; sc:citation ; @@ -142039,7 +134182,7 @@ CoDysAn collaborates with various Associations.""" ; biotools:primaryContact "Coev Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2259, @@ -142059,7 +134202,7 @@ CoDysAn collaborates with various Associations.""" ; biotools:primaryContact "Juan David Henao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_2229, @@ -142077,18 +134220,17 @@ CoDysAn collaborates with various Associations.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3477" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -142105,7 +134247,7 @@ CoDysAn collaborates with various Associations.""" ; sc:url "http://bioinformatics.psb.ugent.be/webtools/coexpr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0160, @@ -142128,14 +134270,14 @@ CoDysAn collaborates with various Associations.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3510 ; sc:citation ; @@ -142152,7 +134294,7 @@ CoDysAn collaborates with various Associations.""" ; biotools:primaryContact "Thomas Nordahl Petersen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -142172,7 +134314,7 @@ CoDysAn collaborates with various Associations.""" ; sc:url "http://www.coffeeprot.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0625, @@ -142191,18 +134333,18 @@ CoDysAn collaborates with various Associations.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -142221,22 +134363,20 @@ CoDysAn collaborates with various Associations.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2730" ; - sc:name "COGEME unisequence ID" ; - sc:sameAs "http://edamontology.org/data_2730" ], + sc:additionalType "http://edamontology.org/data_2729" ; + sc:name "COGEME EST ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2729" ; - sc:name "COGEME EST ID" ; - sc:sameAs "http://edamontology.org/data_2729" ] ; + sc:additionalType "http://edamontology.org/data_2730" ; + sc:name "COGEME unisequence ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3512 ; @@ -142252,7 +134392,7 @@ CoDysAn collaborates with various Associations.""" ; sc:url "http://cogeme.ex.ac.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -142271,7 +134411,7 @@ CoDysAn collaborates with various Associations.""" ; biotools:primaryContact "Zhilong Jia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -142284,8 +134424,30 @@ CoDysAn collaborates with various Associations.""" ; sc:name "COGENT" ; sc:url "https://github.com/lbozhilova/COGENT" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3169, + edam:topic_3170, + edam:topic_3173, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC9351259", + "pubmed:35927614" ; + sc:description "Cogito “COmpare annotated Genomic Intervals TOol” provides a workflow for an unbiased, structured overview and systematic analysis of complex genomic datasets consisting of different data types (e.g. RNA-seq, ChIP-seq) and conditions." ; + sc:featureList edam:operation_0337, + edam:operation_0362, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "Cogito" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bioconductor.org/packages/release/bioc/html/Cogito.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -142309,7 +134471,7 @@ CoDysAn collaborates with various Associations.""" ; biotools:primaryContact "COGNAC Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0102, @@ -142324,8 +134486,27 @@ CoDysAn collaborates with various Associations.""" ; sc:name "cognac" ; sc:url "https://github.com/rdcrawford/cognac" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0602, + edam:topic_0634, + edam:topic_3322, + edam:topic_3474 ; + sc:citation , + "pubmed:35900147" ; + sc:description "A contrastive learning framework to predict disease similarity based on gene network and ontology structure." ; + sc:featureList edam:operation_0303, + edam:operation_3927, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CoGO" ; + sc:url "https://github.com/yhchen1123/CoGO" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640, @@ -142344,7 +134525,7 @@ CoDysAn collaborates with various Associations.""" ; biotools:primaryContact "Yingying Wei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3179 ; @@ -142362,7 +134543,7 @@ CoDysAn collaborates with various Associations.""" ; sc:url "http://www.cbil.upenn.edu/COGRIM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0219, @@ -142381,7 +134562,7 @@ CoDysAn collaborates with various Associations.""" ; sc:url "http://www.ncbi.nlm.nih.gov/COG/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0154, edam:topic_0218, @@ -142403,7 +134584,7 @@ CogStack is a lightweight distributed, fault tolerant database processing archit sc:url "https://github.com/RichJackson/cogstack/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3399, edam:topic_3401, @@ -142415,8 +134596,33 @@ CogStack is a lightweight distributed, fault tolerant database processing archit sc:name "CogTale" ; sc:url "https://cogtale.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_2885, + edam:topic_3170, + edam:topic_3512, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC8730286", + "pubmed:34964846" ; + sc:description "COGVIC(Catalogue Of Germline Variants In Cancer). A comprehensive database of germline pathogenic variants in East Asian pan-cancer patients." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3225, + edam:operation_3227, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:name "COGVIC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.cogvic.vip/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -142438,7 +134644,7 @@ CogStack is a lightweight distributed, fault tolerant database processing archit biotools:primaryContact "Charles Warden" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3303, @@ -142458,7 +134664,7 @@ CogStack is a lightweight distributed, fault tolerant database processing archit biotools:primaryContact "Nicholas P. Tatonetti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0154, @@ -142480,8 +134686,22 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:name "coil" ; sc:url "https://cran.r-project.org/web/packages/coil/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_3444 ; + sc:citation , + "pubmed:35526237" ; + sc:description "The CoilGen Project is a community-based tool for the generation of coil Layouts within the MRI/NMR environment." ; + sc:featureList edam:operation_0268 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CoilGen" ; + sc:url "https://github.com/Philipp-MR/CoilGen" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2269, @@ -142498,7 +134718,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid biotools:primaryContact "Grégoire Rossier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3304 ; sc:citation ; @@ -142508,8 +134728,17 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:name "COINSTAC" ; sc:url "https://github.com/MRN-code/coinstac" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:citation ; + sc:description "CoOccurrence adJusted Analysis and Calling - The cojac package comprises a set of command-line tools to analyse co-occurrence of mutations on amplicons. It is useful, for example, for early detection of viral variants of concern (e.g. Alpha, Delta, Omicron) in environmental samples, and has been designed to scan for multiple SARS-CoV-2 variants in wastewater samples, as analyzed jointly by ETH Zurich, EPFL and Eawag." ; + sc:license "GPL-3.0" ; + sc:name "COJAC" ; + sc:url "https://github.com/cbg-ethz/cojac" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Script" ; sc:applicationSubCategory edam:topic_0089, @@ -142524,7 +134753,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:url "https://coke.mml.unc.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2885, @@ -142542,7 +134771,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:url "https://jokergoo.github.io/cola_collection/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Desktop application" ; sc:applicationSubCategory edam:topic_0082, @@ -142564,7 +134793,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:url "http://colabfold.mmseqs.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "Calculates Area under ROC curve (AUC) for a vector or for each column of a matrix." ; @@ -142579,7 +134808,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid biotools:primaryContact "Jaroslaw Tuszynski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2828, @@ -142592,7 +134821,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:url "https://colbuilder.h-its.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3301, edam:topic_3474, @@ -142608,7 +134837,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091, @@ -142628,7 +134857,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid biotools:primaryContact "Pierre Peterlongo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0108, @@ -142648,10 +134877,9 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121 ; @@ -142665,7 +134893,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:url "https://github.com/compomics/colims" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3050, @@ -142681,7 +134909,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:url "https://github.com/CapPow/collBook" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053 ; @@ -142699,34 +134927,34 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168 ; @@ -142744,7 +134972,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3070, @@ -142764,14 +134992,14 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -142788,7 +135016,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:url "http://www.ms-utils.org/collect_mgf.c" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -142804,8 +135032,26 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:url "https://www.mathworks.com/matlabcentral/fileexchange/5694-coloc3d" ; biotools:primaryContact "W. Bryan Smith" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2885, + edam:topic_3517 ; + sc:citation ; + sc:description "Pipeline for running colocalization tests between GTEx version 8 single-tissue eQTLs or sQTLs and GWAS signals using COLOC." ; + sc:featureList edam:operation_0337, + edam:operation_3232, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "ColocQuiaL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bychen9/eQTL_colocalizer" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3382 ; @@ -142825,7 +135071,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:url "https://github.com/ropensci/colocr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -142843,7 +135089,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:url "https://www.uni-goettingen.de/en/research/185810.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0621, @@ -142865,7 +135111,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:url "http://colombos.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -142883,7 +135129,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:url "https://data.color.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0166, @@ -142906,7 +135152,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -142923,8 +135169,28 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:name "ColorCells" ; sc:url "http://rna.sysu.edu.cn/colorcells/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Workflow" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0605, + edam:topic_3673 ; + sc:citation , + "pubmed:35347321" ; + sc:description "A versatile compressor of third generation sequencing reads." ; + sc:featureList edam:operation_0337, + edam:operation_3436, + edam:operation_3472 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CoLoRd" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/refresh-bio/colord" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3518 ; sc:description "ColorDecontmas is a collection of ImageJ macros (scripts) for performing color deconvolution and analysis of immunohistochemistry (IHC) staining on tissue microarray (TMA) images" ; @@ -142938,7 +135204,7 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:url "http://colordecontmas.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3382 ; @@ -142960,44 +135226,16 @@ Designed for the cleaning, contextualization and assessment of cytochrome c oxid sc:url "https://cran.r-project.org/package=colordistance" ; biotools:primaryContact "Hannah Weller" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_3293, - edam:topic_3382 ; - sc:citation ; - sc:description """Quantitative color profiling of digital images with earth mover's distance using the R package colordistance. - -Distance metrics for image color similarity. - -Websites for you and your projects, hosted directly from your GitHub repository. Just edit, push, and your changes are live. - -Websites for you and your projects. - -February 6, 2019: Our methods paper for colordistance is out in PeerJ! Find it here: https://peerj.com/articles/6398/. - -An R package with functions for quantifying the differences between colorful objects. - -July 10, 2018: Added scatter3dclusters function to plot clusters in color space, scaled according to their size and colored according to their color. - -Hosted directly from your GitHub repository. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/colordistance""" ; - sc:featureList edam:operation_3096, - edam:operation_3443, - edam:operation_3799 ; - sc:name "colordistance_autogenerated" ; - sc:url "http://github.io/colordistance/" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -143014,7 +135252,7 @@ Hosted directly from your GitHub repository. biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Script" ; sc:applicationSubCategory edam:topic_3277 ; @@ -143028,7 +135266,7 @@ Hosted directly from your GitHub repository. sc:url "https://github.com/pachterlab/colosseum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3382, @@ -143043,7 +135281,7 @@ Hosted directly from your GitHub repository. sc:url "https://blog.bham.ac.uk/intellimic/g-landini-software/colour-deconvolution-2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -143063,7 +135301,7 @@ Hosted directly from your GitHub repository. biotools:primaryContact "DC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -143081,7 +135319,7 @@ Hosted directly from your GitHub repository. biotools:primaryContact "Niels Schurink" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0622, @@ -143100,7 +135338,7 @@ Hosted directly from your GitHub repository. biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0607, @@ -143120,7 +135358,7 @@ Hosted directly from your GitHub repository. biotools:primaryContact "Jason Moffat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3318, @@ -143138,7 +135376,7 @@ Hosted directly from your GitHub repository. sc:url "https://coltapp.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0102, @@ -143161,7 +135399,7 @@ Hosted directly from your GitHub repository. sc:url "https://github.com/biointec/columba" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0160, @@ -143185,7 +135423,7 @@ Hosted directly from your GitHub repository. biotools:primaryContact "Česlovas Venclovas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3174, @@ -143205,7 +135443,7 @@ Hosted directly from your GitHub repository. biotools:primaryContact "Yueqiong Ni" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3384, @@ -143221,7 +135459,7 @@ Hosted directly from your GitHub repository. sc:url "https://github.com/Jfortin1/ComBatHarmonization" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0769, @@ -143236,7 +135474,7 @@ Hosted directly from your GitHub repository. sc:url "https://github.com/COMBAT-TB/irida-galaxy-deploy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3375, @@ -143255,7 +135493,7 @@ Hosted directly from your GitHub repository. biotools:primaryContact "Giovanni Y. Di Verloi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -143271,26 +135509,54 @@ Hosted directly from your GitHub repository. sc:url "http://www.sbg.bio.ic.ac.uk/~mwass/combfunc/" ; biotools:primaryContact "Mark Wass" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3169, + edam:topic_3534 ; + sc:citation , + "pmcid:PMC9166390", + "pubmed:35659235" ; + sc:description "Modeling binding specificities of transcription factor pairs with random forests." ; + sc:featureList edam:operation_0363, + edam:operation_0445, + edam:operation_0452, + edam:operation_2575 ; + sc:license "Not licensed" ; + sc:name "ComBind" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/AnniAleksandra/ComBind" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Web application" ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0622, - edam:topic_3308, + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3170, edam:topic_3360 ; - sc:citation ; - sc:description "Interactive web tool for selecting accurate marker combinations of omics data." ; - sc:featureList edam:operation_0282 ; - sc:name "CombiROC" ; + sc:citation , + , + "pmcid:PMC5371980", + "pubmed:28358118" ; + sc:description "Combinatorial selection of biomarkers to optimize gene signatures in diagnostics and single cell applications." ; + sc:featureList edam:operation_0335, + edam:operation_0337, + edam:operation_3223 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "combiROC" ; sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:softwareHelp ; - sc:url "http://combiroc.eu/" ; - biotools:primaryContact "Saveria Mazzara" . + sc:softwareHelp , + ; + sc:url "http://combiroc.eu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2640, @@ -143305,8 +135571,29 @@ Hosted directly from your GitHub repository. sc:softwareHelp ; sc:url "https://github.com/aalto-ics-kepaco/ComboLTR" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workbench" ; + sc:applicationSubCategory edam:topic_0202, + edam:topic_2269, + edam:topic_2640, + edam:topic_3360, + edam:topic_3379 ; + sc:citation ; + sc:description "A statistical framework for evaluating drug synergism in patient-derived xenografts." ; + sc:featureList edam:operation_3435, + edam:operation_3658, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "combPDX" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://licaih.shinyapps.io/CombPDX/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0085, @@ -143321,8 +135608,32 @@ Hosted directly from your GitHub repository. sc:url "http://combrex.bu.edu" ; biotools:primaryContact "COMBREX Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_0622, + edam:topic_0749, + edam:topic_3169, + edam:topic_3295 ; + sc:citation , + "pubmed:34864898" ; + sc:description "Combinatorial and Semantic Analysis of Functional Elements (CombSAFE). It is a flexible computational method to identify combinations of static and dynamic functional elements genome-wide, or in a specific genomic region, and how they change across semantically annotated biological conditions." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3222, + edam:operation_3501, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CombSAFE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/DEIB-GECO/CombSAFE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0202, @@ -143345,7 +135656,7 @@ Hosted directly from your GitHub repository. sc:url "https://github.com/EffieChantzi/COMBSecretomics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -143362,7 +135673,7 @@ Hosted directly from your GitHub repository. biotools:primaryContact "Long Hu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0632, @@ -143378,8 +135689,30 @@ Hosted directly from your GitHub repository. sc:name "CoMeBack" ; sc:url "https://bitbucket.org/flopflip/comeback" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0625, + edam:topic_0634, + edam:topic_2259, + edam:topic_3068 ; + sc:citation , + "pubmed:35662459" ; + sc:description "Significant co-mentions in the scientific literature between diseases, biological functions and clinical signs." ; + sc:featureList edam:operation_2422, + edam:operation_3349, + edam:operation_3625 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CoMent" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://sysbiol.cnb.csic.es/CoMent" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -143395,7 +135728,7 @@ Hosted directly from your GitHub repository. biotools:primaryContact "Mindaugas Margelevicius" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -143418,14 +135751,14 @@ COMER2, a cross-platform software package for protein remote homology search and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -143447,7 +135780,7 @@ COMER2, a cross-platform software package for protein remote homology search and biotools:primaryContact "Comet's Google group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3295, @@ -143464,7 +135797,7 @@ COMER2, a cross-platform software package for protein remote homology search and sc:url "https://github.com/leonardlab/COMET" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0623, @@ -143487,7 +135820,7 @@ COMER2, a cross-platform software package for protein remote homology search and biotools:primaryContact "CoMet Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3173, @@ -143507,7 +135840,7 @@ COMER2, a cross-platform software package for protein remote homology search and biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0623, @@ -143526,7 +135859,7 @@ COMER2, a cross-platform software package for protein remote homology search and biotools:primaryContact "Jolanta Kawulok" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3173, @@ -143546,7 +135879,7 @@ COMER2, a cross-platform software package for protein remote homology search and sc:url "http://github.com/cemordaunt/comethyl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -143564,7 +135897,7 @@ COMER2, a cross-platform software package for protein remote homology search and sc:url "https://www.comets-analytics.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0659, @@ -143584,8 +135917,30 @@ COMER2, a cross-platform software package for protein remote homology search and sc:url "http://www.benoslab.pitt.edu/comir/" ; biotools:primaryContact "ComiR Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_3308, + edam:topic_3337, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC8488198", + "pubmed:34616426" ; + sc:description "Collaborative mixed model to dissecting genetic contributions to complex traits by leveraging regulatory information." ; + sc:featureList edam:operation_0337, + edam:operation_3196, + edam:operation_3791 ; + sc:isAccessibleForFree true ; + sc:name "CoMM-Ssup4 sup" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/gordonliu810822/CoMM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0102, @@ -143605,14 +135960,14 @@ COMER2, a cross-platform software package for protein remote homology search and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0848" ; - sc:name "Raw sequence" ; - sc:sameAs "http://edamontology.org/data_0848" ] ; + sc:additionalType "http://edamontology.org/data_0848" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Raw sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -143628,7 +135983,7 @@ COMER2, a cross-platform software package for protein remote homology search and biotools:primaryContact "Pierre Peterlongo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -143646,7 +136001,7 @@ COMER2, a cross-platform software package for protein remote homology search and sc:url "https://github.com/macsbio/commet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -143663,7 +136018,7 @@ COMER2, a cross-platform software package for protein remote homology search and sc:url "https://github.com/jae-hyun-lee/commodar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3050, @@ -143682,18 +136037,16 @@ COMER2, a cross-platform software package for protein remote homology search and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3148" ; - sc:name "Gene family report" ; - sc:sameAs "http://edamontology.org/data_3148" ], + sc:additionalType "http://edamontology.org/data_3148" ; + sc:name "Gene family report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; + sc:additionalType "http://edamontology.org/data_3111" ; + sc:name "Processed microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3148" ; - sc:name "Gene family report" ; - sc:sameAs "http://edamontology.org/data_3148" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3148" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Gene family report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0797 ; sc:citation ; @@ -143707,7 +136060,7 @@ COMER2, a cross-platform software package for protein remote homology search and sc:url "http://bioinformatics.intec.ugent.be/kmarchal/Supplementary_Information_Zarrineh_2010/comodo/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3376, @@ -143724,7 +136077,7 @@ COMER2, a cross-platform software package for protein remote homology search and biotools:primaryContact "Laura Furlong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0780, @@ -143742,24 +136095,39 @@ COMER2, a cross-platform software package for protein remote homology search and sc:name "Compacta" ; sc:url "https://github.com/bioCompU/Compacta" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3168, + edam:topic_3382, + edam:topic_3474 ; + sc:citation ; + sc:description "CompAIRR is a command line tool to compare two sets of adaptive immune receptor repertoires and compute their overlap. It can also identify which sequences are present in which repertoires." ; + sc:featureList edam:operation_0291 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "CompAIRR" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/uio-bmi/compairr" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2787" ; - sc:name "NCBI genome accession" ; - sc:sameAs "http://edamontology.org/data_2787" ], + sc:additionalType "http://edamontology.org/data_2787" ; + sc:name "NCBI genome accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2787" ; - sc:name "NCBI genome accession" ; - sc:sameAs "http://edamontology.org/data_2787" ] ; + sc:additionalType "http://edamontology.org/data_2787" ; + sc:name "NCBI genome accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3128" ; - sc:name "Nucleic acid structure report" ; - sc:sameAs "http://edamontology.org/data_3128" ], + sc:additionalType "http://edamontology.org/data_3128" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3128" ; - sc:name "Nucleic acid structure report" ; - sc:sameAs "http://edamontology.org/data_3128" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3128" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0654, @@ -143774,10 +136142,10 @@ COMER2, a cross-platform software package for protein remote homology search and a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0637 ; sc:citation , @@ -143794,7 +136162,7 @@ COMER2, a cross-platform software package for protein remote homology search and biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:description "CompareM i a toolbox for comparative genomics." ; sc:license "GPL-3.0" ; @@ -143805,14 +136173,14 @@ COMER2, a cross-platform software package for protein remote homology search and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0953" ; - sc:name "Version information" ; - sc:sameAs "http://edamontology.org/data_0953" ] ; + sc:additionalType "http://edamontology.org/data_0953" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Version information" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0953" ; - sc:name "Version information" ; - sc:sameAs "http://edamontology.org/data_0953" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0953" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Version information" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0121, @@ -143836,58 +136204,58 @@ COMER2, a cross-platform software package for protein remote homology search and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation , @@ -143905,42 +136273,42 @@ COMER2, a cross-platform software package for protein remote homology search and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622 ; @@ -143959,58 +136327,58 @@ COMER2, a cross-platform software package for protein remote homology search and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -144028,58 +136396,58 @@ COMER2, a cross-platform software package for protein remote homology search and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -144096,7 +136464,7 @@ COMER2, a cross-platform software package for protein remote homology search and biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, @@ -144117,14 +136485,12 @@ COMER2, a cross-platform software package for protein remote homology search and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1176" ; - sc:name "GO concept ID" ; - sc:sameAs "http://edamontology.org/data_1176" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1176" ; + sc:name "GO concept ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0140, @@ -144144,7 +136510,7 @@ COMER2, a cross-platform software package for protein remote homology search and biotools:primaryContact "Lars Juhl Jensen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3292 ; sc:citation , @@ -144157,7 +136523,7 @@ COMER2, a cross-platform software package for protein remote homology search and sc:url "https://pypi.org/project/compartor/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0804, @@ -144176,7 +136542,7 @@ COMER2, a cross-platform software package for protein remote homology search and biotools:primaryContact "Greg Finak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3056, edam:topic_3168, @@ -144194,14 +136560,14 @@ COMER2, a cross-platform software package for protein remote homology search and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -144211,7 +136577,7 @@ COMER2, a cross-platform software package for protein remote homology search and sc:url "https://www.bruker.com/service/support-upgrades/software-downloads/mass-spectrometry.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -144230,27 +136596,8 @@ COMER2, a cross-platform software package for protein remote homology search and sc:url "http://bioconductor.org/packages/release/bioc/html/compcodeR.html" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0610, - edam:topic_2269, - edam:topic_3303, - edam:topic_3372, - edam:topic_3810 ; - sc:citation ; - sc:description """Packaging data analytical work reproducibly using R (and friends). - -Computers are a central tool in the research process, enabling complex and large scale data analysis. As computer-based research has increased in complexity, so have the challenges of ensuring that this research is reproducible. To address this challenge, we review the concept of the research compendium as a solution for providing a standard and easily recognisable way for organising the digital materials of a research project to enable other researchers to inspect, reproduce, and extend the research. We investigate how the structure and tooling of software packages of the R programming language are being used to produce research compendia in a variety of disciplines. We also describe how software engineering tools and services are being used by researchers to streamline working with research compendia. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'reproducibly', 'tooling', 'recognisable', 'friends'""" ; - sc:featureList edam:operation_3435, - edam:operation_3891 ; - sc:name "compendia" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.3192V2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0622, @@ -144268,7 +136615,7 @@ Computers are a central tool in the research process, enabling complex and large biotools:primaryContact "Umesh Nandal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3173 ; @@ -144289,7 +136636,7 @@ Computers are a central tool in the research process, enabling complex and large biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -144308,7 +136655,7 @@ Computers are a central tool in the research process, enabling complex and large biotools:primaryContact "Ashley J. Waardenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3372, @@ -144327,14 +136674,14 @@ Computers are a central tool in the research process, enabling complex and large a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -144350,8 +136697,29 @@ Computers are a central tool in the research process, enabling complex and large sc:softwareVersion "2.0" ; sc:url "https://github.com/robinparky/prolucidComPIL" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script", + "Workflow" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0625, + edam:topic_0659, + edam:topic_0769, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9250234", + "pubmed:35778686" ; + sc:description "A computational pipeline \"COMPILE\" to accelerate identification and annotation of candidate genes in Genome-Wide Association Studies." ; + sc:featureList edam:operation_0282, + edam:operation_0314, + edam:operation_3196, + edam:operation_3232 ; + sc:license "Not licensed" ; + sc:name "COMPILE" ; + sc:url "https://github.com/mjacksonhill/COMPILE_Hill_et_al._2022_BMC_Plant_Biology" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128 ; @@ -144363,7 +136731,7 @@ Computers are a central tool in the research process, enabling complex and large sc:url "http://raptorx2.uchicago.edu/ComplexContact/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -144383,14 +136751,14 @@ Computers are a central tool in the research process, enabling complex and large a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092 ; @@ -144414,7 +136782,7 @@ multiple heatmaps and supports various annotation graphics.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0605, @@ -144429,22 +136797,20 @@ multiple heatmaps and supports various annotation graphics.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ] ; + sc:additionalType "http://edamontology.org/data_0989" ; + sc:name "Protein identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ], + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Experiment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Experiment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "A two-dimensional polyacrilamide gel electrophoresis federated database." ; @@ -144454,7 +136820,7 @@ multiple heatmaps and supports various annotation graphics.""" ; sc:url "http://compluyeast2dpage.dacya.ucm.es/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -144473,10 +136839,10 @@ multiple heatmaps and supports various annotation graphics.""" ; a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Sarah Djebali" ; @@ -144492,7 +136858,7 @@ multiple heatmaps and supports various annotation graphics.""" ; biotools:primaryContact "Sarah Djebali" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:description "Compo is a software for composite motif discovery using discrete models." ; @@ -144503,16 +136869,41 @@ multiple heatmaps and supports various annotation graphics.""" ; "Windows" ; sc:url "http://tare.medisin.ntnu.no/compo/index.php" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal", + "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0154, + edam:topic_0157, + edam:topic_0203, + edam:topic_0621 ; + sc:citation , + "pmcid:PMC8728180", + "pubmed:34718745" ; + sc:description "Sequence composition dynamics of genes and genomes." ; + sc:featureList edam:operation_0284, + edam:operation_0310, + edam:operation_2421, + edam:operation_2962, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:name "CompoDynamics" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://ngdc.cncb.ac.cn/compodynamics/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -144528,14 +136919,12 @@ multiple heatmaps and supports various annotation graphics.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1355" ; - sc:name "Protein signature" ; - sc:sameAs "http://edamontology.org/data_1355" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1355" ; + sc:name "Protein signature" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -144553,18 +136942,15 @@ multiple heatmaps and supports various annotation graphics.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121 ; @@ -144583,8 +136969,29 @@ multiple heatmaps and supports various annotation graphics.""" ; sc:url "http://compomics.github.io/projects/compomics-utilities.html" ; biotools:primaryContact "Martens Lennart" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Script" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0602, + edam:topic_3315, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9281616", + "pubmed:35847767" ; + sc:description "This software is designed to visualize data, specifically combined scores data, utilizing graph theory and network analysis concepts." ; + sc:featureList edam:operation_1812, + edam:operation_3216, + edam:operation_3436, + edam:operation_3925 ; + sc:license "Not licensed" ; + sc:name "CompositeView" ; + sc:url "https://github.com/pathology-dynamics/composite_view" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation , @@ -144603,7 +137010,7 @@ multiple heatmaps and supports various annotation graphics.""" ; sc:url "http://www.cprofiler.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, @@ -144620,7 +137027,7 @@ multiple heatmaps and supports various annotation graphics.""" ; sc:url "https://github.com/ambf0632/CompoundDB4j" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -144638,7 +137045,7 @@ multiple heatmaps and supports various annotation graphics.""" ; sc:url "https://github.com/dmiller903/CompoundHetVIP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0797, edam:topic_3056, @@ -144657,7 +137064,7 @@ multiple heatmaps and supports various annotation graphics.""" ; biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "compreheNGSive is an interactive visualization of the end results of the next-generation sequencing pipeline." ; @@ -144670,7 +137077,7 @@ multiple heatmaps and supports various annotation graphics.""" ; biotools:primaryContact "Alex Bigelow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0209, edam:topic_0749, @@ -144684,7 +137091,7 @@ multiple heatmaps and supports various annotation graphics.""" ; sc:url "https://github.com/fullswing/CompRet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -144709,14 +137116,12 @@ multiple heatmaps and supports various annotation graphics.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1261" ; - sc:name "Sequence composition report" ; - sc:sameAs "http://edamontology.org/data_1261" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1261" ; + sc:name "Sequence composition report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -144746,7 +137151,7 @@ multiple heatmaps and supports various annotation graphics.""" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/compseq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0659, @@ -144768,10 +137173,9 @@ multiple heatmaps and supports various annotation graphics.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0949" ; - sc:name "Workflow metadata" ; - sc:sameAs "http://edamontology.org/data_0949" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0949" ; + sc:name "Workflow metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3372 ; sc:citation , @@ -144797,7 +137201,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; "Rosa M. Badia - Barcelona Supercomputing Center" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3071, @@ -144814,7 +137218,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; biotools:primaryContact "Antony J. Williams" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3407, edam:topic_3524 ; @@ -144830,7 +137234,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; biotools:primaryContact "Arun S. Moorthy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3070, @@ -144848,7 +137252,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; biotools:primaryContact "Michael Chan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -144866,14 +137270,14 @@ COMPSs workflows portable to HPC and Cloud without change""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -144893,58 +137297,58 @@ COMPSs workflows portable to HPC and Cloud without change""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -144961,7 +137365,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -144979,7 +137383,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; biotools:primaryContact "Arsen Arakelyan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0157, @@ -145002,7 +137406,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; biotools:primaryContact "Michail Yu. Lobanov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3382 ; sc:description "This small GUI program can simplify repeated COMSOL simulations." ; @@ -145018,22 +137422,22 @@ COMPSs workflows portable to HPC and Cloud without change""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3172, @@ -145053,7 +137457,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; sc:url "http://www.biomechanic.org/comspari" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2885, @@ -145070,7 +137474,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0625 ; @@ -145082,7 +137486,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; sc:url "https://github.com/vanallenlab/comut" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0176 ; @@ -145100,7 +137504,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; biotools:primaryContact "Csaba Daday" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2885, @@ -145123,7 +137527,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; "Sohrab P. Shah" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, @@ -145139,7 +137543,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; sc:url "http://bioinfo.icb.ufmg.br/conan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -145164,7 +137568,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; biotools:primaryContact "Abel González-Pérez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -145180,8 +137584,27 @@ COMPSs workflows portable to HPC and Cloud without change""" ; sc:url "http://code.google.com/p/condetri/" ; biotools:primaryContact "ConDeTri team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3068, + edam:topic_3303, + edam:topic_3474 ; + sc:citation , + "pubmed:35801895" ; + sc:description "CondiS is a web tool with user-friendly GUI to address the censoring problem in machine learning-based survival analysis." ; + sc:featureList edam:operation_3503, + edam:operation_3557 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CondiS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://biostatistics.mdanderson.org/shinyapps/CondiS/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -145200,7 +137623,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; sc:url "https://github.com/kjaqaman/conditionalColoc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3373, @@ -145219,14 +137642,13 @@ COMPSs workflows portable to HPC and Cloud without change""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0085 ; sc:author "Kasper Daniel Hansen", @@ -145247,10 +137669,10 @@ COMPSs workflows portable to HPC and Cloud without change""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation , @@ -145271,7 +137693,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; "Roberto Tagliaferri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_2828, @@ -145292,7 +137714,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; biotools:primaryContact "Max F. Hantke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3344, @@ -145308,7 +137730,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; biotools:primaryContact "Deshan Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -145330,7 +137752,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; "Sebastian Proost" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259 ; sc:author "Karoline Faust" ; @@ -145356,7 +137778,7 @@ COMPSs workflows portable to HPC and Cloud without change""" ; biotools:primaryContact "Karoline Faust" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3172, edam:topic_3174, @@ -145387,7 +137809,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m sc:url "http://apps.cytoscape.org/apps/conet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -145409,7 +137831,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m biotools:primaryContact "C. S. Moreno" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -145427,7 +137849,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m biotools:primaryContact "Diana LOW" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -145450,7 +137872,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m sc:url "http://sbcb.inf.ufrgs.br/confid" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Various methods for estimating parametric and non-parametric confidence intervals for the AUC." ; sc:isAccessibleForFree true ; @@ -145464,7 +137886,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m biotools:primaryContact "Brian Lau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3385 ; sc:citation ; @@ -145480,8 +137902,25 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m sc:url "https://github.com/ElsevierSoftwareX/SOFTX-D-17-00018" ; biotools:primaryContact "Serge Dmitrieff" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0081, + edam:topic_3047, + edam:topic_3474 ; + sc:citation , + "pubmed:36000759" ; + sc:description "Conformer-RL is an open-source Python package for applying deep reinforcement learning (RL) to the task of generating a diverse set of low-energy conformations for a single molecule. The library features a simple interface to train a deep RL conformer generation model on any covalently bonded molecule or polymer, including most drug-like molecules." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Conformer-RL" ; + sc:softwareHelp , + ; + sc:url "https://github.com/ZimmermanGroup/conformer-rl" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, @@ -145498,8 +137937,51 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m sc:url "https://www.mathworks.com/matlabcentral/fileexchange/24358-confortho" ; biotools:primaryContact "Peter Nagy" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0625, + edam:topic_2269, + edam:topic_3295, + edam:topic_3308 ; + sc:citation , + "pubmed:35298589" ; + sc:description "A Bayesian method to cluster single-cell RNA sequencing data using Copy Number Alterations." ; + sc:featureList edam:operation_3196, + edam:operation_3432, + edam:operation_3454 ; + sc:license "GPL-3.0" ; + sc:name "CONGAS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/caravagnalab/congas" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_3382, + edam:topic_3474, + edam:topic_3518 ; + sc:citation , + "pubmed:34664632" ; + sc:description "ConGRI is a contrastive learning scheme based on deep Siamese CNN architecture, which identifies gene regulatory interactions from gene expression images." ; + sc:featureList edam:operation_1781, + edam:operation_2437, + edam:operation_3436, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:name "ConGRI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/lugimzheng/ConGRI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3170, @@ -145516,7 +137998,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m biotools:primaryContact "Aaron Diaz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -145534,7 +138016,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m sc:url "https://github.com/LeilaBagha/Conifer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -145551,7 +138033,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m sc:url "https://conjupepdb.ttk.hu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -145568,7 +138050,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m "Felix Simkovic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -145584,7 +138066,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m sc:url "https://ConnecTF.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -145602,7 +138084,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, @@ -145623,14 +138105,14 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623 ; sc:author ; @@ -145649,7 +138131,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, @@ -145668,14 +138150,13 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2804" ; - sc:name "Protein ID (ConoServer)" ; - sc:sameAs "http://edamontology.org/data_2804" ] ; + sc:additionalType "http://edamontology.org/data_2804" ; + sc:name "Protein ID (ConoServer)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation , @@ -145694,7 +138175,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -145718,7 +138199,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m sc:url "http://sbi.postech.ac.kr/ConPlex/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128 ; @@ -145733,7 +138214,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m sc:url "http://www.conplot.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2275 ; @@ -145750,7 +138231,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m sc:url "http://bental.tau.ac.il/ConQuass/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -145768,7 +138249,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m sc:url "https://github.com/roderickslieker/CONQUER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3050, @@ -145791,7 +138272,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m biotools:primaryContact "Gilles Dauby" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -145813,7 +138294,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m biotools:primaryContact "Eigene Berezikov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0625, @@ -145833,22 +138314,18 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0848" ; - sc:name "Raw sequence" ; - sc:sameAs "http://edamontology.org/data_0848" ], + sc:additionalType "http://edamontology.org/data_0848" ; + sc:name "Raw sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -145878,7 +138355,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m sc:url "http://emboss.open-bio.org/rel/rel6/apps/cons.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Creates a consensus from multiple alignments." ; @@ -145889,16 +138366,38 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m sc:softwareVersion "1" ; sc:url "http://genius.embnet.dkfz-heidelberg.de/menu/hobit/embdoc/cons.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0082, + edam:topic_0097, + edam:topic_0099, + edam:topic_3170 ; + sc:citation , + "pubmed:34694364" ; + sc:description "ConsAlifold, a dynamic programming-based method that predicts the consensus secondary structure of an RNA sequence alignment." ; + sc:featureList edam:operation_0278, + edam:operation_0295, + edam:operation_0502, + edam:operation_2441, + edam:operation_3663 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ConsAlifold" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/heartsh/consalifold" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -145927,8 +138426,38 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/consambig.html" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_1984" ; + sc:name "Protein sequence alignment" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0821, + edam:topic_3534 ; + sc:citation , + "pubmed:17519246" ; + sc:description "An online WEB application that scores residue conservation a site on a Multiple Sequence Alignment based on Jensen-Shannon Divergence, introduced by Capra and Singh." ; + sc:featureList edam:operation_0448, + edam:operation_0492, + edam:operation_3896, + edam:operation_3897 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ConsCapra07" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "v1.1.0" ; + sc:url "https://shin-kinos.github.io/cons-capra07-wasm/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0196, @@ -145947,7 +138476,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m sc:url "http://bioinfolab.unl.edu/emlab/consemble/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -145967,7 +138496,7 @@ CoNet detects significant non-random patterns of co-occurrence (copresence and m biotools:primaryContact "Stormo Laboratory" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170, @@ -145995,22 +138524,22 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -146031,7 +138560,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Matt Wilkerson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3308, @@ -146054,62 +138583,58 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2776" ; - sc:name "ConsensusPathDB entity ID" ; - sc:sameAs "http://edamontology.org/data_2776" ], + sc:additionalType "http://edamontology.org/data_2776" ; + sc:name "ConsensusPathDB entity ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2777" ; - sc:name "ConsensusPathDB entity name" ; - sc:sameAs "http://edamontology.org/data_2777" ], + sc:additionalType "http://edamontology.org/data_2776" ; + sc:name "ConsensusPathDB entity ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2091" ; - sc:name "Accession" ; - sc:sameAs "http://edamontology.org/data_2091" ], + sc:additionalType "http://edamontology.org/data_2777" ; + sc:name "ConsensusPathDB entity name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2776" ; - sc:name "ConsensusPathDB entity ID" ; - sc:sameAs "http://edamontology.org/data_2776" ], + sc:additionalType "http://edamontology.org/data_2345" ; + sc:name "Pathway ID (ConsensusPathDB)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2776" ; - sc:name "ConsensusPathDB entity ID" ; - sc:sameAs "http://edamontology.org/data_2776" ], + sc:additionalType "http://edamontology.org/data_2342" ; + sc:name "Pathway or network name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2342" ; - sc:name "Pathway or network name" ; - sc:sameAs "http://edamontology.org/data_2342" ], + sc:additionalType "http://edamontology.org/data_2091" ; + sc:name "Accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2345" ; - sc:name "Pathway ID (ConsensusPathDB)" ; - sc:sameAs "http://edamontology.org/data_2345" ] ; + sc:additionalType "http://edamontology.org/data_2776" ; + sc:name "ConsensusPathDB entity ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein interaction data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ], + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein interaction data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0905" ; - sc:name "Protein interaction raw data" ; - sc:sameAs "http://edamontology.org/data_0905" ], + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein interaction data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0905" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein interaction raw data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602 ; - sc:citation ; + sc:citation , + , + "pmcid:PMC8728246", + "pubmed:34850110" ; sc:description "Information on physical molecular interactions, biochemical pathways, and gene regulatory networks in human." ; sc:featureList edam:operation_0224 ; sc:name "ConsensusPathDB" ; @@ -146121,8 +138646,28 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://cPDB.molgen.mpg.de/" ; biotools:primaryContact "Dr. Atanas Kamburov" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workflow" ; + sc:applicationSubCategory edam:topic_0081, + edam:topic_0632, + edam:topic_0769 ; + sc:citation ; + sc:description "Pipeline to identify ideal consensus regions from homologue sequences for primer design." ; + sc:featureList edam:operation_0292, + edam:operation_0308, + edam:operation_0564, + edam:operation_3237, + edam:operation_3965 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ConsensusPrime" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/mcollatz/ConsensusPrime" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -146141,7 +138686,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Astrid Louise Deschenes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0593, @@ -146159,7 +138704,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://consensx.itk.ppke.hu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2258, @@ -146175,7 +138720,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Francois Berenger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0196, @@ -146192,7 +138737,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://github.com/morispi/CONSENT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3173, @@ -146209,7 +138754,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://github.com/PayamDiba/CoNSEPT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -146231,20 +138776,30 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://conseq.bioinfo.tau.ac.il/" ; biotools:primaryContact "ConSeq Support" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_3053, - edam:topic_3810 ; - sc:citation , - "pubmed:31392753" ; - sc:description "> LOW CONFIDENCE! | Linking science with practice | 3rd Annual Meeting in Conservation Genetics 2018 – at the Natural History Museum Vienna | 3rd Annual Meeting in Conservation Genetics 2018 | at the Natural History Museum Vienna | on behalf of the scientific committee we invite you to the 3rd Annual Meeting in Conservation Genetics which will be held from 26-28 February 2018 at the Natural History Museum Vienna. Your contributions will inform on exciting conservation genetic research and emerging new developments. Our objectives are to provide a platform for personal exchange for scientists, practitioners and stakeholders interested in conservation genetics and to establish a network in conservation genetics in Central Europe and beyond. Keynotes will be given by renowned scientists from within the European conservation genetic community" ; - sc:featureList edam:operation_3196, - edam:operation_3435 ; - sc:name "conservation genetics" ; - sc:url "https://consgen18.nhm-wien.ac.at/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_3172, + edam:topic_3308, + edam:topic_3360 ; + sc:citation , + "pubmed:35758241" ; + sc:description "ConSIG is a web page which can discovery of molecular signature from OMIC data." ; + sc:featureList edam:operation_2422, + edam:operation_3501, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:name "ConSIG" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://idrblab.org/consig/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -146266,7 +138821,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Annika Sandelin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0623, @@ -146284,7 +138839,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Godzik Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_2640, @@ -146302,7 +138857,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://www.consort-nlp.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3379, @@ -146317,14 +138872,12 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259 ; sc:citation ; @@ -146339,7 +138892,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Thomas Rattei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, edam:topic_0780, @@ -146357,7 +138910,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://github.com/LiLabAtVT/ConSReg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0160, @@ -146376,7 +138929,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Jia Meng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -146395,7 +138948,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://bioconductor.org/packages/devel/bioc/html/CONSTANd.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637 ; sc:citation ; @@ -146410,7 +138963,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Gian Maria Niccolò Benucci" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174, @@ -146427,7 +138980,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, @@ -146444,7 +138997,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://github.com/ivirshup/constclust" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2229, @@ -146461,7 +139014,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0166 ; sc:author "Guy Yachdav, Gershon Celniker" ; @@ -146477,7 +139030,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Rostlab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2275 ; @@ -146493,8 +139046,26 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:softwareHelp ; sc:url "https://consurfdb.tau.ac.il/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_0099, + edam:topic_3170 ; + sc:citation , + "pubmed:34619810" ; + sc:description "Server for the Identification of Functional Regions in Proteins." ; + sc:featureList edam:operation_0292, + edam:operation_2421 ; + sc:isAccessibleForFree true ; + sc:name "ConSurf" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://consurf.tau.ac.il/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0108, @@ -146513,7 +139084,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Daisuke Kihara" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -146530,7 +139101,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://github.com/zhanghfd/contamDE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation , @@ -146541,7 +139112,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://github.com/sapfo/contaminationX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -146557,7 +139128,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://github.com/nathan-nakatsuka/ContamLD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation "pubmed:21803805" ; @@ -146571,8 +139142,25 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://archive.broadinstitute.org/cancer/cga/contest" ; biotools:primaryContact "ContEst team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102 ; + sc:citation , + "pmcid:PMC4411664", + "pubmed:25928589" ; + sc:description "ContextMap is a very accurate read mapping tool for data from RNA-seq experiments. It can be used to refine mapping provided by other tools or as a standalone program." ; + sc:featureList edam:operation_3198 ; + sc:isAccessibleForFree true ; + sc:name "contextmap" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://www.bio.ifi.lmu.de/software/contextmap/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -146592,7 +139180,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749, @@ -146611,16 +139199,32 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:name "ContigExtender" ; sc:url "https://github.com/dengzac/contig-extender" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0798, + edam:topic_3168, + edam:topic_3174, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9235506", + "pubmed:35758806" ; + sc:description "Phage-bacterial contig association prediction with a convolutional neural network." ; + sc:featureList edam:operation_0310, + edam:operation_3731, + edam:operation_3927 ; + sc:license "Other" ; + sc:name "ContigNet" ; + sc:url "https://github.com/tianqitang1/ContigNet" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:name "Sequence assembly" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174 ; sc:description "Assigns taxonomy to metagenomic contigs." ; @@ -146638,14 +139242,13 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1711" ; - sc:name "Sequence alignment image" ; - sc:sameAs "http://edamontology.org/data_1711" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1711" ; + sc:encodingFormat "http://edamontology.org/format_1333" ; + sc:name "Sequence alignment image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080 ; @@ -146659,7 +139262,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://contiguator.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -146674,8 +139277,55 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:softwareVersion "1.0.4" ; sc:url "http://mjsull.github.io/Contiguity/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0769, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9205324", + "pubmed:35720672" ; + sc:description "A novel, open-source interactive computation and visualization tool for brain connectome data." ; + sc:featureList edam:operation_0337, + edam:operation_2428 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CONTINUITY" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/NIRALUser/CONTINUITY" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_2229, + edam:topic_3068, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC9202106", + "pubmed:35705903" ; + sc:description "Elucidating gene expression patterns across multiple biological contexts through a large-scale investigation of transcriptomic datasets." ; + sc:featureList edam:operation_3463, + edam:operation_3766, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ContNeXt" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://contnext.scai.fraunhofer.de/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3169, @@ -146694,7 +139344,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://github.com/GLBRC/contort" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3299, @@ -146713,7 +139363,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Li Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation "pubmed:23613489" ; @@ -146725,7 +139375,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://sites.google.com/site/contourv1/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation "pubmed:25521701" ; @@ -146737,7 +139387,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://sites.google.com/site/contourv2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2640, @@ -146759,14 +139409,12 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation , @@ -146784,7 +139432,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://bioit.irc.ugent.be/contrav2/index.php?v2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -146801,7 +139449,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://bioit2.irc.ugent.be/contra/v3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099, @@ -146818,7 +139466,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://contra.stanford.edu/contrafold/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -146832,7 +139480,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Steven L. Salzberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "CONTRAlign (CONditional TRAining for Protein Sequence Alignment)is an extensible and fully automatic parameter learning framework for protein pairwise sequence alignment based on pair conditional random fields. The CONTRAlign framework enables the development of feature-rich alignment models which generalize well to previously unseen sequences and avoid overfitting by controlling model complexity through regularization." ; @@ -146844,8 +139492,26 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:softwareVersion "2.01" ; sc:url "http://contra.stanford.edu/contralign/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_2640, + edam:topic_3293 ; + sc:citation ; + sc:description "A consensus method of tumor trees based on maximum directed partition support problem." ; + sc:featureList edam:operation_0323, + edam:operation_0325 ; + sc:isAccessibleForFree true ; + sc:license "CC0-1.0" ; + sc:name "ConTreeDP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/CMUSchwartzLab/ConTreeDP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "Control-FREEC is a tool for detection of copy-number changes and allelic imbalances (including LOH) using deep-sequencing data" ; sc:featureList edam:operation_3964 ; @@ -146853,7 +139519,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://boevalab.inf.ethz.ch/FREEC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -146872,22 +139538,22 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3117" ; - sc:name "Microarray hybridisation data" ; - sc:sameAs "http://edamontology.org/data_3117" ], + sc:additionalType "http://edamontology.org/data_3117" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Microarray hybridisation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -146907,7 +139573,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Volker Hovestadt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0099 ; @@ -146924,7 +139590,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://eddylab.org/software/conus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -146946,7 +139612,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; "Simon Larsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -146965,30 +139631,30 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2854" ; - sc:name "Position-specific scoring matrix" ; - sc:sameAs "http://edamontology.org/data_2854" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_2854" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Position-specific scoring matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2854" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Position-specific scoring matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2854" ; - sc:name "Position-specific scoring matrix" ; - sc:sameAs "http://edamontology.org/data_2854" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -147010,14 +139676,14 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:encodingFormat "http://edamontology.org/format_2068" ; + sc:name "Sequence motif (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:encodingFormat "http://edamontology.org/format_2068" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -147041,22 +139707,22 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3063, @@ -147076,14 +139742,14 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -147097,34 +139763,34 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -147142,18 +139808,18 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -147170,7 +139836,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0209, @@ -147186,7 +139852,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://team.inria.fr/nano-d/convex-pl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3168, @@ -147202,7 +139868,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://convida.inf.um.es" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3376, @@ -147218,7 +139884,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Dongsup Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -147234,7 +139900,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Ibraheem Al-Dhamari" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -147250,8 +139916,32 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:name "CONY" ; sc:url "https://github.com/weiyuchung/CONY" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_2830, + edam:topic_3277, + edam:topic_3305 ; + sc:citation , + "pmcid:PMC9335369", + "pubmed:35910222" ; + sc:description "Selecting Representative Samples From Complex Biological Datasets Using K-Medoids Clustering." ; + sc:featureList edam:operation_0480, + edam:operation_3432, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Cookie" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://wilsonimmunologylab.github.io/Cookie/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -147267,7 +139957,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://github.com/GangCaoLab/CoolBox" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0749, @@ -147287,14 +139977,12 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092 ; sc:author "David Sehnal" ; @@ -147313,38 +140001,38 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -147362,13 +140050,15 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_1317 ; - sc:citation ; + sc:citation , + , + "pmcid:PMC2852313", + "pubmed:20383002" ; sc:description "(Crystallographic Object)-Oriented Toolkit." ; sc:featureList edam:operation_0570 ; sc:isAccessibleForFree true ; @@ -147381,7 +140071,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://www2.mrc-lmb.cam.ac.uk/personal/pemsley/coot/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640 ; @@ -147400,7 +140090,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "James W. MacDonald" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0602, @@ -147424,14 +140114,14 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3685" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3685" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Library" ; @@ -147452,7 +140142,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://copasi.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3322, edam:topic_3360, @@ -147465,7 +140155,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "David van Klaveren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_3298, @@ -147482,8 +140172,22 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:softwareVersion "1.4.1" ; sc:url "https://bitbucket.org/izhbannikov/cophesim" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation "pubmed:18928200" ; + sc:description "Composition based Protein Identification" ; + sc:featureList edam:operation_2945 ; + sc:name "copid" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/copid/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_0196, @@ -147508,34 +140212,34 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Feature table" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ], + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Feature table" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author , @@ -147559,7 +140263,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; "Patrick Wright" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -147581,7 +140285,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "TopSearch Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3172, edam:topic_3174, @@ -147598,7 +140302,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://github.com/tyjo/coptr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -147612,8 +140316,31 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:name "CoPub" ; sc:url "http://www.copub.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0625, + edam:topic_2640, + edam:topic_3173, + edam:topic_3940 ; + sc:citation , + "pmcid:PMC8514091", + "pubmed:34644115" ; + sc:description "Deconvoluting single-cell chromatin accessibility of genetic subclones in cancer." ; + sc:featureList edam:operation_3196, + edam:operation_3233, + edam:operation_3629 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Copy-scAT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/spcdot/CopyscAT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -147629,7 +140356,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://apps.cytoscape.org/apps/copycatLayout" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091 ; sc:author "Sarah Sandmann" ; @@ -147648,26 +140375,26 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_1622" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Disease report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1622" ; - sc:name "Disease report" ; - sc:sameAs "http://edamontology.org/data_1622" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -147689,8 +140416,28 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/copynumber.html" ; biotools:primaryContact "Gro Nilsen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_3301, + edam:topic_3697, + edam:topic_3941 ; + sc:citation , + "pmcid:PMC4021573", + "pubmed:24708850" ; + sc:description "Correct trait bias in microbial profiles" ; + sc:featureList edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "copyrighter" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/fangly/AmpliCopyrighter" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0625, @@ -147708,7 +140455,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://www.embl.de/%7Ekorbel/CopySeq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -147728,7 +140475,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Thomas Kuilman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622 ; @@ -147744,7 +140491,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Kevin Teague" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -147760,7 +140507,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://github.com/Shao-Group/coral" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3299, @@ -147776,7 +140523,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0634, @@ -147793,7 +140540,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://phanstiel-lab.med.unc.edu/coralp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -147813,7 +140560,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://corazon.integrativebioinformatics.me" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602 ; @@ -147831,7 +140578,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Ling-Yun Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -147847,8 +140594,29 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact , "Jonas Förster" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0621, + edam:topic_3673 ; + sc:citation , + "pubmed:35696018" ; + sc:description "The Chordata Olfactory Receptor Database (CORD) build from the annotation data from the command line tool Genome2OR" ; + sc:featureList edam:operation_0269, + edam:operation_0310, + edam:operation_0362 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "CORD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cord.ihuman.shanghaitech.edu.cn" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pmcid:PMC7335209", "pubmed:32620861" ; @@ -147858,8 +140626,29 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://cordax.switchlab.org" ; biotools:primaryContact "Joost Schymkowitz" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8501646", + "pubmed:34627139" ; + sc:description "R package for visualizing multi-omics differential correlation networks." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:name "CorDiffViz" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/sqyu/CorDiffViz" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0209, edam:topic_0781, @@ -147875,7 +140664,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://cordite.mathematik.uni-marburg.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -147891,7 +140680,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://rpubs.com/AleVin1995/CoRe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3316, @@ -147913,7 +140702,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0625 ; @@ -147931,8 +140720,33 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://www.corehunter.org" ; biotools:primaryContact "Herman De Beukelaer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0625, + edam:topic_0749, + edam:topic_3169, + edam:topic_3173 ; + sc:citation , + "pmcid:PMC8699717", + "pubmed:34898596" ; + sc:description "A deep learning model for the functional classification of regulatory elements from single cell and bulk ATAC-seq data." ; + sc:featureList edam:operation_0440, + edam:operation_3192, + edam:operation_3196, + edam:operation_3222, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CoRE-ATAC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/UcarLab/CoRE-ATAC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622 ; sc:citation , @@ -147944,7 +140758,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://github.com/lbobay/CoreCruncher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0781, @@ -147962,7 +140776,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602 ; @@ -147982,7 +140796,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3301, @@ -148004,22 +140818,20 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3303 ; @@ -148041,7 +140853,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://www.coremine.com/medical" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3176, @@ -148059,7 +140871,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://github.com/DeepLearningForSequence/CORENup-A-Combination-of-Convolutional-and-Recurrent-Deep-Neural-Networks-for-NucleosomePositioning" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, @@ -148077,7 +140889,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://github.com/lbobay/CoreSimul" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -148092,8 +140904,30 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://github.com/UdeM-LBIT/CoreTracker" ; biotools:primaryContact "Nadia El-Mabrouk" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_3303, + edam:topic_3375, + edam:topic_3379, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8576113", + "pubmed:34778851" ; + sc:description "The COVID-19 Repositioning Explorer (CoREx) is a web resource to allow the visualisation of FDA approved drugs in context of their protein targets, several available interactomes, and protein function." ; + sc:featureList edam:operation_0337, + edam:operation_3223, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:name "CoREx" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://paccanarolab.org/corex/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workbench", "Workflow" ; @@ -148112,7 +140946,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://corgat.cloud.ba.infn.it/galaxy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157, @@ -148133,7 +140967,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Philipp W. Messer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3170, @@ -148153,7 +140987,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "http://cgdb.bio2db.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -148168,7 +141002,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://github.com/LasisUFRN/CoRINs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0780 ; @@ -148186,7 +141020,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Daniel Sobral" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3511 ; @@ -148205,7 +141039,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Yingying Wei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199 ; @@ -148223,7 +141057,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Zhenpeng Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0769, @@ -148239,26 +141073,26 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -148282,7 +141116,7 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; biotools:primaryContact "Elin Axelsson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -148298,47 +141132,16 @@ Clustering, MultipleComparison, Sequencing, Software, Transcriptomics""" ; sc:url "https://github.com/joel-lzb/CORNAS" ; biotools:primaryContact "Tsung Fei Khang" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3360, - edam:topic_3382, - edam:topic_3421, - edam:topic_3474 ; - sc:citation , - "pubmed:31720728" ; - sc:description """An artificial intelligence-based deep learning algorithm for the diagnosis of diabetic neuropathy using corneal confocal microscopy. - -Laboratory of Biomedical Imaging. - -The Laboratory of Biomedical Imaging (BioImLab) is part of the Department of Information Engineering (DEI) of the University of Padova, Italy. BioImLab is involved in the research of novel techniques for biomedical image processing and analysis and in the development of diagnostic tools related to this field. - -Corneal Nerve Tortuosity Data Set. - -Corneal Nerve Images [.zip] [size: 3.59MB]. - -Department of Information Engineering , University of Padova - Italy. - -Acquisition instrument: Heidelberg Retina Tomograph II with Rostock Corneal Module (HRTII32-RCM) confocal laser microscope (Heidelberg Engineering GmbH, Heidelberg, Germany). - -F Scarpa, E. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'HYPOTHESIS:Corneal', 'ACCMetrics', 'corneal nerve', 'INTERPRETATION:These'""" ; - sc:featureList edam:operation_3443, - edam:operation_3553, - edam:operation_3799 ; - sc:name "corneal" ; - sc:url "http://bioimlab.dei.unipd.it/Corneal%20Nerve%20Tortuosity%20Data%20Set.htm" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_3542 ; @@ -148357,18 +141160,15 @@ F Scarpa, E. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602 ; @@ -148388,18 +141188,15 @@ F Scarpa, E. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602 ; @@ -148417,7 +141214,7 @@ F Scarpa, E. sc:url "https://bioinformatics.psb.ugent.be/cornet_maize/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -148433,7 +141230,7 @@ F Scarpa, E. biotools:primaryContact "Shahab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -148448,7 +141245,7 @@ F Scarpa, E. biotools:primaryContact "Tom Viering" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -148464,7 +141261,7 @@ F Scarpa, E. biotools:primaryContact "aasim Azooz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0625, edam:topic_3318, @@ -148479,7 +141276,7 @@ F Scarpa, E. sc:url "https://www.corona-health.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3474, @@ -148494,7 +141291,7 @@ F Scarpa, E. biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, @@ -148512,7 +141309,7 @@ F Scarpa, E. sc:url "http://giorgilab.unibo.it/coronannotator/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0196, @@ -148535,7 +141332,7 @@ F Scarpa, E. sc:url "http://cab.spbu.ru/software/spades" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -148554,7 +141351,7 @@ F Scarpa, E. sc:url "https://webs.iiitd.edu.in/raghava/coronavir/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -148573,7 +141370,7 @@ F Scarpa, E. biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -148591,7 +141388,7 @@ F Scarpa, E. biotools:primaryContact "JM2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0781, @@ -148602,7 +141399,7 @@ F Scarpa, E. sc:url "https://www.worldometers.info/coronavirus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0659, @@ -148620,7 +141417,7 @@ F Scarpa, E. sc:url "http://bioinfo.imtech.res.in/manojk/coronavr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3452, @@ -148635,8 +141432,27 @@ F Scarpa, E. sc:name "CoroNet" ; sc:url "https://github.com/drkhan107/CoroNet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2269, + edam:topic_3170 ; + sc:citation ; + sc:description "Single-cell RNA-seq dimension reduction, batch integration, and visualization with correspondence analysis." ; + sc:featureList edam:operation_2939, + edam:operation_3891, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "corral" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/laurenhsu1/corral" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:description "A R pipeline to correlate drug distribution with tumor tissue-types in mass spectrometry imaging (MSI) data." ; sc:isAccessibleForFree true ; @@ -148645,7 +141461,7 @@ F Scarpa, E. sc:url "https://github.com/mridulaprasad/CorrDrugTumorMSI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -148662,7 +141478,7 @@ F Scarpa, E. biotools:primaryContact "Itoshi Nikaido" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -148685,22 +141501,21 @@ F Scarpa, E. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0166, edam:topic_3510 ; @@ -148717,7 +141532,7 @@ correlationplus contains three main scripts that you can use to calculate, visua sc:url "https://github.com/tekpinar/correlationplus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0769, @@ -148733,7 +141548,7 @@ correlationplus contains three main scripts that you can use to calculate, visua sc:url "https://github.com/wright-cemrc-projects/corr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3301, @@ -148751,7 +141566,7 @@ correlationplus contains three main scripts that you can use to calculate, visua sc:url "http://www.ufz.de/correlia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -148772,7 +141587,7 @@ correlationplus contains three main scripts that you can use to calculate, visua biotools:primaryContact "Eckart Bindewald" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -148790,7 +141605,7 @@ correlationplus contains three main scripts that you can use to calculate, visua biotools:primaryContact "Dongxiao Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -148811,7 +141626,7 @@ correlationplus contains three main scripts that you can use to calculate, visua "Jerome Waldispuhl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3391 ; sc:citation ; @@ -148827,7 +141642,7 @@ correlationplus contains three main scripts that you can use to calculate, visua biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -148842,7 +141657,7 @@ correlationplus contains three main scripts that you can use to calculate, visua "Zamin Iqbal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -148859,14 +141674,13 @@ correlationplus contains three main scripts that you can use to calculate, visua a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2713" ; - sc:name "Protein ID (CORUM)" ; - sc:sameAs "http://edamontology.org/data_2713" ] ; + sc:additionalType "http://edamontology.org/data_2713" ; + sc:name "Protein ID (CORUM)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0140 ; @@ -148886,14 +141700,12 @@ correlationplus contains three main scripts that you can use to calculate, visua a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602 ; @@ -148914,7 +141726,7 @@ correlationplus contains three main scripts that you can use to calculate, visua biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -148935,7 +141747,7 @@ correlationplus contains three main scripts that you can use to calculate, visua biotools:primaryContact "Andrea Rau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -148953,7 +141765,7 @@ correlationplus contains three main scripts that you can use to calculate, visua sc:url "https://ibm.biz/cosifer-aas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3300, @@ -148978,8 +141790,28 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:name "cosinor" ; sc:url "https://cosinor.online" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3300, + edam:topic_3410, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8590130", + "pubmed:34773978" ; + sc:description "R package for mixed-effects cosinor models. The cosinoRmixedeffects package can be implemented for the estimation and prediction of the a mixed-effects cosinor model for longitudinal periodic data." ; + sc:featureList edam:operation_0337, + edam:operation_2238 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "cosinoRmixedeffects" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/maytesuarezfarinas/cosinoRmixedeffects" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2815, @@ -148996,7 +141828,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://github.com/mmoskon/CosinorPy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -149014,7 +141846,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://github.com/jtmff/cosmas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -149035,7 +141867,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://mulongdu.shinyapps.io/cosmed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3407 ; sc:description "Import Cosmed FitMate metabolic data text files into MATLAB." ; @@ -149049,7 +141881,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating biotools:primaryContact "John Rogers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -149081,7 +141913,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating biotools:primaryContact "Cosmic Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3172 ; @@ -149102,7 +141934,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating "David Fischer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_2275, @@ -149115,7 +141947,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "http://www.cosmos-software.de/ce_intro.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -149134,7 +141966,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://saezlab.github.io/cosmosR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3510 ; @@ -149152,7 +141984,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating biotools:primaryContact "Marco Frasca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3071, @@ -149170,7 +142002,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://github.com/bpbond/cosore" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2275 ; @@ -149189,7 +142021,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating biotools:primaryContact "Luigi Cavallo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_3308, edam:topic_3474 ; @@ -149207,7 +142039,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://github.com/rpmccordlab/CoSTA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "CoStat is an easy-to-use program for data manipulation and statistical analysis." ; @@ -149221,7 +142053,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "http://www.cohort.com/costat.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3170, @@ -149244,7 +142076,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://github.com/seriph78/COTAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2885, @@ -149266,8 +142098,26 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:softwareVersion "2.0" ; sc:url "https://barcuvaseq.org/cotrex/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0804, + edam:topic_3068, + edam:topic_3384, + edam:topic_3400 ; + sc:citation , + "pubmed:35764876" ; + sc:description "A consensus-based decision tool for initiating antitubercular therapy in ocular tuberculosis." ; + sc:isAccessibleForFree true ; + sc:name "COTS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.oculartb.net/cots-calc" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0654, @@ -149289,7 +142139,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating "RALUCA GORDÂN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3299 ; sc:citation ; sc:description "Count is a software package for the evolutionary analysis of homolog family sizes (phylogenetic profiles), or other numerical census-type characters along a phylogeny." ; @@ -149299,7 +142149,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "http://www.iro.umontreal.ca/~csuros/gene_content/count.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170 ; @@ -149318,7 +142168,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating biotools:primaryContact "Kushal Dey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0202, @@ -149338,7 +142188,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating "Michał Burdukiewicz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3382, @@ -149354,7 +142204,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating biotools:primaryContact "Tyler Coye" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3070, @@ -149374,14 +142224,14 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -149399,18 +142249,18 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -149428,18 +142278,18 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -149456,7 +142306,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3068, @@ -149477,7 +142327,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating "Mark Robinson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, edam:topic_3474 ; @@ -149491,7 +142341,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://github.com/cuhklinlab/coupleCoC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2830, @@ -149506,7 +142356,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "http://opig.stats.ox.ac.uk/webapps/covabdab/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -149525,7 +142375,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "http://cov.genometracker.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -149538,8 +142388,32 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:name "CoV-GLUE" ; sc:url "http://cov-glue.cvr.gla.ac.uk" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0634 ; + sc:citation , + , + , + "pmcid:PMC7200764", + "pmcid:PMC7817765", + "pmcid:PMC8524328", + "pubmed:32371892", + "pubmed:33478554", + "pubmed:34664389" ; + sc:description "A web tool implements a mechanistic model of human signaling for the interpretation of the consequences of the combined changes of gene expression levels and/or genomic mutations in the context of signalling pathways known to be involved in the infection by SARS-CoV-2, which are updated with the curated versions released by the COVID-19 Disease Map curation project ." ; + sc:isAccessibleForFree true ; + sc:name "CoV-Hipathia" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "1.0.0" ; + sc:url "http://hipathia.babelomics.org/covid19/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -149555,44 +142429,67 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:name "CoV-Seq" ; sc:url "http://covseq.baidu.com/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0091, + edam:topic_3379, + edam:topic_3966 ; + sc:citation , + "pmcid:PMC8716025", + "pubmed:34981039" ; + sc:description "Cov19VaxKB: COVID-19 Vaccine Knowledge Base." ; + sc:featureList edam:operation_0416, + edam:operation_0560, + edam:operation_2422, + edam:operation_3454, + edam:operation_3968 ; + sc:isAccessibleForFree true ; + sc:name "Cov19VaxKB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.violinet.org/cov19vaxkb/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3005" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0102, @@ -149616,7 +142513,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://mmonot.eu/COV2HTML" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0781 ; sc:description "CoV2ID provides a complete, quality checked and regularly updated list of oligonucleotides for SARS-CoV-2. The database evaluates available therapeutic and detection protocols according to the virus genetic diversity." ; @@ -149624,8 +142521,30 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "http://covid.portugene.com/cgi-bin/COVid_home.cgi" ; biotools:primaryContact "João Carneiro" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0199, + edam:topic_0781, + edam:topic_3305, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9160032", + "pubmed:35650205" ; + sc:description "CoV2K is available for exploration as a graph that can be queried through a RESTful API addressing single entities or paths through their relationships" ; + sc:featureList edam:operation_0224, + edam:operation_3280, + edam:operation_3431, + edam:operation_3432, + edam:operation_3436 ; + sc:license "Apache-2.0" ; + sc:name "CoV2K" ; + sc:softwareHelp ; + sc:url "https://github.com/DEIB-GECO/cov2k_data_collector/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0154, @@ -149641,10 +142560,9 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:name "Sequence set (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation "pubmed:29402227" ; @@ -149659,7 +142577,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://bioinformatics.cineca.it/covacs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2259, edam:topic_2269, @@ -149674,7 +142592,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "http://www.univie.ac.at/mosys/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation , @@ -149689,8 +142607,15 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:softwareVersion "1.5" ; sc:url "http://sourceforge.net/projects/coval105/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "CovalentDocking" ; + sc:name "CovalentDock" ; + sc:softwareVersion "2.0-beta-04" ; + sc:url "http://docking.sce.ntu.edu.sg/." . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -149710,7 +142635,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating biotools:primaryContact "CovalentDock Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -149727,7 +142652,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "http://cadd.zju.edu.cn/cidb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3322, @@ -149743,7 +142668,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating "Vishwas Sharma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3314, @@ -149759,7 +142684,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating biotools:primaryContact "David Snyder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0781, edam:topic_3305, @@ -149775,18 +142700,18 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3720" ; - sc:name "Geographic location" ; - sc:sameAs "http://edamontology.org/data_3720" ] ; + sc:additionalType "http://edamontology.org/data_3720" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Geographic location" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ], + sc:additionalType "http://edamontology.org/data_3720" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Geographic location" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3720" ; - sc:name "Geographic location" ; - sc:sameAs "http://edamontology.org/data_3720" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0781 ; sc:description "Czech COVID-19 genomics portal" ; @@ -149797,7 +142722,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://virus.img.cas.cz/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0199, @@ -149813,7 +142738,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "http://covdb.popgenetics.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3569 ; @@ -149832,18 +142757,18 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Taxonomy" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -149865,14 +142790,14 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -149890,26 +142815,26 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3006" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3006" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3006" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -149931,7 +142856,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating biotools:primaryContact "Ernesto Lowy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3474 ; @@ -149948,22 +142873,21 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091 ; sc:description "Read coverage calculator for metagenomics" ; @@ -149977,7 +142901,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://github.com/wwood/CoverM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -149994,7 +142918,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://exbio.wzw.tum.de/covex/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3374, @@ -150011,7 +142935,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://chineseantibody.org/covid-19-track/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0634, @@ -150026,7 +142950,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://data.oncomx.org/covid19" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0154, edam:topic_0209, @@ -150045,7 +142969,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "http://Covid-19.bioreproducibility.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0632, @@ -150064,7 +142988,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "http://covidcg.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3303, @@ -150086,7 +143010,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating biotools:primaryContact "Zhiyong Lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -150104,7 +143028,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating biotools:primaryContact "Andrea Augello" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3068, @@ -150120,7 +143044,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0621, @@ -150134,7 +143058,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://github.com/covid19kg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -150151,7 +143075,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "http://covid-19.dnageography.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -150170,7 +143094,7 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:url "https://bioportal.bioontology.org/ontologies/COVID-19" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -150183,12 +143107,16 @@ Cosinor Online, cosinor on the web, is a simple web-based application evaluating sc:featureList edam:operation_2421, edam:operation_2422, edam:operation_3778 ; + sc:isAccessibleForFree true ; sc:name "COVID-19 preVIEW" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; sc:softwareHelp ; sc:url "https://preview.zbmed.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3315, @@ -150204,7 +143132,7 @@ The primary purpose of the tool is to explore the dynamics of COVID19 cases and sc:url "http://covid19-scenarios.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0769, @@ -150223,7 +143151,7 @@ The primary purpose of the tool is to explore the dynamics of COVID19 cases and "Masoud Rouhizadeh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -150243,7 +143171,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "https://clamp.uth.edu/covid/loinc.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0781, @@ -150256,8 +143184,30 @@ Large observational data networks that leverage routine clinical practice data i sc:url "https://chschoenenberger.shinyapps.io/covid19_dashboard/" ; biotools:primaryContact "Christoph Schönenberger" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_3301, + edam:topic_3305, + edam:topic_3418, + edam:topic_3474, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC9035978", + "pubmed:35468755" ; + sc:description "A database for tracking the contribution of genomics and precision health to the COVID-19 pandemic response." ; + sc:featureList edam:operation_0306, + edam:operation_2421 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "COVID-19 GPH" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://phgkb.cdc.gov/PHGKB/coVInfoStartPage.action" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3336 ; @@ -150272,7 +143222,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -150287,7 +143237,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "https://app.iloveevidence.com/covid19" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -150304,7 +143254,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "Amburose Sekar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3305, @@ -150319,7 +143269,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "https://github.com/petroniocandido/COVID19_AgentBasedSimulation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0160, @@ -150336,7 +143286,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "https://covalign.pasteur.cloud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3452, @@ -150352,7 +143302,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "https://github.com/AlexTS1980/COVID-CT-Mask-Net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -150371,7 +143321,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "Indrajit Saha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -150389,7 +143339,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "Peter Seibold" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3071 ; @@ -150399,7 +143349,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "https://covidkop.renci.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3384, @@ -150416,8 +143366,49 @@ Large observational data networks that leverage routine clinical practice data i "Windows" ; sc:url "http://covid-net.ml" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_0203, + edam:topic_3303, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC8570443", + "pubmed:34748989" ; + sc:description "The One-stop Database for COVID-19 Specific Humoral Immunity and Clinical Parameters." ; + sc:featureList edam:operation_0314, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:name "COVID-ONE-hi" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.covid-one.cn" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench", + "Workflow" ; + sc:applicationSubCategory edam:topic_3305, + edam:topic_3384, + edam:topic_3452, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9015255", + "pubmed:35465215" ; + sc:description "A clinical decision support system for COVID-19 detection." ; + sc:featureList edam:operation_3443, + edam:operation_3659, + edam:operation_3936 ; + sc:license "Not licensed" ; + sc:name "COVID-opt-aiNet" ; + sc:url "https://github.com/faizakhan1925/COVID-opt-aiNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0781, @@ -150432,8 +143423,32 @@ Large observational data networks that leverage routine clinical practice data i sc:name "COVID-Predictor" ; sc:url "http://www.nitttrkol.ac.in/indrajit/projects/COVID-Predictor/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workflow" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0199, + edam:topic_0769, + edam:topic_3168, + edam:topic_3293 ; + sc:citation , + "pmcid:PMC9012066", + "pubmed:35428185" ; + sc:description "A webserver for the analysis of SARS-CoV-2 sequencing data." ; + sc:featureList edam:operation_0323, + edam:operation_0326, + edam:operation_0567 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "COVID-Profiler" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://genomics.lshtm.ac.uk/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3063, edam:topic_3474 ; @@ -150445,7 +143460,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "https://github.com/Biomedical-Computing-UFPE/Covid-SGIS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3063, @@ -150459,7 +143474,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "http://covidterm.imicams.ac.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_3063, @@ -150477,7 +143492,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "https://covidtracking.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -150492,7 +143507,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "Carlos Tapia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -150510,7 +143525,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "Lorand Gabriel Parajdi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_2640, @@ -150528,7 +143543,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "http://www.covid19-druginteractions.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3377, @@ -150547,7 +143562,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "https://github.com/muntisa/immuno-drug-repurposing-COVID-19" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -150564,7 +143579,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "Akhilesh Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3344, @@ -150581,7 +143596,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "Siddharth Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -150597,7 +143612,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "ThomasV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3344, edam:topic_3512 ; @@ -150612,7 +143627,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "Emmanuel Olivar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3070, @@ -150630,7 +143645,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "JM2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -150646,7 +143661,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "Pavel Roslovets" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -150661,7 +143676,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "Siddharth Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -150678,7 +143693,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "Lateef Adewale Kareem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3070, @@ -150696,7 +143711,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "Sohini Sarkar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -150715,7 +143730,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "Erik Cuevas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3344, @@ -150733,7 +143748,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "JM2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -150751,7 +143766,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "Luigi Marchionni" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -150768,7 +143783,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "Matthias Chung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -150790,7 +143805,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "http://hpcc.siat.ac.cn/covid19db" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_3379, edam:topic_3577 ; @@ -150802,7 +143817,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "https://covid19risk.ai/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -150820,7 +143835,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact "Deepesh B" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3384, @@ -150840,7 +143855,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3452, @@ -150854,7 +143869,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "https://github.com/mohofar/covidctnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -150881,7 +143896,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "https://covidep.ust.hk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3299, @@ -150897,7 +143912,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "http://covidex.unlu.edu.ar/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0625, @@ -150915,8 +143930,31 @@ Large observational data networks that leverage routine clinical practice data i sc:url "http://143.244.212.58/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0781, + edam:topic_3305, + edam:topic_3324, + edam:topic_3379 ; + sc:citation , + "pubmed:35612186" ; + sc:description "CovidGraph, developed by the HealthECCO community, is a platform designed to foster research and data exploration to fight COVID-19." ; + sc:featureList edam:operation_0224, + edam:operation_0337, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CovidGraph" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://healthecco.org/covidgraph/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3324 ; @@ -150930,7 +143968,7 @@ Large observational data networks that leverage routine clinical practice data i biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0128, @@ -150951,7 +143989,7 @@ Large observational data networks that leverage routine clinical practice data i sc:url "http://kraza.in/covidium/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -150974,7 +144012,7 @@ and nucleotide sequences from isolates deposited in Genbank""" ; sc:url "http://covid.apps.intermine.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3322, edam:topic_3324, @@ -150989,7 +144027,7 @@ and nucleotide sequences from isolates deposited in Genbank""" ; "Shahab S. Band" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0634, @@ -151004,7 +144042,7 @@ and nucleotide sequences from isolates deposited in Genbank""" ; sc:url "http://covidnlp.tavlab.iiitd.edu.in/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3292, @@ -151025,7 +144063,7 @@ and nucleotide sequences from isolates deposited in Genbank""" ; sc:url "http://covidomic.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -151045,7 +144083,7 @@ and nucleotide sequences from isolates deposited in Genbank""" ; sc:url "http://covidphy.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -151067,7 +144105,7 @@ and nucleotide sequences from isolates deposited in Genbank""" ; sc:url "http://14.139.62.220/covidprognosis/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3305, @@ -151085,8 +144123,28 @@ and nucleotide sequences from isolates deposited in Genbank""" ; sc:name "COVIDrugNet" ; sc:url "http://compmedchem.unibo.it/covidrugnet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_2640, + edam:topic_3305 ; + sc:citation , + "pmcid:PMC9284969", + "pubmed:35840948" ; + sc:description "A web app and R Package for assessing asymptomatic COVID-19 testing strategies." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "covidscreen" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://sjbiostat.shinyapps.io/covidscreen/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0781, edam:topic_3305, @@ -151101,8 +144159,27 @@ and nucleotide sequences from isolates deposited in Genbank""" ; sc:url "http://covidsim.eu/" ; biotools:primaryContact "Nick Wilson" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_2269, + edam:topic_3324 ; + sc:citation ; + sc:description "Real-time prediction of COVID-19 spread based on time-series modelling." ; + sc:featureList edam:operation_0337, + edam:operation_2426, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "COVIDSpread" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/VafaeeLab/COVIDSpread" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3305, @@ -151117,7 +144194,7 @@ and nucleotide sequences from isolates deposited in Genbank""" ; sc:url "https://covidstrategycalculator.github.io/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3384, @@ -151135,7 +144212,7 @@ CovidXrayNet model improves the detection rate of coronavirus 2019 (COVID-19), f biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -151149,7 +144226,7 @@ CovidXrayNet model improves the detection rate of coronavirus 2019 (COVID-19), f sc:url "http://biopharm.zju.edu.cn/coviedb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -151161,7 +144238,7 @@ CovidXrayNet model improves the detection rate of coronavirus 2019 (COVID-19), f sc:url "http://covision.tavlab.iiitd.edu.in" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -151179,8 +144256,26 @@ CovidXrayNet model improves the detection rate of coronavirus 2019 (COVID-19), f "Windows" ; sc:url "https://github.com/PoonLab/covizu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_3322, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8761863", + "pubmed:35047869" ; + sc:description "A Transfer Learning Framework for Automatic COVID-19 Detection From Crowd-Sourced Cough Sounds." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CovNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ychang74/CovNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -151203,7 +144298,7 @@ CovidXrayNet model improves the detection rate of coronavirus 2019 (COVID-19), f sc:url "https://github.com/kaistcbfg/covNormRpkg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0130, @@ -151225,7 +144320,7 @@ CovidXrayNet model improves the detection rate of coronavirus 2019 (COVID-19), f sc:url "http://www.pharmbioinf.uni-freiburg.de/covpdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0632, @@ -151242,7 +144337,7 @@ CovidXrayNet model improves the detection rate of coronavirus 2019 (COVID-19), f biotools:primaryContact "Nir London" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_0769, @@ -151260,7 +144355,7 @@ CovidXrayNet model improves the detection rate of coronavirus 2019 (COVID-19), f . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3308 ; @@ -151280,16 +144375,53 @@ CovidXrayNet model improves the detection rate of coronavirus 2019 (COVID-19), f sc:url "http://bioconductor.org/packages/release/bioc/html/covRNA.html" ; biotools:primaryContact "Lara Urban" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_3053, + edam:topic_3293 ; + sc:citation , + "pmcid:PMC9384632" ; + sc:description "A Subsampling Method with Balanced Genetic Diversity for Large-Scale SARS-CoV-2 Genome Data Sets." ; + sc:featureList edam:operation_0323 ; + sc:license "Other" ; + sc:name "covSampler" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.covsampler.net" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0154, + edam:topic_0199 ; + sc:citation , + "pubmed:34954792" ; + sc:description "CoV-Spectrum is an interactive tool to analyze and discover variants of SARS-CoV-2." ; + sc:featureList edam:operation_0224, + edam:operation_0337, + edam:operation_3197 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CoV-Spectrum" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cov-spectrum.org/explore/Denmark/AllSamples/Past6M" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -151303,13 +144435,13 @@ CovidXrayNet model improves the detection rate of coronavirus 2019 (COVID-19), f sc:url "https://github.com/telatin/covtobed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Coverage analysis from BAM files supporting target regions in BED or GFF formats" ; sc:name "covtools" ; sc:url "https://telatin.github.io/covtools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3382, @@ -151328,7 +144460,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "https://github.com/Perceptron21/CovXNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3174, @@ -151348,7 +144480,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of biotools:primaryContact "Toby J. Wilkinson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3303, edam:topic_3474 ; @@ -151362,7 +144494,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0625, @@ -151379,7 +144511,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "https://coxbase.q-gaps.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2269 ; @@ -151395,7 +144527,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "http://CRAN.R-project.org/package=CoxPhLb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0780, @@ -151415,7 +144547,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of biotools:primaryContact "COXPRESSdb Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0659, @@ -151433,7 +144565,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "https://github.com/MinJinHa/COZINE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -151450,7 +144582,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "https://www.cebitec.uni-bielefeld.de/groups/brf/software/cpa/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -151468,7 +144600,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "http://cpa.tinnguyen-lab.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -151489,7 +144621,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "http://cbb1.ut.ac.ir/CpACpP/Index" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -151507,7 +144639,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "https://web.iitm.ac.in/bioinfo2/cpad2/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0153, @@ -151530,7 +144662,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "http://cpafold.bioinfo.se" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -151546,7 +144678,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "http://sourceforge.net/projects/cpag/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0659, @@ -151564,7 +144696,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "http://lilab.research.bcm.edu/cpat/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3517, @@ -151582,7 +144714,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of biotools:primaryContact "Arunabha Majumdar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0160, @@ -151612,10 +144744,10 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3496" ; - sc:name "RNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3496" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3496" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "RNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0099, @@ -151636,7 +144768,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "http://cpc2.cbi.pku.edu.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -151652,8 +144784,31 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:softwareVersion "1" ; sc:url "http://cpdb.molgen.mpg.de/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0208, + edam:topic_0634, + edam:topic_2640, + edam:topic_3170, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC9252520", + "pubmed:35795573" ; + sc:description "Cancer Personalized Drug Recommendation (CPDR). A R Package of personalized drugs for patients with cancer by reversing individual disease signatures." ; + sc:featureList edam:operation_0313, + edam:operation_3223, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CPDR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/AllenSpike/CPDR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0622, @@ -151673,7 +144828,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "https://github.com/shengqh/cpdseqer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -151685,7 +144840,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "https://github.com/chenxgscuec/CPESLDI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2269, edam:topic_3295, @@ -151701,10 +144856,10 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -151724,7 +144879,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "http://cpfp.sourceforge.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -151747,7 +144902,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "https://github.com/gdewael/cpg-transformer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation , @@ -151765,7 +144920,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "http://www.herbalgenomics.org/0506/cpgavas/analyzer/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0623, @@ -151783,7 +144938,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "http://www.gndu.ac.in/CpGDB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -151805,22 +144960,18 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -151851,14 +145002,12 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_3512 ; @@ -151880,14 +145029,12 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -151918,18 +145065,18 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2085" ; - sc:name "Structure report" ; - sc:sameAs "http://edamontology.org/data_2085" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2085" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2814 ; @@ -151948,8 +145095,26 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "http://cbs.dtu.dk/services/CPHmodels/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench", + "Workflow" ; + sc:applicationSubCategory edam:topic_0209, + edam:topic_2275, + edam:topic_3373, + edam:topic_3474 ; + sc:citation , + "pubmed:35275993" ; + sc:description "An inductive graph neural network model for compound-protein interaction prediction based on a homogeneous graph." ; + sc:featureList edam:operation_2492, + edam:operation_3927, + edam:operation_3938 ; + sc:license "Not licensed" ; + sc:name "CPI-IGAE" ; + sc:url "https://github.com/wanxiaozhe/CPI-IGAE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -151976,7 +145141,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of "Dr. Zexian Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -152001,22 +145166,22 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide mass fingerprint" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3071, @@ -152033,22 +145198,18 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], + sc:additionalType "http://edamontology.org/data_0883" ; + sc:name "Structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], + sc:additionalType "http://edamontology.org/data_0883" ; + sc:name "Structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:name "Small molecule structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0176, @@ -152069,14 +145230,12 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1353" ; + sc:name "Sequence motif" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204 ; sc:citation ; @@ -152090,7 +145249,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "http://bioinformatics.intec.ugent.be/kmarchal/Supplementary_Information_Sun_2011/Index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0610, @@ -152112,14 +145271,13 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1427" ; - sc:name "Phylogenetic discrete data" ; - sc:sameAs "http://edamontology.org/data_1427" ] ; + sc:additionalType "http://edamontology.org/data_1427" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Phylogenetic discrete data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation ; @@ -152138,22 +145296,22 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ], + sc:additionalType "http://edamontology.org/data_0880" ; + sc:encodingFormat "http://edamontology.org/format_1457" ; + sc:name "RNA secondary structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0880" ; - sc:name "RNA secondary structure" ; - sc:sameAs "http://edamontology.org/data_0880" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ], + sc:additionalType "http://edamontology.org/data_0880" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "RNA secondary structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0880" ; - sc:name "RNA secondary structure" ; - sc:sameAs "http://edamontology.org/data_0880" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099 ; @@ -152185,7 +145343,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of "Josef Pánek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -152201,8 +145359,24 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:softwareVersion "2.0" ; sc:url "https://webs.iiitd.edu.in/raghava/cppsite" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC3296953", + "pubmed:22403286" ; + sc:description "CPPsite is a database of experimentally validated Cell Penetrating Peptides (10-30 amino acids)." ; + sc:featureList edam:operation_2945 ; + sc:name "CPPsite1" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/cppsite1/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2640, @@ -152219,7 +145393,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of biotools:primaryContact "Jaegyoon Ahn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -152240,8 +145414,26 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of biotools:primaryContact "Jenn-Kang Hwang", "Wei-Cheng Lo" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3047, + edam:topic_3068, + edam:topic_3172 ; + sc:citation , + "pubmed:35920772" ; + sc:description "CPRiL is a webserver for exploring functional compound-protein relationships that are extracted automatically from PubMed literature." ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "CPRiL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.pharmbioinf.uni-freiburg.de/cpril" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3168, @@ -152260,7 +145452,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of "Yuanwei Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0160, @@ -152275,7 +145467,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "http://app.foroughmand.ir/cpssm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2640, @@ -152296,7 +145488,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "https://paynelab.github.io/cptac/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -152313,7 +145505,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "https://www.mybiosoftware.com/cptra-20090207-cross-platform-transcriptome-analysis.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -152331,8 +145523,31 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of sc:url "http://bioconductor.org/packages/release/bioc/html/cpvSNP.html" ; biotools:primaryContact "Caitlin McHugh" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Web application" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0128, + edam:topic_0623, + edam:topic_3957 ; + sc:citation , + "pmcid:PMC9369210", + "pubmed:35955594" ; + sc:description "cpxDeepMSA is a deep cascade algorithm to generate high-quality protein complex multiple sequence alignment with high quality, significant depth, a wide range of sequence sources, and strong generalization ability." ; + sc:featureList edam:operation_0272, + edam:operation_0492, + edam:operation_2492 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "cpxDeepMSA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://zhanggroup.org/cpxDeepMSA/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170 ; @@ -152353,7 +145568,7 @@ With the recent outbreak of COVID-19, fast diagnostic testing has become one of biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0166 ; sc:citation , @@ -152365,7 +145580,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:url "http://projectphd.droppages.com/CQNR.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0780 ; @@ -152384,8 +145599,26 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:softwareHelp ; sc:url "http://apex.ipk-gatersleben.de/apex/f?p=CREST" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0605, + edam:topic_3314, + edam:topic_3474 ; + sc:citation ; + sc:description "Compositionally-Restricted Attention-Based Network for Materials Property Prediction." ; + sc:featureList edam:operation_3659, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CrabNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/anthony-wang/CrabNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0114, edam:topic_3170, @@ -152410,7 +145643,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an "For questions, comments, remarks on the algorithm or the article" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0769, @@ -152426,7 +145659,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:url "http://cractools.gforge.inria.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -152446,7 +145679,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:url "https://github.com/jiaxingbai/CRAFT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0654, @@ -152460,7 +145693,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:url "http://www.seas.upenn.edu/~strctlrn/craig.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2258, @@ -152478,7 +145711,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:url "https://peter-ertl.com/molecular/substituents/craigplot.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_2229, @@ -152496,7 +145729,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -152514,7 +145747,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:url "https://github.com/FadyMohareb/cramer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3365 ; sc:description "Framework technology comprising file format and toolkit in which highly efficient and tunable reference-based compression of sequence data with a data format that is directly available for computational use are combined." ; @@ -152526,7 +145759,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:url "http://www.ebi.ac.uk/ena/software/cram-toolkit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -152547,7 +145780,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an biotools:primaryContact "Dmitry A. Afonnikov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -152565,7 +145798,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3512 ; sc:description "CrazyQuant is a spot-finding tool. This JAVA-based applet allows the loading and quantitation of your cDNA microarray images and membranes." ; @@ -152578,8 +145811,32 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:softwareHelp ; sc:url "http://healthsciences.ucsd.edu/som/medicine/research/labs/ideker/software/Pages/Crazy-Quant.aspx" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_0749, + edam:topic_3320, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8806072", + "pubmed:35051187" ; + sc:description "Identification of circRNA-RBP interaction sites using an ensemble neural network approach." ; + sc:featureList edam:operation_0267, + edam:operation_3216, + edam:operation_3901, + edam:operation_3902 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CRBPDL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/nmt315320/CRBPDL.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "CRC64 is the source code for an improved CRC-64 routine for hashing protein sequences. This CRC function has been extensively tested on real sequences and articially generated sequences." ; @@ -152593,7 +145850,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:url "http://bioinfadmin.cs.ucl.ac.uk/downloads/crc64/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3518 ; @@ -152610,7 +145867,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:url "http://crcview.hegroup.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Creates a FAIR digital object in the openDS format" ; sc:featureList edam:operation_1812 ; sc:license "Apache-2.0" ; @@ -152620,62 +145877,62 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3169 ; @@ -152692,7 +145949,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -152709,7 +145966,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an biotools:primaryContact "Titipong Kaewlek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -152728,7 +145985,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an biotools:primaryContact "CREME Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_0203, @@ -152747,8 +146004,23 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:name "CReSCENT" ; sc:url "https://crescent.cloud" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:35877807" ; + sc:description "Consistency-regularized region-growing network (CRGNet) for semantic segmentation of VHR remote sensing images using point-level annotations. The key idea of CRGNet is to iteratively select unlabeled pixels with high confidence to expand the annotated area from the original sparse points" ; + sc:featureList edam:operation_3443, + edam:operation_3553 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CRGNet" ; + sc:url "https://github.com/YonghaoXu/CRGNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -152764,7 +146036,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:url "https://cge.cbs.dtu.dk/services/CRHP-Finder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0804, @@ -152782,7 +146054,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:url "https://www.cri-iatlas.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:description "Used for genetic linkage analysis of diploid species. This version has been upgraded to handle large pedigrees with large numbers of markers on modern hardware." ; @@ -152798,7 +146070,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:url "http://www.animalgenome.org/tools/share/crimap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -152819,7 +146091,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an "Yinyin Yuan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0769, @@ -152837,7 +146109,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:url "http://www.crimson.software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0204, @@ -152854,8 +146126,44 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:name "Crinet" ; sc:url "https://github.com/bozdaglab/crinet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "Computational Resources for predicting protein-macromolecular interactions" ; + sc:featureList edam:operation_2945 ; + sc:name "CRIP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/crip/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0199, + edam:topic_0203, + edam:topic_2830, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8600631", + "pubmed:34806017" ; + sc:description "Complete Reconstruction of Immunoglobulin V-D-J Sequences from RNA-seq" ; + sc:featureList edam:operation_0310, + edam:operation_3198, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CRIS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Rashedul/CRIS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053, @@ -152869,7 +146177,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an biotools:primaryContact "Vikas Bansal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -152886,7 +146194,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:url "http://wulab.com.cn/CRISP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0625, @@ -152903,7 +146211,7 @@ Effector protein predictor based on 3D structure (EPP3D) is based on the CQNR an sc:url "http://crispview.weililab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2885, @@ -152929,8 +146237,31 @@ The DAK1.fasta and DAK1_short.txt file contains a DNA sequence native to the DAK sc:name "crispRdesignR" ; sc:url "https://github.com/dylanbeeber/crispRdesignR" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Desktop application" ; + sc:applicationSubCategory edam:topic_3172, + edam:topic_3382, + edam:topic_3422, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8921635", + "pubmed:35022651" ; + sc:description "CRISP: a deep learning architecture for GC × GC–TOFMS contour ROI identification, simulation and analysis in imaging metabolomics" ; + sc:featureList edam:operation_3436, + edam:operation_3443, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CRISP" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:url "https://github.com/vivekmathema/GCxGC-CRISP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, @@ -152945,14 +146276,14 @@ The DAK1.fasta and DAK1_short.txt file contains a DNA sequence native to the DAK a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation ; @@ -152969,7 +146300,7 @@ The DAK1.fasta and DAK1_short.txt file contains a DNA sequence native to the DAK biotools:primaryContact "GenOuest platform" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0622, @@ -152987,7 +146318,7 @@ The DAK1.fasta and DAK1_short.txt file contains a DNA sequence native to the DAK biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -153006,7 +146337,7 @@ The DAK1.fasta and DAK1_short.txt file contains a DNA sequence native to the DAK sc:url "https://taolab.nwafu.edu.cn/crisprcbei/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -153023,7 +146354,7 @@ The DAK1.fasta and DAK1_short.txt file contains a DNA sequence native to the DAK biotools:primaryContact "X. Shirley Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation , @@ -153038,8 +146369,31 @@ The DAK1.fasta and DAK1_short.txt file contains a DNA sequence native to the DAK sc:softwareHelp ; sc:url "http://skl.scau.edu.cn/home/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0166, + edam:topic_2229, + edam:topic_3173, + edam:topic_3912 ; + sc:citation , + "pmcid:PMC9307495", + "pubmed:35891797" ; + sc:description "An online tool for designing highly efficient sgRNAs targeting cell surface proteins" ; + sc:featureList edam:operation_0314, + edam:operation_3096, + edam:operation_3767 ; + sc:name "CRISPR-Surfaceome" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://crispr-surfaceome.siais.shanghaitech.edu.cn/home" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -153059,13 +146413,8 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:name "CRISPR-TAPE" ; sc:url "http://www.laboratorychild.com/crispr-tape" . - a sc:SoftwareApplication ; - sc:description "CD Genomics provides CRISPR-Cas9 knockout validation and potential off-target detection in a high-throughput and cost-effective manner by harnessing advanced next generation sequencing (NGS). Our team members have experience in both genome editing and NGS, enabling extensive support to your research. CD Genomics is able to help you to detect the potential off-target effects via targets enrichment and deep sequencing at fairly inexpensive prices." ; - sc:name "CRISPR Sequencing" ; - sc:url "https://www.cd-genomics.com/crispr-mutation-sequencing.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2885, @@ -153087,10 +146436,10 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3474 ; @@ -153109,8 +146458,26 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "https://github.com/BackofenLab/CRISPRcasIdentifier" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Suite" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0114, + edam:topic_0121, + edam:topic_3174, + edam:topic_3474 ; + sc:citation , + "pubmed:35998924" ; + sc:description "CRISPRCasStack is a toolkit capable of accurately identifying Cas proteins and comprehensively predicting CRISPR-Cas-related components, with the goal of accurately identifying potential Cas proteins that cannot currently be identified based on homology through a machine learning-based approach." ; + sc:featureList edam:operation_3096, + edam:operation_3767 ; + sc:license "Not licensed" ; + sc:name "CRISPRCasStack" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/yrjia1015/CRISPRCasStack" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0114, @@ -153128,7 +146495,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "http://cctyper.crispr.dk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0199, @@ -153145,7 +146512,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "http://crispr.u-psud.fr/CRISPRcompar/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0157, @@ -153169,7 +146536,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; biotools:primaryContact "Marie Touchon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, @@ -153186,7 +146553,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "https://github.com/BackofenLab/CRISPRidentify" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0199, @@ -153199,7 +146566,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "https://github.com/UCBASiCS/CRISPRLand" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0160, @@ -153221,18 +146588,18 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099 ; @@ -153257,8 +146624,33 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; biotools:primaryContact , "Sita Saunders" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0769, + edam:topic_2229, + edam:topic_3168, + edam:topic_3912 ; + sc:citation , + "pmcid:PMC9252781", + "pubmed:35640601" ; + sc:description "CRISPRnano is a javascript-based program that was developed for rapid deep sequencing based genotyping of nuclease edited cell clones." ; + sc:featureList edam:operation_0337, + edam:operation_3096, + edam:operation_3196, + edam:operation_3227, + edam:operation_3799 ; + sc:license "GPL-2.0" ; + sc:name "CRISPRnano" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://www.CRISPRnano.de" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Web application" ; sc:applicationSubCategory edam:topic_0798, @@ -153278,7 +146670,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "https://rth.dk/resources/crispr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -153295,7 +146687,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; "Md. Khaledur Rahman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3474, @@ -153309,8 +146701,32 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:name "CRISPRpred(SEQ)" ; sc:url "https://github.com/Rafid013/CRISPRpredSEQ" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3170, + edam:topic_3308, + edam:topic_3512, + edam:topic_3912 ; + sc:citation , + "pmcid:PMC8887420", + "pubmed:34850137" ; + sc:description "CRISPRroots: CRISPR–Cas9-mediated edits with accompanying RNA-seq data assessed for on-target and off-target sites." ; + sc:featureList edam:operation_3096, + edam:operation_3196, + edam:operation_3223, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CRISPRroots" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://rth.dk/resources/crispr" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -153332,7 +146748,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; biotools:primaryContact "Lihua Julie Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -153351,7 +146767,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; biotools:primaryContact "Alper Kucukural" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3170, @@ -153367,7 +146783,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "http://www.crisprsql.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -153387,8 +146803,28 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/CrispRVariants.html" ; biotools:primaryContact "Helen Lindsay" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_2269, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC9128103", + "pubmed:35610585" ; + sc:description "A Python package for visualizing and analyzing CRISPR sequences." ; + sc:featureList edam:operation_0337, + edam:operation_0491, + edam:operation_1812 ; + sc:license "GPL-3.0" ; + sc:name "CrisprVi" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://sourceforge.net/projects/crisprvi" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0085, edam:topic_3524 ; @@ -153404,7 +146840,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; biotools:primaryContact "Martin Kampmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -153419,7 +146855,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "https://crispy.secondarymetabolites.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0621, @@ -153435,7 +146871,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "https://crispy-pop.glbrc.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -153451,8 +146887,33 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:name "crisscrosslinkeR" ; sc:url "https://egmg726.github.io/crisscrosslinker/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Desktop application", + "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_3050, + edam:topic_3068, + edam:topic_3366, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC9357058", + "pubmed:35933490" ; + sc:description "CRITTERBASE, a publicly accessible data warehouse and interactive portal that currently hosts quality-controlled and taxonomically standardized presence/absence, abundance, and biomass data for 18,644 samples and 3,664 benthic taxa (2,824 of which at species level)." ; + sc:featureList edam:operation_2422, + edam:operation_2428, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "CRITTERBASE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://critterbase.awi.de" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0625, @@ -153475,7 +146936,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; "Robert Scharpf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -153495,7 +146956,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; biotools:primaryContact "Weidong Tian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0209, edam:topic_3373, @@ -153515,7 +146976,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; biotools:primaryContact "Nolan A. Wages" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation , @@ -153531,7 +146992,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "http://www.bioinformatics.org/crnpred/wiki/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, @@ -153548,7 +147009,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "https://github.com/PNNL-Comp-Mass-Spec/CRNT4SBML" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -153567,7 +147028,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; "Paul Simion" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0154, @@ -153584,7 +147045,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "https://cschmidtlab.github.io/CroCo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3169, @@ -153606,22 +147067,22 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3168, @@ -153641,7 +147102,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3172, @@ -153656,7 +147117,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "http://www.github.com/rendju/CROP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3512 ; @@ -153672,7 +147133,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "https://github.com/vaprilyanto/crop" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation , @@ -153685,7 +147146,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "https://cdv.dei.uc.pt/crop/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, @@ -153697,7 +147158,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "http://biosig.unimelb.edu.au/crop_csm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0780 ; @@ -153721,16 +147182,33 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "http://crop-pal.org/" ; biotools:primaryContact "Australia" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_3050, + edam:topic_3810 ; + sc:citation , + "pubmed:34921678" ; + sc:description "A dynamic, open and global database on crop pollination" ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CropPol" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.beeproject.science/croppollination.html" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0905" ; - sc:name "Protein interaction raw data" ; - sc:sameAs "http://edamontology.org/data_0905" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0905" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Protein interaction raw data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation , @@ -153743,7 +147221,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "https://www.hecklab.com/software/xlinkx/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3382 ; @@ -153757,7 +147235,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -153774,7 +147252,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "https://crossbar.kansil.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -153792,7 +147270,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; biotools:primaryContact "Ben Langmead" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0219, @@ -153809,7 +147287,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -153828,7 +147306,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; biotools:primaryContact "Dmitriev AA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -153846,7 +147324,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "https://github.com/bioinformatist/CrossICC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0602, @@ -153866,7 +147344,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; biotools:primaryContact "Tobias Dezulian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -153889,7 +147367,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "https://zzwch.github.io/crosslink/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3307 ; @@ -153903,7 +147381,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "https://github.com/LUMC-BioSemantics/crosslinkWGCNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "An efficient tool for converting genome coordinates between assemblies. CrossMap supports most of the commonly used file formats, including BAM, sequence alignment map, Wiggle, BigWig, browser extensible data, general feature format, gene transfer format and variant call format." ; sc:featureList edam:operation_3267 ; @@ -153911,7 +147389,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; sc:url "http://crossmap.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -153929,7 +147407,7 @@ Hello, welcome to CRISPR-TAPE, a protein-centric gRNA design tool.""" ; biotools:primaryContact "Alex Pickering" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation , @@ -153945,26 +147423,26 @@ The R package crossrun computes the joint distribution of the number of crossing a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Protein interaction data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2969" ; - sc:name "Sequence image" ; - sc:sameAs "http://edamontology.org/data_2969" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ], + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Protein interaction data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2969" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Sequence image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -153991,7 +147469,7 @@ The R package crossrun computes the joint distribution of the number of crossing "Veit Schwämmle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -154009,7 +147487,7 @@ The R package crossrun computes the joint distribution of the number of crossing sc:url "https://github.com/CostaLab/CrossTalkeR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -154020,7 +147498,7 @@ The R package crossrun computes the joint distribution of the number of crossing biotools:primaryContact "Morten Rasmussen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3303, @@ -154042,7 +147520,7 @@ The R package crossrun computes the joint distribution of the number of crossing sc:url "https://github.com/vli31/CROTON" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3510, @@ -154058,18 +147536,52 @@ The R package crossrun computes the joint distribution of the number of crossing sc:url "http://fasta.bioch.virginia.edu/crp/" ; biotools:primaryContact "CRP Support" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3376, - edam:topic_3419 ; - sc:citation , - "pubmed:31515882" ; - sc:description "> LOW CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/Ribopeaks (COM.), bio.tools/NeOGen (COM.AU), bio.tools/chromas (COM.AU) | > CORRECT NAME OF TOOL COULD ALSO BE 'rural', 'mental', 'declaration' | The Orange Declaration on rural and remote mental health | Centre for Rural and Remote Mental Health | Providing leadership in rural and remote mental health research, working closely with rural communities and our valued partners" ; - sc:name "crrmh" ; - sc:url "https://www.crrmh.com.au/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3360, + edam:topic_3361, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8588735", + "pubmed:34772332" ; + sc:description "Predicting circRNA-disease associations using graph convolutional network based on heterogeneous network." ; + sc:featureList edam:operation_3891, + edam:operation_3935, + edam:operation_3960 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "CRPGCN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/KajiMaCN/CRPGCN/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_2640, + edam:topic_3400, + edam:topic_3407, + edam:topic_3577 ; + sc:citation , + "pubmed:34927675" ; + sc:description "Knowledge base of cancer risk prediction models for systematic comparison and personalized applications." ; + sc:featureList edam:operation_3659, + edam:operation_3927, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:name "CRPMKB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.sysbio.org.cn/CRPMKB/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0123, edam:topic_0166, @@ -154085,7 +147597,7 @@ The R package crossrun computes the joint distribution of the number of crossing sc:url "http://qianglab.scst.suda.edu.cn/crrnn2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -154101,7 +147613,7 @@ The R package crossrun computes the joint distribution of the number of crossing sc:url "http://140.120.213.10:8080/crsd/main/home.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -154115,8 +147627,25 @@ The R package crossrun computes the joint distribution of the number of crossing sc:name "CRSO" ; sc:url "https://github.com/mikekleinsgit/CRSO/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0157 ; + sc:citation , + "pmcid:PMC1924867", + "pubmed:17577412" ; + sc:description "CRISPR Recognition Tool" ; + sc:featureList edam:operation_3228 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "crt" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.room220.com/crt/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3379 ; @@ -154133,7 +147662,7 @@ The R package crossrun computes the joint distribution of the number of crossing sc:url "https://github.com/douyangyd/CRTpowerdist" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_2259, @@ -154150,7 +147679,7 @@ The R package crossrun computes the joint distribution of the number of crossing sc:url "https://crunch.unibas.ch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154, @@ -154168,7 +147697,7 @@ The R package crossrun computes the joint distribution of the number of crossing sc:url "https://crustybase.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0780, @@ -154188,10 +147717,9 @@ The R package crossrun computes the joint distribution of the number of crossing a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -154202,7 +147730,7 @@ The R package crossrun computes the joint distribution of the number of crossing sc:url "http://crux.ms/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0622, @@ -154223,32 +147751,30 @@ The R package crossrun computes the joint distribution of the number of crossing "Windows" ; sc:url "http://114.251.61.49:10024/cruxome/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0153, - edam:topic_0154, - edam:topic_2275, - edam:topic_3382 ; - sc:citation , - "pubmed:31576602" ; - sc:description """Cryo-electron microscopy targets in CASP13. - -13th Community Wide Experiment on the. - -Critical Assessment of Techniques for Protein Structure Prediction. - -Estimate of Model Accuracy Results. - -Target: T0984 T0984o T0995 T0995o T1020 T1020o. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CASP13', 'Cryo-electron microscopy targets CASP13', 'CASP-style'""" ; - sc:featureList edam:operation_0474, - edam:operation_3350, - edam:operation_3456 ; - sc:name "cryo-EM" ; - sc:url "http://predictioncenter.org/casp13/cryoem_results.cgi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_3474, + edam:topic_3534 ; + sc:citation , + "pubmed:35810958" ; + sc:description "A web server for identifying circRNA-RBP variable-length binding sites based on stacked generalization ensemble deep learning network." ; + sc:featureList edam:operation_2464, + edam:operation_3436, + edam:operation_3901, + edam:operation_3902 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CRWS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://www.bioinformatics.team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -154265,7 +147791,7 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. biotools:primaryContact "Fred Sigworth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0611, @@ -154286,7 +147812,7 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. sc:url "https://github.com/EICN-UCLA/cryoID" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0611, @@ -154306,7 +147832,7 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. sc:url "https://github.com/zhonge/cryodrgn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0611 ; sc:description "Ontology to describe data and workflows in Cryo Electron Microscopy" ; @@ -154316,14 +147842,14 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3424" ; - sc:name "Raw image" ; - sc:sameAs "http://edamontology.org/data_3424" ] ; + sc:additionalType "http://edamontology.org/data_3424" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Raw image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_2065" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0611, @@ -154340,8 +147866,26 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. sc:softwareHelp ; sc:url "https://www.cryosparc.com/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0611, + edam:topic_3068, + edam:topic_3452 ; + sc:citation , + "pmcid:PMC9248840", + "pubmed:35775989" ; + sc:description "CryoVR is a virtual reality training tool designed at Purdue University to familiarize users with cryoEM equipment, such as microscopes and sample preparation equipment, through a safe and accessible, virtual environment." ; + sc:featureList edam:operation_0307, + edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "CryoVR" ; + sc:operatingSystem "Windows" ; + sc:url "https://www.purdue.edu/cryoVR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Workflow" ; @@ -154363,14 +147907,13 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ] ; + sc:additionalType "http://edamontology.org/data_2295" ; + sc:name "Gene ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation , @@ -154387,7 +147930,7 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. sc:url "http://cryptodb.org/cryptodb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0632, @@ -154407,10 +147950,10 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3474 ; @@ -154432,7 +147975,7 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. biotools:primaryContact "Huilin Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_1317, @@ -154454,7 +147997,7 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. sc:url "http://www.embl-hamburg.de/ExternalInfo/Research/Sax/crysol.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3047 ; sc:citation , @@ -154472,7 +148015,7 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. sc:url "https://crystalexplorer.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_1317, @@ -154488,7 +148031,7 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. sc:url "http://www.cryst.ehu.es" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0605, edam:topic_3315 ; @@ -154501,8 +148044,23 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. sc:name "crystIT" ; sc:url "http://github.com/GKieslich/crystIT" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Script" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3382 ; + sc:citation , + "pubmed:35926337" ; + sc:description "CS-CO is a hybrid self-supervised visual representation learning method tailored for H&E-stained histopathological images." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CS-CO" ; + sc:url "https://github.com/easonyang1996/CS-CO" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084 ; @@ -154517,7 +148075,7 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. sc:url "http://bioserv.rpbs.univ-paris-diderot.fr/software.html#cspseqgen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275 ; sc:citation ; @@ -154532,7 +148090,7 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. biotools:primaryContact "WeNMR Center" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_2275, @@ -154549,7 +148107,7 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. biotools:primaryContact "Feedback Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3474, edam:topic_3512, @@ -154562,7 +148120,7 @@ Target: T0984 T0984o T0995 T0995o T1020 T1020o. sc:url "https://github.com/liuze-nwafu/csDMA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -154584,7 +148142,7 @@ Sequencing the 5' end of cap-protected RNAs enables the identification of Transc sc:url "http://homer.ucsd.edu/homer/ngs/csRNAseq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -154606,7 +148164,7 @@ Sequencing the 5' end of cap-protected RNAs enables the identification of Transc biotools:primaryContact "I. Wohlers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0102, @@ -154627,7 +148185,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t sc:url "http://compubio.csu.edu.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -154644,7 +148202,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t biotools:primaryContact "Iman Aganj" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169 ; @@ -154664,7 +148222,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -154683,22 +148241,22 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_0867" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence alignment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence coordinates" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -154721,7 +148279,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0102, @@ -154740,7 +148298,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t sc:url "https://github.com/dinasv/CSBFinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation ; @@ -154760,7 +148318,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t "Giulio Pavesi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0622, @@ -154779,7 +148337,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t biotools:primaryContact "Mark F. Rogers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, edam:topic_0749, @@ -154793,7 +148351,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t sc:url "http://CScape-somatic.biocompute.org.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2258, @@ -154811,7 +148369,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t biotools:primaryContact "Yufeng J. Tseng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0659, @@ -154834,7 +148392,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t sc:url "http://geneyun.net/CSCD2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382 ; @@ -154848,8 +148406,30 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t sc:name "CSD-ISM" ; sc:url "https://projects.gwdg.de/projects/csdism-2020" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0152, + edam:topic_0593, + edam:topic_0780 ; + sc:citation , + "pmcid:PMC8968703", + "pubmed:35354826" ; + sc:description "The Carbohydrate Structure Database is a free curated repository storing various data on glycans of bacterial, fungal and plant origins." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CSDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://csdb.glycoscience.ru/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0152, edam:topic_0219, @@ -154865,7 +148445,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t sc:url "http://csdb.glycoscience.ru/gt.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -154883,7 +148463,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t sc:url "http://crab.rutgers.edu/~dslun/csdeconv/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, @@ -154903,14 +148483,14 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -154928,14 +148508,14 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -154953,14 +148533,14 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -154978,14 +148558,14 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -155003,14 +148583,14 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -155028,14 +148608,14 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -155053,14 +148633,14 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -155079,14 +148659,14 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -155104,22 +148684,22 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -155137,7 +148717,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -155156,7 +148736,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t sc:url "https://github.com/jessica1338/CSHMM-TF-for-time-series-scRNA-Seq.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -155177,7 +148757,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t sc:url "http://csi.wishartlab.com/cgi-bin/index.py" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_1775 ; sc:citation ; @@ -155192,8 +148772,32 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t "Windows" ; sc:url "http://homepages.dcc.ufmg.br/~dpires/csm/index.html" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Small molecule structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0199, + edam:topic_2275, + edam:topic_2830 ; + sc:citation , + "pubmed:34734992" ; + sc:description "Graph-based antibody-antigen binding affinity prediction and docking scoring function." ; + sc:featureList edam:operation_0252, + edam:operation_0478, + edam:operation_0480 ; + sc:isAccessibleForFree true ; + sc:name "CSM-AB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://biosig.unimelb.edu.au/csm_ab" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -155210,8 +148814,52 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t sc:url "http://biosig.unimelb.edu.au/csm_lig/" ; biotools:primaryContact "Douglas Eduardo Valente Pires" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0128, + edam:topic_0130, + edam:topic_0166, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9252741", + "pubmed:35609999" ; + sc:description "CSM-Potential is a resource for the study areas of a protein surface that are likely to mediate protein-protein and protein-ligand interactions." ; + sc:featureList edam:operation_0474, + edam:operation_2464, + edam:operation_2492 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CSM-Potential" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://biosig.unimelb.edu.au/csm_potential" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Web application" ; + sc:applicationSubCategory edam:topic_0152, + edam:topic_2275, + edam:topic_3306, + edam:topic_3314 ; + sc:citation , + "pmcid:PMC8769910", + "pubmed:34882232" ; + sc:description "CSM-carbohydrate, using machine learning algorithms to accurately predict their binding affinity and rank docking poses as a scoring function." ; + sc:featureList edam:operation_0478 ; + sc:isAccessibleForFree true ; + sc:name "CSM-carbohydrate" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://biosig.unimelb.edu.au/csm_carbohydrate/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3510 ; sc:citation ; @@ -155226,8 +148874,28 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t sc:url "http://14.139.227.206/csmetapred/" ; biotools:primaryContact "CSmetaPred Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3382, + edam:topic_3520 ; + sc:citation ; + sc:description "The software for interactive evaluation of mass spectrometric imaging heterogeneity." ; + sc:featureList edam:operation_3214, + edam:operation_3432, + edam:operation_3694 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CSMM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/EvgenyZhvansky/Interactive_CSMM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -155250,7 +148918,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t sc:url "https://github.com/zcslab/CSMR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -155269,7 +148937,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t sc:url "https://www.cs.tau.ac.il/~tamirtul/CSN-Autogen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation , @@ -155288,7 +148956,7 @@ BACKGROUND:Chromatin immunoprecipitation sequencing (ChIP-seq) is a technology t sc:url "http://services.mbi.ucla.edu/CSNAP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3336, @@ -155307,7 +148975,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://github.com/rubbs14/CSP-Analyzer/releases/tag/v1.0" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation ; @@ -155324,7 +148992,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base biotools:primaryContact "Silvio C.E. Tosatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -155339,24 +149007,39 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "http://samtools.github.io/bcftools/" ; biotools:primaryContact "Petr Danecek" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_3053, + edam:topic_3068, + edam:topic_3325, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC8668911", + "pubmed:34903789" ; + sc:description "Client Service Receipt Inventory as a standardised tool for measurement of socio-economic costs in the rare genetic disease population (CSRI-Ra)." ; + sc:featureList edam:operation_2428, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:name "CSRI-Ra" ; + sc:url "https://paed.hku.hk/e-form/csri-ra-registration-form.asp" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ], + sc:additionalType "http://edamontology.org/data_1537" ; + sc:name "Protein structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2992" ; - sc:name "Protein structure image" ; - sc:sameAs "http://edamontology.org/data_2992" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2992" ; + sc:name "Protein structure image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1775, edam:topic_2814 ; @@ -155377,30 +149060,30 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_0867" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ] ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ], + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mathematical model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -155420,8 +149103,31 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "http://bioconductor.org/packages/release/bioc/html/CSSP.html" ; biotools:primaryContact "Chandler Zuo" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0097, + edam:topic_0099, + edam:topic_2814 ; + sc:citation , + "pmcid:PMC8972804", + "pubmed:35362469" ; + sc:description "Assignment of secondary structure to coarse-grained RNA tertiary structures." ; + sc:featureList edam:operation_0295, + edam:operation_0502, + edam:operation_2441, + edam:operation_3469 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "CSSR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/pylelab/CSSR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -155443,7 +149149,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base "Prof. Xing-Ming Zhao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3511, @@ -155459,8 +149165,32 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://github.com/Luca0208/CST-Miner" ; biotools:primaryContact "GitHub Issues" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0749, + edam:topic_3170, + edam:topic_3308, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8651127", + "pubmed:34813594" ; + sc:description "A de novo transcriptome assembler for short-read data that identifies non-chimeric contigs based on underlying graph structure." ; + sc:featureList edam:operation_0524, + edam:operation_3258, + edam:operation_3472, + edam:operation_3644, + edam:operation_3800 ; + sc:isAccessibleForFree true ; + sc:name "CStone" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://sourceforge.net/projects/cstone/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -155483,7 +149213,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://doi.org/10.5281/zenodo.4483205" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -155500,8 +149230,34 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://github.com/eggleader/cSupB" ; biotools:primaryContact . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2654" ; + sc:name "Target ID (TTD)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2640, + edam:topic_3360, + edam:topic_3379, + edam:topic_3418 ; + sc:citation , + "pubmed:35368077" ; + sc:description "A web resource for biomarker interactions in cancer outcomes." ; + sc:featureList edam:operation_0337, + edam:operation_2495, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "cSurvival" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://tau.cmmt.ubc.ca/cSurvival" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0625, @@ -155521,7 +149277,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "http://csvs.babelomics.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_3169, @@ -155538,7 +149294,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://csynth.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3344, @@ -155556,7 +149312,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base biotools:primaryContact "Matteo Maspero" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0625, @@ -155572,7 +149328,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://github.com/bbrister/ctOrganSegmentation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3315, @@ -155590,7 +149346,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base biotools:primaryContact "Robert Alvarez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -155608,7 +149364,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base biotools:primaryContact "Mark Bangert" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -155624,8 +149380,30 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://www.mathworks.com/matlabcentral/fileexchange/64189-ct-ring-removal-brun-et-al-2009" ; biotools:primaryContact "franzpx125" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0203, + edam:topic_2640, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8741763", + "pubmed:34997044" ; + sc:description "cTaG (classify TSG and OG) is a tool used to identify tumour suppressor genes (TSGs) and oncogenes (OGs) using somatic mutation data." ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_2454 ; + sc:isAccessibleForFree true ; + sc:name "cTaG" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/RamanLab/cTaG" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0607 ; @@ -155643,7 +149421,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base biotools:primaryContact "Antoine Lucas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -155662,7 +149440,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "http://www.origin-gene.cn/database/ctcRbase/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -155689,7 +149467,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -155706,7 +149484,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://github.com/alkodsi/ctDNAtools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_0208, @@ -155724,7 +149502,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://github.com/bozdaglab/CTDPathSim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2840, edam:topic_3077 ; @@ -155740,7 +149518,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base biotools:primaryContact "Juan R Gonzalez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -155759,7 +149537,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base "Clever Toolkit Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3656 ; @@ -155778,10 +149556,9 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base biotools:primaryContact "Chaolin Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; - sc:applicationSubCategory edam:topic_2830, - edam:topic_3474 ; + sc:applicationSubCategory edam:topic_3474 ; sc:citation "pubmed:15297074" ; sc:description "Direct method for prediction of CTL epitopes crucial in subunit vaccine design.In direct methods the information or patterns of T cell epitopes instead of MHC binders were used for the development o f methods. The methods is based on elegant machine learning techniques like a Artificial Neural network and support vector machine ." ; sc:featureList edam:operation_0252, @@ -155791,10 +149568,10 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/ctlpred" . + sc:url "http://webs.iiitd.edu.in/raghava/ctlpred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_2269, @@ -155810,8 +149587,41 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:name "ctmmweb" ; sc:url "http://ctmm.shinyapps.io/ctmmweb/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_3361 ; + sc:citation , + "pubmed:34855586" ; + sc:description "Context-based Tandem Network for Semantic Segmentation." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "CTNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/syp2ysy/CTNet" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Ontology" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0218, + edam:topic_3063, + edam:topic_3379 ; + sc:citation "pmcid:PMC9389640", + "pubmed:35992013" ; + sc:description "The core Ontology of Clinical Trials (CTO) a structured resource integrating basic terms and concepts in the context of clinical trials." ; + sc:featureList edam:operation_0306, + edam:operation_3352, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-4.0" ; + sc:name "CTO" ; + sc:url "https://github.com/ClinicalTrialOntology/CTO" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0152, edam:topic_0154, @@ -155830,7 +149640,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "http://ctpic.nmrfam.wisc.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3384, @@ -155849,7 +149659,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base biotools:primaryContact "Rik Nezich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0208, edam:topic_2640, @@ -155869,7 +149679,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "http://ctrdb.ncpsb.org.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -155888,7 +149698,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base biotools:primaryContact "Michal Sharabi-Schwager" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3063, @@ -155906,7 +149716,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base biotools:primaryContact "S Scott Graham" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3474 ; sc:description "The NVIDIA CUDA® Deep Neural Network library (cuDNN) is a GPU-accelerated library of primitives for deep neural networks. cuDNN provides highly tuned implementations for standard routines such as forward and backward convolution, pooling, normalization, and activation layers." ; @@ -155915,7 +149725,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://developer.nvidia.com/cudnn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0780, @@ -155933,7 +149743,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "http://cmb.bnu.edu.cn/alt_iso/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0194, @@ -155954,7 +149764,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://cubap.byu.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3954 ; sc:citation , @@ -155968,7 +149778,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://cubdl.jhu.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0621, @@ -155987,7 +149797,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base "Ms. Zhang Zong Hong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workbench" ; sc:applicationSubCategory edam:topic_0102, @@ -156004,7 +149814,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://cubic-cloud.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -156022,7 +149832,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://www.mathworks.com/matlabcentral/fileexchange/77882-cublock" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, @@ -156039,7 +149849,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base biotools:primaryContact "Nvidia support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -156053,7 +149863,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://sites.google.com/site/yongchaosoftware/Home/cuda-meme" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -156069,7 +149879,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "http://www.theosysbio.bio.ic.ac.uk/resources/cuda-sim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -156084,7 +149894,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "http://cudasw.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0654, @@ -156102,46 +149912,46 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -156160,114 +149970,114 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3308 ; @@ -156289,102 +150099,90 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_2872" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "ID list" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2872" ; - sc:name "ID list" ; - sc:sameAs "http://edamontology.org/data_2872" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3181" ; - sc:name "Sequence assembly report" ; - sc:sameAs "http://edamontology.org/data_3181" ], + sc:additionalType "http://edamontology.org/data_3181" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Sequence assembly report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_3181" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Sequence assembly report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_3181" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Sequence assembly report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3181" ; - sc:name "Sequence assembly report" ; - sc:sameAs "http://edamontology.org/data_3181" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_3134" ; + sc:name "Gene transcript report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_3134" ; + sc:name "Gene transcript report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ], + sc:additionalType "http://edamontology.org/data_3134" ; + sc:name "Gene transcript report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3181" ; - sc:name "Sequence assembly report" ; - sc:sameAs "http://edamontology.org/data_3181" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_0928" ; + sc:name "Gene expression profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_3170, @@ -156416,7 +150214,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base biotools:primaryContact "Cole Trapnell Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, @@ -156436,7 +150234,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base biotools:primaryContact "MathWorks Bioinformatics Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3063, @@ -156452,7 +150250,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://github.com/beamandrew/cui2vec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -156465,7 +150263,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://github.com/SouthGreenPlatform/CulebrONT_pipeline" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -156484,7 +150282,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base biotools:primaryContact "Loyal A. Goff" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0621, @@ -156507,14 +150305,13 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0949" ; - sc:name "Workflow metadata" ; - sc:sameAs "http://edamontology.org/data_0949" ] ; + sc:additionalType "http://edamontology.org/data_0949" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Workflow metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1050" ; + sc:name "File name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -156540,7 +150337,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base biotools:primaryContact "Jörgen Brandt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0152, edam:topic_0154, @@ -156559,7 +150356,7 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "https://cupp.info" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -156581,31 +150378,8 @@ A fast and efficient multi-spectrum anlayzer for 2-D NMR Fragment Screening base sc:url "http://cupsat.tu-bs.de/" ; biotools:primaryContact "Prof. Dr. Dietmar Schomburg" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_3068, - edam:topic_3169, - edam:topic_3170, - edam:topic_3382 ; - sc:citation , - "pubmed:31809632" ; - sc:description """Modelling the gene expression and the DNA-binding in the 3T3-L1 differentiating adipocytes. - -A Curated RNA-Seq Dataset of MDI-induced Differentiated Adipocytes (3T3-L1). - -In this document, we introduce the purpose of the curatedAdipoRNA package, its contents and its potential use cases. This package is a curated dataset of RNA-Seq samples. The samples are MDI-induced pre-phagocytes (3T3-L1) at different time points/stage of differentiation. The package document the data collection, pre-processing and processing. In addition to the documentation, the package contains the scripts that was used to generated the data in inst/scripts/ and the final RangedSummarizedExperiment object in data/. - -DOI: 10.18129/B9.bioc.curatedAdipoRNA. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'curatedAdipoChIP', 'curatedAdipoRNA curatedAdipoChIP'""" ; - sc:featureList edam:operation_3563, - edam:operation_3900, - edam:operation_3901 ; - sc:name "curatedAdipoRNA" ; - sc:url "https://github.com/MahShaaban/curatedAdipoRNA" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3301 ; @@ -156616,7 +150390,7 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. sc:url "https://waldronlab.io/curatedMetagenomicData/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0203, @@ -156636,8 +150410,43 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. sc:name "curatedAdipoArray" ; sc:url "https://bioconductor.org/packages/curatedAdipoArray" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0654, + edam:topic_3168 ; + sc:citation , + "pubmed:35579371" ; + sc:description "A GPU-accelerated reference-free compressor for high-throughput sequencing reads of FASTQ files." ; + sc:featureList edam:operation_0232, + edam:operation_3198 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CURC" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/BioinfoSZU/CURC" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workbench" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0605, + edam:topic_3336, + edam:topic_3474 ; + sc:citation , + "pubmed:35368074" ; + sc:description "An efficient curriculum learning-based strategy for molecular graph learning." ; + sc:featureList edam:operation_0337, + edam:operation_3802, + edam:operation_4009 ; + sc:license "Not licensed" ; + sc:name "CurrMG" ; + sc:url "https://github.com/gu-yaowen/CurrMG" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -156648,17 +150457,8 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. sc:softwareHelp ; sc:url "http://code.google.com/p/curtain/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0202, - edam:topic_0602, - edam:topic_0749 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE BROKEN! | > CORRECT NAME OF TOOL COULD ALSO BE 'arrestin', 'agonism', 'arrestin recruitment', 'kinetic' | A new kinetic method for measuring agonist efficacy and ligand bias using high resolution biosensors and a kinetic data analysis framework | ABSTRACT The kinetics dynamics of signaling are of increasing value for G-protein-coupled receptor therapeutic development, including spatiotemporal signaling and the kinetic context of biased agonism. Effective application of signaling kinetics to developing new therapeutics requires reliable kinetic assays and an analysis framework to extract kinetic pharmacological parameters. Here we describe a platform for measuring arrestin recruitment kinetics to GPCRs using a high quantum yield, genetically encoded fluorescent biosensor, and a new analysis framework to quantify the recruitment kinetics" ; - sc:name "curve-fitting" ; - sc:url "http://www.graphpad.com/guides/prism/8/curvefitting/index.htm?reg_exponential_associat" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -156682,7 +150482,7 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. biotools:primaryContact "R. Lavery" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0622, @@ -156702,14 +150502,12 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1597" ; - sc:name "Codon usage table" ; - sc:sameAs "http://edamontology.org/data_1597" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1597" ; + sc:name "Codon usage table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -156739,7 +150537,7 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. sc:url "http://emboss.open-bio.org/rel/rel6/apps/cusp.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0781, @@ -156757,30 +150555,30 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1106" ; - sc:name "dbSNP ID" ; - sc:sameAs "http://edamontology.org/data_1106" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3264" ; - sc:name "COSMIC ID" ; - sc:sameAs "http://edamontology.org/data_3264" ], + sc:additionalType "http://edamontology.org/data_3264" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "COSMIC ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_1106" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "dbSNP ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -156801,7 +150599,7 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. biotools:primaryContact "xiaojing wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0769, @@ -156822,14 +150620,14 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0632, @@ -156848,7 +150646,7 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. biotools:primaryContact "Marcel Martin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3175, @@ -156866,7 +150664,7 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. sc:url "https://github.com/tjiangHIT/cuteSV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -156884,10 +150682,9 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1597" ; - sc:name "Codon usage table" ; - sc:sameAs "http://edamontology.org/data_1597" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1597" ; + sc:name "Codon usage table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -156918,14 +150715,13 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2715" ; - sc:name "Protein ID (CuticleDB)" ; - sc:sameAs "http://edamontology.org/data_2715" ] ; + sc:additionalType "http://edamontology.org/data_2715" ; + sc:name "Protein ID (CuticleDB)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623 ; sc:citation , @@ -156944,7 +150740,7 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. biotools:primaryContact "Biophysics and Bioinformatics Laboratory, University of Athens" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3318, @@ -156964,7 +150760,7 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. sc:url "https://github.com/unelg/CutLang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3169, @@ -156983,14 +150779,12 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -157020,7 +150814,7 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. sc:url "http://emboss.open-bio.org/rel/rel6/apps/cutseq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0780, @@ -157035,7 +150829,7 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. sc:url "https://github.com/COMBINE-lab/Cuttlefish" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -157054,7 +150848,7 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. biotools:primaryContact "Abigail Reens" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3335, edam:topic_3399, edam:topic_3422 ; @@ -157068,7 +150862,7 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. sc:url "https://statacademy.shinyapps.io/App_inaguma_20190717/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2258, edam:topic_2275, @@ -157086,7 +150880,7 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. biotools:primaryContact "Woo Youn Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0199, @@ -157103,8 +150897,28 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. sc:name "CVCDAP" ; sc:url "https://omics.bjcancer.org/cvcdap/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3063, + edam:topic_3335, + edam:topic_3360, + edam:topic_3422 ; + sc:citation , + "pmcid:PMC8722174", + "pubmed:34980174" ; + sc:description "Incidence and risk of CVD in people with liver disease" ; + sc:featureList edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:name "CVD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://lailab.shinyapps.io/cvd_in_liver_disease/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -157123,7 +150937,7 @@ DOI: 10.18129/B9.bioc.curatedAdipoRNA. biotools:primaryContact "Andreas Mock" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, edam:topic_3400, @@ -157140,7 +150954,7 @@ Computational_Pipeline_CVID.""" ; sc:url "https://github.com/saeyslab/Computational_Pipeline_CVID" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; @@ -157151,8 +150965,32 @@ Computational_Pipeline_CVID.""" ; sc:name "CVID" ; sc:url "https://github.com/Yingjun-Du/VID" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0154, + edam:topic_0199, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC9191720", + "pubmed:35696379" ; + sc:description "CView is an alignment visualizer that expands on the per-site representation of residues through the incorporation of a dynamic network that is based on the summarization of diversity present across different regions of the alignment. The relationship that sequence regions that are currently on screen have to other regions of diversity within the alignment can be observed, thus increasing intuitive insight." ; + sc:featureList edam:operation_0291, + edam:operation_0292, + edam:operation_3196, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "CView" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://sourceforge.net/projects/cview/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application", "Workflow" ; @@ -157179,7 +151017,7 @@ Computational_Pipeline_CVID.""" ; sc:url "https://github.com/ghzuo/cvtree" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -157199,7 +151037,7 @@ Computational_Pipeline_CVID.""" ; biotools:primaryContact "Dominique Zosso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -157216,7 +151054,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "https://github.com/icthrm/cwSDTWnano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -157233,14 +151071,14 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi biotools:primaryContact "William L. Miller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Automatically built VM used for a remote CWL training" ; sc:name "CWL Training" ; sc:softwareVersion "2.0" ; sc:url "https://github.com/EMBL-EBI-TSI/cpa-bioexcel-cwl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0821, @@ -157254,7 +151092,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "http://server.malab.cn/CWLy-pred/index.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0821, @@ -157271,7 +151109,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "http://server.malab.cn/CWLy-SVM/index.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -157292,7 +151130,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi biotools:primaryContact "Simon Horskjær Rasmussen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0593, @@ -157314,7 +151152,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "http://www.cyana.org/wiki/index.php/Main_Page" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602 ; @@ -157333,7 +151171,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0804, @@ -157351,7 +151189,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -157371,22 +151209,22 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0858" ; - sc:name "Sequence signature matches" ; - sc:sameAs "http://edamontology.org/data_0858" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1333" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0858" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence signature matches" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623 ; sc:citation ; @@ -157403,8 +151241,34 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "http://cyanolyase.genouest.org/" ; biotools:primaryContact "GenOuest" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1900" ; + sc:name "NCBI locus tag" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_0203, + edam:topic_0601, + edam:topic_0622 ; + sc:citation , + "pmcid:PMC8728175", + "pubmed:34614159" ; + sc:description "An integrated omics database for functional genomic analysis of cyanobacteria." ; + sc:featureList edam:operation_0303, + edam:operation_0314, + edam:operation_2422, + edam:operation_3663 ; + sc:isAccessibleForFree true ; + sc:name "CyanoOmicsDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.cyanoomics.cn/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3174, @@ -157422,7 +151286,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "http://www.csbg-jlu.info/CyanoPATH" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0610, edam:topic_0625, @@ -157439,7 +151303,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "http://www.sb-roscoff.fr/cyanorak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0804, edam:topic_3170, @@ -157461,7 +151325,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "https://exbio.wzw.tum.de/cyanus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3168, @@ -157483,8 +151347,26 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi biotools:primaryContact "For bugs and general help (Subject=CyberT)", "For commercial licenses (Subject=CyberT)" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3306, + edam:topic_3382, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9270370", + "pubmed:35803978" ; + sc:description "CyberSco.py is a software written in Python for performing Conditional Microscopy. It was conceived to be available to none expert users with a simple intuitive GUI interface and easy syntax for predefined experiments." ; + sc:featureList edam:operation_3443, + edam:operation_3799 ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "CyberSco" ; + sc:url "https://github.com/Lab513/CyberSco.Py" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2258, @@ -157500,8 +151382,27 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:name "CyBy2" ; sc:url "https://github.com/stefan-hoeck/cyby2" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_2269 ; + sc:citation , + "pmcid:PMC8545271", + "pubmed:34703873" ; + sc:description "A Python module for decomposing flow networks using simple cycles." ; + sc:featureList edam:operation_3799, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "CycFlowDec" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/austenb28/CycFlowDec" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -157520,7 +151421,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -157543,7 +151444,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi "Rasmus Wernersson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -157568,7 +151469,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "https://ms.biomed.cas.cz/cyclobranch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation ; @@ -157584,14 +151485,13 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3477" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -157606,16 +151506,39 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:softwareVersion "1" ; sc:url "http://bioinformatics.psb.ugent.be/software/details/CyClus3D" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0202, + edam:topic_3336, + edam:topic_3375 ; + sc:citation , + "pmcid:PMC8796384", + "pubmed:34849593" ; + sc:description "CycPeptPPB is a predictor of Plasma Protein Binding rate for cyclic peptide with high performance focusing on residue-level features and circularity." ; + sc:featureList edam:operation_0480, + edam:operation_3092, + edam:operation_3891, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "CycPeptPPB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/akiyamalab/cycpeptppb" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3483" ; - sc:name "Spectrum" ; - sc:sameAs "http://edamontology.org/data_3483" ] ; + sc:additionalType "http://edamontology.org/data_3483" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3360 ; @@ -157634,7 +151557,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi biotools:primaryContact "Aaron Lun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2259 ; sc:description "a plugin for importing and handling time series and other forms of repeated measurements data in Cytoscape" ; @@ -157642,16 +151565,38 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:name "cyDataSeries" ; sc:url "https://apps.cytoscape.org/apps/cydataseries" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0634, + edam:topic_2259, + edam:topic_3388, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC8592983", + "pubmed:34782688" ; + sc:description "An interactive pathway-based resource for cystic fibrosis." ; + sc:featureList edam:operation_0533, + edam:operation_3196, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "CyFi-MAP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cysticfibrosismap.github.io/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -157665,7 +151610,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi biotools:primaryContact "Dr. Ulrich Güldener" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -157688,7 +151633,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi "Wojciech Kasprzak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3360 ; @@ -157706,14 +151651,12 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3510 ; sc:description "CYP11B1 mutation browser." ; @@ -157724,14 +151667,12 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3510 ; sc:description "CYP21 mutation browser." ; @@ -157740,8 +151681,43 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:provider "bils.se" ; sc:url "http://www.bioinfo.ifm.liu.se/services/cyp21/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3110" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Raw microarray data" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression profile" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2013" ; + sc:name "Pathway or network" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2984" ; + sc:encodingFormat "http://edamontology.org/format_3166" ; + sc:name "Pathway or network report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0634 ; + sc:citation , + "pmcid:PMC8170118", + "pubmed:34136096" ; + sc:description "CyPathia is a cytoscape app, that provides a user friendly and straightforward interface. The CyPathia app is based on Hipathia Bioconductor package, allowing the Cytoscape community the possibility of using mechanistic models." ; + sc:featureList edam:operation_3927, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:name "CyPathia" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "1.0.0" ; + sc:url "https://apps.cytoscape.org/apps/cypathia" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, @@ -157760,7 +151736,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "https://github.com/Okweon/CYPminer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, @@ -157778,7 +151754,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769 ; @@ -157797,7 +151773,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "http://apps.cytoscape.org/apps/cyrest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Plug-in" ; sc:applicationSubCategory edam:topic_0091, @@ -157815,7 +151791,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "http://www.ebi.ac.uk/saezrodriguez/cyrface/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3518 ; @@ -157831,7 +151807,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "http://apps.cytoscape.org/apps/cyspanningtree" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3300, @@ -157849,7 +151825,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "https://citius.usc.es/transferencia/software/cystanalyser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Script" ; sc:applicationSubCategory edam:topic_0108, @@ -157867,7 +151843,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "https://bitbucket.org/anduril-dev/cyto/src" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0804, @@ -157885,7 +151861,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "https://github.com/aef1004/cyto-feature_engineering" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -157901,7 +151877,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi biotools:primaryContact "Aristotelis Kittas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0605, edam:topic_2640, @@ -157917,7 +151893,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, edam:topic_3064, @@ -157935,7 +151911,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi sc:url "http://github.com/hailstonem/CTC_CytoCensus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2269, @@ -157955,7 +151931,7 @@ Here we proposed two novel algorithms, the Direct Subsequence Dynamic Time Warpi biotools:primaryContact "Zicheng Hu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0804, edam:topic_3325, @@ -157979,18 +151955,18 @@ This GitHub repository contains a tutorial for creating deep learning models tai a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -158015,7 +151991,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai "Jinmiao Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0804, @@ -158030,7 +152006,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:url "https://christofseiler.github.io/CytoGLMM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0154, edam:topic_0804, @@ -158045,7 +152021,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:url "https://github.com/korcsmarosgroup/CytokineLink" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3307 ; sc:description "Core data structure and API to represent and interact with the gated cytometry data." ; @@ -158062,7 +152038,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai biotools:primaryContact "Mike Jiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Workflow" ; sc:applicationSubCategory edam:topic_2229, @@ -158082,7 +152058,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:url "https://gitlab.com/gernerlab/cytomap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3168, @@ -158101,7 +152077,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:url "https://bodenmillergroup.github.io/cytomapper/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -158121,7 +152097,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:url "http://www.cmvdb.dqweilab-sjtu.com/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -158139,8 +152115,46 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:url "http://bioconductor.org/packages/release/bioc/html/CytoML.html" ; biotools:primaryContact "Mike Jiang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2229, + edam:topic_3315, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9191702", + "pubmed:35696439" ; + sc:description "cytoNet is a cloud-based image analysis software designed to quantify the structure of cell communities from microscope images using principles of graph theory." ; + sc:featureList edam:operation_3443, + edam:operation_3799, + edam:operation_3927 ; + sc:license "Not licensed" ; + sc:name "cytoNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://sample-env-1.myiusswm4v.us-west-2.elasticbeanstalk.com/index2.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:18287174" ; + sc:description "A server to predict and classify cytokines." ; + sc:featureList edam:operation_2945 ; + sc:name "Cytopred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/cytopred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, @@ -158158,7 +152172,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:url "https://github.com/burtonrj/CytoPy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2259 ; sc:citation ; @@ -158173,7 +152187,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:url "http://www.ncbi.nlm.nih.gov/CBBresearch/Yu/mn/enrich/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0092, @@ -158194,7 +152208,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:url "http://www.cytoscape.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0128, @@ -158216,7 +152230,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai biotools:primaryContact "Gary D. Bader" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0769, @@ -158233,8 +152247,32 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:softwareVersion "2.0" ; sc:url "https://github.com/jnowak90/CytoSeg2.0" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Script" ; + sc:applicationSubCategory edam:topic_0140, + edam:topic_2229, + edam:topic_3382, + edam:topic_3473, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9349041", + "pubmed:35879608" ; + sc:description "Self-supervised models for encoding protein localization patterns from microscopy images." ; + sc:featureList edam:operation_0314, + edam:operation_2489, + edam:operation_3630, + edam:operation_3935 ; + sc:license "BSD-3-Clause" ; + sc:name "cytoself" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/royerlab/cytoself" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3337, edam:topic_3379, @@ -158247,8 +152285,32 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:url "https://github.com/CompCy-lab/cytoset" ; biotools:primaryContact "Natalie Stanley" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3170, + edam:topic_3308, + edam:topic_3324, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC8493809", + "pubmed:34594031" ; + sc:description "Systematic investigation of cytokine signaling activity at the tissue and single-cell levels." ; + sc:featureList edam:operation_0314, + edam:operation_2436, + edam:operation_3431, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "CytoSig" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cytosig.ccr.cancer.gov/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3168, @@ -158263,7 +152325,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:url "https://github.com/KChen-lab/CytoSpill" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, @@ -158285,7 +152347,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:url "https://ytdai.github.io/CytoTree/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -158303,7 +152365,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai "Brent S Pedersen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0114, @@ -158320,8 +152382,23 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:name "CZEUM" ; sc:url "http://czeum.herb.lsa.umich.edu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_2815, + edam:topic_3304 ; + sc:citation , + "pubmed:35965076" ; + sc:description "A functional human brain atlas termed D-BFA (DFC-based Brain Functional Atlas)" ; + sc:featureList edam:operation_2429, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "D-BFA" ; + sc:url "https://github.com/sliderplm/D-BFA-618" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3047 ; sc:description "D-cellerate is a web application that provides a graphical interface for Seurat version 2, a popular single-cell RNA-seq (scRNA-seq) package for R. It provides an easy-to-use UI and the ability to export results as an HTML file." ; @@ -158334,14 +152411,14 @@ This GitHub repository contains a tutorial for creating deep learning models tai a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Sequence coordinates" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091, @@ -158357,7 +152434,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:url "https://github.com/ShaokunAn/D-EE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -158375,7 +152452,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai biotools:primaryContact "Christophe Klopp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0659, @@ -158396,7 +152473,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai "Xiaoman Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -158419,7 +152496,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:url "http://www.biotec.or.th/isl/Domix" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_3168 ; @@ -158433,7 +152510,7 @@ This GitHub repository contains a tutorial for creating deep learning models tai sc:url "http://genome.ucf.edu/d-PBWT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -158450,7 +152527,7 @@ Peptide-based drug discovery is re-gaining attention in drug discovery. Similarl sc:url "http://dpeptidebuilder.quimica.unam.mx:4000/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0128, @@ -158469,7 +152546,7 @@ Peptide-based drug discovery is re-gaining attention in drug discovery. Similarl . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3316, @@ -158483,8 +152560,49 @@ Peptide-based drug discovery is re-gaining attention in drug discovery. Similarl sc:name "d-SEAMS" ; sc:url "https://dseams.info" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "d-StructMAn is a new improved implementation of our earlier tool StructMAn, shipped in a convenient and easily installable container form and extended to annotation of short in-frame indels and alterations arising as a consequence of alternative splicing events. d-StructMAn produces a wide range of structural features by combining information from experimentally resolved structures of many related proteins, which is a unique feature of the StructMAn family tools. Additionally to information from experimentally resolved protein structures, d-StructMAn can also harness all protein structure models stored in the AlphaFold Protein Structure Database." ; + sc:name "d-StructMAn" ; + sc:url "https://github.com/kalininalab/d-StructMAn" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3444, + edam:topic_3474 ; + sc:citation , + "pubmed:35576425" ; + sc:description "Dual Disentanglement Network (D2-Net) for brain tumor segmentation with missing modalities, which consists of a modality disentanglement stage (MD-Stage) and a tumor-region disentanglement stage (TDStage)." ; + sc:featureList edam:operation_3791 ; + sc:license "Apache-2.0" ; + sc:name "D2-Net" ; + sc:url "https://github.com/CityU-AIM-Group/D2Net" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0202, + edam:topic_0209, + edam:topic_2275, + edam:topic_3373 ; + sc:citation , + "pubmed:35443040" ; + sc:description "A deep learning platform for predicting drug targets and for virtual screening against COVID-19." ; + sc:featureList edam:operation_2476, + edam:operation_2489, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "D3AI-CoV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.d3pharma.com/D3Targets-2019-nCoV/D3AI-CoV/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0821, @@ -158500,7 +152618,7 @@ In general, D3DistalMutation describes the effect of distal mutation (mutations sc:url "http://www.d3pharma.com/D3DistalMutation/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -158517,7 +152635,7 @@ In general, D3DistalMutation describes the effect of distal mutation (mutations sc:url "http://www.d3pharma.com/D3PM/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -158532,7 +152650,7 @@ In general, D3DistalMutation describes the effect of distal mutation (mutations sc:url "https://www.d3pharma.com/D3Targets-2019-nCoV/D3Similarity/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -158551,7 +152669,7 @@ In general, D3DistalMutation describes the effect of distal mutation (mutations sc:url "https://www.d3pharma.com/D3Targets-2019-nCoV/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0208, @@ -158567,7 +152685,7 @@ In general, D3DistalMutation describes the effect of distal mutation (mutations sc:url "https://github.com/bio-ontology-research-group/D4" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3384, @@ -158581,49 +152699,8 @@ In general, D3DistalMutation describes the effect of distal mutation (mutations sc:name "dHCP" ; sc:url "https://git.fmrib.ox.ac.uk/seanf/dhcp-fmri-pipeline-release" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0632, - edam:topic_3168, - edam:topic_3172, - edam:topic_3304, - edam:topic_3382 ; - sc:citation , - "pubmed:31732722" ; - sc:description """Imaging neuromodulators with high spatiotemporal resolution using genetically encoded indicators. - -Data/code file for Figure 3 and 4 (and relevant Supplementary Figures) in Patriarchi et al. Science 2018. - -FP_Session_Processing2.m: MATLAB code to load raw photometry data (recorded by TDT rigs, see methods in Patriarchi et al., Science 2018 and Cho et al., Neuron 2017) and process to calculate dF/F values. - -To download data and code to generate figures in MATLAB, please click the link below: https://www.dropbox.com/sh/ghpzchf1jmragrh/AADbFcWRtARsWrD-DbTJYQrZa?dl=0""" ; - sc:featureList edam:operation_0337, - edam:operation_3431, - edam:operation_3435 ; - sc:name "dLight1" ; - sc:url "http://github.com/GradinaruLab/dLight1" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_0749, - edam:topic_0798, - edam:topic_3308, - edam:topic_3512 ; - sc:citation , - "pubmed:31799607" ; - sc:description """regulating developmental genes and repressing transposons. - -The histone demethylase LSD1 is a key chromatin regulator that is often deregulated in cancer. Its ortholog, dLsd1 plays a crucial role in Drosophila oogenesis; however, our knowledge of dLsd1 function is insufficient to explain its role in the ovary. Here, we have performed genome-wide analysis of dLsd1 binding in the ovary, and we document that dLsd1 is preferentially associated to the transcription start site of developmental genes. We uncovered an unanticipated interplay between dLsd1 and the GATA transcription factor Serpent and we report an unexpected role for Serpent in oogenesis. Besides, our transcriptomic data show that reducing dLsd1 levels results in ectopic transposable elements (TE) expression correlated with changes in H3K4me2 and H3K9me2 at TE loci. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'dual role dLsd1 oogenesis', 'oogenesis'""" ; - sc:featureList edam:operation_2495, - edam:operation_3222 ; - sc:name "dLsd1" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31799607" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382, edam:topic_3512 ; @@ -158642,51 +152719,8 @@ ABSTRACT Many biological processes are regulated by single molecules and molecul "Windows" ; sc:url "https://github.com/recleelab/dNEMO-0.9.0" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0749, - edam:topic_3316 ; - sc:citation , - "pmcid:PMC6785190", - "pubmed:31598610" ; - sc:description """Building a Science Gateway For Processing and Modeling Sequencing Data Via Apache Airavata. - -Welcome to dREG and dTOX gateway!. - -The dREG model in the gateway predicts the location of enhancers and promoters using PRO-seq, GRO-seq, or ChRO-seq data. The server takes as input bigWig files provided by the user, which represent PRO-seq signal on the plus and minus strand. The gateway uses a pre-trained dREG model to identify divergent transcript start sites and impute the predicted DNase-I hypersensitivity signal across the genome. The current dREG model works in any mammalian organism. - -||| NAME (dREG) SIMILAR TO (PUB. DIFFERENT) bio.tools/dreg (dreg). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'dREG gateway'""" ; - sc:featureList edam:operation_0440, - edam:operation_3222, - edam:operation_3557 ; - sc:name "dREG_autogenerated" ; - sc:url "https://dREG.dnasequence.org/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3304, - edam:topic_3325, - edam:topic_3384, - edam:topic_3474 ; - sc:citation ; - sc:description """a visualization approach for use with decentralized data. - -Abstract Visualization of high dimensional large-scale datasets via an embedding into a 2D map is a powerful exploration tool for assessing latent structure in the data and detecting outliers. It plays a vital role in neuroimaging field because sometimes it is the only way to perform quality control of large dataset. There are many methods developed to perform this task but most of them rely on the assumption that all samples are locally available for the computation. Specifically, one needs access to all the samples in order to compute the distance directly between all pairs of points to measure the similarity. But all pairs of samples may not be available locally always from local sites for various reasons (e.g. privacy concerns for rare disease data, institutional or IRB policies). - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'COIL-20'""" ; - sc:featureList edam:operation_0337, - edam:operation_2428, - edam:operation_3283, - edam:operation_3436 ; - sc:name "dSNE" ; - sc:url "https://doi.org/10.1101/826974" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0634, @@ -158705,7 +152739,7 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation sc:url "https://bitbucket.org/cmartiga/dsreg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -158727,8 +152761,49 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation biotools:primaryContact "Krishna Choudhary", "Sharon Aviran" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3337, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9299305", + "pubmed:35857792" ; + sc:description "An open-source digital system for quantifying immunohistochemical staining with 3,3'-diaminobenzidine (DAB)." ; + sc:featureList edam:operation_3435, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DAB-quant" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sarafridov/DAB-quant" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0202, + edam:topic_3067, + edam:topic_3336, + edam:topic_3373 ; + sc:citation , + "pmcid:PMC9198367", + "pubmed:35721178" ; + sc:description "An end-to-end model DACPGTN for predicting ATC code for a given drug." ; + sc:featureList edam:operation_3891, + edam:operation_3927, + edam:operation_3935, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DACPGTN" ; + sc:url "https://github.com/Szhgege/DACPGTN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -158739,7 +152814,7 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation biotools:primaryContact "Zhongqi Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2269, @@ -158755,7 +152830,7 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation sc:url "https://github.com/zhonghualiu/DACT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625 ; @@ -158770,16 +152845,19 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation sc:url "http://www.fao.org/dad-is/en/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, - edam:topic_3168 ; + edam:topic_3168, + edam:topic_3174, + edam:topic_3697 ; sc:citation , "pmcid:PMC4927377", "pubmed:27214047" ; sc:description "This package infers exact sequence variants (SVs) from amplicon data, replacing the commonly used and coarser OTU clustering approach. This pipeline inputs demultiplexed fastq files, and outputs the sequence variants and their sample-wise abundances after removing substitution and chimera errors. Taxonomic classification is available via a native implementation of the RDP naive Bayesian classifier." ; - sc:featureList edam:operation_3227 ; + sc:featureList edam:operation_3200, + edam:operation_3227 ; sc:license "GPL-3.0" ; sc:name "dada2" ; sc:operatingSystem "Linux", @@ -158792,7 +152870,7 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation biotools:primaryContact "Benjamin Callahan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pmcid:PMC8157834", "pubmed:34069990" ; @@ -158807,7 +152885,7 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation sc:url "https://github.com/quadram-institute-bioscience/dadaist2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3172 ; sc:citation , @@ -158822,8 +152900,21 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation sc:url "https://github.com/HuanLab/DaDIA.git" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "Prediction of drugs against aspartate semialdehyde dehydrogenase of dad pathways" ; + sc:featureList edam:operation_2945 ; + sc:name "Dadpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/dadpred/home.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -158839,7 +152930,7 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation sc:url "https://github.com/XiuzeZhou/DAEi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3384 ; sc:citation , @@ -158850,7 +152941,7 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation sc:url "https://github.com/sutd-visual-computing-group/dag-gans" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -158866,7 +152957,7 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation sc:url "https://github.com/jie108/dagbagM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -158882,7 +152973,7 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation sc:url "http://dagitty.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -158900,17 +152991,53 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation sc:url "https://bioconductor.org/packages/release/bioc/html/dagLogo.html" ; biotools:primaryContact "Jianhong Ou" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0990" ; + sc:name "Compound name" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0154, + edam:topic_3336, + edam:topic_3375, + edam:topic_3379 ; + sc:citation , + "pmcid:PMC8573451", + "pubmed:34803258" ; + sc:description "A database for anti-cancer compounds with targets and side effect profiles." ; + sc:featureList edam:operation_2421, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:name "DaiCee" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.hccbif.org/usersearch.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, + edam:topic_0084, edam:topic_0097, + edam:topic_0121, + edam:topic_0160, + edam:topic_0623, edam:topic_2814 ; - sc:citation "pubmed:20457744" ; + sc:citation , + "pmcid:PMC9252788", + "pubmed:20457744", + "pubmed:35610055" ; sc:description "The Dali server compares newly solved structures against structures in the PDB, allows browsing of pre-computed structural neighborhoods and generates suboptimal alignments from pairwise structure comparisons." ; sc:featureList edam:operation_0503, edam:operation_2483, edam:operation_2487 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; sc:name "Dali" ; sc:operatingSystem "Linux", "Mac", @@ -158921,14 +153048,12 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1481" ; - sc:name "Structure alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1481" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1481" ; + sc:name "Structure alignment (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2814 ; @@ -158950,7 +153075,7 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation biotools:primaryContact "Web Production" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3314, @@ -158967,7 +153092,7 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation sc:url "https://gitlab.com/daltonproject/daltonproject" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -158986,7 +153111,7 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation biotools:primaryContact "Jobst Landgrebe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -159008,7 +153133,7 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation sc:url "http://www.damage-net.co.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -159025,7 +153150,7 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation sc:url "https://github.com/Integrative-Transcriptomics/DamageProfiler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0622, @@ -159046,14 +153171,14 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3583" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0769, @@ -159075,7 +153200,7 @@ MOTIVATION:Alternative splicing (AS) is an important mechanism in the generation biotools:primaryContact "Owen Marshall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3168, @@ -159100,7 +153225,7 @@ them for both binary and multi-class classification purposes.""" ; "Mattia Chiesa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0625, @@ -159121,7 +153246,7 @@ them for both binary and multi-class classification purposes.""" ; biotools:primaryContact "Camille Scott" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0219, @@ -159142,20 +153267,30 @@ them for both binary and multi-class classification purposes.""" ; sc:url "http://apps.sanbi.ac.za/dampd/" ; biotools:primaryContact "Vladimir B. Bajic" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "DAMpro is an in silico method, which is developed to predict Disease Associated Mutations." ; + sc:featureList edam:operation_2945 ; + sc:name "DAMpro" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/dampro/index.php" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1583" ; - sc:name "Nucleic acid melting profile" ; - sc:sameAs "http://edamontology.org/data_1583" ], + sc:additionalType "http://edamontology.org/data_1583" ; + sc:name "Nucleic acid melting profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -159185,7 +153320,7 @@ them for both binary and multi-class classification purposes.""" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/dan.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3067 ; @@ -159198,7 +153333,7 @@ them for both binary and multi-class classification purposes.""" ; sc:url "http://ekhidna.biocenter.helsinki.fi/poxo/dancer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -159212,8 +153347,33 @@ them for both binary and multi-class classification purposes.""" ; sc:name "DangerTrack" ; sc:url "https://github.com/DCGenomics/DangerTrack" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0749, + edam:topic_3064, + edam:topic_3295, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC9279159", + "pubmed:35789323" ; + sc:description "This Data Coordination Center web page allows DANIO-CODE consortium members to submit and view their data sets annotated with standard metadata nomenclatures." ; + sc:featureList edam:operation_0438, + edam:operation_2421, + edam:operation_3802, + edam:operation_3933 ; + sc:license "Other" ; + sc:name "DANIO-CODE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://danio-code.zfin.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -159232,7 +153392,7 @@ them for both binary and multi-class classification purposes.""" ; sc:url "https://sites.google.com/site/danposdoc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -159247,7 +153407,7 @@ them for both binary and multi-class classification purposes.""" ; sc:url "http://omics.pnl.gov/software/DAnTE.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0080 ; @@ -159259,7 +153419,7 @@ them for both binary and multi-class classification purposes.""" ; sc:url "http://repeatexplorer.org/?page_id=832" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121 ; @@ -159279,7 +153439,7 @@ them for both binary and multi-class classification purposes.""" ; biotools:primaryContact "Samuel Wieczorek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -159295,7 +153455,7 @@ them for both binary and multi-class classification purposes.""" ; sc:url "http://www.daphnia-stressordb.uni-hamburg.de/dsdbstart.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "A library enabling teams to distributed parameter sets between computational resources for faster parameter testing." ; sc:isAccessibleForFree true ; sc:license "BSD-3-Clause" ; @@ -159307,7 +153467,7 @@ them for both binary and multi-class classification purposes.""" ; sc:url "https://github.com/BenSDuggan/DAPT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0611, @@ -159328,7 +153488,7 @@ them for both binary and multi-class classification purposes.""" ; biotools:primaryContact "DARC site Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3168, @@ -159350,15 +153510,35 @@ them for both binary and multi-class classification purposes.""" ; biotools:primaryContact "DARIO Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:description "Mapping Darkness in the Protein Universe" ; sc:name "Dark Proteome Database" ; sc:softwareVersion "1.1" ; sc:url "http://no.url" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_3050, + edam:topic_3071, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8983664", + "pubmed:35383183" ; + sc:description "A global database for bats in karsts and caves." ; + sc:featureList edam:operation_2421 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-4.0" ; + sc:name "DarkCideS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://darkcides.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0622, @@ -159372,8 +153552,30 @@ them for both binary and multi-class classification purposes.""" ; sc:name "DarkQ" ; sc:url "http://github.com/phiweger/darkq" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0218, + edam:topic_0625, + edam:topic_0634, + edam:topic_3335 ; + sc:citation , + "pmcid:PMC9028073", + "pubmed:35454109" ; + sc:description "Darling is a web application, which utilizes Name Entity Recognition to identify human-related biomedical terms in PubMed articles, mentioned in OMIM, DisGeNET and Human Phenotype Ontology (HPO) disease records, and generates an interactive biomedical entity association network." ; + sc:featureList edam:operation_2422, + edam:operation_3280, + edam:operation_3778 ; + sc:license "Not licensed" ; + sc:name "Darling" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://darling.pavlopouloslab.info" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -159389,7 +153591,7 @@ them for both binary and multi-class classification purposes.""" ; sc:url "http://carlit.toulouse.inra.fr/Darn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3337, edam:topic_3384, @@ -159405,7 +153607,7 @@ them for both binary and multi-class classification purposes.""" ; sc:url "https://github.com/vfonov/DARQ" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -159425,7 +153627,7 @@ them for both binary and multi-class classification purposes.""" ; biotools:primaryContact "Charles Shijie Zheng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -159444,7 +153646,7 @@ them for both binary and multi-class classification purposes.""" ; sc:url "https://github.com/asm3-nist/DART-MS-DST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -159457,16 +153659,36 @@ them for both binary and multi-class classification purposes.""" ; sc:url "https://github.com/hsinnan75/DART" ; biotools:primaryContact "Wen-Lian Hsu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workflow" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0621, + edam:topic_0749, + edam:topic_0780, + edam:topic_3299 ; + sc:citation , + "pmcid:PMC8775202", + "pubmed:35052350" ; + sc:description "DARTS, Domain-Associated RetroTransposon Search, is a pipeline developed for searching, mining and annotation of LTR retrotransposons." ; + sc:featureList edam:operation_0303, + edam:operation_0525, + edam:operation_2421 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DARTS" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/Mikkey-the-turtle/DARTS_v0.1" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0736 ; sc:citation ; @@ -159484,7 +153706,7 @@ them for both binary and multi-class classification purposes.""" ; sc:url "https://tmdas.bioinfo.se/DAS/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -159505,22 +153727,20 @@ them for both binary and multi-class classification purposes.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Plug-in" ; sc:applicationSubCategory edam:topic_3316 ; @@ -159543,7 +153763,7 @@ them for both binary and multi-class classification purposes.""" ; biotools:primaryContact "Ricard Illa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -159563,8 +153783,25 @@ them for both binary and multi-class classification purposes.""" ; sc:url "http://www.dasmiweb.de" ; biotools:primaryContact "DASMI" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3174 ; + sc:citation , + "pmcid:PMC6786971", + "pubmed:29807988" ; + sc:description "DAS Tool is an automated method that integrates the results of a flexible number of binning algorithms to calculate an optimized, non-redundant set of bins from a single assembly." ; + sc:featureList edam:operation_3798 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "dastool" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/cmks/DAS_Tool" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0160 ; @@ -159588,14 +153825,14 @@ them for both binary and multi-class classification purposes.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3713" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -159608,7 +153845,7 @@ them for both binary and multi-class classification purposes.""" ; sc:url "http://www.ce4csb.org/software.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0218, edam:topic_2640, @@ -159628,32 +153865,8 @@ them for both binary and multi-class classification purposes.""" ; sc:url "https://www.mathworks.com/matlabcentral/fileexchange/67939-data-mining-and-visualisation-of-pubmed" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0593, - edam:topic_3314, - edam:topic_3318, - edam:topic_3474, - edam:topic_3489 ; - sc:citation , - "pmcid:PMC6839624", - "pubmed:31728276" ; - sc:description """Status, Challenges, and Perspectives. - -SpringerMaterials – properties of materials. - -SpringerMaterials: search, manipulate, and export data in materials science, physics, chemistry, and engineering. - -We use cookies to ensure the functionality of our website, to personalize content and advertising, to provide social media features, and to analyze our traffic. If you allow us to do so, we also inform our social media, advertising and analysis partners about your use of our website. You can decide for yourself which categories you want to deny or allow. Please note that based on your settings not all functionalities of the site are available. Further information can be found in our Privacy Policy . - -SpringerMaterials celebrates the 2019 Nobel Prize in Chemistry winners""" ; - sc:featureList edam:operation_3096, - edam:operation_3431, - edam:operation_3454 ; - sc:name "data-driven materials science" ; - sc:url "http://materials.springer.com" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "A guide of data processing in NIR application for modeling" ; sc:featureList edam:operation_3936 ; @@ -159666,57 +153879,16 @@ SpringerMaterials celebrates the 2019 Nobel Prize in Chemistry winners""" ; sc:url "https://www.mathworks.com/matlabcentral/fileexchange/48493-data-processing-for-modeling-with-the-nir-data" ; biotools:primaryContact "Yonghuan Yun" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0632, - edam:topic_3314, - edam:topic_3382, - edam:topic_3512 ; - sc:citation ; - sc:description """Stochastic simulation platform for visualization and estimation of transcriptional kinetics. - -Gorin, Gennady Caltech 0000-0001-6097-2029 ORCID. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'data'""" ; - sc:featureList edam:operation_0337, - edam:operation_2426, - edam:operation_3799 ; - sc:name "data algorithm" ; - sc:url "https://data.caltech.edu/records/1287" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3050, - edam:topic_3390, - edam:topic_3810 ; - sc:citation , - "pmcid:PMC6685674", - "pubmed:31406900" ; - sc:description "> LOW CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/pappso (INRA.FR), bio.tools/phyleasprog (INRA.FR), bio.tools/lepidodb (INRA.FR), bio.tools/the_genetic_map_comparator (INRA.FR) | > CORRECT NAME OF TOOL COULD ALSO BE 'data', 'institut' | Annotation data about multi criteria assessment methods used in the agri-food research | L'actuelle version du portail Data Inra est basée sur la version 4.10.1 de Dataverse. Découvrez les nouvelles fonctionnalités proposées dans Data Inra | Share this dataverse on your favorite social media networks" ; - sc:featureList edam:operation_0305, - edam:operation_3436 ; - sc:name "data article" ; - sc:url "https://data.inra.fr/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3399, - edam:topic_3418, - edam:topic_3419 ; - sc:citation , - "pubmed:31389497" ; - sc:description "> LOW CONFIDENCE! | Self-injurious behavior and related mortality in children under 10 years of age | The requested URL was rejected. Please consult with your administrator | Your support ID is: 15055451159810011898 | Plano Diretor de Tecnologia da Informação do Ministério da Saúde, biênio 2017-2018, foi publicada no Diário Oficial da União | Software de gestão hospitalar completo, desenvolvido em tecnologia web que substitui o sistema HOSPUB" ; - sc:name "data self-injurious" ; - sc:url "http://datasus.saude.gov.br/" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -159731,7 +153903,7 @@ Gorin, Gennady Caltech 0000-0001-6097-2029 ORCID. sc:url "http://www.ms-utils.org/DataAnalysis2TPP.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0623, @@ -159753,34 +153925,34 @@ Gorin, Gennady Caltech 0000-0001-6097-2029 ORCID. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Database metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1674" ; - sc:name "Sequence database cross-references" ; - sc:sameAs "http://edamontology.org/data_1674" ], + sc:additionalType "http://edamontology.org/data_1057" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence database name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ], + sc:additionalType "http://edamontology.org/data_0957" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Database metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1057" ; - sc:name "Sequence database name" ; - sc:sameAs "http://edamontology.org/data_1057" ], + sc:additionalType "http://edamontology.org/data_1674" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence database cross-references" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0581" ; - sc:name "Database" ; - sc:sameAs "http://edamontology.org/data_0581" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0581" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Database" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -159797,8 +153969,58 @@ Gorin, Gennady Caltech 0000-0001-6097-2029 ORCID. sc:softwareHelp ; sc:url "http://pappso.inra.fr/bioinfo/pdm/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2337" ; + sc:name "Resource metadata" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:name "Mathematical model" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3905" ; + sc:name "Histogram" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_3305 ; + sc:citation , + "pmcid:PMC7399783", + "pubmed:32853931" ; + sc:description "DatAC (Data Against COVID-19), a data fusion project with an interactive web frontend that integrates COVID-19 and environmental data in Spain. DatAC is provided with powerful data analysis and statistical capabilities that allow users to explore and analyze individual trends and associations among the provided data." ; + sc:featureList edam:operation_3436, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:name "DatAC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://covid19.genyo.es" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0769, + edam:topic_3372, + edam:topic_3572 ; + sc:citation , + "pmcid:PMC9098071", + "pubmed:35551557" ; + sc:description "datacleanr is a flexible and efficient tool for interactive data cleaning, and is inherently interoperable, as it seamlessly integrates into reproducible data analyses pipelines in R." ; + sc:featureList edam:operation_0337, + edam:operation_2428, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "datacleanr" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://www.github.com/the-hull/datacleanr" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3383, @@ -159815,7 +154037,7 @@ Gorin, Gennady Caltech 0000-0001-6097-2029 ORCID. sc:url "http://www.amolf.nl/download/datacubeexplorer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -159834,7 +154056,7 @@ This resource ("Resource") provides an efficient approach for neuroscience labs biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3489, edam:topic_3810 ; @@ -159847,7 +154069,7 @@ This resource ("Resource") provides an efficient approach for neuroscience labs sc:url "http://www.dataman.co.nz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0091, @@ -159873,26 +154095,8 @@ This resource ("Resource") provides an efficient approach for neuroscience labs sc:url "https://www.datanator.info" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3077, - edam:topic_3678 ; - sc:citation , - "pmcid:PMC6811878", - "pubmed:31667224" ; - sc:description """Dataset on discarded cigarette packs in Mongolia. - -Mongolia Illicit Cigarette Data 2017-2018. - -Research on the Economics of Excisable Products - University of Cape Town. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Tobacco Control'""" ; - sc:featureList edam:operation_3096 ; - sc:name "dataportal" ; - sc:url "https://www.datafirst.uct.ac.za/dataportal/index.php/catalog/772" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -159909,7 +154113,7 @@ Research on the Economics of Excisable Products - University of Cape Town. sc:url "https://github.com/wgmao/DataRemix" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0091, @@ -159929,7 +154133,7 @@ Research on the Economics of Excisable Products - University of Cape Town. biotools:primaryContact "Avi Ma’ayan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3263, edam:topic_3305, @@ -159952,7 +154156,7 @@ A place for DataSHIELD contributors and users to have discussions. sc:url "https://datashield.discourse.group/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -159969,7 +154173,7 @@ A place for DataSHIELD contributors and users to have discussions. biotools:primaryContact "Vahe Tshitoyan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in", "Web application" ; sc:applicationSubCategory edam:topic_3071 ; @@ -159988,7 +154192,7 @@ A place for DataSHIELD contributors and users to have discussions. sc:url "https://zenodo.org/record/7639#.W45ZrC0rzfZ" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -160016,7 +154220,7 @@ Code coverage done right""" ; sc:url "http://www.datelife.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0623, @@ -160037,7 +154241,7 @@ Code coverage done right""" ; biotools:primaryContact "ATRM Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0196, @@ -160057,7 +154261,7 @@ Code coverage done right""" ; sc:url "https://github.com/andvides/DATMA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -160076,7 +154280,7 @@ Code coverage done right""" ; sc:url "https://datum.csl.sri.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0736, @@ -160093,7 +154297,7 @@ Code coverage done right""" ; sc:url "http://genome.lcqb.upmc.fr/Domain-Architecture-Viewer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -160115,7 +154319,7 @@ Code coverage done right""" ; biotools:primaryContact "DAVID Bioinformatic Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -160131,26 +154335,21 @@ Code coverage done right""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:name "Data reference" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_0950" ; + sc:name "Mathematical model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Plug-in" ; sc:applicationSubCategory edam:topic_3071, @@ -160173,8 +154372,29 @@ Code coverage done right""" ; sc:url "http://www.bioconductor.org/packages//2.13/bioc/html/DAVIDQuery.html" ; biotools:primaryContact "Roger Day" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3316, + edam:topic_3384, + edam:topic_3398 ; + sc:citation , + "pubmed:35922700" ; + sc:description "Distributed automation for XNAT toolkit (DAX) provides large-scale image storage and analysis pipelines with an optimized job management tool for neuroimaging data" ; + sc:featureList edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DAX" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareHelp , + ; + sc:url "https://github.com/VUIIS/dax" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2640, @@ -160193,22 +154413,8 @@ Cancer hallmarks rely on its specific transcriptional programs, which are dysreg sc:name "dbInDel" ; sc:url "http://enhancer-indel.cam-su.org/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_2885, - edam:topic_3517 ; - sc:citation , - "pmcid:PMC6696953", - "pubmed:31447886" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'GBA', 'PASCAL', 'Novel Gene-Based Analysis ASD GWAS', 'ASD-associated' | Insight Into the Biological Role of Associated Genes | Background: Autism spectrum disorder (ASD) is a neurodevelopmental disorder characterized by its significant social impact and high heritability. The latest meta-analysis of ASD GWAS (genome-wide association studies) has revealed the association of several SNPs that were replicated in additional sets of independent samples. However, summary statistics from GWAS can be used to perform a gene-based analysis (GBA). GBA allows to combine all genetic information across the gene to create a single statistic (p-value for each gene). Thus, PASCAL (Pathway scoring algorithm), a novel GBA tool, has been applied to the summary statistics from the latest meta-analysis of ASD. GBA approach (testing the gene as a unit) provides an advantage to perform an accurate insight into the biological ASD mechanisms" ; - sc:featureList edam:operation_3196, - edam:operation_3501, - edam:operation_3557 ; - sc:name "dbMDEGA" ; - sc:url "https://dbmdega.shinyapps.io/dbMDEGA/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -160229,7 +154435,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -160246,8 +154452,35 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:softwareVersion "3" ; sc:url "http://dbaasp.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal", + "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0154, + edam:topic_3168, + edam:topic_3301 ; + sc:citation , + "pmcid:PMC8690246", + "pubmed:34850155" ; + sc:description "DBAMP 2.0: updated resource for antimicrobial peptides with an enhanced scanning method on genomic and proteomic data." ; + sc:featureList edam:operation_0418, + edam:operation_0476, + edam:operation_2421, + edam:operation_3461, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "dbAMP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "2.0" ; + sc:url "http://awi.cuhk.edu.cn/dbAMP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0621, @@ -160269,8 +154502,32 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st biotools:primaryContact "DBASS3 Support", "DBASS5 Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2885, + edam:topic_3419, + edam:topic_3473, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9250320", + "pubmed:35779245" ; + sc:description "A comprehensive bipolar disorder database for genetic research." ; + sc:featureList edam:operation_2421, + edam:operation_3227, + edam:operation_3791 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "dbBIP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://dbbip.xialab.info" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3339, @@ -160287,7 +154544,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st biotools:primaryContact "Visanu Wanchai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0152, edam:topic_0160, @@ -160310,7 +154567,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st biotools:primaryContact "Ying Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0152, edam:topic_0154, @@ -160327,7 +154584,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://bcb.unl.edu/dbCAN_PUL/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0152, edam:topic_0160, @@ -160342,7 +154599,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st biotools:primaryContact "Yanbin Yin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0749, @@ -160361,7 +154618,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st biotools:primaryContact "Kun Liang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -160378,7 +154635,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://yamasati.nig.ac.jp/dbcns" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2830, @@ -160397,7 +154654,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://covp.immt.res.in/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -160413,7 +154670,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://120.107.8.16/dbcp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -160430,14 +154687,13 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2716" ; - sc:name "DBD ID" ; - sc:sameAs "http://edamontology.org/data_2716" ] ; + sc:additionalType "http://edamontology.org/data_2716" ; + sc:name "DBD ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation ; @@ -160452,7 +154708,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st biotools:primaryContact "Sarah A. Teichmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0654, @@ -160467,7 +154723,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st biotools:primaryContact "Support Forum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -160486,7 +154742,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st biotools:primaryContact "dbdepc Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0749, @@ -160507,88 +154763,128 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st biotools:primaryContact "Mirrian Meng-Ru Ho", "Wen-chang Lin" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0749, + edam:topic_3169, + edam:topic_3295, + edam:topic_3940 ; + sc:citation , + "pmcid:PMC9435744", + "pubmed:35977841" ; + sc:description "A dbEmbryo multi-omics database for analyses of synergistic regulation in early mammalian embryo development." ; + sc:featureList edam:operation_0313, + edam:operation_0314, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "dbEmbryo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://sysomics.com/dbEmbryo/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0219, + edam:topic_0659, + edam:topic_2640, + edam:topic_3068 ; + sc:citation , + "pmcid:PMC9162909", + "pubmed:35685362" ; + sc:description "A manually curated database of human and mouse essential lncRNA genes." ; + sc:featureList edam:operation_0314, + edam:operation_2421, + edam:operation_3431, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "dbEssLnc" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://esslnc.pufengdu.org" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1105" ; - sc:name "dbEST accession" ; - sc:sameAs "http://edamontology.org/data_1105" ], + sc:additionalType "http://edamontology.org/data_1105" ; + sc:name "dbEST accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1105" ; - sc:name "dbEST accession" ; - sc:sameAs "http://edamontology.org/data_1105" ], + sc:additionalType "http://edamontology.org/data_2314" ; + sc:name "GI number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2314" ; - sc:name "GI number" ; - sc:sameAs "http://edamontology.org/data_2314" ], + sc:additionalType "http://edamontology.org/data_1105" ; + sc:name "dbEST accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2314" ; - sc:name "GI number" ; - sc:sameAs "http://edamontology.org/data_2314" ], + sc:additionalType "http://edamontology.org/data_1105" ; + sc:name "dbEST accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1105" ; - sc:name "dbEST accession" ; - sc:sameAs "http://edamontology.org/data_1105" ], + sc:additionalType "http://edamontology.org/data_1105" ; + sc:name "dbEST accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1105" ; - sc:name "dbEST accession" ; - sc:sameAs "http://edamontology.org/data_1105" ], + sc:additionalType "http://edamontology.org/data_1105" ; + sc:name "dbEST accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1105" ; - sc:name "dbEST accession" ; - sc:sameAs "http://edamontology.org/data_1105" ], + sc:additionalType "http://edamontology.org/data_2314" ; + sc:name "GI number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2314" ; - sc:name "GI number" ; - sc:sameAs "http://edamontology.org/data_2314" ], + sc:additionalType "http://edamontology.org/data_2314" ; + sc:name "GI number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2314" ; - sc:name "GI number" ; - sc:sameAs "http://edamontology.org/data_2314" ], + sc:additionalType "http://edamontology.org/data_2314" ; + sc:name "GI number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2314" ; - sc:name "GI number" ; - sc:sameAs "http://edamontology.org/data_2314" ] ; + sc:additionalType "http://edamontology.org/data_2314" ; + sc:name "GI number" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2532" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2532" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2532" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2310" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2310" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2532" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3512 ; sc:citation "pubmed:8401577" ; @@ -160603,7 +154899,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://www.ncbi.nlm.nih.gov/dbEST/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -160625,8 +154921,26 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://www.hpppi.iicb.res.in/btox/" ; biotools:primaryContact "Saikat Chakrabarti" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Script" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3360, + edam:topic_3474 ; + sc:citation , + "pubmed:35929780" ; + sc:description "DBFE is a Python library with feature extraction methods that facilitate classifier learning from distributions of genomic variants." ; + sc:featureList edam:operation_3937 ; + sc:license "BSD-3-Clause" ; + sc:name "DBFE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/MNMdiagnostics/dbfe" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -160641,7 +154955,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://www.ebi.ac.uk/Tools/dbfetch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -160665,7 +154979,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st biotools:primaryContact "Michael Feolo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3335, @@ -160679,7 +154993,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "https://github.com/gversmee/dbgap2x" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -160701,7 +155015,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -160731,7 +155045,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://emboss.open-bio.org/rel/rel6/apps/dbiblast.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -160761,7 +155075,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://emboss.open-bio.org/rel/rel6/apps/dbifasta.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -160791,7 +155105,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://emboss.open-bio.org/rel/rel6/apps/dbiflat.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -160821,7 +155135,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://emboss.open-bio.org/rel/rel6/apps/dbigcg.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -160837,7 +155151,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://www.cbi.seu.edu.cn/DBindR/DBindR.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -160860,7 +155174,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "https://mae.hms.harvard.edu/aboutmae.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0208, @@ -160878,7 +155192,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://bioinfo.aielab.cc/dbMCS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -160898,7 +155212,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://predictor.nchu.edu.tw/dBMHCC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -160916,7 +155230,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://database.liulab.science/dbMTS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3390 ; @@ -160933,7 +155247,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://dbnp.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -160963,7 +155277,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st biotools:primaryContact "Xiaoming Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -160982,7 +155296,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://www.biostatistics.online/dbPepNeo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3336, @@ -160997,7 +155311,7 @@ DNA mismatch repair (MMR) genes play an important role in maintaining genomic st sc:url "http://www.dbpom.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0203, @@ -161015,7 +155329,7 @@ Databases of plants have been an integral part of modern biology.""" ; sc:url "https://www.habdsk.org/dbpr.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -161035,7 +155349,7 @@ Databases of plants have been an integral part of modern biology.""" ; sc:url "https://webs.iiitd.edu.in/raghava/dbpred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0601, @@ -161058,7 +155372,7 @@ Databases of plants have been an integral part of modern biology.""" ; sc:url "http://dbpsp.biocuckoo.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0601 ; @@ -161076,8 +155390,63 @@ Databases of plants have been an integral part of modern biology.""" ; sc:url "http://dbptm.mbc.nctu.edu.tw" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0128, + edam:topic_0601, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8728263", + "pubmed:34788852" ; + sc:description "An updated database for exploring regulatory networks and functional associations of protein post-translational modifications." ; + sc:featureList edam:operation_0417, + edam:operation_2421, + edam:operation_3755 ; + sc:isAccessibleForFree true ; + sc:name "dbPTM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://awi.cuhk.edu.cn/dbPTM/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0623, + edam:topic_3172, + edam:topic_3174, + edam:topic_3407, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC8824206", + "pubmed:34851722" ; + sc:description "dbPUP is a database of polyphenol utilization proteins (PUPs) that have been experimentally characterized to metabolize polyphenol substrates." ; + sc:featureList edam:operation_0303, + edam:operation_2422, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:name "dbPUP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bcb.unl.edu/dbpup/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -161096,7 +155465,7 @@ Databases of plants have been an integral part of modern biology.""" ; biotools:primaryContact "Nick V. Grishin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0654, @@ -161113,16 +155482,36 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:name "DBSCAN-SWA" ; sc:url "https://github.com/HIT-ImmunologyLab/DBSCAN-SWA/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_3304, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8570685", + "pubmed:34625460" ; + sc:description "An Open-Source Software for Automated Accurate Analysis of Rodent Behavior in Forced Swim Test and Tail Suspension Test." ; + sc:featureList edam:operation_2940, + edam:operation_3659, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DBscorer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/swanandlab/DBscorer" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1106" ; - sc:name "dbSNP ID" ; - sc:sameAs "http://edamontology.org/data_1106" ] ; + sc:additionalType "http://edamontology.org/data_1106" ; + sc:name "dbSNP ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -161143,7 +155532,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:url "http://www.ncbi.nlm.nih.gov/SNP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2885, @@ -161162,7 +155551,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba biotools:primaryContact "Colin Clarke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -161183,7 +155572,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba biotools:primaryContact "dbSNP-Q Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0602, @@ -161200,7 +155589,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba biotools:primaryContact "Nail M Gizzatkulov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0157, @@ -161224,14 +155613,13 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2389" ; - sc:name "UniSTS accession" ; - sc:sameAs "http://edamontology.org/data_2389" ] ; + sc:additionalType "http://edamontology.org/data_2389" ; + sc:name "UniSTS accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation , @@ -161246,7 +155634,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:url "http://www.ncbi.nlm.nih.gov/dbSTS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2815, @@ -161267,10 +155655,9 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -161301,14 +155688,13 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Database search results" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3071 ; @@ -161326,7 +155712,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba biotools:primaryContact "Lennart Martens" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Collection of programs to manipulate sequence databanks files." ; @@ -161334,7 +155720,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:url "https://bioweb.pasteur.fr/packages/pack@dbtools@0.99c" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2269, @@ -161353,8 +155739,30 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba "Windows" ; sc:url "https://github.com/fpy94/DBT" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0203, + edam:topic_0659, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8535304", + "pubmed:34680971" ; + sc:description "A Web-Server of tRNA Expression Profiles from Small RNA Sequencing Data in Humans." ; + sc:featureList edam:operation_0314, + edam:operation_0464, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:name "DBtRend" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://trend.pmrc.re.kr/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -161378,7 +155786,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba biotools:primaryContact "Y. Suzuki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199 ; sc:description "NCBI's database of genomic structural variation – it contains insertions, deletions, duplications, inversions, multinucleotide substitutions, mobile element insertions, translocations, and complex chromosomal rearrangements" ; @@ -161393,10 +155801,9 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -161426,7 +155833,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:url "http://emboss.open-bio.org/rel/rel6/apps/dbxcompress.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -161456,7 +155863,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:url "http://emboss.open-bio.org/rel/rel6/apps/dbxedam.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -161487,10 +155894,9 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0958" ; - sc:name "Tool metadata" ; - sc:sameAs "http://edamontology.org/data_0958" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0958" ; + sc:name "Tool metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -161520,7 +155926,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:url "http://emboss.open-bio.org/rel/rel6/apps/dbxflat.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -161550,7 +155956,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:url "http://emboss.open-bio.org/rel/rel6/apps/dbxgcg.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -161581,10 +155987,9 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -161614,7 +156019,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:url "http://emboss.open-bio.org/rel/rel6/apps/dbxreport.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -161645,10 +156050,9 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -161678,7 +156082,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:url "http://emboss.open-bio.org/rel/rel6/apps/dbxstat.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -161709,10 +156113,9 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -161742,7 +156145,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:url "http://emboss.open-bio.org/rel/rel6/apps/dbxuncompress.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -161757,16 +156160,62 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:name "DCABM-TCM" ; sc:url "http://bionet.ncpsb.org.cn/dcabm-tcm/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0781, + edam:topic_3375, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC8536485", + "pubmed:34723158" ; + sc:description "Drug repositioning of single and drug combinations using Flux Balance Analysis" ; + sc:featureList edam:operation_3223, + edam:operation_3660, + edam:operation_3891, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DCcov" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sysbiolux/DCcov" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0769, + edam:topic_2229, + edam:topic_2640 ; + sc:citation , + "pubmed:34927666" ; + sc:description "Identifying cancer pathway dysregulations using differential causal effects." ; + sc:featureList edam:operation_2428, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "dce" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bioconductor.org/packages/release/bioc/html/dce.html" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0976" ; - sc:name "Identifier (by type of data)" ; - sc:sameAs "http://edamontology.org/data_0976" ] ; + sc:additionalType "http://edamontology.org/data_0976" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier (by type of data)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3473, @@ -161786,7 +156235,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba biotools:primaryContact "Keiichiro Ono" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -161806,7 +156255,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba biotools:primaryContact "Bao-Hong Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0160, @@ -161826,7 +156275,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba biotools:primaryContact "Hai Fang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -161845,7 +156294,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba biotools:primaryContact "Jiehuan sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0634, @@ -161860,7 +156309,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:url "https://github.com/yanboANU/Haplotype-phasing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169 ; @@ -161880,7 +156329,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba biotools:primaryContact "Bernd Klaus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -161897,8 +156346,29 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:softwareHelp ; sc:url "http://uhlerlab.github.io/causaldag/dci" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_2229, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8944039", + "pubmed:35331133" ; + sc:description "Single cell lineage reconstruction using distance-based algorithms and the R package, DCLEAR" ; + sc:featureList edam:operation_0289, + edam:operation_0323, + edam:operation_3096 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DCLEAR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ikwak2/DCLEAR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:24398258" ; @@ -161913,20 +156383,8 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba "Guanghua Xiao", "Yang Xie" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3384, - edam:topic_3444, - edam:topic_3452 ; - sc:citation , - "pmcid:PMC6738271", - "pubmed:31551745" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'DICOM', 'MRI', 'BET', 'imaging' | Recommendations for Processing Head CT Data | dcm2nii DICOM to NIfTI converter: compiled versions available from NITRC | dcm2niix is a designed to convert neuroimaging data from the DICOM format to the NIfTI format. This web page hosts the developmental source code - a compiled version for Linux, MacOS, and Windows of the most recent stable release is included with MRIcroGL. A full manual for this software is available in the form of a NITRC wiki" ; - sc:featureList edam:operation_3443 ; - sc:name "dcm2niix" ; - sc:url "https://github.com/rordenlab/dcm2niix" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Script" ; sc:applicationSubCategory edam:topic_2640, @@ -161945,7 +156403,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba biotools:primaryContact "Wei Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3360, edam:topic_3384, @@ -161965,7 +156423,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:url "https://github.com/QIICR/dcmqi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3068, @@ -161981,16 +156439,38 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:name "DCN" ; sc:url "https://github.com/qunfengdong/DCN" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_2229, + edam:topic_3170, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8890395", + "pubmed:35251771" ; + sc:description "Deconvolution network (DCNet), an \"explainable\" artificial neural network model was created to infer cell content from bulk RNA-Seq samples." ; + sc:featureList edam:operation_0314, + edam:operation_3629, + edam:operation_3927 ; + sc:license "Not licensed" ; + sc:name "DCNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/xindd/DCNet" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0897" ; - sc:name "Protein property" ; - sc:sameAs "http://edamontology.org/data_0897" ] ; + sc:additionalType "http://edamontology.org/data_0897" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein property" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -162009,7 +156489,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba biotools:primaryContact "Piero Fariselli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0593, @@ -162027,7 +156507,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:url "https://github.com/Bhattacharya-Lab/DConStruct" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -162041,7 +156521,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:url "https://www.nitrc.org/projects/dcp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, edam:topic_3170, @@ -162057,7 +156537,7 @@ Bacteriophages are viruses that specifically infect bacteria and the infected ba sc:url "https://github.com/sdomanskyi/DigitalCellSorter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3302, @@ -162073,8 +156553,28 @@ Parasitologist-level classification of apicomplexan parasites and host cell with sc:name "DCTL" ; sc:url "https://github.com/senli2018/DCTL" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2275, + edam:topic_3343 ; + sc:citation , + "pubmed:34788802" ; + sc:description "A Graphical User Interface for Deep Learning-Accelerated Virtual Screening of Large Chemical Libraries (Deep Docking)." ; + sc:featureList edam:operation_3216, + edam:operation_3454, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DD-GUI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/jamesgleave/DeepDockingGUI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -162095,7 +156595,7 @@ Parasitologist-level classification of apicomplexan parasites and host cell with sc:url "https://github.com/cgplab/ddSeeker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -162111,7 +156611,7 @@ Parasitologist-level classification of apicomplexan parasites and host cell with sc:url "https://github.com/nongdaxiaofeng/DDAPRED" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3489, @@ -162134,7 +156634,7 @@ Parasitologist-level classification of apicomplexan parasites and host cell with sc:url "http://www.ddbj.nig.ac.jp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099 ; @@ -162153,7 +156653,7 @@ Parasitologist-level classification of apicomplexan parasites and host cell with biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0108, @@ -162174,7 +156674,7 @@ Parasitologist-level classification of apicomplexan parasites and host cell with sc:url "http://www.ddccnn.wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0153, edam:topic_0176, @@ -162192,7 +156692,7 @@ ddcMDconverter should be used to convert GROMACS inputs to ddcMD inputs""" ; sc:url "https://github.com/LLNL/ddcMD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3519 ; @@ -162210,7 +156710,7 @@ ddcMDconverter should be used to convert GROMACS inputs to ddcMD inputs""" ; biotools:primaryContact "Jitao David Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3383, @@ -162230,7 +156730,7 @@ ddcMDconverter should be used to convert GROMACS inputs to ddcMD inputs""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3303, edam:topic_3444 ; @@ -162242,7 +156742,7 @@ ddcMDconverter should be used to convert GROMACS inputs to ddcMD inputs""" ; sc:url "https://github.com/cakuba/DDeep3m" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -162265,14 +156765,14 @@ ddcMDconverter should be used to convert GROMACS inputs to ddcMD inputs""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:citation , "pmcid:PMC6606456", @@ -162288,7 +156788,7 @@ ddcMDconverter should be used to convert GROMACS inputs to ddcMD inputs""" ; sc:url "https://github.com/biofold/ddgun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -162312,7 +156812,7 @@ ddcMDconverter should be used to convert GROMACS inputs to ddcMD inputs""" ; biotools:primaryContact "DDI-CPI Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "SPARQL endpoint" ; sc:applicationSubCategory edam:topic_0089, @@ -162328,7 +156828,7 @@ ddcMDconverter should be used to convert GROMACS inputs to ddcMD inputs""" ; sc:url "http://ddiem.phenomebrowser.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -162344,8 +156844,51 @@ ddcMDconverter should be used to convert GROMACS inputs to ddcMD inputs""" ; sc:name "DDIMDL" ; sc:url "https://github.com/YifanDengWHU/DDIMDL" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2899" ; + sc:name "Drug name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0202, + edam:topic_3375, + edam:topic_3378, + edam:topic_3400, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC8728114", + "pubmed:34634800" ; + sc:description "An online drug-drug interaction database towards improving clinical decision-making and patient safety." ; + sc:featureList edam:operation_0224 ; + sc:isAccessibleForFree true ; + sc:name "DDInter" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://ddinter.scbdd.com/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2269, + edam:topic_3377, + edam:topic_3379 ; + sc:citation , + "pmcid:PMC9110191", + "pubmed:35586666" ; + sc:description "Drug-drug interaction prediction with fingerprint (DDIPF): A web-server for predicting the probability that two drugs can interact." ; + sc:featureList edam:operation_0224, + edam:operation_4009 ; + sc:license "Not licensed" ; + sc:name "DDIPF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://106.14.164.77:5004/DDIPF/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -162358,7 +156901,7 @@ ddcMDconverter should be used to convert GROMACS inputs to ddcMD inputs""" ; sc:url "http://sparks-lab.org/yueyang/DFIRE/ddna3-DB-service.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -162381,7 +156924,7 @@ DDPC provides gene-associated data such as protein annotation, molecular pathway biotools:primaryContact "Vlad Bajic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_2269, @@ -162402,7 +156945,7 @@ DDPC provides gene-associated data such as protein annotation, molecular pathway biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -162423,7 +156966,7 @@ DDPC provides gene-associated data such as protein annotation, molecular pathway biotools:primaryContact "Benedikt G Brink" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3390, @@ -162439,26 +156982,26 @@ A final production version of the DDRP platform that includes cohorts, parallel a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_3869" ; + sc:encodingFormat "http://edamontology.org/format_3996" ; + sc:name "Simulation" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3996" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3869" ; - sc:name "Simulation" ; - sc:sameAs "http://edamontology.org/data_3869" ] ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_3996" ; + sc:name "Mathematical model" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3590" ; + sc:name "Trajectory data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3316, @@ -162478,7 +157021,7 @@ A final production version of the DDRP platform that includes cohorts, parallel biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_3068, @@ -162494,7 +157037,7 @@ A final production version of the DDRP platform that includes cohorts, parallel biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0102, @@ -162514,7 +157057,7 @@ deBGA-VARA is a novel variation-aware high-throughput sequencing read aligner. V sc:url "https://github.com/hitbc/deBGA-VARA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168 ; @@ -162534,7 +157077,7 @@ deBGA-VARA is a novel variation-aware high-throughput sequencing read aligner. V "Yadong Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation , @@ -162547,7 +157090,7 @@ deBGA-VARA is a novel variation-aware high-throughput sequencing read aligner. V sc:url "http://grenaud.github.io/deML/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3170, @@ -162570,7 +157113,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; sc:url "https://github.com/ydLiu-HIT/deSALT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3168, @@ -162584,8 +157127,39 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; sc:name "deSAMBA" ; sc:url "https://github.com/hitbc/deSAMBA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:citation , + "pubmed:23516350" ; + sc:description "DEAP, Differential Expression Analysis for Pathways, which capitalizes on information about biological pathways to identify important regulatory patterns from differential expression data. DEAP makes significant improvements over existing approaches by including information about pathway structure and discovering the most differentially expressed portion of the pathway. On simulated data, DEAP significantly outperformed traditional methods: with high differential expression, DEAP increased power by two orders of magnitude; with very low differential expression, DEAP doubled the power. DEAP performance was illustrated on two different gene and protein expression studies. DEAP discovered fourteen important pathways related to chronic obstructive pulmonary disease and interferon treatment that existing approaches omitted. On the interferon study, DEAP guided focus towards a four protein path within the 26 protein Notch signalling pathway." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DEAP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://doi.org/10.1371/journal.pcbi.1002967.s010" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:citation , + "pmcid:PMC8934376", + "pubmed:35342683" ; + sc:description "A Python Package Index for predicting the number of daily COVID-19 deaths." ; + sc:featureList edam:operation_0416, + edam:operation_0560 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "deathdaily" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://pepy.tech/project/deathdaily" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -162607,7 +157181,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0632, @@ -162622,7 +157196,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; sc:url "https://CRAN.R-project.org/package=debar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0203, @@ -162640,7 +157214,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; sc:url "https://sourceforge.net/projects/debay" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -162658,7 +157232,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; sc:url "http://bioconductor.org/packages/debCAM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -162675,7 +157249,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; sc:url "https://github.com/yangence/DEBKS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3474 ; @@ -162688,8 +157262,29 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; sc:name "deboost" ; sc:url "https://pypi.org/project/deboost" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_3168, + edam:topic_3175, + edam:topic_3794 ; + sc:citation ; + sc:description "Deciphering the exact breakpoints of structural variations using long sequencing reads." ; + sc:featureList edam:operation_0308, + edam:operation_0524, + edam:operation_3196, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DeBreak" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Maggi-Chen/DeBreak" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -162707,7 +157302,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; biotools:primaryContact "Alper Kucukural" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -162728,7 +157323,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; biotools:primaryContact "Xinglong Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3306, @@ -162746,7 +157341,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; sc:url "http://github.com/komiveslab/DECA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3676 ; sc:citation , @@ -162759,8 +157354,27 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; "Windows" ; sc:url "https://github.com/bigdatagenomics/deca" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0203, + edam:topic_2640, + edam:topic_3170, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9264694", + "pubmed:35804456" ; + sc:description "DeCAF (DEconvoluted cell type Allele specific Function): Identify cell-type specific QTL effects in tumors by leveraging both allelic and total expression information" ; + sc:featureList edam:operation_3232, + edam:operation_3629, + edam:operation_3799 ; + sc:license "GPL-3.0" ; + sc:name "DeCAF" ; + sc:url "https://github.com/cakalita/stratAS/tree/DeCAF" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -162777,7 +157391,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; sc:url "https://github.com/AaronYll/DECban" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation "pubmed:21447171" ; @@ -162791,7 +157405,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; biotools:primaryContact "Dr. Yongchao Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -162809,7 +157423,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, @@ -162827,22 +157441,22 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -162861,7 +157475,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; biotools:primaryContact "Erik Wright" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation , "pubmed:31416565" ; @@ -162870,7 +157484,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; sc:url "https://codeocean.com/2018/03/08/a-decision-tree-approach-for-the-differential-diagnosis-of-chronic-lymphoid-leukemias-and-peripheral-b-cell-lymphomas/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3473, @@ -162888,7 +157502,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; biotools:primaryContact "Andrea Padoan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -162907,7 +157521,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0208, @@ -162928,7 +157542,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; biotools:primaryContact "Mehdi Bagheri Hamaneh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -162946,7 +157560,7 @@ deSALT - De Bruijn graph-based Spliced Aligner for Long Transcriptome reads""" ; biotools:primaryContact "Training" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -162968,7 +157582,7 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate sc:url "http://github.com/OrensteinLab/DeCoDe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -162981,8 +157595,27 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate sc:name "DECODE" ; sc:url "http://decode.gersteinlab.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_0769, + edam:topic_2830, + edam:topic_3400 ; + sc:citation , + "pmcid:PMC9235487", + "pubmed:35758821" ; + sc:description "DECODE is a python package that allows the user to generate explanations for a TCR binding model." ; + sc:featureList edam:operation_0337, + edam:operation_0416, + edam:operation_3432 ; + sc:license "Not licensed" ; + sc:name "DECODE" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/phineasng/DECODE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2830, @@ -162998,7 +157631,7 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate biotools:primaryContact "Benjamin Chain" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -163022,7 +157655,7 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate biotools:primaryContact "Prof. Dr. Rosario M. Piro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0203, @@ -163042,7 +157675,7 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate biotools:primaryContact "Guofeng Meng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "DecompPipeline provides a comprehensive list of preprocessing functions for performing reference-free deconvolution of complex DNA methylation data." ; sc:name "DecompPipeline" ; @@ -163050,7 +157683,7 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate sc:url "https://github.com/CompEpigen/DecompPipeline" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -163066,7 +157699,7 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate sc:url "https://github.com/bhattacharya-a-bt/DeCompress" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_2229, @@ -163085,7 +157718,7 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate sc:url "https://github.com/molgenis/systemsgenetics/tree/master/Decon2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3295, @@ -163100,26 +157733,26 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3652" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3652" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3652" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -163135,7 +157768,7 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate sc:url "http://omics.pnl.gov/software/DeconMSn.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -163153,7 +157786,7 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate sc:url "https://github.com/lihuamei/DeconPeaker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099 ; @@ -163171,7 +157804,7 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate biotools:primaryContact "Ting Gong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3174, @@ -163188,7 +157821,7 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate "Rob Edwards" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166 ; @@ -163207,7 +157840,7 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate biotools:primaryContact "DEJAN VINKOVIĆ" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -163227,7 +157860,7 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate biotools:primaryContact "Rachel Rosenthal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -163243,7 +157876,7 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate sc:url "https://github.com/ciceklab/DECoNT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3174, @@ -163264,14 +157897,14 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Peptide mass fingerprint" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -163294,7 +157927,7 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate sc:url "http://omics.pnl.gov/software/DeconTools.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -163312,7 +157945,7 @@ To run DeCoDe, you will need a local installation of Gurobi with an appropriate biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -163336,7 +157969,7 @@ The tool is designed to estimate the fractions of immune cells from the expressi sc:url "https://github.com/holiday01/deconvolution-to-estimate-immune-cell-subsets" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3168, @@ -163353,7 +157986,7 @@ The tool is designed to estimate the fractions of immune cells from the expressi sc:url "https://applied-systems-biology.github.io/DeconvTest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -163370,7 +158003,7 @@ The tool is designed to estimate the fractions of immune cells from the expressi . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3169, @@ -163387,7 +158020,7 @@ The tool is designed to estimate the fractions of immune cells from the expressi sc:url "https://github.com/GabrielHoffman/decorate" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0622, @@ -163404,8 +158037,50 @@ The tool is designed to estimate the fractions of immune cells from the expressi sc:url "http://pbil.univ-lyon1.fr/software/DeCoSTAR/" ; biotools:primaryContact "Eric Tannier" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0625, + edam:topic_2229, + edam:topic_3170, + edam:topic_3934 ; + sc:citation , + "pmcid:PMC9011041", + "pubmed:35432466" ; + sc:description "Decosus, an R package that integrates seven methods and signatures for deconvoluting cell types from gene expression profiles (GEP)" ; + sc:featureList edam:operation_0314, + edam:operation_3435, + edam:operation_3629 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Decosus" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/caanene1/Decosus" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3308, + edam:topic_3361 ; + sc:citation ; + sc:description "Ensemble of computational methods to infer biological activities from omics data." ; + sc:featureList edam:operation_0337, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "decoupleR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/saezlab/decoupleR_manuscript" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -163423,7 +158098,7 @@ The tool is designed to estimate the fractions of immune cells from the expressi biotools:primaryContact "Cedric Notredame" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Script" ; sc:applicationSubCategory edam:topic_0749 ; @@ -163439,7 +158114,7 @@ The tool is designed to estimate the fractions of immune cells from the expressi biotools:primaryContact "Wyeth W. WassermanEmail author" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0154, @@ -163467,14 +158142,12 @@ Nr of operons with known RiPP domains.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2762" ; - sc:name "Sequence signature report" ; - sc:sameAs "http://edamontology.org/data_2762" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2762" ; + sc:name "Sequence signature report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3325, @@ -163493,8 +158166,30 @@ Nr of operons with known RiPP domains.""" ; biotools:primaryContact "Decryptor support", "Jana Vrbková" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0203, + edam:topic_2229, + edam:topic_3170, + edam:topic_3517 ; + sc:citation , + "pubmed:35470070" ; + sc:description "A tool for systematic cell type annotations of single-cell RNA sequencing data among human tissues." ; + sc:featureList edam:operation_0314, + edam:operation_3435, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "deCS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bsml320/deCS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -163512,7 +158207,7 @@ Nr of operons with known RiPP domains.""" ; biotools:primaryContact "Andrei Zinovyev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -163529,8 +158224,23 @@ Nr of operons with known RiPP domains.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/DEDS.html" ; biotools:primaryContact "Yuanyuan Xiao" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_2229, + edam:topic_3383, + edam:topic_3384, + edam:topic_3474 ; + sc:citation , + "pubmed:35622798" ; + sc:description "DEEMD: a computational pipeline using deep neural network models within a multiple instance learning framework, to identify putative treatments effective against SARS-CoV-2 based on morphological analysis of the publicly available RxRx19a dataset." ; + sc:license "Not licensed" ; + sc:name "DEEMD" ; + sc:url "http://www.github.com/Sadegh-Saberian/DEEMD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -163551,7 +158261,7 @@ Nr of operons with known RiPP domains.""" ; biotools:primaryContact "Martin Haubrock" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3474, edam:topic_3512 ; @@ -163565,7 +158275,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "https://github.com/linDing-groups/Deep-4mCW2V" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -163581,8 +158291,47 @@ Nr of operons with known RiPP domains.""" ; biotools:primaryContact "Sameer Shrivastava", "Sanjay Kumar Singh" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0621, + edam:topic_0634, + edam:topic_3474 ; + sc:citation , + "pubmed:34670278" ; + sc:description "Identifying novel antifungal peptides using pretrained embeddings from seq2vec with 1DCNN-BiLSTM" ; + sc:featureList edam:operation_0239, + edam:operation_0303, + edam:operation_0407 ; + sc:isAccessibleForFree true ; + sc:name "Deep-AFPpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://afppred.anvil.app/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script", + "Web application" ; + sc:applicationSubCategory edam:topic_3336, + edam:topic_3373, + edam:topic_3382 ; + sc:citation , + "pubmed:36002937" ; + sc:description "A deep learning–based multi-model framework model, called Deep-B3, to predict the BBB permeability of candidate compounds." ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "Deep-B3" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://cbcb.cdutcm.edu.cn/deepb3/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3452, @@ -163597,7 +158346,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "https://github.com/shervinmin/DeepCovid" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, @@ -163614,7 +158363,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "https://github.com/zty2009/GPDNN-for-Identify-ing-Disease-related-Metabolites" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, @@ -163633,7 +158382,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "https://github.com/crs4/deep_framework" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, edam:topic_0621, @@ -163649,7 +158398,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "http://lin-group.cn/server/Deep-Kcr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0749, @@ -163664,7 +158413,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "https://github.com/linDing-group/Deep-loop" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0634, @@ -163681,7 +158430,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "http://deeppla.cancerbio.info" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -163698,7 +158447,7 @@ Nr of operons with known RiPP domains.""" ; biotools:primaryContact "Mohamed Elsayed Elawady" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -163714,7 +158463,7 @@ Nr of operons with known RiPP domains.""" ; biotools:primaryContact "Aaron Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -163729,7 +158478,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "https://bioinfo.uth.edu/Deep4mC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -163743,8 +158492,27 @@ Nr of operons with known RiPP domains.""" ; sc:name "Deep4mcPred" ; sc:url "http://server.malab.cn/Deep4mcPred" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0621, + edam:topic_0654, + edam:topic_0780, + edam:topic_3474 ; + sc:citation , + "pubmed:35477057" ; + sc:description "A CNN and Bi-LSTM-based deep learning method for predicting DNA N6-methyladenosine sites across plant species." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Deep6mAPred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://106.13.196.152:7001/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3336, edam:topic_3373, @@ -163763,7 +158531,7 @@ Nr of operons with known RiPP domains.""" ; biotools:primaryContact "Feixiong Cheng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3474, @@ -163777,7 +158545,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "https://github.com/MedChaabane/deepRAM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workbench" ; sc:applicationSubCategory edam:topic_0203, @@ -163798,15 +158566,33 @@ Nr of operons with known RiPP domains.""" ; sc:operatingSystem "Linux" ; sc:url "https://forge.ibisc.univ-evry.fr/vbourgeais/DeepGONet.git" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2815, + edam:topic_3304 ; + sc:citation , + "pmcid:PMC8980555", + "pubmed:35367895" ; + sc:description "A dual EEG pipeline for developmental hyperscanning studies." ; + sc:featureList edam:operation_0337, + edam:operation_2428, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DEEP" ; + sc:url "https://github.com/dmatthes1982/MPI_CBS-DEEP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "We develop a novel deep learning approach for multi-stage malaria parasites recognition in blood smear images using Deep Transfer Graph Convolutional Network (DTGCN). And this work is the first application of GCN on multi-stage malaria parasites recognition in blood smear images. The proposed DTGCN model is based on unsupervised learning by transferring knowledge learnt from source images that contain the discriminative morphology character-istics of multi-stage malaria parasites. These transferred information guarantees the effectiveness on the target parasites recognition." ; sc:name "Deep Transfer Graph Convolutional Network" ; sc:softwareHelp ; sc:url "https://github.com/senli2018/DTGCN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Plug-in" ; sc:applicationSubCategory edam:topic_0102, @@ -163822,7 +158608,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "https://gitlab.com/dacs-hpi/deepac-live" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3382, edam:topic_3474, @@ -163836,8 +158622,28 @@ Nr of operons with known RiPP domains.""" ; sc:name "DeepAc4C" ; sc:url "http://lab.malab.cn/~wangchao/softs/DeepAc4C/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0611, + edam:topic_3068, + edam:topic_3444, + edam:topic_3452, + edam:topic_3954 ; + sc:citation ; + sc:description "Automatic segmentation of anatomical cross-sectional area in ultrasound images of human lower limb muscles using deep learning." ; + sc:featureList edam:operation_2422, + edam:operation_3283, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DeepACSA" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "https://github.com/PaulRitsche/DeepACSA.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -163856,7 +158662,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "https://github.com/sourcescodes/DeepAE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0160, @@ -163876,7 +158682,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "https://biomed.nscc-gz.cn:9094/apps/DeepANIS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -163890,7 +158696,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "http://yishi.sjtu.edu.cn/deepAntigen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_3298, @@ -163908,7 +158714,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "https://github.com/lauzingaretti/deepaps" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0621, @@ -163926,8 +158732,25 @@ Nr of operons with known RiPP domains.""" ; sc:url "https://DeepArk.princeton.edu" ; biotools:primaryContact "Olga G Troyanskaya" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3336, + edam:topic_3397, + edam:topic_3474 ; + sc:citation , + "pubmed:34822333" ; + sc:description "Artificial intelligence driven discovery of peptide drugs for viral infections." ; + sc:isAccessibleForFree true ; + sc:name "Deep-AVPpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://deep-avppred.anvil.app" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0102, @@ -163947,8 +158770,46 @@ Nr of operons with known RiPP domains.""" ; sc:softwareHelp ; sc:url "http://rna.sysu.edu.cn/deepBase/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3300, + edam:topic_3304, + edam:topic_3382, + edam:topic_3474, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8581673", + "pubmed:34776893" ; + sc:description "A Novel Behavior Tracking Method for Laboratory Animals Based on Deep Learning." ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "DeepBhvTracking" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/SunGL001/DeepBhvTracking" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2275, + edam:topic_2830, + edam:topic_3336 ; + sc:citation , + "pubmed:35878751" ; + sc:description "DeepBindBC is a deep learning based binary classifier for identifying native-like protein-ligand complexes." ; + sc:featureList edam:operation_2476, + edam:operation_3938 ; + sc:license "Other" ; + sc:name "DeepBindBC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://cbblab.siat.ac.cn/DeepBindBC/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0209, @@ -163966,7 +158827,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "http://cbblab.siat.ac.cn/DeepBindPoc/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3293, @@ -163984,7 +158845,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "https://github.com/Young-won/DeepBiome" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0623, @@ -164000,7 +158861,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "http://deepbl.erc.monash.edu.au/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3382, @@ -164016,7 +158877,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "https://github.com/BBQuercus/deepBlink" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -164043,7 +158904,7 @@ Nr of operons with known RiPP domains.""" ; biotools:primaryContact "Felipe Albrecht" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3295 ; @@ -164064,7 +158925,7 @@ Nr of operons with known RiPP domains.""" ; "Felipe Albrecht" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, @@ -164080,7 +158941,7 @@ Nr of operons with known RiPP domains.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3304, edam:topic_3384, @@ -164096,8 +158957,28 @@ Nr of operons with known RiPP domains.""" ; sc:name "DeepBrainNet" ; sc:url "https://github.com/vishnubashyam/DeepBrainNet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Workflow" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0780, + edam:topic_3500 ; + sc:citation , + "pubmed:35996754" ; + sc:description "DeepBSA is a bulked segregant analysis (BSA) software for the dissection of complex traits. Two algorithms are developed in DeepBSA named deep learning (DL) and k-value (K), which can be applied on different number (at least 2) of bulked pools." ; + sc:featureList edam:operation_0282, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DeepBSA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/lizhao007/DeepBSA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -164116,8 +158997,68 @@ Nr of operons with known RiPP domains.""" ; sc:name "deepC" ; sc:url "https://github.com/rschwess/deepC" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3168, + edam:topic_3474, + edam:topic_3940 ; + sc:citation , + "pubmed:35293310" ; + sc:description "Incorporating transcription factors in genome-wide prediction of chromatin accessibility." ; + sc:featureList edam:operation_0438, + edam:operation_3226, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DeepCAGE" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/kimmo1019/DeepCAGE" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0160, + edam:topic_0601, + edam:topic_3295, + edam:topic_3474 ; + sc:citation , + "pubmed:34882222" ; + sc:description "Accurate identification and investigation of protein lysine crotonylation sites based on capsule network." ; + sc:featureList edam:operation_0417, + edam:operation_0564, + edam:operation_3767 ; + sc:isAccessibleForFree true ; + sc:name "DeepCap-Kcr" ; + sc:url "https://github.com/Jhabindra-bioinfo/DeepCap-Kcr" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2840, + edam:topic_3314, + edam:topic_3373, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8636933", + "pubmed:34870186" ; + sc:description "Deep Learning-Powered Carcinogenicity Prediction Using Model-Level Representation." ; + sc:featureList edam:operation_3799, + edam:operation_3935, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:name "DeepCarc" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/TingLi2016/DeepCarc" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -164132,7 +159073,7 @@ Nr of operons with known RiPP domains.""" ; sc:url "https://github.com/LBBSoft/DeepCDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0208, @@ -164152,8 +159093,25 @@ This work has been accepted to ECCB2020 and was also published in the journal Bi sc:name "DeepCDR" ; sc:url "https://github.com/kimmo1019/DeepCDR" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3047, + edam:topic_3382 ; + sc:citation , + "pubmed:34864887" ; + sc:description "DeepCEL0 for 2D Single Molecule Localization in Fluorescence Microscopy." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DeepCEL0" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sedaboni/DeepCEL0" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0625, @@ -164178,7 +159136,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://www.deepcell.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, @@ -164191,7 +159149,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/Mamunur-20/DeepCervix" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0128, @@ -164209,7 +159167,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "http://denglab.org/DeepciRGO/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0749, @@ -164224,8 +159182,29 @@ Free document hosting provided by Read the Docs""" ; sc:name "DeepCLA" ; sc:url "https://github.com/ZhangZhang89/DeepCLA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3299, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8687598", + "pubmed:34879062" ; + sc:description "A deep learning framework for computing solution statistics of the chemical master equation." ; + sc:featureList edam:operation_0337, + edam:operation_2426, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DeepCME" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ankitgupta83/DeepCME" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3474, @@ -164239,7 +159218,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/CAG-CNV/DeepCNV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3298, edam:topic_3382, @@ -164255,7 +159234,7 @@ Free document hosting provided by Read the Docs""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -164279,7 +159258,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "http://tulip.rnet.missouri.edu/deepcomplex/web_index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -164297,7 +159276,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/oxpig/DeepCoy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -164315,7 +159294,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/FangpingWan/DeepCPI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -164331,7 +159310,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "http://www.bioinfogo.org/DeepCSO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0166, edam:topic_3474, @@ -164347,7 +159326,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://deepcys.herokuapp.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0749, @@ -164368,7 +159347,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/Sparkleiii/DeepD2V" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2640, @@ -164384,7 +159363,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/Sinwang404/DeepDDS/tree/master" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -164404,7 +159383,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "http://fugroup.amss.ac.cn/software/DeepDigest/DeepDigest.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3373, @@ -164418,8 +159397,32 @@ Free document hosting provided by Read the Docs""" ; sc:name "DeepDILI" ; sc:url "https://github.com/TingLi2016/DeepDILI" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0077, + edam:topic_0121, + edam:topic_0128, + edam:topic_0621, + edam:topic_3474 ; + sc:citation , + "pubmed:34905768" ; + sc:description "Accurate prediction of RNA-, DNA- and protein-binding intrinsically disordered residues with deep multi-task learning." ; + sc:featureList edam:operation_0272, + edam:operation_0470, + edam:operation_2492, + edam:operation_3901, + edam:operation_3904 ; + sc:isAccessibleForFree true ; + sc:name "DeepDISOBind" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.csuligroup.com/DeepDISOBind/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2814, @@ -164435,7 +159438,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/multicom-toolbox/deepdist" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0208, edam:topic_2640, @@ -164451,8 +159454,17 @@ Free document hosting provided by Read the Docs""" ; sc:name "DeepDRK" ; sc:url "https://github.com/wangyc82/DeepDRK" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:description "DeepDRPBind is developed to predict DNA, RNA and protein binding residues in intrinsically disordered protein sequence." ; + sc:isAccessibleForFree true ; + sc:name "DeepDRPBind" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/roneshsharma/DNA-RNA-Protein-Binding/wiki" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_0202, @@ -164467,7 +159479,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/wanwenzeng/deepdrug" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -164486,7 +159498,7 @@ Free document hosting provided by Read the Docs""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0082, @@ -164507,7 +159519,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/tomiilab/DeepECA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0140, @@ -164527,7 +159539,7 @@ Free document hosting provided by Read the Docs""" ; biotools:primaryContact "Yu-Yen Ou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3474 ; @@ -164542,7 +159554,7 @@ Free document hosting provided by Read the Docs""" ; biotools:primaryContact "Youdong Mao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0202, @@ -164558,7 +159570,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/jbohnslav/deepethogram" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -164576,7 +159588,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/aistairc/DeepEventMine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -164596,7 +159608,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://alok-ai-lab.github.io/deepfeature/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -164615,8 +159627,46 @@ Free document hosting provided by Read the Docs""" ; sc:operatingSystem "Linux" ; sc:url "https://github.com/Biocomputing-Research-Group/DeepFilter" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_3360, + edam:topic_3474 ; + sc:citation , + "pubmed:34798406" ; + sc:description "A deep learning approach for forecasting symptomatic influenza A infection based on pre-exposure gene expression." ; + sc:featureList edam:operation_0252 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DeepFlu" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ntou-compbio/DeepFlu" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0654, + edam:topic_3295, + edam:topic_3382, + edam:topic_3474, + edam:topic_3934 ; + sc:citation , + "pmcid:PMC8668444", + "pubmed:34976305" ; + sc:description "Deep learning-based algorithm for fast automatic analysis of DNA double-strand break ionizing radiation-induced foci." ; + sc:featureList edam:operation_3443, + edam:operation_3799, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DeepFoci" ; + sc:url "https://github.com/tomasvicar/DeepFoci" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3382, @@ -164633,7 +159683,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://pypi.org/project/deepforest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2840, @@ -164654,7 +159704,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/yigbt/deepFPlearn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3336, edam:topic_3474 ; @@ -164666,7 +159716,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "http://durrantlab.com/deepfragmodel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -164685,7 +159735,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/yaohangli/DeepFragK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0821, @@ -164708,7 +159758,7 @@ Free document hosting provided by Read the Docs""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Web application" ; sc:applicationSubCategory edam:topic_0749, @@ -164728,7 +159778,7 @@ Free document hosting provided by Read the Docs""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, @@ -164743,8 +159793,31 @@ Free document hosting provided by Read the Docs""" ; sc:name "DeepG4" ; sc:url "https://github.com/morphos30/DeepG4" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script", + "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_3168, + edam:topic_3320, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pubmed:35799358" ; + sc:description "A general deep learning-based predictor for multiple genomic signals and regions." ; + sc:featureList edam:operation_0433, + edam:operation_0440, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "DeepGenGrep" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bigdata.biocie.cn/deepgengrep/home" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -164764,7 +159837,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/koonimaru/DeepGMAP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0121, @@ -164782,7 +159855,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "http://mlda.swu.edu.cn/codes.php?name=DeepGOA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "SPARQL endpoint", "Web API", "Web application" ; @@ -164802,8 +159875,27 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://deepgo.cbrc.kaust.edu.sa/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_1775, + edam:topic_3474 ; + sc:citation ; + sc:description "Improving protein function prediction from sequence and zero-shot learning based on ontology axioms." ; + sc:featureList edam:operation_1777, + edam:operation_3454, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "DeepGOZero" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/bio-ontology-research-group/deepgozero" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_1775, edam:topic_3361, @@ -164818,8 +159910,30 @@ Free document hosting provided by Read the Docs""" ; sc:name "DeepGraphGO" ; sc:url "https://github.com/yourh/DeepGraphGO" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2258, + edam:topic_3172, + edam:topic_3474, + edam:topic_3697 ; + sc:citation , + "pubmed:35868454" ; + sc:description "DeepGraphh is an open-source web service that features a conglomerate of powerful graph-based neural networks methods, with highly configurable parameters support via the graphical user interface (GUI)." ; + sc:featureList edam:operation_0224, + edam:operation_3659, + edam:operation_3799, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "deepGraphh" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://deepgraphh.ahujalab.iiitd.edu.in/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -164836,7 +159950,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/jianlin-cheng/DeepGRN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0621, @@ -164858,7 +159972,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/fhausmann/deepgrp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0736, @@ -164876,7 +159990,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/Graylab/deepH3-distances-orientations" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -164894,7 +160008,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "http://cqb.pku.edu.cn/ZhuLab/DeePhage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, @@ -164910,7 +160024,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/chuym726/DeephageTP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -164931,7 +160045,7 @@ Free document hosting provided by Read the Docs""" ; biotools:primaryContact "Tuomas P. J. Knowles" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3053, edam:topic_3474 ; @@ -164945,7 +160059,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/xzhang2016/DeepHE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -164962,8 +160076,26 @@ Free document hosting provided by Read the Docs""" ; sc:name "DeepHiC" ; sc:url "http://sysomics.com/deephic" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_2885, + edam:topic_3172, + edam:topic_3174, + edam:topic_3308 ; + sc:citation , + "pubmed:35598329" ; + sc:description "DeepHisCoM (Deep-learning pathway analysis using Hierarchical structured CoMponent models) which uses deep learning analysis to find complex relationships between biological factors and pathways." ; + sc:featureList edam:operation_3196, + edam:operation_3661, + edam:operation_3928 ; + sc:license "Not licensed" ; + sc:name "DeepHisCoM" ; + sc:url "https://github.com/chanwoo-park-official/DeepHisCoM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0634, edam:topic_3308, @@ -164980,7 +160112,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/birajaghoshal/DeepHistoClass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, edam:topic_3373 ; @@ -164991,7 +160123,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://bitbucket.org/krictai/deephit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0128, @@ -165009,8 +160141,25 @@ Free document hosting provided by Read the Docs""" ; sc:name "DeepHomo" ; sc:url "http://huanglab.phys.hust.edu.cn/DeepHomo/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0601, + edam:topic_3520, + edam:topic_3922 ; + sc:citation , + "pubmed:35441674" ; + sc:description "Predicted spectral database search for TMT-labeled phosphopeptides and its false discovery rate estimation." ; + sc:featureList edam:operation_3644, + edam:operation_3649, + edam:operation_3799, + edam:operation_3801 ; + sc:license "Not licensed" ; + sc:name "Deephos" ; + sc:url "https://github.com/seungjinna/deephos" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0637, @@ -165027,8 +160176,30 @@ Free document hosting provided by Read the Docs""" ; sc:operatingSystem "Linux" ; sc:url "https://github.com/deepomicslab/DeepHost" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_3324, + edam:topic_3474, + edam:topic_3500 ; + sc:citation , + "pubmed:35511057" ; + sc:description "Adeep learning platform for accurate prediction and visualization of host-pathogen protein-protein interactions." ; + sc:featureList edam:operation_2492, + edam:operation_3461, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "deepHPI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinfo.usu.edu/deepHPI/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2640, @@ -165043,8 +160214,28 @@ Free document hosting provided by Read the Docs""" ; sc:name "DeepHPV" ; sc:url "https://github.com/JiuxingLiang/DeepHPV.git" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0102, + edam:topic_2828, + edam:topic_3538 ; + sc:citation , + "pubmed:34864847" ; + sc:description "Tool for protein intrinsically disordered region prediction by combining convolutional attention network and hierarchical attention network." ; + sc:featureList edam:operation_0470, + edam:operation_3904, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:name "DeepIDP-2L" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bliulab.net/DeepIDP-2L/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3168, @@ -165060,7 +160251,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://sourceforge.net/projects/deepimagetranslator/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2229, @@ -165077,7 +160268,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://deepimmuno.herokuapp.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation , @@ -165092,7 +160283,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/kamwoh/DeepIPR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -165111,8 +160302,26 @@ Free document hosting provided by Read the Docs""" ; "Windows" ; sc:url "http://lin-group.cn/server/DeepIPs" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_0769, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8689937", + "pubmed:34788369" ; + sc:description "An End-to-End Deep Learning-Based Workflow for Biomedical Knowledge Graph Extraction, Optimization and Applications." ; + sc:featureList edam:operation_0306 ; + sc:isAccessibleForFree true ; + sc:name "DeepKG" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://covidkg.ai" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0601, edam:topic_3474, @@ -165125,7 +160334,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "http://www.bioinfogo.org/DeepKhib" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0160, @@ -165142,16 +160351,35 @@ Free document hosting provided by Read the Docs""" ; sc:name "DeepKinZero" ; sc:url "https://github.com/Tastanlab/DeepKinZero" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0601, + edam:topic_2815, + edam:topic_3173 ; + sc:citation , + "pmcid:PMC8687584", + "pubmed:34879076" ; + sc:description "DeepKme is the predictor for lysine methylation sites in human proteome." ; + sc:featureList edam:operation_0308, + edam:operation_0417, + edam:operation_3755 ; + sc:isAccessibleForFree true ; + sc:name "DeepKme" ; + sc:url "https://github.com/guoyangzou/DeepKme" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2979" ; - sc:name "Peptide property" ; - sc:sameAs "http://edamontology.org/data_2979" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2979" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Peptide property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -165171,8 +160399,28 @@ Free document hosting provided by Read the Docs""" ; sc:url "http://compomics.github.io/projects/DeepLC" ; biotools:primaryContact "CompOmics" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_3303, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9038670", + "pubmed:34990643" ; + sc:description "A deep learning framework, DeepLensNet, for the detailed assessment of age-related cataract" ; + sc:featureList edam:operation_3435, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DeepLensNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ncbi/deeplensnet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0634, @@ -165188,8 +160436,31 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/nadeemlab/DeepLIIF" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2640, + edam:topic_2830, + edam:topic_3170, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9121378", + "pubmed:35601486" ; + sc:description "DeepLION is a deep multi-instance learning (MIL) method for identifying cancer-associated T cell receptors (TCRs) and detecting cancer samples using TCR-sequencing data." ; + sc:featureList edam:operation_0252, + edam:operation_3695, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "DeepLION" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Bioinformatics7181/DeepLION" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Web application" ; @@ -165208,18 +160479,18 @@ Free document hosting provided by Read the Docs""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0123 ; @@ -165237,7 +160508,7 @@ Free document hosting provided by Read the Docs""" ; biotools:primaryContact "Henrik Nielsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0659, @@ -165254,8 +160525,29 @@ Free document hosting provided by Read the Docs""" ; sc:name "DeepLPI" ; sc:url "https://github.com/dls03/DeepLPI" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0749, + edam:topic_2885, + edam:topic_3169, + edam:topic_3173 ; + sc:citation , + "pubmed:35640981" ; + sc:description "Deep-LUCIA (Deep Learning-based Universal Chromatin Interaction Annotator) is a deep learning based model to predict chromatin loops from genomic and epigenomic profile without CTCF signal." ; + sc:featureList edam:operation_0433, + edam:operation_0481, + edam:operation_2437 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DeepLUCIA" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/bcbl-kaist/DeepLUCIA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3053, @@ -165271,7 +160563,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/ucrbioinfo/DeeplyEssential" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2814, edam:topic_3336, @@ -165286,8 +160578,25 @@ Free document hosting provided by Read the Docs""" ; sc:name "DeeplyTough" ; sc:url "https://github.com/BenevolentAI/DeeplyTough" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0099, + edam:topic_3295, + edam:topic_3474 ; + sc:citation , + "pubmed:35526094" ; + sc:description "A deep-learning-based hybrid framework for identifying human RNA N5-methylcytosine sites using a stacking strategy." ; + sc:license "Not licensed" ; + sc:name "Deepm5C" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=35526094" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -165304,7 +160613,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://transilico.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3300, @@ -165320,7 +160629,7 @@ Free document hosting provided by Read the Docs""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0749, @@ -165337,8 +160646,25 @@ Free document hosting provided by Read the Docs""" ; sc:name "DeepMEL" ; sc:url "http://kipoi.org/models/DeepMEL/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3336, + edam:topic_3373, + edam:topic_3474 ; + sc:citation , + "pubmed:35030496" ; + sc:description "Transformer network incorporating multilayer graph information for Drug-Target interaction prediction." ; + sc:featureList edam:operation_3927, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DeepMGT-DTI" ; + sc:url "https://github.com/zhangpl109/DeepMGT-DTI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -165354,7 +160680,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "http://mib.helsinki.fi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0637, @@ -165372,7 +160698,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/MicrobeLab/DeepMicrobes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0140, @@ -165390,7 +160716,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "http://busca.biocomp.unibo.it/deepmitodb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0102, @@ -165406,7 +160732,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/JiahuaHe/DeepMM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, @@ -165422,7 +160748,7 @@ Free document hosting provided by Read the Docs""" ; biotools:primaryContact "Ka-Chun Wong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0654, @@ -165445,7 +160771,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "http://github.com/pepebonet/DeepMP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0821, edam:topic_3168, @@ -165460,7 +160786,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://bioserver.iiita.ac.in/DeEPn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -165475,7 +160801,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/fmfi-compbio/deepnano-blitz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -165489,8 +160815,30 @@ Free document hosting provided by Read the Docs""" ; sc:name "DeepNC" ; sc:url "https://github.com/congasix/DeepNC" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2258, + edam:topic_3336, + edam:topic_3400, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9107302", + "pubmed:35578674" ; + sc:description "A framework for drug-target interaction prediction with graph neural networks." ; + sc:featureList edam:operation_2428, + edam:operation_3436, + edam:operation_3927 ; + sc:license "Not licensed" ; + sc:name "DeepNC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/thntran/DeepNC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3334, @@ -165506,8 +160854,27 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/plattenmichael/DeepnCCA/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3332, + edam:topic_3474 ; + sc:citation , + "pubmed:34958566" ; + sc:description "A multimodal deep learning model, DeepNCI, is proposed for improving noncovalent interactions (NCIs) calculated via density functional theory (DFT)." ; + sc:featureList edam:operation_0321, + edam:operation_0337, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:name "DeepNCI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/wenzelee/DeepNCI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -165522,8 +160889,31 @@ Free document hosting provided by Read the Docs""" ; sc:name "DeepND" ; sc:url "http://github.com/ciceklab/deepnd" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0821, + edam:topic_3174, + edam:topic_3474, + edam:topic_3810 ; + sc:citation , + "pubmed:35325031" ; + sc:description "A novel alignment-free tool for the identification and classification of nitrogen biochemical network-related enzymes using deep learning." ; + sc:featureList edam:operation_0253, + edam:operation_3092, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "deepNEC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinfo.usu.edu/deepNEC/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2269, @@ -165542,7 +160932,7 @@ Free document hosting provided by Read the Docs""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3384, @@ -165558,7 +160948,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/QTIM-Lab/DeepNeuro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0160, @@ -165575,7 +160965,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/univieCUBE/deepnog" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3318, @@ -165588,7 +160978,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://bioserver.iiita.ac.in/DeepOlf/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -165607,8 +160997,30 @@ A deep learning python package for neuroimaging data.""" ; biotools:primaryContact "Jian Ren", "Yubin Xie" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workbench" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_0080, + edam:topic_0089, + edam:topic_1775, + edam:topic_3303 ; + sc:citation , + "pubmed:35476573" ; + sc:description "A deep learning framework for predicting protein functions with co-occurrence of GO terms." ; + sc:featureList edam:operation_0477, + edam:operation_1777, + edam:operation_3927 ; + sc:license "Not licensed" ; + sc:name "DeepPFP-CO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://csuligroup.com/DeepPFP/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Web application" ; @@ -165630,7 +161042,7 @@ A deep learning python package for neuroimaging data.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0209, @@ -165653,7 +161065,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/devalab/DeepPocket" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -165672,7 +161084,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/AzmHmd/DeepPod.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -165688,8 +161100,21 @@ A deep learning python package for neuroimaging data.""" ; sc:name "DeepProg" ; sc:url "https://hub.docker.com/repository/docker/opoirion/deepprog_docker" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0634, + edam:topic_3474 ; + sc:citation , + "pubmed:35994933" ; + sc:description "A deep learning-based method, DeepPSE, to predict polypharmacy side effects in an end-to-end way." ; + sc:license "Not licensed" ; + sc:name "DeepPSE" ; + sc:url "https://github.com/ShenggengLin/DeepPSE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -165707,7 +161132,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/kexinhuang12345/DeepPurpose" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0202, edam:topic_2275, @@ -165728,7 +161153,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/pengsl-lab/DeepR2cov.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0804, @@ -165741,8 +161166,54 @@ A deep learning python package for neuroimaging data.""" ; sc:name "DeepRC" ; sc:url "https://github.com/ml-jku/DeepRC" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_0621, + edam:topic_2258, + edam:topic_3314, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8580052", + "pubmed:34880997" ; + sc:description "DeepReac+: An universal framework for quantitative modeling of chemical reaction based on deep active learning." ; + sc:featureList edam:operation_3799, + edam:operation_3891, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "DeepReac+" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bm2-lab/DeepReac" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0202, + edam:topic_0820, + edam:topic_3336, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9048666", + "pubmed:35274689" ; + sc:description "A Deep Learning Powered Multi-scale Modeling Framework for Predicting Out-of-distribution Ligand-induced GPCR Activity." ; + sc:featureList edam:operation_0269, + edam:operation_0479, + edam:operation_2995 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-4.0" ; + sc:name "DeepREAL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/XieResearchGroup/DeepREAL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0780, @@ -165764,7 +161235,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/aedera/deepredmt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_2275, @@ -165781,7 +161252,7 @@ A deep learning python package for neuroimaging data.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -165798,7 +161269,7 @@ A deep learning python package for neuroimaging data.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation , @@ -165808,8 +161279,32 @@ A deep learning python package for neuroimaging data.""" ; sc:name "DeepReI" ; sc:url "https://github.com/TomasVrzal/DeepReI" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench", + "Workflow" ; + sc:applicationSubCategory edam:topic_0157, + edam:topic_2885, + edam:topic_3168, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9052667", + "pubmed:35484600" ; + sc:description "DeepRepeat is a computational method to detect STRs from nanopore sequencing data through direct analysis of electric signals rather than basecalled reads" ; + sc:featureList edam:operation_0237, + edam:operation_0308, + edam:operation_0452, + edam:operation_3185, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DeepRepeat" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/WGLab/DeepRepeat" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -165827,8 +161322,36 @@ A deep learning python package for neuroimaging data.""" ; sc:name "DeepRescore" ; sc:url "https://github.com/bzhanglab/DeepRescore" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0130, + edam:topic_0160, + edam:topic_0166, + edam:topic_3297, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8566768", + "pubmed:34765094" ; + sc:description "A web server for characterising protein-solvent interaction starting from sequence." ; + sc:featureList edam:operation_0321, + edam:operation_0387, + edam:operation_3904 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DeepREx" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://deeprex.biocomp.unibo.it" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0114, edam:topic_2269, @@ -165845,7 +161368,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/bioinformatics-polito/DEEPrior" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3320, edam:topic_3474, @@ -165865,7 +161388,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/youzhiliu/DeepRKE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3382, @@ -165883,7 +161406,7 @@ A deep learning python package for neuroimaging data.""" ; "Lei Kong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3474, edam:topic_3510 ; @@ -165896,7 +161419,7 @@ A deep learning python package for neuroimaging data.""" ; biotools:primaryContact "Zhiwen Zeng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3308, edam:topic_3382, @@ -165915,7 +161438,7 @@ A deep learning python package for neuroimaging data.""" ; "Zixuan Cang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -165932,8 +161455,26 @@ A deep learning python package for neuroimaging data.""" ; sc:name "DEEPScreen" ; sc:url "https://github.com/cansyl/DEEPscreen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3169, + edam:topic_3474 ; + sc:citation , + "pubmed:34666191" ; + sc:description "Detecting super-enhancers among typical enhancers using only sequence feature embeddings." ; + sc:featureList edam:operation_0253 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DeepSE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/QiaoyingJi/DeepSE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workbench" ; sc:applicationSubCategory edam:topic_0080, @@ -165955,7 +161496,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://bmbl.bmi.osumc.edu/deepsec/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3384, edam:topic_3421, @@ -165973,7 +161514,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/razeineldin/DeepSeg/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3169, @@ -165987,20 +161528,33 @@ A deep learning python package for neuroimaging data.""" ; sc:name "DeepSELEX" ; sc:url "http://github.com/OrensteinLab/DeepSELEX/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pubmed:35378524" ; + sc:description "An deep learning framework to separate neural signal and artifacts in the embedding space and reconstruct the denoised signal" ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DeepSeparator" ; + sc:url "https://github.com/ncclabsustech/DeepSeparator" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Taxonomy" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_3307, @@ -166020,8 +161574,30 @@ A deep learning python package for neuroimaging data.""" ; biotools:primaryContact "Castrense Savojardo", "Pier Luigi Martelli" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0203, + edam:topic_0621, + edam:topic_0659, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9154256", + "pubmed:35536192" ; + sc:description "SeepSimDEF offers single- and multi-channel deep learning models for functional analysis of genes using Gene Ontology annotations of gene products (RNAs, proteins, etc)." ; + sc:featureList edam:operation_2422, + edam:operation_2492, + edam:operation_3463, + edam:operation_3663, + edam:operation_3672 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "deepSimDEF" ; + sc:url "https://github.com/ahmadpgh/deepSimDEF" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, edam:topic_3299 ; @@ -166038,7 +161614,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/lykaust15/DeepSimulator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3382, edam:topic_3474 ; @@ -166053,8 +161629,24 @@ A deep learning python package for neuroimaging data.""" ; sc:url "http://www.github.com/jdanial/DeepSinse" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:35085094" ; + sc:description "Fusing Deep Learning and SMOTE for Imbalanced Data." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DeepSMOTE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/dd1github/DeepSMOTE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0820, @@ -166069,7 +161661,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "http://www.csbg-jlu.info/DeepSMP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -166088,8 +161680,28 @@ A deep learning python package for neuroimaging data.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/deepSNV.html" ; biotools:primaryContact "Moritz Gerstung" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Suite", + "Workbench", + "Workflow" ; + sc:applicationSubCategory edam:topic_3382, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8969434", + "pubmed:35372830" ; + sc:description "DeepSpectrumLite is a Python toolkit to design and train light-weight Deep Neural Networks (DNNs) for classification tasks from raw audio data." ; + sc:featureList edam:operation_0337, + edam:operation_3359, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DeepSpectrumLite" ; + sc:url "https://github.com/DeepSpectrum/DeepSpectrumLite" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382, @@ -166106,7 +161718,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/EliasNehme/DeepSTORM3D" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0601, edam:topic_3300, @@ -166123,7 +161735,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/dukkakc/DeepSuccinylSite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0166, edam:topic_3336, @@ -166139,7 +161751,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/stemylonas/DeepSurf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3382, @@ -166158,7 +161770,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/yongzhuang/DeepSVFilter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -166175,7 +161787,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/bio-ontology-research-group/DeepSVP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -166196,7 +161808,7 @@ A deep learning python package for neuroimaging data.""" ; sc:url "https://github.com/WDee/Deepsweep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0622, @@ -166215,7 +161827,7 @@ A deep learning python package for neuroimaging data.""" ; biotools:primaryContact "Günter Klambauer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3305, @@ -166235,7 +161847,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "https://github.com/windweller/DeepTag" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0659, @@ -166251,8 +161863,29 @@ This contains the source code for the DeepTag Project.""" ; sc:name "DeepTE" ; sc:url "https://github.com/LiLabAtVT/DeepTE" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script", + "Workbench" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0203, + edam:topic_2229, + edam:topic_3512 ; + sc:citation , + "pubmed:35502843" ; + sc:description "DeepTESR can be used to predict the degree of TESR for gene expression control and to decipher the mechanism of translational control with ribosome profiling." ; + sc:featureList edam:operation_0314, + edam:operation_2428, + edam:operation_3663 ; + sc:license "Not licensed" ; + sc:name "DeepTESR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/fmblab/DeepTESR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0749, @@ -166270,7 +161903,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "https://bitbucket.org/kaistsystemsbiology/deeptfactor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0601, edam:topic_3063, @@ -166285,7 +161918,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "https://github.com/USTC-HIlab/DeepTL-Ubi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_0736, @@ -166304,8 +161937,31 @@ This contains the source code for the DeepTag Project.""" ; sc:url "https://github.com/2003100127/deeptminter" ; biotools:primaryContact "Dmitrij Frishman" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0209, + edam:topic_0820, + edam:topic_3474, + edam:topic_3510 ; + sc:citation , + "pmcid:PMC9062415", + "pubmed:35521551" ; + sc:description "Ttopology prediction of alpha-helical transmembrane proteins" ; + sc:featureList edam:operation_0269, + edam:operation_0272, + edam:operation_2241, + edam:operation_3927, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DeepTMpred" ; + sc:softwareHelp ; + sc:url "https://github.com/ISYSLAB-HUST/DeepTMpred" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3169 ; @@ -166322,7 +161978,7 @@ This contains the source code for the DeepTag Project.""" ; biotools:primaryContact "deepToops Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2814, @@ -166336,8 +161992,56 @@ This contains the source code for the DeepTag Project.""" ; sc:name "DeepTracer" ; sc:url "https://deeptracer.uw.edu" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0130, + edam:topic_2275, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8756175", + "pubmed:34694333" ; + sc:description "A ternary prediction system for protein-protein interaction using mask multiple parallel convolutional neural networks." ; + sc:featureList edam:operation_0272, + edam:operation_0478, + edam:operation_2492, + edam:operation_3094, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DeepTrio" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bis.zju.edu.cn/deeptrio" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_0082, + edam:topic_3474 ; + sc:citation , + "pubmed:35134108" ; + sc:description "Ultrafast Shape Recognition-based Protein Model Quality Assessment using Deep Learning." ; + sc:featureList edam:operation_0320, + edam:operation_0477, + edam:operation_2950, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DeepUMQA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/iobio-zjut/DeepUMQA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, edam:topic_2885, @@ -166353,7 +162057,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "https://github.com/google/deepvariant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0769, @@ -166372,7 +162076,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "https://github.com/atgenomix/deepvariant-on-spark" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0602, @@ -166389,7 +162093,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "http://deepvf.erc.monash.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0128, @@ -166406,7 +162110,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "https://github.com/bio-ontology-research-group/DeepViral" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_2640, @@ -166424,8 +162128,14 @@ This contains the source code for the DeepTag Project.""" ; sc:url "https://bioinfo.uth.edu/DeepVISP" ; biotools:primaryContact "Zhongming Zhao" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "Identification and classification of phage virion proteins using deep learning" ; + sc:name "DeePVP" ; + sc:url "https://github.com/fangzcbio/DeePVP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -166445,7 +162155,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "https://github.com/cellmapslab/DeepWAS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2229, @@ -166460,7 +162170,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "http://lin-group.cn/server/DeepYY1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0593, @@ -166476,7 +162186,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "http://github.com/KULL-Centre/DEERpredict" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, @@ -166494,7 +162204,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "https://github.com/lzx325/DeeReCT-APA-repo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -166513,7 +162223,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "https://github.com/JoshuaChou2018/DeeReCT-TSS_release" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654 ; @@ -166527,7 +162237,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "http://sfu-compbio.github.io/deez/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3511 ; @@ -166547,21 +162257,8 @@ This contains the source code for the DeepTag Project.""" ; biotools:primaryContact "Bryan Quach", "Terry Furey" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_0780, - edam:topic_2885 ; - sc:citation , - "pmcid:PMC6662289", - "pubmed:31380062" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'defence-related', 'enemies', 'budgets', 'invasives' | Rapid growth and defence evolution following multiple introductions | Rscripts for growth and defence analyses | Data available on: https://doi.org/10.6084/m9.figshare.8028875.v1 | Citation: Lotte A. van Boheemen, Sarah Bou-Assi, Akane Uesugi, Kathryn A. Hodgins (2019). Rapid growth and defence evolution following multiple introductions bioRxiv https://doi.org/10.1101/435271" ; - sc:featureList edam:operation_3196 ; - sc:license "MIT" ; - sc:name "defence_adaptation" ; - sc:url "https://github.com/lotteanna/defence_adaptation" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3125, edam:topic_3127, @@ -166577,7 +162274,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "http://lin-group.cn/server/deform-nu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -166594,8 +162291,29 @@ This contains the source code for the DeepTag Project.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/DEFormats.html" ; biotools:primaryContact "Andrzej Oleś" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0621, + edam:topic_0780, + edam:topic_3474, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8645896", + "pubmed:34880873" ; + sc:description "Defpred is a web server that predicts the presence of Defensins in given query protein sequqnces." ; + sc:featureList edam:operation_0417, + edam:operation_2428 ; + sc:isAccessibleForFree true ; + sc:name "DefPred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://webs.iiitd.edu.in/raghava/defpred" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -166617,7 +162335,7 @@ This contains the source code for the DeepTag Project.""" ; "Henrik Marcus Geertz-Hansen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0114, edam:topic_2640, @@ -166637,14 +162355,12 @@ This contains the source code for the DeepTag Project.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -166673,8 +162389,29 @@ This contains the source code for the DeepTag Project.""" ; sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/degapseq.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2640, + edam:topic_3170, + edam:topic_3360, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8734099", + "pubmed:34991439" ; + sc:description "The DEGnext is a CNN model proposed to predict UR and DR genes from RNA-seq cancer datasets." ; + sc:featureList edam:operation_0533, + edam:operation_3223, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DEGnext" ; + sc:operatingSystem "Windows" ; + sc:url "https://github.com/tulikakakati/DEGnext" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -166694,7 +162431,7 @@ This contains the source code for the DeepTag Project.""" ; biotools:primaryContact "Yan Lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269 ; @@ -166712,7 +162449,7 @@ This contains the source code for the DeepTag Project.""" ; biotools:primaryContact "Laurent Jacob" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -166730,8 +162467,32 @@ This contains the source code for the DeepTag Project.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/DEGreport.html" ; biotools:primaryContact "Lorena Pantano" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_0160, + edam:topic_0634, + edam:topic_3957 ; + sc:citation , + "pmcid:PMC9281121", + "pubmed:35836176" ; + sc:description "A deep learning model to predict E3 binding sites (degrons) on protein substrates." ; + sc:featureList edam:operation_0417, + edam:operation_2492, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "degron-related" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://degron.phasep.pro/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -166750,8 +162511,49 @@ This contains the source code for the DeepTag Project.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/DEGseq.html" ; biotools:primaryContact "Likun Wang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_0769, + edam:topic_3172, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9047447", + "pubmed:35430813" ; + sc:description "DEIMoS: Data Extraction for Integrated Multidimensional Spectrometry, a Python application programming interface (API) and command-line tool for high-dimensional mass spectrometry data analysis workflows that offers ease of development and access to efficient algorithmic implementations." ; + sc:featureList edam:operation_3215, + edam:operation_3431, + edam:operation_3627, + edam:operation_3629, + edam:operation_3860 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "DEIMoS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/pnnl/deimos" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_2828, + edam:topic_3474 ; + sc:citation , + "pubmed:35294184" ; + sc:description "DeLA-Drug is an artificial intelligence-based platform able to generate drug-like analogues starting from a single user-defined query compound." ; + sc:featureList edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:name "DeLA-Drug" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.ba.ic.cnr.it/softwareic/deladrugportal/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "Wrapping an array-like object in a DelayedArray object allows one to perform common array operations on it without loading the object in memory. In order to reduce memory usage and optimize performance, operations on the object are either delayed or executed using a block processing mechanism. Note that this also works on in-memory array-like objects like DataFrame objects, Matrix objects, and ordinary arrays and data frames." ; @@ -166768,7 +162570,7 @@ This contains the source code for the DeepTag Project.""" ; biotools:primaryContact "Hervé Pagès" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3473 ; sc:description "A port of the 'matrixStats' API for use with DelayedMatrix objects from the 'DelayedArray' package. High-performing functions operating on rows and columns of DelayedMatrix objects, e.g. col / rowMedians(), col / rowRanks(), and col / rowSds(). Functions optimized per data type and for subsetted calculations such that both memory usage and processing time is minimized." ; @@ -166784,7 +162586,7 @@ This contains the source code for the DeepTag Project.""" ; biotools:primaryContact "Peter Hickey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -166805,8 +162607,29 @@ This contains the source code for the DeepTag Project.""" ; sc:softwareVersion "0.1" ; sc:url "https://github.com/jime-sg/deleat" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Suite" ; + sc:applicationSubCategory edam:topic_0209, + edam:topic_3303, + edam:topic_3332, + edam:topic_3474, + edam:topic_3892 ; + sc:citation , + "pmcid:PMC9093086", + "pubmed:35470831" ; + sc:description "DelFTa, an open-source toolbox for the prediction of electronic properties of drug-like molecules at the density functional (DFT) level of theory, using Δ-machine-learning" ; + sc:featureList edam:operation_0337, + edam:operation_0394, + edam:operation_2476 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "DelFTa" ; + sc:operatingSystem "Mac" ; + sc:url "https://github.com/josejimenezluna/delfta" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -166823,7 +162646,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "http://www.csbio.sjtu.edu.cn/bioinf/delia/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, @@ -166842,7 +162665,7 @@ This contains the source code for the DeepTag Project.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3050, @@ -166859,18 +162682,18 @@ This contains the source code for the DeepTag Project.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3020" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0199, @@ -166898,7 +162721,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "https://github.com/dellytools/delly" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0166, @@ -166914,7 +162737,7 @@ This contains the source code for the DeepTag Project.""" ; sc:url "http://www.csd.uwo.ca/~ilie/DELPHI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0097, @@ -166932,7 +162755,7 @@ This contains the source code for the DeepTag Project.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0153, @@ -166956,7 +162779,7 @@ This contains the source code for the DeepTag Project.""" ; biotools:primaryContact "Emil Alexov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -166985,14 +162808,14 @@ An R package for a rapid differential gene presence analysis between large datas a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2618" ; - sc:name "Protein modification ID" ; - sc:sameAs "http://edamontology.org/data_2618" ] ; + sc:additionalType "http://edamontology.org/data_2618" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein modification ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0844" ; - sc:name "Molecular mass" ; - sc:sameAs "http://edamontology.org/data_0844" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0844" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecular mass" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -167008,14 +162831,12 @@ An R package for a rapid differential gene presence analysis between large datas a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0736 ; sc:citation ; @@ -167031,7 +162852,7 @@ An R package for a rapid differential gene presence analysis between large datas sc:url "http://dgpred.cbr.su.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0176, @@ -167051,18 +162872,17 @@ An R package for a rapid differential gene presence analysis between large datas a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0844" ; - sc:name "Molecular mass" ; - sc:sameAs "http://edamontology.org/data_0844" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0844" ; + sc:name "Molecular mass" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; @@ -167083,7 +162903,7 @@ An R package for a rapid differential gene presence analysis between large datas biotools:primaryContact "Dmitry Avtonomov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2259 ; @@ -167100,7 +162920,7 @@ An R package for a rapid differential gene presence analysis between large datas sc:url "http://www.cabsel.ethz.ch/tools/DeltaNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0797, @@ -167117,7 +162937,7 @@ An R package for a rapid differential gene presence analysis between large datas biotools:primaryContact "Steinar Thorvaldsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3382 ; sc:citation , @@ -167131,8 +162951,30 @@ Research in the life sciences has traditionally relied on the analysis of clear sc:name "SCOPE" ; sc:url "https://github.com/msschwartz21/deltascope" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0203, + edam:topic_0634 ; + sc:citation , + "pmcid:PMC9235497", + "pubmed:35758816" ; + sc:description "DEMA (Distance-bounded Energy-field Minimization Algorithm) an algorithm to model and layout biomolecular networks with quantitative properties." ; + sc:featureList edam:operation_0337, + edam:operation_2436, + edam:operation_3799, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DEMA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://discovery.informatics.uab.edu/dema" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0202, @@ -167152,7 +162994,7 @@ Research in the life sciences has traditionally relied on the analysis of clear "Mariano Alvarez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -167172,7 +163014,7 @@ Research in the life sciences has traditionally relied on the analysis of clear sc:url "https://demask.princeton.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0153, @@ -167191,7 +163033,7 @@ Research in the life sciences has traditionally relied on the analysis of clear sc:url "http://bbprof.immt.res.in/embf/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3337, @@ -167202,47 +163044,29 @@ Research in the life sciences has traditionally relied on the analysis of clear sc:name "deMeta" ; sc:url "https://github.com/Computational-NeuroGenetics/deMeta-beta" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3407 ; - sc:citation , - "pmcid:PMC6833993", - "pubmed:31723426" ; - sc:description """Adhesive systems effect over bond strength of resin-infiltrated and de/remineralized enamel. - -Background: The purpose of this study was to evaluate the effect of different bonding agents on bond-strength to demineralized enamel after remineralizing treatments and resin infiltration. Methods: Buccal enamel of 120 bovine incisors was polished and then were divided into five experimental groups: SE (sound enamel); DE (demineralized enamel); AS (demineralized enamel immersed in artificial saliva for eight weeks); NaF (demineralized enamel treated with 0.05% sodium fluoride solution (one minute) for eight weeks); Ic (demineralized enamel infiltrated with a low-viscosity resin (Icon-DGM). - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'demineralized enamel demineralized enamel immersed', 'enamel demineralized enamel', 'demineralized enamel', 'demineralized enamel demineralized'""" ; - sc:name "demineralized enamel demineralized enamel" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31723426" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0091, - edam:topic_3303, - edam:topic_3321, - edam:topic_3379, - edam:topic_3676 ; - sc:citation , - "pmcid:PMC6813102", - "pubmed:31651301" ; - sc:description """development and evaluation of an e-learning application for medical molecular genetics. - -PRACTICAL "GENOMICS AND BIOINFORMATICS - SINGLE-GENE ANALYSIS". - -Authors: Kamila Procházková, Zdeněk Sedláček. - -Department of Biology and Medical Genetics,. - -Charles University 2nd Faculty of Medicine, Prague. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Teaching difficult topic using problem-based concept resembling computer game'""" ; - sc:featureList edam:operation_3283 ; - sc:name "demo_m" ; - sc:url "https://medbio.lf2.cuni.cz/demo_m/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0196, + edam:topic_0736 ; + sc:citation , + "pmcid:PMC9252800", + "pubmed:35536281" ; + sc:description "DEMO (Domain Enhanced MOdeling, version 2) is an significantly improved version for automated assembly of full-length structural models of multi-domain proteins by integrating analogous template alignments with deep-learning predicted inter-domain spatial restraints." ; + sc:featureList edam:operation_0295, + edam:operation_0303, + edam:operation_0474 ; + sc:license "Not licensed" ; + sc:name "DEMO2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://zhanggroup.org/DEMO/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -167261,18 +163085,18 @@ Charles University 2nd Faculty of Medicine, Prague. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3308 ; @@ -167292,8 +163116,31 @@ Charles University 2nd Faculty of Medicine, Prague. sc:softwareHelp ; sc:url "https://github.com/statgen/demuxlet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0780, + edam:topic_3170, + edam:topic_3308, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8762864", + "pubmed:35039061" ; + sc:description "DENA (Deeplearning Explore Nanopore m6A). Deep learning model used to detect RNA m6a with read level based on the Nanopore direct RNA data." ; + sc:featureList edam:operation_0428, + edam:operation_3799, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DENA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/weir12/DENA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -167313,7 +163160,7 @@ Abstract: The development of nanomedicines currently suffers from a lack of effi sc:url "http://biosig.unimelb.edu.au/dendpoint" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Plug-in" ; sc:applicationSubCategory edam:topic_2533, @@ -167330,7 +163177,7 @@ Abstract: The development of nanomedicines currently suffers from a lack of effi sc:url "http://compbio.cs.brown.edu/projects/dendrix/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0099, @@ -167350,7 +163197,7 @@ Abstract: The development of nanomedicines currently suffers from a lack of effi sc:url "https://github.com/zhouzilu/DENDRO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3293, @@ -167365,7 +163212,7 @@ Abstract: The development of nanomedicines currently suffers from a lack of effi sc:url "https://github.com/BlanchetteLab/DendroNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0194, edam:topic_3293 ; @@ -167385,7 +163232,7 @@ Abstract: The development of nanomedicines currently suffers from a lack of effi biotools:primaryContact "Jeet Sukumaran" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation , @@ -167403,7 +163250,7 @@ Abstract: The development of nanomedicines currently suffers from a lack of effi sc:url "https://github.com/lsschmidt/DendroScan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0092 ; @@ -167421,7 +163268,7 @@ Abstract: The development of nanomedicines currently suffers from a lack of effi sc:url "http://dendroscope.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -167440,7 +163287,7 @@ Abstract: The development of nanomedicines currently suffers from a lack of effi biotools:primaryContact "Jesse M. Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0611, edam:topic_3384, @@ -167467,7 +163314,7 @@ Apache/2.4.7 (Ubuntu) Server at bioimagingcore.be Port 443.""" ; sc:url "http://bioimagingcore.be/DenoisEM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "DeNovo Pipeline performes protein identification by de novo interpretation by coupling the PepNovo software for sequencing and the Fasta tool for homology searching." ; @@ -167482,7 +163329,7 @@ Apache/2.4.7 (Ubuntu) Server at bioimagingcore.be Port 443.""" ; sc:url "http://pappso.inra.fr/bioinfo/denovopipeline/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -167504,7 +163351,7 @@ Apache/2.4.7 (Ubuntu) Server at bioimagingcore.be Port 443.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "DeNovoGear is a tool to detect denovo mutations using sequencing data of related individuals. DeNovoGear calls denovo SNP's and INDEL's in trios. DeNovoGear can also be used to phase denovo mutations using genotype information at neighboring SNP sites. In addition, DeNovoGear can also be used to analyze a pair of samples and call SNP's and INDEL's present in one sample but not the other." ; sc:featureList edam:operation_3227 ; @@ -167513,14 +163360,14 @@ Apache/2.4.7 (Ubuntu) Server at bioimagingcore.be Port 443.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0078, @@ -167543,7 +163390,7 @@ Apache/2.4.7 (Ubuntu) Server at bioimagingcore.be Port 443.""" ; sc:url "http://compomics.github.io/projects/denovogui.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -167566,7 +163413,7 @@ Apache/2.4.7 (Ubuntu) Server at bioimagingcore.be Port 443.""" ; biotools:primaryContact "DeNovoID Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -167581,7 +163428,7 @@ Apache/2.4.7 (Ubuntu) Server at bioimagingcore.be Port 443.""" ; sc:url "http://denovoprofiling.xielab.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_3170, @@ -167603,7 +163450,7 @@ Package can be installed with the following line of code:.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -167615,14 +163462,12 @@ Package can be installed with the following line of code:.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2167" ; - sc:name "Nucleic acid density plot" ; - sc:sameAs "http://edamontology.org/data_2167" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2167" ; + sc:name "Nucleic acid density plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -167652,7 +163497,7 @@ Package can be installed with the following line of code:.""" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/density.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, @@ -167671,14 +163516,12 @@ Package can be installed with the following line of code:.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1710" ; - sc:name "Structure image" ; - sc:sameAs "http://edamontology.org/data_1710" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1710" ; + sc:name "Structure image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0092 ; sc:author "David Sehnal" ; @@ -167698,22 +163541,22 @@ Package can be installed with the following line of code:.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ], + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769 ; @@ -167734,7 +163577,7 @@ Package can be installed with the following line of code:.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3379, edam:topic_3399 ; @@ -167747,7 +163590,7 @@ Package can be installed with the following line of code:.""" ; sc:url "https://cran.r-project.org/web/packages/denvax/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0781, @@ -167764,7 +163607,7 @@ Package can be installed with the following line of code:.""" ; sc:url "https://webs.iiitd.edu.in/raghava/denvind/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -167781,8 +163624,32 @@ Package can be installed with the following line of code:.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/DEP.html" ; biotools:primaryContact "Arne Smits" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0736, + edam:topic_3293, + edam:topic_3512, + edam:topic_3944 ; + sc:citation , + "pmcid:PMC9252791", + "pubmed:35536332" ; + sc:description "A tool to detect and visualize co-evolution of protein domains" ; + sc:featureList edam:operation_0224, + edam:operation_0303, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DEPCOD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://genetics.mgh.harvard.edu/DEPCOD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -167798,8 +163665,30 @@ Package can be installed with the following line of code:.""" ; sc:softwareVersion "2.1" ; sc:url "http://www.uhnresearch.ca/labs/tillier/software.htm#2" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0114, + edam:topic_0160, + edam:topic_0196, + edam:topic_3407, + edam:topic_3673 ; + sc:citation , + "pubmed:35451479" ; + sc:description "Fast and sensitive discovery of complete phages and prophages in bacterial genome sequences" ; + sc:featureList edam:operation_0362, + edam:operation_2422, + edam:operation_3192 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DEPhT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/chg60/DEPhT.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0749, @@ -167817,7 +163706,7 @@ Package can be installed with the following line of code:.""" ; sc:url "https://depicter.erc.monash.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -167834,7 +163723,7 @@ Package can be installed with the following line of code:.""" ; sc:url "http://biocore.unl.edu/primer/primerPI.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -167853,7 +163742,7 @@ Package can be installed with the following line of code:.""" ; "Sha Joe Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0769, @@ -167870,7 +163759,7 @@ Package can be installed with the following line of code:.""" ; biotools:primaryContact "Laurent Gatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3383 ; sc:citation ; @@ -167885,7 +163774,7 @@ Package can be installed with the following line of code:.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -167909,7 +163798,7 @@ Package can be installed with the following line of code:.""" ; biotools:primaryContact "COSPI Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -167930,7 +163819,7 @@ Package can be installed with the following line of code:.""" ; sc:url "https://github.com/slimsuite/depthsizer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0108, @@ -167951,7 +163840,7 @@ Package can be installed with the following line of code:.""" ; sc:url "https://bioconductor.org/packages/release/bioc/html/DEqMS.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -167975,7 +163864,7 @@ Package can be installed with the following line of code:.""" ; sc:url "http://144.76.155.9/deqor_new/input.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -167994,14 +163883,14 @@ Package can be installed with the following line of code:.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3496" ; - sc:name "RNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3496" ] ; + sc:additionalType "http://edamontology.org/data_3496" ; + sc:encodingFormat "http://edamontology.org/format_3006" ; + sc:name "RNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170 ; @@ -168024,14 +163913,14 @@ Package can be installed with the following line of code:.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3372 ; @@ -168052,14 +163941,14 @@ Package can be installed with the following line of code:.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_2919" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092 ; @@ -168079,7 +163968,7 @@ Package can be installed with the following line of code:.""" ; biotools:primaryContact "Leonardo Collado-Torres" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -168096,7 +163985,7 @@ Package can be installed with the following line of code:.""" ; sc:url "https://github.com/cyclica/deriver" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3295 ; @@ -168113,7 +164002,7 @@ Package can be installed with the following line of code:.""" ; biotools:primaryContact "Dario Righelli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082 ; sc:citation ; @@ -168129,7 +164018,7 @@ Package can be installed with the following line of code:.""" ; sc:url "http://protein.cau.edu.cn/DescFold/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -168149,14 +164038,12 @@ Package can be installed with the following line of code:.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -168187,18 +164074,18 @@ Package can be installed with the following line of code:.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -168220,7 +164107,7 @@ Package can be installed with the following line of code:.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308 ; sc:author "Michael Love", @@ -168240,21 +164127,31 @@ Package can be installed with the following line of code:.""" ; sc:softwareVersion "1" ; sc:url "http://bioconductor.org/packages/DESeq2/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0099, - edam:topic_3170, - edam:topic_3407 ; - sc:citation , - "pmcid:PMC6699717", - "pubmed:31390362" ; - sc:description "> LOW CONFIDENCE! | On the optimal design of metabolic RNA labeling experiments | Alexey Uvarovskii, Isabel Naarmann-de Vries, Christoph Dieterich" ; - sc:featureList edam:operation_3501, - edam:operation_3715 ; - sc:name "design metabolic RNA labeling" ; - sc:url "https://github.com/dieterich-lab/DesignMetabolicRNAlabeling" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0203, + edam:topic_0602, + edam:topic_3336, + edam:topic_3374 ; + sc:citation , + "pmcid:PMC8895921", + "pubmed:35246258" ; + sc:description "Interpretable prediction of drug-drug interactions using drug-induced gene expressions." ; + sc:featureList edam:operation_0314, + edam:operation_2454, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DeSIDE-DDI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/GIST-CSBL/DeSIDE-DDI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -168274,7 +164171,7 @@ Package can be installed with the following line of code:.""" ; sc:url "https://designate.dbresearch.uni-salzburg.at/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -168293,8 +164190,21 @@ Package can be installed with the following line of code:.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/DEsingle.html" ; biotools:primaryContact "Zhun Miao" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "The main aim of this server is to make more efficient siRNA against a target site using nucleotide mismatch approach." ; + sc:featureList edam:operation_2945 ; + sc:name "desirm" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/desirm/team.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2275 ; @@ -168308,16 +164218,63 @@ Package can be installed with the following line of code:.""" ; sc:softwareVersion "2.4" ; sc:url "http://www.deshawresearch.com/resources_desmond.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workbench", + "Workflow" ; + sc:applicationSubCategory edam:topic_0632, + edam:topic_0654, + edam:topic_0769, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC9116035", + "pubmed:35581548" ; + sc:description "A flexible framework for systematic error simulation in DNA storage and can be adapted to a wide range of experiment pipelines." ; + sc:featureList edam:operation_2422, + edam:operation_2426, + edam:operation_3195 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DeSP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/WangLabTHU/DeSP" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_2229, + edam:topic_3169, + edam:topic_3794 ; + sc:citation , + "pmcid:PMC9233226", + "pubmed:35782725" ; + sc:description "A web database for sequence and shape motif analyses and identification." ; + sc:featureList edam:operation_0238, + edam:operation_0239, + edam:operation_0438 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "DESSO-DB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://cloud.osubmi.com/DESSO/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -168339,7 +164296,7 @@ Package can be installed with the following line of code:.""" ; biotools:primaryContact "Philipp Angerer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -168359,18 +164316,15 @@ Package can be installed with the following line of code:.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -168393,7 +164347,7 @@ Package can be installed with the following line of code:.""" ; "Panos Balomenos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0623, @@ -168413,7 +164367,7 @@ Package can be installed with the following line of code:.""" ; biotools:primaryContact "The Parkinson Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3304, @@ -168430,7 +164384,7 @@ Package can be installed with the following line of code:.""" ; biotools:primaryContact "pugalenthi R" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0157, edam:topic_3175 ; @@ -168448,7 +164402,7 @@ Package can be installed with the following line of code:.""" ; biotools:primaryContact "Dr. Chun Liang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3170, @@ -168466,8 +164420,31 @@ Package can be installed with the following line of code:.""" ; sc:url "https://github.com/AstraZeneca/detectIS" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2840, + edam:topic_3314, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9246259", + "pubmed:35700270" ; + sc:description "Detective-QSAR is a web applications to evaluate the known/unknown spectra aquired by MS" ; + sc:featureList edam:operation_3629, + edam:operation_3799, + edam:operation_3860 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-4.0" ; + sc:name "Detective-QSAR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.mixture-platform.net/Detective_QSAR_Med_Open/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203 ; sc:description "Diagnostic tool which return the propensity of a given mRNA to be translated into peptide." ; @@ -168484,7 +164461,7 @@ Package can be installed with the following line of code:.""" ; "Massimiliano Orsini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0621, @@ -168501,7 +164478,7 @@ Package can be installed with the following line of code:.""" ; sc:url "https://github.com/MarineBioAcousticsRC/DetEdit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -168518,7 +164495,7 @@ Package can be installed with the following line of code:.""" ; sc:url "http://deweylab.biostat.wisc.edu/detonate/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3297, @@ -168533,7 +164510,7 @@ Package can be installed with the following line of code:.""" ; sc:url "http://extremebiolab.com/detr-db/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -168551,26 +164528,26 @@ Package can be installed with the following line of code:.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3712" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2992" ; - sc:name "Protein structure image" ; - sc:sameAs "http://edamontology.org/data_2992" ], + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Protein structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2992" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Protein structure image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -168584,8 +164561,25 @@ Package can be installed with the following line of code:.""" ; sc:softwareHelp ; sc:url "http://hdx.florida.scripps.edu/hdx_workbench/Home.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Suite" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_3304, + edam:topic_3384, + edam:topic_3418, + edam:topic_3444 ; + sc:citation , + "pmcid:PMC8647945", + "pubmed:34881349" ; + sc:description "devfOLD: A toolbox for designing age-specific fNIRS channel placement." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:name "devfOLD" ; + sc:url "https://github.com/nirx/devfOLD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3382, @@ -168603,7 +164597,7 @@ Package can be installed with the following line of code:.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, @@ -168623,8 +164617,39 @@ Package can be installed with the following line of code:.""" ; "Windows" ; sc:url "http://devomics.cn/#/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1147" ; + sc:name "GEO accession number" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:name "Gene expression matrix" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:name "Gene expression matrix" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_3308 ; + sc:author "Juan Antonio Villatoro-García" ; + sc:description "Performing all the steps of gene expression meta-analysis considering the possible existence of missing genes. It provides the necessary functions to be able to perform the different methods of gene expression meta-analysis. In addition, it contains functions to apply quality controls, download GEO datasets and show graphical representations of the results." ; + sc:featureList edam:operation_0531, + edam:operation_3223, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "DExMA" ; + sc:softwareHelp , + ; + sc:softwareVersion "1.4.2" ; + sc:url "https://bioconductor.org/packages/release/bioc/html/DExMA.html" ; + biotools:primaryContact "Juan Antonio Villatoro-García" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -168641,7 +164666,7 @@ Package can be installed with the following line of code:.""" ; sc:url "https://github.com/MetExplore/dexom" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170 ; @@ -168663,14 +164688,14 @@ Package can be installed with the following line of code:.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3172 ; sc:author "Michael Dagley" ; @@ -168691,7 +164716,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "https://github.com/DExSI/DExSI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0621, @@ -168708,7 +164733,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "https://gite.lirmm.fr/menichelli/DExTER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0622, @@ -168727,7 +164752,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -168748,7 +164773,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0196, @@ -168764,7 +164789,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "https://dfam.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -168782,8 +164807,51 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "https://dfast.nig.ac.jp/" ; biotools:primaryContact "Yasukazu Nakamura" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0209, + edam:topic_0610, + edam:topic_3068, + edam:topic_3335 ; + sc:citation , + "pubmed:35552640" ; + sc:description "A database of food-derived bioactive peptides (DFBP), containing a total of 6276 peptide entries in 31 types from different sources." ; + sc:featureList edam:operation_2422, + edam:operation_3646, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "DFBP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.cqudfbp.net/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2275, + edam:topic_3336, + edam:topic_3373 ; + sc:citation , + "pmcid:PMC9200220", + "pubmed:35720125" ; + sc:description "DFCNN is a deep learning based model for fast identify protein-ligand interaction, and suitable for larget scale drug virtual screening." ; + sc:featureList edam:operation_2476, + edam:operation_3899, + edam:operation_3938 ; + sc:license "Other" ; + sc:name "DFCNN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://cbblab.siat.ac.cn/DFCNN/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -168800,8 +164868,24 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "https://www.mathworks.com/matlabcentral/fileexchange/57181-tiepvupsu-dfdl" ; biotools:primaryContact "Tiep Vu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:citation , + "pmcid:PMC4908364", + "pubmed:2730763" ; + sc:description "DFLpred webserver is designed for the prediction of disordered flexible linker (DFL). The server generates numeric score for each residue in the input protein sequence that quantifies putative propensity to form a DFL." ; + sc:isAccessibleForFree true ; + sc:name "DFLpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://biomine.cs.vcu.edu/servers/DFLpred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -168819,7 +164903,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l biotools:primaryContact "Rodrigo Alvarez-Glez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2269, @@ -168833,8 +164917,29 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:name "DFTB+" ; sc:url "https://dftbplus.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:35525879" ; + sc:description "A software package for the analysis of any type of reentry and focal activation of simulated, experimental or clinical data of cardiac arrhythmia." ; + sc:featureList edam:operation_0244, + edam:operation_0337, + edam:operation_1812 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "DG-Mapping" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://www.dgmapping.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -168850,7 +164955,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "https://github.com/zhanghaoyang0/DGAT-onco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0623, @@ -168868,7 +164973,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l biotools:primaryContact "Andrew McKenzie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0121, edam:topic_2229, @@ -168887,14 +164992,12 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -168911,7 +165014,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l biotools:primaryContact "GenOuest platform" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, edam:topic_0602, @@ -168928,7 +165031,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "http://www.dgidb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, edam:topic_3053, @@ -168944,8 +165047,30 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:name "DGINN" ; sc:url "https://rna-seq.shinyapps.io/DGINN_Pipeline_Visualization/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_2258, + edam:topic_3070, + edam:topic_3314, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8529678", + "pubmed:34693143" ; + sc:description "Python package for graph neural networks in chemistry and biology" ; + sc:featureList edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "DGL-LifeSci" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/awslabs/dgl-lifesci" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -168972,7 +165097,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "https://dglinker.rosalind.kcl.ac.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_0821, @@ -168989,7 +165114,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, @@ -169005,7 +165130,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "https://github.com/bjmnbraun/DGraph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, @@ -169022,7 +165147,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "https://jamesjoly.github.io/DGSEA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -169039,7 +165164,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l biotools:primaryContact "Liangjian Deng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0622, @@ -169063,7 +165188,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l biotools:primaryContact "DGVa Helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623, edam:topic_3169, @@ -169084,7 +165209,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l biotools:primaryContact "Saulius Lukauskas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -169107,7 +165232,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "http://cropnet.pl/dhcl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -169123,8 +165248,22 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "https://cran.r-project.org/web/packages/dhga/" ; biotools:primaryContact "Samarendra Das" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_2815, + edam:topic_3384, + edam:topic_3954 ; + sc:citation , + "pubmed:35333725" ; + sc:description "Improving Dental-Based Human Identification Using Generative Adversarial Networks" ; + sc:featureList edam:operation_2409, + edam:operation_3443 ; + sc:name "DHI-GAN" ; + sc:url "https://github.com/sculyi/MedicalImages/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, edam:topic_3053, @@ -169140,7 +165279,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "https://github.com/guofei-tju/DHRLS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -169158,7 +165297,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "http://www.stat.uchicago.edu/~mcpeek/software/dhsmap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0637, edam:topic_2269, @@ -169176,8 +165315,28 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:operatingSystem "Linux" ; sc:url "https://github.com/JupitersMight/DI2" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0081, + edam:topic_0749 ; + sc:citation , + "pubmed:34780330" ; + sc:description "A More Accurate and Efficient Pre-Alignment Filter for Sequence Alignment." ; + sc:featureList edam:operation_0292, + edam:operation_3096, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DiagAF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BioLab-cz/DiagAF" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Workflow" ; sc:applicationSubCategory edam:topic_0121, @@ -169198,7 +165357,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0797, @@ -169219,7 +165378,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l biotools:primaryContact "Clote Structural Biology Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -169237,7 +165396,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "https://github.com/bschulzlab/DIALib" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196 ; @@ -169256,7 +165415,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l biotools:primaryContact "layal@gobics.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2814, edam:topic_3542 ; @@ -169274,7 +165433,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l biotools:primaryContact "Amarendran R. Subramanian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2814, @@ -169292,7 +165451,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080 ; @@ -169306,7 +165465,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "https://github.com/bbuchfink/diamond" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2533 ; @@ -169320,8 +165479,32 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:softwareHelp ; sc:url "https://ccb.jhu.edu/software/diamund/index.shtml" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3063, + edam:topic_3303, + edam:topic_3384, + edam:topic_3452, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8669082", + "pubmed:34727303" ; + sc:description "DIANA is a DICOM imaging informatics platform that can be attached to the clinical systems with a very small footprint, and then tuned to support a range of tasks from high-resolution image archival to cohort discovery to radiation dose monitoring. It provides DICOM services, image data indexing, REST endpoints for scripting, and user access control through an amalgamation of free and free and open source (FOSS) systems." ; + sc:featureList edam:operation_2422, + edam:operation_3283, + edam:operation_3443, + edam:operation_3760 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DIANA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/derekmerck/diana2" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204 ; sc:citation , @@ -169340,7 +165523,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "http://www.microrna.gr/LncBase/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -169359,7 +165542,7 @@ As it is designed to detect metabolites irrespective of the extent of isotopic l sc:url "https://github.com/athalexiou/DIANA-mAP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0154, @@ -169391,7 +165574,7 @@ It predicts targets for miRNAs and provides functional information on the predic biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -169413,7 +165596,7 @@ It predicts targets for miRNAs and provides functional information on the predic sc:url "http://www.microrna.gr/mirextrav2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0203 ; @@ -169437,10 +165620,9 @@ It predicts targets for miRNAs and provides functional information on the predic a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0204 ; sc:citation , @@ -169462,7 +165644,7 @@ It predicts targets for miRNAs and provides functional information on the predic biotools:primaryContact "Ioannis S Vlachos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -169483,7 +165665,7 @@ It predicts targets for miRNAs and provides functional information on the predic sc:url "http://www.microrna.gr/mited" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -169506,7 +165688,7 @@ It predicts targets for miRNAs and provides functional information on the predic biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -169529,7 +165711,7 @@ It predicts targets for miRNAs and provides functional information on the predic biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -169555,7 +165737,7 @@ It predicts targets for miRNAs and provides functional information on the predic "Peter Clote" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -169572,7 +165754,7 @@ It predicts targets for miRNAs and provides functional information on the predic sc:url "https://github.com/Roestlab/dia-pasef" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -169588,7 +165770,7 @@ It predicts targets for miRNAs and provides functional information on the predic sc:url "https://www.openms.de/diaproteomics/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -169610,7 +165792,7 @@ It predicts targets for miRNAs and provides functional information on the predic biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0610, @@ -169626,8 +165808,30 @@ It predicts targets for miRNAs and provides functional information on the predic sc:url "https://limnolab.shinyapps.io/diathor-shiny/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0610, + edam:topic_0637, + edam:topic_3068 ; + sc:citation , + "pmcid:PMC9359083", + "pubmed:35958044" ; + sc:description "Diatoms.org represents such a content curation community, providing open, online access to a vast amount of recent and historical information on North American diatom taxonomy and ecology." ; + sc:featureList edam:operation_3436, + edam:operation_3946 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "diatoms.org" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://Diatoms.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -169646,7 +165850,7 @@ It predicts targets for miRNAs and provides functional information on the predic sc:url "https://github.com/elolab/diatools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -169658,7 +165862,7 @@ It predicts targets for miRNAs and provides functional information on the predic sc:url "https://dical2.sourceforge.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -169674,7 +165878,7 @@ It predicts targets for miRNAs and provides functional information on the predic sc:url "https://portal.if.usp.br/dice" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382, @@ -169693,7 +165897,7 @@ Dice-XMBD1 is marker agnostic and can perform cell segmentation for multiplexed sc:url "https://github.com/xmuyulab/Dice-XMBD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3379, @@ -169714,7 +165918,7 @@ Dice-XMBD1 is marker agnostic and can perform cell segmentation for multiplexed biotools:primaryContact "Derek Chiu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3444 ; @@ -169729,7 +165933,7 @@ Dice-XMBD1 is marker agnostic and can perform cell segmentation for multiplexed sc:url "https://github.com/BMHLab/DiCER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0593, @@ -169751,7 +165955,7 @@ Dice-XMBD1 is marker agnostic and can perform cell segmentation for multiplexed biotools:primaryContact "PCDDB Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_1317, @@ -169772,8 +165976,28 @@ Dice-XMBD1 is marker agnostic and can perform cell segmentation for multiplexed sc:url "http://dichroweb.cryst.bbk.ac.uk/html/home.shtml" ; biotools:primaryContact "Contact Form" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_3384, + edam:topic_3404, + edam:topic_3444, + edam:topic_3452, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9054111", + "pubmed:35488074" ; + sc:description "DICODerma is a tool and a preliminary standard to reconcile the best of both worlds - the simplicity of consumer image tools and the DICOM and PACS-based enterprise imaging infrastructure." ; + sc:featureList edam:operation_2422, + edam:operation_3435, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "DICODerma" ; + sc:url "https://github.com/dermatologist/dicom-dermatology" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, edam:topic_0780, @@ -169790,7 +166014,7 @@ Dice-XMBD1 is marker agnostic and can perform cell segmentation for multiplexed sc:url "https://forgemia.inra.fr/GNet/dicoexpress" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3384, @@ -169808,7 +166032,7 @@ Dice-XMBD1 is marker agnostic and can perform cell segmentation for multiplexed biotools:primaryContact "Takuji Fukumoto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -169824,7 +166048,7 @@ Dice-XMBD1 is marker agnostic and can perform cell segmentation for multiplexed biotools:primaryContact "Frank Zijlstra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3303, @@ -169843,7 +166067,7 @@ Dice-XMBD1 is marker agnostic and can perform cell segmentation for multiplexed sc:url "https://dev.bio.tools/pub2tools2021__dicom_wsi/edit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3416, @@ -169861,14 +166085,14 @@ Dice-XMBD1 is marker agnostic and can perform cell segmentation for multiplexed a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3442" ; - sc:name "MRI image" ; - sc:sameAs "http://edamontology.org/data_3442" ] ; + sc:additionalType "http://edamontology.org/data_3442" ; + sc:encodingFormat "http://edamontology.org/format_3548" ; + sc:name "MRI image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3788" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Library for extracting and converting DICOM file metadata for persistence and indexing in a SQL database" ; sc:featureList edam:operation_2422 ; @@ -169879,14 +166103,13 @@ Dice-XMBD1 is marker agnostic and can perform cell segmentation for multiplexed a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ] ; + sc:additionalType "http://edamontology.org/data_2295" ; + sc:name "Gene ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation ; @@ -169902,14 +166125,13 @@ Dice-XMBD1 is marker agnostic and can perform cell segmentation for multiplexed a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ] ; + sc:additionalType "http://edamontology.org/data_2295" ; + sc:name "Gene ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -169935,7 +166157,7 @@ Dice-XMBD1 is marker agnostic and can perform cell segmentation for multiplexed sc:url "http://www.dictybase.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -169956,18 +166178,18 @@ Dice-XMBD1 is marker agnostic and can perform cell segmentation for multiplexed a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3510 ; @@ -169985,8 +166207,27 @@ Dice-XMBD1 is marker agnostic and can perform cell segmentation for multiplexed sc:url "http://cbs.dtu.dk/services/DictyOGlyc/" ; biotools:primaryContact "Ramneek Gupta" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:34793301" ; + sc:description "Defocus Image Deblurring Network With Defocus Map Estimation as Auxiliary Task." ; + sc:featureList edam:operation_2429, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DID-ANet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/xytmhy/DID-ANet-Defocus-Deblurring" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -170013,7 +166254,7 @@ Dice-XMBD1 is marker agnostic and can perform cell segmentation for multiplexed biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3382, edam:topic_3474 ; @@ -170028,18 +166269,16 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3477" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0602 ; @@ -170057,7 +166296,7 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t sc:url "http://bioinformatics.psb.ugent.be/supplementary_data/solan/diffany/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169 ; @@ -170077,7 +166316,7 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t biotools:primaryContact "Rory Stark" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0632, edam:topic_0659, @@ -170098,8 +166337,29 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t biotools:primaryContact , "Guido Sanguinetti" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0769, + edam:topic_3169, + edam:topic_3170, + edam:topic_3295 ; + sc:citation , + "pubmed:35809062" ; + sc:description "A differential peak analysis method for high throughput sequencing data with biological replicates based on limma." ; + sc:featureList edam:operation_3215, + edam:operation_3222, + edam:operation_3435 ; + sc:license "Apache-2.0" ; + sc:name "DiffChIPL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/yancychy/DiffChIPL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -170119,7 +166379,7 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t biotools:primaryContact "Wenbin Wei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2229 ; @@ -170138,7 +166398,7 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t biotools:primaryContact "Lukas M. Weber" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -170158,14 +166418,14 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene transcript report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3308 ; sc:citation ; @@ -170181,7 +166441,7 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t biotools:primaryContact "The Norwegian Bioinformatics Platform (ELIXIR-Norway) Helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -170199,7 +166459,7 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t biotools:primaryContact "Choudary Jagarlamudi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3169, @@ -170214,18 +166474,18 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2589" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Hierarchy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2589" ; - sc:name "Hierarchy" ; - sc:sameAs "http://edamontology.org/data_2589" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -170248,26 +166508,26 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "RNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -170287,7 +166547,7 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0097 ; @@ -170305,7 +166565,7 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t biotools:primaryContact "Caleb Lareau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3295 ; sc:citation ; @@ -170322,7 +166582,7 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t biotools:primaryContact "Weiliang Qiu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0622, @@ -170340,18 +166600,15 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -170381,7 +166638,7 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t sc:url "http://emboss.open-bio.org/rel/rel6/apps/diffseq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Find differences between nearly identical sequences." ; @@ -170392,7 +166649,7 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t sc:url "http://genius.embnet.dkfz-heidelberg.de/menu/hobit/embdoc/diffseq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -170411,14 +166668,14 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -170439,16 +166696,34 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t sc:url "http://apps.cytoscape.org/apps/Diffusion" ; biotools:primaryContact "Daniel E. Carlin" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Library" ; + sc:applicationSubCategory edam:topic_0176, + edam:topic_3370, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9187757", + "pubmed:35689015" ; + sc:description "DiffusionLab is software designed to extract valuable information about the motion from single-molecule or particle trajectories obtained with e.g. super-resolution localization microscopy." ; + sc:featureList edam:operation_0244, + edam:operation_3457, + edam:operation_3890 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DiffusionLab" ; + sc:softwareHelp ; + sc:url "https://github.com/ErikMaris/DiffusionLab" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:name "Score" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3307, edam:topic_3391 ; @@ -170462,7 +166737,7 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_0769, @@ -170479,14 +166754,14 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -170501,14 +166776,14 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1193" ; - sc:name "Tool name (FASTA)" ; - sc:sameAs "http://edamontology.org/data_1193" ] ; + sc:additionalType "http://edamontology.org/data_1193" ; + sc:encodingFormat "http://edamontology.org/format_1332" ; + sc:name "Tool name (FASTA)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1238" ; - sc:name "Proteolytic digest" ; - sc:sameAs "http://edamontology.org/data_1238" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1238" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Proteolytic digest" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "Simple but flexible in silico digester of protein sequences in the FASTA format. It allows for almost any enzyme to be simulated, including \"MS/MS\" enzymes to generate CID or ECD/ETD fragments." ; @@ -170524,14 +166799,14 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0848" ; - sc:name "Raw sequence" ; - sc:sameAs "http://edamontology.org/data_0848" ] ; + sc:additionalType "http://edamontology.org/data_0848" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Raw sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3047, @@ -170550,7 +166825,7 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t sc:url "http://www.rgenome.net/digenome-js/#!" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -170565,8 +166840,34 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t biotools:primaryContact "Jens Meiler", "John A. Capra" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web API", + "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0634, + edam:topic_3053, + edam:topic_3396, + edam:topic_3407 ; + sc:citation , + "pubmed:35753693" ; + sc:description "DIGEST is a (“validation of disease and gene sets, clusterings or subnetworks”), is a Python-based validation tool available as a webinterface, as a standalone package, or over a REST API." ; + sc:featureList edam:operation_2428, + edam:operation_2436, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DIGEST" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://digest-validation.net" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -170584,7 +166885,7 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t sc:url "https://exbio.wzw.tum.de/digger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -170602,7 +166903,7 @@ Abstract Stochastic Gradient Decent (SGD) is one of the core techniques behind t biotools:primaryContact "Mariano J Alvarez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0820, @@ -170622,7 +166923,7 @@ digilogger is available as the latest development version of the code by using t sc:url "https://github.com/michbur/digilogger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0160, @@ -170645,14 +166946,12 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082 ; @@ -170670,7 +166969,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro biotools:primaryContact "Paolo Marcatili" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0654 ; @@ -170685,7 +166984,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro biotools:primaryContact "Adithya Popuri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3382 ; sc:description "MATLAB script for enhancement of digital mammography images." ; @@ -170700,7 +166999,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro biotools:primaryContact "Akshay Gore" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -170722,7 +167021,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro sc:url "http://gcancer.org/digsee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -170741,7 +167040,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro "Rob Russell (questions, comments or bug reports)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -170759,14 +167058,13 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1138" ; - sc:name "Pfam accession number" ; - sc:sameAs "http://edamontology.org/data_1138" ] ; + sc:additionalType "http://edamontology.org/data_1138" ; + sc:name "Pfam accession number" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128 ; sc:citation ; @@ -170782,7 +167080,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro sc:url "http://webclu.bio.wzw.tum.de/dima2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -170802,7 +167100,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro sc:url "http://github.com/kreutz-lab/DIMAR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_3172, @@ -170816,8 +167114,27 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro sc:name "DIMEDR" ; sc:url "https://chemdata.nist.gov/dokuwiki/doku.php?id=chemdata:dimedr" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_2885, + edam:topic_3125, + edam:topic_3169, + edam:topic_3173 ; + sc:citation , + "pubmed:35396487" ; + sc:description "A long-read, single-molecule method for mapping protein-DNA interactions genome wide." ; + sc:featureList edam:operation_3185, + edam:operation_3186, + edam:operation_3222 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DiMeLo-seq" ; + sc:url "https://github.com/amaslan/dimelo-seq/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0623, edam:topic_3170, @@ -170835,7 +167152,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro "Wei Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3169, @@ -170851,7 +167168,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro sc:url "http://www.jstacs.de/index.php/Dimont" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0659, @@ -170869,7 +167186,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro sc:url "https://github.com/breakerlab/dimpl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -170886,7 +167203,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro sc:url "https://github.com/lehner-lab/DiMSum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -170906,7 +167223,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0160, @@ -170926,30 +167243,24 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_3108" ; + sc:name "Experimental measurement" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2984" ; - sc:name "Pathway or network report" ; - sc:sameAs "http://edamontology.org/data_2984" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2984" ; + sc:name "Pathway or network report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -170984,7 +167295,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -171000,7 +167311,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro sc:url "http://slsdb.manipal.edu/dinax" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, @@ -171018,8 +167329,36 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro sc:url "http://dinc.kavrakilab.org/" ; biotools:primaryContact "Contact form" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Small molecule structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0176, + edam:topic_0209, + edam:topic_2275, + edam:topic_2828 ; + sc:citation , + "pmcid:PMC8518241", + "pubmed:34717233" ; + sc:description "A webserver for ensemble docking with flexible SARS-CoV-2 proteins." ; + sc:featureList edam:operation_0478, + edam:operation_2476, + edam:operation_3454, + edam:operation_3891, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "DINC-COVID" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://dinc-covid.kavrakilab.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation "pubmed:20980555" ; @@ -171034,7 +167373,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro biotools:primaryContact "Dinsel Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -171059,7 +167398,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro biotools:primaryContact "Feedback Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -171076,14 +167415,14 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -171102,7 +167441,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro sc:url "https://github.com/fickludd/dinosaur/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2640, @@ -171118,7 +167457,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro sc:url "https://github.com/SVanalysis/DINTD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -171139,7 +167478,7 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro biotools:primaryContact "Christian Weichenberger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -171161,12 +167500,25 @@ As an input, digIS accepts contigs in FASTA format. Optionally, the user can pro sc:url "http://dip.doe-mbi.ucla.edu/" ; biotools:primaryContact "David Eisemberg" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation ; + sc:description "DiPCell is a webserver for the predicting inhibitory activity of unknown molecules and designing their analogs against pancreatic cancer cell lines." ; + sc:featureList edam:operation_2945 ; + sc:name "dipcell" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/dipcell/index.html" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_1317 ; sc:citation "pubmed:28989721" ; @@ -171178,8 +167530,51 @@ The tool uses a Euclidian 3D space (DipSpace) of the orthogonal descriptors of t sc:name "Dipcheck" ; sc:url "http://cluster.embl-hamburg.de/cgi-bin/dipcheck/dipcheck.cgi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0176, + edam:topic_0593, + edam:topic_0749, + edam:topic_0769 ; + sc:citation , + "pmcid:PMC8534045", + "pubmed:34680137" ; + sc:description "An Open-Source Pipeline to Generate Ensembles of Disordered Segments Using Neighbor-Dependent Backbone Preferences." ; + sc:featureList edam:operation_2476, + edam:operation_2939, + edam:operation_3891, + edam:operation_3960 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DIPEND" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/PPKE-Bioinf/DIPEND" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2269, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC9245626", + "pubmed:35785020" ; + sc:description "R package for implementing the Depth Importance in Precision Medicine (DIPM) tree and forest based method" ; + sc:featureList edam:operation_0337, + edam:operation_3359 ; + sc:license "GPL-2.0" ; + sc:name "DIPM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ysph.yale.edu/c2s2/software/dipm" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -171201,7 +167596,7 @@ The tool uses a Euclidian 3D space (DipSpace) of the orthogonal descriptors of t biotools:primaryContact "Clifford Felder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -171218,22 +167613,20 @@ The tool uses a Euclidian 3D space (DipSpace) of the orthogonal descriptors of t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2721" ; - sc:name "DiProDB ID" ; - sc:sameAs "http://edamontology.org/data_2721" ], + sc:additionalType "http://edamontology.org/data_2721" ; + sc:name "DiProDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3128" ; - sc:name "Nucleic acid structure report" ; - sc:sameAs "http://edamontology.org/data_3128" ], + sc:additionalType "http://edamontology.org/data_2720" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Dinucleotide property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2720" ; - sc:name "Dinucleotide property" ; - sc:sameAs "http://edamontology.org/data_2720" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3128" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation ; @@ -171249,7 +167642,7 @@ The tool uses a Euclidian 3D space (DipSpace) of the orthogonal descriptors of t biotools:primaryContact "Maik Friedel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -171262,8 +167655,26 @@ The tool uses a Euclidian 3D space (DipSpace) of the orthogonal descriptors of t sc:softwareVersion "20100209" ; sc:url "http://diprogb.fli-leibniz.de/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0092 ; + sc:citation , + "pmcid:PMC9202909", + "pubmed:35721233" ; + sc:description "Direction-projection-permutation (DiProPerm) is an R Package for two-sample hypothesis test for comparing two high-dimensional distributions." ; + sc:featureList edam:operation_2238, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DiProPerm" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://CRAN.R-project.org/package=diproperm" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -171283,7 +167694,7 @@ The tool uses a Euclidian 3D space (DipSpace) of the orthogonal descriptors of t biotools:primaryContact "DiRE Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -171301,20 +167712,8 @@ The tool uses a Euclidian 3D space (DipSpace) of the orthogonal descriptors of t sc:url "http://bioconductor.org/packages/release/bioc/html/Director.html" ; biotools:primaryContact "Katherine Icay" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3421 ; - sc:citation , - "pubmed:31688121" ; - sc:description """Plastic Surgery Training and the Problematic Resident. - -INTRODUCTION:Plastic surgery resident education is a significant commitment by both programs and residents. Unfortunately, problematic resident behavior may occur and be difficult to manage. This study was designed to survey plastic surgery program directors to elucidate their experience with problematic resident behavior. METHODS:A electronic survey was prepared using the online platform, qualtrics. The survey was distributed by email to all plastic surgery program directors. Questions were designed to evaluate frequency of problematic behavior and methods to manage the behaviors. A reminder was sent 3 weeks after initial distribution. Responses were collected for an additional 3 weeks. Responses were pooled separately for integrated and independent program directors. RESULTS:Thirty-eight program directors responded including 10 independent and 28 integrated program directors. - -||| HOMEPAGE MISSING!""" ; - sc:name "directors" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31688121" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3174, @@ -171334,23 +167733,8 @@ INTRODUCTION:Plastic surgery resident education is a significant commitment by b sc:url "http://bioconductor.org/packages/release/bioc/html/DirichletMultinomial.html" ; biotools:primaryContact "Martin Morgan" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3305 ; - sc:citation , - "pmcid:PMC6921083", - "pubmed:31854504" ; - sc:description """Pepfar 3.0's HIV testing policy in Côte d'Ivoire (2014 to 2018). - -PEPFAR Panorama Spotlight. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'data'""" ; - sc:featureList edam:operation_3454 ; - sc:name "disaggregate targets" ; - sc:url "https://data.pepfar.gov" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -171368,7 +167752,7 @@ PEPFAR Panorama Spotlight. sc:url "https://github.com/AstraZeneca-NGS/disambiguate" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3174, @@ -171383,7 +167767,7 @@ PEPFAR Panorama Spotlight. biotools:primaryContact "Quan Zou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2229, @@ -171402,7 +167786,7 @@ PEPFAR Panorama Spotlight. sc:url "https://github.com/xie-lab/DISC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_0769, @@ -171421,7 +167805,7 @@ PEPFAR Panorama Spotlight. sc:url "https://github.com/ocbe-uio/DIscBIO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_1317 ; sc:citation , @@ -171436,7 +167820,7 @@ PEPFAR Panorama Spotlight. sc:url "http://www.cs.duke.edu/donaldlab/software/DISCO/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -171452,37 +167836,8 @@ PEPFAR Panorama Spotlight. sc:name "Disco" ; sc:url "http://disco.csb.pitt.edu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_2275, - edam:topic_3047, - edam:topic_3336 ; - sc:citation , - "pmcid:PMC6933848", - "pubmed:31721338" ; - sc:description """Cross-docking benchmark for automated pose and ranking prediction of ligand binding. - -Directory of Structures for Crossdocking. - -Welcome to the Cross Docking Benchmark server. This server has been created as a useful benchmark for crossdocking using the Targets listed in DUD-E as a reference. The completed benchmark contains:. - -To generate a benchmark for your desired targets, use our free on-line system below. To begin... - -4,399 ligand and receptor structures homologous to one of 95 targets, an average of 46 ligands per target. - -Submit the email address to which the results should be sent. This is done only for the purpose of validation and providing results. None of your information will be retained. - -||| NAME (disco) SIMILAR TO (PUB. DIFFERENT) bio.tools/disco_segmentation (DISCO), bio.tools/disco (DISCO). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'cross-docking'""" ; - sc:featureList edam:operation_0482, - edam:operation_2489, - edam:operation_3899 ; - sc:name "disco_autogenerated" ; - sc:url "http://disco.csb.pitt.edu" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0821, @@ -171503,7 +167858,7 @@ Submit the email address to which the results should be sent. This is done only sc:url "https://github.com/Genome-Evolution-and-Ecology-Group-GEEG/DiSCo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, @@ -171520,7 +167875,7 @@ Submit the email address to which the results should be sent. This is done only biotools:primaryContact "Matthew M Crane" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0108, @@ -171536,7 +167891,7 @@ Submit the email address to which the results should be sent. This is done only sc:url "http://biomine.cs.vcu.edu/servers/disCoP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -171560,14 +167915,14 @@ Submit the email address to which the results should be sent. This is done only a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -171588,14 +167943,14 @@ Submit the email address to which the results should be sent. This is done only a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_2830, @@ -171614,7 +167969,7 @@ Submit the email address to which the results should be sent. This is done only biotools:primaryContact "Ole Lund" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3343, edam:topic_3382, @@ -171631,7 +167986,7 @@ Submit the email address to which the results should be sent. This is done only sc:url "https://gitlab.com/lodewijk-track32/discount_paper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0196, @@ -171649,7 +168004,7 @@ Submit the email address to which the results should be sent. This is done only biotools:primaryContact "Johan Nyström-Persson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation ; @@ -171663,7 +168018,7 @@ Submit the email address to which the results should be sent. This is done only sc:url "http://www.broadinstitute.org/software/discovar/blog/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -171677,7 +168032,7 @@ Submit the email address to which the results should be sent. This is done only sc:url "http://www.broadinstitute.org/software/discovar/blog/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -171688,7 +168043,7 @@ Submit the email address to which the results should be sent. This is done only sc:url "http://www.sailing.cs.cmu.edu/main/?page_id=387" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -171704,7 +168059,7 @@ Submit the email address to which the results should be sent. This is done only sc:url "https://github.com/Bhattacharya-Lab/DisCovER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3421, edam:topic_3444, @@ -171722,7 +168077,7 @@ Submit the email address to which the results should be sent. This is done only biotools:primaryContact "Vishwajeet Pattanaik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3293, @@ -171741,7 +168096,7 @@ Submit the email address to which the results should be sent. This is done only biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -171764,7 +168119,7 @@ Submit the email address to which the results should be sent. This is done only biotools:primaryContact "Neil Robertson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176 ; sc:citation ; @@ -171775,7 +168130,7 @@ Submit the email address to which the results should be sent. This is done only biotools:primaryContact "Institute for Research in Biomedicine Barcelona" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -171791,7 +168146,7 @@ Submit the email address to which the results should be sent. This is done only biotools:primaryContact "Guangdi Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0160 ; @@ -171803,7 +168158,7 @@ Submit the email address to which the results should be sent. This is done only sc:url "http://murphylab.cbi.cmu.edu/software/2009_TCBB_motif/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0632, @@ -171823,8 +168178,25 @@ Submit the email address to which the results should be sent. This is done only sc:url "https://github.com/hdetering/discomark" ; biotools:primaryContact "Sereina Rutschmann" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3511 ; + sc:citation , + "pmcid:PMC4245949", + "pubmed:25389269" ; + sc:description "Discover discriminative sequence motifs." ; + sc:featureList edam:operation_0415 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "discrover" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/maaskola/discrover" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3344, @@ -171842,7 +168214,7 @@ Submit the email address to which the results should be sent. This is done only biotools:primaryContact "muhammad bilal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0634, @@ -171873,7 +168245,7 @@ Name Synonym Definition Subset DOID Alternate ID Xrefs DO_AGR_slim DO_cancer_sli sc:url "http://www.disease-ontology.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -171901,7 +168273,7 @@ Name Synonym Definition Subset DOID Alternate ID Xrefs DO_AGR_slim DO_cancer_sli biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -171928,7 +168300,7 @@ Name Synonym Definition Subset DOID Alternate ID Xrefs DO_AGR_slim DO_cancer_sli "Pedro Lopes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -171954,43 +168326,53 @@ Name Synonym Definition Subset DOID Alternate ID Xrefs DO_AGR_slim DO_cancer_sli "Zhou Lab, University of Southern California" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Database portal" ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2769" ; + sc:name "Transcript ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0654, edam:topic_3295, edam:topic_3674 ; - sc:citation "pubmed:22135302" ; - sc:description "A web based resource focused on the aberrant methylomes of human diseases." ; + sc:citation , + , + "pmcid:PMC3245164", + "pmcid:PMC8728278", + "pubmed:22135302", + "pubmed:34792145" ; + sc:description "The Human Disease Methylation Database Version 3.0 is a web-based resource that focuses on the abnormal methylome of human diseases." ; sc:featureList edam:operation_0308, edam:operation_3204, edam:operation_3206, edam:operation_3207 ; + sc:isAccessibleForFree true ; sc:name "DiseaseMeth" ; sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:url "http://bioinfo.hrbmu.edu.cn/diseasemeth" ; - biotools:primaryContact "Lv Jie" . + sc:softwareVersion "3.0" ; + sc:url "http://218.8.241.243:8080/DiseaseMeth3.0/index.html" ; + biotools:primaryContact . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3667" ; - sc:name "Disease identifier" ; - sc:sameAs "http://edamontology.org/data_3667" ], + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; + sc:additionalType "http://edamontology.org/data_3667" ; + sc:name "Disease identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3667" ; - sc:name "Disease identifier" ; - sc:sameAs "http://edamontology.org/data_3667" ], + sc:additionalType "http://edamontology.org/data_3667" ; + sc:name "Disease identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3517 ; @@ -172008,7 +168390,7 @@ Name Synonym Definition Subset DOID Alternate ID Xrefs DO_AGR_slim DO_cancer_sli biotools:primaryContact "Lars Juhl Jensen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -172022,16 +168404,19 @@ Name Synonym Definition Subset DOID Alternate ID Xrefs DO_AGR_slim DO_cancer_sli edam:operation_1777, edam:operation_2423, edam:operation_3092 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; sc:name "DisEMBL" ; sc:operatingSystem "Linux", "Mac", "Windows" ; sc:softwareHelp ; + sc:softwareVersion "1.5" ; sc:url "http://dis.embl.de/" ; biotools:primaryContact "Dr Rune Linding" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -172046,8 +168431,31 @@ Name Synonym Definition Subset DOID Alternate ID Xrefs DO_AGR_slim DO_cancer_sli sc:softwareVersion "1" ; sc:url "http://www.compbio.dundee.ac.uk/jabaws/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0154, + edam:topic_3306, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC8963327", + "pubmed:35094056" ; + sc:description "DisEnrich—the database of human proteome IDRs that are significantly enriched in particular amino acids." ; + sc:featureList edam:operation_2949, + edam:operation_3501, + edam:operation_3904 ; + sc:isAccessibleForFree true ; + sc:name "DisEnrich" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://prodata.swmed.edu/DisEnrichDB/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -172065,22 +168473,20 @@ Name Synonym Definition Subset DOID Alternate ID Xrefs DO_AGR_slim DO_cancer_sli a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_1106" ; + sc:name "dbSNP ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1027" ; - sc:name "Gene ID (NCBI)" ; - sc:sameAs "http://edamontology.org/data_1027" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1106" ; - sc:name "dbSNP ID" ; - sc:sameAs "http://edamontology.org/data_1106" ] ; + sc:additionalType "http://edamontology.org/data_1027" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene ID (NCBI)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Plug-in", "SPARQL endpoint", @@ -172138,14 +168544,14 @@ The current version of DisGeNET (v7.0) contains 1,134,942 gene-disease associati a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_3542 ; @@ -172166,8 +168572,18 @@ The current version of DisGeNET (v7.0) contains 1,134,942 gene-disease associati sc:url "http://dislocate.biocomp.unibo.it/dislocate/default/index" ; biotools:primaryContact "Castrense Savojardo" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0605 ; + sc:citation ; + sc:description "DiSMed is a de-identification methodology for Spanish medical texts based on Named Entity Recognition (NER). It is based on spaCy and partially based on the networks designed by Gillaume Genthial implemented on Tensorflow 1. DiSMed includes both the Python code and the curated dataset, available under request under a research use agreement." ; + sc:isAccessibleForFree true ; + sc:name "DiSMed" ; + sc:url "https://github.com/BIMCV-CSUSP/DiSMed" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Plug-in" ; sc:applicationSubCategory edam:topic_0080, @@ -172188,7 +168604,7 @@ The current version of DisGeNET (v7.0) contains 1,134,942 gene-disease associati biotools:primaryContact "Martin T. Swain" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -172205,7 +168621,7 @@ The current version of DisGeNET (v7.0) contains 1,134,942 gene-disease associati sc:url "https://github.com/pfruan/DiSNEP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0218, @@ -172224,7 +168640,7 @@ The current version of DisGeNET (v7.0) contains 1,134,942 gene-disease associati sc:url "http://disnet.ctb.upm.es/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0634, @@ -172243,7 +168659,7 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "http://mlda.swu.edu.cn/codes.php?name=DisoFun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0121, @@ -172264,24 +168680,47 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "http://biomine.cs.vcu.edu/servers/DisoLipPred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0736, edam:topic_3306, edam:topic_3474, - edam:topic_3538 ; - sc:citation ; - sc:description "DisoMine is a tool that predicts protein disorder with recurrent neural networks not directly from the amino acid sequence, but instead from more generic predictions of key biophysical properties, here protein dynamics, secondary structure and early folding. The tool is fast and requires only a single sequence, making it applicable for large-scale screening, including poorly studied and orphan proteins. DisoMine compares well to 10 state of the art predictors, also if these use evolutionary information." ; + edam:topic_3538, + edam:topic_3542 ; + sc:citation , + "pubmed:35469832" ; + sc:description "DisoMine is a tool that predicts protein disorder with recurrent neural networks not directly from the amino acid sequence, but instead from more generic predictions of key biophysical properties, here protein dynamics, secondary structure and early folding." ; sc:featureList edam:operation_0267, edam:operation_0303, edam:operation_2476, edam:operation_3904 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; sc:name "DisoMine" ; - sc:url "http://bio2byte.com/disomine/" . + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://bio2byte.be/disomine/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:citation , + "pmcid:PMC4380029", + "pubmed:25391399" ; + sc:description "DISOPRED3 represents the latest release of our successful machine-learning based approach to the detection of intrinsically disordered regions." ; + sc:isAccessibleForFree true ; + sc:license "Freeware" ; + sc:name "DISOPRED3" ; + sc:operatingSystem "Linux" ; + sc:softwareVersion "3.1" ; + sc:url "http://bioinf.cs.ucl.ac.uk/disopred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099, @@ -172296,11 +168735,15 @@ Description :This page includes the codes of DisoFun which are implemented and t edam:operation_2492, edam:operation_3901, edam:operation_3904 ; + sc:isAccessibleForFree true ; sc:name "DisoRDPbind" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; sc:url "http://biomine.cs.vcu.edu/servers/DisoRDPbind/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , @@ -172311,8 +168754,32 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "https://github.com/zju3dv/disprcnn" ; biotools:primaryContact "Xiaowei Zhou" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_0601, + edam:topic_0634, + edam:topic_2229 ; + sc:citation , + "pmcid:PMC9156858", + "pubmed:35685370" ; + sc:description "An integrative database of diseases related variations in liquid-liquid phase separation proteins." ; + sc:featureList edam:operation_0417, + edam:operation_3227, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-4.0" ; + sc:name "DisPhaseDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "0.1.8" ; + sc:url "http://disphasedb.leloir.org.ar" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0154, @@ -172330,8 +168797,30 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:name "DispHred" ; sc:url "https://ppmclab.pythonanywhere.com/DispHred" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0634, + edam:topic_3297, + edam:topic_3300, + edam:topic_3538 ; + sc:citation , + "pmcid:PMC8616002", + "pubmed:34827596" ; + sc:description "DispHScan is a multi-sequence web tool for predicting protein disorder as a function of pH and spot folding transitions in large datasets." ; + sc:featureList edam:operation_0470, + edam:operation_1777, + edam:operation_3904 ; + sc:isAccessibleForFree true ; + sc:name "DispHScan" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://disphscan.ppmclab.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623 ; sc:citation ; @@ -172342,28 +168831,48 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:softwareVersion "1999" ; sc:url "http://multalin.toulouse.inra.fr/DisplayFam/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:citation , + "pmcid:PMC5010294", + "pubmed:27588752" ; + sc:description "DisPredict is a predictor of disorder residues in protein. It takes protein sequence (standard FASTA format) as input and outputs per residue binary annotation (disorder or order) along with two real values corresponding to probability of that residue being disorder and order." ; + sc:isAccessibleForFree true ; + sc:name "DisPredict2" ; + sc:operatingSystem "Linux" ; + sc:softwareVersion "2.0" ; + sc:url "https://cs.uno.edu/~tamjid/Software.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:description "Dispredict3.0 allows the prediction of intrinsically disordered proteins with protein language model." ; + sc:isAccessibleForFree true ; + sc:name "DisPredict3" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:url "https://cs.uno.edu/~tamjid/Software.html" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1009" ; - sc:name "Protein name" ; - sc:sameAs "http://edamontology.org/data_1009" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2723" ; - sc:name "Protein ID (DisProt)" ; - sc:sameAs "http://edamontology.org/data_2723" ], + sc:additionalType "http://edamontology.org/data_2723" ; + sc:name "Protein ID (DisProt)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_1009" ; + sc:name "Protein name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ], + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Protein structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -172386,7 +168895,7 @@ Description :This page includes the codes of DisoFun which are implemented and t biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -172415,7 +168924,7 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "http://www.disqover.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3055, edam:topic_3056 ; @@ -172429,7 +168938,7 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "https://yunliweb.its.unc.edu/DISSCO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175, edam:topic_3308 ; @@ -172445,7 +168954,7 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "http://dissect-trans.sourceforge.net/Home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3512, edam:topic_3697 ; @@ -172460,14 +168969,14 @@ Description :This page includes the codes of DisoFun which are implemented and t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0082 ; @@ -172485,8 +168994,47 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "http://cbs.dtu.dk/services/DistanceP" ; biotools:primaryContact "Ole Lund" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0199, + edam:topic_0625, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC9234764", + "pubmed:35647675" ; + sc:description "distAngsd is a software to simulate and infer phylogenetic relationships between two individuals, in which two novel methods (i.e., geno and nuc) are proposed." ; + sc:featureList edam:operation_0323, + edam:operation_2238, + edam:operation_3196 ; + sc:license "GPL-1.0" ; + sc:name "distAngsd" ; + sc:url "https://github.com/lz398/distAngsd" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_2814, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9019949", + "pubmed:35439931" ; + sc:description "Prediction of the quality of single protein model using deep learning and residue-residue distance maps" ; + sc:featureList edam:operation_0477, + edam:operation_3092, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DISTEMA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/jianlin-cheng/DISTEMA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -172504,7 +169052,7 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "http://deep.cs.umsl.edu/disteval/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -172528,22 +169076,18 @@ Description :This page includes the codes of DisoFun which are implemented and t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3110" ; - sc:name "Raw microarray data" ; - sc:sameAs "http://edamontology.org/data_3110" ], + sc:additionalType "http://edamontology.org/data_3110" ; + sc:name "Raw microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:name "Sequence motif (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3308 ; @@ -172560,7 +169104,7 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "http://bioinformatics.intec.ugent.be/kmarchal/Supplementary_Information_Lemmens_2008/Index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -172575,7 +169119,7 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "https://github.com/SimoneTiberi/distinct" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -172595,14 +169139,12 @@ Description :This page includes the codes of DisoFun which are implemented and t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0870" ; - sc:name "Sequence distance matrix" ; - sc:sameAs "http://edamontology.org/data_0870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0870" ; + sc:name "Sequence distance matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -172632,7 +169174,7 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "http://emboss.open-bio.org/rel/rel6/apps/distmat.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3303, @@ -172654,7 +169196,7 @@ Description :This page includes the codes of DisoFun which are implemented and t biotools:primaryContact "Simon Anders" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -172679,7 +169221,7 @@ Description :This page includes the codes of DisoFun which are implemented and t biotools:primaryContact "DISULFIND Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1317 ; sc:author "Bonvin Lab" ; @@ -172719,7 +169261,7 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "http://milou.science.uu.nl/services/DISVIS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0637, @@ -172735,7 +169277,7 @@ Description :This page includes the codes of DisoFun which are implemented and t biotools:primaryContact "Bernhard Y. Renard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -172753,7 +169295,7 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "https://github.com/XS-Wang-Lab/DITHER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -172776,7 +169318,7 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "https://github.com/xuechunxu/DiTing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -172793,7 +169335,7 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "https://bioconductor.org/packages/dittoSeq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -172808,7 +169350,7 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "http://Diurnal.plant.tools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3318, edam:topic_3382 ; @@ -172823,7 +169365,7 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:url "https://diva.pasteur.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -172837,8 +169379,71 @@ Description :This page includes the codes of DisoFun which are implemented and t sc:name "DivBiclust" ; sc:url "https://www.github.com/Qiong-Fang/DivBiclust" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Sequence features" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Plug-in", + "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0092, + edam:topic_0199, + edam:topic_0622, + edam:topic_3056 ; + sc:author ; + sc:description "DivBrowse is a web application for interactive visualization and exploratory analysis of genomic diversity data stored in Variant Call Format (VCF) files of any size. By seamlessly combining BLAST as an entry point together with interactive data analysis features such as principal component analysis in one graphical user interface, DivBrowse provides a novel and unique set of exploratory data analysis capabilities for genomic biodiversity datasets. The capability to integrate DivBrowse into existing web applications supports interoperability between different web applications. Built-in interactive computation of principal component analysis allows users to perform ad-hoc analysis of the population structure based on specific genetic elements such as genes and exons. Data interoperability is supported by the ability to export genomic diversity data in VCF and General Feature Format (GFF3) files." ; + sc:featureList edam:operation_0361, + edam:operation_2939 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DivBrowse" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:provider ; + sc:softwareHelp ; + sc:softwareVersion "1.0.0" ; + sc:url "https://divbrowse.ipk-gatersleben.de" ; + biotools:primaryContact , + . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2259, + edam:topic_3299, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8936491", + "pubmed:35312734" ; + sc:description "DiVil is a javascript based tool that produces interactive graphs" ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3927 ; + sc:license "Apache-2.0" ; + sc:name "DiVil" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://divil.bio.informatik.uni-rostock.de" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -172865,7 +169470,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "https://github.com/niu-lab/DIVIS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0769, @@ -172888,8 +169493,30 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "https://diyabc.github.io" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal", + "Database portal" ; + sc:applicationSubCategory edam:topic_0821, + edam:topic_3068, + edam:topic_3314, + edam:topic_3474, + edam:topic_3510 ; + sc:citation , + "pubmed:35032097" ; + sc:description "DiZyme open access resource for quantitative prediction of nanozyme catalytic activity" ; + sc:featureList edam:operation_2575, + edam:operation_3659, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "DiZyme" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://dizyme.net" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3314, @@ -172907,7 +169534,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "https://djmolprogram.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3474 ; @@ -172925,7 +169552,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana biotools:primaryContact "Jeffrey T. Leek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3360, @@ -172941,8 +169568,49 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:name "DKT" ; sc:url "https://github.com/mrazvan22/dkt" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0621, + edam:topic_3170, + edam:topic_3474 ; + sc:citation , + "pubmed:35857733" ; + sc:description "DL-m6A: Identification of N6-methyladenosine Sites in Mammals using deep learning based on different encoding schemes" ; + sc:featureList edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "DL-m6A" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://nsclbio.jbnu.ac.kr/tools/DL-m6A/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0654, + edam:topic_3295, + edam:topic_3390, + edam:topic_3474, + edam:topic_3674 ; + sc:citation , + "pmcid:PMC8630850", + "pubmed:34847877" ; + sc:description "A hybrid DL-ML approach that uses a deep neural network for extracting features and a non-DL classifier for classification tasks." ; + sc:featureList edam:operation_0417, + edam:operation_3809, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:name "DL-ML-Hybrid" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/skinnerlab/DL-ML-Hybrid" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3068, @@ -172959,7 +169627,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "http://sinc.unl.edu.ar/web-demo/dl4papers/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2830, @@ -172979,7 +169647,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "https://github.com/oxpig/dlab-public" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3384, @@ -173002,7 +169670,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "https://github.com/jeremiahws/dlae" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation , @@ -173016,7 +169684,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "https://cran.r-project.org/package=dLagM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2830, @@ -173032,7 +169700,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "http://ccb1.bmi.ac.cn:81/dlbepitope/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_3520, @@ -173047,8 +169715,43 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:name "DLEAMSE" ; sc:url "https://github.com/bigbio/DLEAMSE/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_2269, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9252827", + "pubmed:35552439" ; + sc:description "A web application for building deep learning models in biological research." ; + sc:featureList edam:operation_3927, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DLEB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://dleb.konkuk.ac.kr/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0601, + edam:topic_3474 ; + sc:citation , + "pubmed:35945138" ; + sc:description "A multi-module deep learning framework for prediction of S-sulfinylation sites in proteins." ; + sc:featureList edam:operation_0417, + edam:operation_3937 ; + sc:license "Not licensed" ; + sc:name "DLF-Sul" ; + sc:url "https://github.com/ningq669/DLF-Sul" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3318, edam:topic_3474 ; @@ -173064,7 +169767,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "https://github.com/wame-ng/DLFF-ACP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -173078,7 +169781,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "http://bioinf.scmb.uq.edu.au/dlocalmotif/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0081, @@ -173094,7 +169797,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "https://github.com/kuangmeng/DLPAlign" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application", "Workbench" ; @@ -173118,8 +169821,21 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana "Windows" ; sc:url "http://jianglab.org.cn/DLpTCR/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3384, + edam:topic_3444, + edam:topic_3452 ; + sc:citation , + "pubmed:35839185" ; + sc:description "Dynamic Learning Rate for Test-time Adaptation on Cross-domain Medical Images." ; + sc:license "Not licensed" ; + sc:name "DLTTA" ; + sc:url "https://github.com/med-air/DLTTA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0611, @@ -173136,7 +169852,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana biotools:primaryContact "Robert McLeod" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0749, edam:topic_3512 ; @@ -173151,7 +169867,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "http://dm3loc.lin-group.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0102, @@ -173168,7 +169884,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "https://qzhan321.github.io/dmatch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168 ; @@ -173185,7 +169901,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana biotools:primaryContact "Farhad Shokoohi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Ontology" ; sc:applicationSubCategory edam:topic_0610 ; @@ -173197,7 +169913,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "https://CRAN.R-project.org/package=dmdScheme" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0199, @@ -173218,7 +169934,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana biotools:primaryContact "Shiwen Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295 ; @@ -173234,7 +169950,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "http://sourceforge.net/projects/dmeas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:description "DMF (Dragon Motif Finder) is a simple ab-initio motif finding tool that allows the processing of relatively large sequence sets in a relatively short amount of time on the web." ; @@ -173245,7 +169961,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "http://www.cbrc.kaust.edu.sa/dmf/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -173263,7 +169979,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "http://www.sdu-idea.cn/codes.php?name=DMIL-Isofun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -173288,8 +170004,21 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "http://csbl.bmb.uga.edu/DMINDA/" ; biotools:primaryContact "Contact Form" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "DMKPred is a SVM based webserver for the prediction of binding of chemical molecules with specific kinases. Here user can paste or upload the molecular descriptors off chemical molecules and our prediction method calculate the binding of these chemical with protein kinases." ; + sc:featureList edam:operation_2945 ; + sc:name "dmkpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/dmkpred/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0140, @@ -173305,8 +170034,56 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:name "DMLDA-LocLIFT" ; sc:url "https://github.com/QUST-AIBBDRC/DMLDA-LocLIFT/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workbench", + "Workflow" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3303, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8982054", + "pubmed:35386855" ; + sc:description "A dual-stream marker-guided network (DMNet) for segmentation of touching cells in microscopy videos of many cell types." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DMNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://celltrackingchallenge.net/participants/MU-Ba-US/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9044264", + "pubmed:35494810" ; + sc:description "Densely Connected Multi-scale Pyramid Network (DMPNet) for count estimation and the generation of high-quality density maps." ; + sc:featureList edam:operation_3937 ; + sc:license "Not licensed" ; + sc:name "DMPNet" ; + sc:url "https://github.com/lpfworld/DMPNet" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "Dmppred: Prediction of T1DM associated peptides" ; + sc:featureList edam:operation_2945 ; + sc:name "dmppred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/dmppred/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -173324,18 +170101,18 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_1920" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1017" ; - sc:name "Sequence range" ; - sc:sameAs "http://edamontology.org/data_1017" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2078" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1017" ; + sc:encodingFormat "http://edamontology.org/format_2078" ; + sc:name "Sequence range" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0160, @@ -173354,7 +170131,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana biotools:primaryContact "Nicolae Radu Zabet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0654, @@ -173374,7 +170151,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana biotools:primaryContact "Tim Peters" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -173394,18 +170171,18 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_1920" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0160, @@ -173428,7 +170205,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3673 ; @@ -173445,7 +170222,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana biotools:primaryContact "Christian M Page" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085, edam:topic_3168, @@ -173468,7 +170245,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana biotools:primaryContact "Keegan Korthauer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -173482,7 +170259,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "https://dms-view.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation ; @@ -173496,7 +170273,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056, edam:topic_3517 ; @@ -173512,7 +170289,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "http://dmu.agrsci.dk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workbench" ; sc:applicationSubCategory edam:topic_0078, @@ -173530,7 +170307,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "https://jun-csbio.github.io/DMVFL-RSA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3382, @@ -173546,7 +170323,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "https://github.com/SPOClab-ca/dn3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3316, edam:topic_3673 ; @@ -173563,7 +170340,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "https://www.fda.gov/science-research/bioinformatics-tools/de-novo-assembly-quality-evaluation-tool-dnaqet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0632, @@ -173577,7 +170354,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "http://dna.engr.uconn.edu/?page_id=23" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3293, @@ -173597,7 +170374,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana biotools:primaryContact "Tung Hoang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -173613,7 +170390,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana sc:url "https://github.com/Edinburgh-Genome-Foundry/DnaFeaturesViewer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3344, @@ -173631,7 +170408,7 @@ DIVIS, an easy-to-use, extensible, and customisable cancer genome sequencing ana biotools:primaryContact "Robert Bemis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0654, @@ -173649,7 +170426,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "https://github.com/reinhardh/dna_rs_coding" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, @@ -173664,7 +170441,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "https://github.com/Global-Biofoundries-Alliance/DNA-scanner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -173679,7 +170456,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "http://i.uestc.edu.cn/DNA4mC-LIP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0780, edam:topic_3295, @@ -173696,7 +170473,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "http://home.jbnu.ac.kr/NSCL/DNA6mA-MINT.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3175 ; sc:description "Tool for manual and automatic sequence assembly, analysis, editing, sample processing, metadata integration, file format conversion and mutation detection." ; @@ -173709,7 +170486,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th biotools:primaryContact "DnaBaser Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Windows Explorer clone dedicated to DNA sequence analysis and manipulation." ; @@ -173721,7 +170498,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th biotools:primaryContact "DNA Chromatogram explorer support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -173737,7 +170514,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "http://www.dna-software.co.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175, edam:topic_3295 ; @@ -173755,7 +170532,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th biotools:primaryContact "Nils Homer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3168 ; @@ -173770,7 +170547,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th biotools:primaryContact "Wiktor Kuśmirek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3382, @@ -173792,7 +170569,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "http://dnaasm.sourceforge.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -173812,7 +170589,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th biotools:primaryContact "Tilo Buschmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0749, @@ -173832,8 +170609,24 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:name "DNABERT" ; sc:url "https://github.com/jerryji1993/DNABERT" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC2216048", + "pubmed:18042272" ; + sc:description "DNAbinder is a webserver developed for predicting DNA-binding proteins from their amino acid sequence using various compositional features of proteins. The SVM models have been developed on following datasets using following protein features." ; + sc:featureList edam:operation_2945 ; + sc:name "dnabinder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/dnabinder/developers.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0654, @@ -173850,7 +170643,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th biotools:primaryContact "DNABINDPROT Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -173864,7 +170657,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "http://dnaclust.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -173881,8 +170674,50 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "http://bioconductor.org/packages/release/bioc/html/DNAcopy.html" ; biotools:primaryContact "Venkatraman E. Seshan" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0621, + edam:topic_0749, + edam:topic_3169, + edam:topic_3176 ; + sc:citation , + "pmcid:PMC8989542", + "pubmed:35288750" ; + sc:description "A deep learning tool for DNA cyclizability prediction." ; + sc:featureList edam:operation_0432, + edam:operation_0445, + edam:operation_3795 ; + sc:isAccessibleForFree true ; + sc:name "DNAcycP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://DNAcycP.stats.northwestern.edu" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0749, + edam:topic_3169, + edam:topic_3295, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9458447", + "pubmed:36018808" ; + sc:description "A machine-learning approach to predict DNA binding affinities of transcription factors" ; + sc:featureList edam:operation_0445, + edam:operation_2476, + edam:operation_2575 ; + sc:license "Not licensed" ; + sc:name "DNAffinity" ; + sc:url "https://github.com/Jalbiti/DNAffinity" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -173904,8 +170739,21 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th "Windows" ; sc:url "http://biomine.cs.vcu.edu/servers/DNAgenie/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "Prediction of DNA Interacting Residues" ; + sc:featureList edam:operation_2945 ; + sc:name "dnaint" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/dnaint/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0654 ; @@ -173921,8 +170769,26 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "http://melolab.org/dnaMATE/" ; biotools:primaryContact "Francisco Melo Ledermann" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_3295, + edam:topic_3474 ; + sc:author ; + sc:contributor ; + sc:description "Source code for paper \"Disease classification for whole blood DNA methylation: meta-analysis, missing values imputation, and XAI\" by A. Kalyakulina, I. Yusipov, M.G. Bacalini, C. Franceschi, M. Vedunova, M. Ivanchenko." ; + sc:featureList edam:operation_3206, + edam:operation_3207 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DNAmClassMeta" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/GillianGrayson/DNAmClassMeta" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -173942,7 +170808,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0154, @@ -173960,7 +170826,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "https://www.genesilico.pl/DNAmoreDB/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -173977,7 +170843,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "http://bioapp.psych.uic.edu/DNannotator.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -173993,7 +170859,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "http://www.sanger.ac.uk/science/tools/dnaplotter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3068, @@ -174011,14 +170877,12 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation ; @@ -174035,7 +170899,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th biotools:primaryContact "Bohdan Schneider" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, edam:topic_3474 ; @@ -174048,7 +170912,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "https://github.com/MBoemo/DNAscent" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:23118738" ; @@ -174064,7 +170928,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th biotools:primaryContact "Pedro Madrigal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0654, @@ -174081,10 +170945,9 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:name "DNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3125 ; sc:citation ; @@ -174100,7 +170963,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th biotools:primaryContact "Anthony Mathelier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0082, @@ -174119,8 +170982,21 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "http://bioconductor.org/packages/release/bioc/html/DNAshapeR.html" ; biotools:primaryContact "Tsu-Pei Chiu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "This web-server allow to compute the length of DNA or protein fragments from its electropheric mobility using a graphical method. It is based on computer program DNASIZE" ; + sc:featureList edam:operation_2945 ; + sc:name "dnasize" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/dnasize/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -174140,14 +171016,14 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1464" ; - sc:name "DNA structure" ; - sc:sameAs "http://edamontology.org/data_1464" ] ; + sc:additionalType "http://edamontology.org/data_1464" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "DNA structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0889" ; - sc:name "Structural profile" ; - sc:sameAs "http://edamontology.org/data_0889" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0889" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Structural profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0097, @@ -174178,7 +171054,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th "Jiří Černý" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0199, @@ -174205,7 +171081,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th biotools:primaryContact "Sándor Pongor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -174227,7 +171103,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th biotools:primaryContact "Joanna Krwawicz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0108, @@ -174246,7 +171122,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th biotools:primaryContact "Alexander Wallar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0654, @@ -174263,7 +171139,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th biotools:primaryContact "Giuseppe Cardillo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3071 ; @@ -174281,8 +171157,29 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th biotools:primaryContact "Chen Li", "Xiaohui Xie" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0196, + edam:topic_0821, + edam:topic_3068 ; + sc:citation , + "pubmed:35446426" ; + sc:description "DNAzymeBuilder is a web application enabling the in situ choice and assembly of DNA- and RNA-cleaving DNAzymes." ; + sc:featureList edam:operation_0310, + edam:operation_2421, + edam:operation_3795 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DNAzymeBuilder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://iimcb.genesilico.pl/DNAzymeBuilder" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -174298,7 +171195,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "https://psychgen.u.hpc.mssm.edu/dnenrich/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3382, @@ -174312,7 +171209,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "https://github.com/amin-nejat/dNMF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3474, @@ -174329,7 +171226,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "https://github.com/yongzhuang/DNMFilter_Indel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0121, @@ -174348,7 +171245,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "https://github.com/savastakan/dnmso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_0632, @@ -174365,7 +171262,7 @@ For the inner code we decide on a symbol size mi of 6 bit, for the outer code th sc:url "https://github.com/BNUCNL/dnnbrain" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0621, @@ -174382,8 +171279,46 @@ A deep neural network model to predict restricted mean survival time.""" ; sc:name "DnnRMST" ; sc:url "http://github.com/lilizhaoUM/DnnRMST" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_2640, + edam:topic_3300, + edam:topic_3407, + edam:topic_3912 ; + sc:citation , + "pmcid:PMC8728230", + "pubmed:34643700" ; + sc:description "A manually curated database of experimentally determined dNTP pools and pool changes in biological samples." ; + sc:featureList edam:operation_0362, + edam:operation_0558, + edam:operation_2422, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "dNTPpoolDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://dntppool.org/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:35594231" ; + sc:description "DO-Conv is a depthwise over-parameterized convolutional layer, which can be used as a replacement of conventional convolutional layer in CNNs in the training phase to achieve higher accuracies." ; + sc:featureList edam:operation_3443, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DO-Conv" ; + sc:url "https://github.com/yangyanli/DO-Conv" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0176, @@ -174404,7 +171339,7 @@ A deep neural network model to predict restricted mean survival time.""" ; biotools:primaryContact "Rajendra Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0736, @@ -174425,7 +171360,7 @@ A deep neural network model to predict restricted mean survival time.""" ; biotools:primaryContact "Tal Shay" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_0196, @@ -174447,7 +171382,7 @@ The dockNmine portal aims at gathering public and private data into a unique ser sc:url "http://www.ufip.univ-nantes.fr/tools/docknmine/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, @@ -174465,7 +171400,7 @@ The dockNmine portal aims at gathering public and private data into a unique ser sc:url "https://covirus.cc/drugs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -174485,7 +171420,7 @@ The dockNmine portal aims at gathering public and private data into a unique ser sc:url "https://github.com/rochoa85/dockECR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:author ; @@ -174503,8 +171438,28 @@ docker4seq R package contains all the R functions required to handle all the ste sc:url "https://github.com/kendomaniac/docker4seq" ; biotools:primaryContact "Raffaele Calogero" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2275, + edam:topic_3336 ; + sc:citation , + "pubmed:35792827" ; + sc:description "DockingPie is a plugin of the popular molecular graphics system PyMOL that offers a versatile and user-friendly graphical user interface for assisting molecular and consensus docking analyses." ; + sc:featureList edam:operation_0482, + edam:operation_3899, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DockingPie" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/paiardin/DockingPie" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3047, @@ -174529,7 +171484,7 @@ Automatization for adsorbing molecules on surfaces and screening the different a sc:url "https://gitlab.com/lch_interfaces/dockonsurf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -174549,7 +171504,7 @@ Automatization for adsorbing molecules on surfaces and screening the different a biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal" ; sc:applicationSubCategory edam:topic_0091, @@ -174569,8 +171524,30 @@ Automatization for adsorbing molecules on surfaces and screening the different a sc:softwareHelp ; sc:url "https://dockstore.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2275, + edam:topic_3336, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8596819", + "pubmed:34789335" ; + sc:description "A docking wrapper to enhance de novo molecular design." ; + sc:featureList edam:operation_0478, + edam:operation_3935, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "DockStream" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/MolecularAI/DockStream" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -174585,20 +171562,8 @@ Automatization for adsorbing molecules on surfaces and screening the different a sc:name "DockThor-VS" ; sc:url "http://www.dockthor.lncc.br" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0176, - edam:topic_3314, - edam:topic_3489 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Phenix', 'restraints', 'Amber', 'refinement' | Improved chemistry restraints for crystallographic refinement by integrating the Amber force field into Phenix | Word templates and tools for Windows | The IUCr Word templates utilize the content management features and document styles of Word to format your manuscript and to store essential details for submission of your manuscript" ; - sc:featureList edam:operation_0249, - edam:operation_0322, - edam:operation_3431 ; - sc:name "docxtemplate" ; - sc:url "http://journals.iucr.org/services/docxtemplate/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -174615,7 +171580,7 @@ Automatization for adsorbing molecules on surfaces and screening the different a sc:url "https://github.com/Elysheba/DO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:description "Dodona is a free online exercise platform for learning to code. It wants to teach students how to program in the most meaningful and effective way possible, by using different techniques to apply the advantages of personalized coaching in contexts where students usually only have access to traditional coaching (e.g. lectures or exercise sessions) or even no coaching at all (e.g. independent learning or homework)." ; sc:name "Dodona" ; @@ -174624,7 +171589,7 @@ Automatization for adsorbing molecules on surfaces and screening the different a sc:url "https://dodona.ugent.be" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -174645,7 +171610,7 @@ Automatization for adsorbing molecules on surfaces and screening the different a biotools:primaryContact "I.V. Grigoriev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -174666,7 +171631,7 @@ Automatization for adsorbing molecules on surfaces and screening the different a biotools:primaryContact "Doelan Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -174687,7 +171652,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "https://github.com/clicumu/doepipeline" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3325, @@ -174707,18 +171672,18 @@ Optimize your data processing pipelines with doepipeline. The optimization strat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2878" ; - sc:name "Protein structural motif" ; - sc:sameAs "http://edamontology.org/data_2878" ], + sc:additionalType "http://edamontology.org/data_0897" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0897" ; - sc:name "Protein property" ; - sc:sameAs "http://edamontology.org/data_0897" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2878" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structural motif" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3474, edam:topic_3534 ; @@ -174736,14 +171701,14 @@ Optimize your data processing pipelines with doepipeline. The optimization strat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1070" ; - sc:name "Structure ID" ; - sc:sameAs "http://edamontology.org/data_1070" ] ; + sc:additionalType "http://edamontology.org/data_1070" ; + sc:encodingFormat "http://edamontology.org/format_1475" ; + sc:name "Structure ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3128" ; - sc:name "Nucleic acid structure report" ; - sc:sameAs "http://edamontology.org/data_3128" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3128" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0654, edam:topic_1317 ; @@ -174768,7 +171733,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat "Petr Cech" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0769, @@ -174780,7 +171745,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "https://dolphinnext.umassmed.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0218, @@ -174795,7 +171760,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "https://github.com/damianosmel/dom2vec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -174813,7 +171778,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "http://casp.rnet.missouri.edu/domac.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -174829,7 +171794,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "http://www.ibi.vu.nl/programs/domainationwww/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:description "DomainFinder is an interactive program for the determination and characterization of dynamical domains in proteins. Its key features are" ; @@ -174843,7 +171808,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "http://dirac.cnrs-orleans.fr/plone/Members/hinsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation , @@ -174858,22 +171823,22 @@ Optimize your data processing pipelines with doepipeline. The optimization strat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1355" ; - sc:name "Protein signature" ; - sc:sameAs "http://edamontology.org/data_1355" ], + sc:additionalType "http://edamontology.org/data_1355" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein signature" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1904" ; - sc:name "Locus ID (EntrezGene)" ; - sc:sameAs "http://edamontology.org/data_1904" ] ; + sc:additionalType "http://edamontology.org/data_1904" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Locus ID (EntrezGene)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0736, @@ -174893,7 +171858,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat biotools:primaryContact "Florian Hahne" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0601, edam:topic_0623, @@ -174911,8 +171876,28 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "https://uhrigprotools.biology.ualberta.ca/domainviz" ; biotools:primaryContact "R Glen Uhrig" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0749, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8743893", + "pubmed:35000444" ; + sc:description "DomArchive is a data package compiling dominance interaction data published over a century of research. The goal of the package is to facilitate comparative research on the structure and function of dominance hierarchies." ; + sc:featureList edam:operation_0310, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DomArchive" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/DomArchive/DomArchive" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0602, @@ -174927,7 +171912,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "https://rubygems.org/gems/DomFun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -174947,7 +171932,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat biotools:primaryContact "Raja Jothi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3360 ; @@ -174964,8 +171949,27 @@ Optimize your data processing pipelines with doepipeline. The optimization strat biotools:primaryContact , "A. Sánchez-Gracia" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9004647", + "pubmed:35139202" ; + sc:description "The DOMINO web-server for active module identification analysis." ; + sc:featureList edam:operation_1781, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:name "DOMINO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://domino.cs.tau.ac.il" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0199, @@ -174986,7 +171990,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat "Peter Blattmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -175008,8 +172012,47 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "http://orion.rnet.missouri.edu/~nz953/DOMMINO/" ; biotools:primaryContact "Dmitry Korkin" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "DisOrdered Regions LOCation in proteins" ; + sc:featureList edam:operation_2945 ; + sc:name "dorlok" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/dorlok/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "Domprint is a domain-domain interaction (DDI) prediction server. It runs on a support vector machine (SVM) model which has been trained on known domain-domain interaction data (positive dataset) from 3did database. All the DDI in 3did are curated from crystal structures available in Protein Data Bank (PDB). We used a highly curated negative dataset for model training." ; + sc:name "domprint" ; + sc:url "https://webs.iiitd.edu.in/raghava/domprint/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0780, + edam:topic_3068, + edam:topic_3071, + edam:topic_3810 ; + sc:citation , + "pubmed:35754095" ; + sc:description "The Database of Pollinator Interactions (DoPI) documents British pollinator-plant associations." ; + sc:license "Not licensed" ; + sc:name "DoPI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://www.dopi.org.uk/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -175027,7 +172070,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat biotools:primaryContact "Levi Waldron" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -175050,14 +172093,14 @@ Optimize your data processing pipelines with doepipeline. The optimization strat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2099" ; - sc:name "Name" ; - sc:sameAs "http://edamontology.org/data_2099" ] ; + sc:additionalType "http://edamontology.org/data_2099" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0204 ; @@ -175079,7 +172122,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -175099,26 +172142,26 @@ Optimize your data processing pipelines with doepipeline. The optimization strat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ], + sc:additionalType "http://edamontology.org/data_2295" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ] ; + sc:additionalType "http://edamontology.org/data_0582" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3063, @@ -175140,7 +172183,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3374 ; sc:description "Function to fit a dose-response data to a 4 parameter dose-response curve." ; @@ -175154,7 +172197,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat biotools:primaryContact "Carlos Evangelista" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3336, @@ -175171,7 +172214,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "http://www.DosePredict.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3070, @@ -175189,14 +172232,14 @@ Optimize your data processing pipelines with doepipeline. The optimization strat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3375, @@ -175216,7 +172259,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat biotools:primaryContact "Tõnis Tasa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3308, edam:topic_3382 ; @@ -175231,7 +172274,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "https://github.com/LieberInstitute/dotdotdot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0203, @@ -175252,22 +172295,18 @@ Optimize your data processing pipelines with doepipeline. The optimization strat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0862" ; - sc:name "Dotplot" ; - sc:sameAs "http://edamontology.org/data_0862" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0862" ; + sc:name "Dotplot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -175297,7 +172336,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "http://emboss.open-bio.org/rel/rel6/apps/dotmatcher.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -175313,18 +172352,15 @@ Optimize your data processing pipelines with doepipeline. The optimization strat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0862" ; - sc:name "Dotplot" ; - sc:sameAs "http://edamontology.org/data_0862" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0862" ; + sc:name "Dotplot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -175356,14 +172392,12 @@ Optimize your data processing pipelines with doepipeline. The optimization strat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2161" ; - sc:name "Sequence similarity plot" ; - sc:sameAs "http://edamontology.org/data_2161" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2161" ; + sc:name "Sequence similarity plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -175380,18 +172414,15 @@ Optimize your data processing pipelines with doepipeline. The optimization strat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0862" ; - sc:name "Dotplot" ; - sc:sameAs "http://edamontology.org/data_0862" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0862" ; + sc:name "Dotplot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -175422,7 +172453,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "http://emboss.open-bio.org/rel/rel6/apps/dottup.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Displays a wordmatch dotplot of two sequences." ; @@ -175436,7 +172467,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "http://genius.embnet.dkfz-heidelberg.de/menu/hobit/embdoc/dottup.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -175451,7 +172482,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "https://github.com/nle-sztyler/research-doubler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3293, @@ -175467,7 +172498,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "https://doublerecviz.cobius.usherbrooke.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0625, @@ -175487,7 +172518,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat sc:url "https://github.com/elkebir-group/doubletD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0157, @@ -175508,7 +172539,7 @@ Optimize your data processing pipelines with doepipeline. The optimization strat biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -175530,7 +172561,7 @@ Dove evaluates computational protein-protein docking models by 8 deep learning n sc:url "http://kiharalab.org/dove/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Downloads an image and updates an openDS object with the filesystem location" ; sc:featureList edam:operation_1812 ; sc:license "Apache-2.0" ; @@ -175539,7 +172570,7 @@ Dove evaluates computational protein-protein docking models by 8 deep learning n sc:url "http://sdr.nhm.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2830, @@ -175555,7 +172586,7 @@ Dove evaluates computational protein-protein docking models by 8 deep learning n sc:url "https://bitbucket.org/kleinstein/dowser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:citation , "pubmed:32853153" ; @@ -175567,7 +172598,7 @@ Dove evaluates computational protein-protein docking models by 8 deep learning n sc:url "https://github.com/jyh-learning/DP-GLPCA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3382 ; @@ -175579,7 +172610,7 @@ Dove evaluates computational protein-protein docking models by 8 deep learning n sc:url "https://sites.google.com/site/imagecrowdseg/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0749, @@ -175600,8 +172631,28 @@ Dove evaluates computational protein-protein docking models by 8 deep learning n "Windows" ; sc:url "https://github.com/KristapsE/DP4-AI" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_2269, + edam:topic_3047, + edam:topic_3316 ; + sc:citation , + "pmcid:PMC8943899", + "pubmed:35432857" ; + sc:description "The DP5 probability, quantification and visualisation of structural uncertainty in single molecules." ; + sc:featureList edam:operation_0320, + edam:operation_0337, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DP5" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/Goodman-lab/DP5" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0736, @@ -175616,7 +172667,7 @@ Dove evaluates computational protein-protein docking models by 8 deep learning n sc:url "https://gitlab.com/ETRu/dpcfam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3168, @@ -175630,7 +172681,7 @@ Dove evaluates computational protein-protein docking models by 8 deep learning n sc:url "https://github.com/BDanalysis/dpCNV/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0176, @@ -175647,7 +172698,7 @@ Dove evaluates computational protein-protein docking models by 8 deep learning n sc:url "https://github.com/alisn72/DPCT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; @@ -175658,7 +172709,7 @@ Dove evaluates computational protein-protein docking models by 8 deep learning n sc:url "https://github.com/Deng-Y/DPCTF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -175676,7 +172727,7 @@ Dove evaluates computational protein-protein docking models by 8 deep learning n sc:url "https://github.com/NWPU-903PR/DPDDI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3263, @@ -175692,7 +172743,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "https://github.com/jma78/DPFact" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3308, @@ -175708,7 +172759,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "https://github.com/sxf296/drug_targeting" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3474 ; @@ -175722,8 +172773,45 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:name "DPN-SA" ; sc:url "https://github.com/Shantanu48114860/DPN-SA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0749, + edam:topic_0769, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pubmed:35867364" ; + sc:description "DPProm: A two-layer model combined DPProm-1L and DPProm-2L, named DPProm, for predicting promoters and their types on the whole genomes of phages." ; + sc:featureList edam:operation_0362, + edam:operation_0440, + edam:operation_3937 ; + sc:license "Other" ; + sc:name "DPProm" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://bioinfo.ahu.edu.cn/DPProm" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:18425404" ; + sc:description "DPROT is a PSSM based predictor for the prediction of disordered proteins. A simple two state prediction id done over the query protein." ; + sc:featureList edam:operation_2945 ; + sc:name "dprot" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/dprot/home.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769 ; sc:citation ; @@ -175735,7 +172823,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat biotools:primaryContact "Habiballah Rahimi-Eichi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3336, @@ -175754,30 +172842,27 @@ Tensor factorization has been demonstrated as an efficient approach for computat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1870" ; - sc:name "Genus name" ; - sc:sameAs "http://edamontology.org/data_1870" ], + sc:additionalType "http://edamontology.org/data_2836" ; + sc:name "DPVweb ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2836" ; - sc:name "DPVweb ID" ; - sc:sameAs "http://edamontology.org/data_2836" ], + sc:additionalType "http://edamontology.org/data_1870" ; + sc:name "Genus name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2732" ; - sc:name "Family name" ; - sc:sameAs "http://edamontology.org/data_2732" ] ; + sc:additionalType "http://edamontology.org/data_2732" ; + sc:name "Family name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2530" ; - sc:name "Organism report" ; - sc:sameAs "http://edamontology.org/data_2530" ], + sc:additionalType "http://edamontology.org/data_2530" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Organism report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2530" ; - sc:name "Organism report" ; - sc:sameAs "http://edamontology.org/data_2530" ], + sc:additionalType "http://edamontology.org/data_2530" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Organism report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2530" ; - sc:name "Organism report" ; - sc:sameAs "http://edamontology.org/data_2530" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2530" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Organism report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0780, edam:topic_0781 ; @@ -175793,8 +172878,30 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "http://www.dpvweb.net/" ; biotools:primaryContact "Mike Adams" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3063, + edam:topic_3068, + edam:topic_3372, + edam:topic_3489 ; + sc:citation , + "pmcid:PMC9367129", + "pubmed:35953813" ; + sc:description "A graphical user interface for the MIRACUM data quality assessment tool." ; + sc:featureList edam:operation_0337, + edam:operation_0479, + edam:operation_1812 ; + sc:license "GPL-3.0" ; + sc:name "DQAgui" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/miracum/dqa-dqagui" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3063, @@ -175812,8 +172919,33 @@ Tensor factorization has been demonstrated as an efficient approach for computat "Windows" ; sc:url "https://github.com/miracum/dqa-dqastats" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_0780, + edam:topic_2885 ; + sc:citation , + , + "pmcid:PMC9120062", + "pmcid:PMC9251438", + "pubmed:35576159", + "pubmed:35615028" ; + sc:description "Bulked segregant analysis methods are used to identify various types of quantitative trait loci for complex traits via extreme phenotype individuals in bi-parental segregation populations (F2, backcross, doubled haploid and recombinant inbred line)." ; + sc:featureList edam:operation_0282, + edam:operation_3196, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "dQTG-seq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cran.r-project.org/web/packages/dQTG.seq/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0209, @@ -175829,8 +172961,22 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:name "Dr AFC" ; sc:url "https://www.biosino.org/drafc" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_3382 ; + sc:citation , + "pubmed:35442894" ; + sc:description "Distribution Regularization for Text-to-Image Generation." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DR-GAN" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/Tan-H-C/DR-GAN-Distribution-Regularization-for-Text-to-Image-Generation" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -175850,7 +172996,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Detection of exonic, intronic and intergenic fusion transcripts and their genomic breakpoints in poly(A)+ and rRNA-minus RNA sequencing data" ; sc:featureList edam:operation_0226, edam:operation_0260, @@ -175861,7 +173007,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "https://github.com/yhoogstrate/dr-disco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0659, @@ -175877,7 +173023,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "https://github.com/benliu5085/DRAGoM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2828, edam:topic_3332, @@ -175897,7 +173043,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat biotools:primaryContact "N. Duane Loh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -175916,7 +173062,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -175941,7 +173087,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat biotools:primaryContact "DRAR-CPI Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -175958,7 +173104,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "https://github.com/Roestlab/DrawAlignR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -175979,7 +173125,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat biotools:primaryContact "Andrew Woodward" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053, @@ -175999,7 +173145,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat biotools:primaryContact "Ilya Kirov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_1775 ; @@ -176018,46 +173164,44 @@ Tensor factorization has been demonstrated as an efficient approach for computat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_1016" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence position" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1016" ; - sc:name "Sequence position" ; - sc:sameAs "http://edamontology.org/data_1016" ], + sc:additionalType "http://edamontology.org/data_1176" ; + sc:name "GO concept ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1016" ; - sc:name "Sequence position" ; - sc:sameAs "http://edamontology.org/data_1016" ], + sc:additionalType "http://edamontology.org/data_2563" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Amino acid name (single letter)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2563" ; - sc:name "Amino acid name (single letter)" ; - sc:sameAs "http://edamontology.org/data_2563" ], + sc:additionalType "http://edamontology.org/data_1176" ; + sc:name "GO concept ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2563" ; - sc:name "Amino acid name (single letter)" ; - sc:sameAs "http://edamontology.org/data_2563" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1176" ; - sc:name "GO concept ID" ; - sc:sameAs "http://edamontology.org/data_1176" ], + sc:additionalType "http://edamontology.org/data_1016" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence position" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1176" ; - sc:name "GO concept ID" ; - sc:sameAs "http://edamontology.org/data_1176" ], + sc:additionalType "http://edamontology.org/data_2563" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Amino acid name (single letter)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1622" ; - sc:name "Disease report" ; - sc:sameAs "http://edamontology.org/data_1622" ], + sc:additionalType "http://edamontology.org/data_1622" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Disease report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1622" ; - sc:name "Disease report" ; - sc:sameAs "http://edamontology.org/data_1622" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1622" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Disease report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0123, edam:topic_2640, @@ -176077,8 +173221,28 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "http://snps.biofold.org/drcancer" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_2814, + edam:topic_3474 ; + sc:citation ; + sc:description "A deep dilated convolutional residual network for predicting interchain contacts of protein homodimers." ; + sc:featureList edam:operation_0272, + edam:operation_0474, + edam:operation_2950, + edam:operation_3350, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:name "DRCon" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/jianlin-cheng/DRCon" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0202, edam:topic_2840, @@ -176095,8 +173259,33 @@ Tensor factorization has been demonstrated as an efficient approach for computat "Windows" ; sc:url "https://github.com/albertopessia/drda" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workbench" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2640, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:35339096" ; + sc:description "Dense Residual Dual-shuffle Attention Net (DRDA-Net) : an efficient framework for breast cancer detection. Overall workflow of the proposed framework is shown below-." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DRDA-Net" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/SohamChattopadhyayEE/DRDA-Net" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "Android app for skin disease prediction using deep learning" ; + sc:name "Drderma" ; + sc:url "https://github.com/raghavagps/drderma" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -176114,7 +173303,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "https://dyn.life.nthu.edu.tw/drdock/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_3300, @@ -176126,8 +173315,53 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:softwareHelp ; sc:url "http://ibraindata.com/tools/dream" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2640, + edam:topic_3336, + edam:topic_3512, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC8590212", + "pubmed:34774049" ; + sc:description "A database of experimentally supported protein-coding RNAs and drug associations in human cancer." ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_2436 ; + sc:isAccessibleForFree true ; + sc:name "DREAM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bio-big-data.cn:8080/DREAM" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0154, + edam:topic_0605, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8517002", + "pubmed:34650228" ; + sc:description "Software for data-independent acquisition (DIA) data analysis with deep representation features." ; + sc:featureList edam:operation_3629, + edam:operation_3631, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "DreamDIA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/xmuyulab/DreamDIA-XMBD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -176146,7 +173380,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat "Jiahuai Han" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3342, @@ -176166,7 +173400,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -176183,18 +173417,15 @@ Tensor factorization has been demonstrated as an efficient approach for computat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ], + sc:additionalType "http://edamontology.org/data_1352" ; + sc:name "Regular expression" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1352" ; - sc:name "Regular expression" ; - sc:sameAs "http://edamontology.org/data_1352" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1114" ; - sc:name "Sequence motif identifier" ; - sc:sameAs "http://edamontology.org/data_1114" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1114" ; + sc:name "Sequence motif identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -176225,7 +173456,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "http://emboss.open-bio.org/rel/rel6/apps/dreg.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0621, @@ -176245,8 +173476,21 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "https://dREG.dnasequence.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Web application" ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression profile" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1621" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Pharmacogenomic test report" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web API", + "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, edam:topic_0634, @@ -176255,11 +173499,20 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:description "DREIMT is a bioinformatics tool for hypothesis generation and prioritization of drugs capable of modulating immune cell activity from transcriptomics data." ; sc:featureList edam:operation_0337, edam:operation_2495 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; sc:name "DREIMT" ; - sc:url "http://www.dreimt.org" . + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:provider "BU_CNIO", + "CNIO" ; + sc:softwareVersion "v20200914" ; + sc:url "http://www.dreimt.org" ; + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -176275,7 +173528,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat biotools:primaryContact "Matt Olm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3855 ; @@ -176292,7 +173545,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat biotools:primaryContact "Jing Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -176308,10 +173561,9 @@ Tensor factorization has been demonstrated as an efficient approach for computat a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219 ; sc:citation , @@ -176342,10 +173594,9 @@ Tensor factorization has been demonstrated as an efficient approach for computat a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219 ; sc:citation , @@ -176376,10 +173627,9 @@ Tensor factorization has been demonstrated as an efficient approach for computat a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219 ; sc:citation , @@ -176410,10 +173660,9 @@ Tensor factorization has been demonstrated as an efficient approach for computat a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219 ; sc:citation , @@ -176442,8 +173691,31 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/drfindresource.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0602, + edam:topic_0634, + edam:topic_2640, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC8897886", + "pubmed:35247965" ; + sc:description "DrGA is a novel R package that has been developed based on the idea of our recent driver gene analysis scheme." ; + sc:featureList edam:operation_0314, + edam:operation_3463, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DrGA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/huynguyen250896/DrGA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2830, @@ -176461,14 +173733,12 @@ Tensor factorization has been demonstrated as an efficient approach for computat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -176498,7 +173768,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "http://emboss.open-bio.org/rel/rel6/apps/drget.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3473, edam:topic_3474 ; @@ -176518,7 +173788,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "https://github.com/dmvieira/driftage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0602, @@ -176537,7 +173807,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "http://biohealth.snu.ac.kr/software/DRIM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, edam:topic_3336, @@ -176551,7 +173821,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "https://github.com/linwang1982/DRIMC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3170 ; @@ -176568,7 +173838,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat biotools:primaryContact "Wuming Gong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -176590,7 +173860,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat biotools:primaryContact "Malgorzata Nowicka" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation , @@ -176606,14 +173876,12 @@ Tensor factorization has been demonstrated as an efficient approach for computat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -176624,8 +173892,30 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:softwareVersion "1" ; sc:url "http://www.sbc.su.se/%7Emaccallr/disorder/cgi-bin/submit.cgi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_2229, + edam:topic_3170, + edam:topic_3512, + edam:topic_3520 ; + sc:citation , + "pubmed:35687114" ; + sc:description "R package for the Analysis of Ribosomal RNA Fragments, generally generated by Ribosome Profiling (Ribo-Seq) experiments." ; + sc:featureList edam:operation_0314, + edam:operation_3435, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "dripARF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/fallerlab/ARF" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170 ; sc:description "DrivAER is a method for identification of Driving transcriptional programs based on AutoEncoder derived Relevance scores. DrivAER infers relevance scores for transcriptional programs with respect to specified outcomes of interest in single-cell RNA sequencing data, such as psuedotemporal ordering or disease status." ; @@ -176635,7 +173925,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "https://github.com/lkmklsmn/DrivAER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -176652,7 +173942,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "https://cran.r-project.org/package=driveR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0605, @@ -176669,7 +173959,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "https://github.com/pvvhoang/DriverGroup" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2533, @@ -176689,7 +173979,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat biotools:primaryContact "Jiarui Ding" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0659, @@ -176708,8 +173998,31 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:name "DriverPower" ; sc:url "https://github.com/smshuai/DriverPower" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0602, + edam:topic_0622, + edam:topic_2640, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC9281118", + "pubmed:35831792" ; + sc:description "DriverRWH: discovering cancer driver genes by random walk on a gene mutation hypergraph" ; + sc:featureList edam:operation_0306, + edam:operation_2436, + edam:operation_2454 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DriverRWH" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ShandongUniversityZhanglab/DriverRWH" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -176723,7 +174036,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "https://github.com/abu-compbio/DriveWays" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0121, @@ -176740,7 +174053,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "https://github.com/xkmaxidian/DRjCC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3474, @@ -176757,7 +174070,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat "Zhirong Bao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0804, edam:topic_3071, @@ -176775,7 +174088,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat biotools:primaryContact "Hector Sanz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0128, @@ -176795,7 +174108,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat biotools:primaryContact "DroID Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2814 ; @@ -176815,26 +174128,25 @@ Tensor factorization has been demonstrated as an efficient approach for computat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Gene expression matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_3308 ; @@ -176855,7 +174167,7 @@ Tensor factorization has been demonstrated as an efficient approach for computat sc:url "https://debsinha.shinyapps.io/dropClust/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0749, @@ -176872,7 +174184,7 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files sc:url "http://pypi.org/project/dropkick/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -176891,7 +174203,7 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files sc:url "https://github.com/powellgenomicslab/DropletQC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -176913,7 +174225,7 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files biotools:primaryContact "Aaron Lun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -176935,7 +174247,7 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files biotools:primaryContact "RENAUD Yoan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -176951,8 +174263,17 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files sc:url "http://www.flyreg.org/" ; biotools:primaryContact "Casey Bergman" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:description "DRPBind allows the prediction of DNA, RNA and Protein binding residues in intrinsically disordered proteins." ; + sc:isAccessibleForFree true ; + sc:name "DRPBind" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/roneshsharma/DNA-RNA-Protein-Binding/wiki" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , @@ -176963,7 +174284,7 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files sc:url "https://github.com/sasky1/DPRL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3474 ; @@ -176978,8 +174299,29 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files sc:url "https://github.com/emcoregit/DRPnet" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3384, + edam:topic_3452, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8545269", + "pubmed:34812368" ; + sc:description "Learning Automated COVID-19 Infection Segmentation From Digitally Reconstructed Radiographs." ; + sc:featureList edam:operation_3435, + edam:operation_3553, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DRR4Covid" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/PengyiZhang/DRR4Covid" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0081 ; @@ -176994,7 +174336,7 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files biotools:primaryContact "Geoffrey J. Barton" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3068, @@ -177011,14 +174353,12 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -177048,7 +174388,7 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files sc:url "http://emboss.open-bio.org/rel/rel6/apps/drtext.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3303, @@ -177067,7 +174407,7 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files sc:url "https://drug-herb-interaction.netlify.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3071, @@ -177087,7 +174427,7 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files biotools:primaryContact "Sara Gosline" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -177108,7 +174448,7 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files biotools:primaryContact "Bertram Weiss" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -177126,7 +174466,7 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files sc:url "https://github.com/drug2ways/drug2ways" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -177141,7 +174481,7 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files sc:url "http://github.com/hart-lab/drugz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -177164,7 +174504,7 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files biotools:primaryContact "David S. Wishart" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -177183,16 +174523,34 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files sc:name "DrugCentral" ; sc:url "http://drugcentral.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_2640, + edam:topic_3379, + edam:topic_3577 ; + sc:citation , + "pubmed:35426945" ; + sc:description "A platform for evidence-based drug annotation for genetic variants in cancer" ; + sc:featureList edam:operation_0224 ; + sc:license "Not licensed" ; + sc:name "DrugCVar" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://drugcvar.omicsbio.info" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1566" ; - sc:name "Protein-ligand interaction report" ; - sc:sameAs "http://edamontology.org/data_1566" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1566" ; + sc:name "Protein-ligand interaction report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154, @@ -177214,7 +174572,7 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files biotools:primaryContact "Mark Davies" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0208 ; @@ -177231,8 +174589,32 @@ dropkick works primarily with scanpy's AnnData objects, and accepts input files sc:url "http://www.genomicmedicinealliance.org/working-groups/pharmacogenomics/80-genomic-medicine-alliance/137-drugevar-database" ; biotools:primaryContact "George P Patrinos" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0209, + edam:topic_2258, + edam:topic_3047, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8588612", + "pubmed:34772471" ; + sc:description "Deep learning toolkit for Drug Design with Pareto-based Multi-Objective optimization in Polypharmacology" ; + sc:featureList edam:operation_0269, + edam:operation_0479, + edam:operation_3216, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DrugEx" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/XuhanLiu/DrugEx" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_2640, @@ -177249,7 +174631,7 @@ Machine Learning for druggable protein classifiers.""" ; sc:url "https://github.com/muntisa/machine-learning-for-druggable-proteins" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -177271,7 +174653,7 @@ Machine Learning for druggable protein classifiers.""" ; biotools:primaryContact "Avi Ma’ayan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -177293,7 +174675,7 @@ Machine Learning for druggable protein classifiers.""" ; biotools:primaryContact "Avi Ma’ayan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0208, @@ -177308,7 +174690,7 @@ Machine Learning for druggable protein classifiers.""" ; sc:url "https://github.com/jiangdada1221/DrugOrchestra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Script" ; sc:applicationSubCategory edam:topic_0140, @@ -177330,7 +174712,7 @@ Machine Learning for druggable protein classifiers.""" ; sc:url "https://github.com/labimm/DRUGpy/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0781, @@ -177347,7 +174729,7 @@ Machine Learning for druggable protein classifiers.""" ; biotools:primaryContact "Manoj Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -177364,7 +174746,7 @@ Machine Learning for druggable protein classifiers.""" ; biotools:primaryContact "DrugScore PPI Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -177381,7 +174763,7 @@ Machine Learning for druggable protein classifiers.""" ; sc:url "http://vafaeelab.com/drugSimDB.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -177397,7 +174779,7 @@ Machine Learning for druggable protein classifiers.""" ; sc:url "http://biotecnun.unav.es/app/DrugSniper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, @@ -177415,7 +174797,7 @@ Machine Learning for druggable protein classifiers.""" ; sc:url "https://drugspacex.simm.ac.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3324, edam:topic_3336, @@ -177435,8 +174817,33 @@ Machine Learning for druggable protein classifiers.""" ; sc:name "DrugVirus" ; sc:url "https://drugvirus.info/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3305, + edam:topic_3336, + edam:topic_3373 ; + sc:citation , + "pmcid:PMC9252782", + "pubmed:35610052" ; + sc:description "An integrative data portal for broad-spectrum antivirals (BSA) and BSA-containing drug combinations (BCCs)." ; + sc:featureList edam:operation_0224, + edam:operation_3432, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "DrugVirus.info" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "2.0" ; + sc:url "http://DrugVirus.info" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0202, @@ -177455,7 +174862,7 @@ Machine Learning for druggable protein classifiers.""" ; biotools:primaryContact "j. Saez-Rodriguez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -177477,8 +174884,30 @@ Machine Learning for druggable protein classifiers.""" ; "Windows" ; sc:url "https://github.com/cansyl/DRUIDom" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_3170, + edam:topic_3308, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9154255", + "pubmed:35426900" ; + sc:description "DRUMMER is designed to identify RNA modifications at nucleotide-level resolution on distinct transcript isoforms through the comparative analysis of basecall errors in Nanopore direct RNA sequencing (DRS) datasets." ; + sc:featureList edam:operation_0264, + edam:operation_1812, + edam:operation_3185 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DRUMMER" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/DepledgeLab/DRUMMER" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -177497,7 +174926,7 @@ Machine Learning for druggable protein classifiers.""" ; "Yu-Chieh Liao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2640, @@ -177524,7 +174953,7 @@ dryclean is a robust principal component analysis (rPCA) based method. dryclean sc:url "https://github.com/mskilab/dryclean" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -177543,7 +174972,7 @@ dryclean is a robust principal component analysis (rPCA) based method. dryclean biotools:primaryContact "Charlie Boone" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, @@ -177560,8 +174989,26 @@ dryclean is a robust principal component analysis (rPCA) based method. dryclean sc:softwareHelp ; sc:url "https://github.com/RI-imaging/DryMass" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3382 ; + sc:citation , + "pubmed:34739376" ; + sc:description "Dual-Supervised Mixture of Gaussian Mixture Models for Uncertainty Inference in Image Recognition" ; + sc:featureList edam:operation_0337, + edam:operation_0479 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DS-UI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/PRIS-CV/DS-UI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3421, @@ -177576,7 +175023,7 @@ dryclean is a robust principal component analysis (rPCA) based method. dryclean sc:url "https://dsaas-demo.shinyapps.io/Server/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3308 ; @@ -177591,7 +175038,7 @@ dryclean is a robust principal component analysis (rPCA) based method. dryclean sc:url "http://dsap.cgu.edu.tw" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2229, @@ -177610,7 +175057,7 @@ normalizing and denoising protein expression data from droplet-based single cell sc:url "https://cran.r-project.org/package=dsb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, @@ -177631,8 +175078,27 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data "Windows" ; sc:url "https://github.com/tianguolangzi/DSBS" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_2229, + edam:topic_3170, + edam:topic_3304, + edam:topic_3957 ; + sc:citation , + "pmcid:PMC9364093", + "pubmed:35983234" ; + sc:description "A computational tool to infer cell-cell communication networks in the developing and aging brain." ; + sc:featureList edam:operation_0314, + edam:operation_3432, + edam:operation_3925 ; + sc:license "Not licensed" ; + sc:name "dsCellNet" ; + sc:url "https://github.com/songzh523/dsCellNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -177651,7 +175117,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "http://dscheck.rnai.jp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -177668,8 +175134,23 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/Ming-0113/DSCMF" ; biotools:primaryContact "Ying-Lian Gao" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_0634, + edam:topic_2640 ; + sc:citation , + "pubmed:35984840" ; + sc:description "DSCN (double-target selection guided by CRISPR screening and network), a method that matches expression levels in patients and gene essentialities in cell lines through spectral-clustered protein-protein interaction (PPI) network." ; + sc:featureList edam:operation_3463 ; + sc:license "Not licensed" ; + sc:name "DSCN" ; + sc:url "https://github.com/tzcoolman/DSCN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -177685,7 +175166,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "http://dscope.omicsbio.info" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3382 ; @@ -177699,22 +175180,53 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:name "DscoreApp" ; sc:url "https://github.com/OttaviaE/DscoreApp" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0625, - edam:topic_3174 ; - sc:citation , - "pmcid:PMC6668405", - "pubmed:31366898" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'stressor', 'Daphnia', 'Daphnia stressor database' | Taking advantage of a decade of Daphnia '-omics' data for gene annotation | Welcome to the Daphnia Stressor database" ; - sc:featureList edam:operation_2495, + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0622, + edam:topic_0634, + edam:topic_3407, + edam:topic_3420 ; + sc:citation , + "pubmed:35560008" ; + sc:description "A disorders of sex development atlas for reproductive endocrinology-related gene discovery in integrative omics platforms." ; + sc:featureList edam:operation_0571, edam:operation_3223, - edam:operation_3501 ; - sc:name "dsdbstart" ; - sc:url "http://www.daphnia-stressordb.uni-hamburg.de/dsdbstart.php" . + edam:operation_3431 ; + sc:license "Not licensed" ; + sc:name "DSDatlas" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://dsd.geneworks.cn" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0623, + edam:topic_0632, + edam:topic_0736, + edam:topic_3542 ; + sc:citation , + "pubmed:35230424" ; + sc:description "DSDBASE is a database on disulphide bonds in proteins that provides information on native disulphides and those which are stereochemically possible between pairs of residues in a protein." ; + sc:featureList edam:operation_0224, + edam:operation_0479, + edam:operation_0481, + edam:operation_1850 ; + sc:isAccessibleForFree true ; + sc:name "DSDBASE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "2.0" ; + sc:url "http://caps.ncbs.res.in/dsdbase2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0632, @@ -177725,8 +175237,27 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:name "DSFworld" ; sc:url "https://gestwickilab.shinyapps.io/dsfworld/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3336, + edam:topic_3375 ; + sc:citation , + "pubmed:35043189" ; + sc:description "A tool for predicting frequencies of drug side effects by graph attention networks." ; + sc:featureList edam:operation_2940, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DSGAT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/xxy45/DSGAT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -177743,7 +175274,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data biotools:primaryContact "Zhiyi Qin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0593, @@ -177764,7 +175295,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data biotools:primaryContact "Sik Lok LAM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0634 ; @@ -177784,14 +175315,13 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1261" ; - sc:name "Sequence composition report" ; - sc:sameAs "http://edamontology.org/data_1261" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1261" ; + sc:name "Sequence composition report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -177810,7 +175340,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data "Rayan Chikhi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3174 ; @@ -177826,7 +175356,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/HIITMetagenomics/dsm-framework" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -177844,7 +175374,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "http://cheminfo.tongji.edu.cn/dsp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -177862,7 +175392,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/emdadi/DSPLMF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workbench" ; sc:applicationSubCategory edam:topic_0099, @@ -177880,8 +175410,32 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "http://protdomain.princeton.edu/dsprint" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0097, + edam:topic_0659, + edam:topic_3320, + edam:topic_3512, + edam:topic_3542 ; + sc:citation , + "pubmed:34668517" ; + sc:description "Modeling the effect of RNA secondary structure on double stranded RNA-protein binding." ; + sc:featureList edam:operation_0278, + edam:operation_0502, + edam:operation_2488, + edam:operation_3799, + edam:operation_3901 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "dsRBPBind" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioserv.mps.ohio-state.edu/dsRBPBind" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation "pubmed:21252073" ; @@ -177895,7 +175449,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data biotools:primaryContact "Sebastian Deorowicz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -177913,7 +175467,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/mahan-fcb/DSResSol" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -177935,14 +175489,14 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_1454" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3542 ; @@ -177962,7 +175516,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "http://swift.cmbi.ru.nl/gv/dssp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -177984,7 +175538,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data biotools:primaryContact "Carter P." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0099, @@ -178004,8 +175558,31 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "http://x3dna.org/" ; biotools:primaryContact "Xiang-Jun Lu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3263, + edam:topic_3303 ; + sc:citation , + "pmcid:PMC9166323", + "pubmed:35659747" ; + sc:description "Privacy preserving survival models for federated individual patient meta-analysis in DataSHIELD." ; + sc:featureList edam:operation_3283, + edam:operation_3436, + edam:operation_3503, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "dsSurvival" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/neelsoumya/dsSurvival/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3360 ; sc:citation ; @@ -178018,7 +175595,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/sib-swiss/dsSwissKnife" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0632, @@ -178031,7 +175608,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "http://dstabilize.bii.a-star.edu.sg/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, @@ -178048,13 +175625,13 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/Su-informatics-lab/DSTG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Considering pathological genetic variants within the context of the human interactome network can help understanding the intricate genotype-to-phenotype relationships behind human diseases. It allows, for instance, to distinguish between changes that totally suppress a gene product (i.e. node removal) from the ones that might affect only one of its functions, modulating the way in which the protein interacts with its partners (i.e. edge-specific or edgetic1). dSysMap is a resource for the systematic mapping of disease-related missense mutations on the structurally annotated binary human interactome from Interactome3D." ; sc:name "dSysMap" ; sc:url "http://dsysmap.irbbarcelona.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3308 ; @@ -178073,14 +175650,14 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -178092,7 +175669,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "http://omics.pnl.gov/software/concatenated-dta-mascot-generic-file-mgf-file-converter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2258, edam:topic_2840 ; @@ -178103,7 +175680,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://dtclab.webs.com/software-tools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3298, edam:topic_3336, @@ -178119,7 +175696,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/ZexuanSun/DTF-Drug-Synergy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2269, @@ -178134,7 +175711,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/statway/DTFLOW" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -178149,7 +175726,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/a96123155/DTI-MLCD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -178167,8 +175744,26 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/THinnerichs/DTI-VOODOO" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0202, + edam:topic_3336, + edam:topic_3373 ; + sc:citation , + "pubmed:35777085" ; + sc:description "End-to-end drug-target binding affinity prediction with transformers." ; + sc:featureList edam:operation_2428, + edam:operation_2492, + edam:operation_3436, + edam:operation_3938 ; + sc:license "Not licensed" ; + sc:name "DTITR" ; + sc:url "https://github.com/larngroup/DTITR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2275 ; sc:description "Desktop Molecular Modeller (DTMM) Version 4.2 is a simple-to-use molecular modelling program that enables you to perform powerful molecular synthesis, editing, energy minimizations, and display." ; @@ -178180,7 +175775,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "http://www.polyhedron.com/dtmm-dtmm0html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3474, @@ -178198,7 +175793,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/jic-csb/dtoolai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0218, edam:topic_3473, @@ -178212,7 +175807,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/kaist-dmlab/BioNER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -178232,7 +175827,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data biotools:primaryContact "Priya Aggarwal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -178252,8 +175847,50 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data "Windows" ; sc:url "https://github.com/upei-aqua/DTU-DADS-Aqua" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_3297, + edam:topic_3301, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC8696162", + "pubmed:34957083" ; + sc:description "A web-based tool to assess the dual-use potential of life science research. The aim of the tool is to provide a clear and practical dual-use risk assessment of research concerned and to create dual-use awareness amongst life-science researchers, as explicitly stated in the WHO Benchmarks for International Health Regulations Capacities." ; + sc:featureList edam:operation_3283 ; + sc:isAccessibleForFree true ; + sc:name "Dual-Use Quickscan" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.dualusequickscan.com" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0202, + edam:topic_0209, + edam:topic_2640, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC9011932", + "pubmed:35428192" ; + sc:description "A dual graph convolutional network model to predict cancer drug response. It takes chemical structure information of a drug and gene features of a cancer sample as inputs and outputs IC50." ; + sc:featureList edam:operation_1812, + edam:operation_3891, + edam:operation_3927, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "DualGCN" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/horsedayday/DualGCN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3474 ; @@ -178272,7 +175909,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data "Yarong Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_0199, @@ -178292,7 +175929,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data biotools:primaryContact "Xiaopeng Ma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3047, @@ -178309,7 +175946,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "http://www.tartaglialab.com/dualseq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , @@ -178321,7 +175958,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/JXZe/Learning_DualVD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0085, edam:topic_2259, @@ -178342,7 +175979,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data biotools:primaryContact "Marco Galardini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -178356,7 +175993,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data biotools:primaryContact "Dr. Douglas E. V. Pires" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -178376,7 +176013,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/helxplatform/dug" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3305, @@ -178391,8 +176028,29 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data "Windows" ; sc:url "http://haddock9.sfsu.edu/insight/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0140, + edam:topic_2229, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:34694372" ; + sc:description "This is a deep-learning-based pattern unmixing pipeline for protein subcellular localization to quantitatively estimate the fractions of proteins localizing in different subcellular compartments from immunofluorescence images." ; + sc:featureList edam:operation_2489, + edam:operation_3553, + edam:operation_3630 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DULoc" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/PRBioimages/DULoc" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3304, @@ -178404,7 +176062,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/HectorRDB/Dune" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3382, @@ -178419,7 +176077,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://www.dunescan.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -178440,7 +176098,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://gitlab.dune-project.org/duneuro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -178461,7 +176119,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data biotools:primaryContact "\"Quanhu SHENG\"" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199 ; @@ -178475,7 +176133,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/KorfLab/DupHMM/wiki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170 ; @@ -178495,7 +176153,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -178508,8 +176166,28 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:name "Dupre" ; sc:url "http://bitbucket.org/genomeinformatics/dupre" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0621, + edam:topic_0622, + edam:topic_3299 ; + sc:citation , + "pubmed:36018807" ; + sc:description "DupScan is a database for visualizing and predicting vertebrate synteny and genome duplication." ; + sc:featureList edam:operation_3208 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "DupScan" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://dupscan.sysumeg.com/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0769, @@ -178525,7 +176203,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data sc:url "https://github.com/VCCRI/dv-trio/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3325, @@ -178546,7 +176224,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data biotools:primaryContact "DVD Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Suite" ; sc:applicationSubCategory edam:topic_3303, @@ -178564,7 +176242,7 @@ DSBS analyzer is a pipeline to analyzing Double Strand Bisulfite Sequencing data biotools:primaryContact "Boyoung Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0654, @@ -178587,7 +176265,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio sc:url "https://github.com/edwardslab-wustl/dxm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0166, @@ -178604,7 +176282,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio sc:url "http://www.moreiralab.com/resources/dxr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -178627,7 +176305,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio sc:url "https://github.com/makism/dyconnmap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -178647,7 +176325,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio biotools:primaryContact "Philip Lijnzaad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3314, @@ -178665,7 +176343,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio biotools:primaryContact "Vishwesh Venkatraman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3071, @@ -178684,8 +176362,54 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio "Windows" ; sc:url "https://yanglifen.shinyapps.io/Dynamic_Nomogram_for_Asthma/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0196, + edam:topic_0199, + edam:topic_0203, + edam:topic_0621 ; + sc:citation , + "pmcid:PMC8627211", + "pubmed:34699346" ; + sc:description "A web application for dynamically calculating the codon usage bias in bacterial genomes." ; + sc:featureList edam:operation_0284, + edam:operation_0285, + edam:operation_0489, + edam:operation_2962, + edam:operation_2964 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "Dynamic Codon Biaser" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.cbdb.info" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3305, + edam:topic_3399, + edam:topic_3421 ; + sc:citation , + "pmcid:PMC9279667", + "pubmed:35844853" ; + sc:description "A web-based nomogram for accurately predicting probabilities of overall survival in elderly patients with chondrosarcoma (CHS), which will contribute to personalized survival assessment and clinical management." ; + sc:featureList edam:operation_2428, + edam:operation_3503, + edam:operation_3659 ; + sc:license "Not licensed" ; + sc:name "Dynamic Nomogram" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://nomoresearch.shinyapps.io/elderlywithCHS/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0176, @@ -178707,14 +176431,13 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0123, @@ -178735,7 +176458,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio biotools:primaryContact "Wim Vranken" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3305, @@ -178750,8 +176473,31 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio sc:name "DYNAMITE" ; sc:url "http://github.com/ProsperiLab/DYNAMITE" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0092, + edam:topic_0610, + edam:topic_0749, + edam:topic_3382, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8567714", + "pubmed:34736518" ; + sc:description "An exploratory data visualization software for mapping movement in relation to internal and external factors." ; + sc:featureList edam:operation_0337, + edam:operation_2429, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "DynamoVis" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.github.com/move-ucsb/DynamoVis" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0176, @@ -178772,7 +176518,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio "Dr. Douglas E. V. Pires" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, @@ -178790,7 +176536,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio "Hsueh-Fen Juan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0108, @@ -178807,7 +176553,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio sc:url "http://miracle.igib.res.in/dynavac/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3169, @@ -178825,7 +176571,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio sc:url "http://www.ccb.uni-saarland.de/dynavenn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, @@ -178843,7 +176589,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0219 ; @@ -178861,7 +176607,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0602, @@ -178881,7 +176627,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0602 ; @@ -178900,7 +176646,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio biotools:primaryContact "Hongchun Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3300, edam:topic_3360, @@ -178916,7 +176662,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio sc:url "https://rdrr.io/cran/dynr/man/dynr.mi.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -178930,7 +176676,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio sc:url "https://tianyulu.shinyapps.io/dynUGENE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0204, @@ -178953,7 +176699,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio sc:url "https://github.com/lemonwang2020/DysPIA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -178969,7 +176715,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio sc:url "https://github.com/SCBIT-YYLab/DysRegSig" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -178995,7 +176741,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0202, edam:topic_0634 ; @@ -179010,14 +176756,12 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ], + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:name "DNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation , @@ -179033,7 +176777,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio sc:url "http://www.e-crisp.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -179053,7 +176797,7 @@ DXM performs a local deconvolution of DNA methylation data for one or more regio sc:url "https://github.com/gcostaneto/EGP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3382, @@ -179071,7 +176815,7 @@ Objectives:Human motion analysis can be applied to the diagnosis of musculoskele sc:url "https://github.com/isn350/e_hir_GAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0209, edam:topic_3336 ; @@ -179087,7 +176831,7 @@ Objectives:Human motion analysis can be applied to the diagnosis of musculoskele biotools:primaryContact "Dominique Douguet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -179102,7 +176846,7 @@ Objectives:Human motion analysis can be applied to the diagnosis of musculoskele sc:url "https://github.com/eskederks/eMAGMA-tutorial" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, edam:topic_0602, @@ -179119,7 +176863,7 @@ Objectives:Human motion analysis can be applied to the diagnosis of musculoskele sc:url "https://github.com/lyshaerbin/eMutPath" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3263, @@ -179136,7 +176880,7 @@ Objectives:Human motion analysis can be applied to the diagnosis of musculoskele "Scott J Hebbring" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3263, @@ -179154,7 +176898,7 @@ Objectives:Human motion analysis can be applied to the diagnosis of musculoskele sc:url "https://github.com/mosaic-hgw/E-PIX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3277 ; sc:citation ; @@ -179167,7 +176911,7 @@ Objectives:Human motion analysis can be applied to the diagnosis of musculoskele sc:url "http://derisilab.ucsf.edu/software/epredict/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0092, @@ -179190,7 +176934,7 @@ Objectives:Human motion analysis can be applied to the diagnosis of musculoskele biotools:primaryContact "e-RNA Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0659, @@ -179210,7 +176954,7 @@ Objectives:Human motion analysis can be applied to the diagnosis of musculoskele biotools:primaryContact "E-RNAi Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2640 ; @@ -179228,7 +176972,7 @@ Objectives:Human motion analysis can be applied to the diagnosis of musculoskele biotools:primaryContact "Maia Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0622, @@ -179246,8 +176990,32 @@ Objectives:Human motion analysis can be applied to the diagnosis of musculoskele sc:url "http://www.e-talen.org/E-TALEN/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0128, + edam:topic_0199, + edam:topic_3120, + edam:topic_3305 ; + sc:citation , + "pmcid:PMC8953562", + "pubmed:35341044" ; + sc:description "Evolve is a Webtool designed to model mutations in the input protein complex using Modeller." ; + sc:featureList edam:operation_0244, + edam:operation_0331, + edam:operation_0478, + edam:operation_0480, + edam:operation_3227 ; + sc:license "Not licensed" ; + sc:name "E-Volve" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinfo.dcc.ufmg.br/evolve" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -179269,7 +177037,7 @@ Objectives:Human motion analysis can be applied to the diagnosis of musculoskele biotools:primaryContact "E1DS Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0176, @@ -179291,7 +177059,7 @@ Objectives:Human motion analysis can be applied to the diagnosis of musculoskele sc:url "https://github.com/InfluenceFunctional/E2EDNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -179313,7 +177081,7 @@ Objectives:Human motion analysis can be applied to the diagnosis of musculoskele "Jan Krüger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0218, @@ -179324,26 +177092,8 @@ Objectives:Human motion analysis can be applied to the diagnosis of musculoskele sc:name "E3Miner" ; sc:url "http://e3miner.biopathway.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0610, - edam:topic_0780, - edam:topic_3474 ; - sc:citation ; - sc:description """Integrating citizen science data with expert surveys increases accuracy and spatial extent of species distribution models. - -Bird Academy, Birds of North America, Celebrate Urban Birds, eBird, Great Backyard Bird Count, Project FeederWatch, NestWatch, Macaulay Library. - -Sign in to your Cornell Lab Account. - -One account. Many ways to explore, learn, and contribute. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'citizen-science', 'shorebirds'""" ; - sc:featureList edam:operation_3695 ; - sc:name "eBird" ; - sc:url "https://ebird.org/data/download" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, @@ -179364,7 +177114,7 @@ eCAMI: Simultaneous Classification and Motif Identification for enzyme/CAZyme an sc:url "https://github.com/yinlabniu/eCAMI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3382 ; @@ -179376,32 +177126,8 @@ eCAMI: Simultaneous Classification and Motif Identification for enzyme/CAZyme an sc:name "eContour" ; sc:url "http://econtour.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0637, - edam:topic_0659, - edam:topic_3174, - edam:topic_3305, - edam:topic_3697 ; - sc:citation ; - sc:description """Construction of habitat-specific training sets to achieve species-level assignment in 16S rRNA gene datasets. - -16S rRNA Refseq V15.2 Genomic RefSeq V9.03. - -The goal of creating the expanded Human Oral Microbiome Database (eHOMD) is to provide the scientific community with comprehensive curated information on the bacterial species present in the human aerodigestive tract (ADT), which encompasses the upper digestive and upper respiratory tracts, including the oral cavity, pharynx, nasal passages, sinuses and esophagus. eHOMD should also serve well for the lower respiratory tract. - -HOMD 16S rRNA Gene Sequence Download. - -HOMD provides two different sets of 16S rRNA Gene Reference Sequence (RefSeq) for download and BLAST search:. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'V1-V3', '16S rRNA', '16S rRNA gene-derived ASVs', 'habitat-specific'""" ; - sc:featureList edam:operation_2421, - edam:operation_3192, - edam:operation_3460 ; - sc:name "eHOMD" ; - sc:url "http://www.homd.org/?name=seqDownload&type=R" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0659, @@ -179424,7 +177150,7 @@ HOMD provides two different sets of 16S rRNA Gene Reference Sequence (RefSeq) fo biotools:primaryContact "Julian Candia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0749 ; @@ -179440,7 +177166,7 @@ HOMD provides two different sets of 16S rRNA Gene Reference Sequence (RefSeq) fo sc:url "https://www.mutationdistiller.org/ePOSSUM2/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -179455,62 +177181,8 @@ HOMD provides two different sets of 16S rRNA Gene Reference Sequence (RefSeq) fo sc:name "ePath" ; sc:url "https://www.pubapps.vcu.edu/epath/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0625, - edam:topic_0659, - edam:topic_3512, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6854704", - "pubmed:31722663" ; - sc:description """Insight into genetic regulation of miRNA in mouse brain. - -This repository contains the code necessary to run the analyses in Insight Into Genetic Regulation of miRNA in Mouse Brain. The RMD files should be ran in the following order:. - -The order of eQTL_target_genes,hotspot_analysis, phenotype_analysis, and bayesian_network_analysis does not matter. Due to the file size, the mRNA expression data resides at PhenoGen.org. The data can be found on the "Available Data Downloads" page under the Publications tab and going to the Processed Data section designated for, "Predictive Modeling of miRNA-mediated Predisposition to Alcohol-related Phenotypes in Mouse." The file is titled, "mRNA_expression_data_full.csv.zip." Please use this data in place of the data titled, "Adjusted_rma.summary.txt.". - -||| CORRECT NAME OF TOOL COULD ALSO BE 'miRNA', 'miRNA eQTL'""" ; - sc:featureList edam:operation_0463, - edam:operation_0533, - edam:operation_3196, - edam:operation_3792, - edam:operation_3799 ; - sc:name "eQTL" ; - sc:url "https://github.com/gordonkordas/mirnabraineqtl" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0199, - edam:topic_3170, - edam:topic_3372 ; - sc:citation , - "pubmed:31849012" ; - sc:description """Exploring Bayesian Approaches to eQTL Mapping Through Probabilistic Programming. - -Book chapter on Bayesian eQTL mapping using Stan. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'black-box', 'Stan', 'bespoke'""" ; - sc:featureList edam:operation_2429, - edam:operation_3659, - edam:operation_3799 ; - sc:license "MIT" ; - sc:name "eQTL_autogenerated" ; - sc:url "https://github.com/dvav/eQTLBookChapter" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3379, - edam:topic_3393, - edam:topic_3419 ; - sc:citation , - "pmcid:PMC6712612", - "pubmed:31462280" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | Implementing eScreening technology in four VA clinics | BACKGROUND:Technology-based self-assessment (TB-SA) benefits patients and providers and has shown feasibility, ease of use, efficiency, and cost savings. A promising TB-SA, the VA eScreening program, has shown promise for the efficient and effective collection of mental and physical health information. To assist adoption of eScreening by healthcare providers, we assessed technology-related as well as individual- and system-level factors that might influence the implementation of eScreening in four diverse VA clinics. METHODS:This was a mixed-method, pre-post, quasi-experimental study originally designed as a quality improvement project. The clinics were selected to represent a range of environments that could potentially benefit from TB-SA and that made use of the variety eScreening functions" ; - sc:name "eScreening" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31462280" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3342, @@ -179530,7 +177202,7 @@ Book chapter on Bayesian eQTL mapping using Stan. sc:url "https://www.etriks.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2885, @@ -179558,7 +177230,7 @@ Mizuno K. et al. eVIDENCE: a practical variant filtering for low-frequency varia sc:url "https://github.com/mizunokei/eVIDENCE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -179580,7 +177252,7 @@ Expression-based variant impact phenotyping (eVIP) is an approach to predict fun sc:url "https://github.com/BrooksLabUCSC/eVIP2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071, @@ -179601,7 +177273,7 @@ Expression-based variant impact phenotyping (eVIP) is an approach to predict fun biotools:primaryContact "ExpressionAnalysis Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3056, @@ -179620,7 +177292,7 @@ Expression-based variant impact phenotyping (eVIP) is an approach to predict fun biotools:primaryContact "Alexander Peltzer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0166, edam:topic_3474, @@ -179639,7 +177311,7 @@ Expression-based variant impact phenotyping (eVIP) is an approach to predict fun sc:url "https://github.com/cliffgao/EAGERER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0781, @@ -179655,7 +177327,7 @@ Expression-based variant impact phenotyping (eVIP) is an approach to predict fun sc:url "http://bioinformatics.ua.pt/software/eagle/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, edam:topic_3295 ; @@ -179669,20 +177341,42 @@ Expression-based variant impact phenotyping (eVIP) is an approach to predict fun sc:name "EAGLE" ; sc:url "https://github.com/EvansGao/EAGLE" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_2885, + edam:topic_3500, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC8496271", + "pubmed:34544142" ; + sc:description "Eagle is an R package for multi-locus association mapping on a genome-wide scale." ; + sc:featureList edam:operation_0484, + edam:operation_2429, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Eagle" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://eagle.r-forge.r-project.org/index.html" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_1213" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -179699,8 +177393,53 @@ Expression-based variant impact phenotyping (eVIP) is an approach to predict fun sc:url "https://github.com/davidaknowles/eagle" ; biotools:primaryContact "David A Knowles" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workbench" ; + sc:applicationSubCategory edam:topic_0114, + edam:topic_3170, + edam:topic_3175, + edam:topic_3474, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC9200291", + "pubmed:35704579" ; + sc:description "A deep-learning framework for predicting a full range of structural variations from bulk and single-cell contact maps" ; + sc:featureList edam:operation_0272, + edam:operation_2429, + edam:operation_3228 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "EagleC" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/XiaoTaoWang/EagleC" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0654, + edam:topic_3168, + edam:topic_3316, + edam:topic_3517 ; + sc:citation ; + sc:description "Fast and Accurate Genome-wide Phasing and Imputation in a Single Tool." ; + sc:featureList edam:operation_3196, + edam:operation_3211, + edam:operation_3454, + edam:operation_3557 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "EagleImp" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ikmb/eagleimp" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0196, @@ -179719,7 +177458,7 @@ Expression-based variant impact phenotyping (eVIP) is an approach to predict fun biotools:primaryContact "Clarice R. Weinberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -179735,7 +177474,7 @@ Expression-based variant impact phenotyping (eVIP) is an approach to predict fun sc:url "https://github.com/lmirsadeghi/EARN/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -179751,7 +177490,7 @@ Expression-based variant impact phenotyping (eVIP) is an approach to predict fun sc:url "https://github.com/jhhung/EARRINGS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0196, @@ -179769,7 +177508,7 @@ Expression-based variant impact phenotyping (eVIP) is an approach to predict fun sc:url "https://bitbucket.org/geoplexity/easal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3169 ; sc:citation "pubmed:26926434" ; @@ -179794,7 +177533,7 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge biotools:primaryContact "Mads Lerdrup" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Workflow" ; @@ -179816,7 +177555,7 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; @@ -179831,10 +177570,9 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:name "Experimental measurement" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation , @@ -179857,7 +177595,7 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge sc:url "https://easyfrap.vmnet.upatras.gr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Suite" ; sc:applicationSubCategory edam:topic_0128, @@ -179876,7 +177614,7 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge sc:url "https://biokinet.belozersky.msu.ru/easyAmber" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3316 ; sc:description "EasyBuild is a software build and installation framework that allows you to manage (scientific) software on High Performance Computing (HPC) systems in an efficient way." ; @@ -179889,7 +177627,7 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge biotools:primaryContact "EasyBuild Community" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3308 ; @@ -179907,7 +177645,7 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge biotools:primaryContact "Ernesto Picardi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0797 ; sc:citation "pubmed:21278367" ; @@ -179923,7 +177661,7 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge biotools:primaryContact "Easyfig Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation , @@ -179941,7 +177679,7 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge biotools:primaryContact "Zoi Lygerou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0621, @@ -179960,8 +177698,31 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge "Windows" ; sc:url "http://andersenlab.org/easyfulcrum/articles/easyFulcrum.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0621, + edam:topic_0622, + edam:topic_0780, + edam:topic_3489 ; + sc:citation , + "pubmed:35748710" ; + sc:description "EasyGDB is an easy-to-implement low-maintenance tool developed to create genomic data management web platforms." ; + sc:featureList edam:operation_0362, + edam:operation_2421, + edam:operation_2422, + edam:operation_3208 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "EasyGDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/noefp/easy_gdb" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -179979,7 +177740,7 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge biotools:primaryContact "Pernille Nielsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -180003,7 +177764,7 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, edam:topic_0780, @@ -180018,7 +177779,7 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -180031,8 +177792,30 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge sc:name "easyMF" ; sc:url "https://github.com/cma2015/easyMF" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3168, + edam:topic_3174, + edam:topic_3277, + edam:topic_3379, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC8764268", + "pubmed:35058973" ; + sc:description "EasyMicroPlot package for microbiome analysis tool on R platform that accomplishes the core tasks of metagenomic down-stream analysis from start to finish, specially designed by screening popular microbial analysis and visualization." ; + sc:featureList edam:operation_0337, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "EasyMicroPlot" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/xielab2017/EasyMicroPlot" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3056, @@ -180052,7 +177835,7 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge sc:url "https://github.com/hzz0024/EasyParallel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -180064,7 +177847,7 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge sc:url "http://easyprot.unige.ch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -180080,7 +177863,7 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge sc:url "http://www.uni-regensburg.de/medizin/epidemiologie-praeventivmedizin/genetische-epidemiologie/software/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3519 ; @@ -180098,7 +177881,7 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge biotools:primaryContact "Le Pape Sylvain" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -180119,7 +177902,7 @@ It also integrates more than 20 tools for analysis. Finally, it automatically ge biotools:primaryContact "Nicolas Delhomme" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -180140,7 +177923,7 @@ EasyVS is a web-based platform built to simplify molecule library selection and sc:url "http://biosig.unimelb.edu.au/easyvs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0769, @@ -180159,7 +177942,7 @@ EasyVS is a web-based platform built to simplify molecule library selection and biotools:primaryContact "Erik C. Andersen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -180175,7 +177958,7 @@ EasyVS is a web-based platform built to simplify molecule library selection and sc:url "https://github.com/sangreashim/EAT-UpTF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -180193,7 +177976,7 @@ EasyVS is a web-based platform built to simplify molecule library selection and sc:url "https://github.com/Millchmaedchen/Eatomics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Command-line tools for processing biological sequencing data. Barcode demultiplexing, adapter trimming, etc. Primarily written to support an Illumina based pipeline - but should work with any FASTQs." ; sc:featureList edam:operation_0232, edam:operation_3192 ; @@ -180201,7 +177984,7 @@ EasyVS is a web-based platform built to simplify molecule library selection and sc:url "http://expressionanalysis.github.io/ea-utils/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -180216,7 +177999,7 @@ EasyVS is a web-based platform built to simplify molecule library selection and sc:url "http://www.ebi.ac.uk/Tools/webservices/services/eb-eye_rest#clients" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -180235,7 +178018,7 @@ EasyVS is a web-based platform built to simplify molecule library selection and biotools:primaryContact "Ming Yuan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -180253,7 +178036,7 @@ EasyVS is a web-based platform built to simplify molecule library selection and biotools:primaryContact "Jimmy Y. Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -180269,22 +178052,22 @@ EasyVS is a web-based platform built to simplify molecule library selection and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -180304,7 +178087,7 @@ EasyVS is a web-based platform built to simplify molecule library selection and biotools:primaryContact "John A. Dawson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation ; @@ -180319,7 +178102,7 @@ EasyVS is a web-based platform built to simplify molecule library selection and sc:url "https://www.ebi.ac.uk/metagenomics/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0089, @@ -180351,7 +178134,7 @@ EasyVS is a web-based platform built to simplify molecule library selection and sc:url "https://www.ebi.ac.uk/ebisearch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application", "Web service" ; @@ -180394,10 +178177,9 @@ EasyVS is a web-based platform built to simplify molecule library selection and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3383 ; sc:author , @@ -180424,7 +178206,7 @@ EasyVS is a web-based platform built to simplify molecule library selection and biotools:primaryContact "Andrzej Oleś" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -180436,7 +178218,7 @@ EasyVS is a web-based platform built to simplify molecule library selection and sc:url "http://motif.stanford.edu/distributions/eblocks/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0781 ; sc:citation , @@ -180454,7 +178236,7 @@ EasyVS is a web-based platform built to simplify molecule library selection and sc:url "https://genome.ucsc.edu/ebolaPortal/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -180471,7 +178253,7 @@ EasyVS is a web-based platform built to simplify molecule library selection and biotools:primaryContact "Amouda Venkatesan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0632 ; sc:citation , @@ -180490,10 +178272,9 @@ The database provides different measures of sequence conservation for each targe a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -180516,7 +178297,7 @@ The database provides different measures of sequence conservation for each targe "Yunbin Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -180537,18 +178318,18 @@ The database provides different measures of sequence conservation for each targe a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -180573,18 +178354,18 @@ The database provides different measures of sequence conservation for each targe a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -180607,7 +178388,7 @@ The database provides different measures of sequence conservation for each targe biotools:primaryContact "Ning Leng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -180620,7 +178401,7 @@ The database provides different measures of sequence conservation for each targe sc:url "https://github.com/hanif-y/MMOICA-for-Biomarker-selection" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2885, @@ -180642,10 +178423,10 @@ The database provides different measures of sequence conservation for each targe a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3424" ; - sc:name "Raw image" ; - sc:sameAs "http://edamontology.org/data_3424" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3424" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Raw image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3385 ; @@ -180661,7 +178442,7 @@ The database provides different measures of sequence conservation for each targe biotools:primaryContact "Perrine Paul-Gilloteaux" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, @@ -180677,7 +178458,7 @@ The database provides different measures of sequence conservation for each targe sc:url "https://github.com/zhuyuan-cug/zhuyuan-lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -180695,7 +178476,7 @@ The database provides different measures of sequence conservation for each targe sc:url "http://ecalibrator.bi.up.ac.za" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091 ; @@ -180713,7 +178494,7 @@ The database provides different measures of sequence conservation for each targe biotools:primaryContact "Mona Riemenschneider" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2640, edam:topic_3305, @@ -180728,8 +178509,34 @@ The database provides different measures of sequence conservation for each targe sc:name "ECCDIA" ; sc:url "http://webapps.3steps.cn/ECCDIA/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0654, + edam:topic_2640, + edam:topic_3173, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC9076536", + "pubmed:35388171" ; + sc:description "A database of extrachromosomal circular DNA profiles in human cancers." ; + sc:featureList edam:operation_0337, + edam:operation_2421, + edam:operation_3192, + edam:operation_3223, + edam:operation_3894 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "eccDNAdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.eccdnadb.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053, @@ -180746,7 +178553,7 @@ The database provides different measures of sequence conservation for each targe biotools:primaryContact "Celine Scornavacca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2640, @@ -180762,7 +178569,7 @@ The database provides different measures of sequence conservation for each targe sc:url "http://www.phoc.org.cn/ECCParaCorp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0769, @@ -180782,8 +178589,21 @@ The database provides different measures of sequence conservation for each targe "Windows" ; sc:url "https://github.com/crimBubble/ECCsplorer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "ECDB, a manually curated database is designed and developed to provide a comprehensive resource of genes deregulated in Endometrial cancer." ; + sc:featureList edam:operation_2945 ; + sc:name "ecdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/ecdb/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -180798,7 +178618,7 @@ The database provides different measures of sequence conservation for each targe biotools:primaryContact "MH" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -180818,8 +178638,21 @@ The database provides different measures of sequence conservation for each targe "Windows" ; sc:url "http://bio-nefu.com/resource/ecfs-dea" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "This server allows user to analysis the expression data (Microarray Data) where it calculate correlation coefficient between level of gene expression and nucleotides composition of genes." ; + sc:featureList edam:operation_2945 ; + sc:name "ecgpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/ecgpred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0625, @@ -180832,8 +178665,59 @@ The database provides different measures of sequence conservation for each targe sc:name "Echidna" ; sc:url "https://github.com/alexyermanos/Echidna" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0203, + edam:topic_0621, + edam:topic_3067, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8728261", + "pubmed:34791383" ; + sc:description "Leveraging an extant model organism database to build a knowledgebase supporting research on the genomics and biology of echinoderms." ; + sc:featureList edam:operation_0525, + edam:operation_3208, + edam:operation_3216, + edam:operation_3431, + edam:operation_3663 ; + sc:isAccessibleForFree true ; + sc:name "Echinobase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.echinobase.org" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0602, + edam:topic_3170, + edam:topic_3304, + edam:topic_3308 ; + sc:citation ; + sc:description "EchinoDB is a database consisting of amino acid sequence othoclusters from 42 echinoderm transcriptomes. We sampled taxa to span the deepest divergences within each of the 5 extant echinoderm classes. Data can be searched by keywords such as annotation and database identifiers from the Strongylocentrotus purpuratus reference protein set at NCBI." ; + sc:featureList edam:operation_0524, + edam:operation_0525, + edam:operation_2421 ; + sc:isAccessibleForFree true ; + sc:name "EchinoDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://echinodb.uncc.edu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3489 ; sc:citation , @@ -180844,7 +178728,7 @@ The database provides different measures of sequence conservation for each targe sc:url "https://echmet.natur.cuni.cz/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3572 ; sc:citation "pubmed:21482625" ; @@ -180861,7 +178745,7 @@ The database provides different measures of sequence conservation for each targe "Wei-Chun Kao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3070, @@ -180875,7 +178759,7 @@ The database provides different measures of sequence conservation for each targe sc:url "https://github.com/delosh653/ECHO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3474 ; @@ -180892,14 +178776,13 @@ The database provides different measures of sequence conservation for each targe a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation , @@ -180914,64 +178797,77 @@ The database provides different measures of sequence conservation for each targe sc:softwareHelp ; sc:url "http://www.york.ac.uk/res/thomas/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Workflow" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_0769, + edam:topic_3173, + edam:topic_3517 ; + sc:citation , + "pubmed:34529038" ; + sc:description "Automated statistical and functional fine-mapping pipeline with extensive API access to datasets." ; + sc:featureList edam:operation_0337, + edam:operation_3501, + edam:operation_3661 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "echolocatoR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://rajlabmssm.github.io/echolocatoR" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2802" ; - sc:name "Protein ID (EcID)" ; - sc:sameAs "http://edamontology.org/data_2802" ], + sc:additionalType "http://edamontology.org/data_2802" ; + sc:name "Protein ID (EcID)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2802" ; - sc:name "Protein ID (EcID)" ; - sc:sameAs "http://edamontology.org/data_2802" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2802" ; - sc:name "Protein ID (EcID)" ; - sc:sameAs "http://edamontology.org/data_2802" ], + sc:additionalType "http://edamontology.org/data_2802" ; + sc:name "Protein ID (EcID)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_0989" ; + sc:name "Protein identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ], + sc:additionalType "http://edamontology.org/data_0989" ; + sc:name "Protein identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ], + sc:additionalType "http://edamontology.org/data_0989" ; + sc:name "Protein identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ], + sc:additionalType "http://edamontology.org/data_2802" ; + sc:name "Protein ID (EcID)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_0989" ; + sc:name "Protein identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ], + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ], + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein interaction data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128 ; sc:citation , @@ -180983,7 +178879,7 @@ The database provides different measures of sequence conservation for each targe sc:url "http://ecid.bioinfo.cnio.es/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275, @@ -180997,8 +178893,18 @@ The database provides different measures of sequence conservation for each targe sc:name "ECIF" ; sc:url "https://github.com/DIFACQUIM/ECIF" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "ECJ is a research EC system written in Java. It was designed to be highly flexible, with nearly all classes (and all of their settings) dynamically determined at runtime by a user-provided parameter file. All structures in the system are arranged to be easily modifiable. Even so, the system was designed with an eye toward efficiency." ; + sc:isAccessibleForFree true ; + sc:name "ECJ" ; + sc:softwareHelp ; + sc:softwareVersion "27" ; + sc:url "https://cs.gmu.edu/~eclab/projects/ecj/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -181013,7 +178919,7 @@ The database provides different measures of sequence conservation for each targe sc:url "http://www.stat.washington.edu/thompson/Genepi/Eclipse.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0128, @@ -181031,8 +178937,32 @@ The database provides different measures of sequence conservation for each targe sc:softwareHelp ; sc:url "https://github.com/Binghui-Liu/ECMPride" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0077, + edam:topic_0089, + edam:topic_0625, + edam:topic_3068, + edam:topic_3473 ; + sc:citation , + "pmcid:PMC8728134", + "pubmed:34986598" ; + sc:description "The Evidence and Conclusion Ontology (ECO) is a community resource that provides an ontology of terms used to capture the type of evidence that supports biomedical annotations and assertions." ; + sc:featureList edam:operation_2428, + edam:operation_3096, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "CC0-1.0" ; + sc:name "ECO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/evidenceontology/evidenceontology" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, edam:topic_0219, @@ -181050,7 +178980,7 @@ The database provides different measures of sequence conservation for each targe sc:url "https://github.com/ErillLab/ECO-CollecTF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -181067,8 +178997,25 @@ The database provides different measures of sequence conservation for each targe sc:url "http://EcoCyc.org" ; biotools:primaryContact "BioCYC Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_2269, + edam:topic_3068 ; + sc:citation , + "pubmed:34918402" ; + sc:description "A hierarchical Bayesian model to combine stomach, biotracer, and literature data into diet matrix estimation." ; + sc:featureList edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:name "EcoDiet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/pyhernvann/EcoDiet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3299, @@ -181086,14 +179033,13 @@ The database provides different measures of sequence conservation for each targe a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1795" ; - sc:name "Gene ID (EcoGene)" ; - sc:sameAs "http://edamontology.org/data_1795" ] ; + sc:additionalType "http://edamontology.org/data_1795" ; + sc:name "Gene ID (EcoGene)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation ; @@ -181109,24 +179055,44 @@ The database provides different measures of sequence conservation for each targe sc:url "http://www.ecogene.org/old/" ; biotools:primaryContact "Dr. Kenneth E. Rudd" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_2229, + edam:topic_3895 ; + sc:citation , + "pubmed:35770895" ; + sc:description "EcoliGD is an online tool for designing artificial Escherichia coli genome and viewing function related information of the genome Escherichia coli str. K-12 substr. MG1655" ; + sc:featureList edam:operation_0284, + edam:operation_3208, + edam:operation_3907 ; + sc:license "Not licensed" ; + sc:name "EcoliGD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://guolab.whu.edu.cn/EcoliGD/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1286" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plasmid map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1286" ; - sc:name "Plasmid map" ; - sc:sameAs "http://edamontology.org/data_1286" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092 ; @@ -181145,7 +179111,7 @@ The database provides different measures of sequence conservation for each targe biotools:primaryContact "Laurent Gautier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, edam:topic_0160, @@ -181162,7 +179128,7 @@ The database provides different measures of sequence conservation for each targe sc:url "https://www.igs.umaryland.edu/labs/neuwald/software/compass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -181184,7 +179150,7 @@ The database provides different measures of sequence conservation for each targe sc:url "https://www.gujaratuniversity.ac.in/econtact/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3474 ; @@ -181195,8 +179161,30 @@ The database provides different measures of sequence conservation for each targe sc:name "econvRBP" ; sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31513916" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_0780, + edam:topic_3474, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC8825466", + "pubmed:34927685" ; + sc:description "EcoPLOT is an interactive web-application for the analysis of multivariate-biogeochemical datasets." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "EcoPLOT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/cdsanchez18/EcoPLOT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -181217,7 +179205,7 @@ The database provides different measures of sequence conservation for each targe biotools:primaryContact "ECR Browser Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -181237,8 +179225,36 @@ EcTracker possesses two distinct modules i.e. CellEnrich and TissueEnrich, to al "Windows" ; sc:url "https://the-ahuja-lab.shinyapps.io/ectracker/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0625, + edam:topic_0769, + edam:topic_3305, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC8767331", + "pubmed:34860150" ; + sc:description "Ectyper is a standalone serotyping module for Escherichia coli. It supports fasta and fastq file formats. (Galaxy Version 1.0.0)" ; + sc:featureList edam:operation_0310, + edam:operation_3219, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "ECTyper" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://usegalaxy.eu/root?tool_id=ectyper" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -181259,14 +179275,14 @@ EcTracker possesses two distinct modules i.e. CellEnrich and TissueEnrich, to al a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0607, edam:topic_3679 ; @@ -181284,7 +179300,7 @@ EcTracker possesses two distinct modules i.e. CellEnrich and TissueEnrich, to al sc:url "https://eda.nc3rs.org.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0196, @@ -181301,7 +179317,7 @@ EcTracker possesses two distinct modules i.e. CellEnrich and TissueEnrich, to al sc:url "http://www.riken.jp/zhangiru/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Web API" ; @@ -181325,10 +179341,10 @@ EcTracker possesses two distinct modules i.e. CellEnrich and TissueEnrich, to al a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0582" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Ontology" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -181354,10 +179370,9 @@ Its goals are to help describing bio-related resources and service with EDAM, an a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2223" ; - sc:name "Ontology metadata" ; - sc:sameAs "http://edamontology.org/data_2223" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2223" ; + sc:name "Ontology metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -181388,10 +179403,9 @@ Its goals are to help describing bio-related resources and service with EDAM, an a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2223" ; - sc:name "Ontology metadata" ; - sc:sameAs "http://edamontology.org/data_2223" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2223" ; + sc:name "Ontology metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -181422,10 +179436,9 @@ Its goals are to help describing bio-related resources and service with EDAM, an a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2223" ; - sc:name "Ontology metadata" ; - sc:sameAs "http://edamontology.org/data_2223" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2223" ; + sc:name "Ontology metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -181456,10 +179469,9 @@ Its goals are to help describing bio-related resources and service with EDAM, an a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2223" ; - sc:name "Ontology metadata" ; - sc:sameAs "http://edamontology.org/data_2223" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2223" ; + sc:name "Ontology metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -181490,10 +179502,9 @@ Its goals are to help describing bio-related resources and service with EDAM, an a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2223" ; - sc:name "Ontology metadata" ; - sc:sameAs "http://edamontology.org/data_2223" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2223" ; + sc:name "Ontology metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -181524,10 +179535,9 @@ Its goals are to help describing bio-related resources and service with EDAM, an a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2223" ; - sc:name "Ontology metadata" ; - sc:sameAs "http://edamontology.org/data_2223" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2223" ; + sc:name "Ontology metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -181557,7 +179567,7 @@ Its goals are to help describing bio-related resources and service with EDAM, an sc:url "http://emboss.open-bio.org/rel/rel6/apps/edamname.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -181578,8 +179588,52 @@ Its goals are to help describing bio-related resources and service with EDAM, an sc:url "http://bioconductor.org/packages/release/bioc/html/EDASeq.html" ; biotools:primaryContact "Davide Risso" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0160, + edam:topic_3299, + edam:topic_3474, + edam:topic_3794 ; + sc:citation , + "pubmed:34694393" ; + sc:description "Identification of Genome-Wide RNA-binding Proteins Using Evolutionary Deep Convolutional Neural Network." ; + sc:featureList edam:operation_3901, + edam:operation_3902, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "EDCNN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/yaweiwang1232/EDCNN" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal", + "Web application" ; + sc:applicationSubCategory edam:topic_3063, + edam:topic_3324, + edam:topic_3379, + edam:topic_3418 ; + sc:citation , + "pmcid:PMC9077850", + "pubmed:35526046" ; + sc:description "The European & Developing Countries Clinical Trials Partnership (EDCTP) Knowledge Hub." ; + sc:featureList edam:operation_0224, + edam:operation_0496 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "EDCTP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://edctpknowledgehub.tghn.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -181599,7 +179653,7 @@ Its goals are to help describing bio-related resources and service with EDAM, an "Niranjan Nagarajan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -181616,24 +179670,44 @@ Its goals are to help describing bio-related resources and service with EDAM, an sc:url "http://www.genomic.ch/edena" ; biotools:primaryContact "Dr David HERNANDEZ" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0634, + edam:topic_2259, + edam:topic_3053, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9005191", + "pubmed:35412455" ; + sc:description "A conditional gene-based association framework integrating isoform-level eQTL data reveals new susceptibility genes for schizophrenia" ; + sc:featureList edam:operation_3196, + edam:operation_3227, + edam:operation_3232 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "eDESE" ; + sc:url "https://github.com/pmglab/eDESE" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3668" ; - sc:name "Disease name" ; - sc:sameAs "http://edamontology.org/data_3668" ], + sc:additionalType "http://edamontology.org/data_1153" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "OMIM ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1153" ; - sc:name "OMIM ID" ; - sc:sameAs "http://edamontology.org/data_1153" ] ; + sc:additionalType "http://edamontology.org/data_3668" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Disease name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1622" ; - sc:name "Disease report" ; - sc:sameAs "http://edamontology.org/data_1622" ], + sc:additionalType "http://edamontology.org/data_1622" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Disease report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1622" ; - sc:name "Disease report" ; - sc:sameAs "http://edamontology.org/data_1622" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1622" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Disease report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0634, @@ -181659,10 +179733,10 @@ Its goals are to help describing bio-related resources and service with EDAM, an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0797 ; sc:citation , @@ -181680,18 +179754,18 @@ Its goals are to help describing bio-related resources and service with EDAM, an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -181712,7 +179786,7 @@ Its goals are to help describing bio-related resources and service with EDAM, an "John D. Storey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170 ; @@ -181726,7 +179800,7 @@ Its goals are to help describing bio-related resources and service with EDAM, an sc:url "https://ccb.jhu.edu/software/EDGE-pro/index.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3299, @@ -181744,28 +179818,55 @@ Its goals are to help describing bio-related resources and service with EDAM, an sc:url "https://www.mathworks.com/matlabcentral/fileexchange/62709-robust-edge-stop-functions-for-edge-based-active-contour-models-in-medical-image-segmentation" ; biotools:primaryContact "gus" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3168, + edam:topic_3305, + edam:topic_3324 ; + sc:citation , + "pubmed:35325090" ; + sc:description "A Web Platform to generate submission-ready genomes from SARS-CoV-2 sequencing efforts." ; + sc:featureList edam:operation_3218, + edam:operation_3227, + edam:operation_3478 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "EDGE COVID-19" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://edge-covid19.edgebioinformatics.org" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3169, edam:topic_3170 ; - sc:citation , + sc:citation , + , + , + "pmcid:PMC2796818", "pmcid:PMC3378882", - "pubmed:22287627" ; + "pmcid:PMC4934518", + "pubmed:19910308", + "pubmed:22287627", + "pubmed:27508061" ; sc:description "Differential expression analysis of RNA-seq expression profiles with biological replication. Implements a range of statistical methodology based on the negative binomial distributions, including empirical Bayes estimation, exact tests, generalized linear models and quasi-likelihood tests. As well as RNA-seq, it be applied to differential signal analysis of other types of genomic data that produce counts, including ChIP-seq, SAGE and CAGE." ; sc:featureList edam:operation_3223 ; sc:license "GPL-2.0" ; @@ -181783,7 +179884,7 @@ Its goals are to help describing bio-related resources and service with EDAM, an "Yunshun Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -181803,18 +179904,17 @@ Its goals are to help describing bio-related resources and service with EDAM, an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1461" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein-ligand complex" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1461" ; - sc:name "Protein-ligand complex" ; - sc:sameAs "http://edamontology.org/data_1461" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2828 ; @@ -181834,18 +179934,15 @@ Its goals are to help describing bio-related resources and service with EDAM, an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -181874,8 +179971,22 @@ Its goals are to help describing bio-related resources and service with EDAM, an sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/edialign.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3366 ; + sc:description "Entrez Direct (EDirect) is a command-line tool for Entrez databases. EDirect connects to Entrez through the Entrez Programming Utilities interface. It supports searching by indexed terms, looking up precomputed neighbors or links, filtering results by date or category, and downloading record summaries or reports." ; + sc:featureList edam:operation_3908 ; + sc:isAccessibleForFree true ; + sc:license "Freeware" ; + sc:name "EDirect" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareHelp ; + sc:url "https://ftp.ncbi.nlm.nih.gov/entrez/entrezdirect" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3277 ; @@ -181889,7 +180000,7 @@ Its goals are to help describing bio-related resources and service with EDAM, an sc:url "http://www.ra.cs.uni-tuebingen.de/software/EDISA/welcome_e.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3053 ; sc:description "EditGDS is a visual tool for browsing and editing Genomic Data Structure (GDS) files" ; @@ -181900,7 +180011,7 @@ Its goals are to help describing bio-related resources and service with EDAM, an sc:url "http://corearray.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -181926,7 +180037,7 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV sc:url "https://github.com/mbosio85/ediva" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -181946,7 +180057,7 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV biotools:primaryContact "Jianjun Tan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -181962,8 +180073,21 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV sc:softwareVersion "0.5.1" ; sc:url "https://code.google.com/p/edmr/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3382 ; + sc:citation , + "pubmed:35412981" ; + sc:description "Extremely-Downsampled Network (EDN), which employs an extreme downsampling technique to effectively learn a global view of the whole image, leading to accurate salient object localization." ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "EDN" ; + sc:url "https://github.com/yuhuan-wu/EDN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3168 ; @@ -181979,8 +180103,23 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV sc:url "https://github.com/mahsa-mousavi/eDNAFlow" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0632, + edam:topic_3474 ; + sc:citation , + "pubmed:35778862" ; + sc:description "A machine learning tool that accurately predicts qPCR cross-amplification." ; + sc:license "Not licensed" ; + sc:name "eDNAssay" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://NationalGenomicsCenter.shinyapps.io/eDNAssay" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -181997,8 +180136,30 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV sc:softwareHelp ; sc:url "http://edock-ml.umsl.edu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_3063, + edam:topic_3315, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9202178", + "pubmed:35710346" ; + sc:description "A data transformation method which takes into account the special property of scale non-invariance with a breakpoint at 1 of the Euclidean distance." ; + sc:featureList edam:operation_2939, + edam:operation_3432, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "EDOtrans" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cran.r-project.org/package=EDOtrans" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0749, edam:topic_3306, @@ -182016,14 +180177,13 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081 ; sc:citation , @@ -182039,7 +180199,7 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV sc:url "http://eds.bmc.uu.se/eds/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0154, @@ -182058,7 +180218,7 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV biotools:primaryContact "Malcolm D. Walkinshaw" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3300, edam:topic_3335, @@ -182072,7 +180232,7 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV sc:url "https://github.com/VisLab/EEG-Beats" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -182088,7 +180248,7 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV sc:url "https://github.com/MedicineBiology-AI/EEG-DTI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -182106,8 +180266,23 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV sc:url "http://bioconductor.org/packages/release/bioc/html/eegc.html" ; biotools:primaryContact "Xiaoyuan Zhou" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3474 ; + sc:citation , + "pubmed:34596046" ; + sc:description "A benchmark dataset, that is suited for training and testing deep learning-based EEG denoising models, as well as for comparing the performance across different models." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "EEGdenoiseNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ncclabsustech/EEGdenoiseNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3365 ; @@ -182127,14 +180302,13 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1917" ; - sc:name "Atomic property" ; - sc:sameAs "http://edamontology.org/data_1917" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1917" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Atomic property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3332 ; @@ -182155,7 +180329,7 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV biotools:primaryContact "Radka Svobodová Vařeková" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -182181,8 +180355,25 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV sc:url "http://ef-site.hgc.jp/eF-seek/index.jsp" ; biotools:primaryContact "eF-seek Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3050 ; + sc:citation , + "pmcid:PMC9377579", + "pubmed:35969582" ; + sc:description "R package offering a scenario tool beyond forestry." ; + sc:featureList edam:operation_2426 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "EFDM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ec-jrc/efdm" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "Retrieves Genes in the requested format from a list of one or more unique identifiers." ; @@ -182196,7 +180387,7 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV sc:url "http://eutils.ncbi.nlm.nih.gov/corehtml/query/static/efetchseq_help.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3068 ; sc:citation ; @@ -182211,7 +180402,7 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV sc:url "http://www.ncbi.nlm.nih.gov/books/NBK25501/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "Retrieves sequences in requested format from a list of one or more unique identifiers." ; @@ -182225,7 +180416,7 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV sc:url "http://eutils.ncbi.nlm.nih.gov/corehtml/query/static/efetch_help.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -182240,7 +180431,7 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV sc:url "http://www.ncbi.nlm.nih.gov/corehtml/query/static/efetchseq_help.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "Get taxonomy information given taxonomy ID." ; @@ -182254,7 +180445,7 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV sc:url "http://www.ncbi.nlm.nih.gov/corehtml/query/static/efetchtax_help.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0780 ; @@ -182275,7 +180466,7 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV sc:url "https://cran.r-project.org/package=effectR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -182293,7 +180484,7 @@ You will need to run git clone https://github.com/mbosio85/ediva.git to get eDiV biotools:primaryContact "Division of Computational Systems Biology, University of Vienna" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description """Tools for combining structural MRI (tractography/connectome) to functional MRI https://doi.org/10.1016/j.neuroimage.2021.118288""" ; @@ -182301,7 +180492,7 @@ https://doi.org/10.1016/j.neuroimage.2021.118288""" ; sc:url "https://github.com/alecrimi/effective_connectivity_toolbox" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3322, @@ -182318,14 +180509,14 @@ https://doi.org/10.1016/j.neuroimage.2021.118288""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3510 ; @@ -182346,14 +180537,14 @@ https://doi.org/10.1016/j.neuroimage.2021.118288""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -182378,14 +180569,14 @@ https://doi.org/10.1016/j.neuroimage.2021.118288""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -182406,18 +180597,17 @@ https://doi.org/10.1016/j.neuroimage.2021.118288""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ], + sc:additionalType "http://edamontology.org/data_0920" ; + sc:name "Genotype/phenotype report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0797, @@ -182439,14 +180629,14 @@ https://doi.org/10.1016/j.neuroimage.2021.118288""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080 ; @@ -182466,8 +180656,36 @@ https://doi.org/10.1016/j.neuroimage.2021.118288""" ; sc:softwareVersion "2.0.1" ; sc:url "http://www.effectivedb.org/method/effectivet3" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script", + "Web application" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_0121, + edam:topic_0621, + edam:topic_0780, + edam:topic_3474 ; + sc:citation , + "pubmed:35640972" ; + sc:description "Prediction of fungal effector proteins based on pretrained deep representation learning methods and generative adversarial networks." ; + sc:featureList edam:operation_2428, + edam:operation_3092, + edam:operation_3431, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Effector-GAN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://lab.malab.cn/~wys/webserver/Effector-GAN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3361, @@ -182483,7 +180701,7 @@ https://doi.org/10.1016/j.neuroimage.2021.118288""" ; biotools:primaryContact "Henrik Pagenkopf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -182501,7 +180719,7 @@ https://doi.org/10.1016/j.neuroimage.2021.118288""" ; biotools:primaryContact "Shujaat Khan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634 ; @@ -182513,7 +180731,7 @@ https://doi.org/10.1016/j.neuroimage.2021.118288""" ; sc:url "http://paed.hku.hk/efin/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3071 ; @@ -182533,14 +180751,13 @@ https://doi.org/10.1016/j.neuroimage.2021.118288""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2383" ; - sc:name "EGA accession" ; - sc:sameAs "http://edamontology.org/data_2383" ] ; + sc:additionalType "http://edamontology.org/data_2383" ; + sc:name "EGA accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Experiment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -182564,7 +180781,7 @@ https://doi.org/10.1016/j.neuroimage.2021.118288""" ; sc:url "https://ega-archive.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0128 ; @@ -182582,7 +180799,7 @@ https://doi.org/10.1016/j.neuroimage.2021.118288""" ; biotools:primaryContact "Sara Ballouz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -182603,28 +180820,80 @@ https://doi.org/10.1016/j.neuroimage.2021.118288""" ; sc:url "http://egassembler.hgc.jp" ; biotools:primaryContact "Masoudi-Nejad A." . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0208, + edam:topic_0218, + edam:topic_3336, + edam:topic_3375 ; + sc:citation , + "pubmed:34791012" ; + sc:description "Drug-drug interaction extraction and generation with fusion of enriched entity and sentence information." ; + sc:featureList edam:operation_2422, + edam:operation_3280, + edam:operation_3625 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "EGFI" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:url "https://github.com/Layne-Huang/EGFI" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "EGFRIndb is a literature curated database of 4581 small molecule inhibitors that have shown activity against either epidermal growth factor receptor isoforms (EGFR, ErbB2, ErbB4) or mutants of EGFR-TK domain (L858R, T790M, double mutant)." ; + sc:featureList edam:operation_2945 ; + sc:name "egfrindb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/egfrindb/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_3056, + edam:topic_3796 ; + sc:citation , + "pubmed:35753060" ; + sc:description "A python package for population genetics and genomics." ; + sc:featureList edam:operation_3096 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "egglib" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:softwareVersion "3.1.0" ; + sc:url "https://egglib.org/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:encodingFormat "http://edamontology.org/format_1369" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3174 ; @@ -182653,13 +180922,19 @@ https://doi.org/10.1016/j.neuroimage.2021.118288""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3174 ; - sc:citation , + sc:citation , + , + , "pmcid:PMC5210662", - "pubmed:28053165" ; + "pmcid:PMC5850834", + "pmcid:PMC8662613", + "pubmed:28053165", + "pubmed:28460117", + "pubmed:34597405" ; sc:description """For fast functional annotation of novel sequences. It uses precomputed orthologous groups and phylogenies from the eggNOG database to transfer functional information from fine-grained orthologs only. Its common uses include the annotation of novel genomes, transcriptomes or even metagenomic gene catalogs. The use of orthology predictions for functional annotation permits a higher precision than traditional homology searches, as it avoids transferring annotations from close paralogs.""" ; @@ -182679,7 +180954,7 @@ The use of orthology predictions for functional annotation permits a higher prec "Georg Zeller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -182700,7 +180975,7 @@ The use of orthology predictions for functional annotation permits a higher prec . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -182717,16 +180992,31 @@ The use of orthology predictions for functional annotation permits a higher prec sc:url "https://github.com/songlab-cal/eggtart" ; biotools:primaryContact "Yun S. Song" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_3308, + edam:topic_3512 ; + sc:citation , + "pubmed:35946527" ; + sc:description "EGIO (Exon Group Ideogram based detection of Orthologous exons and Orthologous isoforms) is aimed to detect orthologous exons and isoforms within pre-defined orthologous gene pairs." ; + sc:featureList edam:operation_0446 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "EGIO" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/wu-lab-egio/EGIO" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ] ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -182741,7 +181031,7 @@ The use of orthology predictions for functional annotation permits a higher prec sc:url "http://microbiota.wall.gu.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2275 ; @@ -182754,8 +181044,43 @@ The use of orthology predictions for functional annotation permits a higher prec sc:softwareHelp ; sc:url "http://www.mpibpc.mpg.de/273454/04-EGO_VIII" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC515322", + "pubmed:15342559" ; + sc:description "EGPred implements a new strategy where the specificity is maintained while the sensitivity is increased on combining ab initio predictions with BLASTX exons that are filtered using criteria such as length of HSP alignment, percent identity, score, expectation value, and similarity to intron sequences." ; + sc:featureList edam:operation_2945 ; + sc:name "egpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/egpred/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0625, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC9041245", + "pubmed:35492037" ; + sc:description "eGreenhouse is a lightweight and low-cost greenhouse sensor package integrated with the OPEnS HyperRail." ; + sc:featureList edam:operation_0310 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "eGreenhouse" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/OPEnSLab-OSU/eGreenhouse" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0128, @@ -182773,7 +181098,7 @@ The use of orthology predictions for functional annotation permits a higher prec sc:url "https://github.com/Sazan-Mahbub/EGAT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3318, edam:topic_3382 ; @@ -182788,14 +181113,14 @@ The use of orthology predictions for functional annotation permits a higher prec a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Data reference" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2259 ; @@ -182814,7 +181139,7 @@ The use of orthology predictions for functional annotation permits a higher prec biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2885, edam:topic_3293, @@ -182836,14 +181161,12 @@ The use of orthology predictions for functional annotation permits a higher prec a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation , @@ -182860,8 +181183,29 @@ The use of orthology predictions for functional annotation permits a higher prec sc:url "https://ehecregnet.compbio.sdu.dk/v2/index.html" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0625, + edam:topic_2229, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8724265", + "pubmed:35036921" ; + sc:description "A tool for automated image analysis of spherical bacteria based on cell cycle progression." ; + sc:featureList edam:operation_3443, + edam:operation_3454, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "eHooke" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BacterialCellBiologyLab/eHooke" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0821, @@ -182877,30 +181221,27 @@ A Python package for extracting and scoring reaction templates based on extended a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3861" ; - sc:name "Electronic health record" ; - sc:sameAs "http://edamontology.org/data_3861" ], + sc:additionalType "http://edamontology.org/data_3861" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Electronic health record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2855" ; - sc:name "Distance matrix" ; - sc:sameAs "http://edamontology.org/data_2855" ] ; + sc:additionalType "http://edamontology.org/data_2855" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Distance matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_3914" ; + sc:name "Quality control report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3914" ; - sc:name "Quality control report" ; - sc:sameAs "http://edamontology.org/data_3914" ], + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Trajectory data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application", "Workflow" ; @@ -182934,7 +181275,7 @@ A Python package for extracting and scoring reaction templates based on extended biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3474 ; @@ -182951,14 +181292,14 @@ A Python package for extracting and scoring reaction templates based on extended biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "eido is the official Python package for validating Portable Encapsulated Projects or PEPs in Python." ; sc:name "eido" ; sc:softwareVersion "0.1.5" ; sc:url "http://eido.databio.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3175, @@ -182973,7 +181314,7 @@ A Python package for extracting and scoring reaction templates based on extended sc:url "https://github.com/lxwgcool/EigenDel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:description "Combindes functionality from population genetics methods (Patterson et al. 2006) and the EIGENSTRAT correection method (Price et al. 2006). The EIGENSTRAT methods uses principal component analysis to model ancestry differences between cases and controls along continuous axes of variation. The resulting correction is specific to a candidate markers variation in frequency across ancestral populations, minimizing spurious associations while maximising power to detect true associations." ; @@ -182986,18 +181327,15 @@ A Python package for extracting and scoring reaction templates based on extended a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -183028,7 +181366,7 @@ A Python package for extracting and scoring reaction templates based on extended sc:url "http://emboss.open-bio.org/rel/rel6/apps/einverted.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3382, edam:topic_3474 ; @@ -183042,26 +181380,26 @@ A Python package for extracting and scoring reaction templates based on extended a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0990" ; - sc:name "Compound name" ; - sc:sameAs "http://edamontology.org/data_0990" ], + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Small molecule structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1086" ; - sc:name "Compound identifier" ; - sc:sameAs "http://edamontology.org/data_1086" ], + sc:additionalType "http://edamontology.org/data_0990" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Compound name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1086" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Compound identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Small molecule structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0081, @@ -183082,7 +181420,7 @@ A Python package for extracting and scoring reaction templates based on extended biotools:primaryContact "Thomas Girke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -183101,7 +181439,7 @@ A Python package for extracting and scoring reaction templates based on extended biotools:primaryContact "Gabor Csardi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, @@ -183112,17 +181450,33 @@ A Python package for extracting and scoring reaction templates based on extended sc:name "EIT-MESHER" ; sc:url "https://github.com/EIT-team/Mesher" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3372 ; - sc:citation , - "pmcid:PMC6698987", - "pubmed:31452597" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/elprep | Comparing Ease of Programming in C++, Go, and Java for Implementing a Next-Generation Sequencing Tool | elPrep is an extensible multithreaded software framework for efficiently processing Sequence Alignment Map (SAM) Binary Alignment Map (BAM) files in next-generation sequencing pipelines. Similar to other SAM BAM tools, a key challenge in elPrep is memory management, as such programs need to manipulate large amounts of data. We therefore investigated 3 programming languages with support for assisted or automated memory management for implementing elPrep, namely C++, Go, and Java. We implemented a nontrivial subset of elPrep in all 3 programming languages and compared them by benchmarking their runtime performance and memory use to determine the best language in terms of computational performance" ; - sc:name "elPrep_autogenerated" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31452597" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0634, + edam:topic_0659, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9356161", + "pubmed:35983235" ; + sc:description "An explainable LSTM network for RNA-associated multi-compartment localization prediction." ; + sc:featureList edam:operation_0314, + edam:operation_2441, + edam:operation_2489, + edam:operation_3927, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "EL-RMLocNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://sds_genetic_analysis.opendfki.de/subcellular_loc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3474 ; @@ -183138,7 +181492,7 @@ A Python package for extracting and scoring reaction templates based on extended biotools:primaryContact "Ruifeng Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3379 ; sc:citation , @@ -183155,7 +181509,7 @@ A Python package for extracting and scoring reaction templates based on extended sc:url "https://cran.r-project.org/package=elaborator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -183176,7 +181530,7 @@ A Python package for extracting and scoring reaction templates based on extended biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -183189,7 +181543,7 @@ A Python package for extracting and scoring reaction templates based on extended sc:url "http://www.cse.buffalo.edu/~jzola/elastic/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2640, edam:topic_3384 ; @@ -183216,7 +181570,7 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "http://elastix.isi.uu.nl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -183238,7 +181592,7 @@ elastix is open source software, based on the well-known Insight Segmentation an biotools:primaryContact "Dr. John Parkinson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -183256,22 +181610,22 @@ elastix is open source software, based on the well-known Insight Segmentation an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -183291,8 +181645,26 @@ elastix is open source software, based on the well-known Insight Segmentation an biotools:primaryContact "Graham Alvare", "Xiangli Zhang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_3071, + edam:topic_3382, + edam:topic_3678 ; + sc:citation , + "pmcid:PMC9156785", + "pubmed:35641547" ; + sc:description "A large eldercare-oriented BEnchmark database of SSVEP-BCI for The Aging population (eldBETA)" ; + sc:featureList edam:operation_0337 ; + sc:license "CC-BY-4.0" ; + sc:name "eldBETA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://doi.org/10.6084/m9.figshare.18032669" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769 ; @@ -183310,7 +181682,7 @@ elastix is open source software, based on the well-known Insight Segmentation an biotools:primaryContact "Camille Marchet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -183327,7 +181699,7 @@ elastix is open source software, based on the well-known Insight Segmentation an biotools:primaryContact "Sathyanarayan Rao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -183343,7 +181715,7 @@ elastix is open source software, based on the well-known Insight Segmentation an biotools:primaryContact "Sathyanarayan Rao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3395, edam:topic_3399, @@ -183358,7 +181730,7 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "https://github.com/arfarooqi/Electro-active-hydrogels" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3382 ; sc:description "Accepts 1 channel EMG and finds number, amplitude, maximum, and duration of contraction periods." ; @@ -183372,7 +181744,7 @@ elastix is open source software, based on the well-known Insight Segmentation an biotools:primaryContact "Michala" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0611, @@ -183389,8 +181761,25 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:name "Electronic PCR" ; sc:url "http://www.ncbi.nlm.nih.gov/sutils/e-pcr" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3170, + edam:topic_3474 ; + sc:citation ; + sc:description "A supervised machine learning approach for label harmonization and annotation of single cell RNA-seq data." ; + sc:featureList edam:operation_0224 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ELeFHAnt" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/praneet1988/ELeFHAnt" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_3300, @@ -183403,7 +181792,7 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "https://elephant.readthedocs.io/en/latest/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3383 ; @@ -183418,8 +181807,27 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "https://elephant-track.github.io/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_2229, + edam:topic_3474, + edam:topic_3957 ; + sc:citation , + "pmcid:PMC8908451", + "pubmed:35281831" ; + sc:description "An Ensemble Learning Framework for Detecting Protein Complexes From PPI Networks." ; + sc:featureList edam:operation_2476, + edam:operation_2492, + edam:operation_3096 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ELF-DPC" ; + sc:url "https://github.com/RongquanWang/ELF-DPC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library", "Suite" ; @@ -183440,7 +181848,7 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "https://github.com/Parmeggiani-Lab/elfin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_0160, @@ -183458,12 +181866,36 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "https://elihksir.org" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0202, + edam:topic_0209, + edam:topic_2275, + edam:topic_3343, + edam:topic_3373 ; + sc:citation , + "pmcid:PMC9025992", + "pubmed:35474832" ; + sc:description "Enhanced Ligand Exploration and Interaction Recognition Algorithm (ELIXIR-A). ELIXIR-A, a plugin in VMD, can find similarities in the active site of the receptor under study compared to other receptors." ; + sc:featureList edam:operation_0337, + edam:operation_2425, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "ELIXIR-A" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "2.1" ; + sc:url "https://github.com/sfernando-BAEN/ELIXIR-A/releases" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2259, @@ -183485,7 +181917,7 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "https://elixir.mf.uni-lj.si" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, edam:topic_3382 ; @@ -183499,7 +181931,7 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "http://github.com/tianchengzhe/EllipTrack" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -183525,18 +181957,18 @@ elastix is open source software, based on the well-known Insight Segmentation an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3273" ; - sc:name "Sample ID" ; - sc:sameAs "http://edamontology.org/data_3273" ] ; + sc:additionalType "http://edamontology.org/data_3273" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Sample ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -183556,7 +181988,7 @@ elastix is open source software, based on the well-known Insight Segmentation an biotools:primaryContact "Simon Coetzee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation , "pmcid:PMC7005598", @@ -183570,7 +182002,7 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "https://github.com/LeenaSalmela/Elmeri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -183586,7 +182018,7 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "http://api.bioinfo.no/wsdl/ELMInstanceMapper.wsdl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -183602,7 +182034,7 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "http://api.bioinfo.no/wsdl/ELMMatcher.wsdl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3308 ; @@ -183616,7 +182048,7 @@ elastix is open source software, based on the well-known Insight Segmentation an biotools:primaryContact "Mihaela Zavolan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2885, @@ -183633,7 +182065,7 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "https://github.com/YixuanWang1120/ELMSI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0176, @@ -183657,7 +182089,7 @@ elastix is open source software, based on the well-known Insight Segmentation an biotools:primaryContact "Yves-Henri Sanejouand" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3569 ; sc:citation ; @@ -183672,7 +182104,7 @@ elastix is open source software, based on the well-known Insight Segmentation an biotools:primaryContact "Christof Neumann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196 ; @@ -183688,7 +182120,7 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "http://sourceforge.net/projects/eloper/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, edam:topic_3047, @@ -183704,7 +182136,7 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "https://github.com/HassounLab/ELP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -183723,7 +182155,7 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "https://github.com/ExaScience/elprep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2259, @@ -183738,8 +182170,24 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "http://meta.usc.edu/softs/lsa/" ; biotools:primaryContact "Fengzhu Sun" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_2885, + edam:topic_3474, + edam:topic_3517, + edam:topic_3520 ; + sc:citation , + "pubmed:35696639" ; + sc:description "Ensemble learning-based approach (ELSSI): parallel SNP-SNP interactions detection by ensemble multi-type detectors." ; + sc:featureList edam:operation_0484, + edam:operation_3196, + edam:operation_3661 ; + sc:name "ELSSI" ; + sc:url "https://www.sdu-idea.cn/codes.php?name=ELSSI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0160, @@ -183760,7 +182208,7 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "https://github.com/tzok/eltetrado" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0196, @@ -183779,7 +182227,7 @@ elastix is open source software, based on the well-known Insight Segmentation an biotools:primaryContact "Contact form (Comments / Questions)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3474 ; @@ -183794,7 +182242,7 @@ elastix is open source software, based on the well-known Insight Segmentation an biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3067, @@ -183819,12 +182267,15 @@ elastix is open source software, based on the well-known Insight Segmentation an biotools:primaryContact "EMAGE Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3307, edam:topic_3382 ; - sc:citation "pubmed:16859925" ; + sc:citation , + , + "pubmed:10600563", + "pubmed:16859925" ; sc:description "A scientific image processing package with a particular focus on single particle reconstruction from transmission electron microscopy (TEM) images. he suite now also offers support for single particle cryo-ET, and tools useful in many other subdisciplines such as helical reconstruction, 2-D crystallography and whole-cell tomography." ; sc:featureList edam:operation_0297, edam:operation_3457, @@ -183839,14 +182290,13 @@ elastix is open source software, based on the well-known Insight Segmentation an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1149" ; - sc:name "EMAGE ID" ; - sc:sameAs "http://edamontology.org/data_1149" ] ; + sc:additionalType "http://edamontology.org/data_1149" ; + sc:name "EMAGE ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1713" ; - sc:name "Fate map" ; - sc:sameAs "http://edamontology.org/data_1713" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1713" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Fate map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3067 ; @@ -183862,7 +182312,7 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "http://www.emouseatlas.org/emap/home.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3170, @@ -183880,7 +182330,7 @@ elastix is open source software, based on the well-known Insight Segmentation an biotools:primaryContact "Gary A Churchill" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0081, @@ -183899,34 +182349,23 @@ elastix is open source software, based on the well-known Insight Segmentation an sc:url "http://brylinski.cct.lsu.edu/ematchsite" ; biotools:primaryContact "Brylinski M." . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0218, - edam:topic_3063, - edam:topic_3303, - edam:topic_3474 ; - sc:citation "pmcid:PMC6922053", - "pubmed:31797605" ; - sc:description """Clinical Concept Embeddings Learned from Massive Sources of Multimodal Medical Data. - -Code for AMIA CRI 2016 paper "Learning Low-Dimensional Representations of Medical Concepts". - -This repository contains code accompanying publication of the paper:. - -In the base directory there are three files containing the two best 300-dimensional embeddings learned in the paper, and the embeddings used in the previous work which we compared to:. - -Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical Concepts. To appear in Proceedings of the AMIA Summit on Clinical Research Informatics (CRI), 2016. - -||| NAME (embeddings) SIMILAR TO (PUB. DIFFERENT) bio.tools/Embeddings (Embeddings). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'cui2vec', 'cui2vec embeddings', 'attains'""" ; - sc:featureList edam:operation_3280, - edam:operation_3435, - edam:operation_3625 ; - sc:name "embeddings_autogenerated" ; - sc:url "https://github.com/clinicalml/embeddings" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_3303, + edam:topic_3382 ; + sc:citation , + "pubmed:35926335" ; + sc:description "EmbedSeg, an embedding-based instance segmentation method designed to segment instances of desired objects visible in 2D or 3D biomedical image data." ; + sc:featureList edam:operation_0337 ; + sc:license "CC-BY-NC-4.0" ; + sc:name "EmbedSeg" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:url "https://github.com/juglab/EmbedSeg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2229, @@ -183952,7 +182391,7 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical biotools:primaryContact "Miroslav Kratochvíl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, @@ -183968,7 +182407,7 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical sc:url "https://github.com/gomezlab/EMBER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation "pubmed:19208116" ; @@ -183979,14 +182418,14 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_1927" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219 ; sc:citation , @@ -184006,7 +182445,7 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical biotools:primaryContact "Jacques Dainat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3374 ; sc:description "A modified version of EMBLRead for Reading a EMBL file into a Matlab structure much faster" ; @@ -184020,7 +182459,7 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical biotools:primaryContact "Xindong Song" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -184043,10 +182482,9 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -184078,10 +182516,9 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0958" ; - sc:name "Tool metadata" ; - sc:sameAs "http://edamontology.org/data_0958" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0958" ; + sc:name "Tool metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -184112,10 +182549,9 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0958" ; - sc:name "Tool metadata" ; - sc:sameAs "http://edamontology.org/data_0958" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0958" ; + sc:name "Tool metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -184144,8 +182580,29 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/embossversion.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workbench" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_0623, + edam:topic_0820 ; + sc:citation , + "pmcid:PMC8437786", + "pubmed:34527200" ; + sc:description "A method for identifying G-protein coupled receptors based on word embedding and wordbooks." ; + sc:featureList edam:operation_0269, + edam:operation_2995, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:name "EMCBOW-GPCR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/454170054/EMCBOW-GPCR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0611 ; @@ -184159,20 +182616,65 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical sc:softwareHelp ; sc:url "https://www.ebi.ac.uk/pdbe/emdb/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0218, + edam:topic_3170, + edam:topic_3474, + edam:topic_3674 ; + sc:citation , + "pmcid:PMC9178860", + "pubmed:35676633" ; + sc:description "An ensemble multiscale deep learning predictor (EMDLP) to identify RNA methylation sites in NLP and DL way." ; + sc:featureList edam:operation_0417, + edam:operation_2441, + edam:operation_3927, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "EMDLP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://47.104.130.81/EMDLP/index.php" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0097, + edam:topic_0128, + edam:topic_0176, + edam:topic_0654, + edam:topic_3306 ; + sc:citation , + "pubmed:35341743" ; + sc:description "emDNA is a C++ software for minimizing the energy of DNA or DNA+proteins complexes. It can handle various geometrical constraints (e.g. fixed end-to-end distance and/or rotation) and can be used to simulate opened or closed DNA fragments." ; + sc:featureList edam:operation_0481, + edam:operation_2476 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "emDNA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://nicocvn.github.io/emDNA/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -184193,8 +182695,35 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical biotools:primaryContact "Daniel Schmolze", "Sadhika Malladi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_3174, + edam:topic_3473, + edam:topic_3474 ; + sc:citation ; + sc:description "Metagenomics is a culture-independent method for studying the microbes inhabiting a particular environment. Comparing the composition of samples (functionally/taxonomically), either from a longitudinal study or cross-sectional studies can provide clues into how the microbiota has adapted to the environment. However, a recurring challenge is that key metadata about the sample and molecular methods used to extract and sequence the genetic material are often missing from sequence records, making it difficult to account for confounding factors. Nevertheless, this missing metadata may be found in the narrative of publications describing the research. This respository offers a new metagenomics annotations pipeline that regularly enrich up-to-date ENA and MGnify metagenomics studies with metadata extracted from research articles in EuropePMC. These metadata are now available for researchers to explore and retrieve in the MGnify and Europe PMC websites, and Europe PMC annotations API." ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "EMERALD METAGENOMICS ANNOTATIONS PIPELINE" ; + sc:operatingSystem "Linux" ; + sc:url "https://gitlab.com/maaly7/emerald_metagenomics_annotations" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation , + , + , + ; + sc:description "The Extreme-scale Model Exploration with Swift (EMEWS) framework enables the direct integration of multi-language model exploration (ME) algorithms while scaling dynamic computational experiments to very large numbers (millions) of models on all major HPC platforms. EMEWS has been designed for any \"black box\" application code, such as agent-based and microsimulation models or training of machine learning models, that require multiple runs as part of heuristic model explorations. One of the main goals of EMEWS is to democratize the use of large-scale computing resources by making them accessible to more researchers in many more science domains. EMEWS is built on the Swift/T parallel scripting language." ; + sc:isAccessibleForFree true ; + sc:name "EMEWS" ; + sc:softwareHelp ; + sc:url "https://emews.github.io/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0621, @@ -184211,22 +182740,22 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ], + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Sequence set" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174 ; sc:description "EMGB is a CWL-based workflow for metagenomics analyses including a web-based interface for filtering ind querying analysis results" ; @@ -184242,7 +182771,7 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical biotools:primaryContact "EMGB Service" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:citation ; sc:description "Finds the \"on\" and \"off\" indicies of a single raw surface EMG burst (muscle contraction)." ; @@ -184256,7 +182785,7 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical biotools:primaryContact "Kieran Coghlan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0611, @@ -184271,8 +182800,24 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical sc:url "https://bitbucket.org/chazbot/emhp" ; biotools:primaryContact "Charles Bowman" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_3053 ; + sc:citation , + ; + sc:description """EMIRGE (Expectation-Maximization Iterative Reconstruction of Genes from the Environment) reconstructs full length ribosomal genes from short read sequencing data. In the process, it also provides estimates of the sequences' abundances. EMIRGE uses a modification of the EM algorithm to iterate between estimating the expected value of the abundance of all SSU sequences present in a sample and estimating the probabilities for each read that a specific sequence generated that read. At the end of each iteration, those probabilities are used to re-calculate (correct) a consensus sequence for each reference SSU sequence, and the mapping is +repeated, followed by the estimations of probabilities. The iterations should usually stop when the reference sequences no longer change from one iteration to the next. Practically, 40-80 iterations is usually sufficient for many samples. Right now EMIRGE uses Bowtie alignments internally, though in theory a different mapper could be used.""" ; + sc:featureList edam:operation_0310 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "EMIRGE" ; + sc:url "https://github.com/csmiller/EMIRGE" ; + biotools:primaryContact "Christopher S. Miller" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -184290,7 +182835,7 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical sc:url "https://research.bioinformatics.udel.edu/emirit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3055, edam:topic_3056, @@ -184306,30 +182851,24 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ], + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -184358,16 +182897,36 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/emma.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workflow" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0654, + edam:topic_0769, + edam:topic_3895, + edam:topic_3912 ; + sc:citation , + "pubmed:35050610" ; + sc:description "EMMA-CAD a web-based computer-aided design tool for the rapid design of bespoke mammalian expression vectors" ; + sc:featureList edam:operation_0310 ; + sc:isAccessibleForFree true ; + sc:name "EMMA-CAD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://emma.cailab.org" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3117" ; - sc:name "Microarray hybridisation data" ; - sc:sameAs "http://edamontology.org/data_3117" ] ; + sc:additionalType "http://edamontology.org/data_3117" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Microarray hybridisation data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3161" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3308 ; sc:citation ; @@ -184391,7 +182950,7 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical sc:url "http://emma.cebitec.uni-bielefeld.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3071, @@ -184407,7 +182966,7 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical sc:url "https://wiki.cebitec.uni-bielefeld.de/brf-software/index.php/UsingTheWSInterface" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation , @@ -184422,7 +182981,7 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical sc:url "http://genetics.cs.ucla.edu/emmax/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_1317, @@ -184441,7 +183000,7 @@ Y. Choi, Y. Chiu, D. Sontag. Learning Low-Dimensional Representations of Medical biotools:primaryContact "Sheng-You Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -184467,26 +183026,21 @@ A database of 200,005 comparative models of drug-bound proteins based on 1,391,4 a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_1519" ; + sc:name "Peptide molecular weights" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1519" ; - sc:name "Peptide molecular weights" ; - sc:sameAs "http://edamontology.org/data_1519" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1519" ; - sc:name "Peptide molecular weights" ; - sc:sameAs "http://edamontology.org/data_1519" ], + sc:additionalType "http://edamontology.org/data_1519" ; + sc:name "Peptide molecular weights" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1505" ; - sc:name "Amino acid index (molecular weight)" ; - sc:sameAs "http://edamontology.org/data_1505" ] ; + sc:additionalType "http://edamontology.org/data_1505" ; + sc:name "Amino acid index (molecular weight)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1262" ; - sc:name "Peptide molecular weight hits" ; - sc:sameAs "http://edamontology.org/data_1262" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1262" ; + sc:name "Peptide molecular weight hits" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -184516,7 +183070,7 @@ A database of 200,005 comparative models of drug-bound proteins based on 1,391,4 sc:url "http://emboss.open-bio.org/rel/rel6/apps/emowse.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269 ; @@ -184534,7 +183088,7 @@ A database of 200,005 comparative models of drug-bound proteins based on 1,391,4 biotools:primaryContact "David Gibbs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3569 ; @@ -184555,7 +183109,7 @@ A database of 200,005 comparative models of drug-bound proteins based on 1,391,4 "John J. Andersen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3316 ; sc:author ; @@ -184574,7 +183128,7 @@ A database of 200,005 comparative models of drug-bound proteins based on 1,391,4 biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, edam:topic_2640, @@ -184590,7 +183144,7 @@ resource for metastatic research.""" ; sc:url "http://www.emtome.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3056, @@ -184607,7 +183161,7 @@ resource for metastatic research.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -184628,7 +183182,7 @@ resource for metastatic research.""" ; sc:url "https://www.egl-eurofins.com/emvclass/emvclass.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; sc:applicationSubCategory edam:topic_0219, @@ -184654,14 +183208,12 @@ resource for metastatic research.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Cochrane team" ; @@ -184681,7 +183233,7 @@ resource for metastatic research.""" ; "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; sc:citation , @@ -184694,7 +183246,7 @@ Deep neural networks have been successfully applied to many real-world applicati sc:url "https://github.com/maple-research-lab/EnAET" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3168 ; sc:citation , @@ -184709,7 +183261,7 @@ ENANO is a FASTQ lossless compression algorithm especially designed for nanopore sc:url "https://github.com/guilledufort/EnanoFASTQ" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0769, @@ -184728,7 +183280,7 @@ ENANO is a FASTQ lossless compression algorithm especially designed for nanopore sc:url "https://github.com/ENCODE-DCC/rna-seq-pipeline" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3169, @@ -184755,7 +183307,7 @@ ENANO is a FASTQ lossless compression algorithm especially designed for nanopore biotools:primaryContact "Encode DCC Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -184773,7 +183325,7 @@ ENANO is a FASTQ lossless compression algorithm especially designed for nanopore biotools:primaryContact "Charles Joly Beauparlant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2229, edam:topic_3170, @@ -184792,7 +183344,7 @@ Single-cell RNA sequencing enables us to characterize the cellular heterogeneity sc:url "https://github.com/SONG0417/ENCORE_V1.0.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0176, @@ -184809,7 +183361,7 @@ Single-cell RNA sequencing enables us to characterize the cellular heterogeneity biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -184830,7 +183382,7 @@ Single-cell RNA sequencing enables us to characterize the cellular heterogeneity biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , "pmcid:PMC7480700" ; @@ -184844,7 +183396,7 @@ It is recommended to use --prefix to install into other-than-default location, s sc:url "http://github.com/rkapl/endicheck" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2229, edam:topic_3308, @@ -184863,7 +183415,7 @@ EndoDB The endothelial cell database (EndoDB) is a freely accessible added-value sc:url "https://vibcancer.be/software-tools/endodb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3384, edam:topic_3474, @@ -184878,7 +183430,7 @@ EndoDB The endothelial cell database (EndoDB) is a freely accessible added-value sc:url "https://github.com/CapsuleEndoscope/EndoL2H" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3308, edam:topic_3337, @@ -184902,8 +183454,28 @@ An extensive collection of human samples and data from patients, that aids in th sc:name "EndometDB" ; sc:url "https://endometdb.utu.fi/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_3174, + edam:topic_3474, + edam:topic_3697 ; + sc:citation ; + sc:description "Interpreting tree ensemble machine learning models with endoR." ; + sc:featureList edam:operation_0337, + edam:operation_3659, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "endoR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/leylabmpi/endoR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, @@ -184920,8 +183492,32 @@ An extensive collection of human samples and data from patients, that aids in th sc:name "EndoRex" ; sc:url "https://github.com/AEVO-lab/EndoRex" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_3170, + edam:topic_3337, + edam:topic_3519 ; + sc:citation , + "pmcid:PMC8971653", + "pubmed:35092277" ; + sc:description "A package for the temporal refinement of endometrial biopsies using an initial timing value as provided via urinary ovulation test and the measurement of expression for a panel of time-sensitive genes" ; + sc:featureList edam:operation_0314, + edam:operation_3454, + edam:operation_3659, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "EndoTime" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/AE-Mitchell/EndoTime" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -184937,8 +183533,52 @@ An extensive collection of human samples and data from patients, that aids in th sc:url "http://ecoli.med.utoronto.ca/" ; biotools:primaryContact "Andrew Emili" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0114, + edam:topic_2640, + edam:topic_3170, + edam:topic_3308, + edam:topic_3408 ; + sc:citation , + "pmcid:PMC8642973", + "pubmed:34863095" ; + sc:description "The ENsemble Fusion (EnFusion) repo contains a Dockerfile to build a Docker Image that can overlap outputs from 7 fusion detection algorithms, to identify high confidence fusion events." ; + sc:featureList edam:operation_0239, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "EnFusion" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/nch-igm/EnFusion" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0780, + edam:topic_3474, + edam:topic_3518 ; + sc:citation , + "pubmed:34888624" ; + sc:description "A Supervised Ensemble Learning Method for Recovery of Large-scale Gene Regulatory Networks." ; + sc:featureList edam:operation_3436, + edam:operation_3766, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "EnGRaiN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/AluruLab/EnGRaiN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0121, @@ -184954,8 +183594,34 @@ An extensive collection of human samples and data from patients, that aids in th sc:name "Enhancer-IF" ; sc:url "http://thegleelab.org/Enhancer-IF" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3295, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9313278", + "pubmed:35883552" ; + sc:description "A Bi-LSTM and Attention-Based Deep Learning Method for Enhancer Recognition." ; + sc:featureList edam:operation_0224, + edam:operation_0335, + edam:operation_2428 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Enhancer-LSTMAtt" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.biolscience.cn/Enhancer-LSTMAtt/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2229, @@ -184975,8 +183641,32 @@ an updated resource with typical enhancer annotation in 600 tissue/cell types ac sc:softwareVersion "2.0" ; sc:url "http://www.enhanceratlas.org/indexv2.php" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0634, + edam:topic_0659, + edam:topic_0749, + edam:topic_3169 ; + sc:citation , + "pmcid:PMC8982537", + "pubmed:35694152" ; + sc:description "A database of enhancer mediated feed-forward loops for human and mouse." ; + sc:featureList edam:operation_0463, + edam:operation_2421, + edam:operation_3792 ; + sc:license "Not licensed" ; + sc:name "EnhFFL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://lcbb.swjtu.edu.cn/EnhFFL/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3169, @@ -184995,7 +183685,7 @@ an updated resource with typical enhancer annotation in 600 tissue/cell types ac sc:url "https://github.com/wmalab/EnHiC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, @@ -185016,14 +183706,12 @@ an updated resource with typical enhancer annotation in 600 tissue/cell types ac a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2984" ; - sc:name "Pathway or network report" ; - sc:sameAs "http://edamontology.org/data_2984" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2984" ; + sc:name "Pathway or network report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -185040,7 +183728,7 @@ an updated resource with typical enhancer annotation in 600 tissue/cell types ac biotools:primaryContact "Steven Maere" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3334, edam:topic_3384, @@ -185062,7 +183750,7 @@ The ENIGMA Consortium brings together researchers in imaging genomics to underst sc:url "http://enigma-toolbox.readthedocs.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0176, edam:topic_3292, @@ -185087,14 +183775,13 @@ Enlighten2 allows to easily prepare and run molecular dynamics simulations of pr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:name "DNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:author "Marco Fondi" ; @@ -185111,7 +183798,7 @@ Enlighten2 allows to easily prepare and run molecular dynamics simulations of pr biotools:primaryContact "Marco Fondi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0654, @@ -185132,22 +183819,22 @@ Enlighten2 allows to easily prepare and run molecular dynamics simulations of pr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3117" ; - sc:name "Microarray hybridisation data" ; - sc:sameAs "http://edamontology.org/data_3117" ] ; + sc:additionalType "http://edamontology.org/data_3117" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Microarray hybridisation data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3117" ; - sc:name "Microarray hybridisation data" ; - sc:sameAs "http://edamontology.org/data_3117" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3117" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Microarray hybridisation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3295, @@ -185169,8 +183856,30 @@ Enlighten2 allows to easily prepare and run molecular dynamics simulations of pr sc:url "http://bioconductor.org/packages/release/bioc/html/ENmix.html" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_3168, + edam:topic_3308, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8973509", + "pubmed:35361122" ; + sc:description "ENNGene is an application that simplifies the local training of custom Convolutional Neural Network models on Genomic data via an easy to use Graphical User Interface." ; + sc:featureList edam:operation_0267, + edam:operation_0502, + edam:operation_3216, + edam:operation_3359, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "ENNGene" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/ML-Bioinfo-CEITEC/ENNGene" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269, @@ -185191,22 +183900,22 @@ Enlighten2 allows to easily prepare and run molecular dynamics simulations of pr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_1017" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence range" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1017" ; - sc:name "Sequence range" ; - sc:sameAs "http://edamontology.org/data_1017" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -185228,7 +183937,7 @@ Enlighten2 allows to easily prepare and run molecular dynamics simulations of pr biotools:primaryContact "Zuguang Gu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -185243,7 +183952,7 @@ Enlighten2 allows to easily prepare and run molecular dynamics simulations of pr sc:url "https://github.com/ajmazurie/xstats.enrichment" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -185265,7 +183974,7 @@ Enlighten2 allows to easily prepare and run molecular dynamics simulations of pr "Ludwig Geistlinger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0102, @@ -185286,20 +183995,44 @@ Enlighten2 allows to easily prepare and run molecular dynamics simulations of pr sc:url "http://baderlab.org/Software/EnrichmentMap" ; biotools:primaryContact "EnrichmentMap Team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_3168, + edam:topic_3512, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC9252831", + "pubmed:35609985" ; + sc:description "The enrichMiR R package implements various tests to identify miRNAs whose targets are enriched among genesets of interest or a differential expression signature." ; + sc:featureList edam:operation_0337, + edam:operation_0463, + edam:operation_2436, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "enrichMiR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ethz-ins.org/enrichMiR/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_1033" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ensembl gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -185321,7 +184054,7 @@ Enlighten2 allows to easily prepare and run molecular dynamics simulations of pr biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070 ; sc:description "Visualization methods for interpreting functional enrichment results obtained from ORA or GSEA analysis. All the visualization methods are developed based on 'ggplot2' graphics." ; @@ -185340,7 +184073,7 @@ Enlighten2 allows to easily prepare and run molecular dynamics simulations of pr biotools:primaryContact "Guangchuang Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623, edam:topic_3053 ; @@ -185356,7 +184089,7 @@ Enlighten2 allows to easily prepare and run molecular dynamics simulations of pr biotools:primaryContact "Avi Maayan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, edam:topic_0659, @@ -185372,8 +184105,30 @@ EnrichrBot performs six tasks, each task is scheduled as a cron job.""" ; sc:name "EnrichrBot" ; sc:url "https://github.com/MaayanLab/EnrichrBot" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_0209, + edam:topic_2275, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9049841", + "pubmed:35492172" ; + sc:description "A method for virtual screening based on ensemble learning." ; + sc:featureList edam:operation_3891, + edam:operation_3935, + edam:operation_3938 ; + sc:license "Not licensed" ; + sc:name "ENS-VS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/eddyblue/ENS-VS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0154, @@ -185389,8 +184144,30 @@ EnrichrBot performs six tasks, each task is scheduled as a cron job.""" ; sc:name "ensECBS" ; sc:url "https://github.com/keunwan-kist/ECBS" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3170, + edam:topic_3173, + edam:topic_3308, + edam:topic_3452, + edam:topic_3934 ; + sc:citation , + "pubmed:35438146" ; + sc:description "Robust and accurate estimation of cellular fraction from tissue omics data via ensemble deconvolution." ; + sc:featureList edam:operation_3436, + edam:operation_3629, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "EnsDeconv" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/randel/EnsDeconv" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0622, @@ -185439,7 +184216,7 @@ EnrichrBot performs six tasks, each task is scheduled as a cron job.""" ; biotools:primaryContact "Paul Flicek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, edam:topic_0622, @@ -185465,34 +184242,30 @@ The Ensembl/GENCODE human protein-coding gene set linked to COVID-19 can be foun a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3307 ; @@ -185505,31 +184278,8 @@ The Ensembl/GENCODE human protein-coding gene set linked to COVID-19 can be foun "Windows" ; sc:url "https://bigcat-um.github.io/EnsemblOpenAPI/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0749, - edam:topic_2885, - edam:topic_3295, - edam:topic_3411 ; - sc:citation , - "pubmed:31581866" ; - sc:description """DNA methylation profiles of genes associated with angiogenesis in the samples of placenta in pregnancies complicated by intrauterine growth restriction. - -Export custom datasets from Ensembl with this data-mining tool. - -Ensembl is a genome browser for vertebrate genomes that supports research in comparative genomics, evolution, sequence variation and transcriptional regulation. Ensembl annotate genes, computes multiple alignments, predicts regulatory function and collects disease data. Ensembl tools include BLAST, BLAT, BioMart and the Variant Effect Predictor (VEP) for all supported species. - -||| NAME (ensembl) SIMILAR TO (PUB. DIFFERENT) bio.tools/ensembl (Ensembl). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'IUGR pregnancies', 'CpGi IUGR', 'IUGR', 'CpGi'""" ; - sc:featureList edam:operation_0308, - edam:operation_3207, - edam:operation_3208 ; - sc:name "ensembl_autogenerated" ; - sc:url "http://www.ensembl.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2815, @@ -185551,7 +184301,7 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2815, @@ -185573,7 +184323,7 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -185589,18 +184339,16 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Ensembl team" ; @@ -185621,14 +184369,12 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2610" ; - sc:name "Ensembl ID" ; - sc:sameAs "http://edamontology.org/data_2610" ] ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:name "Ensembl ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2610" ; - sc:name "Ensembl ID" ; - sc:sameAs "http://edamontology.org/data_2610" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:name "Ensembl ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3345 ; sc:author "Ensembl team" ; @@ -185648,18 +184394,16 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Ensembl Genomes team" ; @@ -185679,10 +184423,10 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3007" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102 ; sc:author "Ensembl team" ; @@ -185702,18 +184446,16 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Ensembl team" ; @@ -185733,18 +184475,18 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:author "Ensembl Genomes team" ; @@ -185764,14 +184506,12 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2610" ; - sc:name "Ensembl ID" ; - sc:sameAs "http://edamontology.org/data_2610" ] ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:name "Ensembl ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2610" ; - sc:name "Ensembl ID" ; - sc:sameAs "http://edamontology.org/data_2610" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:name "Ensembl ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3345 ; sc:author "Ensembl team" ; @@ -185791,18 +184531,16 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Ensembl team" ; @@ -185822,10 +184560,10 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3007" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102 ; sc:author "Ensembl team" ; @@ -185845,18 +184583,16 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Ensembl team" ; @@ -185876,18 +184612,18 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence coordinates" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Ensembl Genomes team" ; @@ -185907,14 +184643,12 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2610" ; - sc:name "Ensembl ID" ; - sc:sameAs "http://edamontology.org/data_2610" ] ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:name "Ensembl ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2610" ; - sc:name "Ensembl ID" ; - sc:sameAs "http://edamontology.org/data_2610" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:name "Ensembl ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3345 ; sc:author "Ensembl team" ; @@ -185934,14 +184668,13 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Ensembl Genomes team" ; @@ -185961,10 +184694,10 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3007" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102 ; sc:author "Ensembl team" ; @@ -185984,18 +184717,16 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Ensembl team" ; @@ -186016,18 +184747,18 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:author "Ensembl Genomes team" ; @@ -186047,14 +184778,12 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2610" ; - sc:name "Ensembl ID" ; - sc:sameAs "http://edamontology.org/data_2610" ] ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:name "Ensembl ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2610" ; - sc:name "Ensembl ID" ; - sc:sameAs "http://edamontology.org/data_2610" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:name "Ensembl ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3345 ; sc:author "Ensembl team" ; @@ -186074,18 +184803,16 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Ensembl Genomes team" ; @@ -186105,10 +184832,10 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3007" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102 ; sc:author "Ensembl team" ; @@ -186128,14 +184855,13 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Ensembl team" ; @@ -186156,18 +184882,18 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence coordinates" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Ensembl Genomes team" ; @@ -186187,14 +184913,12 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2610" ; - sc:name "Ensembl ID" ; - sc:sameAs "http://edamontology.org/data_2610" ] ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:name "Ensembl ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2610" ; - sc:name "Ensembl ID" ; - sc:sameAs "http://edamontology.org/data_2610" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:name "Ensembl ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3345 ; sc:author "Ensembl team" ; @@ -186214,14 +184938,13 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Ensembl team" ; @@ -186240,7 +184963,7 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com biotools:primaryContact "Ensembl Genomes webteam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -186261,7 +184984,7 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -186284,14 +185007,13 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -186309,7 +185031,7 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com biotools:primaryContact "Andrew Yates" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -186328,7 +185050,7 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com biotools:primaryContact "William McLarenEmail author," . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -186350,7 +185072,7 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -186369,7 +185091,7 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com biotools:primaryContact "Johannes Rainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070 ; sc:description "This library provides capabilities for querying Ensembl MySQL databases and for \"administering\" them. It is compatible with a range of Ensembl releases." ; @@ -186383,8 +185105,28 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com sc:url "https://bitbucket.org/pycogent3/ensembldb3" ; biotools:primaryContact "Australia" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0769, + edam:topic_3335, + edam:topic_3422, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9096110", + "pubmed:35571042" ; + sc:description "An ensemble machine learning algorithm composed of a random forest (RF), a support vector machine (SVM), and extreme gradient boosting (XGB), with the aim of integrating diverse heterogeneous algorithms to enhance the robustness of the final predictive model." ; + sc:featureList edam:operation_0267, + edam:operation_3435, + edam:operation_3631 ; + sc:license "Not licensed" ; + sc:name "Ensemble-AHTPpred" ; + sc:operatingSystem "Linux" ; + sc:url "http://ncrna-pred.com/Ensemble_AHTPpred.htm" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -186401,7 +185143,7 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com sc:url "http://mlg.ucd.ie/nmf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099 ; sc:citation ; @@ -186413,16 +185155,35 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com sc:softwareVersion "1.0" ; sc:url "http://bpla-kernel.dna.bio.keio.ac.jp/clustering/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_0623, + edam:topic_0820, + edam:topic_1775, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8919565", + "pubmed:35287576" ; + sc:description "EnsembleFam: Towards a more accurate protein function prediction in twilight zone" ; + sc:featureList edam:operation_0477, + edam:operation_1777, + edam:operation_2995, + edam:operation_3092 ; + sc:license "Not licensed" ; + sc:name "EnsembleFam" ; + sc:url "https://github.com/NeamulKabir/EnsembleFam" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1893" ; - sc:name "Locus ID" ; - sc:sameAs "http://edamontology.org/data_1893" ] ; + sc:additionalType "http://edamontology.org/data_1893" ; + sc:name "Locus ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1246" ; - sc:name "Sequence cluster (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1246" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1246" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence cluster (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308 ; sc:citation ; @@ -186437,7 +185198,7 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com sc:url "http://bioinformatics.intec.ugent.be/kmarchal/Supplementary_Information_DeSmet_2011/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3376, @@ -186458,7 +185219,7 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com "Patrick B. Grinaway" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3332, @@ -186476,21 +185237,8 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com sc:url "https://github.com/rinikerlab/Ensembler" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2885, - edam:topic_3517, - edam:topic_3810 ; - sc:citation , - "pmcid:PMC6690582", - "pubmed:31404111" ; - sc:description "> VERY_LOW CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/ensembl_genomes (ENSEMBLGENOMES.ORG) | > CORRECT NAME OF TOOL COULD ALSO BE 'six-rowed barley', 'Kazakhstan', 'six-rowed', 'barley' | Association mapping for agronomic traits in six-rowed spring barley from the USA harvested in Kazakhstan | Ensembl Genomes: Extending Ensembl across the taxonomic space | Ensembl Genomes Archive Sites Now Available | Ensembl Genomes now has a new set of archive sites from July 2018. These can be found at the following URLs" ; - sc:featureList edam:operation_0337, - edam:operation_3196 ; - sc:name "ensemblgenomes" ; - sc:url "http://ensemblgenomes.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -186506,14 +185254,14 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091, @@ -186532,7 +185280,7 @@ Ensembl is a genome browser for vertebrate genomes that supports research in com biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0632, edam:topic_0780, @@ -186553,7 +185301,7 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E sc:url "https://enset.aau.edu.et/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -186566,7 +185314,7 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E sc:url "http://dna.engr.uconn.edu/?page_id=25" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -186588,14 +185336,14 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation , @@ -186619,14 +185367,12 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3077 ; sc:citation , @@ -186656,7 +185402,7 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E sc:url "http://emboss.open-bio.org/rel/rel6/apps/entret.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -186685,7 +185431,7 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E biotools:primaryContact "Entrez contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -186708,14 +185454,13 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1075" ; - sc:name "Protein family identifier" ; - sc:sameAs "http://edamontology.org/data_1075" ] ; + sc:additionalType "http://edamontology.org/data_1075" ; + sc:name "Protein family identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein family report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0194, @@ -186732,7 +185477,7 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E sc:url "http://www.ncbi.nlm.nih.gov/sites/entrez?db=proteinclusters" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3518 ; @@ -186753,20 +185498,42 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E sc:url "https://cran.r-project.org/web/packages/EntropyExplorer/index.html" ; biotools:primaryContact "Kai Wang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3068, + edam:topic_3315, + edam:topic_3372, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8568273", + "pubmed:34735497" ; + sc:description "An open-source toolkit for entropic time-series analysis." ; + sc:featureList edam:operation_0455, + edam:operation_3096, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "EntropyHub" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.EntropyHub.xyz" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0846" ; - sc:name "Chemical formula" ; - sc:sameAs "http://edamontology.org/data_0846" ] ; + sc:additionalType "http://edamontology.org/data_0846" ; + sc:encodingFormat "http://edamontology.org/format_3554" ; + sc:name "Chemical formula" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Web application" ; @@ -186788,26 +185555,26 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_2291" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "UniProt ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2291" ; - sc:name "UniProt ID" ; - sc:sameAs "http://edamontology.org/data_2291" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2291" ; - sc:name "UniProt ID" ; - sc:sameAs "http://edamontology.org/data_2291" ], + sc:additionalType "http://edamontology.org/data_2291" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "UniProt ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091 ; @@ -186827,7 +185594,7 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E "Roger Day" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0610, edam:topic_0625, @@ -186842,7 +185609,7 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E sc:url "https://github.com/allogamous/EnvRtype" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0821, edam:topic_3070, @@ -186861,8 +185628,28 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E sc:url "https://www.mathworks.com/matlabcentral/fileexchange/26653-enzkin" ; biotools:primaryContact "Giuseppe Cardillo" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0821, + edam:topic_3314, + edam:topic_3315 ; + sc:citation , + "pubmed:34888719" ; + sc:description "Automatic Assembly and Calibration of Models of Enzymatic Reactions Based on Ordinary Differential Equations." ; + sc:featureList edam:operation_0310, + edam:operation_0334, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "ENZO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://enzo.cmm.ki.si/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0780, edam:topic_0821, @@ -186877,7 +185664,7 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E sc:url "https://github.com/deeprob/ThioesteraseEnzymeSpecificity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0821 ; sc:citation ; @@ -186896,7 +185683,7 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E biotools:primaryContact "ENZYME helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0821 ; sc:citation ; @@ -186912,22 +185699,21 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -186973,7 +185759,7 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E biotools:primaryContact "EnzymeMiner team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0821 ; sc:citation ; @@ -186991,7 +185777,7 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E biotools:primaryContact "Henning Hermjakob" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_0821, @@ -187010,7 +185796,7 @@ Our Ensete Knowledge Base is a repository of information, sharing knowledge on E sc:url "http://www.rxnfinder.org/enzymine/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, edam:topic_3170, @@ -187030,262 +185816,256 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0955" ; + sc:name "Data index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3210" ; - sc:name "Genome index" ; - sc:sameAs "http://edamontology.org/data_3210" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_3210" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Genome index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_3210" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Genome index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_0955" ; + sc:name "Data index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0955" ; - sc:name "Data index" ; - sc:sameAs "http://edamontology.org/data_0955" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0955" ; - sc:name "Data index" ; - sc:sameAs "http://edamontology.org/data_0955" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3210" ; - sc:name "Genome index" ; - sc:sameAs "http://edamontology.org/data_3210" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3210" ; - sc:name "Genome index" ; - sc:sameAs "http://edamontology.org/data_3210" ], + sc:additionalType "http://edamontology.org/data_0955" ; + sc:encodingFormat "http://edamontology.org/format_3327" ; + sc:name "Data index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0955" ; - sc:name "Data index" ; - sc:sameAs "http://edamontology.org/data_0955" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_3210" ; + sc:name "Genome index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3210" ; + sc:name "Genome index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0955" ; - sc:name "Data index" ; - sc:sameAs "http://edamontology.org/data_0955" ], + sc:additionalType "http://edamontology.org/data_0955" ; + sc:encodingFormat "http://edamontology.org/format_3327" ; + sc:name "Data index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0955" ; - sc:name "Data index" ; - sc:sameAs "http://edamontology.org/data_0955" ], + sc:additionalType "http://edamontology.org/data_0955" ; + sc:encodingFormat "http://edamontology.org/format_3327" ; + sc:name "Data index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0955" ; - sc:name "Data index" ; - sc:sameAs "http://edamontology.org/data_0955" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0955" ; + sc:encodingFormat "http://edamontology.org/format_3327" ; + sc:name "Data index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3210" ; - sc:name "Genome index" ; - sc:sameAs "http://edamontology.org/data_3210" ], + sc:additionalType "http://edamontology.org/data_3210" ; + sc:name "Genome index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_0955" ; + sc:name "Data index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0955" ; - sc:name "Data index" ; - sc:sameAs "http://edamontology.org/data_0955" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3210" ; - sc:name "Genome index" ; - sc:sameAs "http://edamontology.org/data_3210" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script", "Workflow" ; @@ -187313,14 +186093,13 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2749" ; - sc:name "Genome identifier" ; - sc:sameAs "http://edamontology.org/data_2749" ] ; + sc:additionalType "http://edamontology.org/data_2749" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Genome identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3511 ; @@ -187337,7 +186116,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "http://bioinformatics.psb.ugent.be/software/details/EP3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3361, @@ -187353,14 +186132,14 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "http://lab.malab.cn/~lijing/EP3.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "EPACTS (Efficient and Parallelizable Association Container Toolbox) is a versatile software pipeline to perform various statistical tests for identifying genome-wide association from sequence data through a user-friendly interface, both to scientific analysts and to method developers." ; sc:featureList edam:operation_2238 ; sc:name "EPACTS" ; sc:url "https://genome.sph.umich.edu/wiki/EPACTS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation ; @@ -187370,8 +186149,49 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:operatingSystem "Linux" ; sc:url "http://ttic.uchicago.edu/~jinbo/software/EPAD_guide.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Suite" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_0176, + edam:topic_2275, + edam:topic_3047 ; + sc:citation , + "pmcid:PMC9052371", + "pubmed:35495446" ; + sc:description "A Effective Polarizable Bond method" ; + sc:featureList edam:operation_0478, + edam:operation_2476, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "EPB" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/Xundrug/EPB" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3474 ; + sc:citation , + "pubmed:34982682" ; + sc:description "Efficient 3D Point Cloud Feature Learning for Large-Scale Place Recognition (EPC-Net)" ; + sc:featureList edam:operation_2422, + edam:operation_3436, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "EPC-Net" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/fpthink/EPC-Net" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0166 ; sc:citation ; @@ -187382,7 +186202,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "http://sysbio.unl.edu/EPCES" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0749 ; @@ -187402,18 +186222,15 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1505" ; - sc:name "Amino acid index (molecular weight)" ; - sc:sameAs "http://edamontology.org/data_1505" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_1505" ; + sc:name "Amino acid index (molecular weight)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -187443,7 +186260,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "http://emboss.open-bio.org/rel/rel6/apps/epestfind.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application", "Web service" ; @@ -187468,7 +186285,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc "George Potamias" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -187486,7 +186303,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "http://www.pharmbioinf.uni-freiburg.de/epharmalib" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3173 ; @@ -187503,7 +186320,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc biotools:primaryContact "Pierre-Étienne Jacques" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2229, @@ -187524,7 +186341,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc "Maria Colomé-Tatché" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -187546,7 +186363,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc biotools:primaryContact "Garrick Aden-Buie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2885, @@ -187567,7 +186384,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc biotools:primaryContact "Hsuan-Yu Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0097, @@ -187585,8 +186402,31 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "http://computational-epigenomics.com/en/epiannotator" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_0196, + edam:topic_2830, + edam:topic_3948 ; + sc:citation , + "pmcid:PMC9102138", + "pubmed:35571557" ; + sc:description "A Tool for Assembling, Searching, and Classifying B-Cell Epitopes" ; + sc:featureList edam:operation_0252, + edam:operation_0310, + edam:operation_0416, + edam:operation_3431 ; + sc:license "Not licensed" ; + sc:name "EpiBuilder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://epibuilder.sourceforge.io" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -187604,8 +186444,28 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:name "EPIC" ; sc:url "https://github.com/GfellerLab/EPIC" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_3306, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9072698", + "pubmed:35513367" ; + sc:description "EPicker is an exemplar-based continual learning approach for knowledge accumulation in cryoEM particle picking." ; + sc:featureList edam:operation_3458, + edam:operation_3927, + edam:operation_3937 ; + sc:license "GPL-3.0" ; + sc:name "EPicker" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareHelp ; + sc:url "http://thuem.net/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2269, @@ -187626,7 +186486,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "https://github.com/Elnitskilab/EpiClass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0102, @@ -187646,7 +186506,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "https://github.com/shahcompbio/Epiclomal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Command-line tool", "Library", @@ -187664,7 +186524,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "https://github.com/inab/epico-data-analysis-portal/wiki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -187684,7 +186544,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "http://mulinlab.org/epicoloc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3305 ; sc:citation ; @@ -187700,8 +186560,31 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "http://www.repidemicsconsortium.org/epicontacts/" ; biotools:primaryContact "VP Nagraj" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3170, + edam:topic_3295, + edam:topic_3308, + edam:topic_3656 ; + sc:citation , + "pmcid:PMC9338487", + "pubmed:35906531" ; + sc:description "EpiConv is an algorithm of clustering scATAC-seq data and correcting batch effects." ; + sc:featureList edam:operation_3222, + edam:operation_3432, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "epiConv" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/LiLin-biosoft/epiConv" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3173 ; @@ -187717,7 +186600,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "https://epidb.animalgenome.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -187733,7 +186616,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc biotools:primaryContact "Jens Kappey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3295, edam:topic_3518 ; @@ -187754,7 +186637,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc biotools:primaryContact "Shijie Charles Zheng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -187772,8 +186655,48 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc "Mac" ; sc:url "http://github.com/mcollatz/EpiDope" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_3047, + edam:topic_3173, + edam:topic_3366 ; + sc:citation , + "pmcid:PMC4494013", + "pubmed:26153137" ; + sc:description "EpiFactors is a database for epigenetic factors such as histones, protamines, other proteins and lncRNAs. It compiles functional information about human and mouse epigenetic regulators, their complexes, and expression in multiple cell types to facilitate the work of researchers in the field of epigenetics." ; + sc:featureList edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "Freeware" ; + sc:name "EpiFactors" ; + sc:url "https://epifactors.autosome.org/" ; + biotools:primaryContact . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3305, + edam:topic_3324 ; + sc:citation , + "pmcid:PMC8448340", + "pubmed:34492011" ; + sc:description """Improved estimation of time-varying reproduction numbers at low case incidence and between epidemic waves. + +Main functions: epiFilter (or epiFilterSm) performs forward filtering to generate causal R estimates; epiSmooth performs backward smoothing to generate R estimates that use all possible information and recursPredict provides one-step-ahead predictions.""" ; + sc:featureList edam:operation_3435, + edam:operation_3503, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:name "EpiFilter" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/kpzoo/EpiFilter" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3324 ; sc:citation , @@ -187786,20 +186709,8 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:softwareHelp ; sc:url "https://www.repidemicsconsortium.org/epiflows" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3324 ; - sc:citation , - "pmcid:PMC6738191", - "pubmed:31543947" ; - sc:description "an R package for risk assessment of travel-related spread of disease | ☣✈️ Risk assessment of travel-related disease spread | Predicting Disease Spread from Flow Data | Welcome to the epiflows package! | epiflows is a package for predicting and visualising spread of infectious diseases based on flows between geographical locations, e.g., countries. epiflows provides functions for calculating spread estimates, handling flow data, and visualization | Provides functions and classes designed to handle and visualise epidemiological flows between locations. Also contains a statistical method for predicting disease spread from flow data initially described in Dorigatti et al. (2017) . This package is part of the RECON () toolkit for outbreak analysis" ; - sc:featureList edam:operation_0337 ; - sc:license "MIT" ; - sc:name "epiflows_autogenerated" ; - sc:url "https://www.repidemicsconsortium.org/epiflows" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -187819,7 +186730,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc biotools:primaryContact "Pierre R. Bushel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_0821, @@ -187838,7 +186749,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "https://github.com/nioo-knaw/epiGBS2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_0769, @@ -187855,7 +186766,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "https://github.com/baumbachlab/epigen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_3295, edam:topic_3325, @@ -187872,7 +186783,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "http://epigen.ccm.sickkids.ca/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -187891,7 +186802,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "https://pypi.org/project/EpigeneticPacemaker/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, @@ -187910,7 +186821,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169, @@ -187933,7 +186844,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3173, edam:topic_3474 ; @@ -187948,7 +186859,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc biotools:primaryContact "Dr. Joachim Büch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3382 ; @@ -187960,7 +186871,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "https://imagej.net/EpiGraph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Database portal", "Library", @@ -187980,7 +186891,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "https://epigraphdb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3295, @@ -188002,7 +186913,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc biotools:primaryContact "Sheng Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -188018,7 +186929,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "http://epilog-tool.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0153, @@ -188038,7 +186949,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "http://EpiMetal.computationalmedicine.fi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0659, @@ -188057,7 +186968,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3324, @@ -188078,7 +186989,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc biotools:primaryContact "Samuel Jenness" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -188097,7 +187008,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "http://symbiosis.iis.sinica.edu.tw/epimolas/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3299, edam:topic_3305, @@ -188114,7 +187025,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "https://www.epimox.polimi.it" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -188130,8 +187041,27 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:softwareHelp ; sc:url "https://www.vin.bg.ac.rs/180/tools/epimut.php" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_2640, + edam:topic_3293, + edam:topic_3474, + edam:topic_3974 ; + sc:citation , + "pubmed:35412634" ; + sc:description "A nearest neighbor machine learning approach to predict cancer driver genes from the evolutionary action of coding variants." ; + sc:featureList edam:operation_2454, + edam:operation_3196, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "EPIMUTESTR" ; + sc:url "https://github.com/LichtargeLab/EPIMUTESTR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -188149,7 +187079,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "https://github.com/enovoa/EpiNano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -188168,7 +187098,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc biotools:primaryContact "Martin Pirkl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0204, @@ -188190,7 +187120,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "https://epiregio.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3169, @@ -188211,7 +187141,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "https://github.com/Huising-Lab/epiRomics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2229, @@ -188232,7 +187162,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "https://github.com/aet21/EpiSCORE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -188248,8 +187178,31 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:name "EPISFA" ; sc:url "https://github.com/doublexism/episfa" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0736, + edam:topic_2830, + edam:topic_3305, + edam:topic_3966 ; + sc:citation , + "pmcid:PMC8500151", + "pubmed:34585726" ; + sc:description "Metadata-driven search server for analyzing amino acid changes within epitopes of SARS-CoV-2 and other viral species." ; + sc:featureList edam:operation_0416, + edam:operation_2421, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "EpiSurf" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://gmql.eu/episurf/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2640, @@ -188267,7 +187220,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "https://doi.org/10.5281/zenodo.2632938" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0625, @@ -188283,16 +187236,33 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "http://www.epitoolkit.de/" ; biotools:primaryContact "Oliver Kohlbacher" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_3966, + edam:topic_3967 ; + sc:citation ; + sc:description "Epitopedia: identifying molecular mimicry of known immune epitopes." ; + sc:featureList edam:operation_0416 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Epitopedia" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/cbalbin-FIU/Epitopedia" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_2205" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3534 ; sc:author ; @@ -188307,7 +187277,7 @@ EoRNA is a Barley Expression Database that displays gene and transcript abundanc sc:url "https://github.com/dmnfarrell/epitopepredict" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -188330,7 +187300,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:url "https://github.com/hzi-bifo/epitope-prediction" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2830, @@ -188348,8 +187318,31 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:name "EpiVIA" ; sc:url "https://github.com/VahediLab/epiVIA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0632, + edam:topic_0654, + edam:topic_3173, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC9308245", + "pubmed:35870905" ; + sc:description "A Tool for Exploratory Data Analysis and Visualisation within Epigenome Wide Methylation Analyses (EWAS)." ; + sc:featureList edam:operation_0337, + edam:operation_3204, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "EpiVisR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/SteRoe/EpiVisR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -188365,7 +187358,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:url "https://github.com/epiviz/epiviz-feed-computation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0769, @@ -188385,7 +187378,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo biotools:primaryContact "Hector Corrada Bravo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -188404,7 +187397,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo biotools:primaryContact "Hector Corrada Bravo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622 ; sc:description "API for interactive visualization of genomic data using epiviz web components. Objects in R/BioConductor can be used to generate interactive R markdown/notebook documents or can be visualized in the R Studio's default viewer." ; @@ -188421,7 +187414,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo biotools:primaryContact "Hector Corrada Bravo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -188439,7 +187432,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo biotools:primaryContact "Hector Corrada Bravo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -188457,7 +187450,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo biotools:primaryContact "Hector Corrada Bravo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -188475,8 +187468,31 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:url "http://bioconductor.org/packages/release/bioc/html/epivizrStandalone.html" ; biotools:primaryContact "Hector Corrada Bravo" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_2885, + edam:topic_3173, + edam:topic_3517, + edam:topic_3940 ; + sc:citation , + "pmcid:PMC9252822", + "pubmed:35639508" ; + sc:description "A web server for prediction, analysis and visualization of enhancer-promoter interactions." ; + sc:featureList edam:operation_0337, + edam:operation_0440, + edam:operation_3661 ; + sc:license "Not licensed" ; + sc:name "EPIXplorer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://www.csuligroup.com/EPIXplorer" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0199, @@ -188502,7 +187518,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo biotools:primaryContact "Jamie Waese" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2275, @@ -188524,7 +187540,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo biotools:primaryContact "ePMV Support (Subject: [ePMV])" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -188542,7 +187558,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -188564,22 +187580,18 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -188611,22 +187623,18 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -188657,7 +187665,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:url "http://emboss.open-bio.org/rel/rel6/apps/eprimer32.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269, @@ -188672,7 +187680,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo biotools:primaryContact "Usman Roshan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3316 ; sc:citation , @@ -188686,7 +187694,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:url "https://github.com/lmbxmu/EPruner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Script" ; sc:applicationSubCategory edam:topic_3053, @@ -188705,7 +187713,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo "José Luis Ambite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -188725,14 +187733,12 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -188748,7 +187754,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:url "http://bioinformatics.intec.ugent.be/epsilon/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -188766,7 +187772,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:url "https://github.com/LiangYu-Xidian/EPSOL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0166, @@ -188783,7 +187789,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:url "http://sysbio.unl.edu/EPSVR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_3474, @@ -188798,7 +187804,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:url "https://github.com/xiaozhi0689/EPTool" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -188816,7 +187822,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:url "https://CRAN.R-project.org/package=EPX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workbench" ; sc:applicationSubCategory edam:topic_0769 ; @@ -188830,7 +187836,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo biotools:primaryContact "Oleksandr Semeniuta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0108, @@ -188844,7 +187850,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:url "https://github.com/baigouy/EPySeg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3379, @@ -188862,7 +187868,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:url "http://lab.rockefeller.edu/krueger/EQScore" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, @@ -188881,7 +187887,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:url "https://www.ebi.ac.uk/eqtl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation ; @@ -188897,7 +187903,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:url "https://github.com/timflutre/eqtlbma/wiki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -188916,7 +187922,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:url "https://github.com/ziadbkh/eQTLHap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0625, @@ -188934,7 +187940,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo sc:url "https://github.com/QidiPeng/eQTLMAPT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -188951,7 +187957,7 @@ EpitopeVec predicts linear B-cell epitopes. It takes protein sequences (FASTA fo biotools:primaryContact "Dimitris Vavoulis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -188974,7 +187980,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; sc:url "https://github.com/horsedayday/eQTLsingle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -188988,7 +187994,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; sc:url "http://eqtnminer.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -189004,7 +188010,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; sc:url "https://github.com/RitchieLab/eQTpLot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3127 ; @@ -189019,14 +188025,12 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -189056,7 +188060,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/equicktandem.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0123, @@ -189076,7 +188080,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; biotools:primaryContact "eQuilibrator Forum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3474 ; @@ -189094,7 +188098,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; "Jeroen Van Houtte" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3324, @@ -189109,7 +188113,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; sc:url "https://github.com/soares-f/ER-CoV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3170 ; @@ -189124,7 +188128,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; biotools:primaryContact "Sean Upchurch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -189141,14 +188145,14 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -189168,7 +188172,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; biotools:primaryContact "Sarah Munro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Plug-in" ; sc:applicationSubCategory edam:topic_0611, @@ -189185,7 +188189,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; biotools:primaryContact "Janaki Shanmugam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -189202,7 +188206,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; "Mingfu Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation ; @@ -189217,7 +188221,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; sc:url "http://troll.med.unc.edu/erebus/login.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:description "Producing an improve assembly in presence of a sequence belonging to a closely related organism." ; @@ -189231,7 +188235,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -189247,7 +188251,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; sc:url "https://github.com/Starlitnightly/ERgene" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0114, @@ -189277,7 +188281,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275 ; sc:citation ; @@ -189292,7 +188296,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; sc:url "https://github.com/ElsevierSoftwareX/SOFTX-D-18-00001" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3173 ; sc:description "Software and data to support epigenomic road map adventures." ; @@ -189308,8 +188312,31 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/erma.html" ; biotools:primaryContact "VJ Carey" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0602, + edam:topic_0749, + edam:topic_3172, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC9252789", + "pubmed:35489073" ; + sc:description "ERMer: A serverless platform for navigating, analyzing, and visualizing Escherichiacoli regulatory landscape through graph database." ; + sc:featureList edam:operation_0224, + edam:operation_0337, + edam:operation_1812 ; + sc:license "Apache-2.0" ; + sc:name "ERMer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ermer.biodesign.ac.cn/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -189333,7 +188360,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; biotools:primaryContact "ErmineJ support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -189355,14 +188382,13 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_2033" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation ; @@ -189377,7 +188403,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; sc:url "https://github.com/pkerpedjiev/ernwin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3315 ; @@ -189397,7 +188423,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -189414,7 +188440,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; biotools:primaryContact "Daniel Gautheret" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2640, @@ -189436,7 +188462,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; sc:url "http://codes.bio/erpred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3474 ; @@ -189451,7 +188477,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; biotools:primaryContact "Skynet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation "pubmed:22492192" ; @@ -189463,7 +188489,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; biotools:primaryContact "Xiao Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0196, @@ -189481,7 +188507,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; sc:url "https://endeavorbio.com/downloads/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3474, @@ -189497,7 +188523,7 @@ Discovering single-cell eQTLs from scRNA-seq data only.""" ; sc:url "http://compgenomics.utsa.edu/ES-ARCNN/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0219, edam:topic_3379, edam:topic_3474 ; @@ -189514,7 +188540,7 @@ Formerly known as trial2rev.""" ; sc:url "https://github.com/evidence-surveillance/trial2rev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0160, @@ -189533,7 +188559,7 @@ Formerly known as trial2rev.""" ; biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3169, @@ -189553,7 +188579,7 @@ Formerly known as trial2rev.""" ; "Zheng Wei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2830, @@ -189572,7 +188598,7 @@ Formerly known as trial2rev.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3071 ; @@ -189587,7 +188613,7 @@ Formerly known as trial2rev.""" ; biotools:primaryContact "Eric A. Welsh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2269, @@ -189605,14 +188631,14 @@ Formerly known as trial2rev.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2060" ; + sc:name "Gene expression profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2229, @@ -189636,7 +188662,7 @@ Formerly known as trial2rev.""" ; sc:url "http://biit.cs.ut.ee/escd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -189656,7 +188682,7 @@ Formerly known as trial2rev.""" ; sc:url "https://escher-trace.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -189672,7 +188698,7 @@ Formerly known as trial2rev.""" ; sc:url "https://github.com/JINJINT/SplatterESCO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3320, @@ -189697,7 +188723,7 @@ Formerly known as trial2rev.""" ; biotools:primaryContact "Woody Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092 ; @@ -189716,7 +188742,7 @@ Formerly known as trial2rev.""" ; biotools:primaryContact "Laure Cougnaud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3293, @@ -189733,7 +188759,7 @@ Formerly known as trial2rev.""" ; biotools:primaryContact "Ivan Ovcharenko" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3305, @@ -189757,8 +188783,31 @@ In 2018, the ESID Registry WP renewed its call to support national registries an sc:name "ESID" ; sc:url "https://esid.org/Working-Parties/Registry-Working-Party/ESID-Registry" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0637, + edam:topic_3314, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8445633", + "pubmed:34529673" ; + sc:description "A computationally intelligent method to identify earthworm species (E. fetida) from digital images." ; + sc:featureList edam:operation_3443, + edam:operation_3460, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ESIDE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://eside.pythonanywhere.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:description "eSignal is a database of eMOTIFs and eMATRICES generated exclusively from signal transduction proteins. ESIGNAL can be used to discover signal transduction functions in new proteins." ; @@ -189771,30 +188820,30 @@ In 2018, the ESID Registry WP renewed its call to support national registries an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_0844" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecular mass" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0844" ; - sc:name "Molecular mass" ; - sc:sameAs "http://edamontology.org/data_0844" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0844" ; - sc:name "Molecular mass" ; - sc:sameAs "http://edamontology.org/data_0844" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0844" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecular mass" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520, @@ -189811,30 +188860,30 @@ In 2018, the ESID Registry WP renewed its call to support national registries an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0844" ; - sc:name "Molecular mass" ; - sc:sameAs "http://edamontology.org/data_0844" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0844" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecular mass" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_0844" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecular mass" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0844" ; - sc:name "Molecular mass" ; - sc:sameAs "http://edamontology.org/data_0844" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520, @@ -189850,14 +188899,14 @@ In 2018, the ESID Registry WP renewed its call to support national registries an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Peptide mass fingerprint" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Peptide mass fingerprint" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -189876,7 +188925,7 @@ In 2018, the ESID Registry WP renewed its call to support national registries an sc:url "http://www.bioprocess.org/esiprot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3320, @@ -189896,7 +188945,7 @@ In 2018, the ESID Registry WP renewed its call to support national registries an sc:url "https://eskip-finder.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0123, @@ -189914,11 +188963,49 @@ In 2018, the ESID Registry WP renewed its call to support national registries an "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/eslpred/" ; + sc:url "https://webs.iiitd.edu.in/raghava/eslpred/" ; biotools:primaryContact "G.P.S. Raghava" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC2612013", + "pubmed:19038062" ; + sc:description "\"ESLpred2\" is an improved version of our previous most popular method, ESLpred, which can predict four major localizations (cytoplasmic, mitochondrial, nuclear and extracellular) with an accuracy of 88%." ; + sc:featureList edam:operation_2945 ; + sc:name "eslpred2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/eslpred2/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_0199, + edam:topic_0203, + edam:topic_3295, + edam:topic_3895 ; + sc:citation , + "pubmed:34928133" ; + sc:description "A Novel Approach to Identify and Avoid Mutational Hotspots in DNA Sequences While Maintaining High Expression Levels." ; + sc:featureList edam:operation_0284, + edam:operation_0554, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:name "ESO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://www.cs.tau.ac.il/~tamirtul/ESO/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -189942,7 +189029,7 @@ In 2018, the ESID Registry WP renewed its call to support national registries an sc:url "http://evs.gs.washington.edu/EVS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0209, edam:topic_3474 ; @@ -189956,8 +189043,30 @@ In 2018, the ESID Registry WP renewed its call to support national registries an sc:name "ESP DNN" ; sc:url "https://github.com/AstexUK/ESP_DNN" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0130, + edam:topic_0593, + edam:topic_0602, + edam:topic_3306, + edam:topic_3365 ; + sc:citation , + "pmcid:PMC8489228", + "pubmed:34605428" ; + sc:description "An online data-analysis platform for molecular biophysics." ; + sc:featureList edam:operation_0455, + edam:operation_0482, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "eSPC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://spc.embl-hamburg.de/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0610, @@ -189974,14 +189083,14 @@ In 2018, the ESID Registry WP renewed its call to support national registries an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_2006" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -189998,7 +189107,7 @@ In 2018, the ESID Registry WP renewed its call to support national registries an biotools:primaryContact "Yijun Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0081 ; @@ -190016,7 +189125,7 @@ In 2018, the ESID Registry WP renewed its call to support national registries an biotools:primaryContact "Silvio C.E. Tosatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3168, @@ -190035,7 +189144,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:url "https://github.com/stefanofranzini/essHIC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -190054,18 +189163,15 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ], + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -190095,7 +189201,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:url "http://emboss.open-bio.org/rel/rel6/apps/est2genome.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -190110,7 +189216,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:url "http://genius.embnet.dkfz-heidelberg.de/menu/hobit/embdoc/est2genome.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0196, @@ -190127,7 +189233,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:url "http://estexplorer.biolinfo.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2640, @@ -190149,7 +189255,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3301 ; sc:citation "pubmed:18426324", @@ -190165,7 +189271,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon biotools:primaryContact "Igor Podlubny" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3071 ; @@ -190181,7 +189287,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon biotools:primaryContact "Kay H. Brodersen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2269, @@ -190198,7 +189304,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:url "https://github.com/michorlab/estipop" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3512 ; @@ -190212,22 +189318,20 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2704" ; - sc:name "Clone ID (IMAGE)" ; - sc:sameAs "http://edamontology.org/data_2704" ], + sc:additionalType "http://edamontology.org/data_2292" ; + sc:name "GenBank accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2292" ; - sc:name "GenBank accession" ; - sc:sameAs "http://edamontology.org/data_2292" ] ; + sc:additionalType "http://edamontology.org/data_2704" ; + sc:name "Clone ID (IMAGE)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ], + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene transcript report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene transcript report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3512 ; sc:citation ; @@ -190239,7 +189343,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:url "http://genome-www5.stanford.edu/cgi-bin/SMD/source/sourceSearch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3308 ; @@ -190253,8 +189357,28 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:url "http://myhits.isb-sib.ch/cgi-bin/estscan" ; biotools:primaryContact "ESTScan Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3452, + edam:topic_3474, + edam:topic_3519 ; + sc:citation , + "pmcid:PMC8405348", + "pubmed:34483709" ; + sc:description "An Ensemble Transfer Learning Network for COVID-19 detection from lung CT-scan images." ; + sc:featureList edam:operation_3436, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ET-NET" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Rohit-Kundu/ET-NET_Covid-Detection" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -190272,7 +189396,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -190293,10 +189417,9 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -190326,7 +189449,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:url "http://emboss.open-bio.org/rel/rel6/apps/etandem.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3068 ; @@ -190341,7 +189464,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:url "http://etest.vbi.vt.edu/etblast3/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3417 ; sc:citation ; @@ -190358,7 +189481,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon biotools:primaryContact "Pawel Kasprowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175, edam:topic_3360, @@ -190377,7 +189500,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:url "http://big.hanyang.ac.kr/ETCHING" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474, @@ -190388,7 +189511,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:url "https://github.com/bernardesrodrigoc/Ethoflow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3500, @@ -190401,8 +189524,26 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:name "EthoLoop" ; sc:url "http://www.etholoop.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_2640, + edam:topic_3957 ; + sc:citation , + "pubmed:35771625" ; + sc:description "Extensive Tool for Network Analysis (ETNA) is an user-firendly graphical interface for the network analysis that contains classical measures and simulation-based ones." ; + sc:featureList edam:operation_2492, + edam:operation_3927, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ETNA" ; + sc:url "https://githubtocolab.com/AlicjaNowakowska/ETNA/blob/main/ETNAColab.ipynb" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3306, @@ -190420,7 +189561,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon biotools:primaryContact "Daan P. Geerke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -190437,7 +189578,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:url "http://klab.sjtu.edu.cn/enhancer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Script" ; sc:applicationSubCategory edam:topic_0199, @@ -190453,7 +189594,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:url "https://github.com/WangEdwinLab/eTumorMetastasis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0632, @@ -190468,7 +189609,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:url "http://EUAdb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3301 ; @@ -190490,14 +189631,13 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -190514,7 +189654,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon biotools:primaryContact "Yves Van de Peer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0621, @@ -190533,7 +189673,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon biotools:primaryContact "Sylvain Foissac" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -190555,14 +189695,13 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1097" ; - sc:name "Sequence accession (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1097" ] ; + sc:additionalType "http://edamontology.org/data_1097" ; + sc:name "Sequence accession (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0781 ; sc:citation ; @@ -190575,8 +189714,32 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:softwareHelp ; sc:url "http://euhcvdb.ibcp.fr/euHCVdb/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_0160, + edam:topic_0621, + edam:topic_3324 ; + sc:citation , + "pmcid:PMC8728146", + "pubmed:34718738" ; + sc:description "This computational biology resource mainly focuses on annotation and detection of eukaryotic linear motifs (ELMs) by providing both a repository of annotated motif data and an exploratory tool for motif prediction." ; + sc:featureList edam:operation_0224, + edam:operation_0238, + edam:operation_0239, + edam:operation_0245 ; + sc:isAccessibleForFree true ; + sc:name "Eukaryotic Linear Motif" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://elm.eu.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0637, @@ -190597,7 +189760,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:url "https://github.com/cjneely10/EukMetaSanity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3500, @@ -190619,14 +189782,14 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0219 ; sc:author "Stephan Weise" ; @@ -190646,7 +189809,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0152, edam:topic_0593, @@ -190668,7 +189831,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon biotools:primaryContact "Stuart M. Haslam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3068 ; sc:description "Archive of life sciences journal literature." ; @@ -190683,10 +189846,10 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3505" ; - sc:name "Bibliography" ; - sc:sameAs "http://edamontology.org/data_3505" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3505" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Bibliography" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068 ; sc:author "Literature Services" ; @@ -190706,10 +189869,10 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3505" ; - sc:name "Bibliography" ; - sc:sameAs "http://edamontology.org/data_3505" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3505" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Bibliography" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068 ; sc:citation ; @@ -190730,10 +189893,10 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0971" ; - sc:name "Article" ; - sc:sameAs "http://edamontology.org/data_0971" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0971" ; + sc:encodingFormat "http://edamontology.org/format_3506" ; + sc:name "Article" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3071 ; @@ -190753,7 +189916,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon biotools:primaryContact "Jo McEntyre" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3473 ; @@ -190769,7 +189932,7 @@ Here we introduce essHi-C, a method to isolate the specific, or essential compon sc:url "http://europepmc.org/RestfulWebService" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """INFRAFRONTIER is the European Research Infrastructure for phenotyping and archiving of model mammalian genomes. The core services of INFRAFRONTIER comprise the systemic phenotyping of mouse mutants in the participating mouse clinics, and the archiving and distribution of mouse mutant lines by the European Mouse Mutant Archive (EMMA). EMMA is a non-profit repository for the collection, archiving (via cryopreservation) and distribution of relevant mutant mouse strains essential for basic biomedical research. The laboratory mouse is the most important mammalian model for studying genetic and multi-factorial diseases in man. The comprehensive physical and data resources of EMMA support basic biomedical and preclinical research, and the available research tools and mouse models of human disease offer the opportunity to develop a better understanding of molecular disease mechanisms and may provide the foundation for the development of diagnostic, prognostic and therapeutic strategies.""" ; sc:featureList edam:operation_3431 ; @@ -190777,7 +189940,7 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat sc:url "https://www.infrafrontier.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3068 ; @@ -190793,7 +189956,7 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat sc:url "https://europepmc.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -190815,14 +189978,14 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -190847,7 +190010,7 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat biotools:primaryContact "Help desk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -190863,7 +190026,7 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat sc:url "https://www.nordgen.org/en/farm-animals/resources/ocs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3407, @@ -190882,7 +190045,7 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat sc:url "https://www.microsoft.com/en-us/p/eva-metabolomics/9p9l8mdr08v2#activetab=pivot:overviewtab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation "pubmed:15980486" ; @@ -190898,7 +190061,7 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0781 ; sc:citation , @@ -190914,7 +190077,7 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat sc:url "http://www.european-virus-archive.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2269, @@ -190930,8 +190093,37 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat sc:url "https://mblab.wustl.edu/software.html" ; biotools:primaryContact "Michael R Brent" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0621, + edam:topic_3175, + edam:topic_3474, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8627028", + "pubmed:34837948" ; + sc:description "A machine learning-based tool for the comprehensive evaluation of mammalian genome assembly quality." ; + sc:featureList edam:operation_0523, + edam:operation_0524, + edam:operation_0525, + edam:operation_3180, + edam:operation_3216 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "EvalDNA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bioinfoMMS/EvalDNA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3047, @@ -190951,21 +190143,29 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat "Windows" ; sc:url "http://bioinfo.life.hust.edu.cn/EVAtlas" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0218, - edam:topic_0602, - edam:topic_3344 ; - sc:citation , - "pubmed:31392318" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'BioNLPST-BB', 'desiderated', 'BioNLPST-BGI', 'MOTIVATION:Biomedical' | Context awareness and embedding for biomedical event extraction | EvntExtrc is a biological event extractor on biomedical literature | The following instructions will help you get a copy of the source code as well as the datasets, and run the programs on your own machine" ; - sc:featureList edam:operation_3280, - edam:operation_3798 ; - sc:license "Apache-2.0" ; - sc:name "event extraction" ; - sc:url "https://github.com/cskyan/evntextrc" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0203, + edam:topic_0659, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pubmed:35901462" ; + sc:description "An optimized reads assignment tool for small ncRNA quantification and its application in extracellular vesicle datasets." ; + sc:featureList edam:operation_3198, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "EVAtool" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinfo.life.hust.edu.cn/EVAtool" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -190987,14 +190187,12 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0972" ; - sc:name "Text mining report" ; - sc:sameAs "http://edamontology.org/data_0972" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0972" ; + sc:name "Text mining report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3473 ; sc:citation ; @@ -191012,7 +190210,7 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat biotools:primaryContact "Yves Van de Peer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382, @@ -191030,8 +190228,28 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat sc:name "EVICAN" ; sc:url "https://github.com/MischaSchwendy/EVICAN-MRCNN" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0625, + edam:topic_2640, + edam:topic_3336 ; + sc:citation , + "pubmed:35662462" ; + sc:description "Interactive Web Platform for Exploration of Molecular Features and Response to Anti-cancer Drugs." ; + sc:featureList edam:operation_0337, + edam:operation_2422, + edam:operation_3501 ; + sc:license "Other" ; + sc:name "EviCor" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.evicor.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3068, @@ -191052,7 +190270,7 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat sc:url "http://www.nactem.ac.uk/UKPMCWS/EvidenceFinder.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634 ; sc:citation , @@ -191063,7 +190281,7 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat sc:url "https://eview.upf.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -191078,8 +190296,26 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat sc:softwareVersion "1.0" ; sc:url "https://www.evinet.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workflow" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC9048652", + "pubmed:35294970" ; + sc:description "Evitar (Emerging-Virus-Targeting RNA) is a program for (1) pre-designing siRNAs/Cas13a guide RNAs against future viruses based on existing viral sequences, and (2) designing siRNAs/Cas13a guide RNAs against a single virus based on sequences of multiple strains of this virus." ; + sc:featureList edam:operation_0465, + edam:operation_2008, + edam:operation_3431 ; + sc:name "Evitar" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/dingyaozhang/Evitar" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0621, @@ -191098,7 +190334,7 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat sc:url "https://tau.cmmt.ubc.ca/eVITTA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -191120,10 +190356,10 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal" ; sc:applicationSubCategory edam:topic_1775, @@ -191139,7 +190375,7 @@ EMMA is a non-profit repository for the collection, archiving (via cryopreservat biotools:primaryContact "Debbie Marks" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0218, @@ -191156,7 +190392,7 @@ Context awareness and embedding for biomedical event extraction""" ; sc:url "https://github.com/cskyan/evntextrc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -191179,7 +190415,7 @@ EvoACTG is a web-repository of chamber-specific cardiac transcriptome data for 7 sc:url "http://evoactg.uni-muenster.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0160, @@ -191204,7 +190440,7 @@ EvoACTG is a web-repository of chamber-specific cardiac transcriptome data for 7 biotools:primaryContact "EvoCor Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -191226,7 +190462,7 @@ EvoACTG is a web-repository of chamber-specific cardiac transcriptome data for 7 biotools:primaryContact "Yang Zhang Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -191244,7 +190480,7 @@ EvoACTG is a web-repository of chamber-specific cardiac transcriptome data for 7 sc:url "http://www.sanger.ac.uk/science/tools/evoker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0084, @@ -191260,8 +190496,48 @@ EvoACTG is a web-repository of chamber-specific cardiac transcriptome data for 7 sc:name "Evol2Circos" ; sc:url "https://mail.nbfgr.res.in/evole2circos/index.html" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1912" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0102, + edam:topic_0196 ; + sc:citation , + "pmcid:PMC8474961", + "pubmed:34579644" ; + sc:description "A web interface to visualize continuous phylogeographic reconstructions." ; + sc:featureList edam:operation_0326, + edam:operation_0337, + edam:operation_3432, + edam:operation_3478, + edam:operation_3745 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "EvoLaps" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.evolaps.org" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "A Comprehensive resource on Olfactory receptors" ; + sc:featureList edam:operation_2945 ; + sc:name "evolfdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/evolfdb/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3055, edam:topic_3056, @@ -191283,7 +190559,7 @@ EvoACTG is a web-repository of chamber-specific cardiac transcriptome data for 7 biotools:primaryContact "Diogo Melo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0780, @@ -191301,7 +190577,7 @@ EvoACTG is a web-repository of chamber-specific cardiac transcriptome data for 7 sc:url "https://github.com/DongjoonLim/EvoLSTM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, @@ -191326,7 +190602,7 @@ EvoACTG is a web-repository of chamber-specific cardiac transcriptome data for 7 biotools:primaryContact "Evolview Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0654, @@ -191345,16 +190621,36 @@ EvoACTG is a web-repository of chamber-specific cardiac transcriptome data for 7 biotools:primaryContact "Thomas Brody", "Ward F. Odenwald" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2814, + edam:topic_3293, + edam:topic_3474 ; + sc:citation , + "pubmed:35662466" ; + sc:description "EvoRator employs machine-learning for prediction of residue-level evolutionary rates from protein structure. This prediction is based on various features comprising the structural information characterizing the protein." ; + sc:featureList edam:operation_0474, + edam:operation_0570, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "EvoRator" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://evorator.tau.ac.il/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation ; @@ -191368,8 +190664,54 @@ EvoACTG is a web-repository of chamber-specific cardiac transcriptome data for 7 sc:softwareVersion "1" ; sc:url "http://bioinformatics.intec.ugent.be/kmarchal/EVORhA/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0625, + edam:topic_3071, + edam:topic_3295 ; + sc:citation , + "pmcid:PMC9096146", + "pubmed:35592546" ; + sc:description "A database of epigenome-wide association studies." ; + sc:featureList edam:operation_0224, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "EWAS Catalog" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.ewascatalog.org" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0749, + edam:topic_3295, + edam:topic_3517, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC8728289", + "pubmed:34718752" ; + sc:description "EWAS Open Platform is a comprehensive analysis suite that integrates EWAS Atlas, EWAS Data Hub and EWAS Toolkit for epigenome-wide association studies." ; + sc:featureList edam:operation_3207, + edam:operation_3501, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:name "EWAS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ngdc.cncb.ac.cn/ewas" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0654, @@ -191383,13 +190725,13 @@ EvoACTG is a web-repository of chamber-specific cardiac transcriptome data for 7 sc:url "https://github.com/Silver-Hawk/EWASex" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "This tool contains Infinium Human Methylation BeadChip pipeline that can be installed and used inside the Galaxy. The pipeline steps include: raw intensity data loading .idat preprocessing, optional normalisation of the data, quality control with additional sample check. It gives the user the opportunity to perform any of these preparation and data cleaning steps, including the next highly recommended genetic variation annotation step resulting in single nucleotide polymorphism identification and removal by simply running the tool. Finally, the dataset generated through all of these steps can be used to hunt find differentially-methylated positions DMP and regions DMR with respect to a phenotype co-variate." ; sc:name "ewastools" ; sc:url "https://github.com/kpbioteam/ewas_galaxy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_1775 ; @@ -191404,7 +190746,7 @@ EvoACTG is a web-repository of chamber-specific cardiac transcriptome data for 7 biotools:primaryContact "Nathan Skene" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0610 ; sc:citation ; @@ -191418,7 +190760,7 @@ EvoACTG is a web-repository of chamber-specific cardiac transcriptome data for 7 sc:url "http://ecopath.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3293 ; sc:description "ExaBayes is a software package for Bayesian phylogenetic tree inference. It is particularly suitable for large-scale analyses on computer clusters." ; @@ -191432,7 +190774,7 @@ EvoACTG is a web-repository of chamber-specific cardiac transcriptome data for 7 sc:url "https://github.com/aberer/exabayes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -191459,7 +190801,7 @@ EvoACTG is a web-repository of chamber-specific cardiac transcriptome data for 7 "Web error forum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0219, @@ -191479,8 +190821,23 @@ Rest API sync with the EXACT Server https://github.com/ChristianMarzahl/Exact."" sc:name "EXACT" ; sc:url "https://exact.cs.fau.de/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workbench" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3384, + edam:topic_3404, + edam:topic_3474 ; + sc:citation , + "pubmed:35033756" ; + sc:description "A multimodal explanation framework for computer-aided diagnosis of skin lesions." ; + sc:featureList edam:operation_3443 ; + sc:name "ExAID" ; + sc:url "https://exaid.kl.dfki.de/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0081, @@ -191501,7 +190858,7 @@ Rest API sync with the EXACT Server https://github.com/ChristianMarzahl/Exact."" "Giulio Pavesi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Plug-in", "Script" ; @@ -191521,7 +190878,7 @@ Rest API sync with the EXACT Server https://github.com/ChristianMarzahl/Exact."" sc:url "https://github.com/ls-cwi/eXamine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -191536,7 +190893,7 @@ It uses a depth-first search combined with a branch-and-bound approach to search sc:url "http://excap.sbc.su.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0622, @@ -191554,7 +190911,7 @@ It uses a depth-first search combined with a branch-and-bound approach to search biotools:primaryContact "Jiangming Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0607 ; sc:citation ; @@ -191569,8 +190926,45 @@ It uses a depth-first search combined with a branch-and-bound approach to search sc:softwareVersion "1.0" ; sc:url "http://sabiork.h-its.org/excemplify/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0160, + edam:topic_0623, + edam:topic_3320, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9069663", + "pubmed:35254744" ; + sc:description "ExceS-A is a fast, exon-centric spliced aligner and is included in the ExonMatchSolver pipeline." ; + sc:featureList edam:operation_0232, + edam:operation_0292, + edam:operation_0433, + edam:operation_0525, + edam:operation_3359 ; + sc:license "Not licensed" ; + sc:name "ExceS-A" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/frarei312/ExceS-A-An-Exon-Centric-Split-Aligner" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_2815 ; + sc:citation , + "pubmed:35383642" ; + sc:description "A Flexible Statistical Framework for Estimating Excess Mortality." ; + sc:isAccessibleForFree true ; + sc:license "Artistic-2.0" ; + sc:name "excessmort" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "https://cran.r-project.org/web/packages/excessmort/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0769, @@ -191591,7 +190985,7 @@ It uses a depth-first search combined with a branch-and-bound approach to search sc:url "https://github.com/jlanga/exfi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, @@ -191611,25 +191005,8 @@ It uses a depth-first search combined with a branch-and-bound approach to search "Windows" ; sc:url "https://github.com/s-a-nersisyan/ExhauFS" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0203, - edam:topic_0602, - edam:topic_0625 ; - sc:citation , - "pubmed:31845959" ; - sc:description """A framework for exhaustive modelling of genetic interaction pattern using Petri nets. - -Script is used in the modelling framework described in the submitted manuscript "A framework for exhaustive modelling of genetic interaction patterns using Petri nets". - -||| CORRECT NAME OF TOOL COULD ALSO BE 'MOTIVATION:Genetic'""" ; - sc:featureList edam:operation_2426, - edam:operation_3891 ; - sc:name "exhaustive modelling" ; - sc:url "http://www.ibi.vu.nl/programs/ExhMod" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2815, @@ -191644,7 +191021,7 @@ Script is used in the modelling framework described in the submitted manuscript sc:url "https://cb.imsc.res.in/exhumid/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056, edam:topic_3307, @@ -191663,7 +191040,7 @@ Script is used in the modelling framework described in the submitted manuscript sc:url "http://akeylab.princeton.edu/downloads.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -191684,18 +191061,18 @@ Script is used in the modelling framework described in the submitted manuscript a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -191714,7 +191091,7 @@ Script is used in the modelling framework described in the submitted manuscript sc:url "http://hx2.med.upenn.edu/download.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, @@ -191731,7 +191108,7 @@ Script is used in the modelling framework described in the submitted manuscript sc:url "https://exobcd.liumwei.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0659, @@ -191753,7 +191130,7 @@ Script is used in the modelling framework described in the submitted manuscript biotools:primaryContact "Dr. Suresh Mathivanan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -191772,8 +191149,27 @@ Script is used in the modelling framework described in the submitted manuscript "Windows" ; sc:url "https://github.com/NarlikarLab/exoDIVERSITY" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3168, + edam:topic_3174, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9191209", + "pubmed:35551337" ; + sc:description "Exodus is a bioinformatics pipeline aimed to quantify relative abundance of highly similar sequences." ; + sc:featureList edam:operation_3198, + edam:operation_3219, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Exodus" ; + sc:url "https://github.com/ilyavs/exodus" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -191788,13 +191184,8 @@ Script is used in the modelling framework described in the submitted manuscript sc:softwareHelp ; sc:url "http://exolocator.bii.a-star.edu.sg/" . - a sc:SoftwareApplication ; - sc:description "CD Genomics has been providing the flexible and affordable whole exome sequencing service for couple of years. We employ Illumina HiSeq sequencing platform to obtain the genetic variations information in a more efficient way. CD Genomics provides full whole exome sequencing service package including sample standardization, exome capture, library construction, deep sequencing, raw data quality control, and bioinformatics analysis. We can tailor this pipeline to your research interest. If you have additional requirements or questions, please feel free to contact us." ; - sc:name "exome sequencing" ; - sc:url "https://www.cd-genomics.com/Whole-Exome-Sequencing.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0199 ; sc:description "Search the Exome Variant Server for genetic variants identified in patients using a chromosome position." ; @@ -191808,7 +191199,7 @@ Script is used in the modelling framework described in the submitted manuscript sc:url "http://evs.gs.washington.edu/EVS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -191828,7 +191219,7 @@ Script is used in the modelling framework described in the submitted manuscript sc:url "https://cran.r-project.org/src/contrib/Archive/ExomeCNV/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3676 ; @@ -191846,7 +191237,7 @@ Script is used in the modelling framework described in the submitted manuscript biotools:primaryContact "Michael Love" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -191874,7 +191265,7 @@ Script is used in the modelling framework described in the submitted manuscript biotools:primaryContact "Vincent Plagnol" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3676 ; @@ -191896,7 +191287,7 @@ Script is used in the modelling framework described in the submitted manuscript "Lin Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3168 ; @@ -191909,7 +191300,7 @@ Script is used in the modelling framework described in the submitted manuscript biotools:primaryContact "Christian Fuchsberger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -191937,7 +191328,7 @@ Script is used in the modelling framework described in the submitted manuscript "Dr Jules Jacobsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, @@ -191960,7 +191351,7 @@ Script is used in the modelling framework described in the submitted manuscript biotools:primaryContact "Exon Array Analyzer Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -191981,7 +191372,7 @@ Script is used in the modelling framework described in the submitted manuscript biotools:primaryContact "Ensembl Helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053, @@ -191994,8 +191385,30 @@ Script is used in the modelling framework described in the submitted manuscript sc:softwareVersion "2.0" ; sc:url "http://exonfinder.sourceforge.net/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0798, + edam:topic_3170, + edam:topic_3308, + edam:topic_3320, + edam:topic_3512 ; + sc:citation , + "pubmed:35863675" ; + sc:description "Representation of alternative splicing in human tissues and developmental stages with transposed element (TE) involvement." ; + sc:featureList edam:operation_0264, + edam:operation_0337, + edam:operation_0446 ; + sc:isAccessibleForFree true ; + sc:name "ExoPLOT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://retrogenomics3.uni-muenster.de:3838/exz-plot-d/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -192015,8 +191428,21 @@ Script is used in the modelling framework described in the submitted manuscript "Windows" ; sc:url "http://imath.med.ucm.es/exopred/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "ExoProPred is a webserver to predict exosomal proteins based on hybrid model that combines machine learning model with motif-search approach." ; + sc:featureList edam:operation_2945 ; + sc:name "exopropred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/exopropred/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3320, @@ -192039,7 +191465,7 @@ Script is used in the modelling framework described in the submitted manuscript sc:url "https://github.com/biocorecrg/ExOrthist" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -192055,7 +191481,7 @@ Script is used in the modelling framework described in the submitted manuscript sc:url "http://gcrg.ucsd.edu/Downloads/ExtremePathwayAnalysis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0152, edam:topic_0160, @@ -192072,7 +191498,7 @@ Script is used in the modelling framework described in the submitted manuscript sc:url "https://exed.biocatnet.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -192091,14 +191517,14 @@ This GitHub project provides the code for the network inference and model expans a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3466" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Rolf Backofen", @@ -192121,18 +191547,18 @@ This GitHub project provides the code for the network inference and model expans a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ], + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_1982" ; + sc:name "Alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3466" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097 ; @@ -192157,7 +191583,7 @@ This GitHub project provides the code for the network inference and model expans "Christina Otto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0121, @@ -192176,7 +191602,7 @@ This GitHub project provides the code for the network inference and model expans biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -192197,7 +191623,7 @@ This GitHub project provides the code for the network inference and model expans sc:url "http://EXPath.itps.ncku.edu.tw" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3169, edam:topic_3474 ; @@ -192210,7 +191636,7 @@ This GitHub project provides the code for the network inference and model expans sc:url "https://github.com/gao-lab/ePooling" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170 ; @@ -192224,7 +191650,7 @@ This GitHub project provides the code for the network inference and model expans sc:url "https://bioinformatics.cineca.it/expedit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -192242,7 +191668,7 @@ This GitHub project provides the code for the network inference and model expans biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3489 ; @@ -192260,7 +191686,7 @@ This GitHub project provides the code for the network inference and model expans biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0769, @@ -192279,7 +191705,7 @@ This GitHub project provides the code for the network inference and model expans . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -192296,7 +191722,7 @@ This GitHub project provides the code for the network inference and model expans biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -192319,7 +191745,7 @@ This GitHub project provides the code for the network inference and model expans biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3304, @@ -192337,7 +191763,7 @@ This GitHub project provides the code for the network inference and model expans sc:url "http://github.com/cinpla/expipe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -192351,14 +191777,13 @@ This GitHub project provides the code for the network inference and model expans a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2294" ; - sc:name "Sequence variation ID" ; - sc:sameAs "http://edamontology.org/data_2294" ] ; + sc:additionalType "http://edamontology.org/data_2294" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variation ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -192376,8 +191801,21 @@ This GitHub project provides the code for the network inference and model expans sc:url "http://bioinformatics.intec.ugent.be/explora-web/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_3474, + edam:topic_3489 ; + sc:citation , + "pmcid:PMC8920064" ; + sc:description "Content Prefetching for Tile-Based Immersive Video Streaming Applications." ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "Explora-VR" ; + sc:url "https://github.com/LeandroOrdonez/explora-vr-cache" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2259, @@ -192396,8 +191834,28 @@ This GitHub project provides the code for the network inference and model expans sc:url "http://bioconductor.org/packages/release/bioc/html/explorase.html" ; biotools:primaryContact "Michael Lawrence" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workflow" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0749, + edam:topic_0769, + edam:topic_0798, + edam:topic_3170 ; + sc:citation , + "pubmed:35608310" ; + sc:description "A pipeline to explore active transposable elements from RNA-seq data." ; + sc:featureList edam:operation_3198, + edam:operation_3435, + edam:operation_3799 ; + sc:license "Not licensed" ; + sc:name "ExplorATE" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/FemeniasM/ExplorATEproject" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -192416,7 +191874,7 @@ This GitHub project provides the code for the network inference and model expans sc:url "http://www.bioconductor.org/packages/ExploreModelMatrix/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3067, edam:topic_3360, @@ -192436,7 +191894,7 @@ EXpectation Propagation LOgistic REgRession on permissioned blockCHAIN (Explorer sc:url "https://github.com/tsungtingkuo/explorerchain" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3068, @@ -192455,10 +191913,10 @@ EXpectation Propagation LOgistic REgRession on permissioned blockCHAIN (Explorer a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -192474,7 +191932,7 @@ EXpectation Propagation LOgistic REgRession on permissioned blockCHAIN (Explorer biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -192491,7 +191949,7 @@ EXpectation Propagation LOgistic REgRession on permissioned blockCHAIN (Explorer biotools:primaryContact "Cyprian Lewandowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0637, @@ -192510,10 +191968,10 @@ EXpectation Propagation LOgistic REgRession on permissioned blockCHAIN (Explorer a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3077 ; sc:citation , @@ -192531,10 +191989,10 @@ EXpectation Propagation LOgistic REgRession on permissioned blockCHAIN (Explorer a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3489 ; @@ -192552,7 +192010,7 @@ EXpectation Propagation LOgistic REgRession on permissioned blockCHAIN (Explorer biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Export stiffness and mass matrices from NASTRAN" ; sc:featureList edam:operation_0461, @@ -192567,42 +192025,25 @@ EXpectation Propagation LOgistic REgRession on permissioned blockCHAIN (Explorer sc:url "https://www.mathworks.com/matlabcentral/fileexchange/74286-exportnastrankm" ; biotools:primaryContact "Wei Zhao" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0218, - edam:topic_2840, - edam:topic_3172 ; - sc:citation , - "pmcid:PMC6794490", - "pubmed:31557052" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Blood Exposome', 'Blood Exposome Database', 'Blood Exposome Database Using', 'PubChem' (bio.tools/pubchem) | Generating the Blood Exposome Database Using a Comprehensive Text Mining and Database Fusion Approach | The database is available here www.bloodexposome.org | The exposome represents the sum of all exposures during the life-span of an organism (from chemicals to microbes, viruses, radiation and other sources)" ; - sc:featureList edam:operation_0224, - edam:operation_0306, - edam:operation_3502 ; - sc:name "exposome" ; - sc:url "http://bloodexposome.org" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3169, @@ -192624,7 +192065,7 @@ EXpectation Propagation LOgistic REgRession on permissioned blockCHAIN (Explorer sc:url "https://pachterlab.github.io/eXpress/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3170, @@ -192646,7 +192087,7 @@ EXpectation Propagation LOgistic REgRession on permissioned blockCHAIN (Explorer sc:url "http://shiny.bios.unc.edu/expressheart/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -192661,7 +192102,7 @@ EXpectation Propagation LOgistic REgRession on permissioned blockCHAIN (Explorer sc:url "https://www.ebi.ac.uk/gxa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3365, @@ -192678,30 +192119,8 @@ EXpectation Propagation LOgistic REgRession on permissioned blockCHAIN (Explorer sc:name "Expression Profiler" ; sc:url "http://www.ebi.ac.uk/expressionprofiler/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0654, - edam:topic_2830, - edam:topic_3295, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6898959", - "pubmed:31810449" ; - sc:description """Human gene expression variability and its dependence on methylation and aging. - -Source code for "Human Gene Expression Variability and its Dependence on Methylation and Aging". - -||| CORRECT NAME OF TOOL COULD ALSO BE 'BACKGROUND:Phenotypic', 'Hypo-Variability', 'sex-dependent', 'Hyper-Variability'""" ; - sc:featureList edam:operation_2436, - edam:operation_2942, - edam:operation_3207, - edam:operation_3463, - edam:operation_3659 ; - sc:name "expression variability" ; - sc:url "https://github.com/nbashkeel/EV" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3518 ; @@ -192719,10 +192138,9 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3277, @@ -192734,7 +192152,7 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla sc:url "http://expression.ml.cmu.edu:8080/ExpressionBlast/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_3308, @@ -192753,7 +192171,7 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla biotools:primaryContact "Gabor Csardi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -192768,8 +192186,32 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla biotools:primaryContact "Delasa Aghamirzaie", "Karthik Raja Velmurugan" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0203, + edam:topic_3170, + edam:topic_3518, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9252728", + "pubmed:35639516" ; + sc:description "A biologist-oriented interactive web server for exploring multi-omics data." ; + sc:featureList edam:operation_0533, + edam:operation_0571, + edam:operation_2949, + edam:operation_3223 ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "ExpressVis" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://omicsmining.ncpsb.org.cn/ExpressVis" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3518 ; @@ -192788,10 +192230,9 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3474 ; @@ -192808,7 +192249,7 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla sc:url "http://github.com/tpq/exprso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0203, @@ -192828,8 +192269,30 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla sc:url "http://www.wheat-expression.com/" ; biotools:primaryContact "Cristobal Uauy" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0659, + edam:topic_3170, + edam:topic_3308, + edam:topic_3360 ; + sc:citation , + "pubmed:35690280" ; + sc:description "exRNADisease is a database designed for providing the landscape of different types of extracellular RNAs (mRNAs, lncRNAs, miRNAs, circRNAs, tRFRNAs and piRNAs) from body fluids in human diseases." ; + sc:featureList edam:operation_0463 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "exRNADisease" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://www.origin-gene.cn/database/exRNAdisease/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3372, @@ -192844,7 +192307,7 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla sc:url "https://github.com/matthiaskoenig/exsimo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -192864,7 +192327,7 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla biotools:primaryContact "Indhu-Shree Rajan-Babu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3360, edam:topic_3518 ; @@ -192876,28 +192339,26 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla sc:url "https://github.com/JoanaGodinho/ext-ZINBayes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "eXtasy is a pipeline for ranking nonsynonymous single nucleotide variants given a specific phenotype. It takes into account the putative deleteriousness of the variant, haploinsufficiency predictions of the underlying gene and the similarity of the given gene to known genes in the given phenotype." ; sc:featureList edam:operation_3226 ; sc:name "eXtasy" ; sc:url "https://extasy.esat.kuleuven.be/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "ExTaxsI (Exploring Taxonomy Information)I is a bioinformatic tool aimed to elaborate and visualize molecular and taxonomic informations. This open-source user friendly project, written in Python 3.7, allows the creation of interactive plots starting from NCBI search query or directly from offline taxonomic files." ; sc:name "ExTaxsI" ; sc:url "https://github.com/qLSLab/ExTaxsI" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ] ; + sc:additionalType "http://edamontology.org/data_3671" ; + sc:name "Text" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3779" ; - sc:name "Annotated text" ; - sc:sameAs "http://edamontology.org/data_3779" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3779" ; + sc:name "Annotated text" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application", "Web service" ; @@ -192918,7 +192379,7 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla biotools:primaryContact "Lars Juhl Jensen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -192936,18 +192397,18 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0607, edam:topic_3366 ; @@ -192967,14 +192428,14 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3747" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "UniProt accession" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Script used to extract protein names from a peptide identification file." ; sc:featureList edam:operation_3434 ; sc:name "extract_protein_names" ; @@ -192982,14 +192443,12 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -193019,7 +192478,7 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla sc:url "http://emboss.open-bio.org/rel/rel6/apps/extractalign.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -193037,14 +192496,14 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3169 ; sc:citation , @@ -193061,14 +192520,12 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -193098,7 +192555,7 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla sc:url "http://emboss.open-bio.org/rel/rel6/apps/extractfeat.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259 ; sc:description "MATLAB tool fpr extracting reaction rate from SimBiology model." ; @@ -193112,7 +192569,7 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla biotools:primaryContact "Frank Sommerhage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3314 ; sc:description "Function for calculating the extracted drug fraction in liquid-liquid extraction" ; @@ -193127,14 +192584,12 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -193164,7 +192619,7 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla sc:url "http://emboss.open-bio.org/rel/rel6/apps/extractseq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, @@ -193182,8 +192637,24 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla sc:url "http://ay-lab-tools.lji.org/extramapper" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0203, + edam:topic_2229 ; + sc:citation ; + sc:description "ExtRamp Online is an interfaced version of the original ExtRamp software that extracts ramp sequences in the browser using Pyodide. All options are set to defaults for an analysis on human genes." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ExtRamp Online" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ramps.byu.edu/ExtRampOnline" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3301, edam:topic_3474 ; @@ -193197,7 +192668,7 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla sc:url "https://github.com/gaarangoa/ExtrARG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -193215,7 +192686,7 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -193232,19 +192703,8 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla sc:url "https://www.mathworks.com/matlabcentral/fileexchange/61239-eye-disk-segmentation-using-luminance-channel-and-active-contour" ; biotools:primaryContact "Aji Resindra Widya" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3400, - edam:topic_3418 ; - sc:citation , - "pubmed:31476276" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'eyeSmart EMR', 'EMR' | A novel technology tool to capture the clinical information of patients across rural vision centers in a three-tier eye care network in India using the eyeSmart EMR App | Access to Power BI reports requires Internet Connectivity" ; - sc:featureList edam:operation_0306 ; - sc:name "eyeSmart" ; - sc:url "http://www.lvpei.org/aeye/eyesmartapp.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -193263,7 +192723,7 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla sc:url "https://eyediseases.bio-data.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3452 ; sc:citation , @@ -193274,7 +192734,7 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=33187821" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3304, @@ -193291,7 +192751,7 @@ Source code for "Human Gene Expression Variability and its Dependence on Methyla sc:url "https://github.com/simonarvin/eyeloop" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3500 ; @@ -193308,7 +192768,7 @@ This repository contains iPython files that can be used to track the location, m sc:url "http://github.com/DeniseCaiLab/ezTrack" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0154, @@ -193325,7 +192785,7 @@ This repository contains iPython files that can be used to track the location, m biotools:primaryContact "Jongsik Chun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -193342,7 +192802,7 @@ This repository contains iPython files that can be used to track the location, m sc:url "https://github.com/porteralab/EZcalcium" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3168, @@ -193360,7 +192820,7 @@ This repository contains iPython files that can be used to track the location, m biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -193375,7 +192835,7 @@ This repository contains iPython files that can be used to track the location, m sc:url "https://github.com/ailabstw/ezGeno" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:description "The EZImputer workflow is a modular set of scripts for genome-wide imputation. It automates many of the steps regularly needed for an imputation project." ; @@ -193387,7 +192847,7 @@ This repository contains iPython files that can be used to track the location, m sc:url "http://bioinformaticstools.mayo.edu/research/ezimputer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0084, @@ -193406,8 +192866,24 @@ This repository contains iPython files that can be used to track the location, m sc:url "http://ezmito.unisi.it" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_3293 ; + sc:description "ezTree is a Perl pipeline for identifying marker genes and build phylogenetic trees for a set of genomes. This script is used to get single copy marker genes from a set of genomes, including genome bins recovered from metagenomes, and align them for phylogenetic tree reconstruction." ; + sc:featureList edam:operation_0323, + edam:operation_3200, + edam:operation_3798 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ezTree" ; + sc:softwareHelp ; + sc:url "https://github.com/yuwwu/ezTree" ; + biotools:primaryContact "Yu-Wei Wu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -193421,7 +192897,7 @@ This repository contains iPython files that can be used to track the location, m sc:url "https://github.com/aboyle/F-seq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -193439,7 +192915,7 @@ This repository contains iPython files that can be used to track the location, m sc:url "https://astx.shinyapps.io/F3UTER/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3295, edam:topic_3316, @@ -193456,7 +192932,7 @@ This repository contains iPython files that can be used to track the location, m sc:url "https://hasindu2008.github.io/f5c/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3304, @@ -193472,7 +192948,7 @@ This repository contains iPython files that can be used to track the location, m sc:url "https://github.com/ntakata/flexible-annotation-atlas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0605, edam:topic_0625, @@ -193494,7 +192970,7 @@ This repository contains iPython files that can be used to track the location, m sc:url "https://data.faang.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -193509,7 +192985,7 @@ This repository contains iPython files that can be used to track the location, m sc:url "http://bioinfo.icgeb.res.in/faap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , @@ -193521,7 +192997,7 @@ This repository contains iPython files that can be used to track the location, m sc:url "http://faas.bme.unc.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269 ; @@ -193541,12 +193017,35 @@ This repository contains iPython files that can be used to track the location, m sc:url "http://bioconductor.org/packages/release/bioc/html/fabia.html" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_2269, + edam:topic_3169 ; + sc:citation , + "pmcid:PMC9252790", + "pubmed:35639768" ; + sc:description "FABIAN-variant uses transcription factor flexible models (TFFMs) and position weight matrices (PWMs) to predict the effect of DNA variants on transcription factor binding." ; + sc:featureList edam:operation_0331, + edam:operation_0372, + edam:operation_0445 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FABIAN-variant" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://www.genecascade.org/fabian/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -193567,7 +193066,7 @@ This repository contains iPython files that can be used to track the location, m biotools:primaryContact "Palle Villesen Fredsted" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -193582,7 +193081,7 @@ This repository contains iPython files that can be used to track the location, m sc:url "http://fabric-cancer.huji.ac.il" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3305, @@ -193602,30 +193101,30 @@ This repository contains iPython files that can be used to track the location, m a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Genotype/phenotype report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Genotype/phenotype report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -193646,7 +193145,7 @@ This repository contains iPython files that can be used to track the location, m biotools:primaryContact "David Mosen-Ansorena" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -193662,7 +193161,7 @@ This repository contains iPython files that can be used to track the location, m biotools:primaryContact "Enze Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0121, @@ -193687,8 +193186,31 @@ FACS pipeline - Fast AMP Classification System.""" ; sc:name "FACS" ; sc:url "https://github.com/FACS-Antimicrobial-Peptides-Prospection/FACS/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2640, + edam:topic_3295, + edam:topic_3512, + edam:topic_3519 ; + sc:citation , + "pmcid:PMC8643707", + "pubmed:34534335" ; + sc:description "Profiling histone modifications in formalin-fixed paraffin-embedded samples with low cell numbers." ; + sc:featureList edam:operation_0314, + edam:operation_0416, + edam:operation_3222 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FACT-seq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/pengweixing/FACT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0218, @@ -193710,7 +193232,7 @@ FACS pipeline - Fast AMP Classification System.""" ; biotools:primaryContact "Yoshimasa Tsuruoka" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -193726,8 +193248,31 @@ FACS pipeline - Fast AMP Classification System.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/factDesign.html" ; biotools:primaryContact "Denise Scholtens" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3169, + edam:topic_3170, + edam:topic_3295, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8728199", + "pubmed:34755879" ; + sc:description "An updated catalog of transcription factor motifs and candidate regulatory motif sites." ; + sc:featureList edam:operation_0238, + edam:operation_0239, + edam:operation_0445, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:name "Factorbook" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.factorbook.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0749, @@ -193743,7 +193288,7 @@ FACS pipeline - Fast AMP Classification System.""" ; sc:url "https://github.com/xasdzxc/FactorHNE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "FactorViz provides an interactive visualization and reporting environment for exploring the results of the methylome decomposition experiments carried out by MeDeCom or similar deconvolution tools." ; sc:name "FactorViz" ; @@ -193751,7 +193296,7 @@ FACS pipeline - Fast AMP Classification System.""" ; sc:url "https://github.com/CompEpigen/FactorViz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -193769,7 +193314,7 @@ During cellular respiration in general and electron transport chain in particula sc:url "http://140.138.155.216/fadbert/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3308, @@ -193785,7 +193330,7 @@ During cellular respiration in general and electron transport chain in particula sc:url "https://shiny-bird.univ-nantes.fr/app/Fada" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0082, edam:topic_3068, @@ -193799,8 +193344,18 @@ During cellular respiration in general and electron transport chain in particula sc:name "FADB-China" ; sc:url "http://www.rxnfinder.org/FADB-China/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "FADPred is a web-server specially trained for the FAD interacting residues. The prediction is based on the basis of binary pattern of 17 window motif of amino acid sequence by using support vector machines(SVM)." ; + sc:featureList edam:operation_2945 ; + sc:name "fadpred" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/fadpred/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0114, @@ -193824,7 +193379,7 @@ In most prokaryotic systems, full-length transcript sequences are unavailable, c sc:url "https://github.com/IGS/FADU" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2640, @@ -193843,7 +193398,7 @@ In most prokaryotic systems, full-length transcript sequences are unavailable, c sc:url "https://github.com/salan668/FAE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3325, @@ -193871,18 +193426,18 @@ A simple search of FAERS data cannot be performed with these files by persons wh a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_3814" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], + sc:additionalType "http://edamontology.org/data_2087" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Molecular property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2087" ; - sc:name "Molecular property" ; - sc:sameAs "http://edamontology.org/data_2087" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_3814" ; + sc:name "Small molecule structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3336 ; sc:citation "pubmed:16845110" ; @@ -193898,7 +193453,7 @@ A simple search of FAERS data cannot be performed with these files by persons wh "David Lagorce" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170, @@ -193916,38 +193471,31 @@ A simple search of FAERS data cannot be performed with these files by persons wh a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_1188" ; + sc:name "DOI" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_3720" ; + sc:name "Geographic location" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3720" ; - sc:name "Geographic location" ; - sc:sameAs "http://edamontology.org/data_3720" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1188" ; - sc:name "DOI" ; - sc:sameAs "http://edamontology.org/data_1188" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application", @@ -193984,7 +193532,7 @@ It is an extension of the generic DataDiscovery portal, a web portal that allows biotools:primaryContact "URGI support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3077 ; sc:citation ; @@ -193996,8 +193544,68 @@ It is an extension of the generic DataDiscovery portal, a web portal that allows sc:softwareHelp ; sc:url "https://github.com/ElsevierSoftwareX/SOFTX-D-17-00021" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2376" ; + sc:name "Identifier" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_2376" ; + sc:name "Ontology data" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3914" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Quality control report" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2337" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Resource metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_3316 ; + sc:description "FAIR-Checker is a tool aimed at assessing FAIR principles and empowering data provider to enhance the quality of their digital resources. Data providers and consumers can check how FAIR are web resources. Developers can explore and inspect metadata exposed in web resources." ; + sc:featureList edam:operation_0224, + edam:operation_0336, + edam:operation_2428 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "FAIR-Checker" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "1.0.4" ; + sc:url "https://fair-checker.france-bioinformatique.fr" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "This is a standalone, desktop application developed by the FAIR4Health project (https://www.fair4health.eu/). The tool is used to connect the health data sources which can be in various formats (Excel files, CSV files, SQL databases) and migrate data into a HL7 FHIR Repository. The tool shows the available FHIR profiles to the user so that he/she can perform mappings appropriately. The tool can also contact a Terminology Server (which is actually another HL7 FHIR Repository) so that data fields can be annotated if coding schemes such as ICD10 or SNOMED-CT are in use." ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-4.0" ; + sc:name "FAIR4Health Data Curation Tool" ; + sc:softwareHelp , + ; + sc:softwareVersion "v1.2.5" ; + sc:url "https://osf.io/tv3fw/" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3861" ; + sc:name "Electronic health record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "This is a standalone, desktop application developed by the FAIR4Health project (https://www.fair4health.eu/). The tool aims to handle the privacy challenges exposed by the sensitive health data. It is designed to work on an HL7 FHIR API so that it can be used on top of any standard FHIR Repository as a data de-identification, anonymization, and related actions toolset. The tool accesses FHIR resources, presents metadata to the user, guide the user about the configuration to be applied and then output the processed FHIR resources." ; + sc:featureList edam:operation_3283 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-4.0" ; + sc:name "FAIR4Health Data Privacy Tool" ; + sc:softwareHelp , + ; + sc:softwareVersion "v1.1.1" ; + sc:url "https://osf.io/ywhrj/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0769, @@ -194013,7 +193621,7 @@ It is an extension of the generic DataDiscovery portal, a web portal that allows sc:url "https://fairscape.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -194034,7 +193642,7 @@ It is an extension of the generic DataDiscovery portal, a web portal that allows sc:url "http://galaxy.seoklab.org/softwares/falc.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, @@ -194049,7 +193657,7 @@ It is an extension of the generic DataDiscovery portal, a web portal that allows sc:url "https://github.com/smithlabcode/falco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -194067,7 +193675,7 @@ It is an extension of the generic DataDiscovery portal, a web portal that allows sc:url "https://github.com/VCCRI/Falco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -194082,7 +193690,7 @@ It is an extension of the generic DataDiscovery portal, a web portal that allows biotools:primaryContact "Thomas Sauter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -194099,7 +193707,7 @@ The falcon spectrum clustering tool uses advanced algorithmic techniques for hig sc:url "https://github.com/bittremieux/falcon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, @@ -194117,7 +193725,7 @@ The falcon spectrum clustering tool uses advanced algorithmic techniques for hig biotools:primaryContact "Thomas Sauter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304 ; sc:citation , @@ -194131,7 +193739,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "https://bitbucket.org/kloostermannerflab/workspace/projects/LOOP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0634, @@ -194147,7 +193755,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "https://github.com/serrob23/falsecolor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0084, @@ -194168,7 +193776,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3520, @@ -194181,7 +193789,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "http://innovation.columbia.edu/technologies/CU18208_FAMASITO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -194196,7 +193804,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "http://www.famd.me.uk/famd.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -194213,7 +193821,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "http://bioinformatics.mdanderson.org/public-software/famdenovo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2259, @@ -194231,7 +193839,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0621, @@ -194246,7 +193854,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "http://github.com/naznoosh/msa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workbench" ; sc:applicationSubCategory edam:topic_0622, @@ -194269,7 +193877,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "https://github.com/demichelislab/FaME" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3489 ; @@ -194284,7 +193892,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "http://pbil.univ-lyon1.fr/software/famfetch.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation ; @@ -194299,7 +193907,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an "Nadezhda Belonogova" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0736, edam:topic_2269, @@ -194317,7 +193925,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an biotools:primaryContact "Michelle Saul" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0623, @@ -194336,14 +193944,14 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Sequence set (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Protein sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1384" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_1332" ; + sc:name "Protein sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080 ; @@ -194358,7 +193966,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "https://github.com/refresh-bio/FAMSA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench", "Workflow" ; sc:applicationSubCategory edam:topic_0102, @@ -194374,7 +193982,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "https://github.com/vaquerizaslab/fanc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3169, @@ -194391,7 +193999,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "http://fancy.gersteinlab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0102, @@ -194409,8 +194017,24 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:name "FaNDOM" ; sc:url "https://github.com/jluebeck/FaNDOM" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:35333723" ; + sc:description "A Feedback Attention Network for Improved Biomedical Image Segmentation." ; + sc:featureList edam:operation_3443, + edam:operation_3799, + edam:operation_3927 ; + sc:license "Not licensed" ; + sc:name "FANet" ; + sc:url "https://github.com/nikhilroxtomar/FANet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3303, @@ -194425,7 +194049,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "http://fangnet.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_3474 ; @@ -194443,7 +194067,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an "Fabio R. Cerqueira" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -194460,7 +194084,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "http://theinf1.informatik.uni-jena.de/~wernicke/motifs/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Database portal" ; sc:applicationSubCategory edam:topic_0121, @@ -194480,7 +194104,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0593 ; sc:citation "pubmed:25416616" ; @@ -194491,7 +194115,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "http://fanten-enmr.cerm.unifi.it:8080/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -194510,7 +194134,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an biotools:primaryContact "Fantom Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -194529,7 +194153,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an "questions or comments on Annotation or FANTOM system" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3068, edam:topic_3382 ; @@ -194544,7 +194168,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "https://github.com/fsotoc/FaReT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -194563,7 +194187,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3384 ; @@ -194578,7 +194202,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "https://cran.r-project.org/package=FarmTest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Fas2Nex  can read a .FAS (FASTA) file and save it as .NEX (NEXUS) file (or again as a .fas file) for phylogenetic analysis with PAUP*, with the option of removing columns of characters consisting only of gaps. If necessary, the ends of short sequences in the .fas file will be padded to full length." ; @@ -194590,7 +194214,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "http://www.famd.me.uk/AGL/AGL_sw.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0632, @@ -194606,7 +194230,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an biotools:primaryContact "Yan-Bo Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -194626,7 +194250,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "https://zhanglab.ccmb.med.umich.edu/FASPR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3542 ; sc:description "FAssign (Fuzzy Assignment) is new algorithm for the protein secondary structure assignment, using fuzzy logic based on backbone angles." ; @@ -194637,7 +194261,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "http://bs.ipm.ir/softwares/fassign/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622 ; @@ -194651,7 +194275,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an biotools:primaryContact "Takashi Abe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "A fast method to compute AUC (area under the curve)." ; sc:isAccessibleForFree true ; @@ -194664,7 +194288,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an biotools:primaryContact "Lior Kirsch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, @@ -194682,7 +194306,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an biotools:primaryContact "Simon Christoph Stein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769 ; sc:citation , @@ -194696,8 +194320,28 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:softwareVersion "2.0" ; sc:url "https://bitbucket.org/jerlar73/fast-gbs_v2/src/master/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_3168, + edam:topic_3174 ; + sc:citation , + "pmcid:PMC9200608", + "pubmed:35815196" ; + sc:description "Fast-HBR is duplicate reads removing tool from fastq and fasta files. Fast-HBR is fast and memory-efficient because it does not need to store reads in string form on the memory. Instead of that, it will store their hash value as integer. Moreover, it will write directly to the output file and remove duplicate reads on-the-fly." ; + sc:featureList edam:operation_3219, + edam:operation_3359 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Fast-HBR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Sami-Altayyar/Fast-HBR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3474, @@ -194714,7 +194358,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "https://www.microsoft.com/en-us/research/project/fastlmm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "A faster version of perfcurve for False- and True Positive Rate." ; sc:isAccessibleForFree true ; @@ -194727,7 +194371,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an biotools:primaryContact "Hanan Shteingart" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, @@ -194745,7 +194389,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an biotools:primaryContact "Timm Schroeder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3474, @@ -194770,28 +194414,14 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an sc:url "https://cran.r-project.org/package=fastJT" ; biotools:primaryContact "Jiaxing Lin" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_2885, - edam:topic_3517 ; - sc:citation , - "pubmed:31552442" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'Single-RunKing', 'barebones' | Genome-wide barebones regression scan for mixed-model association analysis | KEY MESSAGE:Based on the simplified FaST-LMM, wherein genomic variance is replaced with heritability, we have significantly improved computational efficiency by implementing rapid R fastLmPure to statistically infer the genetic effects of tested SNPs and focus on large or highly significant SNPs obtained using the EMMAX algorithm. For a genome-wide mixed-model association analysis, we introduce a barebones linear model fitting function called fastLmPure from the R RcppArmadillo package for the rapid estimation of single nucleotide polymorphism (SNP) effects and the maximum likelihood values of factored spectrally transformed linear mixed models (FaST-LMM)" ; - sc:featureList edam:operation_3196, - edam:operation_3659 ; - sc:name "fastLmPure" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31552442" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157, @@ -194815,7 +194445,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "FASTA Canonical Sequences deletes comments from FASTA files. It can also change sequences by deleting specified characters or whitespace, introduce newlines for readibility, or change sequence case." ; @@ -194829,14 +194459,14 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -194849,7 +194479,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0637, @@ -194868,18 +194498,18 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -194899,7 +194529,7 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080 ; @@ -194912,18 +194542,18 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168 ; @@ -194940,13 +194570,13 @@ OBJECTIVE:Closed-loop experiments provide unique insights into brain dynamics an biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0659, edam:topic_2885, edam:topic_3168 ; - sc:citation ; + sc:citation ; sc:description """FASTAFS is toolkit for file system virtualisation of random access compressed FASTA files. Although it is uncommon, the FASTAFS format denotes the index (a typical header) after the data. The reason for this location is that most metadata can only be known after converting the entire FASTA file to FASTAFS. For instance, the number of nucleotides encoded within 2bit data, the number of N-characters or the checksum.""" ; sc:featureList edam:operation_0335, @@ -194958,7 +194588,7 @@ Although it is uncommon, the FASTAFS format denotes the index (a typical header) sc:url "https://github.com/yhoogstrate/fastafs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -194970,8 +194600,22 @@ Although it is uncommon, the FASTAFS format denotes the index (a typical header) sc:softwareVersion "2.0" ; sc:url "http://bioinfo.ut.ee/?page_id=167" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_3301 ; + sc:description "FastANI is developed for fast alignment-free computation of whole-genome Average Nucleotide Identity (ANI). ANI is defined as mean nucleotide identity of orthologous gene pairs shared between two microbial genomes. FastANI supports pairwise comparison of both complete and draft genome assemblies." ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "FastANI" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/ParBLiSS/FastANI" ; + biotools:primaryContact "Parallel and Sequential Bioinformatics Libraries for High Throughput Sequences" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -194994,7 +194638,7 @@ Although it is uncommon, the FASTAFS format denotes the index (a typical header) biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -195013,7 +194657,7 @@ Although it is uncommon, the FASTAFS format denotes the index (a typical header) biotools:primaryContact "Ka Yee Yeung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -195026,8 +194670,20 @@ Although it is uncommon, the FASTAFS format denotes the index (a typical header) sc:name "FastBMD" ; sc:url "http://www.fastbmd.ca" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3293 ; + sc:citation ; + sc:description "FastCodeML is a collection of optimization strategies for fast detection of positive selection on phylogenetic trees." ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "FastCodeML" ; + sc:url "https://gitlab.sib.swiss/phylo/fastcodeml" ; + biotools:primaryContact "Nicolas Salamin" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -195050,8 +194706,42 @@ Although it is uncommon, the FASTAFS format denotes the index (a typical header) sc:url "http://structure.pitt.edu/servers/fastcontact/" ; biotools:primaryContact "Camacho CJ" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "Fast Reconstruction of Compact Context-Specific Metabolic Network Models" ; + sc:isAccessibleForFree true ; + sc:license "Freeware" ; + sc:name "FastCore" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/migp11/pyfastcore" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0209, + edam:topic_2275 ; + sc:citation , + "pubmed:35580866" ; + sc:description "A webserver to predict and analyze protein-ligand complexes based on molecular docking and MM/PB(GB)SA computation." ; + sc:featureList edam:operation_0321, + edam:operation_0478, + edam:operation_3454, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "fastDRH" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://cadd.zju.edu.cn/fastdrh/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -195067,7 +194757,7 @@ Although it is uncommon, the FASTAFS format denotes the index (a typical header) biotools:primaryContact "Matteo Comin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation , @@ -195084,7 +194774,7 @@ Although it is uncommon, the FASTAFS format denotes the index (a typical header) sc:url "http://www.picb.ac.cn/evolgen/softwares/FastEPRR.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "Fast calculation of AUC of an ROC for binary classification problems, written in C++." ; @@ -195098,7 +194788,7 @@ Although it is uncommon, the FASTAFS format denotes the index (a typical header) biotools:primaryContact "Enric Junque de Fortuny" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3379 ; sc:citation , @@ -195109,7 +194799,7 @@ Although it is uncommon, the FASTAFS format denotes the index (a typical header) sc:url "https://github.com/luxneuroimage/FastField" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0749, @@ -195129,8 +194819,28 @@ Although it is uncommon, the FASTAFS format denotes the index (a typical header) sc:url "https://github.com/gstricker/fastGenoGAM" ; biotools:primaryContact "Julien Gagneur" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0209, + edam:topic_2275, + edam:topic_3299 ; + sc:citation , + "pubmed:35989379" ; + sc:description "FastGrow is a fast fragment growing approach using a shape-based algorithm. It also features pharmacophore-like constraints, geometry optimization using JAMDA, and built-in ensemble flexibility" ; + sc:featureList edam:operation_0478, + edam:operation_2421, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "FastGrow" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://fastgrow.plus/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3337, @@ -195146,7 +194856,7 @@ fastGWA-GLMM data portal.""" ; sc:url "http://fastgwa.info/ukbimpbin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -195164,7 +194874,7 @@ fastGWA-GLMM data portal.""" ; sc:url "http://microbesonline.org/fasthmm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -195180,18 +194890,18 @@ fastGWA-GLMM data portal.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -195211,8 +194921,18 @@ fastGWA-GLMM data portal.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/fastLiquidAssociation.html" ; biotools:primaryContact "Tina Gunderson" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Suite" ; + sc:applicationSubCategory edam:topic_2269 ; + sc:citation ; + sc:description "The fastLSAsoftware package expands the boundaries of LSA allowing analysis on datasets with millions of co-varying time series. Mapping metadata onto force-directed graphs derived from FAST LSA allows investigators to view correlated cliques and explore previously unrecognized network relationships." ; + sc:name "fastLSA" ; + sc:url "https://github.com/hallamlab/fastLSA" ; + biotools:primaryContact "Steven J Hallam" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -195228,19 +194948,18 @@ fastGWA-GLMM data portal.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Bill Pearson", - "Web Production" ; - sc:citation ; + "Job Dispatcher" ; + sc:citation , + ; sc:description "Sequence similarity search with peptide fragment searches using the FASTF, FASTM or FASTS programs from the FASTA suite." ; sc:featureList edam:operation_0346 ; sc:name "FASTM (EBI)" ; @@ -195253,10 +194972,10 @@ fastGWA-GLMM data portal.""" ; ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/sss/fastm/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -195273,14 +194992,14 @@ fastGWA-GLMM data portal.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1423" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -195302,7 +195021,7 @@ fastGWA-GLMM data portal.""" ; biotools:primaryContact "Vincent Lefort" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -195325,7 +195044,7 @@ fastGWA-GLMM data portal.""" ; biotools:primaryContact "FastML Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3293, @@ -195341,7 +195060,7 @@ fastGWA-GLMM data portal.""" ; sc:url "https://github.com/EnzoAndree/FastMLST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -195359,7 +195078,7 @@ fastGWA-GLMM data portal.""" ; sc:url "https://github.com/GonghuaLi/FastMM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0623, @@ -195375,7 +195094,7 @@ fastGWA-GLMM data portal.""" ; sc:url "https://github.com/ekmolloy/fastmulrfs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "Read huge FastQ and FastA files (both normal and gzipped) an demanipulate them." ; @@ -195387,14 +195106,44 @@ fastGWA-GLMM data portal.""" ; sc:url "https://github.com/fstrozzi/Fastool" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0632 ; + sc:citation ; sc:description "A tool designed to provide fast all-in-one preprocessing for FastQ files. This tool is developed in C++ with multithreading supported to afford high performance." ; + sc:featureList edam:operation_3187, + edam:operation_3192 ; + sc:license "MIT" ; sc:name "fastp" ; - sc:softwareVersion "v0.20.1" ; + sc:softwareVersion "v0.23.2" ; sc:url "https://github.com/OpenGene/fastp" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Web application" ; + sc:applicationSubCategory edam:topic_0632, + edam:topic_0749, + edam:topic_2885, + edam:topic_3168, + edam:topic_3519 ; + sc:citation , + "pubmed:34773626" ; + sc:description "FastPCR is an integrated tool for PCR primers or probe design, in silico PCR, oligonucleotide assembly and analyses, alignment and repeat searching" ; + sc:featureList edam:operation_0307, + edam:operation_0308, + edam:operation_0309, + edam:operation_0346, + edam:operation_3196 ; + sc:isAccessibleForFree false ; + sc:name "FASTPCR" ; + sc:operatingSystem "Windows" ; + sc:softwareHelp ; + sc:url "https://primerdigital.com/fastpcr.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -195407,7 +195156,7 @@ fastGWA-GLMM data portal.""" ; sc:url "https://github.com/sararselitsky/FastPG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -195422,7 +195171,7 @@ fastGWA-GLMM data portal.""" ; sc:url "http://scheet.org/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170 ; @@ -195442,14 +195191,14 @@ fastGWA-GLMM data portal.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -195467,7 +195216,7 @@ fastGWA-GLMM data portal.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3308 ; @@ -195485,14 +195234,14 @@ fastGWA-GLMM data portal.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0848" ; - sc:name "Raw sequence" ; - sc:sameAs "http://edamontology.org/data_0848" ] ; + sc:additionalType "http://edamontology.org/data_0848" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Raw sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0080, @@ -195513,18 +195262,18 @@ fastGWA-GLMM data portal.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -195542,8 +195291,30 @@ fastGWA-GLMM data portal.""" ; sc:url "https://www.bioinformatics.babraham.ac.uk/projects/fastqc/" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0196, + edam:topic_3168, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:34623374" ; + sc:description "A FASTQ Compressor for Long-read Sequencing via read reordering using a novel scoring model." ; + sc:featureList edam:operation_0524, + edam:operation_2409, + edam:operation_3219 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "FastqCLS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/krlucete/FastqCLS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0749, @@ -195562,7 +195333,7 @@ fastGWA-GLMM data portal.""" ; sc:url "https://github.com/CRG-CNAG/fastqins" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, edam:topic_2885, @@ -195578,7 +195349,7 @@ fastGWA-GLMM data portal.""" ; sc:url "https://github.com/Griffan/FASTQuick" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3572 ; @@ -195593,7 +195364,7 @@ fastGWA-GLMM data portal.""" ; biotools:primaryContact "The Center for Statistical Genetics at the University of Michigan School of Public Health" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -195612,7 +195383,7 @@ fastGWA-GLMM data portal.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -195634,7 +195405,7 @@ fastGWA-GLMM data portal.""" ; biotools:primaryContact "Dr. Chin Lung Lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -195653,8 +195424,25 @@ FASTRAL is a novel approach for running ASTRAL, a widely used and popular specie sc:name "FASTRAL" ; sc:url "https://github.com/PayamDiba/FASTRAL" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0196, + edam:topic_3382 ; + sc:citation , + "pubmed:35976109" ; + sc:description "FastRemap, a C++ tool for quickly remapping reads between genome assemblies based on the commonly used CrossMap tool" ; + sc:featureList edam:operation_0525, + edam:operation_3198 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "FastRemap" ; + sc:operatingSystem "Linux" ; + sc:url "http://github.com/CMU-SAFARI/FastRemap" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -195676,7 +195464,7 @@ FASTRAL is a novel approach for running ASTRAL, a widely used and popular specie biotools:primaryContact "Dr. Jinn-Moon Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -195698,7 +195486,7 @@ FASTRAL is a novel approach for running ASTRAL, a widely used and popular specie biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -195718,7 +195506,7 @@ FASTRAL is a novel approach for running ASTRAL, a widely used and popular specie sc:url "http://cmpg.unibe.ch/software/fastsimcoal2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -195734,7 +195522,7 @@ FASTRAL is a novel approach for running ASTRAL, a widely used and popular specie sc:url "https://github.com/QData/FastSK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3517 ; @@ -195751,7 +195539,7 @@ FASTRAL is a novel approach for running ASTRAL, a widely used and popular specie biotools:primaryContact "Thomas Lumley" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_1775, @@ -195765,7 +195553,7 @@ FASTRAL is a novel approach for running ASTRAL, a widely used and popular specie sc:url "http://fastsnp.ibms.sinica.edu.tw" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -195778,7 +195566,7 @@ FASTRAL is a novel approach for running ASTRAL, a widely used and popular specie sc:url "http://rajanil.github.io/fastStructure/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0154, @@ -195796,7 +195584,7 @@ FASTRAL is a novel approach for running ASTRAL, a widely used and popular specie sc:url "https://github.com/ludovicchaput/FastTargetPred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0769, @@ -195819,7 +195607,7 @@ Tracking objects in video recording can be tedious. Existing software are expens sc:url "http://www.fasttrack.sh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3293 ; @@ -195835,7 +195623,7 @@ Tracking objects in video recording can be tedious. Existing software are expens sc:url "http://www.microbesonline.org/fasttree/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation ; @@ -195847,8 +195635,21 @@ Tracking objects in video recording can be tedious. Existing software are expens sc:softwareVersion "20150126" ; sc:url "http://bioputer.mimuw.edu.pl/gorecki/fasturec/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3572 ; + sc:description "Fastutils is a light toolkit for parsing, manipulating and analysis of FASTA and FASTQ files." ; + sc:featureList edam:operation_0335, + edam:operation_2403 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Fastutils" ; + sc:url "https://github.com/haghshenas/fastutils" ; + biotools:primaryContact "Ehsan Haghshenas" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3174, @@ -195865,8 +195666,28 @@ Tracking objects in video recording can be tedious. Existing software are expens sc:name "fastv" ; sc:url "https://github.com/OpenGene/fastv" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workflow" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0622, + edam:topic_3170, + edam:topic_3324, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9041341", + "pubmed:35493723" ; + sc:description "A software to detect viral infection and integration sites for different viruses." ; + sc:featureList edam:operation_0310, + edam:operation_2436, + edam:operation_3695 ; + sc:license "GPL-3.0" ; + sc:name "FastViFi" ; + sc:url "https://github.com/sara-javadzadeh/FastViFi" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0080 ; @@ -195883,15 +195704,39 @@ Tracking objects in video recording can be tedious. Existing software are expens sc:url "http://hannonlab.cshl.edu/fastx_toolkit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "fastxtend is an extension of FASTX-Toolkit package. It provides four commands line tools for Short-Reads FASTA/FASTQ files preprocessing." ; sc:name "fastxtend" ; sc:url "http://www.genoscope.cns.fr/externe/fastxtend/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0601, + edam:topic_0602, + edam:topic_0780, + edam:topic_3407 ; + sc:citation , + "pubmed:35696079" ; + sc:description "A Functional Analysis Tools for Post-translational Modifications (FAT-PTM) database, which supports data from publicly available proteomic analyses encompassing eight different types of PTMs and over 49,000 PTM sites." ; + sc:featureList edam:operation_0417, + edam:operation_3645, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FAT-PTM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://bioinformatics.cse.unr.edu/fat-ptm" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -195918,14 +195763,14 @@ Tracking objects in video recording can be tedious. Existing software are expens a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1713" ; - sc:name "Fate map" ; - sc:sameAs "http://edamontology.org/data_1713" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1713" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Fate map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3053, @@ -195948,7 +195793,7 @@ Tracking objects in video recording can be tedious. Existing software are expens biotools:primaryContact "Dominic Grün" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_1775, @@ -195964,7 +195809,7 @@ Tracking objects in video recording can be tedious. Existing software are expens biotools:primaryContact "Michael Ferlaino" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0166, @@ -195983,13 +195828,13 @@ Tracking objects in video recording can be tedious. Existing software are expens sc:url "http://www.fatigo.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Convert DNA from fasta to 2bit format" ; sc:name "fatotwobit" ; sc:url "https://bioconda.github.io/recipes/ucsc-fatotwobit/README.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0780, @@ -196003,13 +195848,51 @@ Tracking objects in video recording can be tedious. Existing software are expens biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "FaviCov is a comprehensive resource for functionally relevant SARS-CoV genetic variants. The resource provides a searchable interface for genomic variants and corresponding variant annotations." ; sc:name "FaviCoV" ; sc:url "https://clingen.igib.res.in/favicov/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0769, + edam:topic_3170, + edam:topic_3474, + edam:topic_3512 ; + sc:citation ; + sc:description "Machine Learning-Assisted Identification of Factors Contributing to the Technical Variability Between Bulk and Single-Cell RNA-Seq Experiments." ; + sc:featureList edam:operation_0314, + edam:operation_3557, + edam:operation_3659, + edam:operation_3680, + edam:operation_3800 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "FAVSeq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/slipnitskaya/FAVSeq" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_3452 ; + sc:citation , + "pmcid:PMC8714006", + "pubmed:34992342" ; + sc:description "A tool to validate newly developed automated segmentation algorithms." ; + sc:featureList edam:operation_3435, + edam:operation_3443, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "FAZSeg" ; + sc:url "https://github.com/VIEKASH2001/FAZSeg" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0166, @@ -196031,7 +195914,7 @@ Tracking objects in video recording can be tedious. Existing software are expens biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation , @@ -196045,8 +195928,26 @@ Tracking objects in video recording can be tedious. Existing software are expens sc:url "https://sites.google.com/view/fbat-web-page" ; biotools:primaryContact "Nan Laird" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3379, + edam:topic_3474 ; + sc:citation , + "pubmed:35867371" ; + sc:description "A Filter-Bank Multi-Scale Convolutional Neural Network for EEG-Based Motor Imagery Decoding." ; + sc:featureList edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FBMSNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Want2Vanish/FBMSNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3384 ; @@ -196064,7 +195965,7 @@ Tracking objects in video recording can be tedious. Existing software are expens biotools:primaryContact "Haijing Niu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0659, @@ -196083,7 +195984,7 @@ Tracking objects in video recording can be tedious. Existing software are expens sc:url "https://github.com/eddieimada/fcr2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -196095,7 +195996,7 @@ Tracking objects in video recording can be tedious. Existing software are expens biotools:primaryContact "Simone Dinarelli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -196116,7 +196017,7 @@ Tracking objects in video recording can be tedious. Existing software are expens biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -196135,7 +196036,7 @@ Tracking objects in video recording can be tedious. Existing software are expens biotools:primaryContact "Shaojun Tang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0659, @@ -196155,14 +196056,13 @@ Tracking objects in video recording can be tedious. Existing software are expens a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1187" ; - sc:name "PubMed ID" ; - sc:sameAs "http://edamontology.org/data_1187" ] ; + sc:additionalType "http://edamontology.org/data_1187" ; + sc:name "PubMed ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0970" ; - sc:name "Citation" ; - sc:sameAs "http://edamontology.org/data_0970" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0970" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Citation" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0605, @@ -196185,8 +196085,45 @@ In 2021, the tool stats are calculated based on over 34 million of PMIDs with ov ; sc:url "http://fcite.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3168 ; + sc:citation , + "pmcid:PMC8686598", + "pubmed:34930110" ; + sc:description "Fast and concurrent lossless quality scores compressor." ; + sc:featureList edam:operation_3359, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "FCLQC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Minhyeok01/FCLQC" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0749, + edam:topic_3474, + edam:topic_3518 ; + sc:citation , + "pubmed:34613923" ; + sc:description "Locating Transcription Factor Binding Sites by combing Fully Convolutional Neural Network with Gated Recurrent Unit." ; + sc:featureList edam:operation_0445, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FCNGRU" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/wangguoguoa/FCNGRU" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -196204,7 +196141,7 @@ In 2021, the tool stats are calculated based on over 34 million of PMIDs with ov sc:url "https://bioconductor.org/packages/fcScan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -196227,7 +196164,7 @@ Assessing Consistency Across Functional Screening Datasets in Cancer Cells.""" ; sc:url "https://lccl.shinyapps.io/FDCE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation ; @@ -196242,7 +196179,7 @@ Assessing Consistency Across Functional Screening Datasets in Cancer Cells.""" ; biotools:primaryContact "Lukasz Kurgan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3344, @@ -196258,7 +196195,7 @@ Assessing Consistency Across Functional Screening Datasets in Cancer Cells.""" ; biotools:primaryContact "Rene Willemink" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -196281,8 +196218,21 @@ An efficient method to locate binding sites : Fragment Dissolved Molecular Dynam sc:name "fdMD" ; sc:url "https://github.com/DrugDesignUBUJA/fdMD" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "This server FDR4 is meant for the prediction of binding affinity of peptide binders in an antigenic sequence for a MHC class II allele HLA-DRB1*0401." ; + sc:featureList edam:operation_2945 ; + sc:name "fdr4" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/fdr4/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -196300,8 +196250,30 @@ An efficient method to locate binding sites : Fragment Dissolved Molecular Dynam sc:url "http://bioconductor.org/packages/release/bioc/html/fdrame.html" ; biotools:primaryContact "Effi Kenigsberg" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2229, + edam:topic_2640, + edam:topic_3379 ; + sc:citation , + "pmcid:PMC9210923", + "pubmed:35747247" ; + sc:description "FDR confidence interval selection and adjustment for large-scale hypothesis testing." ; + sc:featureList edam:operation_2238, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:license "Artistic-2.0" ; + sc:name "fdrci" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://cran.r-project.org/web/packages/fdrci/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0605, edam:topic_2269 ; @@ -196320,7 +196292,7 @@ An efficient method to locate binding sites : Fragment Dissolved Molecular Dynam sc:url "https://cran.r-project.org/package=FDRestimation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0204, @@ -196340,7 +196312,7 @@ An efficient method to locate binding sites : Fragment Dissolved Molecular Dynam sc:url "http://www.cuilab.cn/fds/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, @@ -196360,14 +196332,12 @@ An efficient method to locate binding sites : Fragment Dissolved Molecular Dynam a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -196397,7 +196367,7 @@ An efficient method to locate binding sites : Fragment Dissolved Molecular Dynam sc:url "http://emboss.open-bio.org/rel/rel6/apps/featcopy.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2814 ; @@ -196416,14 +196386,14 @@ An efficient method to locate binding sites : Fragment Dissolved Molecular Dynam a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -196455,7 +196425,7 @@ An efficient method to locate binding sites : Fragment Dissolved Molecular Dynam sc:url "http://www.bioinformatics.nl/cgi-bin/emboss/featmerge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0622, @@ -196474,18 +196444,15 @@ An efficient method to locate binding sites : Fragment Dissolved Molecular Dynam a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -196515,7 +196482,7 @@ An efficient method to locate binding sites : Fragment Dissolved Molecular Dynam sc:url "http://emboss.open-bio.org/rel/rel6/apps/featreport.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170, @@ -196532,14 +196499,12 @@ An efficient method to locate binding sites : Fragment Dissolved Molecular Dynam a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -196569,7 +196534,7 @@ An efficient method to locate binding sites : Fragment Dissolved Molecular Dynam sc:url "http://emboss.open-bio.org/rel/rel6/apps/feattext.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -196586,7 +196551,7 @@ An efficient method to locate binding sites : Fragment Dissolved Molecular Dynam biotools:primaryContact "Li CHEN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0659, @@ -196607,7 +196572,7 @@ As consequence of the various genomic sequencing projects, an increasing volume sc:url "https://github.com/Bonidia/FeatureExtraction_BiologicalSequences" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3070, @@ -196627,7 +196592,7 @@ As consequence of the various genomic sequencing projects, an increasing volume biotools:primaryContact "Stefan Schroedl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0601, @@ -196645,7 +196610,7 @@ As consequence of the various genomic sequencing projects, an increasing volume sc:url "https://github.com/calipho-sib/feature-viewer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation "pubmed:24227677" ; @@ -196662,7 +196627,7 @@ As consequence of the various genomic sequencing projects, an increasing volume "Yang Liao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0654, @@ -196684,7 +196649,7 @@ As consequence of the various genomic sequencing projects, an increasing volume biotools:primaryContact "FeatureExtract Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0102, @@ -196708,18 +196673,17 @@ As consequence of the various genomic sequencing projects, an increasing volume a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ], + sc:additionalType "http://edamontology.org/data_2955" ; + sc:name "Sequence report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0160 ; @@ -196737,7 +196701,7 @@ As consequence of the various genomic sequencing projects, an increasing volume biotools:primaryContact "Henrik Nielsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0203, @@ -196754,8 +196718,63 @@ As consequence of the various genomic sequencing projects, an increasing volume sc:name "FeatureScan" ; sc:url "http://gnaweb.gbf.de/cgi-bin/FeatureScan/FeatureScan.pl" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0081, + edam:topic_0196, + edam:topic_0769 ; + sc:citation , + "pubmed:35977383" ; + sc:description "Fec is a error correction tool based on two-rounds overlapping and caching." ; + sc:featureList edam:operation_0310, + edam:operation_3198 ; + sc:license "Not licensed" ; + sc:name "Fec" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/zhangjuncsu/Fec. a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0821, + edam:topic_3071 ; + sc:citation , + "pmcid:PMC8502015", + "pubmed:34626475" ; + sc:description "A web application gathering information about food enzyme preparations available on the European market." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3907 ; + sc:isAccessibleForFree true ; + sc:name "FEDA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://feda.sciensano.be" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_2640, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:35905732" ; + sc:description "A feature enhanced encoder-decoder LSTM network for nuclei instance segmentation for histopathological diagnosis." ; + sc:featureList edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "FEEDNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/CandleLabAI/FEEDNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3299 ; @@ -196774,7 +196793,7 @@ As consequence of the various genomic sequencing projects, an increasing volume biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170 ; @@ -196796,7 +196815,7 @@ As consequence of the various genomic sequencing projects, an increasing volume "Valentin Wucher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2269, @@ -196812,7 +196831,7 @@ As consequence of the various genomic sequencing projects, an increasing volume sc:url "https://github.com/jhmarcus/feems" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0623, edam:topic_3293, @@ -196832,7 +196851,7 @@ As consequence of the various genomic sequencing projects, an increasing volume sc:url "https://sourceforge.net/projects/transcriptomeassembly/files/Feature%20Extraction/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3172 ; sc:citation ; @@ -196851,14 +196870,14 @@ As consequence of the various genomic sequencing projects, an increasing volume a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_2814, @@ -196880,7 +196899,7 @@ As consequence of the various genomic sequencing projects, an increasing volume biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3295 ; @@ -196899,8 +196918,32 @@ As consequence of the various genomic sequencing projects, an increasing volume sc:url "http://bioconductor.org/packages/release/bioc/html/FEM.html" ; biotools:primaryContact "Zhen Yang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0203, + edam:topic_2229, + edam:topic_3170, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC8641482", + "pubmed:34909283" ; + sc:description "Mining biological meaning from cell level in single-cell RNA sequencing data." ; + sc:featureList edam:operation_0313, + edam:operation_2436, + edam:operation_3223, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FEM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/qingyunpkdd/single_cell_fem" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3068, @@ -196915,7 +196958,7 @@ As consequence of the various genomic sequencing projects, an increasing volume sc:url "https://github.com/meronvermaas/FEMfuns" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3444, @@ -196931,8 +196974,53 @@ As consequence of the various genomic sequencing projects, an increasing volume sc:url "https://www.mathworks.com/matlabcentral/fileexchange/36556-matlab-for-femlab-models" ; biotools:primaryContact "Rex Cheung" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0209, + edam:topic_3318 ; + sc:citation , + "pubmed:34519200" ; + sc:description "A Web-Based Tool for Automating the Setup of Relative Binding Free Energy Calculations." ; + sc:featureList edam:operation_0455, + edam:operation_2476, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FEPrepare" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://feprepare.vi-seem.eu/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0601, + edam:topic_0749, + edam:topic_3474, + edam:topic_3510 ; + sc:citation , + "pubmed:35696075" ; + sc:description "A Tool for Feature Extraction from Protein Sequence." ; + sc:featureList edam:operation_0267, + edam:operation_0303, + edam:operation_0417, + edam:operation_2422, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "FEPS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/dukkakc/FEPS_CFS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -196951,7 +197039,7 @@ As consequence of the various genomic sequencing projects, an increasing volume sc:url "https://github.com/GaoYa1122/FermatS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -196969,7 +197057,7 @@ As consequence of the various genomic sequencing projects, an increasing volume sc:url "https://webs.iiitd.edu.in/raghava/fermfoodb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, @@ -196985,8 +197073,28 @@ As consequence of the various genomic sequencing projects, an increasing volume sc:name "FerrDb" ; sc:url "http://www.zhounan.org/ferrdb" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0769, + edam:topic_2830, + edam:topic_3500, + edam:topic_3574 ; + sc:citation , + "pubmed:34954426" ; + sc:description "A Straight Pipeline for Functional Gene Annotation and Disease Mutation Discovery" ; + sc:featureList edam:operation_2421, + edam:operation_3672 ; + sc:isAccessibleForFree true ; + sc:name "FertilityOnline" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://mcg.ustc.edu.cn/bsc/spermgenes2.0/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3361, @@ -197004,7 +197112,7 @@ As consequence of the various genomic sequencing projects, an increasing volume sc:url "https://accarniel.github.io/FESTIval/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3452 ; @@ -197017,14 +197125,14 @@ As consequence of the various genomic sequencing projects, an increasing volume a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3077, @@ -197043,7 +197151,7 @@ As consequence of the various genomic sequencing projects, an increasing volume biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0736 ; sc:citation , @@ -197060,7 +197168,7 @@ As consequence of the various genomic sequencing projects, an increasing volume sc:url "http://prodom.prabi.fr/prodom/current/documentation/fetchProDom.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3384, @@ -197078,7 +197186,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V sc:url "https://github.com/abhi4ssj/few-shot-segmentation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation "pubmed:15980587" ; @@ -197091,7 +197199,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V sc:url "http://cluster.physics.iisc.ernet.in/ff/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -197113,7 +197221,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V biotools:primaryContact "FFAS Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3321, @@ -197134,7 +197242,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V "N.M. Belonogova" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3382 ; @@ -197147,7 +197255,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V sc:url "https://github.com/mogvision/FFD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -197160,7 +197268,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V biotools:primaryContact "Diego P. Rubert" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0130, edam:topic_2814 ; @@ -197176,7 +197284,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V biotools:primaryContact "Sarah A. Harris" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -197201,8 +197309,32 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V sc:url "http://bioinfo.townsend.yale.edu/" ; biotools:primaryContact "Jeffrey Townsend" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_2885, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8769912", + "pubmed:34953462" ; + sc:description "Prediction of disease-associated nsSNPs by integrating multi-scale ResNet models with deep feature fusion." ; + sc:featureList edam:operation_0267, + edam:operation_0331, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:name "FFMSRes-MutP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://csbio.njust.edu.cn/bioinf/ffmsresmutp/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0154, @@ -197221,7 +197353,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V sc:url "http://ffparam.umaryland.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518, @@ -197242,7 +197374,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0089, @@ -197262,8 +197394,22 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V sc:url "http://bioinf.cs.ucl.ac.uk/ffpred/" ; biotools:primaryContact "pripred team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3361 ; + sc:citation , + "pubmed:35254994" ; + sc:description "Distilling a Powerful Student Model via Online Knowledge Distillation." ; + sc:featureList edam:operation_3359 ; + sc:license "Not licensed" ; + sc:name "FFSD" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/SJLeo/FFSD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -197278,7 +197424,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V sc:url "https://github.com/NicholSchultz/FFselect" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0654, @@ -197297,14 +197443,14 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Vitor C. Piro" ; @@ -197321,14 +197467,14 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V biotools:primaryContact "Vitor C. Piro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "fgbio is a command line toolkit for working with genomic and particularly next generation sequencing data." ; sc:name "fgbio" ; sc:softwareVersion "1.3.0" ; sc:url "http://fulcrumgenomics.github.io/fgbio/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -197349,7 +197495,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V biotools:primaryContact "FGDB Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0769, @@ -197367,7 +197513,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V biotools:primaryContact "Chittibabu Guda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0622 ; @@ -197383,7 +197529,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V sc:url "http://bioinformatics.fccc.edu/software/OpenSource/FGDP/FGDP.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0114 ; sc:citation ; @@ -197393,7 +197539,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V sc:url "http://nhjy.hzau.edu.cn/kech/swxxx/jakj/dianzi/Bioinf6/GeneFinding/GeneFinding2.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, @@ -197411,14 +197557,12 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:name "Sequence assembly" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3181" ; - sc:name "Sequence assembly report" ; - sc:sameAs "http://edamontology.org/data_3181" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3181" ; + sc:name "Sequence assembly report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0196, @@ -197439,14 +197583,14 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602 ; @@ -197466,7 +197610,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053 ; @@ -197483,8 +197627,29 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V sc:url "http://bioconductor.org/packages/release/bioc/html/fgsea.html" ; biotools:primaryContact "Alexey Sergushichev" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0622, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC9235494", + "pubmed:35758819" ; + sc:description "The effect of genome graph expressiveness on the discrepancy between genome graph distance and string set distance." ; + sc:featureList edam:operation_0524, + edam:operation_3096, + edam:operation_3359 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FGTED" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Kingsford-Group/gtedemedtest/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -197502,7 +197667,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V sc:url "https://ccsmweb.uth.edu/FGviewer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0769, edam:topic_3063 ; @@ -197517,7 +197682,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V sc:url "https://github.com/NCATS-Tangerine/FHIR-PIT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3063, edam:topic_3366, @@ -197532,7 +197697,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V biotools:primaryContact "Niklas Reimer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0797, edam:topic_3174 ; @@ -197548,7 +197713,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V biotools:primaryContact "Jordan Peccia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -197566,7 +197731,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V sc:url "https://www.biotoclin.org/FHLdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0176, @@ -197588,7 +197753,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V biotools:primaryContact "FiberDock Administrator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -197606,7 +197771,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V biotools:primaryContact "Pierre Ghesquiere" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -197624,8 +197789,46 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V "Windows" ; sc:url "https://campbell-muscle-lab.github.io/FiberSim/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3452, + edam:topic_3474 ; + sc:citation , + "pubmed:34736226" ; + sc:description "Pulmonary fibrosis prognosis prediction using a convolutional self attention network." ; + sc:featureList edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Fibro-CoSANet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/zabir-nabil/Fibro-CoSANet" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0634, + edam:topic_3169, + edam:topic_3170, + edam:topic_3674 ; + sc:citation , + "pubmed:35277958" ; + sc:description "A manually curated resource for multi-omics level evidence integration of fibrosis research" ; + sc:featureList edam:operation_2421, + edam:operation_3223, + edam:operation_3431 ; + sc:name "FibROAD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.fibroad.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -197648,7 +197851,7 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V "Vassilis Aidinis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -197664,8 +197867,32 @@ PyTorch implementation of 'Squeeze and Excite' Guided Few Shot Segmentation of V sc:name "FIBSI" ; sc:url "https://github.com/rmcassidy/FIBSI_program" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0176, + edam:topic_0602, + edam:topic_0821, + edam:topic_3172, + edam:topic_3315 ; + sc:citation , + "pmcid:PMC8476010", + "pubmed:34499658" ; + sc:description """FiCoS (Fine- and Coarse-grained Simulator) is a novel efficient deterministic simulator of biological systems based on two different integration methods belonging to the Runge-Kutta family: the Dormand–Prince (DOPRI) method [1, 2], used in the absence of stiffness, and the Radau IIA method [3, 4] exploited when the system is stiff. +Specifically, FiCoS exploits the DOPRI5 and RADAU5 methods, which are explicit and implicit adaptive Runge-Kutta methods of order 5, capable of varying the integration step-size during the resolution of the Ordinary Differential Equation (ODE) systems.""" ; + sc:featureList edam:operation_0244, + edam:operation_2426, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "FiCoS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.com/andrea-tango/ficos" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2229, @@ -197684,8 +197911,37 @@ Is a software for achieve accurate cell typing by iteratively incorporating neig sc:name "FICT" ; sc:url "https://github.com/haotianteng/FICT" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0637, + edam:topic_0769, + edam:topic_2885, + edam:topic_3293 ; + sc:citation , + "pmcid:PMC8558511", + "pubmed:34733246" ; + sc:description "fIDBAC integrated an accuracy bacterial identification, automated strain typing and downstream AR/VF gene prediction analysis in a single, coherent workflow." ; + sc:featureList edam:operation_0525, + edam:operation_2454, + edam:operation_3196, + edam:operation_3431, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "fIDBAC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://fbac.dmicrobe.cn" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3303, @@ -197701,7 +197957,7 @@ Is a software for achieve accurate cell typing by iteratively incorporating neig sc:url "http://s-quest.bihealth.org/fiddle/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0602, edam:topic_2259, @@ -197719,14 +197975,12 @@ Is a software for achieve accurate cell typing by iteratively incorporating neig a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2984" ; - sc:name "Pathway or network report" ; - sc:sameAs "http://edamontology.org/data_2984" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2984" ; + sc:name "Pathway or network report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3308 ; @@ -197744,7 +197998,7 @@ Is a software for achieve accurate cell typing by iteratively incorporating neig biotools:primaryContact "Luigi Grassi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3334 ; sc:description "Run-time filter design and execution library." ; @@ -197759,14 +198013,14 @@ Is a software for achieve accurate cell typing by iteratively incorporating neig a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_2885 ; @@ -197786,7 +198040,7 @@ Is a software for achieve accurate cell typing by iteratively incorporating neig sc:url "http://snps.biofold.org/fido-snp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3510 ; sc:citation ; @@ -197801,7 +198055,7 @@ Is a software for achieve accurate cell typing by iteratively incorporating neig biotools:primaryContact "Dengming Ming" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2815, @@ -197819,7 +198073,7 @@ Is a software for achieve accurate cell typing by iteratively incorporating neig sc:url "https://github.com/concettapiazzese/FIELDRT-GitHub" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3170, @@ -197838,7 +198092,7 @@ To get the most out of Fifbase start with our 3 minute tour.""" ; sc:url "http://www.nwsuaflmz.com/FifBase/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation "pubmed:18202027" ; @@ -197852,8 +198106,30 @@ To get the most out of Fifbase start with our 3 minute tour.""" ; biotools:primaryContact "James A. Yorke", "Mihai Pop" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0621, + edam:topic_3068 ; + sc:citation ; + sc:description "A probabilistic method for filling gaps in genome assemblies." ; + sc:featureList edam:operation_0232, + edam:operation_0524, + edam:operation_0525, + edam:operation_3216, + edam:operation_3219 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Figbird" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/SumitTarafder/Figbird" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3071 ; @@ -197868,7 +198144,7 @@ To get the most out of Fifbase start with our 3 minute tour.""" ; sc:url "http://www.biosoft.com/w/figsys.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0092, @@ -197883,7 +198159,7 @@ To get the most out of Fifbase start with our 3 minute tour.""" ; sc:url "http://tree.bio.ed.ac.uk/software/figtree/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3382, @@ -197898,7 +198174,7 @@ To get the most out of Fifbase start with our 3 minute tour.""" ; sc:url "https://baohongz.github.io/figureComposer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2229, edam:topic_3382 ; @@ -197918,7 +198194,7 @@ You can fire a remote Jupyter notebook server and reproduce the analysis using B sc:url "https://github.com/fiji/Kappa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3067, edam:topic_3315, edam:topic_3384, @@ -197934,7 +198210,7 @@ You can fire a remote Jupyter notebook server and reproduce the analysis using B sc:url "https://imagej.github.io/Fijiyama" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -197957,7 +198233,7 @@ Functional genomics repository (FILER) is a database developed by NIAGADS with t sc:url "https://lisanwanglab.org/FILER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -197976,7 +198252,7 @@ Functional genomics repository (FILER) is a database developed by NIAGADS with t sc:url "https://github.com/TBradley27/FilTar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0769 ; sc:citation ; @@ -197994,7 +198270,7 @@ Functional genomics repository (FILER) is a database developed by NIAGADS with t "Vincent Moulton" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -198013,18 +198289,18 @@ Functional genomics repository (FILER) is a database developed by NIAGADS with t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3169 ; @@ -198040,8 +198316,30 @@ Functional genomics repository (FILER) is a database developed by NIAGADS with t sc:url "https://galaxy.pasteur.fr/tool_runner?tool_id=toolshed.pasteur.fr/repos/fmareuil/filtercontrolpeaks/filterControl/1.0" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3168, + edam:topic_3175, + edam:topic_3277 ; + sc:citation , + "pmcid:PMC8458033", + "pubmed:34553214" ; + sc:description "This package finds and filters artificial chimeric reads specifically generated in next-generation sequencing (NGS) process of formalin-fixed paraffin-embedded (FFPE) tissues. These artificial chimeric reads can lead to a large number of false positive structural variation (SV) calls. The required input is an indexed BAM file of a FFPE sample." ; + sc:featureList edam:operation_3227, + edam:operation_3435, + edam:operation_3675 ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "FilterFFPE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://bioconductor.org/packages/release/bioc/html/FilterFFPE.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3305, @@ -198061,14 +198359,14 @@ Functional genomics repository (FILER) is a database developed by NIAGADS with t sc:url "https://filterNHP.dpz.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Filtlong is a tool for filtering long reads by quality. It can take a set of long reads and produce a smaller, better subset. It uses both read length (longer is better) and read identity (higher is better) when choosing which reads pass the filter." ; sc:name "Filtlong" ; sc:softwareVersion "v0.2.0" ; sc:url "https://github.com/rrwick/Filtlong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3382 ; @@ -198078,8 +198376,50 @@ Functional genomics repository (FILER) is a database developed by NIAGADS with t sc:url "https://clffwrkmn.net/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0203, + edam:topic_2269 ; + sc:citation , + "pmcid:PMC8780852", + "pubmed:35072175" ; + sc:description "FiMDPEnv is a Python package that provides realistic simulation environments that model real-world consumption Markov decision processes (consumption MDPs)." ; + sc:featureList edam:operation_0337, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "FiMDP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/FiMDP/FiMDP" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0199, + edam:topic_0625, + edam:topic_2269, + edam:topic_2640 ; + sc:citation ; + sc:description "Inferring the Temporal Order of Mutations on Clonal Phylogeny under Finite-sites Models." ; + sc:featureList edam:operation_3196, + edam:operation_3435, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FiMO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/aveshag/FiMO" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -198093,14 +198433,14 @@ Functional genomics repository (FILER) is a database developed by NIAGADS with t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3424" ; - sc:name "Raw image" ; - sc:sameAs "http://edamontology.org/data_3424" ] ; + sc:additionalType "http://edamontology.org/data_3424" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Raw image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3382 ; @@ -198118,7 +198458,7 @@ Functional genomics repository (FILER) is a database developed by NIAGADS with t sc:url "https://www.uni-muenster.de/PRIA/en/FIM/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056, edam:topic_3301, @@ -198136,7 +198476,7 @@ Functional genomics repository (FILER) is a database developed by NIAGADS with t biotools:primaryContact "Louise Roer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3382, @@ -198161,7 +198501,7 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; sc:url "https://rdrr.io/github/haimeh/finFindR/man/finFindR-package.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0654, @@ -198178,7 +198518,7 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; sc:url "http://finaledb.research.cchmc.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -198194,7 +198534,7 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; sc:url "http://find.princeton.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3318, @@ -198217,7 +198557,7 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; biotools:primaryContact "David Snyder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -198235,7 +198575,7 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; sc:url "https://github.com/Helkafen/find-tfbs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0091, @@ -198251,7 +198591,7 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; biotools:primaryContact "Xugang Ye" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Finds regions of interest in a specimen image and adds them to an openDS object" ; sc:featureList edam:operation_1812, edam:operation_2990, @@ -198262,7 +198602,7 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; sc:url "http://sdr.nhm.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0208, @@ -198284,7 +198624,7 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; biotools:primaryContact "FINDbase Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -198301,7 +198641,7 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; sc:url "https://github.com/sagnikbanerjee15/Finder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3372 ; @@ -198317,10 +198657,10 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3292 ; sc:citation ; @@ -198336,24 +198676,44 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; sc:url "http://metalweb.cerm.unifi.it/tools/findgeo/" ; biotools:primaryContact "Claudia Andreini" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0749, + edam:topic_3169, + edam:topic_3170, + edam:topic_3940 ; + sc:citation , + "pmcid:PMC8988339", + "pubmed:35392802" ; + sc:description "An R/Bioconductor package to identify influential transcription factor and targets based on multi-omics data." ; + sc:featureList edam:operation_3215, + edam:operation_3222, + edam:operation_3223 ; + sc:isAccessibleForFree true ; + sc:license "Artistic-2.0" ; + sc:name "FindIT2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://bioconductor.org/packages/devel/bioc/html/FindIT2.html" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2024" ; - sc:name "Enzyme kinetics data" ; - sc:sameAs "http://edamontology.org/data_2024" ] ; + sc:additionalType "http://edamontology.org/data_2024" ; + sc:name "Enzyme kinetics data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2025" ; - sc:name "Michaelis Menten plot" ; - sc:sameAs "http://edamontology.org/data_2025" ], + sc:additionalType "http://edamontology.org/data_2026" ; + sc:name "Hanes Woolf plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2978" ; - sc:name "Reaction data" ; - sc:sameAs "http://edamontology.org/data_2978" ], + sc:additionalType "http://edamontology.org/data_2025" ; + sc:name "Michaelis Menten plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2026" ; - sc:name "Hanes Woolf plot" ; - sc:sameAs "http://edamontology.org/data_2026" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2978" ; + sc:name "Reaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0821 ; sc:citation , @@ -198383,7 +198743,7 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/findkm.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -198401,8 +198761,30 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/FindMyFriends.html" ; biotools:primaryContact "Thomas Lin Pedersen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3170, + edam:topic_3337 ; + sc:citation , + "pubmed:35394020" ; + sc:description "An R package to automatically select number of principal components in single-cell analysis." ; + sc:featureList edam:operation_3435, + edam:operation_3891, + edam:operation_3935, + edam:operation_3960 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "findPC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/haotian-zhuang/findPC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -198420,7 +198802,7 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; biotools:primaryContact "Anthony Fejes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -198438,18 +198820,18 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0749 ; @@ -198466,8 +198848,34 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; sc:url "https://galaxy.pasteur.fr/tool_runner?tool_id=toolshed.pasteur.fr/repos/fmareuil/promoteur_tools/findpromoter/1.0" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0202, + edam:topic_2275, + edam:topic_3375, + edam:topic_3957 ; + sc:citation , + "pmcid:PMC8632724", + "pubmed:34901479" ; + sc:description "A web server for in silico D-peptide ligand identification." ; + sc:featureList edam:operation_2476, + edam:operation_3899, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:name "finDr" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://findr.biologie.uni-freiburg.de/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3325, @@ -198488,8 +198896,50 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; sc:url "http://www.findzebra.com/raredisease" ; biotools:primaryContact "FindZebra Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0621, + edam:topic_0654, + edam:topic_3293, + edam:topic_3944 ; + sc:citation ; + sc:description "An automated pipeline for detecting and visualising sex chromosomes using whole-genome sequencing data." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "findZX" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/hsigeman/findZX" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2885, + edam:topic_3174, + edam:topic_3299, + edam:topic_3673, + edam:topic_3796 ; + sc:citation , + "pmcid:PMC8684245", + "pubmed:34922440" ; + sc:description "This stand-alone program implements the Fine-Mapping of Adaptive Variation (FineMAV) statistic for detection of positively selected variants." ; + sc:featureList edam:operation_3196, + edam:operation_3208, + edam:operation_3226, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "FineMAV" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:url "https://github.com/fadilla-wahyudi/finemav" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2229, @@ -198512,7 +198962,7 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; sc:url "https://github.com/haochenucr/FINER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -198529,7 +198979,7 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; sc:url "http://www.cs.bgu.ac.il/~nucleom/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0080, @@ -198547,18 +198997,15 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0858" ; - sc:name "Sequence signature matches" ; - sc:sameAs "http://edamontology.org/data_0858" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0858" ; + sc:name "Sequence signature matches" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0623 ; @@ -198581,7 +199028,7 @@ finFindR-package: Dolphin Recognition via Automated Cropping Tracing and..""" ; biotools:primaryContact "Web Production" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -198604,7 +199051,7 @@ We have developed Filters for Next Generation Sequencing (FiNGS), software writt sc:url "https://github.com/cpwardell/FiNGS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0749, @@ -198623,7 +199070,7 @@ We have developed Filters for Next Generation Sequencing (FiNGS), software writt biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -198640,7 +199087,7 @@ We have developed Filters for Next Generation Sequencing (FiNGS), software writt sc:url "https://tavazoielab.c2b2.columbia.edu/FIRE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0108, @@ -198658,7 +199105,7 @@ We have developed Filters for Next Generation Sequencing (FiNGS), software writt sc:url "https://tavazoielab.c2b2.columbia.edu/FIRE-pro/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3169, @@ -198681,22 +199128,50 @@ Hi-C experiments have been widely adopted to study chromatin spatial organizatio sc:url "https://yunliweb.its.unc.edu/FIREcaller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2291" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "UniProt ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "PDB ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2007" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "UniProt keyword" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; - sc:applicationSubCategory edam:topic_0128 ; - sc:citation ; - sc:description "A curated inventory of catalytic and biologically relevant small ligand-binding residues." ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0154, + edam:topic_3510, + edam:topic_3534 ; + sc:author , + ; + sc:citation , + , + "pmcid:PMC1716728", + "pmcid:PMC3965074", + "pubmed:17132832", + "pubmed:24243844" ; + sc:description "A curated inventory of catalytic and biologically relevant small ligand-binding sites." ; sc:featureList edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-ND-4.0" ; sc:name "FireDB" ; sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:softwareHelp ; + sc:softwareHelp ; sc:softwareVersion "1" ; - sc:url "http://firedb.bioinfo.cnio.es/" . + sc:url "http://firedb.bioinfo.cnio.es/" ; + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -198714,7 +199189,7 @@ Hi-C experiments have been widely adopted to study chromatin spatial organizatio sc:url "http://firedb.bioinfo.cnio.es/rest/FireDB_rest.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0176, @@ -198738,26 +199213,26 @@ Hi-C experiments have been widely adopted to study chromatin spatial organizatio a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ], + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Protein structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_1317, @@ -198802,22 +199277,22 @@ Hi-C experiments have been widely adopted to study chromatin spatial organizatio a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_1984" ; + sc:name "Protein sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Protein sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1384" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -198851,7 +199326,7 @@ Hi-C experiments have been widely adopted to study chromatin spatial organizatio biotools:primaryContact "FireProt ASR team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -198888,7 +199363,7 @@ Hi-C experiments have been widely adopted to study chromatin spatial organizatio biotools:primaryContact "FireProt team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0166, @@ -198906,7 +199381,7 @@ Hi-C experiments have been widely adopted to study chromatin spatial organizatio sc:url "http://fires.ifc.unam.mx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -198924,7 +199399,7 @@ Hi-C experiments have been widely adopted to study chromatin spatial organizatio sc:url "http://firedb.bioinfo.cnio.es/Php/FireStar.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -198939,7 +199414,7 @@ Hi-C experiments have been widely adopted to study chromatin spatial organizatio sc:url "http://firedb.bioinfo.cnio.es/Php/fstarTEXT.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, @@ -198952,7 +199427,7 @@ Summary The interrelated programs essential for cellular fitness in the face of sc:url "http://fireworks.mendillolab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, @@ -198965,7 +199440,7 @@ Summary The interrelated programs essential for cellular fitness in the face of sc:url "https://github.com/mingjingsi/FIRM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -198981,7 +199456,7 @@ Summary The interrelated programs essential for cellular fitness in the face of sc:url "https://msc-viz.emsl.pnnl.gov/AVPR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3383, @@ -198999,7 +199474,7 @@ Summary The interrelated programs essential for cellular fitness in the face of sc:url "https://fpb.ceb.cam.ac.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0654, @@ -199021,7 +199496,7 @@ Summary The interrelated programs essential for cellular fitness in the face of "Ramana Davuluri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -199046,7 +199521,7 @@ Summary The interrelated programs essential for cellular fitness in the face of biotools:primaryContact "Andrew Firth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0160, @@ -199064,7 +199539,7 @@ Summary The interrelated programs essential for cellular fitness in the face of sc:url "http://max.ucmp.umu.se/sahmm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation , @@ -199080,7 +199555,7 @@ Summary The interrelated programs essential for cellular fitness in the face of sc:url "http://comprec-lin.iiar.pwr.edu.pl/fishInput/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2229, @@ -199096,7 +199571,7 @@ Summary The interrelated programs essential for cellular fitness in the face of sc:url "https://code.google.com/p/fishfinder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0622, @@ -199113,14 +199588,12 @@ Summary The interrelated programs essential for cellular fitness in the face of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -199137,14 +199610,12 @@ Summary The interrelated programs essential for cellular fitness in the face of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -199160,7 +199631,7 @@ Summary The interrelated programs essential for cellular fitness in the face of sc:url "http://babel.ucmp.umu.se/fish/hmmpfam.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -199180,7 +199651,7 @@ Summary The interrelated programs essential for cellular fitness in the face of "Karesh Arunakirinathan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3070, @@ -199199,7 +199670,7 @@ Summary The interrelated programs essential for cellular fitness in the face of biotools:primaryContact "Steinar Thorvaldsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0621, @@ -199220,8 +199691,32 @@ Summary The interrelated programs essential for cellular fitness in the face of "Windows" ; sc:url "https://bioinfo.njau.edu.cn/fishExp" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0102, + edam:topic_0203, + edam:topic_0621, + edam:topic_0659 ; + sc:citation , + "pmcid:PMC8826519", + "pubmed:35020925" ; + sc:description "FishmiRNA is an evolutionarily-supported, manually-curated, genome duplication-aware database for the annotation of ray-finned fish miRNA genes, their mature products and their expression profiles." ; + sc:featureList edam:operation_0337, + edam:operation_0463, + edam:operation_2421, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:name "FishmiRNA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.fishmirna.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0610, @@ -199239,7 +199734,7 @@ The package has two functions FishTaxaMaker and FishPhyloMaker. The first genera biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3452 ; @@ -199257,8 +199752,43 @@ The package has two functions FishTaxaMaker and FishPhyloMaker. The first genera sc:url "https://github.com/chrisamiller/fishplot" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0621, + edam:topic_0769, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8928902", + "pubmed:35342596" ; + sc:description "FishSizer is an open-source software developed to assist researchers in the use of estimating length and depth of fish larvae by semi-automatization of the process." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "FishSizer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/jeppehave/FishSizer" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "FiSiPred: This method predict dihedral angles of amino acids of a protein using very simple technique. This server allows users to predict dihedral angles using average based prediction (ABP) and secondary structure assisted average angle based prediction (SABP) methods." ; + sc:featureList edam:operation_2945 ; + sc:name "fisipred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/fisipred/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0128, @@ -199274,7 +199804,7 @@ The package has two functions FishTaxaMaker and FishPhyloMaker. The first genera sc:url "https://github.com/kuanglab/FIST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3516, @@ -199297,34 +199827,8 @@ The package has two functions FishTaxaMaker and FishPhyloMaker. The first genera sc:url "https://cran.r-project.org/package=fitPoly" ; biotools:primaryContact "Roeland E. Voorrips" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0091, - edam:topic_0114, - edam:topic_0621, - edam:topic_0749, - edam:topic_3169 ; - sc:citation ; - sc:description """Analyzing microbial ChIP-Seq data with Pique. - -A efficient peak finder for high coverage ChIP-seq experiments, written in python. - -The pique package is a high efficiency peak finder for ChIP-seq. - -experiments that yield high coverage allignments to the reference. - -genome. It was developed for studying gene expression in Halobacterium. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Pique', 'Pique easy'""" ; - sc:featureList edam:operation_3192, - edam:operation_3215, - edam:operation_3222, - edam:operation_3629 ; - sc:license "BSD-3-Clause" ; - sc:name "fit pique" ; - sc:url "http://github.com/ryneches/pique" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -199341,7 +199845,7 @@ genome. It was developed for studying gene expression in Halobacterium. biotools:primaryContact "Michael Matschiner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3070, @@ -199359,8 +199863,49 @@ genome. It was developed for studying gene expression in Halobacterium. sc:url "https://www.mathworks.com/matlabcentral/fileexchange/75382-fitcovid19_branchingprocess" ; biotools:primaryContact "Plamen Trayanov" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3170, + edam:topic_3308, + edam:topic_3518 ; + sc:citation , + "pubmed:35870444" ; + sc:description "Accurate inference of single-cell developmental potential using sample-specific gene weight." ; + sc:featureList edam:operation_3463, + edam:operation_3629, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FitDevo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/jumphone/fitdevo" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0209, + edam:topic_0749, + edam:topic_2275 ; + sc:citation , + "pubmed:35289358" ; + sc:description "FitDock is a novel protein–ligand docking method which outperforms state-of-the-art methods in terms of accuracy and speed, if the template is available." ; + sc:featureList edam:operation_0482, + edam:operation_3899, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FitDock" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:url "http://cao.labshare.cn/fitdock/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -199378,7 +199923,7 @@ genome. It was developed for studying gene expression in Halobacterium. biotools:primaryContact "Ruyu Tan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0605, edam:topic_0621, @@ -199399,7 +199944,7 @@ genome. It was developed for studying gene expression in Halobacterium. sc:url "https://github.com/ay-lab/fithic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -199416,7 +199961,7 @@ genome. It was developed for studying gene expression in Halobacterium. sc:url "http://witold.med.virginia.edu/fitmunk/server/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -199433,7 +199978,7 @@ genome. It was developed for studying gene expression in Halobacterium. sc:url "http://erilllab.umbc.edu/research/software/fitom/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0602, @@ -199455,7 +200000,7 @@ FITs work in two phases. It has been made so to handle very large read-count mat sc:url "https://reggenlab.github.io/FITs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -199474,7 +200019,7 @@ FITs work in two phases. It has been made so to handle very large read-count mat biotools:primaryContact "milan batista" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -199492,7 +200037,7 @@ FITs work in two phases. It has been made so to handle very large read-count mat biotools:primaryContact "milan batista" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -199509,7 +200054,7 @@ FITs work in two phases. It has been made so to handle very large read-count mat biotools:primaryContact "JM2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -199528,7 +200073,7 @@ FITs work in two phases. It has been made so to handle very large read-count mat biotools:primaryContact "JM2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -199547,7 +200092,7 @@ FITs work in two phases. It has been made so to handle very large read-count mat biotools:primaryContact "Lateef Adewale Kareem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3512 ; sc:citation ; @@ -199560,7 +200105,7 @@ FITs work in two phases. It has been made so to handle very large read-count mat sc:url "http://pelechanolab.com/software/fivepseq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -199579,7 +200124,7 @@ FIVEx: Functional Interpretation and Visualization of Expression.""" ; sc:url "https://eqtl.pheweb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -199596,7 +200141,7 @@ FIVEx: Functional Interpretation and Visualization of Expression.""" ; sc:url "https://bitbucket.org/thashim/fixseq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3511 ; @@ -199610,8 +200155,34 @@ FIVEx: Functional Interpretation and Visualization of Expression.""" ; sc:softwareHelp ; sc:url "https://github.com/EESI/Fizzy" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1193" ; + sc:encodingFormat "http://edamontology.org/format_2545" ; + sc:name "Tool name (FASTA)" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0622 ; + sc:citation ; + sc:description "Pipeline for Single Nucleotide Variants (SNVs) and Copy Number Variation (CNVs) variant calling" ; + sc:featureList edam:operation_0362, + edam:operation_3227, + edam:operation_3961 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "FJD-pipeline" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:url "https://github.com/TBLabFJD/VariantCallingFJD" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workbench" ; sc:applicationSubCategory edam:topic_0202, @@ -199630,14 +200201,12 @@ FIVEx: Functional Interpretation and Visualization of Expression.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3473 ; @@ -199652,7 +200221,7 @@ FIVEx: Functional Interpretation and Visualization of Expression.""" ; sc:url "http://forensic.ugent.be/FLAD/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3172 ; @@ -199671,7 +200240,7 @@ FIVEx: Functional Interpretation and Visualization of Expression.""" ; "Riccardo Romoli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -199691,7 +200260,7 @@ FIVEx: Functional Interpretation and Visualization of Expression.""" ; sc:url "http://www.webflags.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0219, @@ -199709,7 +200278,7 @@ FIVEx: Functional Interpretation and Visualization of Expression.""" ; sc:url "https://github.com/yhoogstrate/flaimapper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application", "Workbench" ; @@ -199730,14 +200299,24 @@ FIVEx: Functional Interpretation and Visualization of Expression.""" ; sc:url "https://github.com/phi-grib/flame" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:description "Functional enrichment analysis using multiple lists" ; sc:name "Flame" ; sc:url "http://bib.fleming.gr:3838/Flame/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "FLAME (Coakley et al., 2012) is an open-source, generic formal framework for agent-based modelling that allows parallelisation using MPI, and developers can use it to create models and tools. Implementing a Flame simulation is done by using finite-state automata with memory (Coakley et al., 2006). This tool has been adapted to be used with distributed GPUs using the OpenCL standard (Richmond et al., 2010). Examples of uses of FLAME range from bioreactor studies (Kaul et al., 2013) to immunogenic studies (Kabiri Chimeh et al., 2019) or also epidermis modelling (Li et al., 2013)." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Flame GPU 2" ; + sc:softwareHelp ; + sc:url "https://flamegpu.com/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -199758,7 +200337,7 @@ Flanker is a tool for studying the homology of gene-flanking sequences. It will sc:url "https://github.com/wtmatlock/flanker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3573 ; sc:citation , @@ -199771,7 +200350,7 @@ Flanker is a tool for studying the homology of gene-flanking sequences. It will sc:url "https://github.com/CareyLabVT/FLARE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168 ; @@ -199786,7 +200365,7 @@ Flanker is a tool for studying the homology of gene-flanking sequences. It will biotools:primaryContact "FLASh team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -199805,16 +200384,35 @@ Flanker is a tool for studying the homology of gene-flanking sequences. It will sc:softwareVersion "2.0 beta" ; sc:url "https://www.openms.de/comp/flashdeconv/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3055, + edam:topic_3382 ; + sc:citation , + "pubmed:35792838" ; + sc:description "Interactive visualisation for fine-mapping of multiple quantitative traits." ; + sc:featureList edam:operation_0337, + edam:operation_3791, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "flashfm-ivis" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://shiny.mrc-bsu.cam.ac.uk/apps/flashfm-ivis/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3858" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -199830,7 +200428,7 @@ Flanker is a tool for studying the homology of gene-flanking sequences. It will biotools:primaryContact "Smith Research Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_0084, @@ -199852,7 +200450,7 @@ Flanker is a tool for studying the homology of gene-flanking sequences. It will sc:url "http://flavi-web.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3315, @@ -199875,7 +200473,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "https://jgcri.github.io/fldgen/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0121, @@ -199896,7 +200494,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "http://biomine.cs.vcu.edu/servers/flDPnn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -199913,7 +200511,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Hao Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -199931,7 +200529,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "https://github.com/ZhaiLab-SUSTech/FLEPSeq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_0121, @@ -199953,10 +200551,10 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:24832523" ; @@ -199976,7 +200574,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Johannes Roehr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275 ; @@ -199989,7 +200587,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "http://bioinfo3d.cs.tau.ac.il/FlexDock/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -200003,7 +200601,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "https://github.com/Simon-Leonard/FlexDotPlot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -200022,7 +200620,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Ludovic Cottret" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3307 ; sc:author ; @@ -200046,7 +200644,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -200064,7 +200662,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "https://github.com/jamesliley/cfdr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -200080,7 +200678,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "https://github.com/kszkop/flexiMAP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0080, @@ -200100,14 +200698,14 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -200143,7 +200741,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation , @@ -200159,7 +200757,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "http://flexpred.rit.albany.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814 ; @@ -200175,14 +200773,14 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176 ; sc:citation ; @@ -200198,8 +200796,27 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "http://mmb.irbbarcelona.org/FlexServ" ; biotools:primaryContact "Institute for Research in Biomedicine Barcelona" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0637, + edam:topic_3071, + edam:topic_3174 ; + sc:citation , + "pubmed:34469515" ; + sc:description "FlexTaxD (Flexible Taxonomy Databases) - Create, add, merge different taxonomy sources (QIIME, GTDB, NCBI and more) and create metagenomic databases (kraken2, ganon and more )." ; + sc:featureList edam:operation_3460 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "FlexTaxD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/FOI-Bioinformatics/flextaxd" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3170, @@ -200217,7 +200834,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "https://github.com/wassermanlab/OpenFlexTyper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, @@ -200230,8 +200847,32 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:name "FLIMJ" ; sc:url "https://imagej.net/FLIMJ" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0769, + edam:topic_3170, + edam:topic_3263, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC8670124", + "pubmed:34906207" ; + sc:description "Flimma is a federated privacy-aware version of state-of-the art differential expression analysis method limma voom." ; + sc:featureList edam:operation_3223, + edam:operation_3232, + edam:operation_3436, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "Flimma" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://exbio.wzw.tum.de/flimma/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3383, edam:topic_3384, @@ -200246,14 +200887,14 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -200278,7 +200919,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Elsa Bernard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -200298,7 +200939,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Richard J. Cotton" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3316 ; @@ -200317,8 +200958,28 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "http://bitlab-es.com/flipper/" ; biotools:primaryContact "Esteban Pérez-Wohlfeil" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3300, + edam:topic_3474, + edam:topic_3572 ; + sc:citation , + "pubmed:34736174" ; + sc:description "FLIRT is a Feature generation tooLkIt for weaRable daTa such as that from your smartwatch or smart ring. With FLIRT you can easily transform wearable data into meaningful features which can then be used for example in machine learning or AI models." ; + sc:featureList edam:operation_3435, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "FLIRT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/im-ethz/flirt" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; sc:citation , @@ -200331,7 +200992,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "https://wumengyangok.github.io/Project/FloorLevelNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0780, edam:topic_3382, @@ -200344,7 +201005,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "https://www.floraincognita.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3934 ; sc:description "Floreada is a free web-based tool for simple flow cytometry analysis. It includes all basic capabilities - manual gates, manual compensation, dot plots, histograms, overlays, and basic automatic clustering. It is available on any platform with a web browser, including Windows, Mac, Linux, as well as phones and tablets." ; @@ -200358,7 +201019,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "https://floreada.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229 ; sc:citation ; @@ -200374,7 +201035,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "https://github.com/SofieVG/FloReMi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0780, @@ -200390,7 +201051,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "http://dryades.units.it/floritaly" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -200407,7 +201068,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "http://faculty.washington.edu/browning/floss/floss.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3374, edam:topic_3934 ; @@ -200424,7 +201085,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Robert Henson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0769, @@ -200446,7 +201107,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Bruno M.S. Wanderley" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_0121, @@ -200469,7 +201130,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- sc:url "http://www.bioinf.uni-leipzig.de/Software/flowEMMi/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3572 ; @@ -200487,7 +201148,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Gianni Monaco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229 ; sc:citation ; @@ -200504,18 +201165,18 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -200538,22 +201199,22 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -200575,7 +201236,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Kieran O'Neill" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229 ; @@ -200595,22 +201256,22 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3449" ; - sc:name "Cell migration track image" ; - sc:sameAs "http://edamontology.org/data_3449" ] ; + sc:additionalType "http://edamontology.org/data_3449" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Cell migration track image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3449" ; - sc:name "Cell migration track image" ; - sc:sameAs "http://edamontology.org/data_3449" ], + sc:additionalType "http://edamontology.org/data_3449" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Cell migration track image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -200630,18 +201291,18 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3301, @@ -200663,7 +201324,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Author: Joachim Schumann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -200681,7 +201342,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Justin Meskas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -200702,7 +201363,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Kipper Fletez-Brant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -200723,18 +201384,18 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3297, @@ -200756,7 +201417,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "M.Jiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3934 ; @@ -200767,22 +201428,22 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -200805,7 +201466,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Joachim Schumann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -200823,7 +201484,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Mehrnoush Malek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation "pubmed:21330287" ; @@ -200837,7 +201498,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Ketil Malde" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -200853,22 +201514,22 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -200891,18 +201552,18 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -200926,7 +201587,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Herb Holyst" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2229, @@ -200941,7 +201602,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3170, @@ -200958,8 +201619,32 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- "Windows" ; sc:url "https://github.com/holab-hku/FlowGrid" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_0804, + edam:topic_3400, + edam:topic_3474, + edam:topic_3934 ; + sc:citation , + "pmcid:PMC8602902", + "pubmed:34804056" ; + sc:description "A Python Toolkit for Integrated Manual and Automated Cytometry Analysis Workflows." ; + sc:featureList edam:operation_2422, + edam:operation_2940, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "FlowKit" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/whitews/FlowKit" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3056, @@ -200976,7 +201661,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Markus Lux" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -200994,7 +201679,7 @@ The fldgen package provides functions to learn the spatial, temporal, and inter- biotools:primaryContact "Chiaowen Joyce Hsiao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2259, @@ -201015,7 +201700,7 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s sc:url "https://github.com/zunderlab/FLOWMAP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -201033,7 +201718,7 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s biotools:primaryContact "Ariful Azad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -201051,7 +201736,7 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s biotools:primaryContact "Nima Aghaeepour" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -201069,7 +201754,7 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s biotools:primaryContact "Greg Finak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -201090,7 +201775,7 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s biotools:primaryContact "Yongchao Ge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -201109,22 +201794,22 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -201148,18 +201833,18 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3047, @@ -201178,7 +201863,7 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s biotools:primaryContact "Mike Jiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -201196,7 +201881,7 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s biotools:primaryContact "Josef Spidlen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -201215,7 +201900,7 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s biotools:primaryContact "Josef Spidlen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0108, @@ -201230,10 +201915,10 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3047 ; sc:citation , @@ -201252,10 +201937,9 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229 ; sc:citation ; @@ -201272,14 +201956,14 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3306, @@ -201299,7 +201983,7 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s "Mike Jiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204 ; sc:description "This package was developed for analysis of both dynamic and steady state experiments examining the function of gene regulatory networks in yeast (strain W303) expressing fluorescent reporter proteins using a BD Accuri C6 and SORP cytometers. However, the functions are for the most part general and may be adapted for analysis of other organisms using other flow cytometers." ; @@ -201317,7 +202001,7 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s biotools:primaryContact "R. Clay Wright" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -201337,7 +202021,7 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s biotools:primaryContact "Greg Finak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0625, @@ -201357,14 +202041,14 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Experimental measurement" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -201387,14 +202071,14 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -201414,22 +202098,22 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -201450,7 +202134,7 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s biotools:primaryContact "Ariful Azad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -201468,8 +202152,20 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s biotools:primaryContact "Greg Finak", "Mike Jiang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:citation , + "pubmed:35316193" ; + sc:description "Classical federated learning approaches incur significant performance degradation in the presence of non-IID client data." ; + sc:featureList edam:operation_3432, + edam:operation_3436 ; + sc:license "Not licensed" ; + sc:name "FLT" ; + sc:url "https://github.com/hjraad/FLT/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0199, edam:topic_3168, @@ -201488,7 +202184,7 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s "Sujun Gao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -201503,7 +202199,7 @@ It is a graph-based, force-directed layout algorithm for trajectory mapping in s biotools:primaryContact "Leonardo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0749, @@ -201526,7 +202222,7 @@ These scripts allow to launch a local version of the Shiny web-interface to expl sc:url "https://github.com/cbenoitp/flu-splicing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0781, @@ -201546,14 +202242,13 @@ These scripts allow to launch a local version of the Shiny web-interface to expl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2042" ; - sc:name "Evidence" ; - sc:sameAs "http://edamontology.org/data_2042" ] ; + sc:additionalType "http://edamontology.org/data_2042" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Evidence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0781, edam:topic_2269, @@ -201574,7 +202269,7 @@ These scripts allow to launch a local version of the Shiny web-interface to expl biotools:primaryContact "Edwin van Leeuwen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0797, @@ -201592,7 +202287,7 @@ These scripts allow to launch a local version of the Shiny web-interface to expl biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0781, @@ -201606,7 +202301,7 @@ These scripts allow to launch a local version of the Shiny web-interface to expl sc:url "http://www.flugenome.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3382 ; @@ -201620,7 +202315,7 @@ These scripts allow to launch a local version of the Shiny web-interface to expl sc:url "http://www.sci.utah.edu/software/fluorender.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0593, @@ -201639,7 +202334,7 @@ These scripts allow to launch a local version of the Shiny web-interface to expl sc:url "https://github.com/Fluorescence-Tools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "FluorescenceViewer.m is a short script for viewing fluorescence spectra. It requires the folder containing fluorescent spectra to be in the same directory as the .m file." ; sc:featureList edam:operation_3214 ; @@ -201653,7 +202348,7 @@ These scripts allow to launch a local version of the Shiny web-interface to expl biotools:primaryContact "Caleb Stoltzfus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3304, @@ -201671,7 +202366,7 @@ These scripts allow to launch a local version of the Shiny web-interface to expl biotools:primaryContact "EMC_solver" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3297, @@ -201691,7 +202386,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:url "https://github.com/dakota0064/Fluorescent_Robotic_Imager" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -201704,8 +202399,21 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:name "FluPhenotype" ; sc:url "http://www.computationalbiology.cn:18888/IVEW" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "FluSPred(Flu Spread Prediction) is a machine learning based tool to predict the human associated Influenza A virus strains with the help of its protein and genome sequences," ; + sc:featureList edam:operation_2945 ; + sc:name "fluspred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/fluspred/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0218, @@ -201721,7 +202429,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:url "https://bitbucket.org/biodesignlab/flute" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3170 ; sc:description "FluxCapacitor s a computer program to predict splice form abundancies from reads of an RNA-seq experiment. FluxSimulator can generate simulated data for testing RNA-seq pipelines" ; @@ -201731,7 +202439,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl biotools:primaryContact "Flux Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -201751,7 +202459,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:url "https://fluxer.umbc.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2259 ; @@ -201766,7 +202474,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:url "https://immersive-analytics.infotech.monash.edu/vanted/addons/fluxmap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -201781,7 +202489,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:url "https://www.lumc.nl/org/humane-genetica/medewerkers/jan-bert-van-klinken" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3360, @@ -201798,7 +202506,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl biotools:primaryContact "Shireesh Srivastava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -201814,7 +202522,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:url "http://apps.cytoscape.org/apps/fluxviz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -201836,7 +202544,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl biotools:primaryContact "Jim Thurmond" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0218, @@ -201852,7 +202560,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:url "https://github.com/FlyBrainLab/FlyBrainLab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -201876,26 +202584,21 @@ Code and .obj files for construction of a robotic imager capable of using visibl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -201920,7 +202623,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:url "https://flymine.org/flymine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -201941,7 +202644,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0208, edam:topic_3063, @@ -201957,7 +202660,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=33270363" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -201977,7 +202680,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:url "http://www.flyrnai.org/tools/fly_phone" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0611, @@ -201999,7 +202702,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl biotools:primaryContact "Bug report form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -202016,7 +202719,7 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:url "https://flyterminalia.pitt.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -202035,8 +202738,33 @@ Code and .obj files for construction of a robotic imager capable of using visibl sc:url "http://www.mrc-lmb.cam.ac.uk/genomes/FlyTF/old_index.html" ; biotools:primaryContact "Boris Adryan" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0611, + edam:topic_0621, + edam:topic_3304, + edam:topic_3474, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8903166", + "pubmed:34949809" ; + sc:description "FlyWire is a game-like platform open to all, to help crowdsource the first complete wiring diagram of a centralized brain. In a fruit fly brain sliced and imaged by electron microscopy (Zheng et al. 2018), we identified pieces of neurons by artificial intelligence. Players search for the right pieces and put together beautiful 3D neurons that advance science's understanding of brain circuits." ; + sc:featureList edam:operation_0337, + edam:operation_3096, + edam:operation_3450 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "FlyWire" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "http://flywire.ai" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0218, @@ -202056,7 +202784,7 @@ A fast, AVX2 accelerated FM-index library that utilizes windows of SIMD register sc:url "https://github.com/TravisWheelerLab/AvxWindowFmIndex" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382 ; @@ -202073,7 +202801,7 @@ A fast, AVX2 accelerated FM-index library that utilizes windows of SIMD register sc:url "https://github.com/elejeune11/FM-Track" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -202091,7 +202819,7 @@ A fast, AVX2 accelerated FM-index library that utilizes windows of SIMD register sc:url "https://github.com/limresgrp/FMAP_v1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0154, @@ -202110,26 +202838,26 @@ A fast, AVX2 accelerated FM-index library that utilizes windows of SIMD register a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_2033" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2856" ; - sc:name "Structural distance matrix" ; - sc:sameAs "http://edamontology.org/data_2856" ], + sc:additionalType "http://edamontology.org/data_2856" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Structural distance matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_1712" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Chemical structure image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1712" ; - sc:name "Chemical structure image" ; - sc:sameAs "http://edamontology.org/data_1712" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -202149,8 +202877,30 @@ A fast, AVX2 accelerated FM-index library that utilizes windows of SIMD register sc:url "http://bioconductor.org/packages/release/bioc/html/fmcsR.html" ; biotools:primaryContact "Thomas Girke" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0625, + edam:topic_3796, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC8637923", + "pubmed:34868200" ; + sc:description "A Fast Big Data-Oriented Genomic Selection Model Based on an Iterative Conditional Expectation algorithm." ; + sc:featureList edam:operation_0484, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FMixFN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://zenodo.org/record/5560913" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -202168,7 +202918,7 @@ A fast, AVX2 accelerated FM-index library that utilizes windows of SIMD register biotools:primaryContact "FMM Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3067, edam:topic_3300, edam:topic_3444 ; @@ -202184,7 +202934,7 @@ Magnetic resonance imaging (MRI) data of the brains of 28 healthy volunteers, fo sc:url "https://dataverse.nl/dataverse/rt-me-fmri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -202203,8 +202953,32 @@ Magnetic resonance imaging (MRI) data of the brains of 28 healthy volunteers, fo sc:softwareHelp ; sc:url "https://github.com/poldracklab/fmriprep" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_0203, + edam:topic_3512 ; + sc:citation ; + sc:description "A new tool for detection and identification of clusters of sequential motifs with varying characteristics inside genomic sequences." ; + sc:featureList edam:operation_0239, + edam:operation_2421, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:name "FMSClusterFinder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://fmsclusterfinder.fmsbiog.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -202218,7 +202992,7 @@ Magnetic resonance imaging (MRI) data of the brains of 28 healthy volunteers, fo sc:url "http://www.mscs.mu.edu/~bozdag/FMTP/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053 ; @@ -202236,7 +203010,7 @@ Magnetic resonance imaging (MRI) data of the brains of 28 healthy volunteers, fo "Liang Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0804, @@ -202261,7 +203035,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible sc:url "http://fngwas.online/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3304, @@ -202284,7 +203058,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible sc:url "http://www.fnsneuralsimulator.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0077, @@ -202302,7 +203076,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible sc:url "http://maayanlab.net/FNV/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0154, @@ -202320,8 +203094,30 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible sc:name "FOBI" ; sc:url "https://github.com/pcastellanoescuder/FoodBiomarkerOntology" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0154, + edam:topic_0602, + edam:topic_3172, + edam:topic_3390 ; + sc:citation , + "pubmed:34601570" ; + sc:description "This package provides a set of tools for interacting with FOBI (Food-Biomarker Ontology)." ; + sc:featureList edam:operation_0306, + edam:operation_1812, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "fobitoolsGUI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/nutrimetabolomics/fobitools" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3382 ; @@ -202336,7 +203132,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible sc:url "http://www.utm.utoronto.ca/milsteinlab/resources/Software/FOCAL/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -202355,7 +203151,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible biotools:primaryContact "Oscar Krijgsman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2229, @@ -202374,18 +203170,18 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1872" ; - sc:name "Taxonomic classification" ; - sc:sameAs "http://edamontology.org/data_1872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1872" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Taxonomic classification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3837 ; @@ -202405,7 +203201,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible sc:url "https://github.com/metageni/FOCUS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3318 ; @@ -202422,7 +203218,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible sc:url "http://dwaithe.github.io/FCS_point_correlator/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3303, @@ -202443,8 +203239,28 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible sc:url "https://github.com/anders-biostat/focusedMDS" ; biotools:primaryContact "Lea Urpa" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3304, + edam:topic_3384, + edam:topic_3444 ; + sc:citation , + "pubmed:35397471" ; + sc:description "A deep learning method for fiber orientation distribution angular super resolution." ; + sc:featureList edam:operation_2428, + edam:operation_3435, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "FOD-Net" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ruizengalways/FOD-Net" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0130 ; @@ -202462,7 +203278,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible biotools:primaryContact "Nicola Galvanetto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0632, @@ -202479,24 +203295,8 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible sc:softwareVersion "1.0" ; sc:url "http://www.bioinformatics.org/webfog/wiki/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_3316, - edam:topic_3382 ; - sc:citation ; - sc:description """A Function-as-a-Service Based Fog Robotic System for Cognitive Robots. - -"Fog Robotics is a branch of networked robots that distributes storage, compute and networking resources between the Cloud and the Edge in a federated manner”. - -Fog Robotics enable robots and IoT devices in homes and warehouses to leverage upon nearby Edge resources as well as distant Cloud data centers. Administrative boundaries of resource ownership restrict control of data within domains of trust. The term `Cloud Robotics' indicates the use of network resources at the center of the network (or `Cloud'), while `Fog Robotics' involves the use of networked resources along the Cloud/Edge continuum (or `Fog'). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'cloud', 'fog', 'fog robot', 'robot'""" ; - sc:featureList edam:operation_2422 ; - sc:name "fog robotics" ; - sc:url "https://sites.google.com/view/fogrobotics" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3179, edam:topic_3382, @@ -202513,7 +203313,7 @@ Fog Robotics enable robots and IoT devices in homes and warehouses to leverage u sc:url "https://github.com/softls/FogFrame-2.0" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -202527,7 +203327,7 @@ Fog Robotics enable robots and IoT devices in homes and warehouses to leverage u sc:url "http://www.isical.ac.in/~bioinfo_miu/FOGSAA.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0611, @@ -202543,7 +203343,7 @@ Fog Robotics enable robots and IoT devices in homes and warehouses to leverage u sc:url "http://ai.stanford.edu/~mitul/foldEM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -202568,7 +203368,7 @@ Fog Robotics enable robots and IoT devices in homes and warehouses to leverage u biotools:primaryContact "MM Gromiha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3314 ; sc:citation , @@ -202581,7 +203381,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:url "https://github.com/rubel75/fold2Bloch-Wien2k/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0736 ; @@ -202595,7 +203395,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:url "https://github.com/IBM/fold2seq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -202616,7 +203416,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- biotools:primaryContact "RTH Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0204, @@ -202632,7 +203432,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:url "https://webfsgor.sysbio.cytogen.ru/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0092, @@ -202648,8 +203448,31 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:softwareHelp ; sc:url "http://bioinfo.protres.ru/foldhandedness/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0130, + edam:topic_0736, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8507389", + "pubmed:34641786" ; + sc:description "Deep hyperspherical embeddings for protein fold recognition." ; + sc:featureList edam:operation_0267, + edam:operation_0303, + edam:operation_2415, + edam:operation_2475 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "FoldHSphere" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://sigmat.ugr.es/~amelia/FoldHSphere" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, @@ -202666,7 +203489,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- biotools:primaryContact "Seth Cooper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0154, @@ -202686,7 +203509,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- biotools:primaryContact "Jessica Ebert" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099, @@ -202703,7 +203526,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:url "http://bioinfo.protres.ru/foldnucleus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -202722,14 +203545,13 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1467" ; - sc:name "Protein chain" ; - sc:sameAs "http://edamontology.org/data_1467" ] ; + sc:additionalType "http://edamontology.org/data_1467" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Protein chain" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1481" ; - sc:name "Protein structure alignment" ; - sc:sameAs "http://edamontology.org/data_1481" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1481" ; + sc:name "Protein structure alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -202743,7 +203565,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:url "https://foldseek.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0091, @@ -202765,8 +203587,21 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- "Windows" ; sc:url "http://csbio.njust.edu.cn/bioinf/foldtr/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:citation , + "pubmed:17021161" ; + sc:description "FoldUnfold is a web server that detects disordered regions in a protein sequence." ; + sc:isAccessibleForFree true ; + sc:name "FoldUnfold" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://skuld.protres.ru/~mlobanov/ogu/ogu.cgi" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -202793,7 +203628,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- "Luis Serrano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3390, edam:topic_3474, @@ -202809,7 +203644,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:url "https://github.com/Gharibim/FoodKG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -202827,7 +203662,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- biotools:primaryContact "Footer team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -202846,7 +203681,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:url "http://foragegrass.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0769, @@ -202863,7 +203698,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:url "https://ccmbioinfo.github.io/FORCAST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -202881,7 +203716,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:url "http://selene.princeton.edu/FFNCAA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0601, @@ -202899,7 +203734,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:url "http://selene.princeton.edu/FFPTM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -202916,7 +203751,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:url "https://github.com/ddarriba/ForeSeqs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0654, @@ -202931,8 +203766,30 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:operatingSystem "Windows" ; sc:url "http://zeetu.org/forestatistics.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_2269 ; + sc:citation , + "pmcid:PMC8601886", + "pubmed:34824775" ; + sc:description "The forestecology R package for fitting and assessing neighborhood models of the effect of interspecific competition on the growth of trees." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "forestecology" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://github.com/rudeboybert/forestecology" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0622, @@ -202951,7 +203808,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:url "https://sites.google.com/site/cmzmasek/home/software/forester" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0622, @@ -202967,7 +203824,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- biotools:primaryContact "Jussi Paananen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -202984,8 +203841,33 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:softwareHelp ; sc:url "http://phase3browser.1000genomes.org/Homo_sapiens/UserData/Forge" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Web application" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_2885, + edam:topic_3168, + edam:topic_3173, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC8742386", + "pubmed:34996498" ; + sc:description "FORGE2 uses an expanded atlas of cell type-specific regulatory element annotations, including DNase I hotspots, five histone mark categories and 15 hidden Markov model (HMM) chromatin states, to identify tissue- and cell type-specific signals." ; + sc:featureList edam:operation_3501, + edam:operation_3695, + edam:operation_3791 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "FORGE2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "2.0" ; + sc:url "https://forge2.altiusinstitute.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3361, @@ -203002,7 +203884,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:url "https://github.com/yunchuankong/forgeNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -203025,7 +203907,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- biotools:primaryContact "Bernhard C. Thiel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3127, @@ -203043,7 +203925,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:url "https://www.biologie.ens.fr/~hennion/forkseq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3056, edam:topic_3071 ; @@ -203059,14 +203941,13 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -203087,7 +203968,7 @@ Unfolding of first-principle electronic band structure obtained with WIEN2k DFT- sc:url "http://rna.tbi.univie.ac.at/forna/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0634, @@ -203105,7 +203986,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int sc:url "https://forum-webapp.semantic-metabolomics.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056, @@ -203122,7 +204003,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int sc:url "http://badri-populationgeneticsimulators.blogspot.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:citation , "pmcid:PMC6525415", @@ -203139,7 +204020,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_2640, @@ -203156,7 +204037,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int sc:url "http://cit.ligue-cancer.net/FounderTracker/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -203177,26 +204058,26 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1017" ; - sc:name "Sequence range" ; - sc:sameAs "http://edamontology.org/data_1017" ], + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1017" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence range" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -203216,7 +204097,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int biotools:primaryContact "Felix A. Klein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2885, @@ -203233,7 +204114,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int sc:url "https://foxden.michaeljfox.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0154, @@ -203252,20 +204133,29 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int sc:url "http://salilab.org/foxs" ; biotools:primaryContact "FoXS Support" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0082, - edam:topic_0166, - edam:topic_0736 ; - sc:citation , - "pubmed:31424530" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'non-conformative', 'RosettaRemodel', 'per-structure', 'MOTIVATION:Recent' | Multi-Scale Structural Analysis of Proteins by Deep Semantic Segmentation | Semantic Segmentor for Protein Structures | A CNN for performing semantic segmantation of multi-domain protein structures | Written in Python. Main requirements are Biopython, Pytorch, Numpy, Scipy. (I use Conda since Pytorch recommends using it.)" ; + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3314, + edam:topic_3375, + edam:topic_3407, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8479898", + "pubmed:34583740" ; + sc:description "FPADMET is a compilation of molecular fingerprint-based predictive models for ADMET properties." ; sc:featureList edam:operation_0303, - edam:operation_0474 ; - sc:name "fp6bd" ; - sc:url "https://git.io/fp6bd" . + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "FPADMET" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.com/vishsoft/fpadmet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654 ; @@ -203280,7 +204170,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int sc:url "http://services.appliedgenomics.org/software/fpb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3383, edam:topic_3384, @@ -203300,7 +204190,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int biotools:primaryContact "Clemens F. Kaminski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -203321,7 +204211,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int biotools:primaryContact "FPC Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -203339,7 +204229,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int sc:url "http://dcv.uhnres.utoronto.ca/FPCLASS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3420 ; @@ -203355,7 +204245,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -203370,14 +204260,15 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int sc:url "https://github.com/yuxiangtan/FPfilter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; sc:description "An FPGA-accelerated implementation of GWAS permutation testing designed primarily for AWS EC2 F1 (f1.2xlarge) instances." ; sc:name "FPGA_perm" ; sc:softwareVersion "v1.0.0" ; sc:url "https://github.com/witseie/fpgaperm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation ; @@ -203389,16 +204280,32 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int biotools:primaryContact , "Piotr Zdańkowski" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0749 ; + sc:citation , + "pubmed:34890327" ; + sc:description "Fast Parameter-free Multi-view Subspace Clustering with Consensus Anchor Guidance." ; + sc:featureList edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FPMVS-CAG" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/wangsiwei2010/FPMVS-CAG" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2878" ; - sc:name "Protein structural motif" ; - sc:sameAs "http://edamontology.org/data_2878" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2878" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structural motif" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0166 ; sc:citation "pubmed:19486540", @@ -203414,7 +204321,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -203431,7 +204338,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int sc:url "http://pocket.uchicago.edu/fpop/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation , @@ -203447,7 +204354,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int sc:url "http://paleogenomics.irmacs.sfu.ca/FPSAC/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -203465,34 +204372,34 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -203509,18 +204416,18 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -203537,22 +204444,22 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -203570,34 +204477,34 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3077 ; @@ -203612,34 +204519,34 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -203655,14 +204562,14 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -203679,18 +204586,18 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071 ; @@ -203704,7 +204611,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_2269 ; @@ -203719,7 +204626,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int sc:url "https://github.com/refresh-bio/fqsqueezer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "A package that provides tools for efficient FASTQ files manipulation." ; @@ -203730,7 +204637,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int biotools:primaryContact "Nicolas Joly" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3511 ; @@ -203746,7 +204653,7 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int biotools:primaryContact "Geo Pertea" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, @@ -203762,8 +204669,25 @@ FORUM is an open knowledge network aiming at supporting metabolomics results int sc:name "FR-Match" ; sc:url "https://github.com/JCVenterInstitute/FRmatch" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3382 ; + sc:citation , + "pubmed:35788455" ; + sc:description "Full-Resolution Network and Dual-Threshold Iteration for Retinal Vessel and Coronary Angiograph Segmentation." ; + sc:featureList edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "FR-UNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/lseventeen/FR-UNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , "pmcid:PMC7702219", @@ -203779,7 +204703,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms sc:url "https://nrdg.github.io/fracridge/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3056, @@ -203794,7 +204718,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms biotools:primaryContact "Emile Chimusa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -203812,7 +204736,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0736, @@ -203835,26 +204759,26 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053 ; @@ -203870,8 +204794,29 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms biotools:primaryContact "Wazim MohammedIsmail", "Yuzhen Ye" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0203, + edam:topic_3174 ; + sc:citation , + "pmcid:PMC9148508", + "pubmed:35643462" ; + sc:description "FragGeneScanRs is written in Rust, so first head over to their installation instructions. Afterwards, you can install the crate from crates.io with cargo install frag_gene_scan_rs The installation progress may prompt you to add a directory to your path so you can easily execute it." ; + sc:featureList edam:operation_0310, + edam:operation_2409, + edam:operation_2454 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "FragGeneScanRs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/unipept/FragGeneScanRs" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -203887,14 +204832,12 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3510 ; sc:citation ; @@ -203909,8 +204852,53 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms sc:softwareVersion "1" ; sc:url "http://predictioncenter.org/Services/FragHMMent/descr.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0092, + edam:topic_3303, + edam:topic_3379 ; + sc:citation , + "pmcid:PMC9159630", + "pubmed:35648746" ; + sc:description "Assessing and visualizing fragility of clinical results with binary outcomes in R using the fragility package." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "fragility" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://cran.r-project.org/package=fragility" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0654, + edam:topic_2830, + edam:topic_3336, + edam:topic_3895 ; + sc:citation , + "pmcid:PMC9295698", + "pubmed:35797032" ; + sc:description "A Fragment Recycler Application Enabling Rapid and Scalable Modular DNA Assembly." ; + sc:featureList edam:operation_0292, + edam:operation_0310, + edam:operation_3359 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "FRAGLER" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/AstraZeneca/fragler" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2828, edam:topic_3316, @@ -203934,14 +204922,12 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2165" ; - sc:name "Protein ionisation curve" ; - sc:sameAs "http://edamontology.org/data_2165" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2165" ; + sc:name "Protein ionisation curve" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -203956,7 +204942,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms sc:url "http://compomics.github.io/projects/fragmentation-analyzer.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -203972,7 +204958,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms sc:url "http://compomics.github.io/projects/fragmentation-analyzer.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -203996,7 +204982,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms "Robert Preissner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -204015,7 +205001,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms sc:url "https://github.com/carlesperez94/frag_pele" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3511 ; @@ -204033,7 +205019,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms biotools:primaryContact "Mosig A" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -204049,7 +205035,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms sc:url "http://xundrug.cn/fragrep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166 ; @@ -204065,7 +205051,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms sc:url "http://www.bioinsilico.org/FRAGRUS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814, @@ -204081,7 +205067,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms sc:url "http://sysbio.rnet.missouri.edu/FRAGSION/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -204099,7 +205085,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0637, @@ -204115,7 +205101,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms sc:url "https://github.com/Yizhuangzhou/FRAGTE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0196, @@ -204135,7 +205121,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms "Szafranski K" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0621, @@ -204157,7 +205143,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms sc:url "http://genoweb.toulouse.inra.fr/FrameD/FD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3170 ; @@ -204175,7 +205161,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms "Sébastien Carrere" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0153, edam:topic_3070, @@ -204192,7 +205178,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms biotools:primaryContact "Peter Jönsson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -204209,7 +205195,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms biotools:primaryContact "Advanced Imaging Center" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382 ; sc:citation ; @@ -204221,7 +205207,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms sc:url "https://github.com/PreibischLab/FRC-QE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0154, @@ -204237,7 +205223,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms sc:url "http://www.rxnfinder.org/frcd/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0593, @@ -204258,8 +205244,31 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms sc:url "https://www.mathworks.com/matlabcentral/fileexchange/46608-frcoloc" ; biotools:primaryContact "Sascha D. Krauß" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2209" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Mutation ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0634, + edam:topic_3474 ; + sc:citation , + "pubmed:35420988" ; + sc:description "An ensemble predictor with effective feature representation for deleterious synonymous mutation in human genome." ; + sc:featureList edam:operation_0253, + edam:operation_0433, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:name "frDSM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://frdsm.xialab.info" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2814 ; @@ -204279,14 +205288,12 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2166" ; - sc:name "Sequence composition plot" ; - sc:sameAs "http://edamontology.org/data_2166" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2166" ; + sc:name "Sequence composition plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -204316,7 +205323,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms sc:url "http://emboss.open-bio.org/rel/rel6/apps/freak.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0611, edam:topic_1317 ; @@ -204333,7 +205340,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms sc:url "http://emlab.rose2.brandeis.edu/frealign" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation "pubmed:19439514" ; @@ -204347,7 +205354,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms biotools:primaryContact "Shinichi Morishita" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -204364,7 +205371,7 @@ In fracridge, we reparameterize RR in terms of the ratio γ between the L2-norms sc:url "http://abi.inf.uni-tuebingen.de/Software/FRED" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -204381,7 +205388,7 @@ Alternative splicing (AS) is an important mechanism in the development of many c sc:url "https://github.com/vpc-ccg/freddie/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -204399,7 +205406,7 @@ Alternative splicing (AS) is an important mechanism in the development of many c biotools:primaryContact "Erik Garrison" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3175, @@ -204420,7 +205427,7 @@ Alternative splicing (AS) is an important mechanism in the development of many c "Valentina Boeva" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0625, @@ -204435,7 +205442,7 @@ Alternative splicing (AS) is an important mechanism in the development of many c sc:url "https://github.com/adamspierer/FreeClimber/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3452 ; @@ -204451,7 +205458,7 @@ Alternative splicing (AS) is an important mechanism in the development of many c sc:url "http://cvib.ucla.edu/freect/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168, @@ -204471,7 +205478,7 @@ Alternative splicing (AS) is an important mechanism in the development of many c "Nathan Wong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3070, @@ -204491,26 +205498,26 @@ Alternative splicing (AS) is an important mechanism in the development of many c a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1459" ; - sc:name "Nucleic acid structure" ; - sc:sameAs "http://edamontology.org/data_1459" ] ; + sc:additionalType "http://edamontology.org/data_1459" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Nucleic acid structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0889" ; - sc:name "Structural profile" ; - sc:sameAs "http://edamontology.org/data_0889" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1459" ; - sc:name "Nucleic acid structure" ; - sc:sameAs "http://edamontology.org/data_1459" ], + sc:additionalType "http://edamontology.org/data_0889" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Structural profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1459" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Nucleic acid structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_1317, @@ -204533,7 +205540,7 @@ Alternative splicing (AS) is an important mechanism in the development of many c sc:url "http://freesasa.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -204546,7 +205553,7 @@ Alternative splicing (AS) is an important mechanism in the development of many c sc:url "http://faculty.uaeu.ac.ae/nzaki/SVM-Freescore.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3444 ; @@ -204558,7 +205565,7 @@ Alternative splicing (AS) is an important mechanism in the development of many c sc:url "http://www.svi.nl/FreeSfp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3444 ; sc:citation ; @@ -204575,8 +205582,33 @@ Alternative splicing (AS) is an important mechanism in the development of many c sc:url "https://cran.r-project.org/web/packages/freesurfer/index.html" ; biotools:primaryContact "John Muschelli" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Suite" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_3304, + edam:topic_3384, + edam:topic_3444 ; + sc:citation , + , + "pmcid:PMC8999724", + "pubmed:35407515" ; + sc:description "FreeSurfer is an open source package for the analysis and visualization of structural, functional, and diffusion neuroimaging data from cross-sectional and longitudinal studies." ; + sc:featureList edam:operation_0533, + edam:operation_3435, + edam:operation_3926 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "FreeSurfer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "http://surfer.nmr.mgh.harvard.edu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053 ; @@ -204592,7 +205624,7 @@ Alternative splicing (AS) is an important mechanism in the development of many c biotools:primaryContact "Nadezhda M. Belonogova" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -204616,7 +205648,7 @@ Alternative splicing (AS) is an important mechanism in the development of many c biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3316, edam:topic_3489 ; @@ -204631,7 +205663,7 @@ Alternative splicing (AS) is an important mechanism in the development of many c sc:url "https://www.informatik.hu-berlin.de/de/forschung/gebiete/wbi/resources#fresco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3068, @@ -204649,7 +205681,7 @@ Alternative splicing (AS) is an important mechanism in the development of many c sc:url "http://github.com/gmunglani/fret-ibra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_2269, @@ -204665,7 +205697,7 @@ Alternative splicing (AS) is an important mechanism in the development of many c sc:url "https://www.bioinformatics.nl/FRETboard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2814, @@ -204683,8 +205715,27 @@ Alternative splicing (AS) is an important mechanism in the development of many c sc:url "http://tritemio.github.io/FRETBursts/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0176, + edam:topic_0593, + edam:topic_0659 ; + sc:citation , + "pubmed:34478493" ; + sc:description "FRETraj is a Python module for predicting FRET efficiencies by calculating multiple accessible-contact volumes (multi-ACV) to estimate donor and acceptor dye dynamics." ; + sc:featureList edam:operation_0337, + edam:operation_0476, + edam:operation_2476 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "FRETraj" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:url "https://RNA-FRETools.github.io/fretraj" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2229, @@ -204704,22 +205755,22 @@ Alternative splicing (AS) is an important mechanism in the development of many c a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0955" ; - sc:name "Data index" ; - sc:sameAs "http://edamontology.org/data_0955" ], + sc:additionalType "http://edamontology.org/data_0955" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1017" ; - sc:name "Sequence range" ; - sc:sameAs "http://edamontology.org/data_1017" ], + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Genotype/phenotype report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; + sc:additionalType "http://edamontology.org/data_1017" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence range" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -204741,7 +205792,7 @@ Alternative splicing (AS) is an important mechanism in the development of many c biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3518 ; sc:citation , @@ -204758,7 +205809,7 @@ Alternative splicing (AS) is an important mechanism in the development of many c sc:url "http://bui3.win.ad.jhu.edu/frida/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -204780,28 +205831,8 @@ Alternative splicing (AS) is an important mechanism in the development of many c sc:url "http://ilyinlab.org/friend/" ; biotools:primaryContact "Valentin Ilyin" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0130, - edam:topic_0154, - edam:topic_0202, - edam:topic_0632 ; - sc:citation ; - sc:description """Novel, provable algorithms for efficient ensemble-based computational protein design and their application to the redesign of the c-Raf-RBD:KRas protein-protein interface. - -Abstract The K * algorithm provably approximates partition functions for a set of states (e.g., protein, ligand, and protein-ligand complex) to a user-specified accuracy ε. Often, reaching an ε -approximation for a particular set of partition functions takes a prohibitive amount of time and space. To alleviate some of this cost, we introduce two algorithms into the osprey suite for protein design: fries , a Fast Removal of Inadequately Energied Sequences, and EWAK *, an Energy Window Approximation to K *. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'osprey', 'c-Raf-RBD c-Raf-RBD(RKY fries EWAK osprey', 'c-Raf-RBD c-Raf-RBD(RKY fries EWAK', 'EWAK'""" ; - sc:featureList edam:operation_0303, - edam:operation_0331, - edam:operation_2492 ; - sc:name "fries EWAK" ; - sc:url "https://doi.org/10.1101/790949" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3300, @@ -204820,14 +205851,14 @@ Abstract The K * algorithm provably approximates partition functions for a set o a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_1638" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -204853,14 +205884,14 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_1638" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -204881,7 +205912,7 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a biotools:primaryContact "Matthew N. McCall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -204896,8 +205927,28 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a sc:name "FRMC" ; sc:url "https://github.com/HUST-DataMan/FRMC" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_3382, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pubmed:34910656" ; + sc:description "Framelet-Based Multilevel Network for Pansharpening." ; + sc:featureList edam:operation_3436, + edam:operation_3799, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FrMLNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/TingMAC/FrMLNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0154, @@ -204915,7 +205966,7 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a sc:url "https://github.com/farshidrayhanuiu/FRnet-DTI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -204932,7 +205983,7 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a sc:url "http://chaconlab.org/frodock/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0166, @@ -204957,14 +206008,14 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_1196" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_3814" ; + sc:name "Small molecule structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275 ; @@ -204982,7 +206033,7 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a "Maria A. Miteva" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3168 ; @@ -204997,41 +206048,43 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a sc:url "https://github.com/haseenaR/FROGAncestryCalc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3168, edam:topic_3174, edam:topic_3299, edam:topic_3697 ; - sc:citation ; - sc:description "Analyze large sets of amplicon sequences and produce abundance tables of Operational Taxonomic Units (OTUs) and their taxonomic affiliation." ; + sc:citation , + ; + sc:description "The user-friendly and Galaxy-supported pipeline FROGS analyses large sets of DNA amplicons sequences accurately and rapidly, essential for microbe community studies." ; sc:featureList edam:operation_3460 ; sc:license "GPL-3.0" ; sc:name "FROGS" ; sc:operatingSystem "Linux" ; sc:softwareHelp ; + sc:softwareVersion "4.0.0" ; sc:url "http://frogs.toulouse.inra.fr/" ; biotools:primaryContact "Géraldine Pascal" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174, @@ -205051,14 +206104,14 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174, @@ -205078,18 +206131,18 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3174, @@ -205109,22 +206162,22 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3174, @@ -205144,26 +206197,26 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174, @@ -205183,14 +206236,14 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3301, @@ -205210,26 +206263,26 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3174, @@ -205249,30 +206302,30 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174, @@ -205292,26 +206345,26 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3174, @@ -205331,34 +206384,34 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3174, @@ -205379,34 +206432,34 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -205425,7 +206478,7 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -205442,7 +206495,7 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3314, edam:topic_3316, @@ -205458,7 +206511,7 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -205475,7 +206528,7 @@ Single-array preprocessing algorithm that retains the advantages of multiarray a sc:url "https://github.com/LaRocheLab/FROMP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0621, @@ -205497,7 +206550,7 @@ This R package, named affyChickGenomeArrayfrmavecs, was automatically created by sc:url "https://github.com/iduarte/FrozenChicken" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation , @@ -205516,7 +206569,7 @@ This R package, named affyChickGenomeArrayfrmavecs, was automatically created by biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -205533,8 +206586,22 @@ This R package, named affyChickGenomeArrayfrmavecs, was automatically created by sc:name "FrustratometeR" ; sc:url "https://github.com/proteinphysiologylab/frustratometeR" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080 ; + sc:citation ; + sc:description "FSA (Fast Statistical Alignment) is a probabilistic multiple sequence alignment algorithm which uses a \"distance-based\" approach to aligning homologous protein, RNA or DNA sequence. FSA brings the high accuracies previously available only for small-scale analyses of proteins or RNAs to large-scale problems such as aligning thousands of sequences or megabase-long sequences." ; + sc:featureList edam:operation_0292 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "FSA" ; + sc:softwareHelp ; + sc:url "http://fsa.sourceforge.net/" ; + biotools:primaryContact "Robert K. Bradley" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154, @@ -205552,7 +206619,7 @@ This R package, named affyChickGenomeArrayfrmavecs, was automatically created by sc:url "http://www.aoki.ecei.tohoku.ac.jp/fsbc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0102, @@ -205564,8 +206631,30 @@ This R package, named affyChickGenomeArrayfrmavecs, was automatically created by sc:name "fsbrain" ; sc:url "https://github.com/dfsp-spirit/fsbrain" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pubmed:35028910" ; + sc:description "FSCAM enables users to easily select features from single-cell RNA sequencing. It can also automatically determine the cluster number and accurately identify the cell types." ; + sc:featureList edam:operation_0314, + edam:operation_2939, + edam:operation_3432, + edam:operation_3891, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FSCAM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/YanWang-jn/FSCAM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0654, @@ -205579,7 +206668,7 @@ This R package, named affyChickGenomeArrayfrmavecs, was automatically created by sc:url "https://github.com/compbio-UofT/FSDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -205594,7 +206683,7 @@ This R package, named affyChickGenomeArrayfrmavecs, was automatically created by sc:url "http://wilab.inha.ac.kr/fsfinder2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, @@ -205613,7 +206702,7 @@ This R package, named affyChickGenomeArrayfrmavecs, was automatically created by sc:url "http://fsl.fmrib.ox.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, @@ -205634,7 +206723,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "https://github.com/jenniferfranks/FSQN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654 ; @@ -205649,7 +206738,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "http://bioinfo.mju.ac.kr/fstval/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -205667,7 +206756,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "http://genestat.cephb.fr/software/index.php/FSuite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -205684,7 +206773,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "http://www.comp.nus.edu.sg/~wongls/projects/functionprediction/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -205701,14 +206790,14 @@ R package to perform Feature Specific Quantile Normalization.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1547" ; - sc:name "Protein contact map" ; - sc:sameAs "http://edamontology.org/data_1547" ] ; + sc:additionalType "http://edamontology.org/data_1547" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Protein contact map" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_3542 ; @@ -205727,13 +206816,13 @@ R package to perform Feature Specific Quantile Normalization.""" ; biotools:primaryContact "Marco Vassura" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Fault Tolerance Reconstruction of 3D Structure from Protein Contact Maps." ; sc:name "ft-comar" ; sc:url "http://bioinformatics.cs.unibo.it/FT-COMAR/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128 ; sc:description "Discretises two molecules onto orthogonal grids and performs a global scan of translational and rotational space. In order to scan rotational space it is necessary to rediscretise one of the molecules (for speed the smaller) for each rotation. The scoring method is primarily a surface complementarity score between the two grids. To speed up the surface complementarity calculations, which are convolutions of two grids, Fourier Transforms are used." ; @@ -205742,7 +206831,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "http://www.sbg.bio.ic.ac.uk/docking/ftdock.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -205755,10 +206844,10 @@ R package to perform Feature Specific Quantile Normalization.""" ; "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/ftg/" . + sc:url "https://webs.iiitd.edu.in/raghava/ftg/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Plug-in" ; @@ -205771,7 +206860,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "https://github.com/hguo/ftk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0166, @@ -205792,8 +206881,31 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "http://ftmap.bu.edu/param" ; biotools:primaryContact "Contact Form" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0632, + edam:topic_2814, + edam:topic_3534 ; + sc:citation , + "pubmed:35662465" ; + sc:description "A Web Server for Detection and Analysis of Cryptic and Allosteric Binding Sites by Mapping Multiple Protein Structures." ; + sc:featureList edam:operation_2429, + edam:operation_2575, + edam:operation_2844 ; + sc:isAccessibleForFree true ; + sc:name "FTMove" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ftmove.bu.edu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0152, edam:topic_0605, @@ -205812,7 +206924,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "http://github.com/EMSL-Computing/ftmsRanalysis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -205830,7 +206942,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "https://amarolab.ucsd.edu/ftprod/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0203, @@ -205848,7 +206960,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; "Bojan Zagrovic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, @@ -205870,7 +206982,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; biotools:primaryContact "Fugu Genome Project Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -205888,18 +207000,8 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:softwareHelp ; sc:url "http://mizuguchilab.org/fugue/" . - a sc:SoftwareApplication ; - sc:description "Long-read sequencing enables species-level resolution and drives functional insights with full-length16S/18S/ITS rRNA. CD Genomics offers products to support full-length 16S/18S/ITS rRNA sequencing service, from sample preparation and library construction to data analysis. Customized services are also available upon request. Please contact us for more information." ; - sc:name "Full-Length 16S Amplicon Sequencing" ; - sc:url "https://www.cd-genomics.com/Full-Length-16S-18S-ITS-Amplicon-Sequencing.html" . - - a sc:SoftwareApplication ; - sc:description "CD Genomics has extensive experience in offering Iso-Seq service by producing full-length transcripts without assembly. Strict quality control following every procedure is executed to ensure the comprehensive and accurate results. Long-read sequencing allows the straightforward identification of alternatively transcribed or processed transcripts, polycistronic transcription units, and other long cDNA sequences. With expertise and dedication, advanced PacBio SMRT platform and services from CD Genomics will be your best companion in Iso-Seq. Please contact us for more information and a detailed quote." ; - sc:name "Full-Length Transcripts Sequencing (Iso-Seq)" ; - sc:url "https://www.cd-genomics.com/Full-Length-Transcripts-Sequencing-Iso-Seq.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -205922,7 +207024,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; biotools:primaryContact "Y. Suzuki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -205937,7 +207039,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "https://github.com/augusto-garcia/fullsibQTL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0099, @@ -205956,7 +207058,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "https://github.com/ErasmusMC-Bioinformatics/fuma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0092, @@ -205975,8 +207077,36 @@ R package to perform Feature Specific Quantile Normalization.""" ; biotools:primaryContact "Daniel Probst", "Jean-Louis Reymond" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1893" ; + sc:name "Locus ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0114, + edam:topic_0121, + edam:topic_0623, + edam:topic_3673, + edam:topic_3941 ; + sc:citation , + "pmcid:PMC9252808", + "pubmed:35641095" ; + sc:description "Comprehensive web server for gene set enrichment analysis of prokaryotes." ; + sc:featureList edam:operation_0435, + edam:operation_2436, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:name "FUNAGE-Pro" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://funagepro.molgenrug.nl" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0622 ; sc:description "funannotate is a pipeline for genome annotation (built specifically for fungi, but will also work with higher eukaryotes)." ; @@ -205988,7 +207118,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; biotools:primaryContact "Jon Palmer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -206004,7 +207134,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "http://llama.mshri.on.ca/funcassociate/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -206022,18 +207152,18 @@ R package to perform Feature Specific Quantile Normalization.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3768" ; - sc:name "Clustered gene expression profiles" ; - sc:sameAs "http://edamontology.org/data_3768" ], + sc:additionalType "http://edamontology.org/data_3768" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Clustered gene expression profiles" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Ontology data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0203, @@ -206056,7 +207186,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "https://biit.cs.ut.ee/funcexplorer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169 ; @@ -206075,26 +207205,26 @@ R package to perform Feature Specific Quantile Normalization.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -206116,7 +207246,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; biotools:primaryContact "Simon G. Coetzee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081 ; sc:citation ; @@ -206128,7 +207258,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "http://pdbfun.uniroma2.it/funclust/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3321, @@ -206146,14 +207276,12 @@ R package to perform Feature Specific Quantile Normalization.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ] ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -206169,7 +207297,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "http://funcoup.sbc.su.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0166, edam:topic_2275, @@ -206185,7 +207313,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "http://info.mcmaster.ca/yifei/FuncPatch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0659, @@ -206203,7 +207331,7 @@ R package to perform Feature Specific Quantile Normalization.""" ; sc:url "https://bioinformatics.mdanderson.org/Supplements/FuncPEP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_1775, @@ -206220,36 +207348,8 @@ R package to perform Feature Specific Quantile Normalization.""" ; biotools:primaryContact "Duncan Penfold-Brown", "Noah Youngs" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_0804, - edam:topic_2885, - edam:topic_3295, - edam:topic_3517 ; - sc:citation ; - sc:description """Dissecting molecular regulatory mechanisms underlying noncoding susceptibility SNPs associated with 19 autoimmune diseases using multi-omics integrative analysis. - -fnGWAS, an integrative analysis frame designed for dissecting molecular mechanisms underlying noncoding GWAS SNPs through incorporating diverse functional cell-specific multi-omics data. - -:=====================================================================================:. - -Dissecting the functionality of noncoding GWAS SNPs. - -Just select interested autoimmune diseases (or select all without disease limitation) , select type and enter correspond SNPs/CotoBand/Target Gene. - -: fnGWAS is an integrated analysis pipeline for dissecting molecular mechanisms :. - -Genome-wide association studies (GWASs) have unraveled thousands of susceptible variants associated with tens of different autoimmune diseases. - -: underlying noncoding GWAS SNPs through incorporating diverse functional :""" ; - sc:featureList edam:operation_0484, - edam:operation_3196, - edam:operation_3226 ; - sc:name "functional GWAS" ; - sc:url "http://fngwas.online/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0637, @@ -206267,7 +207367,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0092, @@ -206286,7 +207386,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3307 ; @@ -206305,7 +207405,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible "Nicola Lazzarini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -206326,13 +207426,31 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible sc:url "http://www.reading.ac.uk/bioinf/FunFOLD/FunFOLD_form_2_0.html" ; biotools:primaryContact "Dr Liam J. McGuffin" . - a sc:SoftwareApplication ; - sc:description "CD Genomics provides fungal whole genome sequencing with the PacBio Sequel system to offer more insights into genetic structure and functions. We are best in the knowledge, practise, and experience. PacBio, the third-generation sequencers, is highly robust and cost-effective and should be the platform of choice in sequencing fungi genomes, particularly for those that are well-known to be difficult-to-sequence. CD Genomics has extensive experience to offer the fungi whole genome sequencing service. Please contact us for more information and a detailed quote." ; - sc:name "Fungal Whole Genome de novo Sequencing" ; - sc:url "https://www.cd-genomics.com/Fungal-Whole-Genome-de-novo-Sequencing.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0593, + edam:topic_3053 ; + sc:citation , + "pmcid:PMC8683425", + "pubmed:34921167" ; + sc:description "An R package for the functional random forest (FunFor) algorithm. The FunFor algorithm is able to predict curve responses for new observations and select important variables from a large set of scalar predictors." ; + sc:featureList edam:operation_0451, + edam:operation_0452, + edam:operation_3196, + edam:operation_3659, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FunFor" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/xiaotiand/FunFor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -206349,7 +207467,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible biotools:primaryContact "In-Geol Choi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0621, @@ -206368,18 +207486,18 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2060" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Gene expression profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0203, @@ -206404,7 +207522,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible sc:url "http://biit.cs.ut.ee/fungenes/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0780, @@ -206421,7 +207539,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible sc:url "http://bioinfo.njau.edu.cn/fungiExp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0203, @@ -206440,7 +207558,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible "Steffen Priebe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -206459,7 +207577,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -206479,7 +207597,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -206496,8 +207614,55 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible sc:softwareVersion "2.2.1" ; sc:url "http://statgen.psu.edu/software/funmap.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0769, + edam:topic_3174, + edam:topic_3697, + edam:topic_3837 ; + sc:citation , + "pmcid:PMC9293737", + "pubmed:35891785" ; + sc:description "Pipeline with built-in Fungal Taxonomic and Functional Databases for Human Mycobiome Profiling." ; + sc:featureList edam:operation_3200, + edam:operation_3460, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FunOMIC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ManichanhLab/FunOMIC" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0121, + edam:topic_0621, + edam:topic_3172, + edam:topic_3293 ; + sc:citation , + "pmcid:PMC8476034", + "pubmed:34570757" ; + sc:description "A robust and semi-automated method for the identification of essential biosynthetic genes through computational molecular co-evolution." ; + sc:featureList edam:operation_0324, + edam:operation_2939, + edam:operation_3216, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "FunOrder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/gvignolle/FunOrder" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -206514,7 +207679,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible biotools:primaryContact "Tiziana Sanavia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -206531,7 +207696,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible sc:url "http://www.funrich.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0623, @@ -206548,7 +207713,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible biotools:primaryContact "Erik Sonnhammer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0203, @@ -206571,14 +207736,13 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3511 ; @@ -206594,7 +207758,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible sc:url "http://bioinformatics.psb.ugent.be/supplementary_data/mibel/FunSiP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -206612,7 +207776,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible biotools:primaryContact "Debmalya Barh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0637 ; sc:citation ; @@ -206629,7 +207793,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible biotools:primaryContact "Stefano Toppo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3071, @@ -206646,7 +207810,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible sc:url "https://github.com/GreenwoodLab/funtooNorm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0154, @@ -206669,7 +207833,7 @@ Genome-wide association studies (GWASs) have unraveled thousands of susceptible biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, @@ -206689,7 +207853,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove sc:url "https://services.bromberglab.org/funtrp/submit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0102, @@ -206708,7 +207872,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove sc:url "https://zhanglab.ccmb.med.umich.edu/FUpred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -206727,7 +207891,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove sc:url "https://github.com/rajinder4489/FuSe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0654, @@ -206746,10 +207910,10 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0092, @@ -206785,7 +207949,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove sc:url "https://fusion.cebitec.uni-bielefeld.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3344, @@ -206807,7 +207971,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove biotools:primaryContact "Durga Prasad Bavirisetti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -206823,8 +207987,29 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove sc:softwareHelp ; sc:url "http://protein.rnet.missouri.edu/FUSION/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0114, + edam:topic_0654, + edam:topic_3170, + edam:topic_3344, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8892011", + "pubmed:35252882" ; + sc:description "FusionAI, a deep learning pipeline predicting human fusion gene breakpoints from DNA sequence." ; + sc:featureList edam:operation_1812, + edam:operation_2454, + edam:operation_3359 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FusionAI" ; + sc:operatingSystem "Linux" ; + sc:url "https://compbio.uth.edu/FusionGDB2/FusionAI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_3168, @@ -206844,7 +208029,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove biotools:primaryContact "Rocco Piazza" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0114, edam:topic_3170 ; @@ -206859,7 +208044,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove biotools:primaryContact "Daniel Nicorici" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2640, @@ -206877,8 +208062,25 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove biotools:primaryContact "Jian Ma", "Yang Li" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3382 ; + sc:citation , + "pubmed:34861602" ; + sc:description "A multi-stage multi-modal learning algorithm for multi-label skin lesion classification." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FusionM4Net" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/pixixiaonaogou/MLSDR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0114 ; sc:citation "pubmed:21593131" ; @@ -206893,7 +208095,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove sc:url "http://www.arrayserver.com/wiki/index.php?title=FusionMap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0114, edam:topic_3170 ; @@ -206909,7 +208111,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove biotools:primaryContact "Mark B Gerstein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation , @@ -206926,7 +208128,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove "Charles Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3305, @@ -206942,16 +208144,64 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove sc:url "https://www.mathworks.com/matlabcentral/fileexchange/75435-future-trends-in-covid-19-infections-in-ny-city-and-tokyo" ; biotools:primaryContact "Ben T. Nohara" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0154, + edam:topic_0601, + edam:topic_0749, + edam:topic_2229 ; + sc:citation , + "pmcid:PMC8728163", + "pubmed:34791357" ; + sc:description """The FuzDB database assembles experimentally observed fuzzy protein complexes +involved in a variety of cellular processes and biomolecular condensates""" ; + sc:featureList edam:operation_0310, + edam:operation_0417, + edam:operation_2421, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "FuzDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "4.0" ; + sc:url "https://fuzdb.org" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0601, + edam:topic_0634, + edam:topic_0749, + edam:topic_2229 ; + sc:citation , + "pmcid:PMC9252777", + "pubmed:35610022" ; + sc:description "A tool to visualizing the sequence-dependent propensity of liquid-liquid phase separation and aggregation of proteins." ; + sc:featureList edam:operation_0474, + edam:operation_3436, + edam:operation_3454, + edam:operation_3904 ; + sc:license "Not licensed" ; + sc:name "FuzDrop" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://fuzdrop.bio.unipd.it" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation , @@ -206983,14 +208233,12 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ] ; + sc:additionalType "http://edamontology.org/data_1353" ; + sc:name "Sequence motif" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation , @@ -207022,18 +208270,15 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1254" ; - sc:name "Sequence property" ; - sc:sameAs "http://edamontology.org/data_1254" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1254" ; + sc:name "Sequence property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -207066,18 +208311,18 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3473 ; @@ -207098,7 +208343,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_2269 ; @@ -207111,7 +208356,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove sc:url "https://ligophorus.github.io/FuzzyQ/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0781, @@ -207127,7 +208372,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove sc:url "https://github.com/saima-tithi/FVE-novel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -207144,7 +208389,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove sc:url "https://github.com/xiaoyubin123/FVTLDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2275, @@ -207156,16 +208401,37 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove sc:name "FWAVina" ; sc:url "https://github.com/eddyblue/FWAVina" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0602, + edam:topic_0749, + edam:topic_3169, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC8485886", + "pubmed:34558825" ; + sc:description "Meta-analysis and Consolidation of Farnesoid X Receptor Chromatin Immunoprecipitation Sequencing Data Across Different Species and Conditions." ; + sc:featureList edam:operation_3222, + edam:operation_3435, + edam:operation_3660 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "FXR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://fxratlas.tugraz.at" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -207186,7 +208452,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove "Zhao Kaiyong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623 ; sc:description "A Divide and Conquer Application for Grid Protein Classification." ; @@ -207201,7 +208467,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -207215,8 +208481,28 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove sc:url "https://www.mathworks.com/matlabcentral/fileexchange/67767-g-code-reader" ; biotools:primaryContact "Tom Williamson" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2885, + edam:topic_3517 ; + sc:citation , + "pubmed:36040109" ; + sc:description "A web server for identification and removal of duplicate germplasms based on identity-by-state analysis using single nucleotide polymorphism genotyping data." ; + sc:featureList edam:operation_0308, + edam:operation_2938, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:name "G-DIRT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://webtools.nbpgr.ernet.in/gdirt/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -207232,7 +208518,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove sc:url "http://www.g-language.org/wiki/rest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -207254,7 +208540,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove biotools:primaryContact "Kazuharu Arakawa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269 ; @@ -207270,7 +208556,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove sc:url "http://ws.g-language.org/gdoc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0219 ; sc:citation , @@ -207290,7 +208576,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove biotools:primaryContact "Kazuki Oshita" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632 ; sc:citation ; @@ -207303,7 +208589,7 @@ Evaluating the impact of non-synonymous genetic variants is essential for uncove sc:url "http://dna.engr.uconn.edu/?page_id=74" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0610, @@ -207325,7 +208611,7 @@ Our principal objective with GRooT is to contribute towards the inclusion of roo sc:url "https://groot-database.github.io/GRooT/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -207345,7 +208631,7 @@ Our principal objective with GRooT is to contribute towards the inclusion of roo biotools:primaryContact "James Z. Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3569 ; @@ -207362,7 +208648,7 @@ Our principal objective with GRooT is to contribute towards the inclusion of roo biotools:primaryContact "Waibhav Tembe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0780, @@ -207382,7 +208668,7 @@ Runnable JAR to run the G-Tric's GUI version.""" ; sc:url "https://github.com/jplobo1313/G-Tric" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0102, @@ -207397,7 +208683,7 @@ Runnable JAR to run the G-Tric's GUI version.""" ; sc:url "https://bitbucket.org/bereste/g-tris" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -207423,7 +208709,7 @@ Runnable JAR to run the G-Tric's GUI version.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0102, @@ -207441,7 +208727,7 @@ Runnable JAR to run the G-Tric's GUI version.""" ; sc:url "http://bnet.cs.tau.ac.il/g2g/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3474, edam:topic_3697, @@ -207454,8 +208740,33 @@ Runnable JAR to run the G-Tric's GUI version.""" ; sc:name "G2S" ; sc:url "https://github.com/simonerampelli/g2s" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0097, + edam:topic_0166, + edam:topic_0780, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9206279", + "pubmed:35717172" ; + sc:description "A machine learning-based tool for quadruplex identification and stability prediction." ; + sc:featureList edam:operation_0267, + edam:operation_0279, + edam:operation_0303, + edam:operation_0429, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "G4Boost" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/hbusra/G4Boost.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, @@ -207472,7 +208783,7 @@ Runnable JAR to run the G-Tric's GUI version.""" ; sc:url "https://github.com/EricLarG4/g4dbr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -207489,7 +208800,7 @@ Runnable JAR to run the G-Tric's GUI version.""" ; sc:url "http://github.com/OrensteinLab/G4detector" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0199, @@ -207502,8 +208813,41 @@ Runnable JAR to run the G-Tric's GUI version.""" ; sc:name "G4Killer" ; sc:url "http://bioinformatics.ibp.cz/#/analyse/g4-killer" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2099" ; + sc:name "Name" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0593, + edam:topic_0749, + edam:topic_2275, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8728129", + "pubmed:34718746" ; + sc:description "A database for discovering and studying G-quadruplex and i-Motif ligands." ; + sc:featureList edam:operation_0337, + edam:operation_0478, + edam:operation_2422, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "G4LDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "2.2" ; + sc:url "http://www.g4ldb.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3320, @@ -207517,25 +208861,37 @@ Runnable JAR to run the G-Tric's GUI version.""" ; sc:name "gFACs" ; sc:url "https://gitlab.com/PlantGenomicsLab/gFACs" . - a sc:SoftwareApplication ; - sc:additionalType "Command-line tool" ; - sc:applicationSubCategory edam:topic_3315, - edam:topic_3318, - edam:topic_3452 ; - sc:citation , - "pubmed:31711051" ; - sc:description """A GPU-based, accurate and efficient Monte Carlo simulation tool for PET. - -Monte Carlo (MC) simulation method plays an essential role in the refinement and development of positron emission tomography (PET) systems. However, most existing MC simulation packages suffer from long execution time for practical PET simulations. To fully address this issue, we developed and validated gPET, a graphics processing unit (GPU)-based MC simulation tool for PET. gPET was built on the NVidia CUDA platform. The simulation process was modularized into three functional parts and carried out by the GPU parallel threads: (1) source management, including positron decay, transport and annihilation; (2) gamma transport inside the phantom; and (3) signal detection and processing inside the detector. A hybrid of voxelized (for patient phantoms) and parametrized (for detectors) geometries were employed to sufficiently support particle navigations. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3454, - edam:operation_3891 ; - sc:name "gPET" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31711051" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Suite", + "Web application", + "Workflow" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_2640, + edam:topic_3305, + edam:topic_3337, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC8774288", + "pubmed:35072136" ; + sc:description "The GA4GH Toolkit outlines a suite of secure standards and frameworks that will enable more meaningful research and patient data harmonization and sharing. This suite addresses a variety of challenges across the data sharing life cycle and is applicable across the world’s accessible medical and patient-centered systems, knowledgebases, and raw data sources." ; + sc:featureList edam:operation_3196, + edam:operation_3283, + edam:operation_3435, + edam:operation_3436, + edam:operation_3761 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "GA4GH" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://www.ga4gh.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -207559,7 +208915,7 @@ Monte Carlo (MC) simulation method plays an essential role in the refinement and sc:url "https://beacon-network.org//#/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "It provides an easy way to access public data servers through Global Alliance for Genomics and Health (GA4GH) genomics API. It provides low-level access to GA4GH API and translates response data into Bioconductor-based class objects." ; @@ -207575,7 +208931,7 @@ Monte Carlo (MC) simulation method plays an essential role in the refinement and biotools:primaryContact "Welliton Souza" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "It provides an easy way to interact with data servers based on Global Alliance for Genomics and Health (GA4GH) genomics API through a Shiny application. It also integrates with Beacon Network." ; @@ -207591,7 +208947,7 @@ Monte Carlo (MC) simulation method plays an essential role in the refinement and biotools:primaryContact "Welliton Souza" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -207610,7 +208966,7 @@ The Genomic Atlas of Breast Cancer — the non-coding theme.""" ; sc:url "http://www.bio-bigdata.net/GABC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -207628,8 +208984,31 @@ The Genomic Atlas of Breast Cancer — the non-coding theme.""" ; sc:url "http://www.gabi-kat.de/" ; biotools:primaryContact "Info" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0203, + edam:topic_0769, + edam:topic_3512, + edam:topic_3673 ; + sc:citation ; + sc:description "GABOLA is an integrated solution of Genome de novo Assembly aimed at Precision Medicine and Genome Breeding. The core concept is to fill in both intra and inter-scaffold gaps mainly based on 10x Genomics linked reads. GABOLA is a highly-flexible tool, it can also be used with TGS Sequencing long reads and other Gap-Filling techniques." ; + sc:featureList edam:operation_0524, + edam:operation_0525, + edam:operation_3200, + edam:operation_3216, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GABOLA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/lsbnb/gabola" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_3303, @@ -207644,7 +209023,7 @@ The Genomic Atlas of Breast Cancer — the non-coding theme.""" ; sc:url "http://bbisr.shinyapps.winship.emory.edu/GAC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:citation , "pmcid:PMC7480696" ; @@ -207656,8 +209035,35 @@ GACAL verifies C programs by searching over the space of possible invariants, us sc:name "GACAL" ; sc:url "https://gitlab.com/acl2s/conjecture-generation/gacal" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "GACORBANG 88 | LINK LOGIN JOKER138 | DAFTAR JOKER388 | DEPOSIT PULSA TANPA POTONGAN" ; + sc:name "GACORBANG 88 LINK ALTERNATIF JOKER138" ; + sc:url "https://judionline.vip/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_3070, + edam:topic_3071 ; + sc:citation , + "pmcid:PMC9344842", + "pubmed:35639939" ; + sc:description "A decentralized FAIR platform to facilitate data sharing in the life sciences." ; + sc:featureList edam:operation_2422, + edam:operation_2428, + edam:operation_3283 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "GADDS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/pavelvazquez/GADDS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -207674,7 +209080,7 @@ GACAL verifies C programs by searching over the space of possible invariants, us biotools:primaryContact "Leping Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053, @@ -207689,7 +209095,7 @@ GACAL verifies C programs by searching over the space of possible invariants, us sc:url "http://mga.bionet.nsc.ru/soft/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -207706,7 +209112,7 @@ GACAL verifies C programs by searching over the space of possible invariants, us sc:url "https://github.com/chimianbuhetang/GAEMDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:description "GAEMR (Genome Assembly Evaluation Metrics and Reportin) is a complete genome analysis package that helps you evaluate and report on a genome assembly’s completeness, correctness, and contiguity." ; @@ -207720,7 +209126,7 @@ GACAL verifies C programs by searching over the space of possible invariants, us sc:url "http://www.broadinstitute.org/software/gaemr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0085, @@ -207737,7 +209143,7 @@ GACAL verifies C programs by searching over the space of possible invariants, us sc:url "https://github.com/UtaDaphniaLab/Gene_Annotation_Easy_Viewer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0114 ; @@ -207750,7 +209156,7 @@ GACAL verifies C programs by searching over the space of possible invariants, us sc:url "http://www.plantgdb.org/GAEVAL/docs/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3068, @@ -207768,7 +209174,7 @@ GACAL verifies C programs by searching over the space of possible invariants, us sc:url "https://asdmeasures.shinyapps.io/alexithymia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0622, @@ -207786,7 +209192,7 @@ GACAL verifies C programs by searching over the space of possible invariants, us biotools:primaryContact "Scott M Geib" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0219, @@ -207810,7 +209216,7 @@ GAG BUILDER : A user friendly tool to build 3D structures of GlycosAminoGlycans. sc:url "https://www.gagdb.glycopedia.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -207828,7 +209234,7 @@ GAG BUILDER : A user friendly tool to build 3D structures of GlycosAminoGlycans. biotools:primaryContact "David Rossell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -207851,30 +209257,30 @@ GAG BUILDER : A user friendly tool to build 3D structures of GlycosAminoGlycans. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3366 ; @@ -207894,18 +209300,18 @@ GAG BUILDER : A user friendly tool to build 3D structures of GlycosAminoGlycans. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1017" ; - sc:name "Sequence range" ; - sc:sameAs "http://edamontology.org/data_1017" ] ; + sc:additionalType "http://edamontology.org/data_1017" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence range" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1017" ; - sc:name "Sequence range" ; - sc:sameAs "http://edamontology.org/data_1017" ], + sc:additionalType "http://edamontology.org/data_1017" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence range" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -207924,7 +209330,7 @@ GAG BUILDER : A user friendly tool to build 3D structures of GlycosAminoGlycans. biotools:primaryContact "S. Morganella" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3308, @@ -207950,8 +209356,28 @@ GAIA has a reliable upload system with integrated recovery and resume functions sc:url "http://gaia.sequentiabiotech.com" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0621, + edam:topic_3308 ; + sc:citation , + "pubmed:35971612" ; + sc:description "GAIA (G-quAdruplexes In Alive creature) is a user-friendly database with a web interface that can be used to query a data set containing pG4s in diverse species from all three living kingdoms." ; + sc:featureList edam:operation_0224 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "GAIA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://gaia.cobius.usherbrooke.ca" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0659, @@ -207967,7 +209393,7 @@ GAIA has a reliable upload system with integrated recovery and resume functions sc:url "https://github.com/jsa-aerial/gaisr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3053, @@ -207983,7 +209409,7 @@ GAIA has a reliable upload system with integrated recovery and resume functions biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Workflow" ; @@ -208006,7 +209432,7 @@ A python package gait-gm based on this project is avialable from PyPI.""" ; sc:url "https://github.com/SECIMTools/gait-gm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -208023,7 +209449,7 @@ Abstract High-quality genome assembly has wide applications in genetics and medi sc:url "https://github.com/ganlab/gala" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Web application" ; sc:applicationSubCategory edam:topic_0218, @@ -208043,14 +209469,14 @@ Galactic lets you build intuitive queries and explore the results through differ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_3006" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1274" ; - sc:name "Map" ; - sc:sameAs "http://edamontology.org/data_1274" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1274" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:citation ; sc:description "Galactic Circos is a Galaxy wrapper providing a GUI for the Circos tool. Circos allows visualizing data in a circular format." ; @@ -208063,7 +209489,7 @@ Galactic lets you build intuitive queries and explore the results through differ sc:url "https://toolshed.g2.bx.psu.edu/view/iuc/circos/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -208090,7 +209516,7 @@ Galactic lets you build intuitive queries and explore the results through differ biotools:primaryContact "Anna Marabotti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0196, @@ -208113,7 +209539,7 @@ Galactic lets you build intuitive queries and explore the results through differ biotools:primaryContact "Galaxy support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0769, @@ -208132,7 +209558,7 @@ Galactic lets you build intuitive queries and explore the results through differ sc:url "https://github.com/anuprulez/galaxy_tool_recommendation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0769, @@ -208150,7 +209576,7 @@ Galaxy-ML is a web machine learning end-to-end pipeline building framework, with sc:url "https://ml.usegalaxy.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application", "Workbench" ; @@ -208176,18 +209602,18 @@ In addition to being accessible through a web interface, Galaxy Australia can al a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ], + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Genotype/phenotype report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3382 ; @@ -208203,7 +209629,7 @@ In addition to being accessible through a web interface, Galaxy Australia can al biotools:primaryContact "Thomas Wollmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -208221,7 +209647,7 @@ Protein interactions play a crucial role among the different functions of a cell sc:url "http://galaxy.interactomix.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -208236,8 +209662,31 @@ Protein interactions play a crucial role among the different functions of a cell sc:softwareHelp ; sc:url "http://galaxy.seoklab.org/softwares/galaxydock.html" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0736, + edam:topic_2275 ; + sc:citation , + "pubmed:35662464" ; + sc:description "An Ab Initio Domain-domain Docking Web Server for Multi-domain Protein Structure Prediction." ; + sc:featureList edam:operation_0303, + edam:operation_0476, + edam:operation_3899 ; + sc:isAccessibleForFree true ; + sc:name "GalaxyDomDock" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://galaxy.seoklab.org/domdock" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275, @@ -208256,22 +209705,21 @@ Protein interactions play a crucial role among the different functions of a cell a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ], + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0736, @@ -208288,7 +209736,7 @@ Protein interactions play a crucial role among the different functions of a cell sc:url "http://galaxy.seoklab.org/homomer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -208311,7 +209759,7 @@ Protein interactions play a crucial role among the different functions of a cell biotools:primaryContact "GalaxyRefine Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0140, @@ -208332,7 +209780,7 @@ A web server for protein structure prediction, refinement, and related methods." sc:url "http://galaxy.seoklab.org/sagittarius" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0209, @@ -208356,7 +209804,7 @@ A web server for protein structure prediction, refinement, and related methods." biotools:primaryContact "GalaxySite Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3174, @@ -208374,8 +209822,33 @@ A web server for protein structure prediction, refinement, and related methods." sc:softwareHelp ; sc:url "https://www.galaxytrakr.org" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0166, + edam:topic_3047, + edam:topic_3300, + edam:topic_3474 ; + sc:citation , + "pubmed:35749367" ; + sc:description "Prediction of Water Positions on the Protein Structure by a 3D-Convolutional Neural Network." ; + sc:featureList edam:operation_0387, + edam:operation_0474, + edam:operation_2492 ; + sc:isAccessibleForFree true ; + sc:name "GalaxyWater-CNN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://galaxy.seoklab.org/gwcnn" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0166, @@ -208395,7 +209868,7 @@ A web server for protein structure prediction, refinement, and related methods." biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -208418,7 +209891,7 @@ A web server for protein structure prediction, refinement, and related methods." biotools:primaryContact "GalaxyWEB Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -208437,7 +209910,7 @@ Galgo: An evolutionary machine learning algorithm for the identification and stu sc:url "http://www.github.com/harpomaxx/galgo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation "pubmed:19779626" ; @@ -208450,7 +209923,7 @@ Galgo: An evolutionary machine learning algorithm for the identification and stu biotools:primaryContact "Galign Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -208470,7 +209943,7 @@ GALLO: Genomic Annotation in Livestock for positional candidate LOci""" ; sc:url "https://github.com/pablobio/GALLO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -208485,7 +209958,7 @@ GALLO: Genomic Annotation in Livestock for positional candidate LOci""" ; sc:url "https://github.com/quadram-institute-bioscience/galru" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168 ; @@ -208499,8 +209972,26 @@ GALLO: Genomic Annotation in Livestock for positional candidate LOci""" ; sc:softwareVersion "1.1b" ; sc:url "http://www.csc.kth.se/~vezzi/software/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0654, + edam:topic_2269, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9407097", + "pubmed:36010352" ; + sc:description "GamaComet is a web-based buccal mucosa comet assay detection and classification tool, which purpose is to measure the amount of damage contained within the DNA." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GamaComet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bioinformatics.mipa.ugm.ac.id/gamacomet/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -208519,7 +210010,7 @@ GALLO: Genomic Annotation in Livestock for positional candidate LOci""" ; biotools:primaryContact "Gambit Issue Page" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3172, @@ -208536,8 +210027,28 @@ GALLO: Genomic Annotation in Livestock for positional candidate LOci""" ; sc:url "https://github.com/CMDM-Lab/GAME" ; biotools:primaryContact "Yufeng J. Tseng" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3316, + edam:topic_3344 ; + sc:citation , + "pubmed:35951761" ; + sc:description "The GameRank package is an R package that implements functions for variable and feature selection to create predictive models." ; + sc:featureList edam:operation_2421, + edam:operation_2423, + edam:operation_2426, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GameRank" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Genentech/GameRank" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -208554,7 +210065,7 @@ GALLO: Genomic Annotation in Livestock for positional candidate LOci""" ; sc:url "http://sourceforge.net/projects/gametes/?source=navbar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -208572,7 +210083,7 @@ GALLO: Genomic Annotation in Livestock for positional candidate LOci""" ; sc:url "https://bitbucket.org/schwarzlab/gamibhear" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -208590,7 +210101,7 @@ GALLO: Genomic Annotation in Livestock for positional candidate LOci""" ; "Tomáš Vinař" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0199, @@ -208607,8 +210118,21 @@ GALLO: Genomic Annotation in Livestock for positional candidate LOci""" ; sc:url "https://github.com/rastanton/GAMMA" ; biotools:primaryContact "Richard A Stanton" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "The GammaPred server predicts the gamma turn residues in the given protein sequence." ; + sc:featureList edam:operation_2945 ; + sc:name "gammapred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/gammapred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -208624,7 +210148,7 @@ GALLO: Genomic Annotation in Livestock for positional candidate LOci""" ; biotools:primaryContact "Eric Altermann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -208640,8 +210164,29 @@ GALLO: Genomic Annotation in Livestock for positional candidate LOci""" ; sc:url "http://research.fhcrc.org/wu/en/software.html#GAMP" ; biotools:primaryContact "Michael Wu Group" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2885, + edam:topic_3071, + edam:topic_3518 ; + sc:citation , + "pubmed:34544908" ; + sc:description "Platform for addressing high throughput analysis and management of variant data produced by Next Generation Sequencing techniques." ; + sc:featureList edam:operation_3196, + edam:operation_3359, + edam:operation_3557 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GAMUT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bioinformatics-cdac/gamut" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0634, @@ -208664,7 +210209,7 @@ StarGAN - Official PyTorch Implementation.""" ; sc:url "http://github.com/jlianglab/Fixed-Point-GAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -208685,14 +210230,13 @@ StarGAN - Official PyTorch Implementation.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1246" ; - sc:name "Sequence cluster (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1246" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1246" ; + sc:name "Sequence cluster (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -208709,8 +210253,23 @@ StarGAN - Official PyTorch Implementation.""" ; sc:url "http://bioinformatics.psb.ugent.be/software/details/GaneSh" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3301 ; + sc:citation ; + sc:description "Whole-genome based Average Nucleotide Identity (gANI) is an effort to delineate species-level diversity among prokaryotic organisms in the genomic era. Microorganisms are evolving continuously and the signature of evolution is observed across its entire genome. As such, a single gene or a select group of marker genes should not be used to infer new species as it may not be a correct representation in the evolutionary landscape. Especially with the wealth of genomic information currently available, one needs to graduate from the gene-centric 16S based classification to a holistic, genome-based method." ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "gANI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ani.jgi.doe.gov/html/home.php" ; + biotools:primaryContact "Neha J. Varghese" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -208730,7 +210289,7 @@ benchmarking pipeline used to evaluate ganon as presented in https://www.biorxiv sc:url "https://gitlab.com/rki_bioinformatics/ganon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -208747,7 +210306,7 @@ benchmarking pipeline used to evaluate ganon as presented in https://www.biorxiv sc:url "http://www.iitm.ac.in/bioinfo/GAP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, edam:topic_3673 ; @@ -208761,8 +210320,19 @@ benchmarking pipeline used to evaluate ganon as presented in https://www.biorxiv sc:name "gapFinisher" ; sc:url "http://www.github.com/kammoji/gapFinisher" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0622 ; + sc:citation ; + sc:description "GapFiller is an automated strategy, called to reliably close gaps within scaffolds using paired reads." ; + sc:featureList edam:operation_3183 ; + sc:name "Gapfiller" ; + sc:url "http://www.baseclear.com" ; + biotools:primaryContact "Walter Pirovano" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation ; @@ -208777,7 +210347,7 @@ benchmarking pipeline used to evaluate ganon as presented in https://www.biorxiv sc:url "http://www.maizegenetics.net/gapit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -208796,7 +210366,7 @@ benchmarking pipeline used to evaluate ganon as presented in https://www.biorxiv biotools:primaryContact "Feng Ge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3399 ; @@ -208814,7 +210384,7 @@ benchmarking pipeline used to evaluate ganon as presented in https://www.biorxiv biotools:primaryContact "Jon Bohlin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -208836,7 +210406,7 @@ gapseq is designed to combine metabolic pathway analysis with metabolic network sc:url "https://github.com/jotech/gapseq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3517 ; @@ -208854,7 +210424,7 @@ gapseq is designed to combine metabolic pathway analysis with metabolic network biotools:primaryContact "Valentina Iotchkova" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0084 ; @@ -208871,13 +210441,11 @@ gapseq is designed to combine metabolic pathway analysis with metabolic network sc:url "https://code.google.com/archive/p/garli/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2275, edam:topic_2814 ; - sc:citation , - "pubmed:102733" ; sc:description "A free molecular visualization program for protein structure, DNA structure, PDB, molecular rendering and biological macromolecule in unix, linux system." ; sc:featureList edam:operation_0570 ; sc:name "Garlic" ; @@ -208888,7 +210456,7 @@ gapseq is designed to combine metabolic pathway analysis with metabolic network sc:url "http://www.zucic.org/garlic/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -208905,8 +210473,24 @@ gapseq is designed to combine metabolic pathway analysis with metabolic network sc:url "https://github.com/szpiech/garlic" ; biotools:primaryContact "Zachary Szpiech" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0622, + edam:topic_0769 ; + sc:citation ; + sc:description "GARM (Genome Assembler, Reconcilation and Merging) is a new software pipeline to merge and reconcile assemblies from different algorithms or sequencing technologies. It relies on the observation that a combination of sequencing methods will work better together to reconstruct a genome in its totality, overcoming the limitations of each technology and assembly method if they were used in isolation. The pipeline is based on perl scripts and third-party open source software like the AMOS package." ; + sc:featureList edam:operation_0310 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "GARM" ; + sc:url "http://garm-meta-assem.sourceforge.net" ; + biotools:primaryContact "Alejandro Sanchez-Flores", + "Karel Estrada" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -208925,14 +210509,12 @@ gapseq is designed to combine metabolic pathway analysis with metabolic network a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3542 ; sc:citation , @@ -208962,7 +210544,7 @@ gapseq is designed to combine metabolic pathway analysis with metabolic network sc:url "http://emboss.open-bio.org/rel/rel6/apps/garnier.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0114 ; sc:description "Feature selection aims to identify and remove redundant, irrelevant and noisy variables from high-dimensional datasets. Selecting informative features affects the subsequent classification and regression analyses by improving their overall performances. It is an innovative implementation of a genetic algorithm that selects robust features in high-dimensional and challenging datasets." ; @@ -208979,8 +210561,29 @@ gapseq is designed to combine metabolic pathway analysis with metabolic network sc:url "http://bioconductor.org/packages/release/bioc/html/GARS.html" ; biotools:primaryContact "Mattia Chiesa" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0209, + edam:topic_3047, + edam:topic_3343, + edam:topic_3474 ; + sc:citation , + "pubmed:35675668" ; + sc:description "Organic Compound Synthetic Accessibility Prediction Based on the Graph Attention Mechanism." ; + sc:featureList edam:operation_3454, + edam:operation_3927, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "GASA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://cadd.zju.edu.cn/gasa/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602 ; @@ -209000,7 +210603,7 @@ gapseq is designed to combine metabolic pathway analysis with metabolic network biotools:primaryContact "Giovanni Micale" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0601, edam:topic_0634, @@ -209019,7 +210622,7 @@ Human protein phosphorylation sites prediction by GA-aided ant colony system.""" sc:url "http://predictor.nchu.edu.tw/GasPhos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -209035,8 +210638,29 @@ Human protein phosphorylation sites prediction by GA-aided ant colony system.""" sc:softwareHelp ; sc:url "http://homepages.dcc.ufmg.br/~glpappa/gass/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0749, + edam:topic_3474, + edam:topic_3534 ; + sc:citation , + "pubmed:35595534" ; + sc:description "Identifying metal-binding sites on protein structures using genetic algorithms." ; + sc:featureList edam:operation_2421, + edam:operation_3896, + edam:operation_3898 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GASS-Metal" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gassmetal.unifei.edu.br" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0821, @@ -209054,18 +210678,18 @@ Human protein phosphorylation sites prediction by GA-aided ant colony system.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2206" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation ; @@ -209083,7 +210707,7 @@ Human protein phosphorylation sites prediction by GA-aided ant colony system.""" "Guillaume Rizk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0637, @@ -209098,7 +210722,7 @@ Human protein phosphorylation sites prediction by GA-aided ant colony system.""" sc:url "http://vamps.mbl.edu/resources/software.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -209118,7 +210742,7 @@ Human protein phosphorylation sites prediction by GA-aided ant colony system.""" biotools:primaryContact "GASV Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0622 ; @@ -209134,7 +210758,7 @@ Human protein phosphorylation sites prediction by GA-aided ant colony system.""" sc:url "https://github.com/AndreasHeger/gat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3300, edam:topic_3304, @@ -209152,7 +210776,7 @@ Graph theoretical analysis of task-related functional dynamics (GAT-FD) is a sys sc:url "https://www.nitrc.org/projects/gat_fd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3334, @@ -209172,7 +210796,7 @@ Graph theoretical analysis of task-related functional dynamics (GAT-FD) is a sys sc:url "https://github.com/largeapp/gat-li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3071, @@ -209188,7 +210812,7 @@ Graph theoretical analysis of task-related functional dynamics (GAT-FD) is a sys sc:url "http://gatb.inria.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0219, @@ -209204,8 +210828,27 @@ Graph theoretical analysis of task-related functional dynamics (GAT-FD) is a sys sc:softwareHelp ; sc:url "http://systemsbio.ucsd.edu/GATE/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0659, + edam:topic_2640, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9066932", + "pubmed:35508967" ; + sc:description "A computational framework (GATECDA) based on graph attention auto-encoder to predict circRNA-drug sensitivity associations." ; + sc:featureList edam:operation_0314, + edam:operation_0438, + edam:operation_2437 ; + sc:license "Not licensed" ; + sc:name "GATECDA" ; + sc:url "https://github.com/yjslzx/GATECDA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229 ; sc:citation ; @@ -209223,7 +210866,7 @@ Graph theoretical analysis of task-related functional dynamics (GAT-FD) is a sys biotools:primaryContact "Nima Aghaeepour" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -209240,8 +210883,29 @@ Graph theoretical analysis of task-related functional dynamics (GAT-FD) is a sys "Mohammed Alser", "Onur Mutlu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0621, + edam:topic_3336, + edam:topic_3810, + edam:topic_3957 ; + sc:citation , + "pmcid:PMC8461970", + "pubmed:34560855" ; + sc:description "Large-scale data analysis for robotic yeast one-hybrid platforms and multi-disciplinary studies using GateMultiplex." ; + sc:featureList edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GateMultiplex" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Woodformation1136/GateMultiplex" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3314, @@ -209261,7 +210925,7 @@ This software package implements our developed model GATGNN for improved inorgan sc:url "https://github.com/superlouis/GATGNN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -209286,14 +210950,14 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2533 ; sc:citation , @@ -209313,66 +210977,66 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -209390,138 +211054,138 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -209539,70 +211203,70 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -209623,62 +211287,62 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -209697,46 +211361,46 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -209755,58 +211419,58 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -209824,46 +211488,46 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -209880,66 +211544,66 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -209961,42 +211625,42 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168 ; @@ -210016,66 +211680,66 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation , @@ -210093,58 +211757,58 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168 ; @@ -210164,42 +211828,42 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -210218,62 +211882,62 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168 ; @@ -210293,46 +211957,46 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168 ; @@ -210353,26 +212017,26 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168 ; @@ -210391,30 +212055,30 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199 ; @@ -210430,28 +212094,51 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; sc:url "https://software.broadinstitute.org/gatk/" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0153, + edam:topic_0154, + edam:topic_0602, + edam:topic_3172, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC9252739", + "pubmed:35639928" ; + sc:description "Omics-based identification of regulated metabolic modules in atom transition networks." ; + sc:featureList edam:operation_1812, + edam:operation_3223, + edam:operation_3660 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GATOM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ctlab.itmo.ru/shiny/gatom" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3113" ; - sc:name "Sample annotation" ; - sc:sameAs "http://edamontology.org/data_3113" ] ; + sc:additionalType "http://edamontology.org/data_3113" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sample annotation" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Genotype/phenotype report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2523" ; - sc:name "Phylogenetic data" ; - sc:sameAs "http://edamontology.org/data_2523" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2523" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Phylogenetic data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -210473,7 +212160,7 @@ Version 4 (GATK4) is open-source at https://github.com/broadinstitute/gatk.""" ; "Christopher Wardell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_2269, @@ -210489,7 +212176,7 @@ Package repository for the gauseR package.""" ; sc:url "http://github.com/adamtclark/gauseR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -210507,7 +212194,7 @@ Package repository for the gauseR package.""" ; biotools:primaryContact "Nils Persson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0654, @@ -210521,24 +212208,8 @@ Package repository for the gauseR package.""" ; sc:softwareVersion "0.1" ; sc:url "http://www.sanger.ac.uk/science/tools/gaze" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0610, - edam:topic_3382, - edam:topic_3417, - edam:topic_3474 ; - sc:citation , - "pubmed:31830239" ; - sc:description """Characterizing and automatically detecting smooth pursuit in a large-scale ground-truth data set of dynamic natural scenes. - -Hand labelled eye movements and targets, together with the output of three automatic classification algorithms for the GazeCom data set""" ; - sc:featureList edam:operation_0337, - edam:operation_3799, - edam:operation_3891 ; - sc:name "gazecom_annotations" ; - sc:url "https://web.gin.g-node.org/ioannis.agtzidis/gazecom_annotations/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3277, edam:topic_3384, @@ -210559,7 +212230,7 @@ Hand labelled eye movements and targets, together with the output of three autom biotools:primaryContact "Daan van Renswoude" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3382 ; @@ -210576,7 +212247,7 @@ gazeR:A package to analyze gaze position and pupil size data.""" ; sc:url "https://github.com/dmirman/gazer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3516 ; @@ -210593,7 +212264,7 @@ gazeR:A package to analyze gaze position and pupil size data.""" ; biotools:primaryContact "Matthew E. Hudson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -210614,7 +212285,7 @@ The observation that disease-associated genetic variants typically reside outsid sc:url "https://github.com/xuanyao/GBAT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -210628,7 +212299,7 @@ The observation that disease-associated genetic variants typically reside outsid sc:url "https://github.com/Pualalala/GBDT-LR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "Web service for occurrence data (specimens, observations) from the global GBIF data portal." ; @@ -210642,7 +212313,7 @@ The observation that disease-associated genetic variants typically reside outsid sc:url "http://www.gbif.org/developer/summary" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "Global Biodiversity Information Facility taxonomic web service from the centralised GBIF data portal." ; @@ -210656,7 +212327,7 @@ The observation that disease-associated genetic variants typically reside outsid sc:url "http://www.gbif.org/developer/summary" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -210671,14 +212342,14 @@ The observation that disease-associated genetic variants typically reside outsid a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0780 ; sc:citation ; @@ -210695,26 +212366,28 @@ The observation that disease-associated genetic variants typically reside outsid a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; - sc:citation , - ; + sc:citation , + , + "pubmed:10742046", + "pubmed:17654362" ; sc:description "Cleaning aligned sequences." ; sc:featureList edam:operation_0258 ; sc:name "gblocks" ; @@ -210724,26 +212397,26 @@ The observation that disease-associated genetic variants typically reside outsid a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -210756,7 +212429,7 @@ The observation that disease-associated genetic variants typically reside outsid biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -210773,7 +212446,7 @@ The observation that disease-associated genetic variants typically reside outsid sc:url "https://sites.google.com/site/bestumich/issues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:18428797" ; @@ -210787,8 +212460,14 @@ The observation that disease-associated genetic variants typically reside outsid sc:url "http://gmod.org/wiki/GBrowse" ; biotools:primaryContact "Alex Read" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "A genome browser instance dedicated to giant viruses discovered by the IGS Laboratory" ; + sc:name "Gbrowse giant virus" ; + sc:url "https://www.igs.cnrs-mrs.fr/cgi-bin/gb2/gbrowse" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -210809,7 +212488,7 @@ GBRS is a suite of tools for reconstructing genomes using RNA-Seq data from mult sc:url "https://github.com/churchill-lab/gbrs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2830, @@ -210831,7 +212510,7 @@ GBRS is a suite of tools for reconstructing genomes using RNA-Seq data from mult sc:url "https://github.com/swainechen/GBS-SBG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0749, @@ -210852,7 +212531,7 @@ GBRS is a suite of tools for reconstructing genomes using RNA-Seq data from mult biotools:primaryContact "C.T. Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0749, @@ -210872,7 +212551,7 @@ Gastric cancer (GC) is a heterogeneous tumour with numerous differences of epide sc:url "https://njmu-zhanglab.shinyapps.io/gc_sms/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -210890,7 +212569,7 @@ Genetic connectedness quantifies the extent of linkage between individuals acros sc:url "https://github.com/QGresources/GCA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0610, @@ -210909,7 +212588,7 @@ Genetic connectedness quantifies the extent of linkage between individuals acros biotools:primaryContact "Meinolf Ottensmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -210928,7 +212607,7 @@ gCAnno-A tool for cell type annotation of single-cell transcriptome sequencing." sc:url "https://github.com/xjtu-omics/gCAnno" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3169 ; @@ -210947,7 +212626,7 @@ gCAnno-A tool for cell type annotation of single-cell transcriptome sequencing." biotools:primaryContact "Mingxiang Teng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0196 ; @@ -210965,7 +212644,7 @@ gCAnno-A tool for cell type annotation of single-cell transcriptome sequencing." sc:url "https://github.com/informatik-mannheim/genetic-code-analysis-toolkit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0625, @@ -210985,7 +212664,7 @@ gCAnno-A tool for cell type annotation of single-cell transcriptome sequencing." "Wei Hao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_1775, @@ -211007,7 +212686,7 @@ GCATSL is a deep learning model that can be used for SL prediction. As shown in sc:url "https://zenodo.org/record/4522679" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -211022,8 +212701,50 @@ Gastric cancer (GC) continues to be one of the major causes of cancer deaths wor sc:name "GCdiscrimination" ; sc:url "http://lishuyan.lzu.edu.cn/GC/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0659, + edam:topic_0769, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC9164028", + "pubmed:35723358" ; + sc:description "An Easy-to-Use Toolkit for Gene Co-Expression Network Analysis and lncRNAs Annotation." ; + sc:featureList edam:operation_0314, + edam:operation_3463, + edam:operation_3501, + edam:operation_3672, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "GCEN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.biochen.org/gcen/visualization" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2229, + edam:topic_3172 ; + sc:citation ; + sc:description "A tool for determining a Pareto front of growth-coupled cell factory designs." ; + sc:featureList edam:operation_0479 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "gcFront" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/lLegon/gcFront" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -211044,8 +212765,25 @@ Grass carp (Ctenopharyngodon idellus) is a herbivorous, freshwater fish species sc:name "GCGVD" ; sc:url "http://www.ncgr.ac.cn/grasscarp/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0203, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8691098", + "pubmed:34787097" ; + sc:description "GCgx is a scientific web application that allows scientists to study the response of different cell types to glucocorticoids." ; + sc:isAccessibleForFree true ; + sc:name "GCgx" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gcgx.niaid.nih.gov" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -211059,7 +212797,7 @@ Grass carp (Ctenopharyngodon idellus) is a herbivorous, freshwater fish species sc:url "http://gclust.c.u-tokyo.ac.jp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, @@ -211080,26 +212818,26 @@ Gcluster is a simple-to-use tool for visualizing and comparing genome contexts f a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ], + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -211122,7 +212860,7 @@ Gcluster is a simple-to-use tool for visualizing and comparing genome contexts f biotools:primaryContact "Thomas Sandmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -211141,16 +212879,38 @@ Gcluster is a simple-to-use tool for visualizing and comparing genome contexts f sc:url "http://bioconductor.org/packages/release/bioc/html/gCMAPWeb.html" ; biotools:primaryContact "Thomas Sandmann" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0602, + edam:topic_2640 ; + sc:citation , + "pmcid:PMC8670134", + "pubmed:34906079" ; + sc:description "The package constructs the mutually exclusively mutated gene networks from mutation associations and gene interactions with the graph clustering technique and identifies sub-networks with distinct biological functions with the canonical pathways." ; + sc:featureList edam:operation_0533, + edam:operation_3227, + edam:operation_3432, + edam:operation_3926 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "gcMECM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/CBIIT-CGBB/gcMECM" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_3770" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3779" ; - sc:name "Annotated text" ; - sc:sameAs "http://edamontology.org/data_3779" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3779" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Annotated text" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Command-line tool", "Library", @@ -211177,8 +212937,30 @@ Gcluster is a simple-to-use tool for visualizing and comparing genome contexts f "Windows" ; sc:url "https://gcmodeller.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0634, + edam:topic_3360, + edam:topic_3474, + edam:topic_3518 ; + sc:citation , + "pubmed:34788368" ; + sc:description "Deep graph representations embed network information for robust disease marker identification." ; + sc:featureList edam:operation_3094, + edam:operation_3432, + edam:operation_3463 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GCNCC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/omarmaddouri/GCNCC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0634, @@ -211199,8 +212981,27 @@ Gcluster is a simple-to-use tool for visualizing and comparing genome contexts f sc:name "GCNCDA" ; sc:url "https://github.com/wjq0323/GCNCDA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9389118", + "pubmed:35991563" ; + sc:description "CircRNA-miRNA interaction Prediction Based on Graph Neural Network" ; + sc:featureList edam:operation_0463, + edam:operation_3094, + edam:operation_3901 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GCNCMI" ; + sc:url "https://github.com/csuhjhjhj/GCNCMI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , @@ -211216,7 +213017,7 @@ GCNet is initially described in arxiv. Via absorbing advantages of Non-Local Net sc:url "https://github.com/xvjiarui/GCNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3336, edam:topic_3373, @@ -211237,10 +213038,10 @@ GCNMDA: A novel Graph Convolution Network based framework for predicting Microbe a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_1775, @@ -211267,7 +213068,7 @@ GCNMDA: A novel Graph Convolution Network based framework for predicting Microbe biotools:primaryContact "Jaak Vilo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053, @@ -211284,14 +213085,14 @@ GCNMDA: A novel Graph Convolution Network based framework for predicting Microbe a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3345 ; @@ -211313,7 +213114,7 @@ GCNMDA: A novel Graph Convolution Network based framework for predicting Microbe sc:url "http://biit.cs.ut.ee/gprofiler/gconvert.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0602, @@ -211327,7 +213128,7 @@ GCNMDA: A novel Graph Convolution Network based framework for predicting Microbe sc:url "http://sourceforge.net/projects/gscore/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0625, @@ -211346,7 +213147,7 @@ GCNMDA: A novel Graph Convolution Network based framework for predicting Microbe biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3343 ; @@ -211364,7 +213165,7 @@ GCNMDA: A novel Graph Convolution Network based framework for predicting Microbe biotools:primaryContact "Russell Bainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -211382,7 +213183,7 @@ GCNMDA: A novel Graph Convolution Network based framework for predicting Microbe biotools:primaryContact "Z. Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:citation , "pubmed:31406990" ; @@ -211395,7 +213196,7 @@ GCNMDA: A novel Graph Convolution Network based framework for predicting Microbe sc:url "https://github.com/jltsiren/gcsa2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -211416,7 +213217,7 @@ GCNMDA: A novel Graph Convolution Network based framework for predicting Microbe sc:url "https://github.com/Appleabc123/GCSENet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0114, @@ -211435,7 +213236,7 @@ GCNMDA: A novel Graph Convolution Network based framework for predicting Microbe biotools:primaryContact "Joana Pereira" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0749, @@ -211461,7 +213262,7 @@ For differential expression analysis of 3'IVT and WT-style microarrays from Affy sc:url "https://github.com/harrisgm/GCSscore" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation , @@ -211479,7 +213280,7 @@ For differential expression analysis of 3'IVT and WT-style microarrays from Affy biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0637, @@ -211500,7 +213301,7 @@ GCM Type Strain Sequencing project.""" ; sc:url "http://gctype.wdcm.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -211525,7 +213326,7 @@ GCM Type Strain Sequencing project.""" ; biotools:primaryContact "Thomas Schödl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -211541,7 +213342,7 @@ GCM Type Strain Sequencing project.""" ; sc:url "https://www.uni-due.de/~hy0546/gCUP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0622, @@ -211558,7 +213359,7 @@ GCM Type Strain Sequencing project.""" ; sc:url "http://toolkit.tuebingen.mpg.de/gcview" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -211578,7 +213379,7 @@ k.""" ; sc:url "https://github.com/Shen-Lab/gcWGAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0203, @@ -211596,8 +213397,30 @@ k.""" ; sc:softwareHelp ; sc:url "http://gda.unimore.it" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0196, + edam:topic_0622, + edam:topic_3302, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9131526", + "pubmed:35610562" ; + sc:description "GDA (Genome Decomposition Analysis) is a bioinformatic pipeline to analyse genome architecture." ; + sc:featureList edam:operation_0362, + edam:operation_0525, + edam:operation_3216 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GDA" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/eeaunin/gda" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0622, @@ -211615,7 +213438,7 @@ k.""" ; biotools:primaryContact "Yeates T.O." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170 ; @@ -211629,7 +213452,7 @@ It provides a user-friendly web interface for detecting batch factors. Based on sc:url "http://bioinfo.nankai.edu.cn/gdasc.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -211650,7 +213473,7 @@ GDBChEMBL is a library of 10 million chemical structures that was extracted from sc:url "http://gdb.unibe.ch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3071, @@ -211665,20 +213488,20 @@ GDBChEMBL is a library of 10 million chemical structures that was extracted from sc:url "http://sun.aei.polsl.pl/REFRESH/index.php?page=projects&project=gdc&subpage=about" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "The GDC API drives the GDC Data and Submission Portals and provides programmatic access to GDC functionality. This includes searching for, downloading, and submitting data and metadata. The GDC API uses JSON as its communication format, and standard HTTP methods like GET, PUT, POST and DELETE." ; sc:name "gdc-api" ; sc:url "https://docs.gdc.cancer.gov/API/Users_Guide/Getting_Started/#the-gdc-application-programming-interface-api-an-overview" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "The gdc-client provides several convenience functions over the GDC API which provides general download/upload via HTTPS." ; sc:name "gdc-client" ; sc:softwareVersion "1.6.0" ; sc:url "https://github.com/NCI-GDC/gdc-client" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3444, @@ -211697,7 +213520,7 @@ GDBChEMBL is a library of 10 million chemical structures that was extracted from sc:url "https://github.com/JunweiLiu0208/GdClean" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -211722,7 +213545,7 @@ GDBChEMBL is a library of 10 million chemical structures that was extracted from biotools:primaryContact "Ruidong Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0196, edam:topic_0736 ; @@ -211737,7 +213560,7 @@ GDBChEMBL is a library of 10 million chemical structures that was extracted from biotools:primaryContact "Guijun Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -211756,7 +213579,7 @@ GDBChEMBL is a library of 10 million chemical structures that was extracted from sc:url "https://gddp.research.cchmc.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, @@ -211774,7 +213597,7 @@ GDBChEMBL is a library of 10 million chemical structures that was extracted from "Michal J. Pietal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3572 ; @@ -211789,7 +213612,7 @@ GDBChEMBL is a library of 10 million chemical structures that was extracted from sc:url "http://web1.sph.emory.edu/users/tyu8/GDHC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_2269, @@ -211803,8 +213626,34 @@ GDBChEMBL is a library of 10 million chemical structures that was extracted from sc:name "GDM" ; sc:url "https://liuhongwei.shinyapps.io/gdm_risk_calculator/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "A open source Webserver for prediction of Mycobacterium Tuberculosis (M.Tb) inhibitors using QSAR and Docking strategies. GDoQ web server has been developed to serve scientific community working in the field of Drug Designing for designing inhibitors against N-acetylglucosamine-1-phosphate uridyltransferase (GLMU) protein, a potential drug target involved in bacterial cell wall synthesis." ; + sc:featureList edam:operation_2945 ; + sc:name "gdoq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/gdoq/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "GDPbio is the project focused upon providing various resources related to genome analysis particularly for the prediction of disease susceptibility of a particular individual and personalized medicines development, aiming public health improvement." ; + sc:featureList edam:operation_2945 ; + sc:name "gdpbio" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/gdpbio/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0659, edam:topic_2640, @@ -211825,7 +213674,7 @@ The Next Generation Cancer Knowledge Network.""" ; sc:url "https://gdc.cancer.gov/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -211849,7 +213698,7 @@ The Next Generation Cancer Knowledge Network.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "GDS files are widely used to represent genotyping or sequence data. The GDSArray package implements the `GDSArray` class to represent nodes in GDS files in a matrix-like representation that allows easy manipulation (e.g., subsetting, mathematical transformation) in _R_. The data remains on disk until needed, so that very large files can be processed." ; @@ -211868,7 +213717,7 @@ The Next Generation Cancer Knowledge Network.""" ; biotools:primaryContact "Qian Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0208, edam:topic_2640, @@ -211887,14 +213736,14 @@ The Next Generation Cancer Knowledge Network.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2921" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -211914,7 +213763,7 @@ The Next Generation Cancer Knowledge Network.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -211931,7 +213780,7 @@ The Next Generation Cancer Knowledge Network.""" ; biotools:primaryContact "Wei-Min Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Performs various functions on GenomeDiff formatted files." ; @@ -211940,22 +213789,22 @@ The Next Generation Cancer Knowledge Network.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -211976,14 +213825,14 @@ The Next Generation Cancer Knowledge Network.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2533 ; @@ -212004,18 +213853,18 @@ The Next Generation Cancer Knowledge Network.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2533 ; @@ -212035,14 +213884,14 @@ The Next Generation Cancer Knowledge Network.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2533, @@ -212063,14 +213912,14 @@ The Next Generation Cancer Knowledge Network.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3071 ; @@ -212090,14 +213939,14 @@ The Next Generation Cancer Knowledge Network.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -212118,18 +213967,18 @@ The Next Generation Cancer Knowledge Network.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -212150,14 +213999,14 @@ The Next Generation Cancer Knowledge Network.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -212178,14 +214027,14 @@ The Next Generation Cancer Knowledge Network.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -212205,14 +214054,14 @@ The Next Generation Cancer Knowledge Network.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -212234,14 +214083,14 @@ The Next Generation Cancer Knowledge Network.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_2533, @@ -212261,18 +214110,18 @@ The Next Generation Cancer Knowledge Network.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -212293,14 +214142,14 @@ The Next Generation Cancer Knowledge Network.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -212322,14 +214171,14 @@ The Next Generation Cancer Knowledge Network.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -212349,14 +214198,14 @@ The Next Generation Cancer Knowledge Network.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -212375,8 +214224,31 @@ The Next Generation Cancer Knowledge Network.""" ; sc:url "http://barricklab.org/twiki/pub/Lab/ToolsBacterialGenomeResequencing/documentation/gd_usage.html" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0769, + edam:topic_2229, + edam:topic_3170, + edam:topic_3474 ; + sc:citation , + "pubmed:35901457" ; + sc:description "GE-Impute is an imputation method for scRNA-seq data based on graph embeddings." ; + sc:featureList edam:operation_0244, + edam:operation_0314, + edam:operation_3463, + edam:operation_3557 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "GE-Impute" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/wxbCaterpillar/GE-Impute" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, @@ -212396,22 +214268,22 @@ The package geaR is designed to aid with evolutionary and population genetic ana a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1632" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ], + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1711" ; - sc:name "Sequence alignment image" ; - sc:sameAs "http://edamontology.org/data_1711" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1711" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence alignment image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199 ; @@ -212437,7 +214309,7 @@ The package geaR is designed to aid with evolutionary and population genetic ana sc:url "https://www.gear-genomics.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -212452,31 +214324,8 @@ The package geaR is designed to aid with evolutionary and population genetic ana ; sc:url "http://www.institute.loni.org/lasigma/package/dock/" . - a sc:SoftwareApplication ; - sc:additionalType "Command-line tool" ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0769, - edam:topic_3474 ; - sc:citation , - "pubmed:31584634" ; - sc:description """Methods, Applications, and Evaluations. - -Graph Embedding Evaluation / Code and Datasets for "Graph Embedding on Biomedical Networks: Methods, Applications, and Evaluations". - -BioNEV (Biomedical Network Embedding Evaluation). - -This repository contains source code and datasets for paper "Graph Embedding on Biomedical Networks: Methods, Applications, and Evaluations" (accepted by Bioinformatics). This work aims to systematically evaluate recent advanced graph embedding techniques on biomedical tasks. We compile 5 benchmark datasets for 4 biomedical prediction tasks (see paper for details) and use them to evaluate 11 representative graph embedding methods selected from different categories:. - -5 matrix factorization-based: Laplacian Eigenmap, SVD, Graph Factorization, HOPE, GraRep.""" ; - sc:featureList edam:operation_0303, - edam:operation_2492, - edam:operation_3439 ; - sc:license "MIT" ; - sc:name "GEBN" ; - sc:url "https://github.com/xiangyue9607/BioNEV" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2269, @@ -212494,18 +214343,18 @@ This repository contains source code and datasets for paper "Graph Embedding on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080 ; @@ -212526,22 +214375,22 @@ This repository contains source code and datasets for paper "Graph Embedding on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_1381" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence alignment (pair)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080 ; @@ -212562,10 +214411,10 @@ This repository contains source code and datasets for paper "Graph Embedding on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092 ; sc:description "Web-based, platform-independent tool to analyse results of pairwise and multiple sequences comparison software. The implemented tool includes the traditional capabilities of this type of software, incorporating the concept of layers from image editing software to represent different comparisons. An innovative feature is the integration of the Evolutionary Events timeline. To extend the functionality, a set of post-processing services has been included." ; @@ -212583,7 +214432,7 @@ This repository contains source code and datasets for paper "Graph Embedding on biotools:primaryContact "Esteban Pérez-Wohlfeil" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -212600,7 +214449,7 @@ This repository contains source code and datasets for paper "Graph Embedding on sc:url "http://bibiserv.techfak.uni-bielefeld.de/gecko/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -212620,7 +214469,7 @@ Welcome to GECO (Gene Expression Clustering Optimization), the straightforward, sc:url "http://www.theGECOapp.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:description "GeCo3 is a DNA compressor that uses a neural network to do the mixing of experts." ; sc:license "GPL-3.0" ; @@ -212628,7 +214477,7 @@ Welcome to GECO (Gene Expression Clustering Optimization), the straightforward, sc:url "https://github.com/cobilab/geco3/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0623, @@ -212646,8 +214495,34 @@ Welcome to GECO (Gene Expression Clustering Optimization), the straightforward, sc:url "http://operons.ibt.unam.mx/gctNG/" ; biotools:primaryContact "Gene Context Tool NG Support" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0203, + edam:topic_3174, + edam:topic_3293, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9252766", + "pubmed:35639770" ; + sc:description "Genomic context visualisation of prokaryotic genes from a functional and evolutionary perspective." ; + sc:featureList edam:operation_2421, + edam:operation_3208, + edam:operation_3663 ; + sc:isAccessibleForFree true ; + sc:name "GeCoViz" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://gecoviz.cgmlab.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -212665,7 +214540,7 @@ Welcome to GECO (Gene Expression Clustering Optimization), the straightforward, sc:url "http://www.genome.jp/tools/gecs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0203, @@ -212680,7 +214555,7 @@ Welcome to GECO (Gene Expression Clustering Optimization), the straightforward, sc:url "http://gedas.bizhat.com/gedas.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -212698,7 +214573,7 @@ Welcome to GECO (Gene Expression Clustering Optimization), the straightforward, biotools:primaryContact "Jan Baumbach" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -212716,7 +214591,7 @@ Welcome to GECO (Gene Expression Clustering Optimization), the straightforward, biotools:primaryContact "Jan Baumbach" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -212738,8 +214613,70 @@ Generalised suffix array-based Direct SNV caller, or GeDi, detects somatic Singl sc:name "GeDi" ; sc:url "https://github.com/izaak-coleman/GeDi" . + a sc:SoftwareApplication ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3170, + edam:topic_3308, + edam:topic_3518 ; + sc:citation ; + sc:description "An R package for integration of transcriptomic data from multiple high-throughput platforms." ; + sc:featureList edam:operation_2939, + edam:operation_3282, + edam:operation_3659, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GEDI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/MNStokholm/GEDI" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application", + "Workflow" ; + sc:applicationSubCategory edam:topic_0602 ; + sc:citation ; + sc:description "A database of gene-disease pathway association, along with tools to identify i) disease-disease comorbidity, ii) pathway enrichment, iii) disease enrichment, iv) disease enrichment using GO terms, v) polypharmacological target prediction and vi) Venn of genes, pathways, domains, GO terms, and custom list" ; + sc:featureList edam:operation_3501 ; + sc:name "GeDiPNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://gedipnet.bicnirrh.res.in/index.php" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0199, + edam:topic_0632, + edam:topic_3168, + edam:topic_3912 ; + sc:citation , + "pmcid:PMC8554027", + "pubmed:34722482" ; + sc:description "The Genome Editing automated Design platform for point mutation construction in Corynebacterium glutamicum." ; + sc:featureList edam:operation_0308, + edam:operation_0310, + edam:operation_3096 ; + sc:isAccessibleForFree true ; + sc:name "GEDpm-cg" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gedpm-cg.biodesign.ac.cn/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0196, @@ -212755,22 +214692,22 @@ Generalised suffix array-based Direct SNV caller, or GeDi, detects somatic Singl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3509" ; - sc:name "Ontology mapping" ; - sc:sameAs "http://edamontology.org/data_3509" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3509" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Ontology mapping" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -212790,14 +214727,12 @@ Generalised suffix array-based Direct SNV caller, or GeDi, detects somatic Singl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -212827,7 +214762,7 @@ Generalised suffix array-based Direct SNV caller, or GeDi, detects somatic Singl sc:url "http://emboss.open-bio.org/rel/rel6/apps/geecee.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:21803806" ; @@ -212839,8 +214774,29 @@ Generalised suffix array-based Direct SNV caller, or GeDi, detects somatic Singl sc:url "https://github.com/danmaclean/gee_fu" ; biotools:primaryContact "Dan MacLean" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_3293, + edam:topic_3303, + edam:topic_3360, + edam:topic_3697 ; + sc:citation ; + sc:description "Detecting Sparse Microbial Association Signals Adaptively From Longitudinal Microbiome Data Based on Generalized Estimating Equations." ; + sc:featureList edam:operation_0337, + edam:operation_2238, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GEEMiHC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/xpjiang-ccnu/GEEMiHC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -212863,7 +214819,7 @@ Generalised suffix array-based Direct SNV caller, or GeDi, detects somatic Singl "Paolo Romano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0121, @@ -212886,7 +214842,7 @@ Known annotations of the genes of all organisms in the Entrez Gene database to G sc:url "http://tiny.cc/geff/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -212904,7 +214860,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar sc:url "https://github.com/large-scale-gxe-methods/GEM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3293, @@ -212920,8 +214876,28 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar sc:url "https://cran.r-project.org/web/packages/geiger/" ; biotools:primaryContact "Matt Pennell" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0634, + edam:topic_3068 ; + sc:citation , + "pubmed:35485739" ; + sc:description "An R package for gene-environment interaction analysis incorporating prior information." ; + sc:featureList edam:operation_0306, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "GEInfo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://CRAN.R-project.org/package=GEInfo" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0634, @@ -212938,7 +214914,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -212954,7 +214930,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar sc:url "http://research.nhgri.nih.gov/software/GeIST/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3068 ; sc:description "A free 1D gel electrophoresis image analysis software .The process of gel image analysis is straightforward and covers all the main aspects of evaluation from automatic lane detection to precise molecular weight calculations. Many tools help you to improve the accuracy of gel evaluation. You may obtain the gel image with a common digital camera, or even with your cell phone, and use it to get the results in just a few seconds." ; @@ -212969,7 +214945,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar sc:url "http://www.gelanalyzer.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0621, @@ -212991,7 +214967,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar biotools:primaryContact "György Babnigg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3071, @@ -213008,7 +214984,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar sc:url "http://phylo.bio.ku.edu/GeLL/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -213022,7 +214998,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar sc:url "http://www.sequentix.de/gelquest/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -213040,7 +215016,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar biotools:primaryContact "Nelson Young" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:description "Developed at Reed College which calculates DNA fragment sizes from gel electrophoresis migration data. It runs on a Macintosh computer only. The first step in using the this program is to enter data for a known marker. Both the distances traveled and the fragment sizes are entered. Then the distances migrated by up to 19 sets of DNA fragments are entered, and the program calculates the sizes of these fragments using a cubic-spline interpolation." ; @@ -213050,7 +215026,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar sc:url "http://academic.reed.edu/biology/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -213078,7 +215054,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar "Hong Pan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2259, @@ -213096,14 +215072,14 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1193" ; - sc:name "Tool name (FASTA)" ; - sc:sameAs "http://edamontology.org/data_1193" ] ; + sc:additionalType "http://edamontology.org/data_1193" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Tool name (FASTA)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3671" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Text" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:author "Alejandro Chacon", @@ -213131,8 +215107,31 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar sc:url "https://github.com/smarco/gem3-mapper" ; biotools:primaryContact "Santiago Marco-Sola" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0769, + edam:topic_3315, + edam:topic_3337, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC8545347", + "pubmed:34695175" ; + sc:description "Scalable and flexible gene-environment interaction analysis in millions of samples." ; + sc:featureList edam:operation_3196, + edam:operation_3557, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GEM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/large-scale-gxe-methods/GEM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168 ; @@ -213149,7 +215148,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar "Report a bug" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:description "This method introduces gene set enrichment for mathematical biology (GEMB). Typically, gene-set analyses measure the association between a disease of interest and a set of genes related to a biological pathway. These analyses often incorporate gene network properties to account for differential contributions of each gene. With GEMB, we extend this concept further, defining gene contributions based on biophysical properties, by leveraging mathematical models of biology to predict the effects of genetic perturbations on a particular downstream function." ; sc:license "GPL-3.0" ; @@ -213157,7 +215156,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar sc:url "https://github.com/cochran4/GEMB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -213176,22 +215175,22 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -213208,8 +215207,32 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar sc:url "https://sourceforge.net/projects/gemsim/" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0218, + edam:topic_3277, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9216561", + "pubmed:35657113" ; + sc:description "Interactive interface for transformer-based Genomic Metadata Integration." ; + sc:featureList edam:operation_0314, + edam:operation_2421, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GeMI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://gmql.eu/gemi/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -213225,7 +215248,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar biotools:primaryContact "L. M. Schriml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -213239,7 +215262,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar sc:url "http://gemini.readthedocs.io/en/latest/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -213256,7 +215279,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, @@ -213271,16 +215294,41 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar sc:softwareHelp ; sc:url "http://www.xzlab.org/software.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0769, + edam:topic_3170, + edam:topic_3316, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9063052", + "pubmed:35501696" ; + sc:description "GEMmaker is a Nextflow workflow for large-scale gene expression sample processing, expression-level quantification and Gene Expression Matrix (GEM) construction." ; + sc:featureList edam:operation_3223, + edam:operation_3463, + edam:operation_3800 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GEMmaker" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://github.com/SystemsGenetics/GEMmaker" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077 ; sc:author "Paolo Ribeca" ; @@ -213298,8 +215346,32 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar sc:url "https://sourceforge.net/projects/gemlibrary/" ; biotools:primaryContact "Paolo Ribeca" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0654, + edam:topic_0780, + edam:topic_3500, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC9290862", + "pubmed:35849014" ; + sc:description "A web-based platform for the visualization and curation of genome ancestry mosaics." ; + sc:featureList edam:operation_0337, + edam:operation_3196, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GeMo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://gemo.southgreen.fr/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2275 ; @@ -213317,7 +215389,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar biotools:primaryContact "Jens Keilwagen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0632, @@ -213338,42 +215410,42 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -213390,7 +215462,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0218, @@ -213411,7 +215483,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar biotools:primaryContact "Chang-Jiun Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2269, @@ -213431,7 +215503,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0203, @@ -213452,7 +215524,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar biotools:primaryContact "Vahid Jalili" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -213470,14 +215542,14 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Santiago Marco-Sola", @@ -213499,7 +215571,7 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar biotools:primaryContact "Emilio Palumbo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -213517,8 +215589,32 @@ GEM (Gene-Environment interaction analysis for Millions of samples) is a softwar sc:url "http://www.compgen.pitt.edu/GemTools/GEM%20Documentation.pdf" ; biotools:primaryContact "Bert Klei" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0780, + edam:topic_2229, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8728231", + "pubmed:34591957" ; + sc:description "A comprehensive data portal integrating transcriptomic profiles across multiple species at both bulk and single-cell levels." ; + sc:featureList edam:operation_0264, + edam:operation_0314, + edam:operation_0315, + edam:operation_3766, + edam:operation_3933 ; + sc:isAccessibleForFree true ; + sc:name "GEN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ngdc.cncb.ac.cn/gen/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -213536,7 +215632,7 @@ BACKGROUND:For a genome-wide association study in humans, genotype imputation is sc:url "https://bitbucket.org/4shin/division-of-genome-research/src/master/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0654, @@ -213553,7 +215649,7 @@ BACKGROUND:For a genome-wide association study in humans, genotype imputation is sc:url "http://sourceforge.net/projects/gen3d/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3050, @@ -213569,7 +215665,7 @@ BACKGROUND:For a genome-wide association study in humans, genotype imputation is sc:url "https://CRAN.R-project.org/package=gen3sis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3053, @@ -213592,7 +215688,7 @@ BACKGROUND:For a genome-wide association study in humans, genotype imputation is "Gregory Gundersen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3168, @@ -213613,7 +215709,7 @@ Provides the necessary functions to identify and extract a selection of already sc:url "https://cran.r-project.org/package=genBaRcode" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_3517 ; @@ -213630,7 +215726,7 @@ Provides the necessary functions to identify and extract a selection of already biotools:primaryContact "GenABEL project developers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0622 ; sc:description "Ultra-fast Next-Generation Sequencing (NGS) read alignment and variant calling solution." ; @@ -213642,7 +215738,7 @@ Provides the necessary functions to identify and extract a selection of already biotools:primaryContact "GENALICE BV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -213660,14 +215756,13 @@ Provides the necessary functions to identify and extract a selection of already a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2815 ; @@ -213683,7 +215778,7 @@ Provides the necessary functions to identify and extract a selection of already sc:url "http://www.dsi.univ-paris5.fr/genatlas/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -213712,7 +215807,7 @@ Provides the necessary functions to identify and extract a selection of already "Martine Lemerrer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -213732,14 +215827,13 @@ Gene Regulatory Network Analysis by Variable Fractional Order Systems.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1097" ; - sc:name "Sequence accession (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1097" ] ; + sc:additionalType "http://edamontology.org/data_1097" ; + sc:name "Sequence accession (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2532" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -213754,30 +215848,30 @@ Gene Regulatory Network Analysis by Variable Fractional Order Systems.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2549" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -213799,30 +215893,30 @@ Gene Regulatory Network Analysis by Variable Fractional Order Systems.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -213838,14 +215932,14 @@ Gene Regulatory Network Analysis by Variable Fractional Order Systems.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3168 ; @@ -213862,7 +215956,7 @@ Gene Regulatory Network Analysis by Variable Fractional Order Systems.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -213880,7 +215974,7 @@ Gene Regulatory Network Analysis by Variable Fractional Order Systems.""" ; biotools:primaryContact "Gabriel Becker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -213894,7 +215988,7 @@ Gene Regulatory Network Analysis by Variable Fractional Order Systems.""" ; sc:url "http://membres-timc.imag.fr/Olivier.Francois/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -213906,11 +216000,12 @@ Gene Regulatory Network Analysis by Variable Fractional Order Systems.""" ; sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:softwareHelp ; - sc:url "http://ci.smu.edu.cn" . + sc:softwareHelp ; + sc:softwareVersion "GenCLiP 2.0, GenCLiP 3" ; + sc:url "http://cismu.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -213926,7 +216021,7 @@ Gene Regulatory Network Analysis by Variable Fractional Order Systems.""" ; sc:url "http://www.math.unipa.it/~lobosco/genclust/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3071 ; @@ -213940,7 +216035,7 @@ Gene Regulatory Network Analysis by Variable Fractional Order Systems.""" ; sc:url "http://www1.spms.ntu.edu.sg/~chenxin/GenCompress/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -213964,18 +216059,18 @@ gencore is a tool for fast and powerful deduplication for paired-end next-genera a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ], + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "Nucleic acid sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0085 ; sc:citation , @@ -213996,14 +216091,14 @@ gencore is a tool for fast and powerful deduplication for paired-end next-genera a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1939" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0085 ; sc:citation , @@ -214024,7 +216119,7 @@ gencore is a tool for fast and powerful deduplication for paired-end next-genera sc:url "https://gendbe.computational.bio.uni-giessen.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0157, @@ -214039,7 +216134,7 @@ gencore is a tool for fast and powerful deduplication for paired-end next-genera sc:url "http://darwin.uvigo.es/software/gendecoder.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0602, @@ -214058,7 +216153,7 @@ gencore is a tool for fast and powerful deduplication for paired-end next-genera biotools:primaryContact "Takeru Nakazato" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0804, @@ -214078,8 +216173,28 @@ Primary immunodeficiencies (PIDs) are a heterogeneous group of inherited disorde sc:name "Gene" ; sc:url "http://pid.gxbsidra.org/dm3/geneBrowser/list" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_3474, + edam:topic_3518 ; + sc:citation , + "pubmed:34555591" ; + sc:description "Gene Bench is a benchmark-ing framework used in analyzing methods that detect differentially expressed genes from biological samples. Besides being a benchmarking framework it also contains some commonly used Differential genes detection algorithms:" ; + sc:featureList edam:operation_0571, + edam:operation_2454, + edam:operation_3223 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Gene-Bench" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/raduangelescu/GeneBench/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204 ; sc:citation ; @@ -214096,7 +216211,7 @@ Primary immunodeficiencies (PIDs) are a heterogeneous group of inherited disorde "Vamsi K. Mootha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -214112,7 +216227,7 @@ Primary immunodeficiencies (PIDs) are a heterogeneous group of inherited disorde biotools:primaryContact "Jeff H. Chang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -214130,7 +216245,7 @@ Primary immunodeficiencies (PIDs) are a heterogeneous group of inherited disorde biotools:primaryContact "Michael Driscoll" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -214144,8 +216259,34 @@ probe designer for geneFISH and phageFISH.""" ; sc:name "Gene-PROBER" ; sc:url "http://gene-prober.icbm.de/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_0625, + edam:topic_3172, + edam:topic_3337, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9071452", + "pubmed:35474393" ; + sc:description "Identifying genes with similar continuous trait fingerprints from phenome-wide association analyses." ; + sc:featureList edam:operation_2436, + edam:operation_3196, + edam:operation_3432, + edam:operation_3791 ; + sc:isAccessibleForFree true ; + sc:name "Gene-SCOUT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://genescout.public.cgr.astrazeneca.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -214164,7 +216305,7 @@ probe designer for geneFISH and phageFISH.""" ; biotools:primaryContact "Contact list" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0196, @@ -214185,7 +216326,7 @@ probe designer for geneFISH and phageFISH.""" ; biotools:primaryContact "Jean-Marie Rouillard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -214205,30 +216346,27 @@ probe designer for geneFISH and phageFISH.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2701" ; - sc:name "CATH node ID (family)" ; - sc:sameAs "http://edamontology.org/data_2701" ], + sc:additionalType "http://edamontology.org/data_2701" ; + sc:name "CATH node ID (family)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2701" ; - sc:name "CATH node ID (family)" ; - sc:sameAs "http://edamontology.org/data_2701" ], + sc:additionalType "http://edamontology.org/data_1040" ; + sc:name "CATH domain ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1040" ; - sc:name "CATH domain ID" ; - sc:sameAs "http://edamontology.org/data_1040" ] ; + sc:additionalType "http://edamontology.org/data_2701" ; + sc:name "CATH node ID (family)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ], + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein family report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ], + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein family report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein family report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0623 ; @@ -214243,8 +216381,32 @@ probe designer for geneFISH and phageFISH.""" ; sc:softwareHelp ; sc:url "http://gene3d.biochem.ucl.ac.uk/Gene3D/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0203, + edam:topic_0625, + edam:topic_3168, + edam:topic_3912 ; + sc:citation , + "pmcid:PMC8558372", + "pubmed:34733322" ; + sc:description "An Integrated Genetic Database for Hearing Loss." ; + sc:featureList edam:operation_3196, + edam:operation_3225, + edam:operation_3226, + edam:operation_3463, + edam:operation_3766 ; + sc:isAccessibleForFree true ; + sc:name "Gene4HL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.genemed.tech/gene4hl/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -214264,7 +216426,7 @@ Rare variants identified from PD patients.""" ; sc:url "http://genemed.tech/gene4pd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0780, @@ -214287,32 +216449,8 @@ Rare variants identified from PD patients.""" ; sc:url "https://cran.r-project.org/package=geneHummus" ; biotools:primaryContact "Jose V. Die" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0091, - edam:topic_0130, - edam:topic_0203, - edam:topic_0621, - edam:topic_2885 ; - sc:citation ; - sc:description """Identification of Six novel missense single nucleotide polymorphisms in MAOA gene predisposing to aggressive behavior. Bioinformatics study. - -Cytoscape app : Help : Contact : Cite : © UToronto. - -GeneMANIA helps you predict the function of your favourite genes and gene sets. - -||| NAME (geneMANIA) SIMILAR TO (PUB. DIFFERENT) bio.tools/genemania (GeneMANIA). - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/genemania (GENEMANIA.ORG), bio.tools/genemania_plugin (GENEMANIA.ORG). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'pmut', 'provean', 'MAOA', 'VEP'""" ; - sc:featureList edam:operation_0331, - edam:operation_2454, - edam:operation_3196 ; - sc:name "geneMANIA_autogenerated" ; - sc:url "http://www.genemania.org/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -214334,7 +216472,7 @@ GeneMANIA helps you predict the function of your favourite genes and gene sets. biotools:primaryContact "Gene Array Analyzer Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0203, @@ -214351,7 +216489,7 @@ GeneMANIA helps you predict the function of your favourite genes and gene sets. sc:url "http://phet.colorado.edu/en/simulation/gene-expression-basics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -214371,7 +216509,7 @@ GeneMANIA helps you predict the function of your favourite genes and gene sets. biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -214393,8 +216531,35 @@ GeneMANIA helps you predict the function of your favourite genes and gene sets. sc:url "http://barcode.luhs.org/" ; biotools:primaryContact "Rafael A. Irizarry" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0625, + edam:topic_0780, + edam:topic_3170, + edam:topic_3172 ; + sc:citation ; + sc:description "Visualize and compare gene expression from standard transcriptome (RNA-Seq) data, cluster samples and genes, and infer enrichment of gene function in gene-sets." ; + sc:featureList edam:operation_0571, + edam:operation_2939, + edam:operation_3501, + edam:operation_3891, + edam:operation_3960 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Gene Expression Plots" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://usadellab.github.io/GeneExpressionPlots/#/data" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0622, @@ -214413,7 +216578,7 @@ GeneMANIA helps you predict the function of your favourite genes and gene sets. "Rémi Zallot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0654, @@ -214429,7 +216594,7 @@ GeneMANIA helps you predict the function of your favourite genes and gene sets. sc:url "http://phet.colorado.edu/en/simulation/gene-machine-lac-operon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -214454,7 +216619,7 @@ The Gene Ontology (GO) project is a major bioinformatics initiative to develop a sc:url "http://geneontology.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0102, @@ -214471,7 +216636,7 @@ The Gene Ontology (GO) project is a major bioinformatics initiative to develop a sc:url "http://bioinformatics.mdanderson.org/main/MicroarrayGOBrowser:Overview" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2815, @@ -214492,22 +216657,18 @@ The Gene Ontology (GO) project is a major bioinformatics initiative to develop a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ], + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1150" ; - sc:name "Disease ID" ; - sc:sameAs "http://edamontology.org/data_1150" ] ; + sc:additionalType "http://edamontology.org/data_1150" ; + sc:name "Disease ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1622" ; - sc:name "Disease report" ; - sc:sameAs "http://edamontology.org/data_1622" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1622" ; + sc:name "Disease report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_3473 ; @@ -214524,14 +216685,13 @@ The Gene Ontology (GO) project is a major bioinformatics initiative to develop a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1081" ; - sc:name "Genotype and phenotype annotation ID" ; - sc:sameAs "http://edamontology.org/data_1081" ] ; + sc:additionalType "http://edamontology.org/data_1081" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Genotype and phenotype annotation ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0625 ; @@ -214548,13 +216708,41 @@ The Gene Ontology (GO) project is a major bioinformatics initiative to develop a sc:url "http://genestacker.ugent.be/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "rose gras genes structure" ; sc:name "gene structure" ; sc:url "http://bio.tools/tool/signalp" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0203, + edam:topic_0602, + edam:topic_2229, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC9325790", + "pubmed:35882976" ; + sc:description "A web tool that autocorrects and updates for Excel misidentified gene names." ; + sc:featureList edam:operation_0224, + edam:operation_0310, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Gene Updater" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://kuanrongchan-date-to-gene-converter-date-gene-tool-oodr7h.streamlitapp.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053 ; @@ -214574,7 +216762,7 @@ The Gene Ontology (GO) project is a major bioinformatics initiative to develop a "Lei Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0634, @@ -214591,7 +216779,7 @@ The Gene Ontology (GO) project is a major bioinformatics initiative to develop a biotools:primaryContact "Tesfaye B Mersha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -214610,7 +216798,7 @@ The Gene Ontology (GO) project is a major bioinformatics initiative to develop a biotools:primaryContact "Arthur Wuster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3077, @@ -214631,7 +216819,7 @@ The Gene Ontology (GO) project is a major bioinformatics initiative to develop a biotools:primaryContact "Maria Chiara Pelleri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0632, edam:topic_2229, @@ -214650,22 +216838,22 @@ The Gene Ontology (GO) project is a major bioinformatics initiative to develop a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0157, @@ -214684,7 +216872,7 @@ The Gene Ontology (GO) project is a major bioinformatics initiative to develop a biotools:primaryContact "Evert van den Broek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -214704,7 +216892,7 @@ GeneBreaker is a tool which facilitates the creation of rare genetic disease sce sc:url "http://GeneBreaker.cmmt.ubc.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "Web service which allows users to search genes based on their locus tags." ; @@ -214715,7 +216903,7 @@ GeneBreaker is a tool which facilitates the creation of rare genetic disease sce sc:url "http://mango.ctegd.uga.edu/jkissingLab/SWS/ToxodbAnnotatedWebservices/SearchForGenes/TextIDsOrganism/GeneIds/GeneByLocusTag.sawadl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -214742,7 +216930,7 @@ GeneBreaker is a tool which facilitates the creation of rare genetic disease sce biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -214760,7 +216948,7 @@ GeneBreaker is a tool which facilitates the creation of rare genetic disease sce sc:url "http://genecat.mpg.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3489 ; @@ -214775,7 +216963,7 @@ GeneBreaker is a tool which facilitates the creation of rare genetic disease sce sc:url "http://www.bioinformatics.org/wrair/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3063, @@ -214794,7 +216982,7 @@ GeneBreaker is a tool which facilitates the creation of rare genetic disease sce biotools:primaryContact "R Kuiper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0203, @@ -214815,7 +217003,7 @@ GeneBreaker is a tool which facilitates the creation of rare genetic disease sce "Rumiana Nikolova" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -214832,7 +217020,7 @@ GeneBreaker is a tool which facilitates the creation of rare genetic disease sce biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -214853,8 +217041,56 @@ GeneBreaker is a tool which facilitates the creation of rare genetic disease sce sc:url "http://genecodis.cnb.csic.es/" ; biotools:primaryContact "GeneCoDis3 Support" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1048" ; + sc:name "Database ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_2640, + edam:topic_3053 ; + sc:citation , + "pubmed:34715518" ; + sc:description "A web application server for constructing cancer patient-specific gene correlation networks with prognostic gene pairs." ; + sc:featureList edam:operation_0337, + edam:operation_2454, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:name "GeneCoNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://geneconet.inha.ac.kr" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0218, + edam:topic_3172, + edam:topic_3474, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9073678", + "pubmed:35285473" ; + sc:description "GeneCup automatically extracts information from PubMed and NHGRI-EBI GWAS catalog on the relationship of any gene with a custom list of keywords hierarchically organized into an ontology." ; + sc:featureList edam:operation_0305, + edam:operation_0306, + edam:operation_3359 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GeneCup" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/hakangunturkun/GeneCup" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0607, @@ -214884,14 +217120,13 @@ GeneBreaker is a tool which facilitates the creation of rare genetic disease sce a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation ; @@ -214906,7 +217141,7 @@ GeneBreaker is a tool which facilitates the creation of rare genetic disease sce sc:url "http://www.genedb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3063, @@ -214926,7 +217161,7 @@ GeneBreaker is a tool which facilitates the creation of rare genetic disease sce sc:url "http://www.genedistiller.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0634, @@ -214944,7 +217179,7 @@ GeneBreaker is a tool which facilitates the creation of rare genetic disease sce biotools:primaryContact "Anagha Kulkarni" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0749, @@ -214967,7 +217202,7 @@ GeneDMRs is an R package to detect the differentially methylated regions based o sc:url "https://github.com/xiaowangCN/GeneDMRs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -214985,7 +217220,7 @@ Gene Circuit Explorer (GeneEx) is a systems-biology tool to visualize and simula sc:url "https://geneex.jax.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -215005,8 +217240,30 @@ Gene Circuit Explorer (GeneEx) is a systems-biology tool to visualize and simula sc:url "http://bioinformatics.upmc.edu/GE2/GEDA.html" ; biotools:primaryContact "James Lyons-Weiler" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2640, + edam:topic_3170, + edam:topic_3179, + edam:topic_3518 ; + sc:citation , + "pubmed:34902129" ; + sc:description "An R Package to Facilitate Data Reading from Gene Expression Omnibus (GEO)." ; + sc:featureList edam:operation_0314, + edam:operation_0315, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "geneExpressionFromGEO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/davidechicco/geneExpressionFromGEO" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -215028,22 +217285,20 @@ Gene Circuit Explorer (GeneEx) is a systems-biology tool to visualize and simula a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ], + sc:additionalType "http://edamontology.org/data_2295" ; + sc:name "Gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2731" ; - sc:name "Protein family ID (GeneFarm)" ; - sc:sameAs "http://edamontology.org/data_2731" ] ; + sc:additionalType "http://edamontology.org/data_2731" ; + sc:name "Protein family ID (GeneFarm)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein family report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0780 ; @@ -215054,7 +217309,7 @@ Gene Circuit Explorer (GeneEx) is a systems-biology tool to visualize and simula sc:url "http://urgi.versailles.inra.fr/Genefarm/index.htpl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -215071,7 +217326,7 @@ Gene Circuit Explorer (GeneEx) is a systems-biology tool to visualize and simula sc:url "http://digbio.missouri.edu/software/genefas/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -215085,7 +217340,7 @@ Gene Circuit Explorer (GeneEx) is a systems-biology tool to visualize and simula sc:url "https://sites.google.com/site/desheng619/download" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3321 ; @@ -215103,7 +217358,7 @@ Gene Circuit Explorer (GeneEx) is a systems-biology tool to visualize and simula biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -215119,7 +217374,7 @@ Gene Circuit Explorer (GeneEx) is a systems-biology tool to visualize and simula sc:url "http://people.virginia.edu/~wc9c/genefinder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -215141,22 +217396,20 @@ Gene Circuit Explorer (GeneEx) is a systems-biology tool to visualize and simula a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ], + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_1210" ; + sc:name "Nucleic acid sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1219" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1240" ; - sc:name "PCR primers" ; - sc:sameAs "http://edamontology.org/data_1240" ], + sc:additionalType "http://edamontology.org/data_1240" ; + sc:name "PCR primers" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API", "Web application" ; @@ -215180,7 +217433,7 @@ Gene Circuit Explorer (GeneEx) is a systems-biology tool to visualize and simula sc:url "http://bibiserv.cebitec.uni-bielefeld.de/genefisher2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3314, @@ -215195,7 +217448,7 @@ Gene Circuit Explorer (GeneEx) is a systems-biology tool to visualize and simula sc:url "http://pbga.pasteur.fr/GeneFizz/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_0749, @@ -215215,7 +217468,7 @@ GeneFriends employs a RNAseq based gene co-expression network for candidate gene sc:url "http://www.genefriends.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -215237,7 +217490,7 @@ GeneFriends employs a RNAseq based gene co-expression network for candidate gene "Markus Schroeder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -215257,7 +217510,7 @@ GeneFriends employs a RNAseq based gene co-expression network for candidate gene biotools:primaryContact "Zhenpeng Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -215277,7 +217530,7 @@ GeneFriends employs a RNAseq based gene co-expression network for candidate gene "Mathieu Emily" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0203, @@ -215300,7 +217553,7 @@ GeneFriends employs a RNAseq based gene co-expression network for candidate gene biotools:primaryContact "Neil Swainston" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -215318,7 +217571,7 @@ GeneFriends employs a RNAseq based gene co-expression network for candidate gene biotools:primaryContact "Erica M. Hartmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -215337,7 +217590,7 @@ GeneFriends employs a RNAseq based gene co-expression network for candidate gene sc:url "http://www.cgl.ucsf.edu/Research/genentech/genehub-gepis/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -215352,7 +217605,7 @@ GeneFriends employs a RNAseq based gene co-expression network for candidate gene sc:url "http://www.broadinstitute.org/ftp/distribution/software/genehunter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -215372,14 +217625,12 @@ GeneFriends employs a RNAseq based gene co-expression network for candidate gene a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -215410,7 +217661,7 @@ GeneFriends employs a RNAseq based gene co-expression network for candidate gene "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -215436,7 +217687,7 @@ GeneFriends employs a RNAseq based gene co-expression network for candidate gene biotools:primaryContact "Dr. Randy L. Jirtle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -215467,7 +217718,7 @@ GeneFriends employs a RNAseq based gene co-expression network for candidate gene biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3172, @@ -215486,7 +217737,7 @@ The NASA GeneLab Data Processing team and Analysis Working Group members have cr sc:url "https://genelab.nasa.gov/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3071, @@ -215502,8 +217753,27 @@ The NASA GeneLab Data Processing team and Analysis Working Group members have cr sc:softwareVersion "1.7" ; sc:url "http://research.nhgri.nih.gov/genelink/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_3169, + edam:topic_3170, + edam:topic_3474 ; + sc:citation , + "pubmed:35961023" ; + sc:description "A supervised GRN inference framework, GENELink, to predict potential interactions from scRNA-seq data and gene linkage topology." ; + sc:featureList edam:operation_0314, + edam:operation_2437, + edam:operation_2454 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GENELink" ; + sc:url "https://github.com/zpliulab/GENELink" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -215526,7 +217796,7 @@ The NASA GeneLab Data Processing team and Analysis Working Group members have cr biotools:primaryContact "GeneMANIA team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -215543,7 +217813,7 @@ The NASA GeneLab Data Processing team and Analysis Working Group members have cr biotools:primaryContact "Gary Bader" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0114 ; @@ -215558,7 +217828,7 @@ The NASA GeneLab Data Processing team and Analysis Working Group members have cr sc:url "http://exon.gatech.edu/GeneMark/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3174, @@ -215576,7 +217846,7 @@ Experiments for ProtHint and GeneMark-EP/EP+ projects.""" ; sc:url "http://topaz.gatech.edu/GeneMark/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3174, @@ -215597,8 +217867,31 @@ Pipeline integrates three algorithms from GeneMark gene finder family, MetaGeneM sc:name "GeneMark-HM" ; sc:url "http://exon.gatech.edu/GeneMark/hmmchoice.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0102, + edam:topic_2229, + edam:topic_3053, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8577352", + "pubmed:34764987" ; + sc:description "A Database and User Interface for scRNA-seq Marker Genes." ; + sc:featureList edam:operation_2422, + edam:operation_2454, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GeneMarkeR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://shiny.ph.iu.edu/GeneMarkeR/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0622, @@ -215614,7 +217907,7 @@ Pipeline integrates three algorithms from GeneMark gene finder family, MetaGeneM sc:url "https://www.genematcher.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -215633,7 +217926,7 @@ GeneMates: an R package identifying horizontal gene co-transfer between bacteria sc:url "http://github.com/wanyuac/GeneMates" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -215651,7 +217944,7 @@ GeneMates: an R package identifying horizontal gene co-transfer between bacteria biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -215667,7 +217960,7 @@ GeneMates: an R package identifying horizontal gene co-transfer between bacteria sc:url "http://strimmerlab.org/software/genenet/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0602, @@ -215685,7 +217978,7 @@ GeneMates: an R package identifying horizontal gene co-transfer between bacteria sc:url "http://avigailtaylor.github.io/gntat14/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -215699,7 +217992,7 @@ GeneMates: an R package identifying horizontal gene co-transfer between bacteria sc:url "http://bclab.inha.ac.kr/GeneNetFinder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0602, @@ -215715,7 +218008,7 @@ GeneMates: an R package identifying horizontal gene co-transfer between bacteria sc:url "http://fgomezvela.github.io/GeneNetVal/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3055, @@ -215734,7 +218027,7 @@ GeneNetwork displays the additive values on the far right of many trait QTL maps sc:url "http://genenetwork.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -215754,7 +218047,7 @@ GeneNetwork displays the additive values on the far right of many trait QTL maps biotools:primaryContact "Jianhong Ou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053 ; @@ -215772,7 +218065,7 @@ GeneNetwork displays the additive values on the far right of many trait QTL maps biotools:primaryContact "Mount Sinai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -215790,7 +218083,7 @@ GeneNetwork displays the additive values on the far right of many trait QTL maps sc:url "http://www.motorprotein.de/genepainter.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -215807,7 +218100,7 @@ GeneNetwork displays the additive values on the far right of many trait QTL maps sc:url "http://www.genepalette.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -215820,7 +218113,7 @@ GeneNetwork displays the additive values on the far right of many trait QTL maps sc:url "https://genepanel.iobio.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -215834,7 +218127,7 @@ GeneNetwork displays the additive values on the far right of many trait QTL maps sc:url "http://stormo.wustl.edu/src/GenParser/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -215855,14 +218148,14 @@ GeneNetwork displays the additive values on the far right of many trait QTL maps a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3162" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workbench" ; sc:applicationSubCategory edam:topic_0085, @@ -215886,7 +218179,7 @@ GeneNetwork displays the additive values on the far right of many trait QTL maps sc:url "http://www.broad.mit.edu/cancer/software/genepattern/download/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0203, @@ -215903,7 +218196,7 @@ GeneNetwork displays the additive values on the far right of many trait QTL maps sc:url "http://lcsb-portal.uni.lu/bioinformatics/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0749, @@ -215925,7 +218218,7 @@ GenEpi is a package to uncover epistasis associated with phenotypes by a machine sc:url "https://github.com/Chester75321/GenEpi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3299 ; @@ -215942,8 +218235,32 @@ GenEpi is a package to uncover epistasis associated with phenotypes by a machine sc:url "http://bioconductor.org/packages/release/bioc/html/geneplast.html" ; biotools:primaryContact "Mauro Castro" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0634, + edam:topic_2229, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9252732", + "pubmed:35580053" ; + sc:description "A web-server for gene discovery using network-based machine learning." ; + sc:featureList edam:operation_2454, + edam:operation_3925, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "GenePlexus" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.geneplexus.net/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -215961,7 +218278,7 @@ GenEpi is a package to uncover epistasis associated with phenotypes by a machine biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -215981,14 +218298,14 @@ GenEpi is a package to uncover epistasis associated with phenotypes by a machine a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3011" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Convert genePred file to a bed file" ; sc:featureList edam:operation_3267 ; sc:name "genepredtobed" ; @@ -215997,14 +218314,12 @@ GenEpi is a package to uncover epistasis associated with phenotypes by a machine a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:name "Sequence coordinates" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:description "Convert genePred table or file to gtf" ; sc:featureList edam:operation_0260 ; @@ -216013,7 +218328,7 @@ GenEpi is a package to uncover epistasis associated with phenotypes by a machine sc:url "https://github.com/ENCODE-DCC/kentUtils/blob/master/src/utils/genePredToBed/genePredToBed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3170 ; @@ -216032,14 +218347,14 @@ GenEpi is a package to uncover epistasis associated with phenotypes by a machine a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3110" ; - sc:name "Raw microarray data" ; - sc:sameAs "http://edamontology.org/data_3110" ] ; + sc:additionalType "http://edamontology.org/data_3110" ; + sc:encodingFormat "http://edamontology.org/format_1638" ; + sc:name "Raw microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -216057,7 +218372,7 @@ GenEpi is a package to uncover epistasis associated with phenotypes by a machine biotools:primaryContact "Thomas Sicheritz Pontén" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0621, @@ -216076,7 +218391,7 @@ GeNePy3D is an python library for quantitative geometry, in particular in the co sc:url "https://genepy3d.gitlab.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -216090,7 +218405,7 @@ GeNePy3D is an python library for quantitative geometry, in particular in the co sc:url "http://www.cosbi.eu/research/prototypes/gener" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3307, @@ -216106,7 +218421,7 @@ GeNePy3D is an python library for quantitative geometry, in particular in the co biotools:primaryContact "Jacob Shin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -216122,7 +218437,7 @@ GeNePy3D is an python library for quantitative geometry, in particular in the co biotools:primaryContact "Umed Temurshoev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -216139,7 +218454,7 @@ GeNePy3D is an python library for quantitative geometry, in particular in the co biotools:primaryContact "E. Cheynet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3053 ; @@ -216155,7 +218470,7 @@ GeNePy3D is an python library for quantitative geometry, in particular in the co biotools:primaryContact "Iddo Weiner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:description "“generate_oriented_clusters” is a program that generates single-linkage clusters of loci (where a locus can be on a chromosome, transcript, etc.)." ; @@ -216165,7 +218480,7 @@ GeNePy3D is an python library for quantitative geometry, in particular in the co sc:url "http://www.mirz.unibas.ch/software.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053 ; @@ -216184,10 +218499,9 @@ GeNePy3D is an python library for quantitative geometry, in particular in the co a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -216204,7 +218518,7 @@ GeNePy3D is an python library for quantitative geometry, in particular in the co biotools:primaryContact "Thomas Mailund" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -216224,7 +218538,7 @@ GeNePy3D is an python library for quantitative geometry, in particular in the co biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0203, @@ -216242,7 +218556,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction sc:url "http://github.com/railorena/geneRFinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3300, @@ -216258,7 +218572,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction biotools:primaryContact "MathWorks SimBiology Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -216278,7 +218592,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction biotools:primaryContact "Charles Berry" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0623, @@ -216294,7 +218608,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction sc:url "http://www.maayanlab.net/G2W/create_wordcloud.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157 ; @@ -216307,7 +218621,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction sc:url "http://mango.ctegd.uga.edu/jkissingLab/SWS/ToxodbAnnotatedWebservices/SearchForGenes/Proteinfeatures/epitopepresence/GenesWithEpitopes.sawadl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0157 ; sc:description "Web service that retrieves all genes whose protein product has an isoelectric point in a range that user specify." ; @@ -216321,7 +218635,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction sc:url "http://mango.ctegd.uga.edu/jkissingLab/contact.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157 ; @@ -216334,7 +218648,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction sc:url "http://mango.ctegd.uga.edu/jkissingLab/SWS/ToxodbAnnotatedWebservices/SearchForGenes/Proteinattribute/molecularweight/GeneByMolecularWeight.sawadl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "A web service which allows users to search genes based on an organism or a list of organisms." ; @@ -216345,7 +218659,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction sc:url "http://mango.ctegd.uga.edu/jkissingLab/SWS/ToxodbAnnotatedWebservices/SearchForGenes/TextIDsOrganism/Organism/GenesByTaxon.sawadl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157 ; @@ -216358,7 +218672,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction sc:url "http://mango.ctegd.uga.edu/jkissingLab/SWS/ToxodbAnnotatedWebservices/SearchForGenes/Proteinfeatures/predictedsignalpeptide/GenesWithSignalPeptide.sawadl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -216370,7 +218684,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction sc:url "http://mango.ctegd.uga.edu/jkissingLab/SWS/ToxodbAnnotatedWebservices/SearchForGenes/Proteinfeatures/transmembranedomaincount/GenesByTransmembraneDomains.sawadl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2533 ; @@ -216383,7 +218697,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction sc:url "http://dna.leeds.ac.uk/genescreen/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2815, @@ -216403,7 +218717,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053 ; @@ -216421,7 +218735,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction biotools:primaryContact "Weiliang Qiu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -216441,7 +218755,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction biotools:primaryContact "Martin Slawski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0621, @@ -216465,7 +218779,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623, edam:topic_3053, @@ -216486,7 +218800,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction biotools:primaryContact "Anil S Thanki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -216509,7 +218823,7 @@ The GeneRFinder-Benchmark is a comprehensive benchmark data for gene prediction biotools:primaryContact "GeneSet2miRNA Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -216531,7 +218845,7 @@ Gene-set analysis (GSA) tools aim to provide biological context by identifying g sc:url "https://github.com/TranslationalBioinformaticsUnit/GeneSetCluster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602 ; @@ -216547,7 +218861,7 @@ Gene-set analysis (GSA) tools aim to provide biological context by identifying g sc:url "http://hcil.snu.ac.kr/research/geneshelf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -216571,7 +218885,7 @@ Gene-set analysis (GSA) tools aim to provide biological context by identifying g biotools:primaryContact "John Quackenbush" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -216593,7 +218907,7 @@ Gene-set analysis (GSA) tools aim to provide biological context by identifying g biotools:primaryContact "Lukasz Kozlowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3056 ; @@ -216611,7 +218925,7 @@ Gene-set analysis (GSA) tools aim to provide biological context by identifying g biotools:primaryContact "Matthew P. Conomos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3474, @@ -216626,8 +218940,28 @@ Gene-set analysis (GSA) tools aim to provide biological context by identifying g sc:softwareHelp ; sc:url "http://genome.tugraz.at/genesisclient/genesisclient_description.shtml" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_3444, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9082496", + "pubmed:35050622" ; + sc:description "GENESIS (GENEration of Supersequences In Silico) systematically generates pulse programs for arbitrary NOAH supersequences compatible with Bruker spectrometers." ; + sc:featureList edam:operation_1812, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GENESIS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://nmr-genesis.co.uk" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "Collates data from bioinformatics resources and provides automated gene-centric annotations." ; @@ -216642,14 +218976,13 @@ Gene-set analysis (GSA) tools aim to provide biological context by identifying g a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2805" ; - sc:name "GeneSNP ID" ; - sc:sameAs "http://edamontology.org/data_2805" ] ; + sc:additionalType "http://edamontology.org/data_2805" ; + sc:name "GeneSNP ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2815, @@ -216665,7 +218998,7 @@ Gene-set analysis (GSA) tools aim to provide biological context by identifying g biotools:primaryContact "Colleen Davis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0780, @@ -216681,7 +219014,7 @@ Gene-set analysis (GSA) tools aim to provide biological context by identifying g biotools:primaryContact "GeneSplicer team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654 ; @@ -216696,7 +219029,7 @@ Gene-set analysis (GSA) tools aim to provide biological context by identifying g "Yuzhen Ye" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3321 ; @@ -216708,7 +219041,7 @@ Gene-set analysis (GSA) tools aim to provide biological context by identifying g sc:url "http://bioserver-3.bioacademy.gr/Bioserver/GeneStoryTeller/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -216727,7 +219060,7 @@ Gene-set analysis (GSA) tools aim to provide biological context by identifying g biotools:primaryContact "Beth Signal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation "pubmed:22826540" ; @@ -216747,7 +219080,7 @@ Gene-set analysis (GSA) tools aim to provide biological context by identifying g biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -216768,7 +219101,7 @@ Gene-set analysis (GSA) tools aim to provide biological context by identifying g biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -216787,7 +219120,7 @@ GeneTEFlow is a reproducible and platform-independent workflow for the comprehen sc:url "https://github.com/zhongw2/GeneTEFlow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -216807,7 +219140,7 @@ GeneTerpret: a new way to interpret and visualize genomic variants dataGeneTerpr sc:url "https://geneterpret.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053, @@ -216827,8 +219160,30 @@ GeneTerpret: a new way to interpret and visualize genomic variants dataGeneTerpr sc:url "http://www.geneclinics.org/" ; biotools:primaryContact "Roberta A. Pagon" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_2640, + edam:topic_3063, + edam:topic_3077 ; + sc:citation , + "pmcid:PMC8476929", + "pubmed:34595403" ; + sc:description "GENomics Report TEXt mining R package and Shiny application designed to capture real-world clinico-genomic data." ; + sc:featureList edam:operation_0306, + edam:operation_1812, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GENETEX" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/TheMillerLab/genetex" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0623 ; @@ -216842,8 +219197,25 @@ GeneTerpret: a new way to interpret and visualize genomic variants dataGeneTerpr sc:softwareHelp ; sc:url "http://zti.polsl.pl/dmrozek/science/sgb/sgb.htm" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_3053, + edam:topic_3384, + edam:topic_3474 ; + sc:citation , + "pubmed:34506278" ; + sc:description "Automatically Designed Deep Networks for Retinal Vessel Segmentation Using a Genetic Algorithm." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Genetic U-Net" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/96jhwei/Genetic-U-Net" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053 ; @@ -216861,7 +219233,7 @@ GeneTerpret: a new way to interpret and visualize genomic variants dataGeneTerpr biotools:primaryContact "The R Genetics Project" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0084 ; @@ -216879,7 +219251,7 @@ GeneTerpret: a new way to interpret and visualize genomic variants dataGeneTerpr biotools:primaryContact "David Henderson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -216894,16 +219266,39 @@ GeneTerpret: a new way to interpret and visualize genomic variants dataGeneTerpr sc:softwareHelp ; sc:url "http://dna2.leeds.ac.uk:8080/expression/index.jsp" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1904" ; + sc:name "Locus ID (EntrezGene)" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_3174, + edam:topic_3342 ; + sc:citation , + "pmcid:PMC9332626", + "pubmed:35892968" ; + sc:description "A web application to assist with gene identifiers for the non-bioinformatics-savvy scientist." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:name "GeneToList" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.genetolist.com/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -216922,18 +219317,17 @@ GeneTerpret: a new way to interpret and visualize genomic variants dataGeneTerpr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ], + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_3391 ; @@ -216953,7 +219347,7 @@ GeneTerpret: a new way to interpret and visualize genomic variants dataGeneTerpr biotools:primaryContact "Prof. Dr. Hans-Peter Lenhof" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0208, @@ -216970,7 +219364,7 @@ Reranked gene lists. Our final product is the set of top genes defined by (Def. sc:url "https://sbl.inria.fr/doc/Genetrank-user-manual.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -216987,7 +219381,7 @@ Reranked gene lists. Our final product is the set of top genes defined by (Def. sc:url "http://www.stats.ox.ac.uk/~griff/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -217006,7 +219400,7 @@ Multilevel homolog-identification pipeline.""" ; sc:url "https://chenym1.github.io/genetribe/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -217025,14 +219419,14 @@ GENEVA allows you to identify RNA-sequencing datasets from the Gene Expression O a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2085" ; - sc:name "Structure report" ; - sc:sameAs "http://edamontology.org/data_2085" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2085" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -217059,14 +219453,13 @@ GENEVA allows you to identify RNA-sequencing datasets from the Gene Expression O a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -217088,7 +219481,7 @@ GENEVA allows you to identify RNA-sequencing datasets from the Gene Expression O biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -217109,7 +219502,7 @@ GENEVA allows you to identify RNA-sequencing datasets from the Gene Expression O biotools:primaryContact "GeneView Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -217122,7 +219515,7 @@ GENEVA allows you to identify RNA-sequencing datasets from the Gene Expression O sc:url "http://www.wobblebase.com/#" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -217145,27 +219538,25 @@ GENEVA allows you to identify RNA-sequencing datasets from the Gene Expression O a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Ewan Birney", - "Web Production" ; - sc:citation ; + "Job Dispatcher" ; + sc:citation , + ; sc:description "Compare a protein sequence to a genomic DNA sequence, allowing for introns and frameshifting errors." ; sc:featureList edam:operation_0491, edam:operation_0495 ; - sc:name "GeneWise" ; + sc:name "GeneWise (EBI)" ; sc:operatingSystem "Linux", "Mac", "Windows" ; @@ -217174,10 +219565,10 @@ GENEVA allows you to identify RNA-sequencing datasets from the Gene Expression O ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/psa/genewise/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3519 ; sc:description "GenEx is a popular software for qPCR data processing and analysis. Built in a modular fashion GenEx provides a multitude of functionalities for the qPCR community, ranging from basic data editing and management to advanced cutting-edge data analysis." ; @@ -217193,7 +219584,7 @@ GENEVA allows you to identify RNA-sequencing datasets from the Gene Expression O sc:url "http://www.gene-quantification.de/genex.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, edam:topic_3489 ; @@ -217211,7 +219602,7 @@ Gene expression (GenEx) semantic model.""" ; sc:url "https://biosoda.github.io/genex/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0160, @@ -217236,7 +219627,7 @@ Gene expression (GenEx) semantic model.""" ; biotools:primaryContact "Martin Modrák" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169 ; @@ -217254,7 +219645,7 @@ Gene expression (GenEx) semantic model.""" ; biotools:primaryContact "Bohdan Khomtchouk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -217277,7 +219668,7 @@ Gene expression (GenEx) semantic model.""" ; biotools:primaryContact "Bill Majoros" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -217290,7 +219681,7 @@ Gene expression (GenEx) semantic model.""" ; sc:url "https://geniac.readthedocs.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3473 ; sc:citation ; @@ -217305,26 +219696,21 @@ Gene expression (GenEx) semantic model.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1088" ; - sc:name "Article ID" ; - sc:sameAs "http://edamontology.org/data_1088" ], + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ], + sc:additionalType "http://edamontology.org/data_1088" ; + sc:name "Article ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1869" ; - sc:name "Organism identifier" ; - sc:sameAs "http://edamontology.org/data_1869" ] ; + sc:additionalType "http://edamontology.org/data_1869" ; + sc:name "Organism identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3473 ; sc:citation ; @@ -217339,7 +219725,7 @@ Gene expression (GenEx) semantic model.""" ; biotools:primaryContact "Jean Fred Fontaine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:description "An Open Source MPEG-G Codec to compress and decompress FASTQ-files." ; sc:isAccessibleForFree true ; @@ -217347,7 +219733,7 @@ Gene expression (GenEx) semantic model.""" ; sc:url "https://github.com/mitogen/genie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -217364,7 +219750,7 @@ Gene expression (GenEx) semantic model.""" ; sc:url "https://github.com/vahuynh/GENIE3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -217383,7 +219769,7 @@ Gene expression (GenEx) semantic model.""" ; biotools:primaryContact "Jean Fred Fontaine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -217407,7 +219793,7 @@ Gene expression (GenEx) semantic model.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056, edam:topic_3293 ; @@ -217426,7 +219812,7 @@ Gene expression (GenEx) semantic model.""" ; biotools:primaryContact "Héloïse Gauvin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -217447,7 +219833,7 @@ Gene expression (GenEx) semantic model.""" ; biotools:primaryContact "Bruce R. Conklin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Convert an AVS file into a MATLAB 3D double array ready for visualisation. AVS is a file format used by many CFD packages (e.g. Fluent). This tool will import an AVS file into a MATLAB 3D double array ready for viewing the mesh and velocities with mesh, surf, slice or the excellent Slice-O-Matic." ; sc:isAccessibleForFree true ; @@ -217460,7 +219846,7 @@ Gene expression (GenEx) semantic model.""" ; biotools:primaryContact "Alex Lomas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -217481,7 +219867,7 @@ Gene expression (GenEx) semantic model.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3474, @@ -217499,16 +219885,39 @@ Gene expression (GenEx) semantic model.""" ; sc:url "http://genn-team.github.io/genn/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0625, + edam:topic_3056, + edam:topic_3305, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8448759", + "pubmed:34535759" ; + sc:description "GenNet is a command line tool that can be used to create neural networks for (mainly) genetics. GenNet gives the opportunity to let you decide what should be connected to what. Any information that groups knowledge can therefore be used to define connections in the network. For example, gene annotations can be used to group genetic variants into genes, as seen in the first layer of the image. This creates meaningful and interpretable connections. When the network is trained the network learns which connections are important for the predicted phenotype and assigns these connections a higher weight." ; + sc:featureList edam:operation_0417, + edam:operation_3196, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "GenNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ArnovanHilten/GenNet/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_1921" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3299 ; sc:citation , @@ -217525,7 +219934,7 @@ Gene expression (GenEx) semantic model.""" ; biotools:primaryContact "Anna Kedzierska" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0625, @@ -217543,7 +219952,7 @@ Gene expression (GenEx) semantic model.""" ; biotools:primaryContact "geno 2 pheno team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -217563,7 +219972,7 @@ Gene expression (GenEx) semantic model.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0219, @@ -217579,7 +219988,7 @@ Gene expression (GenEx) semantic model.""" ; sc:url "http://genocanyon.med.yale.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -217599,7 +220008,7 @@ Gene expression (GenEx) semantic model.""" ; biotools:primaryContact "Wei Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053, @@ -217615,7 +220024,7 @@ Gene expression (GenEx) semantic model.""" ; sc:url "http://genetics.cs.ucla.edu/crypto/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0203, @@ -217632,7 +220041,7 @@ Gene expression (GenEx) semantic model.""" ; sc:url "http://genie.weizmann.ac.il/pubs/GenoExp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169 ; @@ -217650,7 +220059,7 @@ Gene expression (GenEx) semantic model.""" ; biotools:primaryContact "Georg Stricker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0625, @@ -217665,30 +220074,27 @@ Gene expression (GenEx) semantic model.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2739" ; - sc:name "Gene ID (Genolist)" ; - sc:sameAs "http://edamontology.org/data_2739" ], + sc:additionalType "http://edamontology.org/data_2739" ; + sc:name "Gene ID (Genolist)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1868" ; - sc:name "Taxon" ; - sc:sameAs "http://edamontology.org/data_1868" ] ; + sc:additionalType "http://edamontology.org/data_1868" ; + sc:name "Taxon" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0797 ; @@ -217705,7 +220111,7 @@ Gene expression (GenEx) semantic model.""" ; sc:url "http://genolist.pasteur.fr/GenoList" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3518 ; sc:description "Genom 2005 is a software to analyse microarrays or other experiment data. It has build in function predictions, pathway analysis, GO trees and a lot more." ; @@ -217719,14 +220125,14 @@ Gene expression (GenEx) semantic model.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -217747,7 +220153,7 @@ Gene expression (GenEx) semantic model.""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2885, @@ -217768,7 +220174,7 @@ Gene expression (GenEx) semantic model.""" ; "GeneGrid Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0769, @@ -217787,7 +220193,7 @@ Tools for sampling viral genomes across time of isolation, location of isolation sc:url "https://caporasolab.us/genome-sampler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3174, @@ -217804,7 +220210,7 @@ Tools for sampling viral genomes across time of isolation, location of isolation sc:url "https://github.com/will-rowe/genome-sketching" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053, @@ -217817,8 +220223,25 @@ Tools for sampling viral genomes across time of isolation, location of isolation sc:softwareHelp ; sc:url "http://statgen.ucr.edu/software.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0196 ; + sc:citation , + "pubmed:35696018" ; + sc:description "Genome2OR is a genetic annotation tool based on HMMER, MAFFT and CD-HIT." ; + sc:featureList edam:operation_0226, + edam:operation_0362 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Genome2OR" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/ToHanwei/Genome2OR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0798 ; @@ -217837,7 +220260,7 @@ Tools for sampling viral genomes across time of isolation, location of isolation biotools:primaryContact "Alexandru Al. Ecovoiu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -217855,7 +220278,7 @@ Tools for sampling viral genomes across time of isolation, location of isolation sc:url "http://sandberg.cmb.ki.se/genomeclass/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2259 ; @@ -217876,7 +220299,7 @@ Tools for sampling viral genomes across time of isolation, location of isolation biotools:primaryContact "babelomics@cipf.es (Francisco García)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -217894,7 +220317,7 @@ Tools for sampling viral genomes across time of isolation, location of isolation sc:url "http://www.g-language.org/GenomeProjector/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:description "Genome Search Toolkit is a set of scripts for managing massive local homology searches." ; @@ -217906,7 +220329,7 @@ Tools for sampling viral genomes across time of isolation, location of isolation sc:url "http://kirill-kryukov.com/study/tools/gst/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3175 ; @@ -217921,7 +220344,7 @@ Tools for sampling viral genomes across time of isolation, location of isolation sc:url "http://software.broadinstitute.org/software/genomestrip/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -217935,7 +220358,7 @@ Tools for sampling viral genomes across time of isolation, location of isolation sc:url "http://veda.cs.uiuc.edu/gs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0152, @@ -217962,22 +220385,19 @@ Unique gene connection information will be yielded as a result file.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0089, @@ -217998,7 +220418,7 @@ Unique gene connection information will be yielded as a result file.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0199, @@ -218015,8 +220435,20 @@ Unique gene connection information will be yielded as a result file.""" ; sc:url "https://github.com/gaitat/GenomeUPlot" ; biotools:primaryContact "George Vasmatzis" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Suite" ; + sc:applicationSubCategory edam:topic_0622 ; + sc:description "Genome Alignment Tools are tools for improving the sensitivity and specificity of genome alignments." ; + sc:featureList edam:operation_0292, + edam:operation_0491 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Genome Alignment Tools" ; + sc:url "https://github.com/hillerlab/GenomeAlignmentTools" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -218039,7 +220471,7 @@ Unique gene connection information will be yielded as a result file.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -218063,14 +220495,14 @@ singularity container and workflow management.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Genotype/phenotype report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0625 ; @@ -218089,7 +220521,7 @@ singularity container and workflow management.""" ; biotools:primaryContact "Ulrike Hardeland" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0654, @@ -218105,7 +220537,7 @@ singularity container and workflow management.""" ; sc:url "https://github.com/brinkmanlab/GenomeD3Plot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071 ; @@ -218121,7 +220553,7 @@ singularity container and workflow management.""" ; biotools:primaryContact "Jay Hesselberth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0102, @@ -218138,7 +220570,7 @@ singularity container and workflow management.""" ; "Oana Ursu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -218157,7 +220589,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; sc:url "https://github.com/GenomeDiver/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -218176,14 +220608,14 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0987" ; - sc:name "Chromosome name" ; - sc:sameAs "http://edamontology.org/data_0987" ] ; + sc:additionalType "http://edamontology.org/data_0987" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Chromosome name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0987" ; - sc:name "Chromosome name" ; - sc:sameAs "http://edamontology.org/data_0987" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0987" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Chromosome name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -218202,7 +220634,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -218220,7 +220652,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "Julien Gagneur" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3577 ; @@ -218236,7 +220668,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "GenomeJack Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622 ; @@ -218250,7 +220682,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "Korbinian Schneeberger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0632, @@ -218267,7 +220699,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; sc:url "http://bioinfo.ut.ee/?page_id=167" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -218288,7 +220720,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "Feedback Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -218305,13 +220737,13 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; "Matthias Christen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "The goal is to have a simple and straightforward way to download and use genomic sequences. Currently, genomepy supports UCSC, Ensembl and NCBI." ; sc:name "genomepy" ; sc:url "https://github.com/vanheeringen-lab/genomepy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:description "Genomer is command line glue for genome projects. It simplifies the small but tedious tasks required when finishing a genome. Genomer makes it easy to reorganise contigs in a genome, map annotations on to the genome and generate the files required to submit a genome." ; @@ -218324,14 +220756,13 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2751" ; - sc:name "GenomeReviews ID" ; - sc:sameAs "http://edamontology.org/data_2751" ] ; + sc:additionalType "http://edamontology.org/data_2751" ; + sc:name "GenomeReviews ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2711" ; - sc:name "Genome report" ; - sc:sameAs "http://edamontology.org/data_2711" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2711" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Genome report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation ; @@ -218342,46 +220773,36 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_1027" ; + sc:name "Gene ID (NCBI)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1027" ; - sc:name "Gene ID (NCBI)" ; - sc:sameAs "http://edamontology.org/data_1027" ], + sc:additionalType "http://edamontology.org/data_3275" ; + sc:name "Phenotype name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2118" ; - sc:name "Person identifier" ; - sc:sameAs "http://edamontology.org/data_2118" ], + sc:additionalType "http://edamontology.org/data_2118" ; + sc:name "Person identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_1089" ; + sc:name "FlyBase ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3275" ; - sc:name "Phenotype name" ; - sc:sameAs "http://edamontology.org/data_3275" ], + sc:additionalType "http://edamontology.org/data_1187" ; + sc:name "PubMed ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1187" ; - sc:name "PubMed ID" ; - sc:sameAs "http://edamontology.org/data_1187" ], + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1089" ; - sc:name "FlyBase ID" ; - sc:sameAs "http://edamontology.org/data_1089" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3523 ; sc:author "Benedikt Rauscher", @@ -218406,18 +220827,18 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ] ; + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "File name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2711" ; - sc:name "Genome report" ; - sc:sameAs "http://edamontology.org/data_2711" ], + sc:additionalType "http://edamontology.org/data_2711" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Genome report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3181" ; - sc:name "Sequence assembly report" ; - sc:sameAs "http://edamontology.org/data_3181" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3181" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence assembly report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -218435,7 +220856,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "Chris Stubben" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0114, @@ -218451,7 +220872,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "Chris Burge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3516 ; sc:description "Visualize and analyze data generated on Illumina array platforms with GenomeStudio Software. This solution supports the genotyping analysis of microarray data. Performance-optimized tools and a graphical interface enable you to convert data into meaningful results." ; @@ -218464,7 +220885,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; sc:url "http://www.illumina.com/techniques/microarrays/array-data-analysis-experimental-design/genomestudio.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3174 ; @@ -218483,14 +220904,12 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1240" ; - sc:name "PCR primers" ; - sc:sameAs "http://edamontology.org/data_1240" ] ; + sc:additionalType "http://edamontology.org/data_1240" ; + sc:name "PCR primers" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -218508,7 +220927,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "Reidar Andreson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0114 ; @@ -218525,7 +220944,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "Gordon Gremme" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3511 ; @@ -218542,7 +220961,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "GenomeTools Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -218562,7 +220981,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "Anil Goud Jegga" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation , @@ -218581,7 +221000,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; sc:url "http://genometricorr.sourceforge.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -218598,7 +221017,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; sc:url "http://genomeview.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0654 ; @@ -218617,10 +221036,9 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1274" ; - sc:name "Map" ; - sc:sameAs "http://edamontology.org/data_1274" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1274" ; + sc:name "Map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622 ; sc:description "Genomic Annotation in Livestock for positional candidate LOci (GALLO) is an R package developed for the accurate annotation of genes and quantitative trait loci (QTLs) located in regions identified in common genomic analyses performed in livestock, such as Genome-Wide Association Studies and transcriptomics using RNA-Sequencing. Moreover, GALLO allows the graphical visualization of gene and QTL annotation results, data comparison among different grouping factors (e.g., methods, breeds, tissues, statistical models, studies, etc.), and QTL enrichment in different livestock species including cattle, pigs, sheep, and chickens, etc." ; sc:featureList edam:operation_0337 ; @@ -218629,7 +221047,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; sc:url "https://cran.r-project.org/web/packages/GALLO/vignettes/GALLO.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0204, @@ -218651,22 +221069,22 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ], + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Feature table" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0867" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -218688,7 +221106,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102 ; sc:description "The GenomicConsensus package provides the variantCaller tool, which allows you to apply the Quiver or Arrow algorithm to mapped PacBio reads to get consensus and variant calls." ; @@ -218700,7 +221118,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "Pacific Biosciences" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "Programmatically access the NIH / NCI Genomic Data Commons RESTful service." ; @@ -218715,36 +221133,58 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/GenomicDataCommons.html" ; biotools:primaryContact "Davis Sean" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_3169, + edam:topic_3173 ; + sc:citation , + "pmcid:PMC9003978", + "pubmed:35413804" ; + sc:description "An R package that provides functions for calculating and visualizing a variety of statistics for a collection of genomic ranges." ; + sc:featureList edam:operation_0337, + edam:operation_3096, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "BSD-2-Clause" ; + sc:name "GenomicDistributions" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/databio/GenomicDistributions" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ], + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "File name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ], + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Feature table" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene transcript report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1017" ; - sc:name "Sequence range" ; - sc:sameAs "http://edamontology.org/data_1017" ], + sc:additionalType "http://edamontology.org/data_1017" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence range" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ], + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene transcript report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -218767,7 +221207,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -218788,22 +221228,22 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1017" ; - sc:name "Sequence range" ; - sc:sameAs "http://edamontology.org/data_1017" ], + sc:additionalType "http://edamontology.org/data_1017" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence range" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Feature table" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0128, @@ -218825,14 +221265,14 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1017" ; - sc:name "Sequence range" ; - sc:sameAs "http://edamontology.org/data_1017" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1017" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence range" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -218854,7 +221294,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation , @@ -218878,7 +221318,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3168 ; @@ -218896,7 +221336,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "Robert Castelo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3170, @@ -218915,7 +221355,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; sc:url "https://github.com/shbrief/GenomicSuperSignaturePaper/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3169, @@ -218933,7 +221373,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "A. Tsirigo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -218950,7 +221390,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "Peter Hickey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -218971,7 +221411,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; biotools:primaryContact "James Bullard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -218987,7 +221427,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; sc:url "https://github.com/uci-cbcl/genomix" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3517 ; @@ -219002,7 +221442,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; sc:url "http://www.ikmb.uni-kiel.de/resources/download-tools/software/genomizer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -219017,7 +221457,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; sc:url "https://github.com/ken0-1n/Genomon-ITDetector" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -219035,14 +221475,13 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Genotype/phenotype report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_2259, @@ -219060,7 +221499,7 @@ Genomic and Phenotypic filters for the Genome Diver project.""" ; sc:url "http://ieu-genonets.uzh.ch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -219081,7 +221520,7 @@ GenoPheno-CatalogShiny is an R Shiny App developed to provide a dynamic on-line sc:url "https://avillachlab.shinyapps.io/genophenocatalog/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0769, @@ -219096,7 +221535,7 @@ GenoPheno-CatalogShiny is an R Shiny App developed to provide a dynamic on-line sc:url "https://play.google.com/store/apps/details?id=com.mobilegenomics.genopo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -219116,7 +221555,7 @@ Genoppi is an open-source software for performing quality control and analyzing sc:url "http://github.com/lagelab/Genoppi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation "pubmed:23042248" ; @@ -219131,7 +221570,7 @@ Genoppi is an open-source software for performing quality control and analyzing biotools:primaryContact "Jean Peccoud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, @@ -219148,7 +221587,7 @@ Genoppi is an open-source software for performing quality control and analyzing sc:url "http://genorigin.chenzxlab.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0204, @@ -219166,7 +221605,7 @@ Genoppi is an open-source software for performing quality control and analyzing sc:url "http://140.113.239.45/GeNOSA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3308, @@ -219186,7 +221625,7 @@ Genoscapist is a web-tool generating high-quality images for interactive visuali sc:url "https://genoscapist.migale.inrae.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -219204,7 +221643,7 @@ Genoscapist is a web-tool generating high-quality images for interactive visuali biotools:primaryContact "Peter M. Haverty" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -219221,22 +221660,22 @@ Genoscapist is a web-tool generating high-quality images for interactive visuali a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -219254,7 +221693,7 @@ Genoscapist is a web-tool generating high-quality images for interactive visuali biotools:primaryContact "Jennifer Tom" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -219272,13 +221711,8 @@ GenoTypeMapper (GTM) is a software to compare, visualize and analyze genomic dat sc:name "GenoTypeMapper" ; sc:url "http://www.genotypemapper.org" . - a sc:SoftwareApplication ; - sc:description "CD Genomics has been providing the accurate and affordable genotyping by sequencing service for couple of years. We employ the latest Illumina sequencing platforms to obtain genetic variations information in a more efficient way. CD Genomics is proud to provide genotyping by sequencing service to advance your population based genotyping studies in an effective and economic way. Please contact us for more information and a detailed quote." ; - sc:name "Genotyping by Sequencing (GBS)" ; - sc:url "https://www.cd-genomics.com/Genotyping-by-Sequencing-GBS.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0749, @@ -219297,7 +221731,7 @@ The increase in interest for Hi-C methods in the chromatin community has led to sc:url "http://github.com/dewitlab/GENOVA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -219316,7 +221750,7 @@ The increase in interest for Hi-C methods in the chromatin community has led to biotools:primaryContact "Kwang Su Jung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3263, edam:topic_3316, @@ -219332,7 +221766,7 @@ The increase in interest for Hi-C methods in the chromatin community has led to sc:url "https://github.com/bioinformatics-cdac/GenoVault" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -219345,7 +221779,7 @@ The increase in interest for Hi-C methods in the chromatin community has led to biotools:primaryContact "AstridBio Technologies Kft." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0634, @@ -219364,7 +221798,7 @@ The increase in interest for Hi-C methods in the chromatin community has led to sc:url "http://genocanyon.med.yale.edu/GenoWAP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0102, @@ -219386,7 +221820,7 @@ The increase in interest for Hi-C methods in the chromatin community has led to sc:url "http://github.com/divonlan/genozip" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -219406,7 +221840,7 @@ The increase in interest for Hi-C methods in the chromatin community has led to biotools:primaryContact "Simo Kitanovski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0128, @@ -219426,10 +221860,10 @@ Ab initio protein interation network generator.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_2187" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0749, @@ -219444,7 +221878,7 @@ Ab initio protein interation network generator.""" ; sc:url "http://genprobis.insilab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, @@ -219460,7 +221894,7 @@ Ab initio protein interation network generator.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053 ; @@ -219477,8 +221911,31 @@ Ab initio protein interation network generator.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/GenRank.html" ; biotools:primaryContact "Chakravarthi Kanduri" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_3474, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9048672", + "pubmed:35266528" ; + sc:description "GenRisk is a package that implements different gene-based scoring schemes to analyze and find significant genes within a phenotype in a population." ; + sc:featureList edam:operation_0337, + edam:operation_3196, + edam:operation_3659, + edam:operation_3791 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GenRisk" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/AldisiRana/GenRisk" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0602, @@ -219495,7 +221952,7 @@ Ab initio protein interation network generator.""" ; sc:url "http://sourceforge.net/projects/gensim/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -219512,7 +221969,7 @@ Ab initio protein interation network generator.""" ; sc:url "https://code.google.com/archive/p/genscalpel/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0654, @@ -219528,7 +221985,7 @@ Ab initio protein interation network generator.""" ; sc:url "http://genes.mit.edu/GENSCANinfo.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3676 ; sc:citation ; @@ -219547,7 +222004,7 @@ Ab initio protein interation network generator.""" ; sc:url "http://www.phenosystems.com/www/index.php/products/gensearchngs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -219563,18 +222020,15 @@ Ab initio protein interation network generator.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0622 ; @@ -219594,7 +222048,7 @@ Ab initio protein interation network generator.""" ; sc:url "http://genskew.csb.univie.ac.at/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2259, @@ -219613,7 +222067,7 @@ Ab initio protein interation network generator.""" ; "Thomas Ligon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_0108, @@ -219634,7 +222088,7 @@ Ab initio protein interation network generator.""" ; "Maha R Farhat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -219651,7 +222105,7 @@ distinguish genuine signal of untargeted metabolites from measurement artifacts sc:url "https://github.com/liucaomics/genuMet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -219673,8 +222127,28 @@ distinguish genuine signal of untargeted metabolites from measurement artifacts sc:softwareHelp ; sc:url "https://github.com/martin-sicho/genui" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0769, + edam:topic_0797, + edam:topic_3299 ; + sc:citation , + "pubmed:34951622" ; + sc:description "A gene-centric, phylogeny-based comparative genomics pipeline for bacterial genomes and plasmids." ; + sc:featureList edam:operation_0525, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "GEnView" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/EbmeyerSt/GEnView" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0749, @@ -219690,7 +222164,7 @@ Genvisage - Rapid Identification of Discriminative Feature Pairs for Genomic Ana sc:url "http://genvisage.knoweng.org:443/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -219704,7 +222178,7 @@ Genvisage - Rapid Identification of Discriminative Feature Pairs for Genomic Ana biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -219724,7 +222198,7 @@ Genvisage - Rapid Identification of Discriminative Feature Pairs for Genomic Ana biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0176, @@ -219743,7 +222217,7 @@ The Geo Measures Plugin can carry out geometric analysis on protein structures.I sc:url "https://pymolwiki.org/index.php/Geo_Measures_Plugin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203 ; @@ -219760,7 +222234,7 @@ The Geo Measures Plugin can carry out geometric analysis on protein structures.I biotools:primaryContact "Sisi Ma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0781, @@ -219776,7 +222250,7 @@ The Geo Measures Plugin can carry out geometric analysis on protein structures.I biotools:primaryContact "Tasnia Tahsin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0769, @@ -219797,7 +222271,7 @@ GeoBoost2 (part of the ZoDo project) is a system for extracting the location of sc:url "https://zodo.asu.edu/geoboost2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, @@ -219819,8 +222293,28 @@ Create dynamic maps, analyze and build location-aware and geospatial application sc:name "geoBoundaries" ; sc:url "http://www.geoboundaries.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0203, + edam:topic_2640, + edam:topic_3518 ; + sc:citation , + "pubmed:34935889" ; + sc:description "Bioinformatics tool to easily identify cancer prognostic datasets on Gene Expression Omnibus (GEO)." ; + sc:featureList edam:operation_2421, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "geoCancerPrognosticDatasetsRetriever" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/AbbasAlameer/geoCancerPrognosticDatasetsRetriever" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3303, edam:topic_3384, @@ -219836,7 +222330,7 @@ Create dynamic maps, analyze and build location-aware and geospatial application sc:url "http://www.slicer.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3293, @@ -219851,8 +222345,51 @@ Create dynamic maps, analyze and build location-aware and geospatial application sc:softwareHelp ; sc:url "http://darwin.uvigo.es/software/geodis.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0634, + edam:topic_3382, + edam:topic_3518 ; + sc:citation ; + sc:description "An R/Bioconductor package for gene expression analysis and visualisation." ; + sc:featureList edam:operation_0571, + edam:operation_2939, + edam:operation_3223, + edam:operation_3557 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "GEOexplorer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://bioconductor.org/packages/GEOexplorer/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0077, + edam:topic_0154, + edam:topic_0176, + edam:topic_0602, + edam:topic_3398 ; + sc:citation , + "pmcid:PMC9308565", + "pubmed:35549473" ; + sc:description "GeomBD3 is a rigid body Brownian dynamics software package for simulating association rates and molecular recognition in biological or engineered systems." ; + sc:featureList edam:operation_2476, + edam:operation_3893, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GeomBD3" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/chang-group/GeomBD3" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3077, @@ -219873,7 +222410,7 @@ Create dynamic maps, analyze and build location-aware and geospatial application biotools:primaryContact "Jack Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3293, @@ -219889,7 +222426,7 @@ Create dynamic maps, analyze and build location-aware and geospatial application sc:url "http://www.cibiv.at/software/geometree/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3070, @@ -219906,7 +222443,7 @@ Create dynamic maps, analyze and build location-aware and geospatial application biotools:primaryContact "Arsen Arakelyan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0623, @@ -219925,7 +222462,7 @@ Geometricus represents protein structures by shape-mers derived from 3D moment i sc:url "https://git.wur.nl/durai001/geometricus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0128, @@ -219940,7 +222477,7 @@ ProteinsPlus structure-based modeling support server. This server is a common we sc:url "https://proteins.plus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0610, @@ -219961,26 +222498,8 @@ ProteinsPlus structure-based modeling support server. This server is a common we "Windows" ; sc:url "https://github.com/drewhart/geonomics" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108 ; - sc:citation , - "pmcid:PMC6911964", - "pubmed:31853471" ; - sc:description """Panel data to investigate pricing behavior in the Spanish retail fuel market. - -Geoportal de precios de carburantes en las Estaciones de Servicio. - -{{header.title.saltarnavegacion : translate}}. - -{{header.seleccionidioma : translate}}. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'antitrust'""" ; - sc:featureList edam:operation_0371 ; - sc:name "geoportalgasolineras" ; - sc:url "http://geoportalgasolineras.es" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -220003,7 +222522,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. "Sen Song" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -220023,7 +222542,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. biotools:primaryContact "Sean Davis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3172 ; sc:citation , @@ -220041,14 +222560,14 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ] ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -220071,7 +222590,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. biotools:primaryContact "Zhicheng Ji" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation "pubmed:20939882" ; @@ -220086,7 +222605,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. biotools:primaryContact "Anthony Cancio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0203, @@ -220100,7 +222619,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. sc:url "http://va-genex.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -220118,7 +222637,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. biotools:primaryContact "Alexandre Kuhn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203 ; sc:description "Pathway Expression Profiles (PEPs) are based on the expression of pathways (defined as sets of genes) as opposed to individual genes. This package converts gene expression profiles to PEPs and performs enrichment analysis of both pathways and experimental conditions, such as \"drug set enrichment analysis\" and \"gene2drug\" drug discovery analysis respectively." ; @@ -220137,14 +222656,12 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0862" ; - sc:name "Dotplot" ; - sc:sameAs "http://edamontology.org/data_0862" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0862" ; + sc:name "Dotplot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0797 ; sc:author "Jan Krumsiek" ; @@ -220163,7 +222680,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. sc:url "http://www.helmholtz-muenchen.de/icb/gepard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, @@ -220183,7 +222700,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. sc:url "http://www.gepas.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -220198,7 +222715,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. sc:url "http://gepat.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -220214,8 +222731,29 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. sc:softwareHelp ; sc:url "http://gepia.cancer-pku.cn/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0610, + edam:topic_0625, + edam:topic_3170, + edam:topic_3518 ; + sc:citation , + "pubmed:34877793" ; + sc:description "The Gene Expression Database of Poplar under Stress." ; + sc:featureList edam:operation_0314, + edam:operation_0315, + edam:operation_0571 ; + sc:isAccessibleForFree true ; + sc:name "GEPSdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://gepsdb.ahau-edu.cn/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, @@ -220236,7 +222774,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. sc:url "https://github.com/clara-parabricks/GEPSi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -220251,14 +222789,13 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2835" ; - sc:name "Gene ID (VBASE2)" ; - sc:sameAs "http://edamontology.org/data_2835" ] ; + sc:additionalType "http://edamontology.org/data_2835" ; + sc:name "Gene ID (VBASE2)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2815, @@ -220274,7 +222811,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. sc:url "http://www.vbase2.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0625, @@ -220289,7 +222826,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. sc:url "http://www1.cs.columbia.edu/~gusev/germline/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3263 ; @@ -220303,30 +222840,26 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ] ; + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623 ; sc:citation ; @@ -220340,7 +222873,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. sc:url "http://www.germonline.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -220355,7 +222888,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. sc:url "http://mendel.stanford.edu/sidowlab/downloads/gerp/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_1775, @@ -220371,10 +222904,10 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3293, @@ -220397,7 +222930,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. "Stephan Greiner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -220418,18 +222951,18 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -220449,7 +222982,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. biotools:primaryContact "Fabian Schmich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -220467,7 +223000,7 @@ Geoportal de precios de carburantes en las Estaciones de Servicio. "Zhenqing Ye" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0077, @@ -220486,8 +223019,27 @@ If you used GESS for scientific publication, we would appreciate citations to th sc:name "GESS-db" ; sc:url "https://wan-bioinfo.shinyapps.io/GESS/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0154, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC9037956", + "pubmed:35479940" ; + sc:description "Advanced Functions Embedded in the Second Version of Database, Global Evaluation of SARS-CoV-2/hCoV-19 Sequences 2." ; + sc:featureList edam:operation_0224, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:name "GESS v2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://shiny.ph.iu.edu/GESS_v2/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3170, @@ -220509,7 +223061,7 @@ Repository with the toolbox (and code used for analysis and to produce figures) sc:url "https://github.com/SlowinskiPiotr/GeTallele" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, @@ -220525,7 +223077,7 @@ Repository with the toolbox (and code used for analysis and to produce figures) biotools:primaryContact "Steffen Willwacher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -220550,62 +223102,62 @@ The molecular functions of proteins (e.g. ligand-binding) are governed by networ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation , @@ -220623,86 +223175,86 @@ The molecular functions of proteins (e.g. ligand-binding) are governed by networ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -220720,62 +223272,62 @@ The molecular functions of proteins (e.g. ligand-binding) are governed by networ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071 ; @@ -220794,50 +223346,50 @@ The molecular functions of proteins (e.g. ligand-binding) are governed by networ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation , @@ -220855,34 +223407,34 @@ The molecular functions of proteins (e.g. ligand-binding) are governed by networ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -220900,58 +223452,58 @@ The molecular functions of proteins (e.g. ligand-binding) are governed by networ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -220968,7 +223520,7 @@ The molecular functions of proteins (e.g. ligand-binding) are governed by networ biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Extraction of single nucleotide polymorphism data from HGVBASE" ; sc:isAccessibleForFree true ; @@ -220982,34 +223534,34 @@ The molecular functions of proteins (e.g. ligand-binding) are governed by networ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3512 ; sc:citation , @@ -221027,26 +223579,26 @@ The molecular functions of proteins (e.g. ligand-binding) are governed by networ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -221065,34 +223617,34 @@ The molecular functions of proteins (e.g. ligand-binding) are governed by networ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3321, @@ -221112,14 +223664,12 @@ The molecular functions of proteins (e.g. ligand-binding) are governed by networ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3321 ; sc:citation , @@ -221150,7 +223700,7 @@ The molecular functions of proteins (e.g. ligand-binding) are governed by networ sc:url "http://emboss.open-bio.org/rel/rel6/apps/getorf.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0196, @@ -221175,18 +223725,18 @@ This toolkit assemblies organelle genome from genomic skimming data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102 ; @@ -221205,14 +223755,14 @@ This toolkit assemblies organelle genome from genomic skimming data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -221228,48 +223778,69 @@ This toolkit assemblies organelle genome from genomic skimming data.""" ; sc:url "https://urgi.versailles.inra.fr/Tools/REPET" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0654, + edam:topic_3512, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC9264741", + "pubmed:35804320" ; + sc:description "getSequenceInfo tool allows to extract sequence data and specific information from GenBank (Galaxy Version 1.0.1)" ; + sc:featureList edam:operation_0310, + edam:operation_2422, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:name "getSequenceInfo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://sasc3i.univ-ag.fr:8080" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation , @@ -221286,7 +223857,7 @@ This toolkit assemblies organelle genome from genomic skimming data.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -221302,18 +223873,18 @@ This toolkit assemblies organelle genome from genomic skimming data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3005" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation , @@ -221331,18 +223902,18 @@ This toolkit assemblies organelle genome from genomic skimming data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3005" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation , @@ -221360,30 +223931,30 @@ This toolkit assemblies organelle genome from genomic skimming data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3005" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation , @@ -221399,8 +223970,26 @@ This toolkit assemblies organelle genome from genomic skimming data.""" ; sc:url "https://urgi.versailles.inra.fr/Tools/REPET" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3308, + edam:topic_3372, + edam:topic_3678 ; + sc:citation , + "pubmed:35318148" ; + sc:description "A R package to evaluate variations in differential expression in multiple biological conditions." ; + sc:featureList edam:operation_0313, + edam:operation_2238, + edam:operation_3223 ; + sc:name "GEVA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sbcblab/geva" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2885 ; @@ -221419,7 +224008,7 @@ This toolkit assemblies organelle genome from genomic skimming data.""" ; biotools:primaryContact "Wei Q. Deng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0203, @@ -221438,7 +224027,7 @@ plotting the density of genetic elements along a chromosome using GTF files (ide sc:url "https://github.com/nthomasCUBE/Gexplora" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0196 ; @@ -221453,8 +224042,28 @@ plotting the density of genetic elements along a chromosome using GTF files (ide sc:name "gfakluge" ; sc:url "https://github.com/edawson/gfakluge" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Desktop application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0203, + edam:topic_0623, + edam:topic_0780 ; + sc:citation ; + sc:description "Ultra-fast and accurate gene functional annotation software for plants." ; + sc:featureList edam:operation_0292, + edam:operation_2421, + edam:operation_3672 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "GFAP" ; + sc:operatingSystem "Windows" ; + sc:softwareVersion "2.0" ; + sc:url "https://gitee.com/simon198912167815/gfap-database" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -221473,7 +224082,7 @@ plotting the density of genetic elements along a chromosome using GTF files (ide biotools:primaryContact "Giorgio Gonnella" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3336, @@ -221490,28 +224099,40 @@ plotting the density of genetic elements along a chromosome using GTF files (ide biotools:primaryContact "Eemeli Leppäaho", "Suleiman Ali Khan" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "gfastats is a single fast and exhaustive tool for summary statistics and simultaneous genome assembly file manipulation. gfastats also allows seamless fasta/fastq/gfa conversion." ; + sc:featureList edam:operation_2409 ; + sc:license "MIT" ; + sc:name "gfastats" ; + sc:softwareVersion "1.1" ; + sc:url "https://github.com/vgl-hub/gfastats" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3736" ; - sc:name "Ecological data" ; - sc:sameAs "http://edamontology.org/data_3736" ], + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_2545" ; + sc:name "Nucleic acid sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_2376" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_3736" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ecological data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2091" ; - sc:name "Accession" ; - sc:sameAs "http://edamontology.org/data_2091" ], + sc:additionalType "http://edamontology.org/data_1188" ; + sc:name "DOI" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1188" ; - sc:name "DOI" ; - sc:sameAs "http://edamontology.org/data_1188" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2091" ; + sc:name "Accession" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application", "Web service" ; @@ -221535,7 +224156,7 @@ plotting the density of genetic elements along a chromosome using GTF files (ide sc:url "https://www.gfbio.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0602, @@ -221550,8 +224171,25 @@ plotting the density of genetic elements along a chromosome using GTF files (ide sc:softwareHelp ; sc:url "http://juanjodiaz.github.io/gfdnet/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3390, + edam:topic_3418, + edam:topic_3420 ; + sc:citation , + "pmcid:PMC8501472", + "pubmed:34671465" ; + sc:description "An analysis and visualization tool for data on food fortification" ; + sc:isAccessibleForFree true ; + sc:name "GFDx" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://fortificationdata.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -221568,7 +224206,7 @@ plotting the density of genetic elements along a chromosome using GTF files (ide biotools:primaryContact "Dinesh Gupta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Josep Abril" ; @@ -221589,10 +224227,10 @@ plotting the density of genetic elements along a chromosome using GTF files (ide a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_3696" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077 ; sc:author "Josep Abril" ; @@ -221609,8 +224247,25 @@ plotting the density of genetic elements along a chromosome using GTF files (ide sc:url "http://big.crg.cat/services/gff2ps" ; biotools:primaryContact "Josep Abril" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0976" ; + sc:name "Identifier (by type of data)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:citation ; + sc:description "A tool for filling the gap created by genomic data processing/analysis by rebasing some analysis results against the parent features which were originally analysed." ; + sc:featureList edam:operation_0335, + edam:operation_2409 ; + sc:isAccessibleForFree true ; + sc:name "GFF3 Rebase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://toolshed.g2.bx.psu.edu/view/iuc/gff3_rebase" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080 ; @@ -221624,7 +224279,7 @@ plotting the density of genetic elements along a chromosome using GTF files (ide sc:url "https://ccb.jhu.edu/software/stringtie/gff.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080 ; @@ -221638,7 +224293,7 @@ plotting the density of genetic elements along a chromosome using GTF files (ide sc:url "https://ccb.jhu.edu/software/stringtie/gff.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080 ; @@ -221652,8 +224307,31 @@ plotting the density of genetic elements along a chromosome using GTF files (ide sc:softwareHelp ; sc:url "https://pythonhosted.org/gffutils/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0637, + edam:topic_2229, + edam:topic_3053, + edam:topic_3293 ; + sc:citation , + "pmcid:PMC8557005", + "pubmed:34715785" ; + sc:description "GFICLEE is a program for predicting the new members in biological pathway or biological complex." ; + sc:featureList edam:operation_0314, + edam:operation_0323, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "GFICLEE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/yangfangs/GFICLEE1.0" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:15215397", @@ -221664,7 +224342,7 @@ plotting the density of genetic elements along a chromosome using GTF files (ide sc:url "http://www.medinfopoli.polimi.it/GFINDer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174, @@ -221680,7 +224358,7 @@ plotting the density of genetic elements along a chromosome using GTF files (ide sc:url "https://hive.biochemistry.gwu.edu/gfkb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -221696,8 +224374,25 @@ plotting the density of genetic elements along a chromosome using GTF files (ide sc:softwareHelp ; sc:url "http://www.sailing.cs.cmu.edu/main/?page_id=462" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_3384, + edam:topic_3452, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9359771", + "pubmed:35966970" ; + sc:description "Automatic segmentation of COVID-19 lung infection regions using CT images based on boundary features." ; + sc:featureList edam:operation_0479, + edam:operation_1812, + edam:operation_3925 ; + sc:license "Not licensed" ; + sc:name "GFNet" ; + sc:url "https://github.com/zengzhenhuan/GFNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -221717,7 +224412,7 @@ plotting the density of genetic elements along a chromosome using GTF files (ide biotools:primaryContact "Viral bioinformatics resource center" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -221735,7 +224430,7 @@ plotting the density of genetic elements along a chromosome using GTF files (ide sc:url "http://118.178.236.158/GFSAT/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0621, @@ -221755,8 +224450,30 @@ plotting the density of genetic elements along a chromosome using GTF files (ide sc:url "https://github.com/jespermaag/gganatogram" ; biotools:primaryContact "Jesper Maag" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0634, + edam:topic_0659, + edam:topic_2640, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8729153", + "pubmed:34983363" ; + sc:description "LncRNA-disease association prediction method based on graph-level graph attention network" ; + sc:featureList edam:operation_0303, + edam:operation_0463, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:name "gGATLDA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/LiWangG/gGATLDA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3070, @@ -221774,7 +224491,7 @@ plotting the density of genetic elements along a chromosome using GTF files (ide sc:url "http://gaggle.systemsbiology.net/docs/geese/genomebrowser/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -221793,7 +224510,7 @@ plotting the density of genetic elements along a chromosome using GTF files (ide biotools:primaryContact "VJ Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -221814,7 +224531,7 @@ plotting the density of genetic elements along a chromosome using GTF files (ide biotools:primaryContact "Michael Lawrence" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -221833,7 +224550,7 @@ plotting the density of genetic elements along a chromosome using GTF files (ide biotools:primaryContact "Mike Jiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3077, @@ -221850,7 +224567,7 @@ plotting the density of genetic elements along a chromosome using GTF files (ide biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0102, @@ -221867,8 +224584,31 @@ plotting the density of genetic elements along a chromosome using GTF files (ide sc:url "http://www.cs.unc.edu/~weicheng/" ; biotools:primaryContact "Wei Cheng" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0196, + edam:topic_0780, + edam:topic_3053, + edam:topic_3293 ; + sc:citation , + "pmcid:PMC9434254", + "pubmed:35789395" ; + sc:description "A Grameneae Genome Alignment Database of Homologous Genes Hierarchically Related to Evolutionary Events." ; + sc:featureList edam:operation_0553, + edam:operation_3182, + edam:operation_3216 ; + sc:isAccessibleForFree true ; + sc:name "GGDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.grassgenome.com/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -221885,8 +224625,39 @@ plotting the density of genetic elements along a chromosome using GTF files (ide sc:softwareHelp ; sc:url "https://drupal.bio.ifi.lmu.de/en/GGEA/index.html" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0128, + edam:topic_0154, + edam:topic_0820, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8989088", + "pubmed:35399947" ; + sc:description "A Web Server for GPCR-GPCR Interaction Pair Prediction." ; + sc:featureList edam:operation_0269, + edam:operation_0474, + edam:operation_2492, + edam:operation_2995 ; + sc:isAccessibleForFree true ; + sc:name "GGIP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://protein.b.dendai.ac.jp/GGIP/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -221908,16 +224679,41 @@ Variable Selection in Linear Mixed Models for SNP Data.""" ; sc:name "ggmix" ; sc:url "https://cran.r-project.org/package=ggmix" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0081, + edam:topic_0084, + edam:topic_0102, + edam:topic_0659, + edam:topic_3168 ; + sc:citation , + "pubmed:35671504" ; + sc:description "A visual exploration tool for multiple sequence alignment and associated data. Supports MSA of DNA, RNA, and protein sequences using 'ggplot2'. Multiple sequence alignment can easily be combined with other 'ggplot2' plots, such as phylogenetic tree Visualized by 'ggtree', boxplot, genome map and so on." ; + sc:featureList edam:operation_0451, + edam:operation_0492, + edam:operation_0564, + edam:operation_0567, + edam:operation_0570 ; + sc:isAccessibleForFree true ; + sc:license "Artistic-2.0" ; + sc:name "ggmsa" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://yulab-smu.top/ggmsa/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1176" ; - sc:name "GO concept ID" ; - sc:sameAs "http://edamontology.org/data_1176" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1176" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "GO concept ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -221949,7 +224745,7 @@ Variable Selection in Linear Mixed Models for SNP Data.""" ; "Jüri Reimand" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -221962,8 +224758,26 @@ Variable Selection in Linear Mixed Models for SNP Data.""" ; sc:softwareHelp ; sc:url "http://ggplot2.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3070 ; + sc:citation , + "pmcid:PMC8567791", + "pubmed:34734767" ; + sc:description "colorblind friendly color palettes and ggplot2 graphic system extensions for publication-quality scientific figures" ; + sc:featureList edam:operation_0337, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "ggpubfigs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/JLSteenwyk/ggpubfigs" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, @@ -221985,7 +224799,7 @@ Variable Selection in Linear Mixed Models for SNP Data.""" ; biotools:primaryContact "Hidemasa Bono" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053, @@ -222006,14 +224820,14 @@ Calculates additive and dominance genetic relationship matrices and their invers a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3170, @@ -222035,7 +224849,7 @@ Calculates additive and dominance genetic relationship matrices and their invers sc:url "https://github.com/guigolab/ggsashimi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -222052,7 +224866,7 @@ Calculates additive and dominance genetic relationship matrices and their invers biotools:primaryContact "Omar Wagih" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -222075,18 +224889,18 @@ Calculates additive and dominance genetic relationship matrices and their invers a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_2006" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1707" ; - sc:name "Phylogenetic tree image" ; - sc:sameAs "http://edamontology.org/data_1707" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1707" ; + sc:encodingFormat "http://edamontology.org/format_2006" ; + sc:name "Phylogenetic tree image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0084, @@ -222106,7 +224920,7 @@ Calculates additive and dominance genetic relationship matrices and their invers biotools:primaryContact "Guangchuang Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0102, @@ -222125,7 +224939,7 @@ plotting-tree-with-data-using-ggtreeExtra.""" ; sc:url "https://www.bioconductor.org/packages/ggtreeExtra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -222142,8 +224956,51 @@ plotting-tree-with-data-using-ggtreeExtra.""" ; sc:url "http://animal.nwsuaf.edu.cn/GoatVar" ; biotools:primaryContact "Yu Jiang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0092, + edam:topic_0769, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8452859", + "pubmed:34557218" ; + sc:description "An Intuitive, Easy-to-Use, and Highly Customizable R Package to Generate Venn Diagram." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ggVennDiagram" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://cran.r-project.org/package=ggVennDiagram" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0602, + edam:topic_3308, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC8551465", + "pubmed:34745458" ; + sc:description "A Shiny app for customizable visualization of differential expression datasets." ; + sc:featureList edam:operation_0337, + edam:operation_3223, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:name "ggVolcanoR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ggvolcanor.erc.monash.edu/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -222160,7 +225017,7 @@ plotting-tree-with-data-using-ggtreeExtra.""" ; biotools:primaryContact "Yuri Tani Utsunomiya" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -222181,7 +225038,7 @@ Functions are provided for quantifying evolution and selection on complex traits sc:url "https://cran.r-project.org/package=Ghat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2275 ; sc:description "Ghemical is a molecular modeling and editing package for GNOME. It integrates a molecular mechanics force field as well as integration with MOPAC and optionally the MPQC package for quantum mechanical calculations. It integrates Open Babel to import/export to a variety of external programs." ; @@ -222193,7 +225050,7 @@ Functions are provided for quantifying evolution and selection on complex traits sc:url "http://www.bioinformatics.org/ghemical/ghemical/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3382, @@ -222210,7 +225067,7 @@ Pytorch implementation for "GhoMR : Multi-Receptive Lightweight Residual Modules sc:url "https://github.com/iamarijit/GhoMR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0602, @@ -222227,20 +225084,38 @@ Pytorch implementation for "GhoMR : Multi-Receptive Lightweight Residual Modules sc:softwareHelp ; sc:url "http://www.cs.cmu.edu/~ckingsf/software/ghost/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3168, + edam:topic_3316 ; + sc:citation , + "pmcid:PMC8641918", + "pubmed:34556557" ; + sc:description "An efficient signal processing and spectral analysis toolbox for large data." ; + sc:featureList edam:operation_3214, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "GhostiPy" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/kemerelab/ghostipy/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1872" ; - sc:name "Taxonomic classification" ; - sc:sameAs "http://edamontology.org/data_1872" ], + sc:additionalType "http://edamontology.org/data_1872" ; + sc:name "Taxonomic classification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3174, @@ -222258,10 +225133,9 @@ Pytorch implementation for "GhoMR : Multi-Receptive Lightweight Residual Modules a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -222277,7 +225151,7 @@ Pytorch implementation for "GhoMR : Multi-Receptive Lightweight Residual Modules sc:url "http://www.bi.cs.titech.ac.jp/ghostz/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workbench" ; sc:applicationSubCategory edam:topic_0605, @@ -222300,7 +225174,7 @@ Pytorch implementation for "GhoMR : Multi-Receptive Lightweight Residual Modules sc:url "https://github.com/s175573/GIANA51" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2229, @@ -222320,7 +225194,7 @@ General Image Analysis of Nuclei-containing Images.""" ; sc:url "http://djpbarry.github.io/Giani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -222340,14 +225214,13 @@ General Image Analysis of Nuclei-containing Images.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ] ; + sc:additionalType "http://edamontology.org/data_2295" ; + sc:name "Gene ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation , @@ -222363,7 +225236,7 @@ General Image Analysis of Nuclei-containing Images.""" ; sc:url "http://giardiadb.org/giardiadb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0654, @@ -222382,7 +225255,7 @@ General Image Analysis of Nuclei-containing Images.""" ; biotools:primaryContact "Brad Ridder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0166, @@ -222411,7 +225284,7 @@ General Image Analysis of Nuclei-containing Images.""" ; biotools:primaryContact "Gibbs Motif Sampler Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -222432,7 +225305,7 @@ General Image Analysis of Nuclei-containing Images.""" ; biotools:primaryContact "Morten Nielsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269 ; @@ -222446,7 +225319,7 @@ Breeding evaluation and variance component estimation of ranking traits.""" ; sc:url "https://github.com/lvaronaunizar/Gibbsthur" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -222464,7 +225337,7 @@ Breeding evaluation and variance component estimation of ranking traits.""" ; biotools:primaryContact "Dongsheng Che" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -222477,7 +225350,7 @@ Breeding evaluation and variance component estimation of ranking traits.""" ; sc:url "http://compbio.uthsc.edu/Gifi.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0602, @@ -222493,7 +225366,7 @@ Breeding evaluation and variance component estimation of ranking traits.""" ; sc:url "http://bioinfo.au.tsinghua.edu.cn/software/GIFT/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_1775, @@ -222513,7 +225386,7 @@ Breeding evaluation and variance component estimation of ranking traits.""" ; sc:url "https://github.com/ryanlayer/giggle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -222528,7 +225401,7 @@ Breeding evaluation and variance component estimation of ranking traits.""" ; sc:url "https://faculty.washington.edu/wijsman/progdists/gigi/software/GIGI-Check/GIGI-Check.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -222544,8 +225417,27 @@ Breeding evaluation and variance component estimation of ranking traits.""" ; sc:softwareHelp ; sc:url "http://sourceforge.net/projects/giira/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0154, + edam:topic_0634, + edam:topic_3047, + edam:topic_3474 ; + sc:citation ; + sc:description "Gilda is a Python package and REST service that grounds (i.e., finds appropriate identifiers in namespaces for) named entities in biomedical text." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "BSD-2-Clause" ; + sc:name "Gilda" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/indralab/gilda" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, @@ -222563,7 +225455,7 @@ Breeding evaluation and variance component estimation of ranking traits.""" ; sc:url "https://data.caltech.edu/records/1287" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0821, edam:topic_2259, @@ -222581,7 +225473,7 @@ Breeding evaluation and variance component estimation of ranking traits.""" ; biotools:primaryContact "Nezar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2885, @@ -222600,7 +225492,7 @@ Host Genetic & Immune Factors Shaping Human Microbita.""" ; sc:url "https://idrblab.org/gimica/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3474 ; @@ -222619,7 +225511,7 @@ Host Genetic & Immune Factors Shaping Human Microbita.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0204, edam:topic_3169, @@ -222635,7 +225527,7 @@ Host Genetic & Immune Factors Shaping Human Microbita.""" ; biotools:primaryContact "Simon Vanheeringen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0625, @@ -222655,8 +225547,32 @@ Host Genetic & Immune Factors Shaping Human Microbita.""" ; sc:url "https://cran.r-project.org/web/packages/GiNA/index.html" ; biotools:primaryContact "Juan Zalapa" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0203, + edam:topic_0625, + edam:topic_2640, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8826027", + "pubmed:34888618" ; + sc:description "Unsupervised construction of computational graphs for gene expression data with explicit structural inductive biases." ; + sc:featureList edam:operation_0314, + edam:operation_2492, + edam:operation_3094, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GINCCo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/paulmorio/gincco" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0637, @@ -222673,7 +225589,7 @@ Host Genetic & Immune Factors Shaping Human Microbita.""" ; biotools:primaryContact "Guo-Cheng YuanEmail author" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -222691,7 +225607,7 @@ Host Genetic & Immune Factors Shaping Human Microbita.""" ; biotools:primaryContact "Daphne Tsoucas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0091, @@ -222708,7 +225624,7 @@ SUMMARY:Single-cell Hi-C (scHi-C) allows the study of cell-to-cell variability i sc:url "https://github.com/4dn-dcic/GiniQC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053, @@ -222725,7 +225641,7 @@ SUMMARY:Single-cell Hi-C (scHi-C) allows the study of cell-to-cell variability i sc:url "http://qb.cshl.edu/ginkgo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -222740,7 +225656,7 @@ SUMMARY:Single-cell Hi-C (scHi-C) allows the study of cell-to-cell variability i sc:url "http://phylo.bio.ku.edu/ginkgo/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_0781, @@ -222759,14 +225675,14 @@ SUMMARY:Single-cell Hi-C (scHi-C) allows the study of cell-to-cell variability i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -222791,7 +225707,7 @@ SUMMARY:Single-cell Hi-C (scHi-C) allows the study of cell-to-cell variability i sc:url "http://ginsim.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3170, @@ -222817,7 +225733,7 @@ SUMMARY:Single-cell Hi-C (scHi-C) allows the study of cell-to-cell variability i "Ruben Dries" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -222839,8 +225755,23 @@ SUMMARY:Single-cell Hi-C (scHi-C) allows the study of cell-to-cell variability i sc:softwareHelp ; sc:url "https://cloud.sylabs.io/library/giovannibussotti/default/giptools" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3318, + edam:topic_3361 ; + sc:citation , + "pubmed:34915347" ; + sc:description "Geant4 interface for particle physics experiments applied to Radioactive Particle Tracking." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GIPPE-RPT" ; + sc:operatingSystem "Linux" ; + sc:url "https://pimelab.github.io/GIPPE-RPT/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0625, @@ -222861,7 +225792,7 @@ SUMMARY:Single-cell Hi-C (scHi-C) allows the study of cell-to-cell variability i "Weitao Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -222881,7 +225812,7 @@ SUMMARY:Single-cell Hi-C (scHi-C) allows the study of cell-to-cell variability i biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0607, edam:topic_2258, @@ -222898,7 +225829,7 @@ SUMMARY:Single-cell Hi-C (scHi-C) allows the study of cell-to-cell variability i biotools:primaryContact "Girder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -222913,7 +225844,7 @@ SUMMARY:Single-cell Hi-C (scHi-C) allows the study of cell-to-cell variability i sc:url "https://www.ibp.ucla.edu/research/xiao/GIREMI.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -222935,7 +225866,7 @@ SUMMARY:Single-cell Hi-C (scHi-C) allows the study of cell-to-cell variability i biotools:primaryContact "Aysam Guerler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -222949,7 +225880,7 @@ SUMMARY:Single-cell Hi-C (scHi-C) allows the study of cell-to-cell variability i sc:url "http://gismo.igs.umaryland.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3517 ; @@ -222969,7 +225900,7 @@ SUMMARY:Single-cell Hi-C (scHi-C) allows the study of cell-to-cell variability i biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -222984,7 +225915,7 @@ SUMMARY:Single-cell Hi-C (scHi-C) allows the study of cell-to-cell variability i biotools:primaryContact "Dongsheng Che" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0154, edam:topic_0166, @@ -223002,7 +225933,7 @@ For a standard cpptraj installation, a shell script and a patch file has been su sc:url "https://github.com/liedllab/gigist" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -223018,7 +225949,7 @@ For a standard cpptraj installation, a shell script and a patch file has been su sc:url "http://www.gitools.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -223033,7 +225964,7 @@ For a standard cpptraj installation, a shell script and a patch file has been su biotools:primaryContact "Dongsheng Che" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0622, @@ -223050,8 +225981,30 @@ For a standard cpptraj installation, a shell script and a patch file has been su sc:url "https://zhong-lab-ucsd.github.io/GIVE_homepage/" ; biotools:primaryContact "Sheng Zhong" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0749, + edam:topic_2269, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC8982384", + "pubmed:35201341" ; + sc:description "An R package for generalized joint location and scale analysis in X-inclusive genome-wide association studies." ; + sc:featureList edam:operation_0484, + edam:operation_3435, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "gJLS2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/WeiAkaneDeng/gJLS2" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3174, @@ -223071,7 +226024,7 @@ For a standard cpptraj installation, a shell script and a patch file has been su biotools:primaryContact "Vincent Lefort" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -223083,7 +226036,7 @@ For a standard cpptraj installation, a shell script and a patch file has been su sc:url "https://grenaud.github.io/glactools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -223102,7 +226055,7 @@ For a standard cpptraj installation, a shell script and a patch file has been su biotools:primaryContact "Philippe Hupe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3053, @@ -223118,7 +226071,7 @@ For a standard cpptraj installation, a shell script and a patch file has been su sc:url "http://genomics.wpi.edu/glad/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0602, @@ -223139,7 +226092,7 @@ For a standard cpptraj installation, a shell script and a patch file has been su "Dylan Chivian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0084, @@ -223166,7 +226119,7 @@ GLaMST can be downloaded from https://github.com/xysheep/GLaMST/releases.""" ; sc:url "https://xysheep.github.io/GLaMST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -223187,7 +226140,7 @@ This is a customizable LAMP primer sets designing system: GLAPD (whole genome ba sc:url "http://cgm.sjtu.edu.cn/GLAPD/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -223200,7 +226153,7 @@ This is a customizable LAMP primer sets designing system: GLAPD (whole genome ba sc:url "http://groups.csail.mit.edu/cb/crossspecies/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3168, @@ -223219,18 +226172,18 @@ This matlab utility can parse recording files from the Tobii Glasses 2 as stored a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1246" ; - sc:name "Sequence cluster (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1246" ], + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Taxonomy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1246" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence cluster (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0659 ; @@ -223245,8 +226198,26 @@ This matlab utility can parse recording files from the Tobii Glasses 2 as stored sc:softwareHelp ; sc:url "http://rna.informatik.uni-freiburg.de/GLASSgo/Input.jsp" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3303, + edam:topic_3379, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9388536", + "pubmed:35982106" ; + sc:description "A deep-learning algorithm for the diagnosis of primary open-angle glaucoma from fundus photographs." ; + sc:featureList edam:operation_3443, + edam:operation_3553, + edam:operation_3927 ; + sc:license "BSD-3-Clause" ; + sc:name "GlaucomaNet" ; + sc:url "https://github.com/bionlplab/GlaucomaNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3169, @@ -223268,7 +226239,7 @@ This matlab utility can parse recording files from the Tobii Glasses 2 as stored sc:url "http://compbio-zhanglab.org/GLEANER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0621, @@ -223287,8 +226258,25 @@ MOTIVATION:One of the core problems in the analysis of biological networks is th sc:name "GLIDE" ; sc:url "https://bitbucket.org/kap_devkota/glide" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0634, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9237677", + "pubmed:35575379" ; + sc:description "GLIDER, a method that replaces a protein-protein interaction or association network with a new graph-based similarity network." ; + sc:featureList edam:operation_2492, + edam:operation_3501, + edam:operation_3927 ; + sc:license "Not licensed" ; + sc:name "GLIDER" ; + sc:url "https://github.com/kap-devkota/GLIDER" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -223307,11 +226295,17 @@ MOTIVATION:One of the core problems in the analysis of biological networks is th biotools:primaryContact "Shian Su" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0114 ; - sc:citation ; + sc:citation , + , + , + "pmcid:PMC147303", + "pmcid:PMC148753", + "pubmed:10556321", + "pubmed:9421513" ; sc:description "System for finding genes in microbial DNA, especially the genomes of bacteria, archaea, and viruses. It uses interpolated Markov models (IMMs) to identify the coding regions and distinguish them from noncoding DNA." ; sc:featureList edam:operation_2454 ; sc:name "Glimmer" ; @@ -223321,7 +226315,7 @@ MOTIVATION:One of the core problems in the analysis of biological networks is th sc:url "https://ccb.jhu.edu/software/glimmer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0622 ; @@ -223337,42 +226331,37 @@ MOTIVATION:One of the core problems in the analysis of biological networks is th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1249" ; - sc:name "Sequence length" ; - sc:sameAs "http://edamontology.org/data_1249" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0912" ; - sc:name "Nucleic acid property" ; - sc:sameAs "http://edamontology.org/data_0912" ], + sc:additionalType "http://edamontology.org/data_0914" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Codon usage data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0914" ; - sc:name "Codon usage data" ; - sc:sameAs "http://edamontology.org/data_0914" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_0912" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1249" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence length" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3837 ; @@ -223393,7 +226382,7 @@ coding regions and distinguish them from noncoding DNA. Licensed under Artistic biotools:primaryContact "David R. Kelley" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3173, @@ -223410,7 +226399,7 @@ coding regions and distinguish them from noncoding DNA. Licensed under Artistic "Eran Halperin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -223430,7 +226419,7 @@ Gliome Database has the following feature regarding glia-secreted proteins.""" ; sc:url "http://www.gliome.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -223450,7 +226439,7 @@ The core design aims of glmGamPoi are:.""" ; sc:url "http://github.com/const-ae/glmGamPoi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2269 ; @@ -223464,24 +226453,27 @@ The core design aims of glmGamPoi are:.""" ; sc:softwareHelp ; sc:url "https://cran.r-project.org/web/packages/glmgraph/index.html" . - a sc:SoftwareApplication ; - sc:additionalType "Database portal" ; - sc:applicationSubCategory edam:topic_0798, - edam:topic_3174, - edam:topic_3299, + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3382, edam:topic_3474 ; - sc:citation , - "pmcid:PMC7213576", - "pubmed:32391909" ; - sc:description "Exploring antibiotic resistance gene abundance and distribution in TARA Oceans samples." ; - sc:featureList edam:operation_0436, - edam:operation_3460, - edam:operation_3482 ; - sc:name "Global ocean resistome revealed" ; - sc:url "http://www.resistomedb.com" . + sc:citation , + "pmcid:PMC9207519", + "pubmed:35747553" ; + sc:description "Holistic glomerular detection, segmentation, and lesion characterization with large-scale web image mining." ; + sc:featureList edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "Glo-In-One" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/hrlblab/Glo-In-One" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -223500,14 +226492,14 @@ The core design aims of glmGamPoi are:.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_2310" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3050, edam:topic_3299, @@ -223528,7 +226520,7 @@ locations, sample metadata.""" ; biotools:primaryContact "Tomas Vetrovsky" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269 ; @@ -223548,7 +226540,7 @@ locations, sample metadata.""" ; biotools:primaryContact "Xuan Vinh Nguyen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -223570,7 +226562,7 @@ locations, sample metadata.""" ; biotools:primaryContact "Armin Rauschenberger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053 ; @@ -223589,7 +226581,7 @@ locations, sample metadata.""" ; biotools:primaryContact "Jelle Goeman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -223604,7 +226596,7 @@ locations, sample metadata.""" ; sc:url "http://paintmychromosomes.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -223626,7 +226618,7 @@ locations, sample metadata.""" ; biotools:primaryContact "Dr Rune Linding" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -223642,7 +226634,7 @@ locations, sample metadata.""" ; sc:url "http://www.compbio.dundee.ac.uk/jabaws/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0736 ; @@ -223658,7 +226650,7 @@ locations, sample metadata.""" ; sc:url "http://globplot.embl.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation ; @@ -223671,7 +226663,7 @@ locations, sample metadata.""" ; sc:url "http://www.bioinformatics.org/~stanhope/GLOGS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -223691,8 +226683,22 @@ Regioselectivity prediction for phase 1 and phase 2 metabolism.""" ; sc:name "GLORYx" ; sc:url "https://nerdd.zbh.uni-hamburg.de/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0622 ; + sc:description "Prioritization of gene diseases candidates by disease-aware evaluation of heterogeneous evidence networks" ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "GLOWgenes" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:url "http://www.glowgenes.org" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -223712,7 +226718,7 @@ If you use this code for a scientific publication, please consider citing our pa sc:url "https://github.com/opieters/gloxinia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -223727,7 +226733,7 @@ If you use this code for a scientific publication, please consider citing our pa sc:url "http://www.compbio.dundee.ac.uk/jabaws/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3407, @@ -223752,7 +226758,7 @@ GLU is a tool for analysing continuous glucose monitoring (CGM) data in epidemio sc:url "https://github.com/MRCIEU/GLU" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3300, @@ -223767,8 +226773,26 @@ GLU is a tool for analysing continuous glucose monitoring (CGM) data in epidemio sc:url "https://www.mathworks.com/matlabcentral/fileexchange/42362-glucose-insulin-modeling" ; biotools:primaryContact "DaveA Albers" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2229, + edam:topic_3366 ; + sc:citation ; + sc:description "Graph-linked unified embedding for single-cell multi-omics data integration." ; + sc:featureList edam:operation_3096, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GLUE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/gao-lab/GLUE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -223790,7 +226814,7 @@ Glutantbase is a database, webtool and method to evaluate mutations for β-gluco sc:url "http://bioinfo.dcc.ufmg.br/glutantbase" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3520 ; sc:citation , @@ -223803,7 +226827,7 @@ Glutantbase is a database, webtool and method to evaluate mutations for β-gluco sc:url "https://github.com/bigict/glyBranch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0154, @@ -223820,7 +226844,7 @@ Glutantbase is a database, webtool and method to evaluate mutations for β-gluco biotools:primaryContact "Wonpil Im" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0601, edam:topic_3520 ; sc:citation , @@ -223836,7 +226860,7 @@ Glutantbase is a database, webtool and method to evaluate mutations for β-gluco sc:url "https://github.com/ruizhang84/GlycanGUIApp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -223851,8 +226875,31 @@ Glutantbase is a database, webtool and method to evaluate mutations for β-gluco sc:url "https://web.expasy.org/glycanmass/" ; biotools:primaryContact "ExPASy helpdesk" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0130, + edam:topic_0166, + edam:topic_0593, + edam:topic_0736, + edam:topic_2830 ; + sc:citation , + "pmcid:PMC8796370", + "pubmed:34864901" ; + sc:description "A tool to quantify glycan shielding of glycosylated proteins." ; + sc:featureList edam:operation_0244, + edam:operation_0387, + edam:operation_2476 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GLYCO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/myungjinlee/GLYCO). a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0152, edam:topic_0154, @@ -223869,7 +226916,7 @@ Glutantbase is a database, webtool and method to evaluate mutations for β-gluco sc:url "http://glyco3d.cermav.cnrs.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0102, @@ -223887,7 +226934,7 @@ Glutantbase is a database, webtool and method to evaluate mutations for β-gluco biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -223909,7 +226956,7 @@ Glutantbase is a database, webtool and method to evaluate mutations for β-gluco "ExPASy helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -223921,10 +226968,10 @@ Glutantbase is a database, webtool and method to evaluate mutations for β-gluco "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/glycoep/" . + sc:url "https://webs.iiitd.edu.in/raghava/glycoep/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0152, @@ -223944,7 +226991,7 @@ Glutantbase is a database, webtool and method to evaluate mutations for β-gluco biotools:primaryContact "Lohmann K.K." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3382 ; @@ -223958,7 +227005,7 @@ A glycan visualizing, drawing and naming application.""" ; sc:url "https://glycotoolkit.com/Tools/GlycoGlyph/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3292, @@ -223973,7 +227020,7 @@ A glycan visualizing, drawing and naming application.""" ; sc:url "https://glycohunter.wordpress.ncsu.edu/downloads/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -223993,22 +227040,22 @@ A glycan visualizing, drawing and naming application.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ], + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence set (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0844" ; - sc:name "Molecular mass" ; - sc:sameAs "http://edamontology.org/data_0844" ] ; + sc:additionalType "http://edamontology.org/data_0844" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecular mass" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0846" ; - sc:name "Chemical formula" ; - sc:sameAs "http://edamontology.org/data_0846" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0846" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Chemical formula" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -224031,14 +227078,14 @@ A glycan visualizing, drawing and naming application.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0982" ; - sc:name "Molecule identifier" ; - sc:sameAs "http://edamontology.org/data_0982" ], + sc:additionalType "http://edamontology.org/data_2291" ; + sc:encodingFormat "http://edamontology.org/format_1963" ; + sc:name "UniProt ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2291" ; - sc:name "UniProt ID" ; - sc:sameAs "http://edamontology.org/data_2291" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0982" ; + sc:encodingFormat "http://edamontology.org/format_1963" ; + sc:name "Molecule identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -224055,7 +227102,7 @@ A glycan visualizing, drawing and naming application.""" ; sc:url "https://glyconnect.expasy.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -224070,7 +227117,7 @@ A glycan visualizing, drawing and naming application.""" ; sc:url "https://glyconnect.expasy.org/compozitor/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0160, @@ -224092,7 +227139,7 @@ Welcome to MonoPathDB, a database of biosynthesis pathways and enzymes for monos sc:url "http://www.bio.iitb.ac.in/glycopathdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0154, @@ -224109,7 +227156,7 @@ Welcome to MonoPathDB, a database of biosynthesis pathways and enzymes for monos sc:url "https://glycopattern.emory.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -224127,32 +227174,45 @@ Loading GlycoPOST Application.""" ; sc:name "GlycoPOST" ; sc:url "https://glycopost.glycosmos.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC3392279", + "pubmed:22808107" ; + sc:description "GlycoPP is a webserver for predicting potential N-and O-glycosites in prokaryotic protein sequence(s), where N-glycosite is an Asn residue and O-glycosite could be a serine or threonine residue having a glycan attached covalently and enzymatically at amide or hydroxyl group respectively." ; + sc:featureList edam:operation_2945 ; + sc:name "glycopp" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/glycopp/index.html" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ], + sc:additionalType "http://edamontology.org/data_2796" ; + sc:name "Linucs ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2796" ; - sc:name "Linucs ID" ; - sc:sameAs "http://edamontology.org/data_2796" ], + sc:additionalType "http://edamontology.org/data_2752" ; + sc:name "GlycoMap ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2752" ; - sc:name "GlycoMap ID" ; - sc:sameAs "http://edamontology.org/data_2752" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2753" ; - sc:name "Carbohydrate conformational map" ; - sc:sameAs "http://edamontology.org/data_2753" ], + sc:additionalType "http://edamontology.org/data_2753" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Carbohydrate conformational map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2313" ; - sc:name "Carbohydrate report" ; - sc:sameAs "http://edamontology.org/data_2313" ], + sc:additionalType "http://edamontology.org/data_2313" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Carbohydrate report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2313" ; - sc:name "Carbohydrate report" ; - sc:sameAs "http://edamontology.org/data_2313" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2313" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Carbohydrate report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0152 ; sc:citation ; @@ -224167,7 +227227,7 @@ Loading GlycoPOST Application.""" ; biotools:primaryContact "Thomas Lütteke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0152, edam:topic_3520 ; @@ -224184,7 +227244,7 @@ Loading GlycoPOST Application.""" ; biotools:primaryContact "Lohmann K.K." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0122, @@ -224201,7 +227261,7 @@ Loading GlycoPOST Application.""" ; biotools:primaryContact "ExPASy helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0102, @@ -224228,7 +227288,7 @@ Loading GlycoPOST Application.""" ; biotools:primaryContact "M. Wilkins" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0152, @@ -224245,7 +227305,7 @@ Loading GlycoPOST Application.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -224266,7 +227326,7 @@ Loading GlycoPOST Application.""" ; biotools:primaryContact "Joseph Zaia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "Glydin' compiles and maps information relative to glycoepitopes (glycan determinants) as published in the literature or reported in databases. The output is an interactive network of strucutrally related glycan sub-structures." ; @@ -224279,8 +227339,32 @@ Loading GlycoPOST Application.""" ; sc:url "http://glycoproteome.expasy.org/epitopes/" ; biotools:primaryContact "ExPASy helpdesk" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0160, + edam:topic_3170, + edam:topic_3474 ; + sc:citation , + "pubmed:34559595" ; + sc:description "A webserver for predicting glycosylation sites on small RNAs." ; + sc:featureList edam:operation_0417, + edam:operation_3901, + edam:operation_3902 ; + sc:isAccessibleForFree true ; + sc:name "GlyinsRNA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.rnanut.net/glyinsrna" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0152, @@ -224302,7 +227386,7 @@ Loading GlycoPOST Application.""" ; sc:url "http://www.glycosciences.de/sweetdb/start.php?action=form_shift_estimation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -224318,7 +227402,7 @@ Loading GlycoPOST Application.""" ; biotools:primaryContact "ExPASy helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -224341,7 +227425,7 @@ The program can be run from the location of the script using python main.py. The sc:url "https://github.com/bschulzlab/glypniro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082 ; sc:citation "pubmed:15980456" ; @@ -224357,7 +227441,7 @@ The program can be run from the location of the script using python main.py. The biotools:primaryContact "Andreas Bohne-Lang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -224372,7 +227456,7 @@ The program can be run from the location of the script using python main.py. The biotools:primaryContact "ExPASy helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0160, @@ -224389,28 +227473,44 @@ GlyTouCan is the international glycan structure repository. This repository is a sc:name "GlyTouCan" ; sc:url "https://glytoucan.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2269, + edam:topic_3168, + edam:topic_3474 ; + sc:citation , + "pubmed:35533298" ; + sc:description "GM-Pep is an integrated approach contained two parts, one is multi-class generator (CVAE model) which was responsibility for generating potential drug-like peptides, the other is multi-classifier (Deep-Multiclassifier) which predicted bioactivity probability of generated peptides by CVAE model." ; + sc:featureList edam:operation_3644 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GM-Pep" ; + sc:url "https://github.com/TimothyChen225/GM-Pep" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation , @@ -224426,38 +227526,38 @@ GlyTouCan is the international glycan structure repository. This repository is a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation , @@ -224476,26 +227576,26 @@ GlyTouCan is the international glycan structure repository. This repository is a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -224517,18 +227617,18 @@ GlyTouCan is the international glycan structure repository. This repository is a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2885 ; @@ -224549,26 +227649,26 @@ GlyTouCan is the international glycan structure repository. This repository is a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0867" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -224588,7 +227688,7 @@ GlyTouCan is the international glycan structure repository. This repository is a biotools:primaryContact "Michael Lawrence" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -224609,7 +227709,7 @@ GlyTouCan is the international glycan structure repository. This repository is a biotools:primaryContact "Xuewen Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -224625,7 +227725,7 @@ GlyTouCan is the international glycan structure repository. This repository is a sc:url "http://sourceforge.net/projects/gmato/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -224642,7 +227742,7 @@ GlyTouCan is the international glycan structure repository. This repository is a sc:url "http://sourceforge.net/projects/gmcloser/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3071 ; @@ -224658,7 +227758,7 @@ GlyTouCan is the international glycan structure repository. This repository is a sc:url "http://gmd.mpimp-golm.mpg.de/REST/default.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -224676,7 +227776,7 @@ GlyTouCan is the international glycan structure repository. This repository is a biotools:primaryContact "Albin Sandelin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053 ; @@ -224696,8 +227796,30 @@ GlyTouCan is the international glycan structure repository. This repository is a sc:url "http://www.ssg.uab.edu/gmdr/" ; biotools:primaryContact "Xiang-Yang Lou" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0602, + edam:topic_3047, + edam:topic_3170, + edam:topic_3474 ; + sc:citation , + "pubmed:35451457" ; + sc:description "High-throughput Analysis of Biomolecular Data using Graph-based Multiple Hierarchical Consensus Clustering." ; + sc:featureList edam:operation_3223, + edam:operation_3432, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "GMHCC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/yifuLu/GMHCC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0202, @@ -224722,7 +227844,7 @@ GMIEC is a shiny application to integrate multi-omics data. GMIEC is a new user- sc:url "https://github.com/guidmt/GMIEC-shiny" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2885 ; @@ -224736,7 +227858,7 @@ GMIEC is a shiny application to integrate multi-omics data. GMIEC is a new user- biotools:primaryContact "Sven Bergmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170 ; @@ -224745,8 +227867,21 @@ GMIEC is a shiny application to integrate multi-omics data. GMIEC is a new user- sc:name "gmorse" ; sc:url "http://www.genoscope.cns.fr/externe/gmorse/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "GMPEsi: Generalized Model for Predicting Efficacy of siRNAs" ; + sc:featureList edam:operation_2945 ; + sc:name "GMPEsi" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/gmpesi/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3168 ; @@ -224758,8 +227893,28 @@ GMIEC is a shiny application to integrate multi-omics data. GMIEC is a new user- sc:softwareHelp ; sc:url "http://www.bioinformatics.deib.polimi.it/genomic_computing/GMQL/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0632, + edam:topic_0654, + edam:topic_3295, + edam:topic_3518 ; + sc:citation ; + sc:description "GMQN is a reference based method that removes unwanted technical variations at signal intensity level between samples for 450K and 850K DNA methylation array. It can also easily combined with Subset-quantile Within Array Normalization(SWAN) or Beta-Mixture Quantile (BMIQ) Normalisation to remove probe design bias." ; + sc:featureList edam:operation_3204, + edam:operation_3431, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GMQN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/MengweiLi-project/gmqn" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3517 ; @@ -224777,7 +227932,7 @@ GMIEC is a shiny application to integrate multi-omics data. GMIEC is a new user- biotools:primaryContact "Yuan-De Tan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3170 ; @@ -224794,7 +227949,7 @@ GMIEC is a shiny application to integrate multi-omics data. GMIEC is a new user- biotools:primaryContact "Contact list" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -224813,7 +227968,7 @@ GMSCA: Gene Multifunctionality in Secondary Co-expression Analysis.""" ; sc:url "https://github.com/drlaguna/GMSCA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -224835,7 +227990,7 @@ GMStool is a tool of selecting an optimal marker-set for predicting a continuous sc:url "http://www.github.com/JaeYoonKim72/GMStool" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -224849,8 +228004,25 @@ GMStool is a tool of selecting an optimal marker-set for predicting a continuous sc:softwareHelp ; sc:url "https://code.google.com/p/gmv/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0176 ; + sc:citation , + "pubmed:34586825" ; + sc:description "A New Tool to Perform End-State Free Energy Calculations with GROMACS." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "gmx_MMPBSA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/Valdes-Tresanco-MS/gmx_MMPBSA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0203 ; @@ -224869,7 +228041,7 @@ GMStool is a tool of selecting an optimal marker-set for predicting a continuous sc:url "https://github.com/kassonlab/gmxapi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -224885,7 +228057,7 @@ GMStool is a tool of selecting an optimal marker-set for predicting a continuous sc:url "http://ibis.inrialpes.fr/article122.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -224900,7 +228072,7 @@ GMStool is a tool of selecting an optimal marker-set for predicting a continuous sc:url "http://sourceforge.net/projects/gnatmatlab/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0593, @@ -224920,7 +228092,7 @@ GMStool is a tool of selecting an optimal marker-set for predicting a continuous biotools:primaryContact "Mathias Nilsson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -224938,7 +228110,7 @@ GMStool is a tool of selecting an optimal marker-set for predicting a continuous "Norberto Díaz-Díaz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -224958,8 +228130,26 @@ GNET2 has been developed and used by the Bioinformatics, Data Mining and Machine sc:name "GNET2" ; sc:url "https://github.com/jianlin-cheng/GNET2" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3382, + edam:topic_3390, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC9007240", + "pubmed:35434472" ; + sc:description "Global Nutrition and Health Atlas (GNHA)." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:name "GNHA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://sites.tufts.edu/gnha/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -224979,7 +228169,7 @@ GNET2 has been developed and used by the Bioinformatics, Data Mining and Machine biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -224997,7 +228187,7 @@ gnina (pronounced NEE-na) is a molecular docking program with integrated support sc:url "https://github.com/gnina/gnina" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -225014,8 +228204,87 @@ GNIPLR (gene networks inference based on projection and lagged regression) is a sc:name "GNIPLR" ; sc:url "https://github.com/zyllluck/GNIPLR" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_2640, + edam:topic_3295, + edam:topic_3474, + edam:topic_3512 ; + sc:citation ; + sc:description "Disease subnetwork detection with explainable Graph Neural Networks." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "GNN-SubNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/pievos101/GNN-SubNet" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3474 ; + sc:citation , + "pubmed:35389867" ; + sc:description "A Hierarchical and Adaptive Graph Neural Network for Parameter Space Exploration of Unstructured-Mesh Ocean Simulations." ; + sc:featureList edam:operation_2426, + edam:operation_3799, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GNN-Surrogate" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/trainsn/GNN-Surrogate" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0769, + edam:topic_3298, + edam:topic_3303, + edam:topic_3474 ; + sc:citation , + "pubmed:35608290" ; + sc:description "A graph neural network (GNN)-based automated pipeline (GNNHap) that could rapidly analyze mouse genetic model data and identify high probability causal genetic factors for analyzed traits." ; + sc:featureList edam:operation_0276, + edam:operation_0282 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GNNHap" ; + sc:url "https://github.com/zqfang/gnnhap" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0622, + edam:topic_2229, + edam:topic_3170, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC8650344", + "pubmed:34876032" ; + sc:description "An efficient scRNA-seq dropout imputation method using graph attention network." ; + sc:featureList edam:operation_0314, + edam:operation_3435, + edam:operation_3557, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "GNNImpute" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Lav-i/GNNImpute" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -225041,7 +228310,7 @@ GNIPLR (gene networks inference based on projection and lagged regression) is a sc:url "http://gnomad.broadinstitute.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3320, @@ -225063,7 +228332,7 @@ The Genome Aggregation Database (gnomAD) is a resource developed by an internati sc:url "https://gnomad.broadinstitute.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0654, @@ -225081,7 +228350,7 @@ The Genome Aggregation Database (gnomAD) is a resource developed by an internati sc:url "http://gnome.tchlab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0769, @@ -225099,40 +228368,53 @@ Support: https://gitlab.com/gaspilleura/gnomo/.""" ; sc:name "gNOMO" ; sc:url "https://gitlab.com/rki_bioinformatics/gnomo" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_2640, + edam:topic_3168, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC9051584", + "pubmed:35677713" ; + sc:description "An R Shiny app supporting cancer genomics survival analysis with cBioPortal." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GNOSIS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://lydiaking.shinyapps.io/GNOSIS/" . + a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_0920" ; + sc:name "Genotype/phenotype report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0622, @@ -225159,7 +228441,7 @@ Support: https://gitlab.com/gaspilleura/gnomo/.""" ; sc:url "https://urgi.versailles.inrae.fr/gnpis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0153, edam:topic_3172, @@ -225185,7 +228467,7 @@ Support: https://gitlab.com/gaspilleura/gnomo/.""" ; biotools:primaryContact "Mingxun Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_2269, @@ -225199,7 +228481,7 @@ Support: https://gitlab.com/gaspilleura/gnomo/.""" ; sc:url "http://www.gnu.org/software/mcsim/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622 ; @@ -225213,7 +228495,7 @@ Support: https://gitlab.com/gaspilleura/gnomo/.""" ; "Dr. Quinn Snell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -225231,7 +228513,7 @@ Gene Novelty Unit-based Virus IDentification for SARS-CoV-2.""" ; sc:url "https://github.com/ahmedmagds/GNUVID" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0114, @@ -225250,7 +228532,7 @@ Gene Novelty Unit-based Virus IDentification for SARS-CoV-2.""" ; biotools:primaryContact "Helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -225271,7 +228553,7 @@ SUMMARY Genome-wide CRISPR screens are an effective discovery tool for genes tha sc:url "https://github.com/developerpiru/TRACS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0154, @@ -225289,7 +228571,7 @@ SUMMARY Genome-wide CRISPR screens are an effective discovery tool for genes tha sc:url "http://www.genmapp.org/go_elite/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3053, @@ -225305,7 +228587,7 @@ GO-Figure! offers a simple solution for command-line plotting of informative sum sc:url "https://gitlab.com/evogenlab/GO-Figure" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation ; @@ -225320,7 +228602,7 @@ GO-Figure! offers a simple solution for command-line plotting of informative sum sc:url "http://www.bioinformatics.org/go2msig/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -225337,7 +228619,7 @@ GO-Figure! offers a simple solution for command-line plotting of informative sum sc:url "http://geneontology.org/page/go-enrichment-analysis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -225355,7 +228637,7 @@ GO-Figure! offers a simple solution for command-line plotting of informative sum biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation ; @@ -225369,7 +228651,7 @@ GO-Figure! offers a simple solution for command-line plotting of informative sum sc:url "http://go.princeton.edu/cgi-bin/GOTermFinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089 ; sc:description "A tool for mapping the granular GO annotations for genes in a list to a set of broader, high-level GO parents terms." ; @@ -225382,7 +228664,7 @@ GO-Figure! offers a simple solution for command-line plotting of informative sum sc:url "http://go.princeton.edu/cgi-bin/GOTermMapper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0219, @@ -225404,26 +228686,26 @@ GO-Figure! offers a simple solution for command-line plotting of informative sum a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_1864" ; + sc:encodingFormat "http://edamontology.org/format_2060" ; + sc:name "Map set data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1864" ; - sc:name "Map set data" ; - sc:sameAs "http://edamontology.org/data_1864" ], + sc:additionalType "http://edamontology.org/data_0582" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ] ; + sc:additionalType "http://edamontology.org/data_0582" ; + sc:encodingFormat "http://edamontology.org/format_2549" ; + sc:name "Ontology" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3754" ; - sc:name "GO-term enrichment data" ; - sc:sameAs "http://edamontology.org/data_3754" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3754" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "GO-term enrichment data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0121, @@ -225440,7 +228722,7 @@ GO-Figure! offers a simple solution for command-line plotting of informative sum sc:url "http://www.ms-utils.org/goa_gubbar/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0080 ; @@ -225455,7 +228737,7 @@ GO-Figure! offers a simple solution for command-line plotting of informative sum sc:url "https://github.com/fredericlemoine/goalign" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -225470,7 +228752,7 @@ GO-Figure! offers a simple solution for command-line plotting of informative sum sc:url "http://cssb.biology.gatech.edu/GOAP/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3390, @@ -225492,7 +228774,7 @@ Datasets and results will be uploaded after the manuscript will be send to a jou sc:url "https://gitlab.com/muntisa/goat-bones-machine-learning" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -225515,7 +228797,7 @@ Datasets and results will be uploaded after the manuscript will be send to a jou biotools:primaryContact "Detlef Groth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation ; @@ -225529,7 +228811,7 @@ Datasets and results will be uploaded after the manuscript will be send to a jou biotools:primaryContact "Goby-framework support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -225550,10 +228832,9 @@ Datasets and results will be uploaded after the manuscript will be send to a jou a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2223" ; - sc:name "Ontology metadata" ; - sc:sameAs "http://edamontology.org/data_2223" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2223" ; + sc:name "Ontology metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -225583,7 +228864,7 @@ Datasets and results will be uploaded after the manuscript will be send to a jou sc:url "http://emboss.open-bio.org/rel/rel6/apps/godef.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Assigning Godel number to sequences, towards the definition of a new dimensional space for comparisons" ; sc:isAccessibleForFree true ; sc:license "MIT" ; @@ -225593,14 +228874,13 @@ Datasets and results will be uploaded after the manuscript will be send to a jou a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176 ; sc:citation , @@ -225617,7 +228897,7 @@ Datasets and results will be uploaded after the manuscript will be send to a jou biotools:primaryContact "Institute for Research in Biomedicine Barcelona" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0621, @@ -225637,7 +228917,7 @@ GODoc: A High-Throughput Protein Function Prediction using the Novel k-nearest-n sc:url "https://github.com/changlabtw/GODoc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -225658,7 +228938,7 @@ GODoc: A High-Throughput Protein Function Prediction using the Novel k-nearest-n biotools:primaryContact "Webmaster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -225679,18 +228959,18 @@ Paper: RNA-Seq-based breast cancer subtype classification using machine learning a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ] ; + sc:additionalType "http://edamontology.org/data_0582" ; + sc:encodingFormat "http://edamontology.org/format_2197" ; + sc:name "Ontology" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3754" ; - sc:name "GO-term enrichment data" ; - sc:sameAs "http://edamontology.org/data_3754" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3754" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "GO-term enrichment data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308 ; sc:author "Daniel Faria" ; @@ -225708,18 +228988,18 @@ It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -225738,7 +229018,7 @@ It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian biotools:primaryContact "Kevin Rue-Albrecht" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053 ; @@ -225750,8 +229030,29 @@ It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian sc:softwareHelp ; sc:url "https://www.msu.edu/~jinchen/GOExtender/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0199, + edam:topic_0622, + edam:topic_3305 ; + sc:citation , + "pubmed:35789376" ; + sc:description "gofasta is a command-line utility developed to handle SARS-CoV-2 alignments, but should be useful more generally for handling consensus genomes of any microbial pathogen. It is used on datasets of millions of sequences, including by the United Kingdom's daily SARS-CoV-2 genome processing pipelines, Pangolin and Civet." ; + sc:featureList edam:operation_0491, + edam:operation_0525, + edam:operation_3182 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "gofasta" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/virus-evolution/gofasta" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0602, @@ -225767,7 +229068,7 @@ It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian sc:url "http://llama.mshri.on.ca/gofish/GoFishWelcome.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089 ; sc:description "It performs a gene ontology enrichment analysis based on the ontology enrichment software FUNC. GO-annotations are obtained from OrganismDb or OrgDb packages; the GO-graph is included in the package and updated regularly. GOfuncR provides the standard candidate vs. background enrichment analysis using the hypergeometric test, as well as three additional tests." ; @@ -225784,7 +229085,7 @@ It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian biotools:primaryContact "Steffi Grote" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -225802,7 +229103,7 @@ It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian biotools:primaryContact "Jing Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218 ; sc:citation "pubmed:19465383" ; @@ -225815,7 +229116,7 @@ It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian sc:url "http://gopubmed.biotec.tu-dresden.de/gogene" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275, @@ -225832,7 +229133,7 @@ It was developed by the BioData.pt / ELIXIR-PT team at the Instituto Gulbenkian sc:url "http://www.ccdc.cam.ac.uk/solutions/csd-discovery/components/gold/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3277, @@ -225851,7 +229152,7 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac sc:url "https://gold.jgi.doe.gov/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -225873,7 +229174,7 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac "General" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -225894,14 +229195,14 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0582" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0089, @@ -225934,7 +229235,7 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac sc:url "http://www.gomapman.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -225949,7 +229250,7 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac sc:url "http://discover.nci.nih.gov/gominer/goservice.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0203, @@ -225966,10 +229267,9 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2223" ; - sc:name "Ontology metadata" ; - sc:sameAs "http://edamontology.org/data_2223" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2223" ; + sc:name "Ontology metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -225999,7 +229299,7 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac sc:url "http://emboss.open-bio.org/rel/rel6/apps/goname.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053, @@ -226012,8 +229312,26 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac sc:softwareHelp ; sc:url "http://bcrc.bio.umass.edu/pedigreesoftware/node/9" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0821, + edam:topic_3070 ; + sc:citation , + "pmcid:PMC8907294", + "pubmed:35264663" ; + sc:description "GOntoSimis a method to determine the functional similarity between genes." ; + sc:featureList edam:operation_2422, + edam:operation_3432, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GOntoSim" ; + sc:url "http://www.cbrlab.org/GOntoSim.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation ; @@ -226027,7 +229345,7 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac sc:url "http://gowiki.tamu.edu/wiki/index.php/Main_Page" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -226045,8 +229363,31 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac sc:url "http://bioconductor.org/packages/release/bioc/html/GoogleGenomics.html" ; biotools:primaryContact "Siddhartha Bagaria" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_0769, + edam:topic_3169, + edam:topic_3295, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9252088", + "pubmed:35788238" ; + sc:description "GoPeaks is a peak caller designed for CUT&TAG/CUT&RUN sequencing data. GoPeaks by default works best with narrow peaks such as H3K4me3 and transcription factors. However, broad epigenetic marks like H3K27Ac/H3K4me1 require different the step, slide, and minwidth parameters. We encourage users to explore the parameters of GoPeaks to analyze their data." ; + sc:featureList edam:operation_3215, + edam:operation_3222, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GoPeaks" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/maxsonBraunLab/gopeaks" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092 ; @@ -226061,7 +229402,7 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac sc:url "https://wencke.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2815, @@ -226080,7 +229421,7 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac biotools:primaryContact "Lidia Chrabaszcz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -226099,7 +229440,7 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac biotools:primaryContact "Alex Sanchez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation "pubmed:15980585" ; @@ -226114,7 +229455,7 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac biotools:primaryContact "Michael Schroeder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0092, @@ -226131,7 +229472,7 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac sc:url "http://gorgon.wustl.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0089, @@ -226149,14 +229490,14 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3299, edam:topic_3345 ; @@ -226179,14 +229520,14 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ] ; + sc:additionalType "http://edamontology.org/data_0582" ; + sc:encodingFormat "http://edamontology.org/format_2195" ; + sc:name "Ontology" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0089 ; @@ -226205,7 +229546,7 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170 ; @@ -226227,26 +229568,26 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1027" ; - sc:name "Gene ID (NCBI)" ; - sc:sameAs "http://edamontology.org/data_1027" ] ; + sc:additionalType "http://edamontology.org/data_1027" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene ID (NCBI)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ], + sc:additionalType "http://edamontology.org/data_2872" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "ID list" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_0582" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2872" ; - sc:name "ID list" ; - sc:sameAs "http://edamontology.org/data_2872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0089, @@ -226267,14 +229608,14 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0984" ; - sc:name "Molecule name" ; - sc:sameAs "http://edamontology.org/data_0984" ] ; + sc:additionalType "http://edamontology.org/data_0984" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Molecule name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0984" ; - sc:name "Molecule name" ; - sc:sameAs "http://edamontology.org/data_0984" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0984" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Molecule name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0091, @@ -226295,8 +229636,28 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac sc:softwareVersion "1.1.2" ; sc:url "https://github.com/lifs-tools/goslin" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0092, + edam:topic_0203, + edam:topic_0622, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8826597", + "pubmed:34596551" ; + sc:description "A Grammar-based Toolkit for Scalable and Interactive Genomics Data Visualization." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Gosling" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gosling.js.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0797, edam:topic_3053, @@ -226315,7 +229676,7 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -226340,26 +229701,26 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ] ; + sc:additionalType "http://edamontology.org/data_0582" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0089, @@ -226380,14 +229741,12 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2269, @@ -226406,7 +229765,7 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac sc:url "http://raivokolde.github.io/GOsummaries/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -226422,7 +229781,7 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac sc:url "http://systemsbio.ucsd.edu/GoSurfer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -226443,7 +229802,7 @@ GOLD: Genomes Online Database, is a World Wide Web resource for comprehensive ac biotools:primaryContact "Borbala Mifsud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -226465,7 +229824,7 @@ The implement of GOTI-seq requires the following sofwares pre-installed on your sc:url "https://github.com/sydaileen/GOTI-seq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -226481,7 +229840,7 @@ The implement of GOTI-seq requires the following sofwares pre-installed on your sc:url "http://www.bioinf.uni-leipzig.de/Software/GotohScan/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0089, @@ -226504,7 +229863,7 @@ The implement of GOTI-seq requires the following sofwares pre-installed on your biotools:primaryContact "Agnes Paquet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, @@ -226522,8 +229881,31 @@ The implement of GOTI-seq requires the following sofwares pre-installed on your "Windows" ; sc:url "https://github.com/evolbioinfo/gotree" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0625, + edam:topic_0780, + edam:topic_3810 ; + sc:citation , + "pubmed:34676389" ; + sc:description "Genome optimization via virtual simulation to accelerate maize hybrid breeding." ; + sc:featureList edam:operation_0310, + edam:operation_0479, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "GOVS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "1.0" ; + sc:url "https://govs-pack.github.io/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3056, @@ -226543,7 +229925,7 @@ The implement of GOTI-seq requires the following sofwares pre-installed on your biotools:primaryContact "Robert Kofler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0607, edam:topic_0611, @@ -226567,7 +229949,7 @@ gP2S (for Genentech’s Protein to Structure) is a user-friendly web-based labor sc:url "https://github.com/arohou/gP2S" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0140, @@ -226588,7 +229970,7 @@ GP4 - Gram Positive Protein Prediction Pipeline.""" ; sc:url "http://gp4.hpc.rug.nl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0121, @@ -226612,7 +229994,7 @@ The Glycopeptide Spectrum Annotation program ( gpAnnotate ) is designed to annot sc:url "https://virtualglycome.org/gpAnnotate" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -226627,8 +230009,30 @@ The Glycopeptide Spectrum Annotation program ( gpAnnotate ) is designed to annot sc:softwareHelp ; sc:url "http://dongjunchung.github.io/GPA/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_2885, + edam:topic_3517 ; + sc:citation , + "pubmed:34849578" ; + sc:description "Statistical Approach for Functional-Annotation-Tree-Guided Prioritization of GWAS Results." ; + sc:featureList edam:operation_0484, + edam:operation_3196, + edam:operation_3557, + edam:operation_3659, + edam:operation_3661 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "GPA-Tree" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://dongjunchung.github.io/GPATree/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0199, @@ -226645,10 +230049,9 @@ The Glycopeptide Spectrum Annotation program ( gpAnnotate ) is designed to annot a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -226671,7 +230074,7 @@ GPAR provides drug repurposing and MOAs prediction services. Using gene expressi sc:url "http://gpar.idrug.net.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -226693,7 +230096,7 @@ GPAR provides drug repurposing and MOAs prediction services. Using gene expressi biotools:primaryContact "Sun Ah Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -226712,7 +230115,7 @@ GPAR provides drug repurposing and MOAs prediction services. Using gene expressi sc:url "http://genemed.tech/gpcards/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -226729,7 +230132,7 @@ GPcounts is Gaussian process regression package for counts data with negative bi sc:url "https://github.com/ManchesterBioinference/GPcounts" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0121 ; @@ -226745,7 +230148,7 @@ GPcounts is Gaussian process regression package for counts data with negative bi biotools:primaryContact "Xuan Xiao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0736, edam:topic_0820, @@ -226763,7 +230166,7 @@ GPcounts is Gaussian process regression package for counts data with negative bi sc:url "http://open.gpcr-modsim.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0623, @@ -226786,10 +230189,10 @@ To analyze the sequence either upload a file with the sequences in FASTA format, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3671" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Text" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Suite", "Web application" ; @@ -226811,14 +230214,13 @@ To analyze the sequence either upload a file with the sequences in FASTA format, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0820, @@ -226840,14 +230242,12 @@ To analyze the sequence either upload a file with the sequences in FASTA format, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3490" ; - sc:name "Chemical structure sketch" ; - sc:sameAs "http://edamontology.org/data_3490" ] ; + sc:additionalType "http://edamontology.org/data_3490" ; + sc:name "Chemical structure sketch" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0962" ; + sc:name "Small molecule report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0820 ; sc:author "ChEMBL Team" ; @@ -226866,7 +230266,7 @@ To analyze the sequence either upload a file with the sequences in FASTA format, biotools:primaryContact "Mark Davies" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -226884,46 +230284,36 @@ To analyze the sequence either upload a file with the sequences in FASTA format, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ], + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1707" ; - sc:name "Phylogenetic tree image" ; - sc:sameAs "http://edamontology.org/data_1707" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_1707" ; + sc:name "Phylogenetic tree image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -226962,14 +230352,12 @@ To analyze the sequence either upload a file with the sequences in FASTA format, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080 ; @@ -226986,7 +230374,7 @@ To analyze the sequence either upload a file with the sequences in FASTA format, sc:url "http://gpcrhmm.sbc.su.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2275 ; @@ -227001,7 +230389,7 @@ To analyze the sequence either upload a file with the sequences in FASTA format, sc:url "http://gpcrm.biomodellab.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation "pubmed:15215416" ; @@ -227015,19 +230403,18 @@ To analyze the sequence either upload a file with the sequences in FASTA format, "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/gpcrpred/" ; + sc:url "https://webs.iiitd.edu.in/raghava/gpcrpred/" ; biotools:primaryContact "Dr. G.P.S. Raghava" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1131" ; - sc:name "Protein family name" ; - sc:sameAs "http://edamontology.org/data_1131" ] ; + sc:additionalType "http://edamontology.org/data_1131" ; + sc:name "Protein family name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0820 ; @@ -227042,7 +230429,7 @@ To analyze the sequence either upload a file with the sequences in FASTA format, sc:url "http://gpcrdb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -227063,7 +230450,7 @@ To analyze the sequence either upload a file with the sequences in FASTA format, biotools:primaryContact "G.P.S. Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0199, @@ -227087,7 +230474,7 @@ To analyze the sequence either upload a file with the sequences in FASTA format, sc:url "https://gpcrsignal.biomodellab.eu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -227102,8 +230489,28 @@ To analyze the sequence either upload a file with the sequences in FASTA format, sc:name "GPDBN" ; sc:url "https://github.com/isfj/GPDBN" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0208, + edam:topic_2640, + edam:topic_3517 ; + sc:citation , + "pubmed:34534336" ; + sc:description "GPEdit systematically investigated the impact of genetic variants and pharmacogenomics landscape of RNA editing event across multiple cancer types." ; + sc:featureList edam:operation_0282, + edam:operation_3096, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "GPEdit" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://hanlab.uth.edu/GPEdit/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0196, @@ -227123,7 +230530,7 @@ To analyze the sequence either upload a file with the sequences in FASTA format, sc:url "http://bioinfadmin.cs.ucl.ac.uk/downloads/gpufragfold/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -227141,7 +230548,7 @@ To analyze the sequence either upload a file with the sequences in FASTA format, sc:url "http://bioinformatics.ustc.edu.cn/gphmm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3373, @@ -227158,7 +230565,7 @@ To analyze the sequence either upload a file with the sequences in FASTA format, biotools:primaryContact "Iraj Hosseini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation , @@ -227172,22 +230579,8 @@ To analyze the sequence either upload a file with the sequences in FASTA format, sc:softwareHelp ; sc:url "http://zzz.bwh.harvard.edu/plink/gplink.shtml" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_0634 ; - sc:citation , - "pmcid:PMC6797989", - "pubmed:31545495" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE BROKEN! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/ggplot2 (GGPLOT2.ORG) | > CORRECT NAME OF TOOL COULD ALSO BE 'DEGs' | Bioinformatics analysis of gene expression profile data to screen key genes involved in intracranial aneurysms | Intracranial aneurysm (IA) is a cerebrovascular disease with a high mortality rate. The pathogenesis of IA remains unclear and the treatment limited. The purpose of the present study was to identify the key genes expressed in IAs and provide the basis for further research and treatment. The raw dataset GSE75436 was downloaded from Gene Expression Omnibus, including 15 IA samples and 15 matched superficial temporal artery (STA) samples. Then, differentially expressed genes (DEGs) were identified using the limma package in R software. Hierarchical clustering analysis was performed on the DEGs using the gplot2 package in R" ; - sc:featureList edam:operation_0313, - edam:operation_2436, - edam:operation_3223 ; - sc:name "gplot2" ; - sc:url "http://ggplot2.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269 ; @@ -227204,7 +230597,7 @@ To analyze the sequence either upload a file with the sequences in FASTA format, biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622 ; @@ -227222,22 +230615,21 @@ To analyze the sequence either upload a file with the sequences in FASTA format, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3711" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:name "Mass spectrum" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3520, @@ -227260,7 +230652,7 @@ To analyze the sequence either upload a file with the sequences in FASTA format, biotools:primaryContact "Lighthouse data" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_1775 ; @@ -227277,7 +230669,7 @@ To analyze the sequence either upload a file with the sequences in FASTA format, biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3071 ; @@ -227292,7 +230684,7 @@ To analyze the sequence either upload a file with the sequences in FASTA format, sc:url "http://wiki.thegpm.org/wiki/GPMDB_REST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -227309,7 +230701,7 @@ To analyze the sequence either upload a file with the sequences in FASTA format, biotools:primaryContact "Tzong-Yi Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0097 ; @@ -227325,7 +230717,7 @@ To analyze the sequence either upload a file with the sequences in FASTA format, biotools:primaryContact "Ziding Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -227346,7 +230738,7 @@ To reproduce experiments described in the paper the following are also required: sc:url "https://github.com/AlgoLab/gppf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -227366,7 +230758,7 @@ We provide gpps, that can be used to infer cancer progressions from single cell sc:url "https://github.com/AlgoLab/gpps" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3474 ; @@ -227382,7 +230774,7 @@ m7Gpredictor was implemented in python 2.7.""" ; sc:url "https://github.com/NWAFU-LiuLab/m7Gpredictor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -227402,7 +230794,7 @@ m7Gpredictor was implemented in python 2.7.""" ; biotools:primaryContact "Alfredo Kalaitzis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0769, @@ -227420,18 +230812,18 @@ m7Gpredictor was implemented in python 2.7.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_2295" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_0089, @@ -227459,18 +230851,18 @@ m7Gpredictor was implemented in python 2.7.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2872" ; - sc:name "ID list" ; - sc:sameAs "http://edamontology.org/data_2872" ] ; + sc:additionalType "http://edamontology.org/data_2872" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "ID list" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2872" ; - sc:name "ID list" ; - sc:sameAs "http://edamontology.org/data_2872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2872" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "ID list" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -227504,7 +230896,7 @@ m7Gpredictor was implemented in python 2.7.""" ; biotools:primaryContact "Institute of Computer Science, University of Tartu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation , @@ -227519,7 +230911,7 @@ m7Gpredictor was implemented in python 2.7.""" ; sc:url "http://aias.biol.uoa.gr/GprotPRED/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -227539,7 +230931,7 @@ m7Gpredictor was implemented in python 2.7.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0749, @@ -227558,7 +230950,7 @@ m7Gpredictor was implemented in python 2.7.""" ; "Yuchun Guo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0153, @@ -227579,7 +230971,7 @@ Kinase-specific Phosphorylation Site Prediction.""" ; sc:url "http://gpspalm.biocuckoo.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0160, @@ -227599,8 +230991,50 @@ Kinase-specific Phosphorylation Site Prediction.""" ; biotools:primaryContact "Jian Ren", "Yu Xue" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workbench" ; + sc:applicationSubCategory edam:topic_0601, + edam:topic_0821, + edam:topic_3068, + edam:topic_3474 ; + sc:citation , + "pubmed:35037020" ; + sc:description "Hybrid-learning framework for prediction of general and E3-specific lysine ubiquitination sites." ; + sc:featureList edam:operation_0417, + edam:operation_3659, + edam:operation_3755 ; + sc:isAccessibleForFree true ; + sc:name "GPS-Uber" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://gpsuber.biocuckoo.cn/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3053, + edam:topic_3305, + edam:topic_3318 ; + sc:citation , + "pmcid:PMC8915920", + "pubmed:35281484" ; + sc:description "A Python library for building spatial data and extracting spatial measures from raw GPS data." ; + sc:featureList edam:operation_2422, + edam:operation_3435, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GPS2space" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/shuai-zhou/GPS2space" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0089, @@ -227622,7 +231056,7 @@ Kinase-specific Phosphorylation Site Prediction.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -227646,7 +231080,7 @@ Before run GPSE to a genome or a dataset of sequences, users should carefully mo sc:url "https://github.com/JinyuanSun/GPSE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_3170 ; @@ -227661,8 +231095,29 @@ Before run GPSE to a genome or a dataset of sequences, users should carefully mo sc:url "http://www-rcf.usc.edu/%7Eliangche/software.html" ; biotools:primaryContact "Liang Chen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_3169, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8756198", + "pubmed:34672337" ; + sc:description "An R Package for Comparing Genomic-binding Profile Similarity among Transcriptional Regulators using Customizable Databases." ; + sc:featureList edam:operation_0224, + edam:operation_0314, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GPSmatch" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Bao-Lab/GPSmatch" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0625, @@ -227683,8 +231138,21 @@ GPSno systematically investigated the impact of genetic variants and pharmacogen sc:name "GPSno" ; sc:url "http://hanlab.uth.edu/GPSno" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "GPSR 1.0: This package developed mainly for UNIX machines. It can be downloaded from webs.iiitd.edu.in/raghava/gpsr/" ; + sc:featureList edam:operation_2945 ; + sc:name "gpsr" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/gpsr/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_1775, @@ -227705,7 +231173,7 @@ GPSno systematically investigated the impact of genetic variants and pharmacogen "GenOuest BioInformatics Platform" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654 ; @@ -227718,7 +231186,7 @@ GPSno systematically investigated the impact of genetic variants and pharmacogen sc:url "http://www.itb.cnr.it/web/bioinformatics/gpu-bsm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -227736,7 +231204,7 @@ GPSno systematically investigated the impact of genetic variants and pharmacogen biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, @@ -227757,8 +231225,41 @@ This implementation can be used to run on CPU only, or use the GPU-accelerated v sc:name "GPU-Darwin" ; sc:url "https://github.com/Tongdongq/darwin-gpu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web service" ; + sc:applicationSubCategory edam:topic_3474 ; + sc:description "An open-source, docker-based, and GPU-enabled jupyterlab notebook has been developed that can run on any compute infrastructure for rapid prototyping and developing end-to-end AI projects. In addition, with such a notebook, long-running AI model training programs can be executed remotely. Other features include GPU support for faster training, git integration for version control, the option of creating and executing pipelines of notebooks, and the availability of multiple dashboards for monitoring compute resources." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GPU-enabled docker container with Jupyterlab for AI" ; + sc:operatingSystem "Linux" ; + sc:softwareVersion "0.1" ; + sc:url "https://github.com/anuprulez/ml-jupyter-notebook" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Library", + "Workflow" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0130, + edam:topic_0196, + edam:topic_0736 ; + sc:citation , + "pmcid:PMC8896630", + "pubmed:34978562" ; + sc:description "A GPU accelerated I-TASSER protein structure prediction tool." ; + sc:featureList edam:operation_0302, + edam:operation_0474, + edam:operation_1777 ; + sc:isAccessibleForFree true ; + sc:name "GPU-I-TASSER" ; + sc:operatingSystem "Windows" ; + sc:url "https://zhanggroup.org/GPU-I-TASSER/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2885, @@ -227771,7 +231272,7 @@ This implementation can be used to run on CPU only, or use the GPU-accelerated v sc:url "http://sourceforge.net/projects/gpu3snp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2269, @@ -227787,7 +231288,7 @@ This implementation can be used to run on CPU only, or use the GPU-accelerated v biotools:primaryContact "Ming-Ming Ren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3569 ; sc:citation ; @@ -227802,7 +231303,7 @@ This implementation can be used to run on CPU only, or use the GPU-accelerated v biotools:primaryContact "Mark Bates" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -227817,7 +231318,7 @@ This implementation can be used to run on CPU only, or use the GPU-accelerated v biotools:primaryContact "Zhaohui Qin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -227836,8 +231337,25 @@ This implementation can be used to run on CPU only, or use the GPU-accelerated v "Windows" ; sc:url "https://netzoo.github.io/zooanimals/gpuzoo/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0203, + edam:topic_3314 ; + sc:citation , + "pubmed:34470369" ; + sc:description "The Ghent Quantum Chemistry Package (GQCP) is an open-source electronic structure software package that aims to provide an intuitive and expressive software framework for electronic structure software development. Its high-level interfaces (accessible through C++ and Python) have been specifically designed to correspond to theoretical concepts, while retaining access to lower-level intermediates and allowing structural run-time modifications of quantum chemical solvers. GQCP focuses on providing quantum chemical method developers with the computational \"building blocks\" that allow them to flexibly develop proof of principle implementations for new methods and applications up to the level of two-component spinor bases." ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "GQCP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gqcg.github.io/GQCP/landing-page.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0769, @@ -227859,7 +231377,7 @@ The app is used for QSP Modeling and Simulation.""" ; sc:url "https://www.mathworks.com/matlabcentral/fileexchange/73631-gqspsim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625 ; sc:description "Infrastructure for eQTL, mQTL and similar studies." ; @@ -227877,7 +231395,7 @@ The app is used for QSP Modeling and Simulation.""" ; biotools:primaryContact "VJ Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3307 ; @@ -227896,7 +231414,7 @@ The app is used for QSP Modeling and Simulation.""" ; biotools:primaryContact "VJ Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3292, @@ -227915,7 +231433,7 @@ The app is used for QSP Modeling and Simulation.""" ; sc:url "https://www.frontiersin.org/articles/10.3389/fchem.2021.707738/full#supplementary-material" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2814 ; @@ -227929,7 +231447,7 @@ The app is used for QSP Modeling and Simulation.""" ; biotools:primaryContact "Nataša Pržulj" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -227944,7 +231462,7 @@ The app is used for QSP Modeling and Simulation.""" ; biotools:primaryContact "Natasa Przulj" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0196, @@ -227967,7 +231485,7 @@ The app is used for QSP Modeling and Simulation.""" ; biotools:primaryContact "Balázs Brankovics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3510, edam:topic_3534 ; @@ -227981,7 +231499,7 @@ The app is used for QSP Modeling and Simulation.""" ; sc:url "http://www.uniklinikum-saarland.de/einrichtungen/fachrichtungen/humangenetik/software/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3168, @@ -228000,7 +231518,7 @@ Utility for simplifying bulk downloading data from next-generation sequencing re sc:url "https://github.com/louiejtaylor/grabseqs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0102, @@ -228026,7 +231544,7 @@ GRACy is a bioinformatic tool designed for the analysis of Illumina data origina sc:url "https://bioinformatics.cvr.ac.uk/software/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0659, @@ -228043,8 +231561,31 @@ Analysis-of-a-photosynthetic-cyanobacterium-rich-in-internal-membrane-systems-vi sc:name "Grad-seq" ; sc:url "https://sunshine.biologie.uni-freiburg.de/GradSeqExplorer/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0632, + edam:topic_3168, + edam:topic_3512, + edam:topic_3519 ; + sc:citation , + "pmcid:PMC8750845", + "pubmed:35012455" ; + sc:description "a long-read sequencing approach to efficiently identifying the CYP11B1/CYP11B2 chimeric form in patients with glucocorticoid-remediable aldosteronism." ; + sc:featureList edam:operation_0308, + edam:operation_0346, + edam:operation_0450 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GRAde" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/hsu-binfo/GRAde" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """GRADitude: a computational tool for Grad-seq data analysis Grad-seq is a high-throughput profiling approach for the organism-wide detection of RNA-RNA and RNA-protein interactions in which molecular complexes are separated in a gradient by shape and size (Smirnov et al., 2016, PNAS). Grad-seq separates native cellular lysates including complexes, according to their molecular weight and shape in a glycerol gradient, independent of charge and sequence. After this fractionation, RNA-seq and MS-analysis of each of the fractions generated allows the reconstruction of the sedimentation profiles of all detectable RNAs and protein in a single experiment. Further analysis can reveal possible interactions between the individual molecules.""" ; @@ -228054,7 +231595,7 @@ Grad-seq is a high-throughput profiling approach for the organism-wide detection sc:url "https://foerstner-lab.github.io/GRADitude/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -228074,7 +231615,7 @@ Grad-seq is a high-throughput profiling approach for the organism-wide detection "Serafim Batzoglou's lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, @@ -228093,8 +231634,32 @@ GRAFIMO (GRAph-based Finding of Individual Motif Occurrences) is a command-line sc:name "GRAFIMO" ; sc:url "https://github.com/pinellolab/GRAFIMO" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0097, + edam:topic_0099, + edam:topic_0154, + edam:topic_0160, + edam:topic_0166 ; + sc:citation , + "pmcid:PMC9252811", + "pubmed:35639505" ; + sc:description "A webserver for substructure similarity searching and comparisons in the structures of proteins and RNA." ; + sc:featureList edam:operation_0245, + edam:operation_0337, + edam:operation_0480, + edam:operation_2421, + edam:operation_2487 ; + sc:isAccessibleForFree true ; + sc:name "GrAfSS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://mfrlab.org/grafss/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3174, @@ -228114,7 +231679,7 @@ GRAFIMO (GRAph-based Finding of Individual Motif Occurrences) is a command-line biotools:primaryContact "Gene W Tyson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3512, @@ -228129,8 +231694,30 @@ GRAFIMO (GRAph-based Finding of Individual Motif Occurrences) is a command-line sc:name "grailbio" ; sc:url "https://github.com/grailbio/bio/tree/master/fusion" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_0780, + edam:topic_3500, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC8998097", + "pubmed:35407001" ; + sc:description "GrainGenes, a database for Triticeae and Avena, is a comprehensive resource for molecular and phenotypic information for wheat, barley, rye, and other related species, including oat." ; + sc:featureList edam:operation_0282, + edam:operation_3208, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "GrainGenes" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://wheat.pw.usda.gov/cgi-bin/GG3/browse.cgi" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -228148,7 +231735,7 @@ GRALL – [IFM] LABORATOIRE D’INGÉNIERIE DES FONCTIONS MOLÉCULAIRES.""" ; sc:url "https://ifm.chimie.unistra.fr/grall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -228165,7 +231752,7 @@ GRALL – [IFM] LABORATOIRE D’INGÉNIERIE DES FONCTIONS MOLÉCULAIRES.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -228189,7 +231776,7 @@ GRALL – [IFM] LABORATOIRE D’INGÉNIERIE DES FONCTIONS MOLÉCULAIRES.""" ; biotools:primaryContact "Andrey Tovchigrechko" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -228205,8 +231792,27 @@ GRALL – [IFM] LABORATOIRE D’INGÉNIERIE DES FONCTIONS MOLÉCULAIRES.""" ; sc:url "http://www.cse.msu.edu/~achawana/grammar-string/" ; biotools:primaryContact "Yanni Sun" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0749, + edam:topic_0769 ; + sc:citation , + "pmcid:PMC8864242", + "pubmed:34973417" ; + sc:description "GranatumX: A community engaging and flexible software environment for single-cell analysis." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GranatumX" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://garmiregroup.org/granatumx/app" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -228229,7 +231835,7 @@ This Python module is designed to be run with OpenMM in order to simulate grand sc:url "https://github.com/essex-lab/grand" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -228250,7 +231856,7 @@ This Python module is designed to be run with OpenMM in order to simulate grand sc:url "https://grand.networkmedicine.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0092, @@ -228267,7 +231873,7 @@ This Python module is designed to be run with OpenMM in order to simulate grand sc:url "http://grape.uwbacter.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation , @@ -228285,7 +231891,7 @@ This Python module is designed to be run with OpenMM in order to simulate grand biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0769, @@ -228303,8 +231909,31 @@ This Python module is designed to be run with OpenMM in order to simulate grand biotools:primaryContact "Maik Röder", "Roderic Guigó" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0140, + edam:topic_0621, + edam:topic_2229 ; + sc:citation , + "pubmed:35474477" ; + sc:description "The Granule Protein Enrichment Server for prediction of biological condensate constituents." ; + sc:featureList edam:operation_0310, + edam:operation_3092, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:name "GraPES" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://grapes.msl.ubc.ca/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3315, @@ -228323,7 +231952,7 @@ This Python module is designed to be run with OpenMM in order to simulate grand biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -228344,22 +231973,22 @@ An amendment to this paper has been published and can be accessed via the origin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2984" ; - sc:name "Pathway or network report" ; - sc:sameAs "http://edamontology.org/data_2984" ], + sc:additionalType "http://edamontology.org/data_2984" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Pathway or network report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -228380,7 +232009,7 @@ An amendment to this paper has been published and can be accessed via the origin biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -228398,8 +232027,29 @@ An amendment to this paper has been published and can be accessed via the origin sc:url "https://www.mathworks.com/matlabcentral/fileexchange/43518-graph-based-segmentation-of-retinal-layers-in-oct-images" ; biotools:primaryContact "pangyuteng" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0602, + edam:topic_3316, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9007174", + "pubmed:35425661" ; + sc:description "Graph Theoretic Approach for the Analysis of Comprehensive Mass-Spectrometry (MS/MS) Data of Dissolved Organic Matter." ; + sc:featureList edam:operation_0337, + edam:operation_3860 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Graph-DOM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Usman095/Graph-DOM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3295, @@ -228419,7 +232069,7 @@ An amendment to this paper has been published and can be accessed via the origin "Hang J. Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -228435,8 +232085,35 @@ An amendment to this paper has been published and can be accessed via the origin sc:url "https://www.mathworks.com/matlabcentral/fileexchange/12648-graph-package" ; biotools:primaryContact "Kyaw Tun" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:name "Small molecule structure" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3047, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8756178", + "pubmed:34643666" ; + sc:description "Multi-instance learning of graph neural networks for aqueous pKa prediction." ; + sc:featureList edam:operation_3629, + edam:operation_3642, + edam:operation_3891, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "Graph-pKa" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://pka.simm.ac.cn/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3391 ; sc:citation ; @@ -228449,16 +232126,37 @@ An amendment to this paper has been published and can be accessed via the origin sc:softwareHelp ; sc:url "https://github.com/yanzhanglab/Graph2GO" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0202, + edam:topic_3375, + edam:topic_3379, + edam:topic_3474 ; + sc:citation , + "pubmed:34864873" ; + sc:description "A multi-modal variational graph embedding model for predicting microbe-drug associations." ; + sc:featureList edam:operation_2940, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Graph2MDA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/moen-hyb/Graph2MDA" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0218, @@ -228470,8 +232168,26 @@ An amendment to this paper has been published and can be accessed via the origin sc:softwareHelp ; sc:url "http://www.quadtechassociates.com/freeware.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3315, + edam:topic_3678 ; + sc:citation , + "pubmed:35441361" ; + sc:description "A novel and simple test to validly assess fluid reasoning." ; + sc:featureList edam:operation_0337, + edam:operation_2429 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Graph Mapping" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:url "https://osf.io/wh7zv/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -228490,7 +232206,7 @@ An amendment to this paper has been published and can be accessed via the origin biotools:primaryContact "Joern P. Meier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3517 ; @@ -228507,7 +232223,7 @@ An amendment to this paper has been published and can be accessed via the origin biotools:primaryContact "Thomas LaFramboise" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -228528,10 +232244,9 @@ GraphBin is a NGS data-based metagenomic contig bin refinment tool that makes us a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099, @@ -228553,8 +232268,28 @@ GraphBind only predicts one protein chain once, please input 1-character chain I sc:name "GraphBind" ; sc:url "http://www.csbio.sjtu.edu.cn/bioinf/GraphBind/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0654, + edam:topic_3297 ; + sc:citation ; + sc:description "Chaining for Accurate Alignment of Erroneous Long Reads to Acyclic Variation Graphs." ; + sc:featureList edam:operation_0292, + edam:operation_0524, + edam:operation_3198, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GraphChainer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/algbio/GraphChainer" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099 ; @@ -228569,7 +232304,7 @@ GraphBind only predicts one protein chain once, please input 1-character chain I sc:url "http://www.bioinf.uni-freiburg.de/Software/GraphClust/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3452, @@ -228585,7 +232320,7 @@ GraphBind only predicts one protein chain once, please input 1-character chain I biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -228602,7 +232337,7 @@ GraphBind only predicts one protein chain once, please input 1-character chain I sc:url "http://bio-nets.doc.ic.ac.uk/graphcrunch2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3336, edam:topic_3373, @@ -228618,7 +232353,7 @@ GraphBind only predicts one protein chain once, please input 1-character chain I sc:url "https://github.com/hauldhut/GraphDRP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -228638,7 +232373,7 @@ GraphDTA post-hoc analysis scripts.""" ; sc:url "https://doi.org/10.5281/zenodo.3603523" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293 ; @@ -228654,7 +232389,7 @@ Given a , this program computes""" ; biotools:primaryContact "Céline Scornavacca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -228672,7 +232407,7 @@ This package provides functionality for producing a number of types of graph-bas sc:url "https://github.com/a-r-j/graphein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0610, @@ -228688,8 +232423,50 @@ This package provides functionality for producing a number of types of graph-bas sc:url "https://graphery.reedcompbio.org/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_2269, + edam:topic_3170, + edam:topic_3308, + edam:topic_3318 ; + sc:citation , + "pmcid:PMC8812873", + "pubmed:35073331" ; + sc:description "GraphFP:a dynamic inference software for reconstructing the cell state-transition complex energy landscape from time series single-cell transcriptomic data." ; + sc:featureList edam:operation_2426, + edam:operation_3432, + edam:operation_3450 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GraphFP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/QiJiang-QJ/GraphFP" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0203, + edam:topic_0625, + edam:topic_3474, + edam:topic_3577 ; + sc:citation , + "pubmed:35266505" ; + sc:description "A self-explaining neural network encapsulating the Gene Ontology graph for phenotype prediction on gene expression." ; + sc:featureList edam:operation_0314, + edam:operation_2454, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "GraphGONet" ; + sc:url "https://forge.ibisc.univ-evry.fr/vbourgeais/GraphGONet.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -228708,18 +232485,18 @@ GraphGR is a tool to predict drug (kinase inhibitors ONLY for now) response on a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Gene expression matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0092, @@ -228753,7 +232530,7 @@ Graphia can create and visualise graphs from tables of numeric data and display sc:url "https://graphia.app/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085 ; sc:citation , @@ -228773,7 +232550,7 @@ Graphia can create and visualise graphs from tables of numeric data and display biotools:primaryContact "Chiara Romualdi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -228795,7 +232572,7 @@ Graphia can create and visualise graphs from tables of numeric data and display biotools:primaryContact "Chiara Romualdi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2269, @@ -228813,7 +232590,7 @@ Graphia can create and visualise graphs from tables of numeric data and display biotools:primaryContact "Mahito Sugiyama" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_3174, @@ -228833,7 +232610,7 @@ Graphia can create and visualise graphs from tables of numeric data and display biotools:primaryContact "Nicola Segata" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -228853,7 +232630,7 @@ GraphOmics is a dashboard to integrate and explore different types of biological sc:url "https://graphomics.glasgowcompbio.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0078, @@ -228873,7 +232650,7 @@ GraphOmics is a dashboard to integrate and explore different types of biological biotools:primaryContact "Gregory Ryslik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0099 ; @@ -228889,7 +232666,7 @@ GraphOmics is a dashboard to integrate and explore different types of biological sc:url "http://www.bioinf.uni-freiburg.de/Software/GraphProt/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -228905,8 +232682,31 @@ GraphOmics is a dashboard to integrate and explore different types of biological sc:name "GraphQA" ; sc:url "http://github.com/baldassarreFe/graphqa" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0602, + edam:topic_0749, + edam:topic_3173, + edam:topic_3940 ; + sc:citation , + "pmcid:PMC9104700", + "pubmed:35396274" ; + sc:description "Chromatin interaction-aware gene regulatory modeling with graph attention networks." ; + sc:featureList edam:operation_0438, + edam:operation_1781, + edam:operation_2437 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GraphReg" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/karbalayghareh/GraphReg" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3444, @@ -228920,7 +232720,7 @@ GraphOmics is a dashboard to integrate and explore different types of biological sc:url "https://github.com/multimodallearning/graphregnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2640, @@ -228938,7 +232738,7 @@ GraphOmics is a dashboard to integrate and explore different types of biological sc:url "https://github.com/cckamy/GraphRepur" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -228957,16 +232757,60 @@ Simulate Expression Data from 'igraph' Networks.""" ; sc:name "graphsim" ; sc:url "https://github.com/TomKellyGenetics/graphsim" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workbench" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0128, + edam:topic_0736, + edam:topic_3125, + edam:topic_3534 ; + sc:citation , + "pubmed:35039821" ; + sc:description "GraphSite is a novel framework for sequence-based protein-DNA binding site prediction using graph transformer and predicted protein structures from AlphaFold2." ; + sc:featureList edam:operation_0267, + edam:operation_0474, + edam:operation_2464, + edam:operation_3900, + edam:operation_3903 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GraphSite" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://biomed.nscc-gz.cn/apps/GraphSite" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script", + "Workbench" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0602, + edam:topic_0749, + edam:topic_3169, + edam:topic_3474 ; + sc:citation , + "pubmed:35511108" ; + sc:description "An attention-based graph embedding model for predicting TF-target gene interactions." ; + sc:featureList edam:operation_2437, + edam:operation_2454, + edam:operation_2575 ; + sc:license "Not licensed" ; + sc:name "GraphTGI" ; + sc:url "https://github.com/YanghanWu/GraphTGI" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2984" ; - sc:name "Pathway or network report" ; - sc:sameAs "http://edamontology.org/data_2984" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2984" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0623, @@ -228993,7 +232837,7 @@ Simulate Expression Data from 'igraph' Networks.""" ; "Laur Tooming" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3511 ; @@ -229010,7 +232854,7 @@ Simulate Expression Data from 'igraph' Networks.""" ; biotools:primaryContact "Liam Childs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0196, @@ -229027,7 +232871,7 @@ Simulate Expression Data from 'igraph' Networks.""" ; sc:url "http://sourceforge.net/projects/grasp-release/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3474, @@ -229043,29 +232887,55 @@ The discovery of protein-ligand-binding sites is a major step for elucidating pr sc:name "GRaSP-py" ; sc:url "https://github.com/charles-abreu/GRaSP" . - a sc:SoftwareApplication ; - sc:additionalType "Database portal" ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0196, - edam:topic_0621, - edam:topic_3170, - edam:topic_3320 ; - sc:citation , - "pmcid:PMC6775296", - "pubmed:31592084" ; - sc:description """an informational platform for genome biology of grass carp. + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0130, + edam:topic_0209, + edam:topic_3047, + edam:topic_3474, + edam:topic_3534 ; + sc:citation , + "pmcid:PMC9252730", + "pubmed:35524575" ; + sc:description "A machine learning strategy to predict binding sites based on residue neighborhood graphs." ; + sc:featureList edam:operation_0474, + edam:operation_1839, + edam:operation_2492, + edam:operation_2575, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GRaSP-web" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/charles-abreu/GRaSP" . -Grass carp (Ctenopharyngodon idellus) is a herbivorous, freshwater fish species of the family Cyprinidae, and the only species of the genus Ctenopharyngodon.""" ; - sc:featureList edam:operation_0282, - edam:operation_0283, - edam:operation_0464, - edam:operation_2422, - edam:operation_3208 ; - sc:name "grass carp genomic visualization database" ; - sc:url "http://www.ncgr.ac.cn/grasscarp/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2275, + edam:topic_2814, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8982879", + "pubmed:35324898" ; + sc:description "Fast protein structure comparison through effective representation learning with contrastive graph neural networks." ; + sc:featureList edam:operation_0295, + edam:operation_0303, + edam:operation_2487, + edam:operation_3899 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "GraSR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.csbio.sjtu.edu.cn/bioinf/GraSR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3298, @@ -229082,7 +232952,7 @@ Grass carp (Ctenopharyngodon idellus) is a herbivorous, freshwater fish species biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0637, @@ -229098,7 +232968,7 @@ Grass carp (Ctenopharyngodon idellus) is a herbivorous, freshwater fish species biotools:primaryContact "Kai Müller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0209, @@ -229118,7 +232988,7 @@ Grass carp (Ctenopharyngodon idellus) is a herbivorous, freshwater fish species biotools:primaryContact "Nicholas A. Clark" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2814, edam:topic_3534 ; @@ -229134,7 +233004,7 @@ Grass carp (Ctenopharyngodon idellus) is a herbivorous, freshwater fish species biotools:primaryContact "Haiyan Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157, @@ -229152,8 +233022,30 @@ Grass carp (Ctenopharyngodon idellus) is a herbivorous, freshwater fish species sc:url "http://resource.ibab.ac.in/GREAM/" ; biotools:primaryContact "Kshitish K. Acharya" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_0749, + edam:topic_3295 ; + sc:citation , + "pubmed:35959979" ; + sc:description "A comprehensive enrichment analysis software for human genomic regions." ; + sc:featureList edam:operation_0362, + edam:operation_3208, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "GREAP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://www.liclab.net/Greap/view/index" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659 ; sc:citation ; @@ -229168,26 +233060,25 @@ Grass carp (Ctenopharyngodon idellus) is a herbivorous, freshwater fish species a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1016" ; - sc:name "Sequence position" ; - sc:sameAs "http://edamontology.org/data_1016" ], + sc:additionalType "http://edamontology.org/data_1016" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Sequence position" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2755" ; - sc:name "Transcription factor name" ; - sc:sameAs "http://edamontology.org/data_2755" ], + sc:additionalType "http://edamontology.org/data_2755" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Transcription factor name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1893" ; - sc:name "Locus ID" ; - sc:sameAs "http://edamontology.org/data_1893" ] ; + sc:additionalType "http://edamontology.org/data_1893" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Locus ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -229210,22 +233101,21 @@ Grass carp (Ctenopharyngodon idellus) is a herbivorous, freshwater fish species a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1893" ; - sc:name "Locus ID" ; - sc:sameAs "http://edamontology.org/data_1893" ], + sc:additionalType "http://edamontology.org/data_1893" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Locus ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1016" ; - sc:name "Sequence position" ; - sc:sameAs "http://edamontology.org/data_1016" ] ; + sc:additionalType "http://edamontology.org/data_1016" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Sequence position" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -229249,7 +233139,7 @@ Grass carp (Ctenopharyngodon idellus) is a herbivorous, freshwater fish species biotools:primaryContact "MEGA team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -229266,7 +233156,7 @@ Grass carp (Ctenopharyngodon idellus) is a herbivorous, freshwater fish species biotools:primaryContact "Fabio Gori" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194 ; @@ -229281,7 +233171,7 @@ GreedyRFS is a heuristic method developed for the Robinson-Foulds Supertree prob sc:url "http://github.com/yuxilin51/GreedyRFS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0622, @@ -229304,7 +233194,7 @@ Genomic Regulatory Elements ENcyclopedia Database A collection of ~2.4M regulato sc:url "https://github.com/edg1983/GREEN-VARAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3318, @@ -229323,8 +233213,31 @@ Genomic Regulatory Elements ENcyclopedia Database A collection of ~2.4M regulato "Windows" ; sc:url "http://www.green-algorithms.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Database portal" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0623, + edam:topic_0659, + edam:topic_0780 ; + sc:citation , + "pmcid:PMC8728176", + "pubmed:34723326" ; + sc:description "A comprehensive database of plant long non-coding RNAs." ; + sc:featureList edam:operation_0291, + edam:operation_2422, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "GreeNC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://greenc.sequentiabiotech.com/wiki2/Main_Page" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0780, @@ -229345,20 +233258,39 @@ A Wiki-database of plant CircRNAs(v1.0).""" ; sc:name "GreenCircRNA" ; sc:url "http://greencirc.cn" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0602, + edam:topic_0780, + edam:topic_3957 ; + sc:citation , + "pmcid:PMC8509195", + "pubmed:34639237" ; + sc:description "A Database of Host-Pathogen Protein-Protein Interactions and Annotation Features of the Bacteria Causing Huanglongbing HLB Disease." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:name "GreeningDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinfo.usu.edu/GreeningDB/" . + a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3154" ; - sc:name "Protein alignment" ; - sc:sameAs "http://edamontology.org/data_3154" ], + sc:additionalType "http://edamontology.org/data_3154" ; + sc:name "Protein alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0623, @@ -229382,7 +233314,7 @@ A Wiki-database of plant CircRNAs(v1.0).""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -229404,7 +233336,7 @@ Scripts related to GREG (Gene Regulation Graph Database) and its papers. Use GRE sc:url "https://mora-lab.github.io/projects/greg.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -229420,7 +233352,7 @@ Scripts related to GREG (Gene Regulation Graph Database) and its papers. Use GRE biotools:primaryContact "Cristen Willer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -229438,22 +233370,22 @@ GREMA (Gene networks Reconstruction using Evolutionary Modelling Algorithm) is a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0204, @@ -229474,14 +233406,14 @@ GREMA (Gene networks Reconstruction using Evolutionary Modelling Algorithm) is a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation , @@ -229497,7 +233429,7 @@ GREMA (Gene networks Reconstruction using Evolutionary Modelling Algorithm) is a biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2885, @@ -229519,18 +233451,18 @@ Gretel is a Python package providing a command line tool for the recovery of hap a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3758" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -229544,14 +233476,14 @@ Gretel is a Python package providing a command line tool for the recovery of hap a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640, @@ -229570,7 +233502,7 @@ Gretel is a Python package providing a command line tool for the recovery of hap biotools:primaryContact "Gordon Brown" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, @@ -229588,7 +233520,7 @@ This code is the implementation of GRGMF, which is both CPU and CUDA compatible( sc:url "https://github.com/happyalfred2016/GRGMF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -229607,7 +233539,7 @@ Gene regulatory graph neural network (GRGNN): an end-to-end approach to reconstr sc:url "https://github.com/juexinwang/GRGNN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -229624,7 +233556,7 @@ Gene regulatory graph neural network (GRGNN): an end-to-end approach to reconstr biotools:primaryContact "Reza Farrahi Moghaddam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -229640,7 +233572,7 @@ Gene regulatory graph neural network (GRGNN): an end-to-end approach to reconstr biotools:primaryContact "Kevin Rogers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654 ; @@ -229654,28 +233586,30 @@ Gene regulatory graph neural network (GRGNN): an end-to-end approach to reconstr sc:softwareVersion "3.0a-beta" ; sc:url "http://cbr.jic.ac.uk/dicks/software/Grid_Map/index.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3305, - edam:topic_3474 ; - sc:citation ; - sc:description """A Review of the Field and Strategic Research Agenda. - -GRID3 (Geo-Referenced Infrastructure and Demographic Data for Development) works with countries to generate, validate and use geospatial data. - -Mapping a path to sustainable development for everyone. - -To build spatial data solutions that make development goals achievable. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'GridSample'""" ; - sc:featureList edam:operation_3359, - edam:operation_3432, - edam:operation_3659 ; - sc:name "gridded population survey sampling" ; - sc:url "http://www.grid3.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Library" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0780, + edam:topic_3306 ; + sc:citation , + "pmcid:PMC9160223", + "pubmed:35650204" ; + sc:description "Database and software for Earth system modeling at global and regional scales." ; + sc:featureList edam:operation_2422, + edam:operation_3435, + edam:operation_3946 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "GriddingMachine" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Yujie-W/octave-griddingmachine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3382, @@ -229691,7 +233625,7 @@ Grain characteristics are critical component traits for grain yield, including k sc:url "https://zzlab.net/GridFree" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3361, @@ -229712,8 +233646,28 @@ Grain characteristics are critical component traits for grain yield, including k "GiuliaPaganelli", "WainerZoli" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0625, + edam:topic_0780, + edam:topic_3077, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC9169276", + "pubmed:35668357" ; + sc:description "A tool for accurate, cross-platform phenotypic data collection and visualization." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:name "GridScore" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ics.hutton.ac.uk/gridscore/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2814, @@ -229734,18 +233688,18 @@ The gridSolvate program predicts the distribution of hydration sites within prot a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3671" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Text" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0122, edam:topic_3175 ; @@ -229764,7 +233718,7 @@ The gridSolvate program predicts the distribution of hydration sites within prot biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3474 ; @@ -229778,7 +233732,7 @@ The gridSolvate program predicts the distribution of hydration sites within prot sc:url "http://griffin.cbrc.jp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3068, @@ -229796,7 +233750,7 @@ The gridSolvate program predicts the distribution of hydration sites within prot sc:url "https://gitlab.com/dacs-hpi/grimer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3372, @@ -229815,7 +233769,7 @@ The gridSolvate program predicts the distribution of hydration sites within prot sc:url "https://github.com/chaoss/grimoirelab-elk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0749, @@ -229834,7 +233788,7 @@ The gridSolvate program predicts the distribution of hydration sites within prot sc:url "http://roy-lab.github.io/grinch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -229854,7 +233808,7 @@ A CURATED DATABASE FOR GRIN VARIANTS.""" ; sc:url "http://lmc.uab.es/grindb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0602 ; @@ -229872,8 +233826,32 @@ A CURATED DATABASE FOR GRIN VARIANTS.""" ; biotools:primaryContact "Onur Serçinoğlu", "Pemra Ozbek" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2229, + edam:topic_3382, + edam:topic_3474, + edam:topic_3934 ; + sc:citation , + "pmcid:PMC9367069", + "pubmed:35953853" ; + sc:description "a generalist tool for network generation from segmented tissue images." ; + sc:featureList edam:operation_2940, + edam:operation_3435, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Griottes" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/BaroudLab/Griottes" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0153, @@ -229894,7 +233872,7 @@ Input a target sequence in FASTA format.""" ; sc:url "http://grip.b.dendai.ac.jp/~grip/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -229915,7 +233893,7 @@ Single-cell RNA sequencing (scRNA-seq) offers new possibilities to infer gene re sc:url "https://github.com/PCAubin/GRISLI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -229930,7 +233908,7 @@ Single-cell RNA sequencing (scRNA-seq) offers new possibilities to infer gene re sc:url "http://www.lx.it.pt/~asmc/software/grisotto.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, @@ -229947,7 +233925,7 @@ Single-cell RNA sequencing (scRNA-seq) offers new possibilities to infer gene re "Susan E Celniker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -229967,7 +233945,7 @@ G protein-coupled receptor kinase 1 (GRK1).""" ; sc:url "http://dna2.leeds.ac.uk/GRK1_LOVD/genes/GRK1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -229983,7 +233961,7 @@ G protein-coupled receptor kinase 1 (GRK1).""" ; biotools:primaryContact "Wei Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -230002,7 +233980,7 @@ G protein-coupled receptor kinase 1 (GRK1).""" ; biotools:primaryContact "Nicholas Clark" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -230023,8 +234001,28 @@ G protein-coupled receptor kinase 1 (GRK1).""" ; sc:operatingSystem "Linux" ; sc:url "https://github.com/qasimyu/grmt" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0749, + edam:topic_2269 ; + sc:citation , + "pmcid:PMC9252735", + "pubmed:35609981" ; + sc:description "A web server for benchmarking directed gene regulatory network inference methods." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3566 ; + sc:license "Not licensed" ; + sc:name "GRNbenchmark" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://GRNbenchmark.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -230045,7 +234043,7 @@ Gene regulatory networks are crucial for understanding the mechanism of gene exp sc:url "http://www.grndb.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602 ; @@ -230082,13 +234080,13 @@ Gene regulatory networks are crucial for understanding the mechanism of gene exp sc:provider "Loyola Marymount University", "lmu.edu" ; sc:softwareHelp ; - sc:softwareVersion "5.1.0" ; + sc:softwareVersion "6.0.0" ; sc:url "http://dondi.github.io/GRNsight/" ; biotools:primaryContact "John David N. Dionisio", "Kam D. Dahlquist" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -230108,7 +234106,7 @@ Explore the notebook folder for a quick overview of the GRNUlar algorithm ran on sc:url "https://github.com/Harshs27/GRNUlar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3071, @@ -230126,14 +234124,14 @@ Explore the notebook folder for a quick overview of the GRNUlar algorithm ran on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2337" ; - sc:name "Resource metadata" ; - sc:sameAs "http://edamontology.org/data_2337" ] ; + sc:additionalType "http://edamontology.org/data_2337" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Resource metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -230153,30 +234151,30 @@ Explore the notebook folder for a quick overview of the GRNUlar algorithm ran on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_1017" ; + sc:encodingFormat "http://edamontology.org/format_3006" ; + sc:name "Sequence range" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1017" ; - sc:name "Sequence range" ; - sc:sameAs "http://edamontology.org/data_1017" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3006" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3006" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3006" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -230202,7 +234200,7 @@ Explore the notebook folder for a quick overview of the GRNUlar algorithm ran on "W. Lee Kraus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -230221,15 +234219,28 @@ Explore the notebook folder for a quick overview of the GRNUlar algorithm ran on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Suite" ; sc:applicationSubCategory edam:topic_0176 ; - sc:citation ; + sc:citation , + , + , + , + , + , + , + , + , + , + "pubmed:16211538", + "pubmed:23407358", + "pubmed:26620784", + "pubmed:33032406" ; sc:description "Versatile package to perform molecular dynamics, i.e. simulate the Newtonian equations of motion for systems with hundreds to millions of particles. It is primarily designed for biochemical molecules like proteins, lipids and nucleic acids that have a lot of complicated bonded interactions, but since it is extremely fast at calculating the nonbonded interactions (that usually dominate simulations) many groups are also using it for research on non-biological systems, e.g. polymers." ; sc:featureList edam:operation_2476 ; sc:isAccessibleForFree true ; @@ -230241,7 +234252,7 @@ Explore the notebook folder for a quick overview of the GRNUlar algorithm ran on biotools:primaryContact "GROMACS support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -230255,7 +234266,7 @@ GronOR started in 2016 as a collaboration of the Theoretical Chemistry group of sc:url "http://gronor.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174 ; @@ -230272,7 +234283,7 @@ GronOR started in 2016 as a collaboration of the Theoretical Chemistry group of biotools:primaryContact "Mike Imelfort" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3174, @@ -230288,7 +234299,7 @@ GronOR started in 2016 as a collaboration of the Theoretical Chemistry group of biotools:primaryContact "Will P M Rowe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3444, @@ -230304,29 +234315,8 @@ OpenMP version of TE finder is better implemented. See demo in the test_TE_finde sc:name "GrOpt" ; sc:url "http://www.github.com/cmr-group/gropt" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0202, - edam:topic_0593, - edam:topic_2275, - edam:topic_3534 ; - sc:citation , - "pubmed:31613613" ; - sc:description """Massive in Silico Study of Noble Gas Binding to the Structural Proteome. - -Noble gases are chemically inert, and it was therefore thought they would have little effect on biology. Paradoxically, it was found that they do exhibit a wide range of biological effects, many of which are target-specific and potentially useful and some of which have been demonstrated in vivo. The underlying mechanisms by which useful pharmacology, such as tissue and neuroprotection, anti-addiction effects, and analgesia, is elicited are relatively unexplored. Experiments to probe the interactions of noble gases with specific proteins are more difficult with gases than those with other chemicals. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/harman (CSIRO.AU), bio.tools/tilehmm (CSIRO.AU), bio.tools/k-link (CSIRO.AU), bio.tools/blue (CSIRO.AU). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'noble gases', 'gases', 'noble', 'gas-protein'""" ; - sc:featureList edam:operation_0482, - edam:operation_2575, - edam:operation_3899 ; - sc:name "group18" ; - sc:url "http://group18.csiro.au" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0625, @@ -230350,7 +234340,7 @@ Noble gases are chemically inert, and it was therefore thought they would have l "Jiaxing Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2269, @@ -230367,7 +234357,7 @@ Noble gases are chemically inert, and it was therefore thought they would have l biotools:primaryContact "Bernie Devlin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -230384,7 +234374,7 @@ Noble gases are chemically inert, and it was therefore thought they would have l biotools:primaryContact "Rob Patro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3318, @@ -230400,7 +234390,7 @@ Noble gases are chemically inert, and it was therefore thought they would have l sc:url "https://github.com/vincentme/GroupRegNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_3474 ; @@ -230416,7 +234406,7 @@ Noble gases are chemically inert, and it was therefore thought they would have l biotools:primaryContact "Kourosh Zarringhalam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -230438,7 +234428,7 @@ Noble gases are chemically inert, and it was therefore thought they would have l biotools:primaryContact "Mark A. van de Wiel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation "pubmed:21266471" ; @@ -230449,7 +234439,7 @@ Noble gases are chemically inert, and it was therefore thought they would have l sc:url "http://gmdd.shgmo.org/Computational-Biology/GRS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2815, @@ -230468,7 +234458,7 @@ Noble gases are chemically inert, and it was therefore thought they would have l biotools:primaryContact "Fabian A. Soto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -230490,7 +234480,7 @@ In its current form grünifai is commposed of multiple microservices. We recomme sc:url "https://github.com/jrwnter/gruenifai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0152 ; @@ -230507,7 +234497,7 @@ In its current form grünifai is commposed of multiple microservices. We recomme "Sandor Vajda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -230522,7 +234512,7 @@ In its current form grünifai is commposed of multiple microservices. We recomme sc:url "http://biocomp.iis.sinica.edu.tw/new/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3489 ; @@ -230537,7 +234527,7 @@ In its current form grünifai is commposed of multiple microservices. We recomme sc:url "http://lage.sookmyung.ac.kr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0769, @@ -230557,7 +234547,7 @@ Sample Bioconductor GUIDEseq Input.""" ; sc:url "http://github.com/umasstr/GS-Preprocess" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053 ; @@ -230572,7 +234562,7 @@ Sample Bioconductor GUIDEseq Input.""" ; sc:url "https://github.com/alegarra/gs3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -230596,8 +234586,29 @@ Sample Bioconductor GUIDEseq Input.""" ; sc:url "http://gsa.muldas.org" ; biotools:primaryContact "Prof. Sangsoo Kim" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0659, + edam:topic_3941 ; + sc:citation , + "pmcid:PMC9403262", + "pubmed:36035404" ; + sc:description "A web platform to perform, learn, and discuss gene set analysis" ; + sc:featureList edam:operation_2421, + edam:operation_2436, + edam:operation_3928 ; + sc:license "Other" ; + sc:name "GSA Central" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gsa-central.github.io/education.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -230615,7 +234626,7 @@ Sample Bioconductor GUIDEseq Input.""" ; biotools:primaryContact "qxiong@email.unc.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0610, edam:topic_0625, @@ -230633,7 +234644,7 @@ Genome Size in Asteraceae database.""" ; sc:url "http://www.asteraceaegenomesize.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -230653,7 +234664,7 @@ Genome Size in Asteraceae database.""" ; biotools:primaryContact "Billy Heung Wing Chang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0081, @@ -230680,26 +234691,26 @@ Personal genomics and comparative genomics are two fields that are more and more a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -230724,7 +234735,7 @@ Personal genomics and comparative genomics are two fields that are more and more "Yasir Rahmatallah" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3305, @@ -230742,7 +234753,7 @@ BACKGROUND:Although survival statistics in patients with glioblastoma multiforme sc:url "https://cnoc-bwh.shinyapps.io/gbmsurvivalpredictor/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -230763,7 +234774,7 @@ BACKGROUND:Although survival statistics in patients with glioblastoma multiforme biotools:primaryContact "Zhicheng Ji" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -230785,7 +234796,7 @@ BACKGROUND:Although survival statistics in patients with glioblastoma multiforme biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0122, @@ -230807,7 +234818,7 @@ GSDB : Genome Structure Database.""" ; sc:url "http://sysbio.rnet.missouri.edu/3dgenome/GSDB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_3053, @@ -230825,7 +234836,7 @@ GSDB : Genome Structure Database.""" ; biotools:primaryContact "Hu Bo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -230846,12 +234857,16 @@ GSDB : Genome Structure Database.""" ; "Tim Danford" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0203 ; - sc:citation ; + sc:citation , + , + "pmcid:PMC1239896", + "pubmed:12808457", + "pubmed:16199517" ; sc:description "Computational method that determines whether an a priori defined set of genes shows statistically significant, concordant differences between two biological states (e.g. phenotypes)." ; sc:featureList edam:operation_2495, edam:operation_3223, @@ -230864,7 +234879,7 @@ GSDB : Genome Structure Database.""" ; sc:url "http://www.broadinstitute.org/gsea/index.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3053 ; @@ -230880,7 +234895,7 @@ GSDB : Genome Structure Database.""" ; biotools:primaryContact "Wei Keat Lim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -230899,7 +234914,7 @@ GSDB : Genome Structure Database.""" ; biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -230920,7 +234935,7 @@ GSDB : Genome Structure Database.""" ; biotools:primaryContact "Ludwig Geistlinger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -230939,7 +234954,7 @@ GSDB : Genome Structure Database.""" ; biotools:primaryContact "Assaf Oron" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -230959,7 +234974,7 @@ GSDB : Genome Structure Database.""" ; biotools:primaryContact "Dongmin Jung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3673 ; sc:citation "pubmed:22730434" ; @@ -230975,7 +234990,7 @@ GSDB : Genome Structure Database.""" ; "Taemin Song" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -231000,7 +235015,7 @@ GSECA is a R application with a Shiny web interface. The stand-alone version can sc:url "https://github.com/matteocereda/GSECA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:description "GSIM (Gene Expression Simulator) is a C program which simulates gene expression microarray data. It will generate distributions for any number of genes and use those distributions to generate intensities for any number of replicates. It generates two-class data and any number of the genes can be chosen to be differentially expressed. The program is very flexible and the parameters of the differentially expressed genes can be set by the user." ; @@ -231014,7 +235029,7 @@ GSECA is a R application with a Shiny web interface. The stand-alone version can sc:url "http://www.cbil.upenn.edu/expression_simulator/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers." ; sc:license "GPL-3.0" ; @@ -231022,28 +235037,46 @@ GSECA is a R application with a Shiny web interface. The stand-alone version can sc:softwareHelp ; sc:url "https://www.gnu.org/software/gsl/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_3373, + edam:topic_3474 ; + sc:citation , + "pubmed:35838124" ; + sc:description "Graph Neural Network with Self-Supervised Learning for Noncoding RNA-Drug Resistance Association Prediction." ; + sc:featureList edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "GSLRDA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/JJZ-code/GSLRDA" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -231072,7 +235105,7 @@ GSECA is a R application with a Shiny web interface. The stand-alone version can biotools:primaryContact "Thomas Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -231090,7 +235123,7 @@ A package for visualisation of gene set over-representation enrichment analysis. sc:url "https://github.com/tomastokar/gsoap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -231114,7 +235147,7 @@ The novel feature of GSP4PDB is that a protein-ligand structural pattern is grap sc:url "https://structuralbio.utalca.cl/gsp4pdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3056, edam:topic_3127, @@ -231131,10 +235164,10 @@ The novel feature of GSP4PDB is that a protein-ligand structural pattern is grap a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1714" ; - sc:name "Microarray spots image" ; - sc:sameAs "http://edamontology.org/data_1714" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1714" ; + sc:encodingFormat "http://edamontology.org/format_3578" ; + sc:name "Microarray spots image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0122, @@ -231158,7 +235191,7 @@ The novel feature of GSP4PDB is that a protein-ligand structural pattern is grap biotools:primaryContact "Fabian Grandke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -231177,7 +235210,7 @@ The novel feature of GSP4PDB is that a protein-ligand structural pattern is grap biotools:primaryContact "Bahman Afsari" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -231197,7 +235230,7 @@ The novel feature of GSP4PDB is that a protein-ligand structural pattern is grap biotools:primaryContact "Julian Gehring" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0634, @@ -231216,7 +235249,7 @@ The novel feature of GSP4PDB is that a protein-ligand structural pattern is grap biotools:primaryContact "Yao Zhou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -231229,11 +235262,11 @@ The novel feature of GSP4PDB is that a protein-ligand structural pattern is grap "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/gstpred/" ; + sc:url "https://webs.iiitd.edu.in/raghava/gstpred/" ; biotools:primaryContact "Dr.G.P.S.Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation , @@ -231250,7 +235283,7 @@ gsufsort [1] is a fast, portable and lightweight tool for constructing the suffi sc:url "http://www.github.com/felipelouza/gsufsort" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -231268,7 +235301,7 @@ gsufsort [1] is a fast, portable and lightweight tool for constructing the suffi biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -231288,7 +235321,7 @@ gsufsort [1] is a fast, portable and lightweight tool for constructing the suffi biotools:primaryContact "Justin Guinney" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -231312,7 +235345,7 @@ To genotype a microbiome, GT-Pro takes as input one or more shotgun metagenomics sc:url "https://github.com/zjshi/gt-pro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -231330,7 +235363,7 @@ The dataset file contains the S. cerevisiae, H. pylori ,the indepedent data set sc:url "https://github.com/QUST-AIBBDRC/GTB-PPI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -231346,7 +235379,7 @@ The dataset file contains the S. cerevisiae, H. pylori ,the indepedent data set biotools:primaryContact "Bingshan Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0605, @@ -231366,7 +235399,7 @@ Graph Traversal Edit Distance.""" ; sc:url "https://github.com/Ali-E/GTED" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -231392,7 +235425,7 @@ Graph Traversal Edit Distance.""" ; biotools:primaryContact "GTEx contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099 ; @@ -231411,14 +235444,14 @@ Graph Traversal Edit Distance.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3011" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "convert a GTF file to a genePred" ; sc:featureList edam:operation_3267 ; sc:name "gtftogenepred" ; @@ -231426,7 +235459,7 @@ Graph Traversal Edit Distance.""" ; sc:url "https://github.com/ENCODE-DCC/kentUtils/blob/master/src/hg/utils/gtfToGenePred/gtfToGenePred.c" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -231450,7 +235483,7 @@ The key feature of GTmix is that it works with local gene genealogies inferred f sc:url "https://github.com/yufengwudcs/GTmix" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Context-aware non negative matrix factorization clustering" ; sc:featureList edam:operation_3432 ; @@ -231464,7 +235497,7 @@ The key feature of GTmix is that it works with local gene genealogies inferred f biotools:primaryContact "Sebastiano Vascon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -231483,7 +235516,7 @@ GTO is a toolkit for genomics and proteomics, namely for FASTQ, FASTA and SEQ fo sc:url "http://bioinformatics.ua.pt/gto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation ; @@ -231499,7 +235532,7 @@ GTO is a toolkit for genomics and proteomics, namely for FASTQ, FASTA and SEQ fo biotools:primaryContact "Joaquín Goñi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3516 ; sc:description "Program for transforming sets of genotype data for use with the programs SNPTEST and IMPUTE." ; @@ -231511,7 +235544,7 @@ GTO is a toolkit for genomics and proteomics, namely for FASTQ, FASTA and SEQ fo sc:url "http://www.well.ox.ac.uk/~cfreeman/software/gwas/gtool.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -231531,8 +235564,43 @@ Today the versions 0.2.8 for GenomicTools and 0.1.4 for GenomicTools.fileHandler sc:name "GTools" ; sc:url "http://genomictools.danielfischer.name" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "Guanosine-5'-triphosphate (GTP) is a purine nucleotide. GTP is involved in energy transfer or an activator of substrates in biochemical reactions. GTP Binding proteins are regulatory proteins which becomes activated when bound to GTP and is involved in signal transduction." ; + sc:featureList edam:operation_2945 ; + sc:name "gtpbinder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/gtpbinder/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0625, + edam:topic_3517, + edam:topic_3518, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC8922302", + "pubmed:35300047" ; + sc:description "R package GTQC streamlines a majority of the quality control steps and produces a detailed HTML report on a plethora of quality control metrics, thus enabling a swift and rigorous data quality inspection prior to downstream GWAS and related analyses" ; + sc:featureList edam:operation_0484, + edam:operation_2428, + edam:operation_3196 ; + sc:license "Not licensed" ; + sc:name "GTQC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/slzhao/GTQC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0749, @@ -231556,7 +235624,7 @@ Clusters for the same TF revealed by different peak calling methods were joined sc:url "http://gtrd.biouml.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3382, @@ -231575,14 +235643,14 @@ Global Tree Reconstruction System (GTree) software is a open source software for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1017" ; - sc:name "Sequence range" ; - sc:sameAs "http://edamontology.org/data_1017" ] ; + sc:additionalType "http://edamontology.org/data_1017" ; + sc:encodingFormat "http://edamontology.org/format_2078" ; + sc:name "Sequence range" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_2919" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -231606,7 +235674,7 @@ Global Tree Reconstruction System (GTree) software is a open source software for biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -231619,7 +235687,7 @@ Global Tree Reconstruction System (GTree) software is a open source software for sc:url "https://github.com/GTseq/GTseq-Pipeline" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Web application" ; sc:applicationSubCategory edam:topic_0084, @@ -231643,7 +235711,7 @@ Global Tree Reconstruction System (GTree) software is a open source software for sc:url "https://vulcan.cs.uga.edu/gtxplorer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -231656,7 +235724,7 @@ Global Tree Reconstruction System (GTree) software is a open source software for "Zhuo Song" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0176, @@ -231673,7 +235741,7 @@ Global Tree Reconstruction System (GTree) software is a open source software for biotools:primaryContact "Mark P. Foster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0625, @@ -231692,7 +235760,7 @@ Global Tree Reconstruction System (GTree) software is a open source software for biotools:primaryContact "Simon R. Harris" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -231706,7 +235774,7 @@ Global Tree Reconstruction System (GTree) software is a open source software for sc:url "http://bgx.org.uk/software/guess.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -231721,7 +235789,7 @@ Global Tree Reconstruction System (GTree) software is a open source software for biotools:primaryContact "Kevin Chng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -231738,7 +235806,7 @@ Global Tree Reconstruction System (GTree) software is a open source software for biotools:primaryContact "Jemima Jeba" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3374, @@ -231756,7 +235824,7 @@ Global Tree Reconstruction System (GTree) software is a open source software for biotools:primaryContact "Dr. Soumya Banerjee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -231773,7 +235841,7 @@ Global Tree Reconstruction System (GTree) software is a open source software for biotools:primaryContact "GUIDANCE Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_3168, @@ -231792,7 +235860,7 @@ Global Tree Reconstruction System (GTree) software is a open source software for biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -231810,7 +235878,7 @@ Global Tree Reconstruction System (GTree) software is a open source software for sc:url "http://guide.wehi.edu.au/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3518 ; @@ -231826,7 +235894,7 @@ Global Tree Reconstruction System (GTree) software is a open source software for biotools:primaryContact "Claudio Lottaz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -231847,14 +235915,14 @@ Pan-bacterial, genome-wide guide designer.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_2205" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2084" ; - sc:name "Nucleic acid report" ; - sc:sameAs "http://edamontology.org/data_2084" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2084" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Nucleic acid report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "Software to design CRISPR-Cas guide RNA pools in non-model genomes." ; sc:featureList edam:operation_2419 ; @@ -231868,7 +235936,7 @@ Pan-bacterial, genome-wide guide designer.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -231886,14 +235954,14 @@ GuidePro is a two-layer ensemble predictor that enables the integration of multi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1048" ; - sc:name "Database ID" ; - sc:sameAs "http://edamontology.org/data_1048" ] ; + sc:additionalType "http://edamontology.org/data_1048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Sequence set (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_1775, @@ -231911,7 +235979,7 @@ GuidePro is a two-layer ensemble predictor that enables the integration of multi sc:url "http://guides.sanjanalab.org/#/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0099, @@ -231932,7 +236000,7 @@ GuidePro is a two-layer ensemble predictor that enables the integration of multi "Developers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0097, @@ -231950,7 +236018,7 @@ GuidePro is a two-layer ensemble predictor that enables the integration of multi biotools:primaryContact "Lihua Julie Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -231964,20 +236032,8 @@ GuidePro is a two-layer ensemble predictor that enables the integration of multi sc:url "http://www.guidestar.kr" ; biotools:primaryContact "Jee Eun Kang" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3399, - edam:topic_3416 ; - sc:citation , - "pubmed:31445277" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | A mobile 3D application to improve the accuracy, consistency, and efficiency of clinician-led home-based falls-risk assessments | BACKGROUND:A key falls prevention intervention delivered within occupational therapy is the home environment falls-risk assessment process. This involves the clinician visiting the patient's home and using a 2D paper-based measurement guidance booklet to ensure that all measurements are taken and recorded accurately. However, 30% of all assistive devices installed within the home are abandoned by patients, in part as a result of the inaccurate measurements being recorded as part of the home environment falls-risk assessment process. In the absence of more appropriate and effective guidance, high levels of device abandonment are likely to persist" ; - sc:featureList edam:operation_0337, - edam:operation_3435 ; - sc:name "guidetomeasure-OT" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31445277" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0219, @@ -232005,7 +236061,7 @@ GuidePro is a two-layer ensemble predictor that enables the integration of multi sc:url "http://www.guidetopharmacology.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -232024,7 +236080,7 @@ GuidingNet is a method to reveal transcriptional cofactor and predict binding fo sc:url "https://github.com/AMSSwanglab/GuidingNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2259 ; sc:citation , @@ -232042,7 +236098,7 @@ GuidingNet is a method to reveal transcriptional cofactor and predict binding fo biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -232061,7 +236117,7 @@ GuidingNet is a method to reveal transcriptional cofactor and predict binding fo biotools:primaryContact "Ka Yee Yeung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3396 ; sc:author ; @@ -232080,14 +236136,14 @@ GuidingNet is a method to reveal transcriptional cofactor and predict binding fo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2339" ; - sc:name "Ontology concept name" ; - sc:sameAs "http://edamontology.org/data_2339" ] ; + sc:additionalType "http://edamontology.org/data_2339" ; + sc:encodingFormat "http://edamontology.org/format_1963" ; + sc:name "Ontology concept name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3619" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3396 ; sc:author ; @@ -232110,7 +236166,7 @@ GuidingNet is a method to reveal transcriptional cofactor and predict binding fo sc:url "http://sbi.imim.es/web/GUILDify.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -232130,14 +236186,14 @@ Graphical User Interfaces for Phase I Designs.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3586" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -232158,7 +236214,7 @@ Graphical User Interfaces for Phase I Designs.""" ; biotools:primaryContact "Jia Meng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -232176,7 +236232,7 @@ Python package for detection of chimerism and contamination in prokaryotic genom sc:url "https://github.com/grp-bork/gunc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3301, @@ -232193,7 +236249,7 @@ Python package for detection of chimerism and contamination in prokaryotic genom biotools:primaryContact "Hongzhe Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0622, @@ -232210,7 +236266,7 @@ Python package for detection of chimerism and contamination in prokaryotic genom biotools:primaryContact "Yutaka Ueno" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3382, @@ -232226,8 +236282,31 @@ Python package for detection of chimerism and contamination in prokaryotic genom "Windows" ; sc:url "https://github.com/LernerLab/GuPPy" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0203, + edam:topic_0602, + edam:topic_0623, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC9039005", + "pubmed:35495163" ; + sc:description "A platform for gene function analysis in G. uralensis" ; + sc:featureList edam:operation_0314, + edam:operation_2436, + edam:operation_3463, + edam:operation_3672 ; + sc:license "Not licensed" ; + sc:name "GURFAP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.gzybioinformatics.cn/GURFAP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -232248,7 +236327,7 @@ GUST predicts oncogenes (OGs), tumor suppressor gens (TSGs) and passenger genes sc:url "https://github.com/liliulab/gust" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3068, @@ -232266,15 +236345,8 @@ gutMDisorder (http: bio-annotation.cn gutMDisorder), a manually curated database sc:name "gutMDisorder" ; sc:url "http://bio-annotation.cn/gutMDisorder" . - a sc:SoftwareApplication ; - sc:additionalType "Bioinformatics portal" ; - sc:applicationSubCategory edam:topic_3391 ; - sc:description "In the past decades, large-scale endeavors provide a preliminary understanding of the biology and medical significance of human microbiota. DNA-based analyses, especially next-generation sequencing, have expanded our horizon by generating enormous new data sets that can be mined for information on the composition and functional properties of microbial communities. With extensive experience in human microbiome research, we can provide a comprehensive solution to pharmaceutical and biotechnology companies, as well as academia and government agencies." ; - sc:name "Gut microbiota Analysis" ; - sc:url "https://www.cd-genomics.com/microbioseq/microecology-and-human-health.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3174, @@ -232293,7 +236365,7 @@ The compositionality of the microbiome data is well-known but often neglected. T sc:url "http://lab.malab.cn/soft/GutBalance" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -232311,8 +236383,50 @@ Recently numerous studies have identified that the perturbations in the gut micr sc:name "gutMEGA" ; sc:url "http://gutmega.omicsbio.info" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3172, + edam:topic_3174, + edam:topic_3697, + edam:topic_3837 ; + sc:citation , + "pubmed:34500458" ; + sc:description "A comprehensive database for target genes of gut microbes and microbial metabolites." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:name "gutMGene" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bio-annotation.cn/gutmgene" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0634, + edam:topic_3382, + edam:topic_3407, + edam:topic_3697 ; + sc:citation ; + sc:description "An interactive platform for gut microbiome interaction exploration." ; + sc:featureList edam:operation_0276, + edam:operation_3463, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:name "GutMicroNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gutmicro.net" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -232334,14 +236448,13 @@ Recently numerous studies have identified that the perturbations in the gut micr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_1216" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API", "Web application" ; @@ -232363,7 +236476,7 @@ Recently numerous studies have identified that the perturbations in the gut micr sc:url "http://bibiserv.cebitec.uni-bielefeld.de/guugle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0797 ; sc:citation ; @@ -232379,7 +236492,7 @@ Recently numerous studies have identified that the perturbations in the gut micr sc:url "http://genome.lbl.gov/cgi-bin/GenomeVista" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -232397,7 +236510,7 @@ Recently numerous studies have identified that the perturbations in the gut micr biotools:primaryContact "Florian Hahne" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_0634, @@ -232418,7 +236531,7 @@ Recently numerous studies have identified that the perturbations in the gut micr sc:url "https://github.com/drzeeshanahmed/GVViZ-Public" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -232440,7 +236553,7 @@ Recently numerous studies have identified that the perturbations in the gut micr biotools:primaryContact "Brad Verhulst" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3055 ; sc:citation , @@ -232458,7 +236571,7 @@ Recently numerous studies have identified that the perturbations in the gut micr biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation ; @@ -232471,7 +236584,7 @@ Recently numerous studies have identified that the perturbations in the gut micr sc:url "https://gwapp.gmi.oeaw.ac.at/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2885, @@ -232489,7 +236602,7 @@ Recently numerous studies have identified that the perturbations in the gut micr biotools:primaryContact "Pantelis Bagos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3517 ; @@ -232507,7 +236620,7 @@ The application is hosted at gwaRs.""" ; sc:url "https://gwasviz.shinyapps.io/gwaRs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -232528,7 +236641,7 @@ Summary Statistics from Other GWASes:.""" ; sc:url "https://pdgenetics.shinyapps.io/GWASBrowser/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3517, edam:topic_3810 ; @@ -232543,7 +236656,7 @@ Summary Statistics from Other GWASes:.""" ; sc:url "https://bigd.big.ac.cn/gwas/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -232565,7 +236678,7 @@ VCF vs plain text GWAS storage formats.""" ; sc:url "https://gwas.mrcieu.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -232587,7 +236700,7 @@ VCF vs plain text GWAS storage formats.""" ; biotools:primaryContact "GWAS3 Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3173, @@ -232602,7 +236715,7 @@ VCF vs plain text GWAS storage formats.""" ; sc:url "http://mulinlab.tmu.edu.cn/gwas4d" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -232612,8 +236725,13 @@ VCF vs plain text GWAS storage formats.""" ; edam:topic_3366, edam:topic_3517 ; sc:citation , + , + , "pmcid:PMC3965119", - "pubmed:24316577" ; + "pmcid:PMC6323933", + "pubmed:24316577", + "pubmed:27899670", + "pubmed:30445434" ; sc:description "A catalogue that provides a publicly available manually curated collection of published GWAS assaying at least 100 000 single-nucleotide polymorphisms (SNPs) and all SNP-trait associations with P <1 × 10−5." ; sc:featureList edam:operation_0484, edam:operation_2421, @@ -232631,7 +236749,7 @@ VCF vs plain text GWAS storage formats.""" ; biotools:primaryContact "GWAS Catalog Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -232650,7 +236768,7 @@ VCF vs plain text GWAS storage formats.""" ; biotools:primaryContact "VJ Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -232672,16 +236790,33 @@ VCF vs plain text GWAS storage formats.""" ; biotools:primaryContact "For general questions", "For technical support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2885, + edam:topic_3517 ; + sc:citation , + "pubmed:34814627" ; + sc:description "An R script to filter genome-wide association study" ; + sc:featureList edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "gwasfilter" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/lab319/gwas_filter" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3288" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3517 ; sc:author "Arcadi Navarro Cuartiellas", @@ -232704,7 +236839,7 @@ VCF vs plain text GWAS storage formats.""" ; sc:url "http://www.gwaspi.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3517 ; @@ -232721,7 +236856,7 @@ VCF vs plain text GWAS storage formats.""" ; sc:url "https://github.com/ramiromagno/gwasrapidd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3517 ; @@ -232743,7 +236878,7 @@ VCF vs plain text GWAS storage formats.""" ; "Adrienne Stilp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0208, edam:topic_2885, @@ -232767,7 +236902,7 @@ VCF vs plain text GWAS storage formats.""" ; biotools:primaryContact "Abbas Rizvi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3678 ; @@ -232785,7 +236920,7 @@ VCF vs plain text GWAS storage formats.""" ; sc:url "http://www.eurac.edu/en/research/health/biomed/services/Pages/GWAtoolbox.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -232805,14 +236940,12 @@ Pipeline for augmented co-expression analysis.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0219, @@ -232826,11 +236959,11 @@ Pipeline for augmented co-expression analysis.""" ; "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/gwfasta/" ; + sc:url "http://webs.iiitd.edu.in/raghava/gwfasta/" ; biotools:primaryContact "Dr.G.P.S.Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -232852,7 +236985,7 @@ Pipeline for augmented co-expression analysis.""" ; biotools:primaryContact "GWIDD Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0769, @@ -232872,7 +237005,7 @@ GWideCodeML is a Python package that provides support for testing evolutionary h sc:url "https://github.com/lauguma/gwidecodeml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203 ; sc:author "Michel AM, Fox G, M Kiran A, De Bo C, O'Connor PB, Heaphy SM" ; @@ -232897,7 +237030,7 @@ GWideCodeML is a Python package that provides support for testing evolutionary h sc:url "http://gwips.ucc.ie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053 ; @@ -232911,7 +237044,7 @@ GWideCodeML is a Python package that provides support for testing evolutionary h biotools:primaryContact "Joel S. Bader" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2275, @@ -232932,7 +237065,7 @@ GWOVina - Fast Protein-Ligand Docking Tool based on GWO and AutoDock Vina.""" ; sc:url "https://cbbio.cis.um.edu.mo/software/gwovina" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Plug-in" ; sc:applicationSubCategory edam:topic_2269, @@ -232951,16 +237084,40 @@ GWOVina - Fast Protein-Ligand Docking Tool based on GWO and AutoDock Vina.""" ; sc:url "https://cran.r-project.org/web/packages/GWRM/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0199, + edam:topic_0602, + edam:topic_0625, + edam:topic_2275 ; + sc:citation , + "pmcid:PMC9188266", + "pubmed:35662458" ; + sc:description "A Resource for Mapping Variants onto Experimental and Modeled Structures of Human Protein Complexes." ; + sc:featureList edam:operation_0331, + edam:operation_0477, + edam:operation_3196, + edam:operation_3891, + edam:operation_3899 ; + sc:isAccessibleForFree true ; + sc:name "GWYRE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.gwyre.org" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3568" ; - sc:name "Gene Expression Atlas Experiment ID" ; - sc:sameAs "http://edamontology.org/data_3568" ] ; + sc:additionalType "http://edamontology.org/data_3568" ; + sc:name "Gene Expression Atlas Experiment ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -232984,14 +237141,13 @@ GWOVina - Fast Protein-Ligand Docking Tool based on GWO and AutoDock Vina.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3568" ; - sc:name "Gene Expression Atlas Experiment ID" ; - sc:sameAs "http://edamontology.org/data_3568" ] ; + sc:additionalType "http://edamontology.org/data_3568" ; + sc:name "Gene Expression Atlas Experiment ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -233009,7 +237165,7 @@ GWOVina - Fast Protein-Ligand Docking Tool based on GWO and AutoDock Vina.""" ; biotools:primaryContact "Expression Atlas contact email" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0203, @@ -233030,7 +237186,7 @@ GWOVina - Fast Protein-Ligand Docking Tool based on GWO and AutoDock Vina.""" ; biotools:primaryContact "Martin Ringwald" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053, @@ -233047,7 +237203,7 @@ GWOVina - Fast Protein-Ligand Docking Tool based on GWO and AutoDock Vina.""" ; biotools:primaryContact "Department of biostatistics USC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -233064,7 +237220,7 @@ GWOVina - Fast Protein-Ligand Docking Tool based on GWO and AutoDock Vina.""" ; biotools:primaryContact "Department of Biostatistics USC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -233081,7 +237237,7 @@ GWOVina - Fast Protein-Ligand Docking Tool based on GWO and AutoDock Vina.""" ; sc:url "http://statweb.stanford.edu/~serban/gxna/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0160, @@ -233105,14 +237261,12 @@ GWOVina - Fast Protein-Ligand Docking Tool based on GWO and AutoDock Vina.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -233129,7 +237283,7 @@ GWOVina - Fast Protein-Ligand Docking Tool based on GWO and AutoDock Vina.""" ; biotools:primaryContact "Yuesheng Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -233147,7 +237301,7 @@ GWOVina - Fast Protein-Ligand Docking Tool based on GWO and AutoDock Vina.""" ; "Jochen Zuegge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -233163,7 +237317,7 @@ GWOVina - Fast Protein-Ligand Docking Tool based on GWO and AutoDock Vina.""" ; biotools:primaryContact "Bernie Devlin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -233184,54 +237338,48 @@ GWOVina - Fast Protein-Ligand Docking Tool based on GWO and AutoDock Vina.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2770" ; - sc:name "HIT ID" ; - sc:sameAs "http://edamontology.org/data_2770" ], + sc:additionalType "http://edamontology.org/data_2771" ; + sc:name "HIX ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2771" ; - sc:name "HIX ID" ; - sc:sameAs "http://edamontology.org/data_2771" ], + sc:additionalType "http://edamontology.org/data_2771" ; + sc:name "HIX ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2770" ; - sc:name "HIT ID" ; - sc:sameAs "http://edamontology.org/data_2770" ], + sc:additionalType "http://edamontology.org/data_2771" ; + sc:name "HIX ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2771" ; - sc:name "HIX ID" ; - sc:sameAs "http://edamontology.org/data_2771" ], + sc:additionalType "http://edamontology.org/data_2770" ; + sc:name "HIT ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2770" ; - sc:name "HIT ID" ; - sc:sameAs "http://edamontology.org/data_2770" ], + sc:additionalType "http://edamontology.org/data_2770" ; + sc:name "HIT ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2771" ; - sc:name "HIX ID" ; - sc:sameAs "http://edamontology.org/data_2771" ] ; + sc:additionalType "http://edamontology.org/data_2770" ; + sc:name "HIT ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene transcript report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ], + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Gene transcript report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene transcript report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0199, @@ -233252,7 +237400,7 @@ GWOVina - Fast Protein-Ligand Docking Tool based on GWO and AutoDock Vina.""" ; sc:url "http://www.h-invitational.jp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -233271,7 +237419,7 @@ GWOVina - Fast Protein-Ligand Docking Tool based on GWO and AutoDock Vina.""" ; "Sokolovskiy Igor Vitalievich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0154, @@ -233289,7 +237437,7 @@ H-RACS is designed to predict synergistic drug combinations based on drug featur sc:url "http://www.badd-cao.net/h-racs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3474 ; @@ -233301,7 +237449,7 @@ H-RACS is designed to predict synergistic drug combinations based on drug featur sc:url "http://github.com/Cobanoglu-Lab/h-tSNE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0128, @@ -233318,7 +237466,7 @@ H-RACS is designed to predict synergistic drug combinations based on drug featur sc:url "http://www.cbi.seu.edu.cn/H-VDW/H-VDW.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -233334,14 +237482,13 @@ Start your journey with H2V ...""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:name "Genotype/phenotype report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -233362,7 +237509,7 @@ Start your journey with H2V ...""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2830, @@ -233378,7 +237525,7 @@ Start your journey with H2V ...""" ; biotools:primaryContact "Anna Tramontano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -233393,7 +237540,7 @@ Start your journey with H2V ...""" ; biotools:primaryContact "Alberto Magi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -233416,7 +237563,7 @@ You will need Perl and bedtools to be installed in your system.""" ; sc:url "https://github.com/susbo/concur" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2814, @@ -233434,7 +237581,7 @@ You will need Perl and bedtools to be installed in your system.""" ; sc:url "https://coronavirus3d.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3125, @@ -233454,8 +237601,25 @@ This package can be used to find enriched peak regions from HiChIP datasets that sc:name "h4HiChIP-Peaks" ; sc:url "https://github.com/ChenfuShi/HiChIP_peaks" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Workbench" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0203, + edam:topic_3170 ; + sc:citation , + "pubmed:35311944" ; + sc:description "A Python library to facilitate programmatic analysis of data from high-throughput sequencing (HTS) experiments." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "h4HTSeq" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://pypi.python.org/pypi/HTSeq" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -233478,7 +237642,7 @@ ExomeSeq, Genetics, GenomeWideAssociation, ImmunoOncology, Software, VariantDete sc:url "https://bioconductor.org/packages/release/bioc/html/RVS.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -233496,7 +237660,7 @@ ExomeSeq, Genetics, GenomeWideAssociation, ImmunoOncology, Software, VariantDete biotools:primaryContact "Paul Theodor Pyl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -233515,7 +237679,7 @@ The extended human GPCR network.""" ; sc:url "http://bioinformatics.biol.uoa.gr/hGPCRnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0659, @@ -233534,7 +237698,7 @@ Transcription factors (TFs) as key regulators could modulate the expression of t sc:url "http://bioinfo.life.hust.edu.cn/hTFtarget" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3518 ; sc:citation ; @@ -233548,7 +237712,7 @@ Transcription factors (TFs) as key regulators could modulate the expression of t sc:url "http://webee.technion.ac.il/people/YoninaEldar/Info/software/HaarSeg.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation "pubmed:21342576" ; @@ -233558,8 +237722,25 @@ Transcription factors (TFs) as key regulators could modulate the expression of t sc:operatingSystem "Linux" ; sc:url "https://code.google.com/p/hacml/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2640, + edam:topic_3170 ; + sc:citation , + "pubmed:35303067" ; + sc:description "A unified and tidy R framework to easily compute gene expression signature scores." ; + sc:featureList edam:operation_2436 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "hacksig" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "https://CRAN.R-project.org/package=hacksig" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application", "Web service" ; @@ -233599,7 +237780,7 @@ Transcription factors (TFs) as key regulators could modulate the expression of t biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0769, @@ -233618,7 +237799,7 @@ Tools for processing, analysis and visualization of HDX-MS experiments.""" ; sc:url "http://mslab-ibb.pl/shiny/HaDeX/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workbench" ; sc:applicationSubCategory edam:topic_3316 ; @@ -233631,7 +237812,7 @@ Tools for processing, analysis and visualization of HDX-MS experiments.""" ; sc:url "https://hadoop.apache.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3168, @@ -233649,7 +237830,7 @@ Hadoop-CNV-RF: A Scalable Copy Number Variation Detection Tool for Next-Generati sc:url "https://github.com/getiria-onsongo/hadoop-cnvrf-public" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3175 ; @@ -233663,7 +237844,7 @@ Hadoop-CNV-RF: A Scalable Copy Number Variation Detection Tool for Next-Generati sc:url "https://github.com/WGLab/HadoopCNV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0623, @@ -233682,7 +237863,7 @@ This tool is using HaForest algorithm to identify haploinsufficient genes.""" ; sc:url "https://github.com/yangyn533/HaForest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -233700,7 +237881,7 @@ HAHmiR DB (High-Altitude Human miRNA Database) is a unique, comprehensive, curat sc:url "http://www.hahmirdb.in" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0082 ; sc:citation ; @@ -233715,7 +237896,7 @@ HAHmiR DB (High-Altitude Human miRNA Database) is a unique, comprehensive, curat biotools:primaryContact "Forum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, @@ -233735,19 +237916,8 @@ Hybrid Automata Library (HAL) is a Java library that facilitates hybrid modeling sc:name "HAL" ; sc:url "https://github.com/MathOnco/HAL" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3067, - edam:topic_3304, - edam:topic_3444 ; - sc:citation , - "pmcid:PMC6718608", - "pubmed:31507507" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE BROKEN! | > CORRECT NAME OF TOOL COULD ALSO BE 'histological atlases' | MRI Atlas of the Human Deep Brain | Mastering detailed anatomy of the human deep brain in clinical neurosciences is challenging. Although numerous pioneering works have gathered a large dataset of structural and topographic information, it is still difficult to transfer this knowledge into practice, even with advanced magnetic resonance imaging techniques. Thus, classical histological atlases continue to be used to identify structures for stereotactic targeting in functional neurosurgery. Physicians mainly use these atlases as a template co-registered with the patient's brain. However, it is possible to directly identify stereotactic targets on MRI scans, enabling personalized targeting" ; - sc:name "hal-02116633" ; - sc:url "https://hal.archives-ouvertes.fr/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -233764,7 +237934,7 @@ Hybrid Automata Library (HAL) is a Java library that facilitates hybrid modeling sc:url "https://pypi.org/project/hal-x/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0102, edam:topic_0196, @@ -233784,7 +237954,7 @@ Hybrid Automata Library (HAL) is a Java library that facilitates hybrid modeling sc:url "https://github.com/ComparativeGenomicsToolkit/hal/tree/master/synteny" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3474, @@ -233802,7 +237972,7 @@ Halcyon incorporates neural-network techniques frequently used in the field of m sc:url "https://github.com/relastle/halcyon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, edam:topic_3316, @@ -233820,7 +237990,7 @@ Halcyon incorporates neural-network techniques frequently used in the field of m biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -233835,8 +238005,30 @@ Halcyon incorporates neural-network techniques frequently used in the field of m sc:url "http://datamining.xmu.edu.cn/software/halign/" ; biotools:primaryContact "Quan Zou" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_3172, + edam:topic_3295, + edam:topic_3518, + edam:topic_3697 ; + sc:citation ; + sc:description "High-sensitivity pattern discovery in large, paired multi-omic datasets." ; + sc:featureList edam:operation_0314, + edam:operation_2238, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "HAllA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://huttenhower.sph.harvard.edu/halla" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0797, edam:topic_3070, @@ -233855,14 +238047,12 @@ Halcyon incorporates neural-network techniques frequently used in the field of m a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -233879,14 +238069,17 @@ Halcyon incorporates neural-network techniques frequently used in the field of m a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3779" ; - sc:name "Annotated text" ; - sc:sameAs "http://edamontology.org/data_3779" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3779" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Annotated text" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation , + "pmcid:PMC8756192", + "pubmed:35022699" ; sc:description "Halvade implements germline and somatic variant calling pipelines based on the best-practices pipelines from the Broad Institute using the Spark framework. Halvade will produce a VCF output file which contains the single nucleotide polymorphisms (SNPs) and short insertions and deletions (indels) when supported by the used tools. This program requires Spark on either a local cluster with one or more nodes, an Amazon EMR cluster or the Docker image to run." ; sc:featureList edam:operation_0491, edam:operation_3227 ; @@ -233898,12 +238091,33 @@ Halcyon incorporates neural-network techniques frequently used in the field of m "2.0.5" ; sc:url "https://bitbucket.org/dries_decap/halvadeforspark" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0769, + edam:topic_3174, + edam:topic_3697, + edam:topic_3837 ; + sc:citation , + "pmcid:PMC8947609", + "pubmed:35286304" ; + sc:description "An optimised culture-free Hi-C metagenomics pipeline for tracking antimicrobial resistance genes in complex microbial communities." ; + sc:featureList edam:operation_0310, + edam:operation_3731, + edam:operation_3840 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "HAM-ART" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/lkalmar/HAM-ART" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1963" ; + sc:name "Protein sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0623, @@ -233925,7 +238139,7 @@ Halcyon incorporates neural-network techniques frequently used in the field of m biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -233943,7 +238157,7 @@ Halcyon incorporates neural-network techniques frequently used in the field of m biotools:primaryContact "ExPASy helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -233964,7 +238178,7 @@ HAMAP is a system for the classification and annotation of protein sequences. It sc:url "https://hamap.expasy.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -233983,7 +238197,7 @@ HAMAP is a system for the classification and annotation of protein sequences. It biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0154, @@ -234003,7 +238217,7 @@ HAMAP is a system for the classification and annotation of protein sequences. It sc:url "https://github.com/HAMdetector/Escape.jl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2269 ; @@ -234019,7 +238233,7 @@ Hamming distance calculation from multiple sequence data for heatmap visualizati sc:url "https://github.com/alexeyrakov/HamHeat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0797, @@ -234035,7 +238249,7 @@ Hamming distance calculation from multiple sequence data for heatmap visualizati biotools:primaryContact "John Wiedenhoeft" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3510 ; @@ -234049,8 +238263,29 @@ Hamming distance calculation from multiple sequence data for heatmap visualizati sc:url "http://www.recamo.cz/en/software/hammock-cluster-peptides/" ; biotools:primaryContact "Adam Krejci" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0769, + edam:topic_3174, + edam:topic_3277, + edam:topic_3305 ; + sc:citation ; + sc:description "Benchmarking software to predict antibiotic resistance phenotypes in shotgun metagenomes using simulated data." ; + sc:featureList edam:operation_0310, + edam:operation_3196, + edam:operation_3482 ; + sc:isAccessibleForFree true ; + sc:license "CC0-1.0" ; + sc:name "hAMRoaster" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ewissel/hAMRoaster" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3518 ; @@ -234067,10 +238302,10 @@ Hamming distance calculation from multiple sequence data for heatmap visualizati a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_2640, @@ -234092,7 +238327,7 @@ Hamming distance calculation from multiple sequence data for heatmap visualizati biotools:primaryContact "Daniel Georgiev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3071, @@ -234111,7 +238346,7 @@ This website uses cookies. By continuing to browse the site you are agreeing to sc:url "http://www.handle-on-qol.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -234131,30 +238366,8 @@ This website uses cookies. By continuing to browse the site you are agreeing to sc:url "https://github.com/JH-Zhou/HandyCNV" ; biotools:primaryContact "Yuangang Shi" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_0659, - edam:topic_2229, - edam:topic_3308, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6868439", - "pubmed:31665448" ; - sc:description """Assembly and annotation of the mitochondrial minicircle genome of a differentiation-competent strain of Trypanosoma brucei. - -Kinetoplastids are protists defined by one of the most complex mitochondrial genomes in nature, the kinetoplast. In the sleeping sickness parasite Trypanosoma brucei, the kinetoplast is a chain mail-like network of two types of interlocked DNA molecules: a few dozen ∼23-kb maxicircles (homologs of the mitochondrial genome of other eukaryotes) and thousands of ∼1-kb minicircles. Maxicircles encode components of respiratory chain complexes and the mitoribosome. Several maxicircle-encoded mRNAs undergo extensive post-transcriptional RNA editing via addition and deletion of uridines. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/beast (BIO.ED.AC.UK). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'minicircle', 'kinetoplast', 'maxicircles'""" ; - sc:featureList edam:operation_0308, - edam:operation_0310, - edam:operation_3096 ; - sc:name "hank" ; - sc:url "http://hank.bio.ed.ac.uk" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2533, @@ -234173,7 +238386,7 @@ Kinetoplastids are protists defined by one of the most complex mitochondrial gen biotools:primaryContact "H.A.Nagarajaram" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -234190,7 +238403,7 @@ Kinetoplastids are protists defined by one of the most complex mitochondrial gen biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -234212,7 +238425,7 @@ The hap-ibd program detects identity-by-descent (IBD) segments and homozygosity- sc:url "https://github.com/browning-lab/hap-ibd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0625, @@ -234234,7 +238447,7 @@ We are providing ful support for this package. Feel free to ask your questions t sc:url "https://sourceforge.net/projects/SDhaP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -234253,7 +238466,7 @@ We are providing ful support for this package. Feel free to ask your questions t biotools:primaryContact "Selina Vattathil" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -234267,7 +238480,7 @@ We are providing ful support for this package. Feel free to ask your questions t sc:url "http://www.stt.msu.edu/~cui/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:description "An approach to finding optimal solutions for the haplotype assembly problem under the minimum-error-correction (MEC) model." ; @@ -234278,7 +238491,7 @@ We are providing ful support for this package. Feel free to ask your questions t sc:url "http://rnc.r.dendai.ac.jp/hapAssembly.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -234296,7 +238509,7 @@ We are providing ful support for this package. Feel free to ask your questions t biotools:primaryContact "Brad McNeney" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -234312,7 +238525,7 @@ We are providing ful support for this package. Feel free to ask your questions t biotools:primaryContact "Murray D. Patterson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -234327,7 +238540,7 @@ We are providing ful support for this package. Feel free to ask your questions t biotools:primaryContact "Thomas Mailund" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625 ; sc:citation ; @@ -234345,22 +238558,22 @@ We are providing ful support for this package. Feel free to ask your questions t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1863" ; - sc:name "Haplotype map" ; - sc:sameAs "http://edamontology.org/data_1863" ], + sc:additionalType "http://edamontology.org/data_1863" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Haplotype map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """HapCUT2 is a maximum-likelihood-based tool for assembling haplotypes from DNA sequence reads, designed to "just work" with excellent speed and accuracy across a range of long- and short-read sequencing technologies. The output is in Haplotype block format described here: https://github.com/vibansal/HapCUT2/blob/master/outputformat.md""" ; sc:featureList edam:operation_0487, @@ -234373,8 +238586,27 @@ The output is in Haplotype block format described here: https://github.com/viban "1.3.1" ; sc:url "https://github.com/vibansal/HapCUT2" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_3056, + edam:topic_3796 ; + sc:citation , + "pubmed:35482481" ; + sc:description "A package containing algorithms, exKING-robust and KIMGENS, to estimate kinship in haploid-diploid mixed populations." ; + sc:featureList edam:operation_0484, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "HapDipKinship" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/YenWenWang/HapDipKinship" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -234396,7 +238628,7 @@ The output is in Haplotype block format described here: https://github.com/viban biotools:primaryContact "Sanghyun Park" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0654, @@ -234411,26 +238643,26 @@ The output is in Haplotype block format described here: https://github.com/viban a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1863" ; - sc:name "Haplotype map" ; - sc:sameAs "http://edamontology.org/data_1863" ], + sc:additionalType "http://edamontology.org/data_1863" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Haplotype map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -234451,7 +238683,7 @@ The output is in Haplotype block format described here: https://github.com/viban biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -234469,7 +238701,7 @@ The output is in Haplotype block format described here: https://github.com/viban sc:url "https://forge-dga.jouy.inra.fr/projects/hapflk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -234491,7 +238723,7 @@ The output is in Haplotype block format described here: https://github.com/viban "Mitchell J Sullivan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0102, @@ -234513,7 +238745,7 @@ Next-generation sequencing (NGS) offers a powerful opportunity to identify low-a sc:url "https://gwcbi.github.io/haphpipe_docs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -234525,7 +238757,7 @@ Next-generation sequencing (NGS) offers a powerful opportunity to identify low-a sc:url "http://hapi.csail.mit.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3277 ; @@ -234537,8 +238769,27 @@ Next-generation sequencing (NGS) offers a powerful opportunity to identify low-a sc:softwareVersion "1.01" ; sc:url "http://code.google.com/p/hapi-ur/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2830, + edam:topic_3421 ; + sc:citation , + "pubmed:34799151" ; + sc:description "Graphical user interface for the haplotype frequency estimation software Hapl-o-Mat." ; + sc:featureList edam:operation_0487, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Hapl-o-Mat" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/DKMS/hapl-o-Mat" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -234556,7 +238807,7 @@ Next-generation sequencing (NGS) offers a powerful opportunity to identify low-a "Shawn O'Neil" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -234579,7 +238830,7 @@ Haplo-ST is a pipeline for performing standardized whole-genome multi-locus sequ sc:url "https://github.com/swarnalilouha/Haplo-ST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -234597,7 +238848,7 @@ Haplo-ST is a pipeline for performing standardized whole-genome multi-locus sequ sc:url "http://www.cs.technion.ac.il/labs/cbl/haploblock/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0622, @@ -234615,7 +238866,7 @@ Haplocheck detects contamination in mtDNA AND WGS sequencing studies by analyzin sc:url "https://github.com/genepi/haplocheck" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0781, edam:topic_3053, @@ -234631,7 +238882,7 @@ Haplocheck detects contamination in mtDNA AND WGS sequencing studies by analyzin sc:url "https://github.com/cbg-ethz/haploclique" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -234646,7 +238897,7 @@ Haplocheck detects contamination in mtDNA AND WGS sequencing studies by analyzin biotools:primaryContact "Melanie Bahlo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -234663,7 +238914,7 @@ Haplocheck detects contamination in mtDNA AND WGS sequencing studies by analyzin biotools:primaryContact "Noah Rosenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -234683,7 +238934,7 @@ Haplocheck detects contamination in mtDNA AND WGS sequencing studies by analyzin biotools:primaryContact "Florian Kronenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0625, @@ -234699,7 +238950,7 @@ Haplocheck detects contamination in mtDNA AND WGS sequencing studies by analyzin biotools:primaryContact "Paul Scheet' lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -234712,7 +238963,7 @@ Haplocheck detects contamination in mtDNA AND WGS sequencing studies by analyzin sc:url "http://www.sailing.cs.cmu.edu/main/?page_id=475" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3307 ; @@ -234727,7 +238978,7 @@ Haplocheck detects contamination in mtDNA AND WGS sequencing studies by analyzin sc:url "https://github.com/mfruzan/HaploMaker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -234749,7 +239000,7 @@ Haplocheck detects contamination in mtDNA AND WGS sequencing studies by analyzin sc:url "http://haplopainter.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -234771,7 +239022,7 @@ Haplocheck detects contamination in mtDNA AND WGS sequencing studies by analyzin biotools:primaryContact "Ilya Y. Zhbannikov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -234784,7 +239035,7 @@ Haplocheck detects contamination in mtDNA AND WGS sequencing studies by analyzin sc:url "https://www.cs.helsinki.fi/group/genetics/haplotyping.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3053, @@ -234801,7 +239052,7 @@ Haplocheck detects contamination in mtDNA AND WGS sequencing studies by analyzin biotools:primaryContact "Gustavo Glusman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -234811,7 +239062,7 @@ Haplocheck detects contamination in mtDNA AND WGS sequencing studies by analyzin sc:url "http://www.haplosite.com/haplosearch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0625, @@ -234827,8 +239078,32 @@ Haplocheck detects contamination in mtDNA AND WGS sequencing studies by analyzin sc:softwareHelp ; sc:url "http://www.statgen.nus.edu.sg" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0196, + edam:topic_0654, + edam:topic_0780, + edam:topic_3500 ; + sc:citation ; + sc:description "Tools for haplotype-wise reconstruction of pseudomolecules" ; + sc:featureList edam:operation_0523, + edam:operation_0524, + edam:operation_0525, + edam:operation_3216, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "HaploSync" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/andreaminio/haplosync" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -234850,7 +239125,7 @@ For primer/probe design for mtDNA.""" ; sc:url "https://haplotracker.cau.ac.kr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3305, @@ -234868,7 +239143,7 @@ HaplotypeExplorer is an interactive haplotype network viewer for spatiotemporal sc:url "https://github.com/TKSjp/HaplotypeExplorer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3056 ; sc:description "This pipeline prepares the population genotypes ped/map files, runs them on SHAPEIT, optionally uses the results as input for IMPUTE2 using the 1000G phase III reference panel, and finally converts them to Chromopainter_v2 formats in order to perform with fineSTRUCTURE fs 2.0.7 two clusterings of donors and recipients respectively, and with Chromopainter_v2 a painting of the resulting recipient clusters out of the donor clusters." ; @@ -234882,7 +239157,7 @@ HaplotypeExplorer is an interactive haplotype network viewer for spatiotemporal biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102 ; sc:description "Genotype Transposer is an excel macro that will format data from an Excel spreadsheet to a format ready to be used by the program “Arlequin“. After which, other macros will extract the haplotype information, calculate linkage disequilibrium between markers, and prepare an input sheet for the “GOLD” program. Then, a last macro can reconstruct the haplotypes of each individual in the population,using a maximum likelihood method and the haplotypes present in the population as proposed by Arlequin." ; @@ -234893,8 +239168,32 @@ HaplotypeExplorer is an interactive haplotype network viewer for spatiotemporal sc:softwareVersion "1.0" ; sc:url "http://www.bioinformatics.org/macroshack/programs/haplotyper/description.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2885, + edam:topic_3127, + edam:topic_3168, + edam:topic_3293 ; + sc:citation , + "pmcid:PMC8607637", + "pubmed:34809571" ; + sc:description "A toolkit for accurately identifying recombination and recombinant genotypes." ; + sc:featureList edam:operation_0451, + edam:operation_0487, + edam:operation_3196, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "HaplotypeTools" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/rhysf/HaplotypeTools" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation ; @@ -234909,7 +239208,7 @@ HaplotypeExplorer is an interactive haplotype network viewer for spatiotemporal sc:url "https://www.broadinstitute.org/haploview/haploview" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:19561337" ; @@ -234925,7 +239224,7 @@ HaplotypeExplorer is an interactive haplotype network viewer for spatiotemporal sc:url "http://haplowser-free-download.softwares7.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2533, @@ -234939,8 +239238,22 @@ HaplotypeExplorer is an interactive haplotype network viewer for spatiotemporal sc:url "https://github.com/usuyama/hapmuc" ; biotools:primaryContact "Naoto Usuyama" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0622 ; + sc:citation ; + sc:description "Hapo-G is a tool that aims to improve the quality of genome assemblies by polishing the consensus with accurate reads. It capable of incorporating phasing information from high-quality reads (short or long-reads) to polish genome assemblies and in particular assemblies of diploid and heterozygous genomes." ; + sc:featureList edam:operation_0525, + edam:operation_2425 ; + sc:license "CECILL-2.1" ; + sc:name "Hapo-G" ; + sc:softwareVersion "1.3.2" ; + sc:url "https://github.com/institut-de-genomique/HAPO-G" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2269 ; @@ -234958,7 +239271,7 @@ HaplotypeExplorer is an interactive haplotype network viewer for spatiotemporal sc:url "https://github.com/PINE-Lab/HAPPE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -234972,7 +239285,7 @@ HAPPI GWAS is a genome-wide association study (GWAS) tool written in R.""" ; sc:url "https://github.com/Angelovici-Lab/HAPPI.GWAS.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -234991,7 +239304,7 @@ HAPPI GWAS is a genome-wide association study (GWAS) tool written in R.""" ; sc:url "https://github.com/PINE-Lab/HAPPE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -235008,7 +239321,7 @@ HAPPI GWAS is a genome-wide association study (GWAS) tool written in R.""" ; biotools:primaryContact "Peter Kraft" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293 ; @@ -235024,7 +239337,7 @@ HAPPI GWAS is a genome-wide association study (GWAS) tool written in R.""" ; biotools:primaryContact "Jin Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -235043,7 +239356,7 @@ HAPPI GWAS is a genome-wide association study (GWAS) tool written in R.""" ; biotools:primaryContact "Teresa Przytycka" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -235058,7 +239371,7 @@ HAPPI GWAS is a genome-wide association study (GWAS) tool written in R.""" ; biotools:primaryContact "Bernard North" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -235077,7 +239390,7 @@ HapSolo is compatible with Python 2.7 and requires the PANDAS package be install sc:url "https://github.com/esolares/HapSolo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053 ; @@ -235090,8 +239403,21 @@ HapSolo is compatible with Python 2.7 and requires the PANDAS package be install sc:url "http://www.csie.ntu.edu.tw/~kmchao/tools/HapTagger/index.htm" ; biotools:primaryContact "Kun-Mao Chao" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "Haptendb is a database of haptens which provide comprehensive information about the Hapten molecule, ways to raise antibodies against particular group of haptens, specificity and cross reactivity of raised antibody with related haptens, use of antibodies in constructing cost effective and simple detection kits." ; + sc:featureList edam:operation_2945 ; + sc:name "haptendb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/haptendb/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3053 ; @@ -235106,7 +239432,7 @@ HapSolo is compatible with Python 2.7 and requires the PANDAS package be install sc:url "http://groups.csail.mit.edu/cb/haptree/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation "pubmed:22844100" ; @@ -235120,7 +239446,7 @@ HapSolo is compatible with Python 2.7 and requires the PANDAS package be install biotools:primaryContact "Bader Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0769, @@ -235140,7 +239466,7 @@ This open-source software package implements two components of a pipeline for id sc:url "https://github.com/OSU-slatelab/HARE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -235161,7 +239487,7 @@ This open-source software package implements two components of a pipeline for id biotools:primaryContact "Jason Ross" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3168, @@ -235178,7 +239504,7 @@ This is the Github page for the code used in manuscript S. Jiang et al 2019. HAR sc:url "https://github.com/shuangj00/HARMONIES" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3384, @@ -235194,7 +239520,7 @@ Harmonization of diffusion MRI datasets across scanners.""" ; sc:url "http://github.com/samuelstjean/harmonization" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -235218,7 +239544,7 @@ Harmonization of diffusion MRI datasets across scanners.""" ; "Dr.R. Sowdhamini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0625, @@ -235242,7 +239568,7 @@ Harmony has been tested on R versions >= 3.4. Please consult the DESCRIPTION fil sc:url "https://github.com/immunogenomics/harmony" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0130, @@ -235268,7 +239594,7 @@ HARP (a database of Hansen's Disease Antimicrobial Resistance Profiles) is an in sc:url "https://harp-leprosy.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3168 ; @@ -235284,7 +239610,7 @@ HARP (a database of Hansen's Disease Antimicrobial Resistance Profiles) is an in sc:url "http://genetics.cs.ucla.edu/harsh/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -235305,7 +239631,7 @@ HARP (a database of Hansen's Disease Antimicrobial Resistance Profiles) is an in biotools:primaryContact "Maurizio Pellegrino" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -235324,7 +239650,7 @@ HARP (a database of Hansen's Disease Antimicrobial Resistance Profiles) is an in biotools:primaryContact "Urban Liebel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -235343,18 +239669,18 @@ Contribute to cmlh-gp/harvestman-public development by creating an account on Gi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_2571" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_2571" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Genotype/phenotype report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0625, @@ -235376,7 +239702,7 @@ Contribute to cmlh-gp/harvestman-public development by creating an account on Gi biotools:primaryContact "Giulio Di Minin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -235401,8 +239727,33 @@ Java version 8 or later (required for nextflow).""" ; sc:name "hash-cgMLST" ; sc:url "https://github.com/davideyre/hash-cgmlst" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0632, + edam:topic_0659, + edam:topic_2885, + edam:topic_3170, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC8577285", + "pubmed:34751586" ; + sc:description "HashSeq infers true biological 16S rRNA sequence variants from sequence errors generated from an Illumina sequencing instrument." ; + sc:featureList edam:operation_3192, + edam:operation_3227, + edam:operation_3435, + edam:operation_3659, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "HashSeq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/FarnazFouladi/HashSeq" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -235420,7 +239771,7 @@ HASLR is a tool for rapid genome assembly of long sequencing reads. HASLR is a h sc:url "https://github.com/vpc-ccg/haslr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0804, @@ -235441,7 +239792,7 @@ HASLR is a tool for rapid genome assembly of long sequencing reads. HASLR is a h biotools:primaryContact "Support page" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -235462,7 +239813,7 @@ Partition stLFR reads based on trio-binning algorithm using parentally unique ma sc:url "https://github.com/BGI-Qingdao/HAST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0611, @@ -235484,7 +239835,7 @@ Smart middleware for working with a variety of storage media with Scientific Com sc:url "http://haste.research.it.uu.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3316 ; sc:author "Ben Blamey" ; @@ -235494,7 +239845,7 @@ Smart middleware for working with a variety of storage media with Scientific Com sc:url "https://github.com/HASTE-project" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3047, @@ -235520,7 +239871,7 @@ There is also simulation mode, which allows you to run benchmarks using existing sc:url "https://github.com/TuomoKalliokoski/HASTEN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0154, @@ -235537,7 +239888,7 @@ There is also simulation mode, which allows you to run benchmarks using existing sc:url "https://github.com/WansonChoi/HATK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3518 ; @@ -235553,7 +239904,7 @@ There is also simulation mode, which allows you to run benchmarks using existing sc:url "http://hema13.erasmusmc.nl/index.php/Hypergeometric_Analysis_of_Tiling-arrays" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3511 ; @@ -235568,7 +239919,7 @@ There is also simulation mode, which allows you to run benchmarks using existing biotools:primaryContact "Marina Pereira" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749, @@ -235585,7 +239936,7 @@ HAVoC, a bioinformatic pipeline for reference-based consensus assembly and linea sc:url "https://www.helsinki.fi/en/projects/havoc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0196 ; @@ -235602,7 +239953,7 @@ HAVoC, a bioinformatic pipeline for reference-based consensus assembly and linea biotools:primaryContact "Michael Schatz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0622, @@ -235623,7 +239974,7 @@ HAVoC, a bioinformatic pipeline for reference-based consensus assembly and linea "Luca Pinello" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0749, @@ -235647,7 +239998,7 @@ Hierarchical Bayesian Analysis of Differential Expression and ALternative Splici sc:url "https://github.com/TheJacksonLaboratory/HBA-DEALS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814 ; @@ -235661,7 +240012,7 @@ Hierarchical Bayesian Analysis of Differential Expression and ALternative Splici biotools:primaryContact "Abhishek Tiwari" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3419, @@ -235682,7 +240033,7 @@ Hierarchical Bayesian Analysis of Differential Expression and ALternative Splici biotools:primaryContact "Woo-Young Ahn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3542 ; @@ -235698,7 +240049,7 @@ Hierarchical Bayesian Analysis of Differential Expression and ALternative Splici biotools:primaryContact "Isabelle Callebaut" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3336 ; sc:citation , @@ -235712,7 +240063,7 @@ Hierarchical Bayesian Analysis of Differential Expression and ALternative Splici sc:url "http://www.hca-vision.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -235734,7 +240085,7 @@ This repository contains source code of the Hilbert-Curve Assisted Structure Emb sc:url "https://github.com/ncats/hcase" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3360, @@ -235751,7 +240102,7 @@ hCG trophoblastic tumor or neoplasia.""" ; sc:url "https://www.biomarker-kinetics.org/hCG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3301 ; @@ -235769,7 +240120,7 @@ hCG trophoblastic tumor or neoplasia.""" ; biotools:primaryContact "Segata Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0654, @@ -235785,20 +240136,41 @@ hCG trophoblastic tumor or neoplasia.""" ; biotools:primaryContact , "Ke Zhou" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_2830, + edam:topic_3930, + edam:topic_3966 ; + sc:citation , + "pubmed:35348639" ; + sc:description "A genetic and proteomic database for the SARS-CoV, MERS-CoV, and SARS-COV-2." ; + sc:featureList edam:operation_0416, + edam:operation_2421, + edam:operation_2422 ; + sc:license "Apache-2.0" ; + sc:name "hCoronavirusesDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://hcoronaviruses.net/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -235818,14 +240190,12 @@ hCG trophoblastic tumor or neoplasia.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1048" ; - sc:name "Database ID" ; - sc:sameAs "http://edamontology.org/data_1048" ] ; + sc:additionalType "http://edamontology.org/data_1048" ; + sc:name "Database ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0781, edam:topic_1317 ; @@ -235843,7 +240213,7 @@ hCG trophoblastic tumor or neoplasia.""" ; sc:url "http://www.hcvivdb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0154, @@ -235866,7 +240236,7 @@ Enter your input molecule(s) in SMILES notation Insert example data.""" ; sc:url "http://codes.bio/hcvpred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0078, @@ -235886,7 +240256,7 @@ You may select up to 5 files to upload.""" ; sc:url "http://hd-explosion.utdallas.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, @@ -235903,7 +240273,7 @@ HDAC3i-Finder is a python GUI application for virtually screening for HDAC3 inhi sc:url "https://github.com/jwxia2014/HDAC3i-Finder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2533, @@ -235923,7 +240293,7 @@ HDAC3i-Finder is a python GUI application for virtually screening for HDAC3 inhi biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -235939,8 +240309,27 @@ HDAC3i-Finder is a python GUI application for virtually screening for HDAC3 inhi sc:url "http://bioconductor.org/packages/release/bioc/html/HDF5Array.html" ; biotools:primaryContact "Hervé Pagès" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2269, + edam:topic_3070, + edam:topic_3520 ; + sc:citation , + "pubmed:35263087" ; + sc:description "Software for flexible high structural resolution of hydrogen/deuterium-exchange mass spectrometry data." ; + sc:featureList edam:operation_0404, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:name "HDfleX" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "http://hdl.handle.net/10871/127982" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -235956,7 +240345,7 @@ HDAC3i-Finder is a python GUI application for virtually screening for HDAC3 inhi sc:url "https://github.com/Shilan-Jaff/HDG_select" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -235975,8 +240364,29 @@ HDMAC is a web-based shiny App that provides high-dimension regression analysis sc:name "HDMAC" ; sc:url "https://github.com/chung-R/HD-MAC" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3170, + edam:topic_3308, + edam:topic_3474 ; + sc:citation , + "pubmed:34864918" ; + sc:description "HDMC (Hierarchical Distribution Matching and Contrastive learning) is a novel deep learning based framework for batch effect removal in scRNA-seq data." ; + sc:featureList edam:operation_0314, + edam:operation_3432, + edam:operation_3658 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "HDMC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/zhanglabNKU/HDMC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0128, @@ -235995,14 +240405,14 @@ HDMAC is a web-based shiny App that provides high-dimension regression analysis a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -236024,7 +240434,7 @@ HDMAC is a web-based shiny App that provides high-dimension regression analysis biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -236050,26 +240460,26 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3712" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2992" ; - sc:name "Protein structure image" ; - sc:sameAs "http://edamontology.org/data_2992" ], + sc:additionalType "http://edamontology.org/data_2992" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Protein structure image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -236084,7 +240494,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g sc:url "http://hdx.florida.scripps.edu/hdx_workbench/Home.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -236103,7 +240513,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g biotools:primaryContact "Darko Babic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -236116,7 +240526,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g sc:url "http://www.shawlab.org/he_viewer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2814 ; @@ -236133,7 +240543,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g sc:url "http://www.cs.gmu.edu/~ashehu/?q=OurTools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3569, @@ -236150,7 +240560,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g biotools:primaryContact "Dr. Soumya Banerjee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -236169,7 +240579,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g biotools:primaryContact "Kentaro Yano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -236186,7 +240596,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g biotools:primaryContact "Majid Farzaneh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3277, edam:topic_3305, @@ -236207,7 +240617,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g biotools:primaryContact "Ahmad Reza Hosseinpoor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0622, @@ -236226,7 +240636,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g biotools:primaryContact "Guillaume Devailly" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0121, @@ -236246,7 +240656,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g "Wishart Research Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085, edam:topic_3169 ; @@ -236265,7 +240675,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g biotools:primaryContact "Malcolm Perry" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092 ; @@ -236282,7 +240692,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g biotools:primaryContact "Alexander Ploner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3053, @@ -236298,8 +240708,33 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g sc:url "http://evol-constructor.bionet.nsc.ru/?cat=5&lang=en" ; biotools:primaryContact "Yury G. Matushkin" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_2229, + edam:topic_2815, + edam:topic_3172, + edam:topic_3395 ; + sc:citation , + "pmcid:PMC9114628", + "pubmed:35602947" ; + sc:description "The human Ensemble Cell Atlas (hECA) a database." ; + sc:featureList edam:operation_0310, + edam:operation_0314, + edam:operation_2422, + edam:operation_3802, + edam:operation_3891 ; + sc:license "Not licensed" ; + sc:name "hECA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://eca.xglab.tech/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0781, edam:topic_3301 ; @@ -236312,8 +240747,24 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g sc:softwareHelp ; sc:url "https://github.com/shandley/hecatomb" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0659 ; + sc:citation , + "pubmed:34932483" ; + sc:description "A computational model for predicting potential lncRNA-disease associations based on multiple heterogeneous networks." ; + sc:featureList edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "HEGANLDA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/HEGANLDA/HEGANLDA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -236330,7 +240781,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g "Emrah Kostem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -236346,7 +240797,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g biotools:primaryContact "Gunnar W. Klau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -236366,7 +240817,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g biotools:primaryContact "HeliQuest Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3170, @@ -236380,7 +240831,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g biotools:primaryContact "A. Kitzmiller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0820 ; @@ -236395,7 +240846,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g sc:url "http://webclu.bio.wzw.tum.de/helixcorr/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -236411,14 +240862,12 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3542 ; sc:citation , @@ -236449,7 +240898,7 @@ The Hepatitis D Virus (HDV) Database, HDVdb contains comprehensive data on HDV g sc:url "http://emboss.open-bio.org/rel/rel6/apps/helixturnhelix.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3168, @@ -236468,7 +240917,7 @@ helixvis: Visualize alpha-helical peptide sequences in Python.""" ; sc:url "https://github.com/subramv/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3382, @@ -236489,7 +240938,7 @@ helixvis: Visualize alpha-helical peptide sequences in Python.""" ; sc:url "https://github.com/anands-repo/hello" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0605 ; @@ -236506,7 +240955,7 @@ helixvis: Visualize alpha-helical peptide sequences in Python.""" ; biotools:primaryContact "Michael Lawrence" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -236525,7 +240974,7 @@ helixvis: Visualize alpha-helical peptide sequences in Python.""" ; biotools:primaryContact "Reid F. Thompson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal", "Web application" ; @@ -236546,7 +240995,7 @@ helixvis: Visualize alpha-helical peptide sequences in Python.""" ; "Lei Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3315, @@ -236563,7 +241012,7 @@ helixvis: Visualize alpha-helical peptide sequences in Python.""" ; biotools:primaryContact "Alexander Meaney" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -236583,14 +241032,12 @@ helixvis: Visualize alpha-helical peptide sequences in Python.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ] ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0862" ; - sc:name "Dotplot" ; - sc:sameAs "http://edamontology.org/data_0862" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0862" ; + sc:name "Dotplot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3379, @@ -236612,7 +241059,7 @@ helixvis: Visualize alpha-helical peptide sequences in Python.""" ; biotools:primaryContact "Frederik Otzen Bagger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0621, @@ -236630,7 +241077,7 @@ helixvis: Visualize alpha-helical peptide sequences in Python.""" ; sc:url "https://anaconda.org/bioconda/r-hemdag" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0108, @@ -236649,7 +241096,7 @@ helixvis: Visualize alpha-helical peptide sequences in Python.""" ; biotools:primaryContact "Dr. Yu Xue" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -236667,7 +241114,7 @@ helixvis: Visualize alpha-helical peptide sequences in Python.""" ; "Quan Nguyen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0611, @@ -236689,7 +241136,7 @@ helixvis: Visualize alpha-helical peptide sequences in Python.""" ; sc:url "https://github.com/scipion-em/scipion-em-continuousflex" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3071, @@ -236704,11 +241151,11 @@ helixvis: Visualize alpha-helical peptide sequences in Python.""" ; "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://crdd.osdd.net/raghava/hemolytik/" ; + sc:url "http://webs.iiitd.edu.in/raghava/hemolytik/" ; biotools:primaryContact "Gajendra P. S. Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0632, @@ -236731,7 +241178,7 @@ The hemoMIPs pipeline is a fast and efficient analysis pipeline for the analysis sc:url "https://github.com/kircherlab/hemoMIPs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0749, @@ -236750,7 +241197,7 @@ The hemoMIPs pipeline is a fast and efficient analysis pipeline for the analysis sc:url "https://github.com/adibayaseen/HemoNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0123 ; @@ -236763,11 +241210,11 @@ The hemoMIPs pipeline is a fast and efficient analysis pipeline for the analysis "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://crdd.osdd.net/raghava/hemopi/" ; + sc:url "http://webs.iiitd.edu.in/raghava/hemopi/" ; biotools:primaryContact "Dr. Gajendra P. S. Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0153, @@ -236788,7 +241235,7 @@ HemoPI-MOD is an in silico method, which is developed to predict hemolytic or he sc:url "http://webs.iiitd.edu.in/raghava/hemopimod/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0781, @@ -236809,7 +241256,7 @@ Access our free, comprehensive and user-friendly drug interaction charts.""" ; sc:url "http://www.hep-druginteractions.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; sc:applicationSubCategory edam:topic_0108, @@ -236833,7 +241280,7 @@ a liver disease microarray database, visualization platform and data-mining reso sc:url "http://www.hepamine.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3373, @@ -236853,7 +241300,7 @@ deal_with_data_dm_invivo.R plays the code for feature selection of drug_matrix." sc:url "https://github.com/RanSuLab/Hepatotoxicity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -236871,8 +241318,52 @@ The H uman e nhancer R NA A tlas (HeRA) provides the expression Landscape of enh sc:name "HeRA" ; sc:url "https://hanlab.uth.edu/HeRA/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description """[url=https://iplocation.io/]what is my IP address[/url] +IPlocation""" ; + sc:name "Herbert Prater" ; + sc:url "https://iplocation.io/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0218, + edam:topic_0634, + edam:topic_3053, + edam:topic_3388 ; + sc:citation , + "pmcid:PMC9091197", + "pubmed:35571049" ; + sc:description "HerbKG, a knowledge graph that bridges herbal and molecular medicine" ; + sc:featureList edam:operation_3096, + edam:operation_3280, + edam:operation_3502 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "HerbKG" ; + sc:operatingSystem "Windows" ; + sc:url "https://github.com/FeiYee/HerbKG" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC3967150", + "pubmed:24670875" ; + sc:description "HerceptinR is a database of assays performed to test sensitivity or resistance of Herceptin Antibodies towards breast cancer cell lines." ; + sc:featureList edam:operation_2945 ; + sc:name "herceptinr" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/herceptinr/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091 ; sc:citation ; @@ -236887,7 +241378,7 @@ The H uman e nhancer R NA A tlas (HeRA) provides the expression Landscape of enh biotools:primaryContact "Athanassios M. Kintsakis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -236902,10 +241393,10 @@ The H uman e nhancer R NA A tlas (HeRA) provides the expression Landscape of enh a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2711" ; - sc:name "Genome report" ; - sc:sameAs "http://edamontology.org/data_2711" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2711" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Genome report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0623, @@ -236939,8 +241430,29 @@ The H uman e nhancer R NA A tlas (HeRA) provides the expression Landscape of enh biotools:primaryContact "Jan Pačes", "Ondřej Moravčík" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0637, + edam:topic_3303, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8734250", + "pubmed:34991460" ; + sc:description "HESML is an efficient, scalable and large Java software library of ontology-based semantic similarity measures and Information Content (IC) models based on WordNet, SNOMED-CT, MeSH or any other OBO-based ontology." ; + sc:featureList edam:operation_0306, + edam:operation_3432, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-4.0" ; + sc:name "HESML" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:url "http://hesml.lsi.uned.es/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -236959,14 +241471,14 @@ Gaussian Graphical Model-Based Heterogeneity Analysis.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3047 ; sc:citation ; @@ -236981,7 +241493,7 @@ Gaussian Graphical Model-Based Heterogeneity Analysis.""" ; sc:url "http://ncrna-pred.com/premiRNA.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053 ; @@ -236995,7 +241507,7 @@ Gaussian Graphical Model-Based Heterogeneity Analysis.""" ; sc:url "http://heu-mchc.algolab.eu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -237013,18 +241525,18 @@ Gaussian Graphical Model-Based Heterogeneity Analysis.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0990" ; - sc:name "Compound name" ; - sc:sameAs "http://edamontology.org/data_0990" ] ; + sc:additionalType "http://edamontology.org/data_0990" ; + sc:encodingFormat "http://edamontology.org/format_1196" ; + sc:name "Compound name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ], + sc:additionalType "http://edamontology.org/data_1566" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Protein-ligand interaction report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1566" ; - sc:name "Protein-ligand interaction report" ; - sc:sameAs "http://edamontology.org/data_1566" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation , @@ -237043,7 +241555,7 @@ Gaussian Graphical Model-Based Heterogeneity Analysis.""" ; sc:url "http://cbs.dtu.dk/services/HExpoChem-1.0/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -237066,7 +241578,7 @@ Gaussian Graphical Model-Based Heterogeneity Analysis.""" ; biotools:primaryContact "Dave Ritchie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3520 ; @@ -237081,22 +241593,20 @@ Few-shot semantic segmentation remains an open problem because limited support ( a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3479" ; - sc:name "Gene order" ; - sc:sameAs "http://edamontology.org/data_3479" ], + sc:additionalType "http://edamontology.org/data_1361" ; + sc:name "Position frequency matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_3479" ; + sc:name "Gene order" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1361" ; - sc:name "Position frequency matrix" ; - sc:sameAs "http://edamontology.org/data_1361" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Sequence alignment (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3510 ; @@ -237118,7 +241628,7 @@ Few-shot semantic segmentation remains an open problem because limited support ( biotools:primaryContact "Oren Tzfadia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3300, edam:topic_3335, @@ -237135,7 +241645,7 @@ Few-shot semantic segmentation remains an open problem because limited support ( sc:url "http://sysbio.org.cn/HFBD/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0634, @@ -237152,8 +241662,29 @@ Few-shot semantic segmentation remains an open problem because limited support ( sc:name "HFIP" ; sc:url "http://heartfailure.medical-bigdata.com/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3300, + edam:topic_3360, + edam:topic_3421 ; + sc:citation , + "pmcid:PMC8503963", + "pubmed:34544760" ; + sc:description "A MATLAB-based graphic user interface for high frequency oscillations marking." ; + sc:featureList edam:operation_0337, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "HFOApp" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/zelanolab/hfoapp.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154, @@ -237173,7 +241704,7 @@ Few-shot semantic segmentation remains an open problem because limited support ( biotools:primaryContact "HFV Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, @@ -237190,14 +241721,12 @@ The core function of HGC takes a graph G as the input. Here G is the adjacency m a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2298" ; - sc:name "Gene ID (HGNC)" ; - sc:sameAs "http://edamontology.org/data_2298" ] ; + sc:additionalType "http://edamontology.org/data_2298" ; + sc:name "Gene ID (HGNC)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3271" ; - sc:name "Gene tree" ; - sc:sameAs "http://edamontology.org/data_3271" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3271" ; + sc:name "Gene tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3308 ; sc:citation , @@ -237216,7 +241745,7 @@ The core function of HGC takes a graph G as the input. Here G is the adjacency m biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -237235,19 +241764,22 @@ The core function of HGC takes a graph G as the input. Here G is the adjacency m biotools:primaryContact "Yuval Itan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, edam:topic_0622, edam:topic_3489, edam:topic_3512 ; - sc:citation "pubmed:21071397" ; + sc:citation , + "pmcid:PMC3013718", + "pubmed:21071397" ; sc:description "The Hymenoptera Genome Database is a comprehensive model organism database for insect species of the order Hymenoptera. HGD contains data from 9 different species across 200 million years in the phylogeny of Hymenoptera. Curated data at HGD includes predicted and annotated gene sets supported with evidence tracks such as ESTs/cDNAs, small RNA sequences and GC composition domains." ; sc:featureList edam:operation_0224, edam:operation_2421, edam:operation_3208, edam:operation_3216 ; + sc:isAccessibleForFree true ; sc:name "The Hymenoptera Genome Database (HGD)" ; sc:operatingSystem "Linux", "Mac", @@ -237256,7 +241788,7 @@ The core function of HGC takes a graph G as the input. Here G is the adjacency m biotools:primaryContact "HGD Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, @@ -237272,8 +241804,27 @@ The core function of HGC takes a graph G as the input. Here G is the adjacency m sc:url "http://biosig.unimelb.edu.au/hgdiscovery/" ; biotools:primaryContact "David B. Ascher" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0634, + edam:topic_3169, + edam:topic_3512 ; + sc:citation , + "pubmed:35266510" ; + sc:description "A heterogeneous graph embedding model for predicting interactions between transcription factor and target gene." ; + sc:featureList edam:operation_2437, + edam:operation_2454, + edam:operation_2575 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "HGETGI" ; + sc:url "https://github.com/PGTSING/HGETGI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -237293,8 +241844,29 @@ Helmeted guinea fowl (HGF; Numida meleagris) is vigorous, hardy, and mostly dise sc:name "HGFDB" ; sc:url "http://hgfdb.ynau.edu.cn/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0196, + edam:topic_0622, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9077837", + "pubmed:35525918" ; + sc:description "Hierarchical Guided Genome Assembler (HGGA) a framework to guide genome assembly with additional data." ; + sc:featureList edam:operation_0282, + edam:operation_0523, + edam:operation_0524, + edam:operation_0525, + edam:operation_3216 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "HGGA" ; + sc:url "https://github.com/rikuu/hgga" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -237315,7 +241887,7 @@ November 23, 2020 Software Open Access.""" ; sc:url "http://doi.org/10.5281/zenodo.4285640" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -237323,9 +241895,17 @@ November 23, 2020 Software Open Access.""" ; edam:topic_2815, edam:topic_3325, edam:topic_3366 ; - sc:citation , + sc:citation , + , + , + , + , "pmcid:PMC3898141", - "pubmed:24077912" ; + "pubmed:12754702", + "pubmed:18245393", + "pubmed:19348700", + "pubmed:24077912", + "pubmed:28349240" ; sc:description "The Human Gene Mutation Database (HGMD) - comprehensive collection of germline mutations in nuclear genes that underlie, or are associated with, human inherited disease. It is a flexible resource that can be adapted to a broad range of applications including searching for an overview of known mutations associated with a particular disease, interpreting clinical test results or looking for the likely causal mutation in a list of variants." ; sc:featureList edam:operation_3196, edam:operation_3197, @@ -237342,14 +241922,13 @@ November 23, 2020 Software Open Access.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2298" ; - sc:name "Gene ID (HGNC)" ; - sc:sameAs "http://edamontology.org/data_2298" ] ; + sc:additionalType "http://edamontology.org/data_2298" ; + sc:name "Gene ID (HGNC)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0622, @@ -237368,7 +241947,7 @@ November 23, 2020 Software Open Access.""" ; sc:url "http://www.genenames.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -237383,7 +241962,7 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. sc:url "https://waldronlab.io/HGNChelper/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0108, @@ -237403,8 +241982,27 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. sc:url "http://hgpd.lifesciencedb.jp/cgi/" ; biotools:primaryContact "HGPD Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3303, + edam:topic_3474 ; + sc:citation , + "pubmed:35660327" ; + sc:description "Henry Gas Solubility Optimization-based Random Forest for C-Section prediction and XAI-based cause analysis." ; + sc:featureList edam:operation_0409, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "HGSORF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/MIrazul29/HGSORF_CSection" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2640, @@ -237425,7 +242023,7 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. biotools:primaryContact "Krishna R. Kalari" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -237444,14 +242042,14 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -237476,18 +242074,18 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0602, @@ -237513,18 +242111,18 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0199, @@ -237549,14 +242147,14 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203 ; @@ -237578,14 +242176,14 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -237609,14 +242207,14 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -237640,14 +242238,14 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_1775, @@ -237670,18 +242268,18 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -237704,14 +242302,14 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -237735,14 +242333,14 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -237757,7 +242355,7 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -237778,7 +242376,7 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. "For study authors to request data updates or submit new data" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0166 ; @@ -237801,7 +242399,7 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. "Roman Prytuliak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -237825,26 +242423,8 @@ Identify and Correct Invalid HGNC Human Gene Symbols and MGI Mouse Gene Symbols. sc:url "https://github.com/soedinglab/hh-suite" ; biotools:primaryContact "Johannes Söding" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3379 ; - sc:citation , - "pmcid:PMC6811875", - "pubmed:31667256" ; - sc:description """Loading characteristics data applied on osseointegrated implant by transfemoral bone-anchored prostheses fitted with basic components during daily activities. - -Inter-participant variability of loading characteristics applied on osseointegrated implant by transfemoral bone-anchored prostheses fitted with basic components during daily activities. - -The mean and standard deviation as well as lower and upper limits of 95% confidence interval of the spatio-temporal gait characteristics, loading boundaries and loading extremum applied on osseointegrated implant by transfemoral bone-anchored prostheses fitted with basic components during level walking. ascending and descending ramp and stairs. - -Published: 12 Aug 2019 : Version 1 : DOI: 10.17632/hh8rjjh73w.1. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'osseointegrated implant transfemoral amputees', 'transfemoral amputees osseointegrated', 'transfemoral bone-anchored prostheses', 'transfemoral amputees'""" ; - sc:featureList edam:operation_3435 ; - sc:name "hh8rjjh73w" ; - sc:url "https://data.mendeley.com/datasets/hh8rjjh73w/1" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0081, @@ -237865,7 +242445,7 @@ Published: 12 Aug 2019 : Version 1 : DOI: 10.17632/hh8rjjh73w.1. biotools:primaryContact "Raphael Guerois" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -237881,7 +242461,7 @@ Published: 12 Aug 2019 : Version 1 : DOI: 10.17632/hh8rjjh73w.1. biotools:primaryContact "Johannes Söding" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -237896,7 +242476,7 @@ Published: 12 Aug 2019 : Version 1 : DOI: 10.17632/hh8rjjh73w.1. biotools:primaryContact "Ranko Gacesa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0601, @@ -237919,7 +242499,7 @@ Published: 12 Aug 2019 : Version 1 : DOI: 10.17632/hh8rjjh73w.1. "Zhang Yan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0160, @@ -237938,7 +242518,7 @@ Published: 12 Aug 2019 : Version 1 : DOI: 10.17632/hh8rjjh73w.1. sc:url "https://toolkit.tuebingen.mpg.de/#/tools/hhomp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -237958,7 +242538,7 @@ Published: 12 Aug 2019 : Version 1 : DOI: 10.17632/hh8rjjh73w.1. biotools:primaryContact "Johannes Söding" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0157, @@ -237980,7 +242560,7 @@ Published: 12 Aug 2019 : Version 1 : DOI: 10.17632/hh8rjjh73w.1. sc:url "https://toolkit.tuebingen.mpg.de/#/tools/hhpred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -237995,8 +242575,24 @@ Published: 12 Aug 2019 : Version 1 : DOI: 10.17632/hh8rjjh73w.1. sc:name "HHsenser" ; sc:url "http://toolkit.tuebingen.mpg.de/hhsenser" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Suite" ; + sc:applicationSubCategory edam:topic_0078 ; + sc:citation ; + sc:description "HH-suite is a remote protein homology detection suite." ; + sc:featureList edam:operation_0346, + edam:operation_2403, + edam:operation_2415 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "HH-suite" ; + sc:softwareHelp ; + sc:url "https://github.com/soedinglab/hh-suite" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:19570807" ; @@ -238009,7 +242605,7 @@ Published: 12 Aug 2019 : Version 1 : DOI: 10.17632/hh8rjjh73w.1. sc:url "http://www.sanger.ac.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3179, @@ -238028,7 +242624,7 @@ Published: 12 Aug 2019 : Version 1 : DOI: 10.17632/hh8rjjh73w.1. "Mikhail S. Gelfand" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2229, @@ -238047,18 +242643,18 @@ Published: 12 Aug 2019 : Version 1 : DOI: 10.17632/hh8rjjh73w.1. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0160 ; @@ -238076,7 +242672,7 @@ Published: 12 Aug 2019 : Version 1 : DOI: 10.17632/hh8rjjh73w.1. biotools:primaryContact "Nirav V Malani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0804, @@ -238097,7 +242693,7 @@ Published: 12 Aug 2019 : Version 1 : DOI: 10.17632/hh8rjjh73w.1. biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0769 ; @@ -238117,7 +242713,7 @@ Software tool for Hi-C HiChIP interaction calling and differential analysis usin sc:url "https://bitbucket.org/leslielab/hicdcplus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -238139,10 +242735,9 @@ This will install the python package (and its cli command) hic_hiker.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3070 ; sc:author ; @@ -238163,8 +242758,55 @@ This will install the python package (and its cli command) hic_hiker.""" ; sc:url "https://github.com/nservant/HiC-Pro" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0621, + edam:topic_0769, + edam:topic_0780, + edam:topic_3168 ; + sc:citation , + "pubmed:35781332" ; + sc:description "A computational pipeline for Hi-C data analysis to study the role of repeat family interactions in the genome 3D organization." ; + sc:featureList edam:operation_0531, + edam:operation_3198, + edam:operation_3798 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "HiC-TE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.fi.muni.cz/lexa/hic-te/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0654, + edam:topic_3169, + edam:topic_3173, + edam:topic_3940 ; + sc:citation , + "pmcid:PMC8769930", + "pubmed:34850813" ; + sc:description "Framework to extract various one-dimensional features from chromosome structure data." ; + sc:featureList edam:operation_0337, + edam:operation_3799, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "HiC1Dmetrics" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://hic1d.herokuapp.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -238178,7 +242820,7 @@ This will install the python package (and its cli command) hic_hiker.""" ; sc:url "https://github.com/kimmo1019/hicGAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -238202,7 +242844,7 @@ Detect overlaps in high-noise sequences using MHAP.""" ; sc:url "https://github.com/marbl/canu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -238216,8 +242858,33 @@ Detect overlaps in high-noise sequences using MHAP.""" ; sc:url "https://github.com/sahlenlab/HiCapTools" ; biotools:primaryContact "Pelin Sahlén" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workbench", + "Workflow" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0654, + edam:topic_3382, + edam:topic_3474, + edam:topic_3940 ; + sc:citation , + "pmcid:PMC9048669", + "pubmed:35274679" ; + sc:description "HiCARN: Resolution Enhancement of Hi-C Data Using Cascading Residual Networks" ; + sc:featureList edam:operation_0272, + edam:operation_0303, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "HiCARN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/OluwadareLab/HiCARN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0097, @@ -238236,7 +242903,7 @@ Detect overlaps in high-noise sequences using MHAP.""" ; biotools:primaryContact "Dr. Célia Baroux" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -238254,7 +242921,7 @@ Detect overlaps in high-noise sequences using MHAP.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -238271,7 +242938,7 @@ Detect overlaps in high-noise sequences using MHAP.""" ; biotools:primaryContact "John Stansfield" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0204, @@ -238297,7 +242964,7 @@ HiCEnterprise is a software tool for identification of long-range chromatin cont biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0769, @@ -238323,7 +242990,7 @@ Free document hosting provided by Read the Docs.""" ; sc:url "https://hicexplorer.usegalaxy.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -238345,22 +243012,21 @@ HiCHap is a Python package designed to process and analyze Hi-C data, primarily a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_3750" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0889" ; - sc:name "Structural profile" ; - sc:sameAs "http://edamontology.org/data_0889" ], + sc:additionalType "http://edamontology.org/data_0889" ; + sc:name "Structural profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0607, @@ -238379,8 +243045,29 @@ HiCHap is a Python package designed to process and analyze Hi-C data, primarily sc:url "http://aryee.mgh.harvard.edu/hichipper/" ; biotools:primaryContact "Caleb Lareau" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0654, + edam:topic_2229, + edam:topic_3940 ; + sc:citation , + "pmcid:PMC9232133", + "pubmed:35696429" ; + sc:description "A Bayesian hierarchical model for identifying structural zeros and enhancing single cell Hi-C data." ; + sc:featureList edam:operation_3432, + edam:operation_3435, + edam:operation_3557 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "HiCImpute" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sl-lin/HiCImpute" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -238393,7 +243080,7 @@ HiCHap is a Python package designed to process and analyze Hi-C data, primarily sc:url "http://www.people.fas.harvard.edu/~junliu/HiCNorm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0622, @@ -238410,7 +243097,7 @@ HiCHap is a Python package designed to process and analyze Hi-C data, primarily biotools:primaryContact "Kadir Akdemir" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -238428,7 +243115,7 @@ HiCHap is a Python package designed to process and analyze Hi-C data, primarily biotools:primaryContact "Tao Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0621, @@ -238445,7 +243132,7 @@ This repository is temporarily located at https://github.com/dejunlin/hicrep.""" sc:url "https://github.com/Noble-Lab/hicrep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, @@ -238465,7 +243152,7 @@ The purpose of this container is to estimate the resolution of your HiC library sc:url "http://github.com/ClaireMarchal/HiCRes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3382, @@ -238484,15 +243171,18 @@ HiCSR is a Hi-C super-resolution framework written in python capable of producin sc:url "https://github.com/PSI-Lab/HiCSR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, edam:topic_0654, edam:topic_0769, edam:topic_3382 ; + sc:author , + "Amaury Bignaud" ; sc:citation , "pubmed:34415528" ; + sc:contributor ; sc:description "A lightweight library that generates and handles Hi-C contact maps in either cooler-compatible 2Dbedgraph or instaGRAAL format." ; sc:featureList edam:operation_2429, edam:operation_3435, @@ -238504,10 +243194,11 @@ HiCSR is a Hi-C super-resolution framework written in python capable of producin "Mac", "Windows" ; sc:softwareHelp ; - sc:url "https://github.com/koszullab/hicstuff" . + sc:url "https://github.com/koszullab/hicstuff" ; + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3173 ; sc:citation ; @@ -238522,7 +243213,7 @@ HiCSR is a Hi-C super-resolution framework written in python capable of producin biotools:primaryContact "Steven Wingett" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -238542,7 +243233,7 @@ HiCSR is a Hi-C super-resolution framework written in python capable of producin biotools:primaryContact "Fengzhu Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3390, edam:topic_3474 ; @@ -238555,7 +243246,7 @@ Time-series hidden state visualization toolkit based on JavaScript, Python and E sc:url "https://github.com/jyan97/HiddenVis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056, @@ -238572,7 +243263,7 @@ Time-series hidden state visualization toolkit based on JavaScript, Python and E "Mukul Bansal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2259, @@ -238593,7 +243284,7 @@ HiDeF is an analysis framework to robustly resolve the hierarchical structures o sc:url "https://github.com/fanzheng10/HiDeF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal" ; sc:applicationSubCategory edam:topic_0797, @@ -238616,7 +243307,7 @@ HiDeF is an analysis framework to robustly resolve the hierarchical structures o biotools:primaryContact "Mateusz Kaduk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -238632,7 +243323,7 @@ HiDeF is an analysis framework to robustly resolve the hierarchical structures o biotools:primaryContact "Shuang Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3474, edam:topic_3697 ; @@ -238650,7 +243341,7 @@ HiDeF is an analysis framework to robustly resolve the hierarchical structures o biotools:primaryContact "Andreas Henschel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0108, @@ -238670,7 +243361,7 @@ HiDeF is an analysis framework to robustly resolve the hierarchical structures o "Carl D. Langefeld" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "REST Web service to get parents, children or siblings of an ontology term from a BioPortal ontology." ; @@ -238684,7 +243375,7 @@ HiDeF is an analysis framework to robustly resolve the hierarchical structures o sc:url "http://data.bioontology.org/documentation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0196, @@ -238707,7 +243398,7 @@ HierCC is a multi-level clustering scheme for population assignments based on co sc:url "http://enterobase.warwick.ac.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0605, edam:topic_2229, @@ -238728,7 +243419,7 @@ This release is a working version of HieRFIT with full functionalities.""" ; sc:url "https://github.com/yasinkaymaz/HieRFIT/releases/tag/v1.0.0" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -238747,7 +243438,7 @@ This release is a working version of HieRFIT with full functionalities.""" ; biotools:primaryContact "Laura Buzdugan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -238769,7 +243460,7 @@ HIFI is a set of tools to infer true intra-chromosomal interaction frequencies a sc:url "https://github.com/BlanchetteLab/HIFI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -238791,8 +243482,52 @@ The BGISEQ-500 platform has launched a new test sequencing kits capable of singl sc:name "HIFI-SE" ; sc:url "https://pypi.org/project/HIFI-SE/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation , + "pmcid:PMC8864876", + "pubmed:35193521" ; + sc:description "Remove CCS reads with remnant PacBio adapter sequences and convert outputs to a compressed .fastq (.fastq.gz)." ; + sc:name "HiFiAdapterFilt" ; + sc:softwareVersion "2.0.0" ; + sc:url "https://bmcgenomics.biomedcentral.com/articles/10.1186/s12864-022-08375-1" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196 ; + sc:citation ; + sc:description "Hifiasm: a haplotype-resolved assembler for accurate Hifi reads" ; + sc:featureList edam:operation_0524, + edam:operation_0525 ; + sc:license "MIT" ; + sc:name "Hifiasm" ; + sc:softwareHelp ; + sc:softwareVersion "0.16.1" ; + sc:url "https://github.com/chhylp123/hifiasm" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0769, + edam:topic_3174 ; + sc:citation , + "pubmed:35482530" ; + sc:description "Integrating Hi-c-based and shotgun-based methods to reFine binning of metagenomic contigs." ; + sc:featureList edam:operation_0310, + edam:operation_3731, + edam:operation_3798 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "HiFine" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/dyxstat/HiFine" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -238807,7 +243542,7 @@ The BGISEQ-500 platform has launched a new test sequencing kits capable of singl sc:url "http://lbbe.univ-lyon1.fr/-HiFiX-.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Suite" ; sc:applicationSubCategory edam:topic_3374, @@ -238823,7 +243558,7 @@ The BGISEQ-500 platform has launched a new test sequencing kits capable of singl biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0128, @@ -238845,7 +243580,7 @@ Simply clone this repository via.""" ; sc:url "https://github.com/JaesikKim/HiG2Vec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0781, edam:topic_3301 ; @@ -238864,7 +243599,7 @@ Simply clone this repository via.""" ; "Dr. K. Sekar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -238882,7 +243617,7 @@ Simply clone this repository via.""" ; biotools:primaryContact "Josh Soneson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -238900,7 +243635,7 @@ Around 140 million people live in High Altitude (HA) conditions and even a large sc:url "http://www.altitudeomicsdb.in" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -238919,7 +243654,7 @@ Around 140 million people live in High Altitude (HA) conditions and even a large "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -238944,7 +243679,7 @@ The HiGWAS package is developed to identify significant SNPs that control phenot sc:url "https://github.com/wzhy2000/higwas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -238961,7 +243696,7 @@ The HiGWAS package is developed to identify significant SNPs that control phenot sc:url "https://sites.google.com/site/kasohn/software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Web application" ; sc:applicationSubCategory edam:topic_0622, @@ -238980,14 +243715,14 @@ The HiGWAS package is developed to identify significant SNPs that control phenot a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1017" ; - sc:name "Sequence range" ; - sc:sameAs "http://edamontology.org/data_1017" ] ; + sc:additionalType "http://edamontology.org/data_1017" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence range" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1279" ; - sc:name "Sequence map" ; - sc:sameAs "http://edamontology.org/data_1279" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1279" ; + sc:encodingFormat "http://edamontology.org/format_2060" ; + sc:name "Sequence map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092 ; @@ -239007,7 +243742,7 @@ The HiGWAS package is developed to identify significant SNPs that control phenot biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -239025,7 +243760,7 @@ The HiGWAS package is developed to identify significant SNPs that control phenot biotools:primaryContact "Simon Anders" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092 ; @@ -239042,8 +243777,33 @@ The HiGWAS package is developed to identify significant SNPs that control phenot sc:url "http://bioconductor.org/packages/release/bioc/html/HilbertVisGUI.html" ; biotools:primaryContact "Simon Anders" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0659, + edam:topic_0749, + edam:topic_2229, + edam:topic_3315 ; + sc:citation , + "pmcid:PMC8489061", + "pubmed:34607562" ; + sc:description "Identification, visualization, statistical analysis and mathematical modeling of high-feedback loops in gene regulatory networks." ; + sc:featureList edam:operation_1781, + edam:operation_2426, + edam:operation_3799, + edam:operation_3891, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "HiLoop" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BenNordick/HiLoop" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2275, @@ -239061,7 +243821,7 @@ The HiGWAS package is developed to identify significant SNPs that control phenot biotools:primaryContact "Polymer Research Center" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -239078,7 +243838,7 @@ The HiGWAS package is developed to identify significant SNPs that control phenot biotools:primaryContact "Haiyuan Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0602, @@ -239099,7 +243859,7 @@ The HiGWAS package is developed to identify significant SNPs that control phenot biotools:primaryContact "hiPathDB Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -239121,7 +243881,7 @@ The HiGWAS package is developed to identify significant SNPs that control phenot biotools:primaryContact "Marta R. Hidalgo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -239141,7 +243901,7 @@ The sustained generation of genomic data in the last decade has increased the kn sc:url "http://hipathia.babelomics.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -239161,7 +243921,7 @@ The sustained generation of genomic data in the last decade has increased the kn . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -239176,8 +243936,25 @@ The sustained generation of genomic data in the last decade has increased the kn sc:url "http://hipipe.ncgm.sinica.edu.tw/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Web service" ; + sc:applicationSubCategory edam:topic_0092 ; + sc:citation , + "pubmed:35788820" ; + sc:description "Hiplot (https://hiplot.org) provides concise and top-quality data visualization applications for the life sciences and biomedical fields. This web service permits users to conveniently and interactively complete a few specialized visualization tasks that previously could only be conducted by senior bioinformatics or biostatistics researchers. It covers most of the daily demands of biomedical researchers with its equipped 240+ biomedical data visualization functions, involving basic statistics, multi-omics, regression, clustering, dimensional reduction, meta-analysis, survival analysis, risk modelling, etc." ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "Hiplot" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://hiplot.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602 ; @@ -239191,7 +243968,7 @@ The sustained generation of genomic data in the last decade has increased the kn sc:url "https://bitbucket.org/azadcse/hipmcl/wiki/Home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -239208,19 +243985,8 @@ The sustained generation of genomic data in the last decade has increased the kn sc:url "http://wanglab.pcbi.upenn.edu/hippie/" ; biotools:primaryContact "Wang Lab" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3318, - edam:topic_3360, - edam:topic_3855 ; - sc:citation , - "pubmed:31491353" ; - sc:description "> LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'hippotherapy Proponents hippotherapy' | a systematic mapping review of peer-reviewed research, 1980 to 2018 | Purpose: Comprehensively and systematically map peer-reviewed studies of hippotherapy published over 30 years, from 1980 through 2018, from the perspective of a phased scientific approach to developing complex interventions as a guide to future research and practice. Methods: A systematic mapping review of research of hippotherapy was conducted. Searches of nine databases produced 3,528 unique records; 78 full-text, English-written studies were reviewed, the earliest of which was published in 1998. Data relevant to study aims were extracted electronically from these studies and analyzed using queries and pivot tables. Results: Children with cerebral palsy and physical therapists were most prevalent as participants and providers. Equine movement was hippotherapy's core component and mechanism" ; - sc:featureList edam:operation_3501 ; - sc:name "hippotherapy" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31491353" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3068, @@ -239247,7 +244013,7 @@ git clone https://github.com/KaliLab/hippounit.git.""" ; sc:url "https://github.com/KaliLab/hippounit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -239262,22 +244028,22 @@ git clone https://github.com/KaliLab/hippounit.git.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2914" ; - sc:name "Sequence features metadata" ; - sc:sameAs "http://edamontology.org/data_2914" ], + sc:additionalType "http://edamontology.org/data_2914" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence features metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0622, @@ -239294,7 +244060,7 @@ git clone https://github.com/KaliLab/hippounit.git.""" ; sc:url "https://hipstr-tool.github.io/HipSTR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -239314,7 +244080,7 @@ git clone https://github.com/KaliLab/hippounit.git.""" ; biotools:primaryContact "Nirav V Malani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0102, @@ -239334,7 +244100,7 @@ git clone https://github.com/KaliLab/hippounit.git.""" ; biotools:primaryContact "Dovetail Genomics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation , @@ -239357,7 +244123,7 @@ git clone https://github.com/KaliLab/hippounit.git.""" ; sc:url "https://ccb.jhu.edu/software/hisat2/index.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0602, @@ -239374,7 +244140,7 @@ MOTIVATION:Clustering analysis in a biological network is to group biological en sc:url "https://github.com/allenv5/HiSCF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation ; @@ -239385,7 +244151,7 @@ MOTIVATION:Clustering analysis in a biological network is to group biological en biotools:primaryContact "Sungyoung Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -239399,7 +244165,7 @@ MOTIVATION:Clustering analysis in a biological network is to group biological en biotools:primaryContact "Lucian Ilie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, @@ -239421,7 +244187,7 @@ HiSIF was implemented by using C++/C with parallel processing being written in C sc:url "https://github.com/yufanzhouonline/HiSIF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0128, @@ -239443,7 +244209,7 @@ Protein and nucleic acid interactions play a vital role in many biological proce sc:url "http://chemyang.ccnu.edu.cn/ccb/server/HISNAPI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0601, @@ -239462,7 +244228,7 @@ Protein and nucleic acid interactions play a vital role in many biological proce "Xuejiang Guo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Plug-in" ; sc:applicationSubCategory edam:topic_0634, @@ -239483,14 +244249,14 @@ Protein and nucleic acid interactions play a vital role in many biological proce a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3424" ; - sc:name "Raw image" ; - sc:sameAs "http://edamontology.org/data_3424" ] ; + sc:additionalType "http://edamontology.org/data_3424" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Raw image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, @@ -239508,7 +244274,7 @@ Protein and nucleic acid interactions play a vital role in many biological proce sc:url "http://www.bodenmillerlab.org/research-2/histoCAT/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -239529,7 +244295,7 @@ Protein and nucleic acid interactions play a vital role in many biological proce sc:url "https://github.com/HistoCleanQUB/HistoClean" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0601, edam:topic_0634, @@ -239552,7 +244318,7 @@ Protein and nucleic acid interactions play a vital role in many biological proce biotools:primaryContact "Sanjay Gupta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3337, @@ -239572,14 +244338,14 @@ Protein and nucleic acid interactions play a vital role in many biological proce a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Sequence search results" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0601, edam:topic_3295, @@ -239600,7 +244366,7 @@ Protein and nucleic acid interactions play a vital role in many biological proce biotools:primaryContact "Simone Sidoli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0122, @@ -239621,7 +244387,7 @@ Protein and nucleic acid interactions play a vital role in many biological proce biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3169, @@ -239642,7 +244408,7 @@ Protein and nucleic acid interactions play a vital role in many biological proce biotools:primaryContact "Matthias Heinig" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3056, @@ -239659,7 +244425,7 @@ Protein and nucleic acid interactions play a vital role in many biological proce biotools:primaryContact "Ian H. Holmes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0601, edam:topic_0749, @@ -239680,7 +244446,7 @@ USAGE: perl HISTRADER.pl --bedGraph ChIP.bedGraph --peaks ChIP.bed.""" ; sc:url "https://github.com/SvenBaileyLab/Histrader" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0140, @@ -239702,7 +244468,7 @@ USAGE: perl HISTRADER.pl --bedGraph ChIP.bedGraph --peaks ChIP.bed.""" ; biotools:primaryContact "Zhiwei Cao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0780, @@ -239716,7 +244482,7 @@ Abstract Motivation Fungi are key elements in several important ecological funct sc:url "https://gitlab.com/dacs-hpi/hitac" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0077, @@ -239739,7 +244505,7 @@ Abstract Motivation Fungi are key elements in several important ecological funct biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2885, @@ -239760,7 +244526,7 @@ HiTea (Hi-C based Transposable Element Analyzer) is geared to idenify non-refere sc:url "https://github.com/parklab/HiTea" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3168, @@ -239778,7 +244544,7 @@ HiTea (Hi-C based Transposable Element Analyzer) is geared to idenify non-refere biotools:primaryContact "Lucian Ilie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -239800,7 +244566,7 @@ HiTea (Hi-C based Transposable Element Analyzer) is geared to idenify non-refere biotools:primaryContact "HitPredict Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -239824,7 +244590,7 @@ HiTea (Hi-C based Transposable Element Analyzer) is geared to idenify non-refere "Sungroh Yoon (PI)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0602, @@ -239843,7 +244609,7 @@ HiTea (Hi-C based Transposable Element Analyzer) is geared to idenify non-refere biotools:primaryContact "Aaron Diaz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0634, @@ -239859,8 +244625,21 @@ HiTea (Hi-C based Transposable Element Analyzer) is geared to idenify non-refere sc:softwareHelp ; sc:url "https://github.com/biodev/HitWalker2" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "The HIVbio is the home page of various informations that are provided here for Human Immunodefeciency Virus (HIV) life cycle and Infection." ; + sc:featureList edam:operation_2945 ; + sc:name "hivbio" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/hivbio/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0781, @@ -239876,8 +244655,24 @@ HiTea (Hi-C based Transposable Element Analyzer) is geared to idenify non-refere sc:url "http://www.csbio.sjtu.edu.cn/bioinf/HIV/" ; biotools:primaryContact "Hong-Bin" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC3626595", + "pubmed:23596523" ; + sc:description "HIVcoPRED: is a web server developed for predicting the coreceptor usage by HIV-1. It takes amino acid sequences of Variable loop (V3) of gp120 protein of HIV and predicts the coreceptor used by the HIV strain." ; + sc:featureList edam:operation_2945 ; + sc:name "hivcopred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/hivcopred/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -239896,7 +244691,7 @@ HiTea (Hi-C based Transposable Element Analyzer) is geared to idenify non-refere biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3168, @@ -239916,7 +244711,7 @@ Hive Panel Explorer is a Python script that takes a network and creates a static sc:url "https://github.com/hallamlab/HivePanelExplorer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0769, @@ -239934,7 +244729,7 @@ After obtaining the integration sites, HIVID2 allows the user to decide whether sc:url "https://github.com/zengxi-hada/HIVID2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0622, @@ -239950,8 +244745,21 @@ After obtaining the integration sites, HIVID2 allows the user to decide whether sc:url "http://www.unc.edu/~yunmli/HiView/" ; biotools:primaryContact "Li Group" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "The Human Immunodeficiency Virus is a retrovirus and has a genome size of about 9.5 Kb with repertoire of only 15-20 proteins." ; + sc:featureList edam:operation_2945 ; + sc:name "hivint" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/hivint/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -239972,7 +244780,7 @@ After obtaining the integration sites, HIVID2 allows the user to decide whether sc:url "https://github.com/ramics/HIVIntact" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0821, @@ -239990,7 +244798,7 @@ After obtaining the integration sites, HIVID2 allows the user to decide whether biotools:primaryContact "Dr. Manoj Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0769, @@ -240007,7 +244815,7 @@ A customizable environment for the structural modeling and analysis of peptide-H sc:url "https://github.com/KavrakiLab/hla-arena" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -240026,8 +244834,26 @@ HLA-EMMA is a software package designed to perform HLA class I and class II comp sc:name "HLA-EMMA" ; sc:url "http://www.HLA-EMMA.com" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0804, + edam:topic_3421 ; + sc:citation , + "pubmed:34862850" ; + sc:description "A new EPIsode in exploring donor/recipient epitopic compatibilities." ; + sc:featureList edam:operation_0416, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:name "HLA-Epi" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://hla.univ-nantes.fr" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -240045,7 +244871,7 @@ These programs expect plain text files in UNIFORMAT v3 as input. A download link sc:url "https://hla-net.eu/tools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0769, @@ -240061,8 +244887,32 @@ HLA Web Resource for SNPs, Populations, Resources, ADRs, Diseases.""" ; sc:name "HLA-SPREAD" ; sc:url "http://hla-spread.igib.res.in/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0199, + edam:topic_2830, + edam:topic_3421, + edam:topic_3930 ; + sc:citation , + "pmcid:PMC9116210", + "pubmed:35289353" ; + sc:description "An integrated structure-based computational toolkit for immunotherapy." ; + sc:featureList edam:operation_0252, + edam:operation_0416, + edam:operation_0478, + edam:operation_0479 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "HLA3D" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.hla3d.cn/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -240083,13 +244933,51 @@ HLA Web Resource for SNPs, Populations, Resources, ADRs, Diseases.""" ; sc:url "http://www-bimas.cit.nih.gov/molbio/hla_bind/" ; biotools:primaryContact "Kenneth Parker" . - a sc:SoftwareApplication ; - sc:description "CD Genomics provides accurate and reliable HLA typing service based on next-generation sequencing (NGS) technology that generates unambiguous, phase-resolved HLA sequencing results in a single assay. The service is offered for R&D / non-diagnostic purposes only and results must not be utilized to inform patient management decisions. With our advanced sequencing platforms and years of industry experience, we guarantee you high-resolution data and comprehensive bioinformatics analysis. If you have additional requirements or questions, do not hesitate to contact us." ; - sc:name "HLA Typing" ; - sc:url "https://www.cd-genomics.com/HLA-Typing.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:14960470" ; + sc:description "TheHLA-DR4Pred is an SVM and ANN based HLA-DRB1*0401(MHC class II alleles) binding peptides prediction method. The accuracy of the SVM and ANN based methods is ~86% and ~78% respectively." ; + sc:featureList edam:operation_2945 ; + sc:name "hladr4pred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/hladr4pred/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "HLA-DR4Pred 2.0 is the update of the older version HLA-DR4Pred, which was a SVM and ANN based method to predict the HLA-DRB1*04:01 bindind peptides." ; + sc:featureList edam:operation_2945 ; + sc:name "hladr4pred2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/hladr4pred2/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:35580839" ; + sc:description "HLAncPred is a webserver for the prediction of promiscuous binders of non-classical HLA-G and HLA-E alleles (HLA-G*01:01, HLA-G*01:03, HLA-G*01:04, HLA-E*01:01 and HLA-E*01:03)." ; + sc:featureList edam:operation_2945 ; + sc:name "hlancpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/hlancpred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -240112,7 +245000,7 @@ The first step is to use hlapers prepare-ref to build an index composed of Genco sc:url "https://github.com/genevol-usp/HLApers.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -240131,14 +245019,14 @@ The first step is to use hlapers prepare-ref to build an index composed of Genco a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3534 ; sc:citation , @@ -240158,7 +245046,7 @@ The first step is to use hlapers prepare-ref to build an index composed of Genco biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315 ; sc:description "A MATLAB code for Human Learning Optimization(HLO) algorithm" ; @@ -240171,8 +245059,24 @@ The first step is to use hlapers prepare-ref to build an index composed of Genco sc:url "https://www.mathworks.com/matlabcentral/fileexchange/65577-human-learning-optimization-hlo-algorithm" ; biotools:primaryContact "Ling Wang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC4150950", + "pubmed:25141912" ; + sc:description "HLP is a server developed for predicting half-life of peptides in intestine like environment. It generates all possible mutants (single mutation at each position per cycle) for a peptide and predict/calculate half-life and physicochemical properties (e.g. charge, polarity, hydrophobicity, volume, pK) of mutant peptides." ; + sc:featureList edam:operation_2945 ; + sc:name "hlp" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/hlp/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0154, @@ -240192,7 +245096,7 @@ HLPpred-Fuse could be established according to the following steps: (i) feature sc:url "http://thegleelab.org/HLPpred-Fuse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -240214,7 +245118,7 @@ HLPpred-Fuse could be established according to the following steps: (i) feature biotools:primaryContact "Tieliu Shi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3053, @@ -240231,7 +245135,7 @@ HLPpred-Fuse could be established according to the following steps: (i) feature "Valentina Boeva" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0623, @@ -240247,8 +245151,29 @@ HLPpred-Fuse could be established according to the following steps: (i) feature sc:name "HMD-ARG" ; sc:url "http://www.cbrc.kaust.edu.sa/HMDARG/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3384, + edam:topic_3421, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pubmed:35701681" ; + sc:description "Head-mounted display-based egocentric marker-less tool and hand pose estimation for augmented surgical guidance." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "HMD-EgoPose" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/doughtmw/hmd-ego-pose" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3474, @@ -240264,7 +245189,7 @@ HLPpred-Fuse could be established according to the following steps: (i) feature biotools:primaryContact "De-Shuang Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, @@ -240289,7 +245214,7 @@ HLPpred-Fuse could be established according to the following steps: (i) feature biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3172 ; sc:description "Define utilities for exploration of human metabolome database, including functions to retrieve specific metabolite entries and data snapshots with pairwise associations (metabolite-gene,-protein,-disease)." ; @@ -240306,7 +245231,7 @@ HLPpred-Fuse could be established according to the following steps: (i) feature biotools:primaryContact "VJ Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -240327,7 +245252,7 @@ TM-align Score Threshold (0 to 1):.""" ; sc:url "https://interactome.ku.edu.tr/hmi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3473 ; @@ -240343,7 +245268,7 @@ TM-align Score Threshold (0 to 1):.""" ; biotools:primaryContact "Tatsuhiko Tsunoda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0736, @@ -240361,14 +245286,14 @@ TM-align Score Threshold (0 to 1):.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0820 ; @@ -240389,7 +245314,7 @@ TM-align Score Threshold (0 to 1):.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -240402,7 +245327,7 @@ TM-align Score Threshold (0 to 1):.""" ; sc:url "http://webservices.genouest.org/opal2/dashboard?command=docs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -240415,7 +245340,7 @@ TM-align Score Threshold (0 to 1):.""" ; sc:url "http://webservices.genouest.org/opal2/dashboard?command=docs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -240428,7 +245353,7 @@ TM-align Score Threshold (0 to 1):.""" ; sc:url "http://webservices.genouest.org/opal2/dashboard?command=docs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -240449,7 +245374,7 @@ TM-align Score Threshold (0 to 1):.""" ; "Sohrab Shah" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -240463,187 +245388,156 @@ TM-align Score Threshold (0 to 1):.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_1233" ; + sc:name "Sequence set (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:encodingFormat "http://edamontology.org/format_3329" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1963" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:encodingFormat "http://edamontology.org/format_1370" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_1233" ; + sc:name "Sequence set (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_1961" ; + sc:name "Alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:encodingFormat "http://edamontology.org/format_3329" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1361" ; - sc:name "Position frequency matrix" ; - sc:sameAs "http://edamontology.org/data_1361" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_0955" ; + sc:name "Data index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0955" ; - sc:name "Data index" ; - sc:sameAs "http://edamontology.org/data_0955" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_1361" ; + sc:name "Position frequency matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, edam:topic_0623 ; sc:citation , + , + , , + "pmcid:PMC3125773", "pmcid:PMC3197634", - "pubmed:22039361" ; + "pmcid:PMC3695513", + "pubmed:21593126", + "pubmed:22039361", + "pubmed:23598997", + "pubmed:29905871" ; sc:description "This tool is used for searching sequence databases for homologs of protein sequences, and for making protein sequence alignments. It implements methods using probabilistic models called profile hidden Markov models. The new HMMER3 project, HMMER is now as fast as BLAST for protein search." ; sc:featureList edam:operation_0230, edam:operation_0296, @@ -240668,7 +245562,7 @@ TM-align Score Threshold (0 to 1):.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3293 ; @@ -240685,7 +245579,7 @@ TM-align Score Threshold (0 to 1):.""" ; biotools:primaryContact "Arjen ten Have" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -240699,14 +245593,14 @@ TM-align Score Threshold (0 to 1):.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0160 ; @@ -240727,7 +245621,7 @@ TM-align Score Threshold (0 to 1):.""" ; sc:url "http://cbs.dtu.dk/services/HMMgene/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0625, @@ -240745,7 +245639,7 @@ TM-align Score Threshold (0 to 1):.""" ; biotools:primaryContact "Stephen F. Schaffner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0736, @@ -240764,18 +245658,15 @@ TM-align Score Threshold (0 to 1):.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0858" ; - sc:name "Sequence signature matches" ; - sc:sameAs "http://edamontology.org/data_0858" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0858" ; + sc:name "Sequence signature matches" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0623 ; @@ -240798,7 +245689,7 @@ TM-align Score Threshold (0 to 1):.""" ; biotools:primaryContact "Web Production" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -240811,7 +245702,7 @@ TM-align Score Threshold (0 to 1):.""" ; sc:url "http://webservices.genouest.org/opal2/dashboard?command=docs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -240824,7 +245715,7 @@ TM-align Score Threshold (0 to 1):.""" ; sc:url "http://webservices.genouest.org/opal2/dashboard?command=docs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -240837,7 +245728,7 @@ TM-align Score Threshold (0 to 1):.""" ; sc:url "http://webservices.genouest.org/opal2/dashboard?command=docs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3320 ; sc:citation "pubmed:21079731" ; @@ -240851,7 +245742,7 @@ TM-align Score Threshold (0 to 1):.""" ; biotools:primaryContact "Brittany Worth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -240864,7 +245755,7 @@ TM-align Score Threshold (0 to 1):.""" ; sc:url "http://webservices.genouest.org/opal2/dashboard?command=docs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -240885,7 +245776,7 @@ TM-align Score Threshold (0 to 1):.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3293, @@ -240904,18 +245795,15 @@ TM-align Score Threshold (0 to 1):.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1520" ; - sc:name "Peptide hydrophobic moment" ; - sc:sameAs "http://edamontology.org/data_1520" ], + sc:additionalType "http://edamontology.org/data_1520" ; + sc:name "Peptide hydrophobic moment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1520" ; - sc:name "Peptide hydrophobic moment" ; - sc:sameAs "http://edamontology.org/data_1520" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1520" ; + sc:name "Peptide hydrophobic moment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0123 ; sc:citation , @@ -240944,8 +245832,24 @@ TM-align Score Threshold (0 to 1):.""" ; sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/hmoment.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC2720991", + "pubmed:19589147" ; + sc:description "A database of hormones and their receptors" ; + sc:featureList edam:operation_2945 ; + sc:name "hmrbase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/hmrbase/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0602, @@ -240965,7 +245869,7 @@ TM-align Score Threshold (0 to 1):.""" ; "Zheng Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -240985,7 +245889,7 @@ TM-align Score Threshold (0 to 1):.""" ; biotools:primaryContact "T. Imanishi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -241005,7 +245909,7 @@ DNA methylation (5mC) and hydroxymethylation (5hmC) are chemical modifications o sc:url "https://hmst-seq.github.io/hmst/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -241031,7 +245935,7 @@ DNA methylation (5mC) and hydroxymethylation (5hmC) are chemical modifications o sc:url "http://www.hmtdb.uniba.it/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0605, edam:topic_0634, @@ -241053,7 +245957,7 @@ The bioinformatics pipeline scripts associated with this application is uploaded sc:url "https://github.com/hmvv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0654, @@ -241071,7 +245975,7 @@ The bioinformatics pipeline scripts associated with this application is uploaded sc:url "http://sourceforge.net/projects/hnatyping/?source=navbar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -241086,8 +245990,60 @@ The bioinformatics pipeline scripts associated with this application is uploaded sc:url "http://hobbes.ics.uci.edu" ; biotools:primaryContact "Information Systems Group" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3047, + edam:topic_3373, + edam:topic_3375, + edam:topic_3379 ; + sc:citation , + "pmcid:PMC8740492", + "pubmed:34991690" ; + sc:description "Machine learning model for predicting Human Oral Bioavailability" ; + sc:featureList edam:operation_0337, + edam:operation_3659, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-4.0" ; + sc:name "HobPre" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.icdrug.com/ICDrug/A" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_3125, + edam:topic_3169 ; + sc:citation ; + sc:description "HOmo sapiens transcription factor COmprehensive MOdel COllection contains transcription factor (TF) binding models (motifs) as position weight matrices for human and mouse transcription factors." ; + sc:featureList edam:operation_2409 ; + sc:name "HOCOMOCO" ; + sc:softwareVersion "11" ; + sc:url "https://hocomoco.autosome.org" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0634, + edam:topic_3053 ; + sc:citation , + "pubmed:34846641" ; + sc:description "A Manually Curated Database of Human Ophthalmic Diseases with Symptom Characteristics and Genetic Variants Towards Facilitating Quick and Definite Diagnosis." ; + sc:featureList edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:name "HODD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bio-bigdata.cn/HODD/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -241104,30 +246060,27 @@ The bioinformatics pipeline scripts associated with this application is uploaded a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; sc:applicationSubCategory edam:topic_0080, @@ -241147,7 +246100,7 @@ The bioinformatics pipeline scripts associated with this application is uploaded sc:url "http://pbil.univ-lyon1.fr/databases/hogenom3.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "A set of webservices allowing to browse Hogenom 4 evolutionary scenarios." ; @@ -241158,7 +246111,7 @@ The bioinformatics pipeline scripts associated with this application is uploaded sc:url "http://prodom.prabi.fr/prodom/2006.1/documentation/hogenom_evoscen.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3293 ; @@ -241170,16 +246123,32 @@ The bioinformatics pipeline scripts associated with this application is uploaded sc:softwareVersion "1" ; sc:url "http://prodom.prabi.fr/prodom/current/documentation/hogenom_tree.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0654, + edam:topic_2259, + edam:topic_2640, + edam:topic_3673 ; + sc:citation , + "pubmed:34888626" ; + sc:description "Unambiguous prediction of multiple double minute chromosome architectures." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "HolistIC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.github.com/mhayes20/HolistIC" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259 ; sc:citation ; @@ -241192,7 +246161,7 @@ The bioinformatics pipeline scripts associated with this application is uploaded sc:url "https://github.com/plaffy/HoloVir" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -241208,8 +246177,28 @@ The bioinformatics pipeline scripts associated with this application is uploaded sc:url "http://www-nmr.cabm.rutgers.edu/HOMA/" ; biotools:primaryContact "CABM Structural Bioinformatics Laboratory" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2814 ; + sc:author ; + sc:citation , + "pmcid:PMC8896651", + "pubmed:34954790" ; + sc:description "A unified and modular interface to homology modelling software" ; + sc:featureList edam:operation_0321, + edam:operation_0477 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "homelette" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/PhilippJunk/homelette" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -241227,7 +246216,7 @@ The bioinformatics pipeline scripts associated with this application is uploaded biotools:primaryContact "Vincent Ranwez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "HOMER contains a novel motif discovery algorithm that was designed for regulatory element analysis in genomics applications (DNA only, no protein). It is a differential motif discovery algorithm, which means that it takes two sets of sequences and tries to identify the regulatory elements that are specifically enriched in on set relative to the other. It uses ZOOPS scoring (zero or one occurrence per sequence) coupled with the hypergeometric enrichment calculations (or binomial) to determine motif enrichment. HOMER also tries its best to account for sequenced bias in the dataset. It was designed with ChIP-Seq and promoter analysis in mind, but can be applied to pretty much any nucleic acids motif finding problem." ; sc:featureList edam:operation_0238 ; sc:name "homer" ; @@ -241235,7 +246224,7 @@ The bioinformatics pipeline scripts associated with this application is uploaded sc:url "http://homer.ucsd.edu/homer/motif/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082 ; sc:citation ; @@ -241252,7 +246241,7 @@ The bioinformatics pipeline scripts associated with this application is uploaded biotools:primaryContact "Silvio C.E. Tosatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082 ; sc:citation ; @@ -241269,7 +246258,7 @@ The bioinformatics pipeline scripts associated with this application is uploaded biotools:primaryContact "Silvio C.E. Tosatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, @@ -241291,7 +246280,7 @@ The bioinformatics pipeline scripts associated with this application is uploaded biotools:primaryContact "Guy Perrière" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3332, @@ -241308,7 +246297,7 @@ The bioinformatics pipeline scripts associated with this application is uploaded biotools:primaryContact "Martin Loos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3070 ; sc:description "This is a command line tool for sampling related sequences from Ensembl. It requires PyCogent, Numpy, SQLAlchemy, PyMysql, Click and SciTrack. At present, this tool provides capabilities to support sampling one-to-one orthologs from protein coding genes stored in an Ensembl MySQl database. It can either write out the protein coding sequences from the canonical CDS, or it can write out the Ensembl multiple sequence alignment of the entire gene with annotated features masked." ; @@ -241323,7 +246312,7 @@ The bioinformatics pipeline scripts associated with this application is uploaded biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -241349,7 +246338,7 @@ available at http://lmc.uab.cat/homolwat.""" ; sc:url "http://lmc.uab.es/homolwat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -241368,7 +246357,7 @@ available at http://lmc.uab.cat/homolwat.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -241394,7 +246383,7 @@ available at http://lmc.uab.cat/homolwat.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -241411,7 +246400,7 @@ available at http://lmc.uab.cat/homolwat.""" ; biotools:primaryContact "İGBAM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3300, @@ -241431,7 +246420,7 @@ available at http://lmc.uab.cat/homolwat.""" ; sc:url "https://brown-ccv.github.io/honeycomb-docs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -241449,7 +246438,7 @@ Upload medical imaging data easily and securely.""" ; sc:url "http://grand-challenge.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -241468,7 +246457,7 @@ Upload medical imaging data easily and securely.""" ; biotools:primaryContact "Katherine S. Pollard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0637, @@ -241485,7 +246474,7 @@ Upload medical imaging data easily and securely.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0593, edam:topic_0611, @@ -241505,8 +246494,21 @@ NOn-Linear rigid Block NMA approach (NOLB) a new conceptually simple and computa sc:name "HOPMA" ; sc:url "https://team.inria.fr/nano-d/software/nolb-normal-modes" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "A webserver to predict peptide hormones" ; + sc:featureList edam:operation_2945 ; + sc:name "hoppred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/hoppred/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0769, @@ -241528,7 +246530,7 @@ HOPS is a java pipeline which focuses on screening MALT data (see Table of Conte sc:url "https://github.com/rhuebler/HOPS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3277, @@ -241545,7 +246547,7 @@ The Highly Optimized Polytope Sampling toolbox is an open-source C++17 library f sc:url "https://github.com/modsim/hops/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -241567,8 +246569,35 @@ The Highly Optimized Polytope Sampling toolbox is an open-source C++17 library f sc:url "http://prodata.swmed.edu/horaserver/" ; biotools:primaryContact "N. Grishin" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2099" ; + sc:name "Name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0749, + edam:topic_0780, + edam:topic_3300, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9039076", + "pubmed:35469024" ; + sc:description "HORDB a comprehensive database of peptide hormones." ; + sc:featureList edam:operation_0418, + edam:operation_3646 ; + sc:isAccessibleForFree true ; + sc:name "HORDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://hordb.cpu-bioinfor.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3474 ; sc:description "Horovod is a distributed deep learning training framework for TensorFlow, Keras, PyTorch, and Apache MXNet. The goal of Horovod is to make distributed deep learning fast and easy to use." ; @@ -241579,14 +246608,14 @@ The Highly Optimized Polytope Sampling toolbox is an open-source C++17 library f a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3697 ; @@ -241601,7 +246630,7 @@ The Highly Optimized Polytope Sampling toolbox is an open-source C++17 library f sc:url "https://github.com/quadram-institute-bioscience/hostzap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -241617,7 +246646,7 @@ The Highly Optimized Polytope Sampling toolbox is an open-source C++17 library f biotools:primaryContact "Rafael Rosales" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -241634,7 +246663,7 @@ The Highly Optimized Polytope Sampling toolbox is an open-source C++17 library f biotools:primaryContact "Ben Raphael" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3360 ; sc:citation ; @@ -241650,7 +246679,7 @@ The Highly Optimized Polytope Sampling toolbox is an open-source C++17 library f sc:url "https://github.com/raphael-group/hotnet2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -241671,7 +246700,7 @@ The Highly Optimized Polytope Sampling toolbox is an open-source C++17 library f biotools:primaryContact "HotPOINT Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -241693,7 +246722,7 @@ The Highly Optimized Polytope Sampling toolbox is an open-source C++17 library f biotools:primaryContact "Engin Cukuroglu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -241707,7 +246736,7 @@ The Highly Optimized Polytope Sampling toolbox is an open-source C++17 library f sc:url "http://sfb.kaust.edu.sa/Pages/Software.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -241728,7 +246757,7 @@ No need to screen for mutation types provided. Any variant classifications can f sc:url "http://niulab.scgrid.cn/HotSpot3D/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0632, @@ -241749,42 +246778,42 @@ No need to screen for mutation types provided. Any variant classifications can f a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_1196" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ], + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "DNA sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_1461" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein-ligand complex" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1461" ; - sc:name "Protein-ligand complex" ; - sc:sameAs "http://edamontology.org/data_1461" ], + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0160, @@ -241833,7 +246862,7 @@ No need to screen for mutation types provided. Any variant classifications can f biotools:primaryContact "HotSpot Wizard team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -241850,7 +246879,7 @@ Hotspots, recurrently mutated DNA positions in cancer, are thought to be oncogen sc:url "http://bioinformatica.mty.itesm.mx/HotSpotAnnotations" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pmcid:PMC1462870", @@ -241865,7 +246894,7 @@ Hotspots, recurrently mutated DNA positions in cancer, are thought to be oncogen sc:url "http://stephenslab.uchicago.edu/software.html#hotspotter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0099, @@ -241883,7 +246912,7 @@ Hotspots, recurrently mutated DNA positions in cancer, are thought to be oncogen biotools:primaryContact "Ranjit Prasad Bahadur" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0166, @@ -241910,30 +246939,27 @@ Note: This tool relies on EDTSurf, therefore runs only on Linux. If you have a l a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0194, @@ -241951,8 +246977,31 @@ Note: This tool relies on EDTSurf, therefore runs only on Linux. If you have a l sc:url "http://pbil.univ-lyon1.fr/databases/hovergen.html" ; biotools:primaryContact "Laurent Duret" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0102, + edam:topic_0203, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8783475", + "pubmed:35065593" ; + sc:description "Python package for testing strandedness of RNA-Seq fastq files." ; + sc:featureList edam:operation_2428, + edam:operation_3258, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "how_are_we_stranded_here" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/betsig/how_are_we_stranded_here" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3263, edam:topic_3318, @@ -241968,7 +247017,7 @@ Note: This tool relies on EDTSurf, therefore runs only on Linux. If you have a l sc:url "https://www.taleka.com/howru/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0078, @@ -241988,7 +247037,7 @@ Note: This tool relies on EDTSurf, therefore runs only on Linux. If you have a l biotools:primaryContact "Laurent Gatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0121, @@ -242008,7 +247057,7 @@ HPAStain.R is an R package/Shiny app used to query the Human Protein Atlas for s sc:url "https://32tim32.shinyapps.io/HPAStainR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3170, @@ -242030,7 +247079,7 @@ The following image explains the high-level architecture.""" ; sc:url "https://github.com/BioinfoUNIBA/REDItools2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0654, @@ -242048,7 +247097,7 @@ The following image explains the high-level architecture.""" ; biotools:primaryContact "Z.S.Qin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; sc:applicationSubCategory edam:topic_0196, @@ -242071,7 +247120,7 @@ Paeonia lactiflora Pall., commonly known as the herbaceous peony, is an ornament sc:url "http://bioinformatics.cau.edu.cn/HpeNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -242086,7 +247135,7 @@ Paeonia lactiflora Pall., commonly known as the herbaceous peony, is an ornament sc:url "http://huanglab.phys.hust.edu.cn/hpepdock/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0654, @@ -242109,7 +247158,7 @@ HPG-Dhunter is an interactive tool for detecting Differentially Methylathed Regi sc:url "https://github.com/grev-uv/hpg-dhunter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -242129,7 +247178,7 @@ HPG-Dhunter is an interactive tool for detecting Differentially Methylathed Regi "Joaquín Dopazo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -242143,16 +247192,40 @@ HPG-Dhunter is an interactive tool for detecting Differentially Methylathed Regi sc:url "https://github.com/opencb/hpg-pore/wiki" ; biotools:primaryContact "Joaquín Dopazo" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0128, + edam:topic_3324, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9154073", + "pubmed:35669347" ; + sc:description "An R/Bioconductor package for predicting host-pathogen protein-protein interactions from protein sequences using ensemble machine learning approach." ; + sc:featureList edam:operation_2464, + edam:operation_2492, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "HPiP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/BabuLab-UofR/HPiP" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2050" ; - sc:name "Molecular property (general)" ; - sc:sameAs "http://edamontology.org/data_2050" ] ; + sc:additionalType "http://edamontology.org/data_2050" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecular property (general)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3370 ; sc:citation ; @@ -242166,7 +247239,7 @@ HPG-Dhunter is an interactive tool for detecting Differentially Methylathed Regi sc:url "http://www.hplcsimulator.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -242191,7 +247264,7 @@ HPG-Dhunter is an interactive tool for detecting Differentially Methylathed Regi biotools:primaryContact "Ramu Anandakrishnan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -242209,7 +247282,7 @@ HPG-Dhunter is an interactive tool for detecting Differentially Methylathed Regi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -242235,8 +247308,30 @@ HPG-Dhunter is an interactive tool for detecting Differentially Methylathed Regi "Peter Robinson", "Sebastian Köhler" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0602, + edam:topic_0625, + edam:topic_0634, + edam:topic_2229 ; + sc:citation , + "pubmed:34672333" ; + sc:description "Deep graph convolutional networks for predicting human protein-phenotype associations." ; + sc:featureList edam:operation_1777, + edam:operation_3092, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "HPODNets" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/liulizhi1996/HPODNets" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0128, @@ -242253,7 +247348,7 @@ HPG-Dhunter is an interactive tool for detecting Differentially Methylathed Regi biotools:primaryContact "Shanfeng Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0128, @@ -242270,7 +247365,7 @@ Predict human protein-HPO term associations using Learning to Rank.""" ; sc:url "http://issubmission.sjtu.edu.cn/hpolabeler/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -242294,7 +247389,7 @@ Predict human protein-HPO term associations using Learning to Rank.""" ; biotools:primaryContact "Suraj Peri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -242315,7 +247410,7 @@ HPREP : HUMAN PROTEOME REPEATS.""" ; sc:url "http://bioinfo.bdu.ac.in/hprep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3379, @@ -242330,7 +247425,7 @@ HPREP : HUMAN PROTEOME REPEATS.""" ; sc:url "https://hpscreg.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2885, @@ -242348,7 +247443,7 @@ HPREP : HUMAN PROTEOME REPEATS.""" ; biotools:primaryContact "Hongdong Tan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0621, @@ -242376,7 +247471,7 @@ Hemicentrotus pulcherrimus (A. Agassiz, 1863) (Animaria: Echinodermata: Echinoid sc:url "http://cell-innovation.nig.ac.jp/Hpul/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0781, @@ -242392,7 +247487,7 @@ Hemicentrotus pulcherrimus (A. Agassiz, 1863) (Animaria: Echinodermata: Echinoid biotools:primaryContact "Zhiheng Pei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -242411,8 +247506,23 @@ Hemicentrotus pulcherrimus (A. Agassiz, 1863) (Animaria: Echinodermata: Echinoid sc:url "https://github.com/AMSSwanglab/hReg-CNCC" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3474 ; + sc:citation , + "pubmed:35042156" ; + sc:description "Filter pruning based on High Relevance between activation maps and class labels." ; + sc:featureList edam:operation_0337, + edam:operation_0455, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:name "HRel" ; + sc:url "https://github.com/sarvanichinthapalli/HRel" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3300, @@ -242432,7 +247542,7 @@ Hemicentrotus pulcherrimus (A. Agassiz, 1863) (Animaria: Echinodermata: Echinoid "Tingjun Hou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -242456,7 +247566,7 @@ We present HRIBO (High-throughput annotation by Ribo-seq), a workflow to enable sc:url "https://github.com/RickGelhausen/HRIBO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0602, @@ -242474,8 +247584,31 @@ We present HRIBO (High-throughput annotation by Ribo-seq), a workflow to enable sc:url "http://homepages.inf.ed.ac.uk/gsanguin/software.html" ; biotools:primaryContact "Andrea Ocone" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0203, + edam:topic_0602, + edam:topic_3170, + edam:topic_3474 ; + sc:citation , + "pubmed:34570169" ; + sc:description "Perform differential expression tests for RNASeq at scale with a configurable interface and visualize results with tunable control over p-value thresholds." ; + sc:featureList edam:operation_1781, + edam:operation_2437, + edam:operation_3223, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "HRM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/SD2E/omics_tools" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; @@ -242491,7 +247624,7 @@ HigherHRNet-Human-Pose-Estimation.""" ; sc:url "https://github.com/HRNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0102, @@ -242514,7 +247647,7 @@ HigherHRNet-Human-Pose-Estimation.""" ; sc:url "http://www.hmuhrrd.com/HRRD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3125, @@ -242534,7 +247667,7 @@ HigherHRNet-Human-Pose-Estimation.""" ; biotools:primaryContact "Victor Jin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3077, @@ -242551,7 +247684,7 @@ hRUV is a package for normalisation of multiple batches of metabolomics data in sc:url "https://shiny.maths.usyd.edu.au/hRUV/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3335 ; sc:citation , @@ -242567,7 +247700,7 @@ hRUV is a package for normalisation of multiple batches of metabolomics data in sc:url "https://anslabtools.univ-st-etienne.fr/en/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0208, @@ -242582,14 +247715,12 @@ hRUV is a package for normalisation of multiple batches of metabolomics data in a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -242604,7 +247735,7 @@ hRUV is a package for normalisation of multiple batches of metabolomics data in sc:url "https://github.com/chenying2016/queries" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -242620,7 +247751,7 @@ hRUV is a package for normalisation of multiple batches of metabolomics data in biotools:primaryContact "Shuanglin Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0082, @@ -242639,7 +247770,7 @@ hRUV is a package for normalisation of multiple batches of metabolomics data in biotools:primaryContact "Zhengqing Ouyang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2814 ; @@ -242653,7 +247784,7 @@ hRUV is a package for normalisation of multiple batches of metabolomics data in sc:url "http://sunflower.kuicr.kyoto-u.ac.jp/~sjn/hse/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -242669,11 +247800,11 @@ hRUV is a package for normalisation of multiple batches of metabolomics data in "Windows" ; sc:softwareHelp , ; - sc:url "http://www.imtech.res.in/raghava/hslpred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/hslpred/" ; biotools:primaryContact "Dr. Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, edam:topic_3295, @@ -242692,8 +247823,34 @@ DNA methylation is an important epigenetic modification, which is closely relate sc:name "HSM6AP" ; sc:url "http://lab.malab.cn/~lijing/HSM6AP.html" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0160, + edam:topic_0203, + edam:topic_0601, + edam:topic_3518 ; + sc:citation , + "pubmed:35771633" ; + sc:description "Identification of motifs in sequences composed of non-single-letter elements." ; + sc:featureList edam:operation_0238, + edam:operation_0239, + edam:operation_0337, + edam:operation_2238 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "HSMotifDiscover" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://hsmotifdiscover.shinyapps.io/HSMotifDiscover_ShinyApp/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2229, @@ -242716,14 +247873,13 @@ HSPMdb will assist the scientific community working in the area of chaperone bio a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3542 ; sc:citation ; @@ -242737,7 +247893,7 @@ HSPMdb will assist the scientific community working in the area of chaperone bio sc:url "http://swift.cmbi.ru.nl/gv/hssp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3300, @@ -242755,10 +247911,10 @@ Novel paradigm for optimal parameter selection of a generic spike sorting algori a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275 ; sc:citation , @@ -242774,7 +247930,7 @@ Novel paradigm for optimal parameter selection of a generic spike sorting algori sc:url "http://huanglab.phys.hust.edu.cn/hsymdock/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -242799,8 +247955,43 @@ Novel paradigm for optimal parameter selection of a generic spike sorting algori "Windows" ; sc:url "https://github.com/alonalj/hta" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:citation , + "pubmed:34780326" ; + sc:description "Heterogeneous Task Decoupling for Two-Stage Object Detection." ; + sc:featureList edam:operation_3436, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "HTD" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/CityU-AIM-Group/HTD" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3474, + edam:topic_3489 ; + sc:citation , + "pmcid:PMC8672147", + "pubmed:34950901" ; + sc:description "High Throughput Experimental Materials Database" ; + sc:featureList edam:operation_2422, + edam:operation_3431, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:name "HTEM-DB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://htem.nrel.gov" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -242813,7 +248004,7 @@ Novel paradigm for optimal parameter selection of a generic spike sorting algori sc:url "http://stormo.wustl.edu/HTHmotif" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0736, @@ -242830,14 +248021,14 @@ Novel paradigm for optimal parameter selection of a generic spike sorting algori a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence search results" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -242853,7 +248044,7 @@ Novel paradigm for optimal parameter selection of a generic spike sorting algori biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3365 ; @@ -242866,8 +248057,33 @@ Novel paradigm for optimal parameter selection of a generic spike sorting algori sc:softwareHelp ; sc:url "http://www.cbrg.ox.ac.uk/data/pivotviewer/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0199, + edam:topic_0625, + edam:topic_0780, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC9284292", + "pubmed:35643087" ; + sc:description "Exploiting maize haplotype-tag polymorphisms for germplasm resource analyses and genomics-informed breeding." ; + sc:featureList edam:operation_0487, + edam:operation_3196, + edam:operation_3557, + edam:operation_3894 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "HTP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://htp.plantdna.site/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0632, @@ -242885,7 +248101,7 @@ Novel paradigm for optimal parameter selection of a generic spike sorting algori biotools:primaryContact "Gustavo Machado Alvares de Lima" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780 ; @@ -242901,7 +248117,7 @@ Novel paradigm for optimal parameter selection of a generic spike sorting algori sc:url "http://htpheno.ipk-gatersleben.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -242922,7 +248138,7 @@ Novel paradigm for optimal parameter selection of a generic spike sorting algori biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, @@ -242940,7 +248156,7 @@ Novel paradigm for optimal parameter selection of a generic spike sorting algori biotools:primaryContact "Dmitri Zaykin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3263, @@ -242957,30 +248173,30 @@ HTrack (Household Tracking) is an application built in R-Shiny for use on encryp a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2872" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "ID list" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2872" ; - sc:name "ID list" ; - sc:sameAs "http://edamontology.org/data_2872" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0085, @@ -243004,7 +248220,7 @@ HTrack (Household Tracking) is an application built in R-Shiny for use on encryp biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0623, edam:topic_2269, @@ -243022,8 +248238,30 @@ HTrack (Household Tracking) is an application built in R-Shiny for use on encryp sc:url "http://cran.r-project.org/web/packages/HTSCluster/index.html" ; biotools:primaryContact "Andrea Rau" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Desktop application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0749, + edam:topic_2269 ; + sc:citation , + "pmcid:PMC8896640", + "pubmed:34999766" ; + sc:description "Custom compression for CRAM and others." ; + sc:featureList edam:operation_0335, + edam:operation_3435, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:license "BSD-2-Clause" ; + sc:name "HTScodecs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/samtools/htscodecs" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -243040,22 +248278,22 @@ HTrack (Household Tracking) is an application built in R-Shiny for use on encryp a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -243074,7 +248312,7 @@ HTrack (Household Tracking) is an application built in R-Shiny for use on encryp biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "Libraries to perform NGS analysis." ; @@ -243090,7 +248328,7 @@ HTrack (Household Tracking) is an application built in R-Shiny for use on encryp biotools:primaryContact "Jens Reeder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_2885, @@ -243113,7 +248351,7 @@ The Open Science Workspace for Collaborative Data-driven Discovery.""" ; sc:url "https://reneshbedre.github.io/blog/htseqqc.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -243134,7 +248372,7 @@ The Open Science Workspace for Collaborative Data-driven Discovery.""" ; biotools:primaryContact "Oscar Reina" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -243156,7 +248394,7 @@ The Open Science Workspace for Collaborative Data-driven Discovery.""" ; biotools:primaryContact "Andrea Rau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085, edam:topic_1775, @@ -243174,38 +248412,22 @@ The Open Science Workspace for Collaborative Data-driven Discovery.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -243231,6 +248453,8 @@ The Open Science Workspace for Collaborative Data-driven Discovery.""" ; "1.13", "1.14", "1.15", + "1.15.1", + "1.16", "1.2", "1.2.1", "1.3", @@ -243247,7 +248471,7 @@ The Open Science Workspace for Collaborative Data-driven Discovery.""" ; biotools:primaryContact "Wellcome Sanger Institute" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -243264,8 +248488,61 @@ The Open Science Workspace for Collaborative Data-driven Discovery.""" ; sc:url "http://www.stat.purdue.edu/~ovitek/HTSmix.html" ; biotools:primaryContact "Olga Vitek" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0625, + edam:topic_3343, + edam:topic_3373 ; + sc:citation ; + sc:description "An end-to-end data processing, analysis and visualisation tool for chemical and genetic in vitro perturbation screening." ; + sc:featureList edam:operation_0337, + edam:operation_2409, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "HTSplotter" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://htsplotter.cmgg.be/" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:name "Statistical estimate score" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3070, + edam:topic_3168, + edam:topic_3572 ; + sc:citation , + "pmcid:PMC8455540", + "pubmed:34548573" ; + sc:description "HTSQualC is a flexible and one-step quality control software for high-throughput sequencing data analysis." ; + sc:featureList edam:operation_3192, + edam:operation_3218, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "HTSQualC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/reneshbedre/HTSQualC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0077, edam:topic_3127 ; @@ -243280,8 +248557,25 @@ The Open Science Workspace for Collaborative Data-driven Discovery.""" ; sc:url "https://cran.r-project.org/web/packages/HTSSIP/index.html" ; biotools:primaryContact "Samuel Barnett" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0622, + edam:topic_0632, + edam:topic_3572 ; + sc:description "HTStream is a quality control and processing pipeline for High Throughput Sequencing data. The difference between HTStream and other tools is that HTStream uses a tab delimited fastq format that allows for streaming from application to application. This streaming creates some awesome efficiencies when processing HTS data and makes it fully interoperable with other standard Linux tools." ; + sc:featureList edam:operation_3187, + edam:operation_3192, + edam:operation_3219 ; + sc:license "Apache-2.0" ; + sc:name "HTStream" ; + sc:softwareHelp ; + sc:softwareVersion "1.3.3" ; + sc:url "https://s4hts.github.io/HTStream/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2259, @@ -243299,7 +248593,7 @@ The Open Science Workspace for Collaborative Data-driven Discovery.""" ; biotools:primaryContact "M. Boutros" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0154, @@ -243318,7 +248612,7 @@ The Open Science Workspace for Collaborative Data-driven Discovery.""" ; biotools:primaryContact "Michael Boutros" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3293, @@ -243335,7 +248629,7 @@ The Open Science Workspace for Collaborative Data-driven Discovery.""" ; biotools:primaryContact "Shihua Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0199, @@ -243351,8 +248645,32 @@ The Open Science Workspace for Collaborative Data-driven Discovery.""" ; sc:name "Hu-mAb" ; sc:url "http://opig.stats.ox.ac.uk/webapps/humab" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0769, + edam:topic_2830, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC8728177", + "pubmed:34606616" ; + sc:description "Human Antigen Receptor Consortium (huARdb) is a comprehensive database of single cell immune profiling and V(D)J T cell and B cell analysis, enhanced with advanced visualization of single-cell data." ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_0451, + edam:operation_3431, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:name "huARdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://huarc.net/database" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -243377,8 +248695,51 @@ The Open Science Workspace for Collaborative Data-driven Discovery.""" ; "Hsin-Hung Wu", "Shu-Hwa Chen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0632, + edam:topic_0637, + edam:topic_3168, + edam:topic_3174, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9017208", + "pubmed:35474894" ; + sc:description "Probe design for simultaneous, targeted capture of diverse metagenomic targets." ; + sc:featureList edam:operation_2419, + edam:operation_3695, + edam:operation_3745 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "HUBDesign" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/zacherydickson/HUBDesign" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0601, + edam:topic_2815, + edam:topic_3474 ; + sc:citation , + "pubmed:34515266" ; + sc:description "An ensemble predictor for human ubiquitination sites using convolutional and recurrent neural networks" ; + sc:featureList edam:operation_0417, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "HUbiPred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/amituofo-xf/HUbiPred" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3068, @@ -243397,7 +248758,7 @@ The Open Science Workspace for Collaborative Data-driven Discovery.""" ; sc:url "http://www.hubmed.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0218, @@ -243415,7 +248776,7 @@ hubViz (a novel tool for hub-centric Visualization) is a novel tool for hub-cent sc:url "https://dongjunchung.github.io/hubviz/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3065 ; sc:citation , @@ -243430,8 +248791,28 @@ hubViz (a novel tool for hub-centric Visualization) is a novel tool for hub-cent sc:softwareHelp ; sc:url "http://www.hudsen.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2885, + edam:topic_3298, + edam:topic_3382, + edam:topic_3517 ; + sc:citation ; + sc:description "An R package for creating mirrored Manhattan plots" ; + sc:featureList edam:operation_0224, + edam:operation_0337, + edam:operation_3778 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "hudson" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/RitchieLab/hudson" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0121, @@ -243449,14 +248830,13 @@ hubViz (a novel tool for hub-centric Visualization) is a novel tool for hub-cent a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2393" ; - sc:name "mFLJ/mKIAA number" ; - sc:sameAs "http://edamontology.org/data_2393" ] ; + sc:additionalType "http://edamontology.org/data_2393" ; + sc:name "mFLJ/mKIAA number" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3512 ; @@ -243470,8 +248850,27 @@ hubViz (a novel tool for hub-centric Visualization) is a novel tool for hub-cent sc:softwareHelp ; sc:url "http://www.kazusa.or.jp/huge/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0602, + edam:topic_3179, + edam:topic_3474, + edam:topic_3957 ; + sc:citation , + "pubmed:35021191" ; + sc:description "Reconstruction of human protein-coding gene functional association network based on machine learning." ; + sc:featureList edam:operation_0533, + edam:operation_2436, + edam:operation_3094 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "HuGFAN" ; + sc:url "https://github.com/xthuang226/HuGFAN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -243488,7 +248887,7 @@ Collect information about clinic management and research projects.""" ; sc:url "http://www.humandiseasegenes.info" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -243507,7 +248906,7 @@ Collect information about clinic management and research projects.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -243522,8 +248921,55 @@ Collect information about clinic management and research projects.""" ; sc:name "Human Phenotype Ontology" ; sc:url "http://www.human-phenotype-ontology.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0128, + edam:topic_2229, + edam:topic_3324, + edam:topic_3957 ; + sc:citation , + "pmcid:PMC8924640", + "pubmed:35356543" ; + sc:description "Comprehensive characterization of human-virus protein-protein interactions reveals disease comorbidities and potential antiviral drugs." ; + sc:featureList edam:operation_0306, + edam:operation_2436, + edam:operation_2949, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:name "human-virus PPIs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bio-bigdata.hrbmu.edu.cn/HVPPI" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_2815, + edam:topic_3170, + edam:topic_3308, + edam:topic_3337 ; + sc:citation , + "pubmed:35124170" ; + sc:description "A Searchable Comparative Transcriptome Database for Healthy and Diseased Human Eye Tissue." ; + sc:featureList edam:operation_2422, + edam:operation_3223, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:name "Human Eye Transcriptome Atlas" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.eye-transcriptome.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3063, @@ -243545,13 +248991,8 @@ Collect information about clinic management and research projects.""" ; sc:url "http://www.umd.be/HSF3/" ; biotools:primaryContact "Contact Form" . - a sc:SoftwareApplication ; - sc:description "CD Genomics has been providing the accurate and affordable human genome resequencing service for a couple of years. CD Genomics introduces previously hidden PacBio SMRT technology that has great application potential in human genome resequencing. The long single-molecule reads reveal structural variants and produce direct variant phasing information across haplotype blocks and methylation. This is very helpful to broaden the utility of precision medicine efforts to improve human health, and greatly promote the development of human single-gene diseases, complex diseases and tumor genomes." ; - sc:name "Human Whole Genome PacBio SMRT Sequencing" ; - sc:url "https://www.cd-genomics.com/Human-Whole-Genome-PacBio-SMRT-Sequencing.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3277, @@ -243569,15 +249010,39 @@ Metagenomics became a standard strategy to comprehend the functional potential o sc:url "https://webapp.ufz.de/hmgdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "HUMAnN 2.0 is a pipeline for efficiently and accurately profiling the presence/absence and abundance of microbial pathways in a community from metagenomic or metatranscriptomic sequencing data (typically millions of short DNA/RNA reads). This process, referred to as functional profiling, aims to describe the metabolic potential of a microbial community and its members. More generally, functional profiling answers the question “What are the microbes in my community-of-interest doing (or capable of doing)?”" ; sc:featureList edam:operation_3929 ; sc:name "HUMAnN2" ; sc:url "http://huttenhower.sph.harvard.edu/humann2" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0634, + edam:topic_3053, + edam:topic_3318, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC8728227", + "pubmed:34747468" ; + sc:description "An improved database of human gene networks for disease research." ; + sc:featureList edam:operation_2421, + edam:operation_2454, + edam:operation_3094 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "HumanNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "3" ; + sc:url "https://www.inetbio.org/humannet/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0091, @@ -243599,7 +249064,7 @@ The Chair for Clinical Bioinformatics at Saarland University has developed numer sc:url "https://www.ccb.uni-saarland.de/humir/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench", "Workflow" ; sc:applicationSubCategory edam:topic_0769, @@ -243617,7 +249082,7 @@ The Chair for Clinical Bioinformatics at Saarland University has developed numer "Michael P Snyder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -243638,7 +249103,7 @@ The Chair for Clinical Bioinformatics at Saarland University has developed numer biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0769, @@ -243657,7 +249122,7 @@ A powerful NLP library. Flair allows you to apply our state-of-the-art natural l sc:url "https://github.com/flairNLP/flair" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Hungarian algorithm for linear sum assignment. Works for square and rectangular cost matrices." ; sc:isAccessibleForFree true ; @@ -243670,7 +249135,7 @@ A powerful NLP library. Flair allows you to apply our state-of-the-art natural l biotools:primaryContact "ondrejdee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, @@ -243696,7 +249161,7 @@ A powerful NLP library. Flair allows you to apply our state-of-the-art natural l biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, @@ -243718,7 +249183,7 @@ huskinDB is a human skin permeation database containing information on experimen sc:url "https://huskindb.drug-design.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2815, @@ -243737,7 +249202,7 @@ huskinDB is a human skin permeation database containing information on experimen biotools:primaryContact "Ying Han" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -243756,8 +249221,28 @@ Here, we introduce a comprehensive human-virus PPI database, HVIDB (http://zzdla sc:name "HVIDB" ; sc:url "http://zzdlab.com/hvidb/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0769, + edam:topic_2269 ; + sc:citation ; + sc:description "Inference concerning equilibrium and random mating in autopolyploids. Methods are available to test for equilibrium and random mating at any even ploidy level (>2) in the presence of double reduction at biallelic loci. For autopolyploid populations in equilibrium, methods are available to estimate the degree of double reduction. We also provide functions to calculate genotype frequencies at equilibrium, or after one or several rounds of random mating, given rates of double reduction." ; + sc:featureList edam:operation_0487, + edam:operation_2238, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "hwep" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/dcgerard/hwep" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3374 ; @@ -243773,18 +249258,18 @@ Here, we introduce a comprehensive human-virus PPI database, HVIDB (http://zzdla a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -243806,8 +249291,43 @@ Here, we introduce a comprehensive human-virus PPI database, HVIDB (http://zzdla sc:url "http://www.hxms.com/HXExpress/" ; biotools:primaryContact "J Engen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script", + "Workflow" ; + sc:applicationSubCategory edam:topic_0114, + edam:topic_0769 ; + sc:citation ; + sc:description "hyb is a bioinformatics pipeline for analysis of CLASH (crosslinking, ligation and sequencing of hybrids) data." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "hyb" ; + sc:url "https://github.com/gkudla/hyb" ; + biotools:primaryContact "Grzegorz Kudla" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0654, + edam:topic_0798, + edam:topic_3168, + edam:topic_3295, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9241225", + "pubmed:35768759" ; + sc:description "A hybrid DNA2vec-based model for DNA N4-methylcytosine sites prediction." ; + sc:featureList edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Hyb4mC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/YingLiangjxau/Hyb4mC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -243823,8 +249343,32 @@ Here, we introduce a comprehensive human-virus PPI database, HVIDB (http://zzdla sc:name "HybPhaser" ; sc:url "https://github.com/LarsNauheimer/HybPhaser" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0194, + edam:topic_0196, + edam:topic_3293, + edam:topic_3316, + edam:topic_3512 ; + sc:citation ; + sc:description "Containerization and additional options for assembly and paralog detection in target enrichment data." ; + sc:featureList edam:operation_0310, + edam:operation_0335, + edam:operation_3192, + edam:operation_3478 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "hybpiper-rbgv" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://github.com/chrisjackson-pellicle/HybPiper-RBGV" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3168, @@ -243842,7 +249386,7 @@ Here, we introduce a comprehensive human-virus PPI database, HVIDB (http://zzdla "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3168, @@ -243857,7 +249401,7 @@ Here, we introduce a comprehensive human-virus PPI database, HVIDB (http://zzdla biotools:primaryContact "Leena Salmela" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3382, @@ -243876,7 +249420,7 @@ Here, we introduce a comprehensive human-virus PPI database, HVIDB (http://zzdla biotools:primaryContact "Tyler Coye" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0176, @@ -243897,7 +249441,7 @@ Automatic set up of Molecular Mechanics/Coarse-Grained (MM/CG) simulations for h sc:url "http://mmcg.grs.kfa-juelich.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -243919,7 +249463,7 @@ Automatic set up of Molecular Mechanics/Coarse-Grained (MM/CG) simulations for h "Dr. Cock van Oosterhout" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -243938,7 +249482,7 @@ Fast and accurate parental allele inheritance prediction tool for hybrid species sc:url "https://github.com/Sookie-S/HybridMine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -243957,7 +249501,7 @@ Fast and accurate parental allele inheritance prediction tool for hybrid species biotools:primaryContact "Demba Fofana" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -243977,7 +249521,7 @@ HybridPBRpred combines prediction of protein-binding residues generated by SCRIB sc:url "http://biomine.cs.vcu.edu/servers/hybridPBRpred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0154, @@ -243998,7 +249542,7 @@ a hybrid-learning architecture for succinylation site prediction.""" ; sc:url "http://hybridsucc.biocuckoo.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, @@ -244017,7 +249561,7 @@ a hybrid-learning architecture for succinylation site prediction.""" ; biotools:primaryContact "Pratik Chhatbar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -244034,7 +249578,7 @@ a hybrid-learning architecture for succinylation site prediction.""" ; biotools:primaryContact "Byung Hun Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0736, @@ -244053,14 +249597,12 @@ a hybrid-learning architecture for succinylation site prediction.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:name "Sequence set (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -244078,7 +249620,7 @@ a hybrid-learning architecture for succinylation site prediction.""" ; biotools:primaryContact "Dan Søndergaard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0632, @@ -244097,7 +249639,7 @@ a hybrid-learning architecture for succinylation site prediction.""" ; "Ron Shamir" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3510, @@ -244115,7 +249657,7 @@ a hybrid-learning architecture for succinylation site prediction.""" ; biotools:primaryContact "Shuyan Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -244132,7 +249674,7 @@ a hybrid-learning architecture for succinylation site prediction.""" ; biotools:primaryContact "Minji Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, edam:topic_0593, @@ -244151,7 +249693,7 @@ a hybrid-learning architecture for succinylation site prediction.""" ; sc:url "http://www.csbio.sjtu.edu.cn/bioinf/HYDRA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -244175,7 +249717,7 @@ There is a need for more flexible gene expression analyses for precision oncolog sc:url "http://www.github.com/jpfeil/hydra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -244192,7 +249734,7 @@ There is a need for more flexible gene expression analyses for precision oncolog sc:url "http://cphg.virginia.edu/quinlan/?page_id=30" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3047, @@ -244218,14 +249760,14 @@ We developed an empirical method for predicting the favorable hydration sites in a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1546" ; - sc:name "Protein distance matrix" ; - sc:sameAs "http://edamontology.org/data_1546" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1546" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein distance matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -244240,7 +249782,7 @@ We developed an empirical method for predicting the favorable hydration sites in sc:url "https://github.com/jtprince/hydrogen_bondifier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -244258,7 +249800,7 @@ Codon usage bias exerts control over a wide variety of molecular processes. The sc:url "https://juanvillada.shinyapps.io/hbonds/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3307 ; @@ -244272,8 +249814,26 @@ Codon usage bias exerts control over a wide variety of molecular processes. The sc:softwareHelp ; sc:url "http://athena.bioc.uvic.ca/virology-ca-tools/hydrophobicity/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3068, + edam:topic_3365 ; + sc:citation , + "pubmed:35876159" ; + sc:description "A open-source architecture which is inspired by previously reported DEFactor architecture and based on hydrogen labeled graphs." ; + sc:featureList edam:operation_2428 ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "HyFactor" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Laboratoire-de-Chemoinformatique/HyFactor" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:description "Identifies primer and microarray probe binding sites in genomic DNA." ; @@ -244285,8 +249845,28 @@ Codon usage bias exerts control over a wide variety of molecular processes. The sc:softwareHelp ; sc:url "http://hyfi.sourceforge.net/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0199, + edam:topic_2640, + edam:topic_3168 ; + sc:citation ; + sc:description "A Hybrid approach for Detection of Insertions and Deletions." ; + sc:featureList edam:operation_0452, + edam:operation_3199, + edam:operation_3962 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "HyINDEL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/alok123t/HyINDEL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0625, @@ -244304,7 +249884,7 @@ HyLength: a semi-automated digital image analysis pipeline to measure total fung sc:url "https://gitlab.iit.it/EDelDottore/hylength" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -244318,8 +249898,31 @@ HyLength: a semi-automated digital image analysis pipeline to measure total fung sc:url "https://github.com/xiangju0208/HyMM" ; biotools:primaryContact "Min Li" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0128, + edam:topic_0601, + edam:topic_3520 ; + sc:citation ; + sc:description "Deep Proteome Profiling Enabled Functional Annotation and Data-Independent Quantification of Proline Hydroxylation Targets." ; + sc:featureList edam:operation_0306, + edam:operation_0314, + edam:operation_0417, + edam:operation_2949, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "HypDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.HypDB.site" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0202, @@ -244339,7 +249942,7 @@ HyLength: a semi-automated digital image analysis pipeline to measure total fung biotools:primaryContact "Dr. Vineet K. Sharma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0769 ; @@ -244353,7 +249956,7 @@ HyLength: a semi-automated digital image analysis pipeline to measure total fung sc:url "https://github.com/montilab/hypeR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3168, @@ -244370,7 +249973,7 @@ HyLength: a semi-automated digital image analysis pipeline to measure total fung "Xihong Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -244390,8 +249993,25 @@ HyLength: a semi-automated digital image analysis pipeline to measure total fung biotools:primaryContact "Daniela Besozzi", "Fabrizio Gelain" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3169, + edam:topic_3295 ; + sc:citation , + "pmcid:PMC8883642", + "pubmed:35227282" ; + sc:description "HyperChIP for calling hypervariable ChIP-seq signals across samples" ; + sc:featureList edam:operation_2939, + edam:operation_3222, + edam:operation_3435 ; + sc:license "GPL-3.0" ; + sc:name "HyperChIP" ; + sc:url "https://github.com/tushiqi/MAnorm2" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3340 ; @@ -244422,7 +250042,7 @@ HyLength: a semi-automated digital image analysis pipeline to measure total fung "Maria Assunta Manniello" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2640, @@ -244442,7 +250062,7 @@ Example jupyter notebooks for hypercluster.""" ; sc:url "https://github.com/ruggleslab/hypercluster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092 ; @@ -244459,16 +250079,33 @@ Example jupyter notebooks for hypercluster.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/hyperdraw.html" ; biotools:primaryContact "Paul Murrell" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0632, + edam:topic_0659, + edam:topic_2229, + edam:topic_3168, + edam:topic_3293 ; + sc:citation ; + sc:description "HyperEx (pronounced \"Hyper Ex\" for Hypervariable region Extractor) is a tool that extracts 16S ribosomal RNA (rRNA) hypervariable region based on a set of primers." ; + sc:featureList edam:operation_0491 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "HyperEx" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Ebedthan/hyperex" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Web application" ; @@ -244486,7 +250123,7 @@ Example jupyter notebooks for hypercluster.""" ; sc:url "http://bioinformatics.psb.ugent.be/software/details/HyperGeny" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053 ; @@ -244501,7 +250138,7 @@ Example jupyter notebooks for hypercluster.""" ; biotools:primaryContact "Michael Boedigheimer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092 ; @@ -244519,7 +250156,7 @@ Example jupyter notebooks for hypercluster.""" ; biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -244540,7 +250177,7 @@ Example jupyter notebooks for hypercluster.""" ; sc:url "http://www.ebi.ac.uk/projects/BARGEN/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -244556,7 +250193,7 @@ Example jupyter notebooks for hypercluster.""" ; biotools:primaryContact "Peder Larson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -244573,7 +250210,7 @@ Example jupyter notebooks for hypercluster.""" ; biotools:primaryContact "Rui Kuang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -244592,8 +250229,32 @@ HyperQuant A Pipeline for integrating identification and quantitation results fo sc:name "HyperQuant" ; sc:url "https://sourceforge.net/projects/hyper-quant/files/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_0780, + edam:topic_3382, + edam:topic_3474, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC8703337", + "pubmed:34960287" ; + sc:description "High-throughput, nondestructive, and precise measurement of seeds is critical for the evaluation of seed quality and the improvement of agricultural productions." ; + sc:featureList edam:operation_3214, + edam:operation_3443, + edam:operation_3891, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "HyperSeed" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/tgaochn/HyperSeed" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -244611,7 +250272,7 @@ HyperQuant A Pipeline for integrating identification and quantitation results fo biotools:primaryContact "Rajeev Yadav" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation , @@ -244626,24 +250287,45 @@ HyperQuant A Pipeline for integrating identification and quantitation results fo sc:softwareVersion "1.2.2" ; sc:url "http://kinase.com/tools/HyperTree.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0203, + edam:topic_0780, + edam:topic_3170 ; + sc:citation ; + sc:description "A flexible R package for the analysis of differential RNA editing." ; + sc:featureList edam:operation_3096, + edam:operation_3901, + edam:operation_3902 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "hyperTRIBER" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sarah-ku/hyperTRIBER" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; - sc:applicationSubCategory edam:topic_0196 ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0622 ; sc:citation ; sc:description "HyPo, a Hybrid Polisher, utilizes short as well as long reads within a single run to polish a long reads assembly of small and large genomes." ; - sc:featureList edam:operation_2425 ; + sc:featureList edam:operation_0525, + edam:operation_2425 ; sc:license "GPL-3.0" ; sc:name "HyPo" ; sc:softwareVersion "1.0.3" ; sc:url "https://github.com/kensung-lab/hypo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -244664,7 +250346,7 @@ HyperQuant A Pipeline for integrating identification and quantitation results fo "Tivadar Danka" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0219 ; @@ -244683,14 +250365,14 @@ HyperQuant A Pipeline for integrating identification and quantitation results fo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3483" ; - sc:name "Spectrum" ; - sc:sameAs "http://edamontology.org/data_3483" ] ; + sc:additionalType "http://edamontology.org/data_3483" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3321, edam:topic_3382, @@ -244709,7 +250391,7 @@ HyperQuant A Pipeline for integrating identification and quantitation results fo sc:url "http://bioimaging.usc.edu/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0769, @@ -244727,7 +250409,7 @@ HyperQuant A Pipeline for integrating identification and quantitation results fo sc:url "https://gitlab.unige.ch/paruch-group/hystorian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -244746,7 +250428,7 @@ HyperQuant A Pipeline for integrating identification and quantitation results fo biotools:primaryContact "Tatsuhiko Tsunoda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, @@ -244765,14 +250447,12 @@ HyperQuant A Pipeline for integrating identification and quantitation results fo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0868" ; - sc:name "Profile-profile alignment" ; - sc:sameAs "http://edamontology.org/data_0868" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0868" ; + sc:name "Profile-profile alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0797 ; sc:citation ; @@ -244788,7 +250468,7 @@ HyperQuant A Pipeline for integrating identification and quantitation results fo sc:url "http://bioinformatics.psb.ugent.be/software/details/i--ADHoRe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -244809,7 +250489,7 @@ HyperQuant A Pipeline for integrating identification and quantitation results fo biotools:primaryContact "i-GSEA4GWAS Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -244827,30 +250507,27 @@ Information embedded in ligand-binding residues (LBRs) of proteins is important a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1467" ; - sc:name "Protein chain" ; - sc:sameAs "http://edamontology.org/data_1467" ], + sc:additionalType "http://edamontology.org/data_1742" ; + sc:name "PDB residue number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1742" ; - sc:name "PDB residue number" ; - sc:sameAs "http://edamontology.org/data_1742" ], + sc:additionalType "http://edamontology.org/data_1467" ; + sc:name "Protein chain" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ], + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_2885 ; @@ -244869,38 +250546,35 @@ Information embedded in ligand-binding residues (LBRs) of proteins is important a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ], + sc:additionalType "http://edamontology.org/data_1742" ; + sc:name "PDB residue number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1467" ; - sc:name "Protein chain" ; - sc:sameAs "http://edamontology.org/data_1467" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1742" ; - sc:name "PDB residue number" ; - sc:sameAs "http://edamontology.org/data_1742" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_1467" ; + sc:name "Protein chain" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ], + sc:additionalType "http://edamontology.org/data_1622" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Disease report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1622" ; - sc:name "Disease report" ; - sc:sameAs "http://edamontology.org/data_1622" ], + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -244923,7 +250597,7 @@ Information embedded in ligand-binding residues (LBRs) of proteins is important biotools:primaryContact "Emidio Capriotti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0092, @@ -244941,7 +250615,7 @@ Information embedded in ligand-binding residues (LBRs) of proteins is important biotools:primaryContact "Ibrahim Tanyalcin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0166, @@ -244957,7 +250631,7 @@ Information embedded in ligand-binding residues (LBRs) of proteins is important biotools:primaryContact "Chris Bystroff" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -244965,7 +250639,18 @@ Information embedded in ligand-binding residues (LBRs) of proteins is important edam:topic_1775, edam:topic_2275, edam:topic_2814 ; - sc:citation "pubmed:25883148" ; + sc:citation , + , + , + , + "pmcid:PMC2849174", + "pmcid:PMC4428668", + "pmcid:PMC4489253", + "pmcid:PMC8336924", + "pubmed:20360767", + "pubmed:25549265", + "pubmed:25883148", + "pubmed:34355210" ; sc:description "Best in tertiary structure prediction (as ‘Zhang-Server’) in the community-wide blind benchmarks CASP7 and CASP8. It uses mainly profile-profile comparison to identify templates and alignments for deriving distance constraints. Its power lies in how it combines the distance constraints from up to the 50 best-ranked templates. It performs some knowledge-based free modelling in regions without any template-based information." ; sc:featureList edam:operation_0310, edam:operation_0474 ; @@ -244978,7 +250663,7 @@ Information embedded in ligand-binding residues (LBRs) of proteins is important biotools:primaryContact "Yang Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2828 ; @@ -244995,7 +250680,7 @@ Information embedded in ligand-binding residues (LBRs) of proteins is important sc:url "http://zhanglab.ccmb.med.umich.edu/I-TASSER-MR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -245010,7 +250695,7 @@ Information embedded in ligand-binding residues (LBRs) of proteins is important biotools:primaryContact "Ian Shadforth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , @@ -245024,29 +250709,26 @@ This method paper explains the i-Tree Cool River model algorithms for simulating sc:name "i-Tree Cool River" ; sc:url "https://www.itreetools.org/tools/research-suite/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3334, - edam:topic_3384, - edam:topic_3400, - edam:topic_3421 ; - sc:citation , - "pmcid:PMC6168867" ; - sc:description """Introduction of a telephone results clinic in Neuro-Oncology follow-up. - -PP33. NURSE-LED TELEPHONE CLINICS IMPROVE PATIENT SATISFACTION AND ENHANCE FOLLOW-UP FOR BENIGN. - -Abstract. BACKGROUND: Addenbrooke’s Hospital (CUHFT) is the regional specialist neurosurgical centre for East Anglia, providing neuro-oncology care to a catchm. - -We use cookies to enhance your experience on our website. By clicking 'continue' or by continuing to use our website, you are agreeing to our use of cookies. You can change your cookie settings at any time. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Improving patient satisfaction', 'telephone clinic', 'telephone clinics', 'outpatient neuro-oncology'""" ; - sc:featureList edam:operation_3435 ; - sc:name "i10" ; - sc:url "https://academic.oup.com/neuro-oncology/article-abstract/19/suppl_l/i10/3059769" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_3318, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9091563", + "pubmed:35571057" ; + sc:description "a computational approach called i2APP that can identify APPs using a two-step machine learning framework" ; + sc:featureList edam:operation_3631, + edam:operation_3936, + edam:operation_3937 ; + sc:license "Not licensed" ; + sc:name "i2APP" ; + sc:url "https://github.com/greyspring/i2APP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -245070,7 +250752,7 @@ We use cookies to enhance your experience on our website. By clicking 'continue' biotools:primaryContact "Igor Jurisica" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3382 ; @@ -245086,7 +250768,7 @@ The R package i2d is a novel tool that allows users to transform an image into a sc:url "http://github.com/XiaoyuLiang/i2d" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3170, @@ -245105,7 +250787,7 @@ Iterative and Interactive Dashboards.""" ; sc:url "https://gitlab.gwdg.de/loosolab/container/i2dash.deployment" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -245128,7 +250810,7 @@ Iterative and Interactive Dashboards.""" ; biotools:primaryContact "I2I-SiteEngine Administrator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, @@ -245145,7 +250827,7 @@ Iterative and Interactive Dashboards.""" ; biotools:primaryContact "Jianlin Cheng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -245160,7 +250842,7 @@ i4mC-ROSE is available for public""" ; sc:url "http://kurata14.bio.kyutech.ac.jp/i4mC-ROSE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -245175,8 +250857,31 @@ i4mC-Mouse is available for public.""" ; sc:name "i4mC-Mouse" ; sc:url "http://kurata14.bio.kyutech.ac.jp/i4mC-Mouse/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0654, + edam:topic_0780, + edam:topic_3295, + edam:topic_3474 ; + sc:citation , + "pubmed:35771648" ; + sc:description "A CapsuleNet-based framework for identifying DNA N6-methyladenine sites." ; + sc:featureList edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:name "i6mA-Caps" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://nsclbio.jbnu.ac.kr/tools/i6mA-Caps/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0780, @@ -245192,7 +250897,7 @@ i4mC-Mouse is available for public.""" ; biotools:primaryContact "Liang Kong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0621, @@ -245207,7 +250912,7 @@ Welcome to Our Bioinformatics Lab!.""" ; sc:url "http://nsclbio.jbnu.ac.kr/tools/i6mA-stack/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -245225,7 +250930,7 @@ Welcome to Our Bioinformatics Lab!.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0601, edam:topic_0605, @@ -245246,7 +250951,7 @@ Enter the sequences of query proteins in FASTA format (Example), and select Subm sc:url "http://www.jci-bioinfo.cn/iAcetyP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -245263,7 +250968,7 @@ Functions : Recognizing the Anatomical Therapeutic Chemical (ATC) classes of fir sc:url "https://github.com/zhou256/iATC-NRAKEL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3384, @@ -245278,7 +250983,7 @@ A device-independent software package, named iBEX, is developed to accelerate th sc:url "https://github.com/altaybrusan/ibex/tree/FastDev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3303, @@ -245306,7 +251011,7 @@ Bulk data can be accessed at the iCite database snapshot repository""" ; sc:url "https://icite.od.nih.gov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0208, edam:topic_3168, @@ -245322,7 +251027,7 @@ Solution to iDASH'19 challenge track 1.""" ; sc:url "https://github.com/gersteinlab/iDASH19bc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0157, @@ -245335,7 +251040,7 @@ Solution to iDASH'19 challenge track 1.""" ; sc:url "http://bioinfor.imu.edu.cn/idpf/public/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -245357,7 +251062,7 @@ Solution to iDASH'19 challenge track 1.""" ; biotools:primaryContact "X. Ge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168 ; @@ -245374,7 +251079,7 @@ Solution to iDASH'19 challenge track 1.""" ; sc:url "https://github.com/shengli0201/Datasets" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3169 ; @@ -245394,7 +251099,7 @@ Solution to iDASH'19 challenge track 1.""" ; biotools:primaryContact "Hao Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -245408,7 +251113,7 @@ Solution to iDASH'19 challenge track 1.""" ; sc:url "http://lin-group.cn/server/iDNA6mA-Rice" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3398, edam:topic_3399, @@ -245419,16 +251124,8 @@ Solution to iDASH'19 challenge track 1.""" ; sc:name "iDScore" ; sc:url "http://eadv-idscore.dbm.unisi.it" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3127 ; - sc:citation , - "pubmed:31418026" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'lesion' | a method to integrate modified DNA into the yeast genome | In order to explore the mechanisms employed by living cells to deal with DNA alterations, we have developed a method by which we insert a modified DNA into a specific site of the yeast genome. This is achieved by the site-specific integration of a modified plasmid at a chosen locus of the genome of Saccharomyces cerevisiae, through the use of the Cre lox recombination system. In the present work, we have used our method to insert a single UV lesion into the yeast genome, and studied how the balance between error-free and error-prone lesion bypass is regulated. We show that the inhibition of homologous recombination, either directly (by the inactivation of Rad51 recombinase) or through its control by preventing the polyubiquitination of PCNA (ubc13 mutant), leads to a strong increase in the use of Trans Lesion Synthesis (TLS)" ; - sc:name "iDamage" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31418026" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -245454,7 +251151,7 @@ Integrative analysis of (Epi-)DNA and Gene Expression Data.""" ; sc:url "https://montilab.bu.edu/iEDGE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3304, @@ -245470,7 +251167,7 @@ Localization and Visualization of Intracranial Electrodes.""" ; sc:url "https://github.com/GuangyeLiGit/iEEGview" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -245487,7 +251184,7 @@ BACKGROUND:Enhancers are non-coding DNA fragments which are crucial in gene regu sc:url "https://github.com/ngphubinh/enhancers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3376 ; @@ -245499,7 +251196,7 @@ BACKGROUND:Enhancers are non-coding DNA fragments which are crucial in gene regu sc:url "https://ietd.epistemonikos.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0208, edam:topic_2640, @@ -245520,7 +251217,7 @@ The efficacy of anticancer drugs usually varies from individual to individual, m sc:url "https://igmdr.modellab.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -245543,7 +251240,7 @@ The efficacy of anticancer drugs usually varies from individual to individual, m biotools:primaryContact "Chris Nobles" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0208, @@ -245561,7 +251258,7 @@ This repository consists of set of exeamples to showcase the ways of interacting sc:url "http://ilincs.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -245586,7 +251283,7 @@ This repository consists of set of exeamples to showcase the ways of interacting "Zhen Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0102, @@ -245603,23 +251300,8 @@ Overview — iMARGI Pipeline 1.1 documentation.""" ; sc:name "iMARGI" ; sc:url "https://sysbio.ucsd.edu/imargi_pipeline" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3067, - edam:topic_3423, - edam:topic_3489 ; - sc:citation , - "pmcid:PMC6883244", - "pubmed:31815162" ; - sc:description """The Hamburg integrated medical degree program iMED. - -Der iMED-Studiengang wurde von Lehrenden und Studierenden gemeinsam entwickelt und vernetzt von Anfang an theoretische Grundlagen mit klinischer Praxis. - -Seit 2012 bieten wir mit dem integrierten Modellstudiengang Medizin Hamburg (iMED) ein zukunftsweisendes Konzept für die Ausbildung von Ärztinnen und Ärzten. Lehrende aus allen Fächern haben gemeinsam mit Studierenden in einer mehrjährigen Vorbereitungsphase einen Studiengang entwickelt, der von Anfang an die theoretischen Grundlagenfächer mit der klinischen Praxis vernetzt. Unser Ansatz hat bundesweiten Modellcharakter: zentrale Empfehlungen des Wissenschaftsrates für die Weiterentwicklung des Medizinstudiums in Deutschland finden sich im iMED – Konzept wieder. Theoretisch können Sie auch woanders Medizin studieren – praktisch am besten bei uns""" ; - sc:name "iMED" ; - sc:url "https://www.uke.de/studium-lehre/modellstudiengang-medizin-imed/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3173, edam:topic_3419, @@ -245642,7 +251324,7 @@ Seit 2012 bieten wir mit dem integrierten Modellstudiengang Medizin Hamburg (iME "Kai Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0798, @@ -245661,7 +251343,7 @@ Seit 2012 bieten wir mit dem integrierten Modellstudiengang Medizin Hamburg (iME sc:url "https://github.com/DMnBI/iMGEins" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0625, @@ -245686,7 +251368,7 @@ With a growing repertoire of publicly available transcriptomic data, it is now p sc:url "https://aritronath.github.io/iMIRAGE/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -245712,21 +251394,8 @@ With a growing repertoire of publicly available transcriptomic data, it is now p biotools:primaryContact , "Jesús Murga" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_2640 ; - sc:citation , - "pubmed:31561101" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | Cancer driver gene discovery in transcriptional regulatory networks using influence maximization approach | Cancer driver genes (CDGs) are the genes whose mutations cause tumor growth. Several computational methods have been previously developed for finding CDGs. Most of these methods are sequence-based, that is, they rely on finding key mutations in genomic data to predict CDGs. In the present work, we propose iMaxDriver as a network-based tool for predicting driver genes by application of influence maximization algorithm on human transcriptional regulatory network (TRN). In the first step of this approach, the TRN is pruned and weighted by exploiting tumor-specific gene expression (GE) data. Then, influence maximization approach is used to find the influence of each gene. The top genes with the highest influence rate are selected as the potential driver genes" ; - sc:featureList edam:operation_0277, - edam:operation_1781, - edam:operation_3439 ; - sc:name "iMaxDriver" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31561101" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0780, @@ -245737,7 +251406,7 @@ With a growing repertoire of publicly available transcriptomic data, it is now p sc:url "http://www.inaturalist.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0108, @@ -245755,7 +251424,7 @@ Background:Protein 3D structure is the support of its function. Comparison of 3D sc:url "https://www.dsimb.inserm.fr/dsimb_tools/iPBAVizu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -245771,41 +251440,8 @@ Abstract Motivation Almost all critical functions and processes in cells are sus sc:name "iPPI-deepL" ; sc:url "https://github.com/model-lab/deeplearning.ppi" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0154, - edam:topic_3474, - edam:topic_3557, - edam:topic_3794 ; - sc:citation ; - sc:description """A deep learning framework for improving protein interaction prediction using sequence properties. - -Abstract Motivation Almost all critical functions and processes in cells are sustained by the cellular networks of protein-protein interactions (PPIs), understanding these is therefore crucial in the investigation of biological systems. Despite all past efforts, we still lack high-quality PPI data for constructing the networks, which makes it challenging to study the functions of association of proteins. High-throughput experimental techniques have produced abundant data for systematically studying the cellular networks of a biological system and the development of computational method for PPI identification. - -||| HOMEPAGE MISSING!. - -||| NAME (iPPI) SIMILAR TO (PUB. DIFFERENT) bio.tools/ippi (IPPI). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'deep learning-based', 'deep learning'""" ; - sc:featureList edam:operation_2464, - edam:operation_2492, - edam:operation_3439 ; - sc:name "iPPI_autogenerated" ; - sc:url "https://doi.org/10.1101/843755" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0749, - edam:topic_3474 ; - sc:citation , - "pubmed:31437540" ; - sc:description "Identification of prokaryotic promoters and their strength by integrating heterogeneous features | The promoter is a regulatory DNA region and important for gene transcriptional regulation. It is located near the transcription start site (TSS) upstream of the corresponding gene. In the post-genomics era, the availability of data makes it possible to build computational models for robustly detecting the promoters as these models are expected to be helpful for academia and drug discovery. Until recently, developed models focused only on discriminating the sequences into promoter and non-promoter. However, promoter predictors can be further improved by considering weak and strong promoter classification. In this work, we introduce a hybrid model, named iPSW(PseDNC-DL), for identification of prokaryotic promoters and their strength. It combines a convolutional neural network with a pseudo-di-nucleotide composition (PseDNC)" ; - sc:featureList edam:operation_0438 ; - sc:name "iPSW(PseDNC-DL" ; - sc:url "https://home.jbnu.ac.kr/NSCL/PseDNC-DL.htm" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3794 ; @@ -245822,7 +251458,7 @@ Abstract Motivation Almost all critical functions and processes in cells are sus biotools:primaryContact "Siddiqur Rahman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0749, @@ -245841,23 +251477,8 @@ Since protein-DNA interactions are highly essential to diverse biological events sc:name "iProDNA-CapsNet" ; sc:url "https://github.com/ngphubinh/iProDNA-CapsNet" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0749, - edam:topic_3512 ; - sc:citation ; - sc:description """a Novel Branched CNN Based Predictor for Identifying and Classifying Sigma Promoters. - -Abstract Motivation Promoter is a short region of DNA which is responsible for initiating transcription of specific genes. Development of computational tools for automatic identification of promoters is in high demand. According to the difference of functions, promoters can be of different types. Promoters may have both intra and inter class variation and similarity in terms of consensus sequences. Accurate classification of various types of sigma promoters still remains a challenge. Results We present iPromoter-BnCNN for identification and accurate classification of six types of promoters - σ 24 , σ 28 , σ 32 , σ 38 , σ 54 , σ 70. It is a CNN based classifier which combines local features related to monomer nucleotide sequence, trimer nucleotide sequence, dimer structural properties and trimer structural properties through the use of parallel branching. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0440, - edam:operation_2489 ; - sc:name "iPromoter-BnCNN" ; - sc:url "https://doi.org/10.1101/2019.12.27.884965" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0154, @@ -245875,7 +251496,7 @@ Abstract Motivation Promoter is a short region of DNA which is responsible for i sc:url "http://iprot-sub.erc.monash.edu.au/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -245894,7 +251515,7 @@ Enter your input sequence(s) in FASTA format Insert example data""" ; sc:url "http://codes.bio/iqsp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0621, @@ -245918,7 +251539,7 @@ Benchmark dataset S2 contains 143 non-m2G site containing sequences (same as dat sc:url "http://lin-group.cn/server/iRNA-m2G.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -245936,7 +251557,7 @@ N7-methylguanosine (m7G) is an essential RNA modification and participates in a sc:url "http://lin-group.cn/server/iRNA-m7G/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0099, @@ -245955,7 +251576,7 @@ N7-methylguanosine (m7G) is an essential RNA modification and participates in a biotools:primaryContact "Hao Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654 ; @@ -245971,7 +251592,7 @@ N7-methylguanosine (m7G) is an essential RNA modification and participates in a sc:url "http://bliulab.net/iRO-PsekGCC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3168, @@ -245994,7 +251615,7 @@ N7-methylguanosine (m7G) is an essential RNA modification and participates in a biotools:primaryContact "iRODS Consortium Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -246014,7 +251635,7 @@ N7-methylguanosine (m7G) is an essential RNA modification and participates in a biotools:primaryContact "Mitulkumar V. Patel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -246033,7 +251654,7 @@ Streptococcus mutans is a Gram-positive bacterium that thrives under acidic cond sc:url "http://jensenlab.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0780, @@ -246049,7 +251670,7 @@ Predicted environmental concentrations are calculated for the continental United sc:url "https://www.istreem.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0769, @@ -246078,7 +251699,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/DeepRank/iScore" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170, @@ -246092,7 +251713,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "http://cancerwebpa.jefferson.edu/iSeqQC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0108, @@ -246112,7 +251733,7 @@ A free resource for expression-based gene discovery in the eye""" ; sc:url "https://research.bioinformatics.udel.edu/iSyTE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0157, @@ -246132,7 +251753,7 @@ A free resource for expression-based gene discovery in the eye""" ; biotools:primaryContact "Hao Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -246154,7 +251775,7 @@ A free resource for expression-based gene discovery in the eye""" ; sc:url "https://research.bioinformatics.udel.edu/itextmine/integrate" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -246174,8 +251795,30 @@ A free resource for expression-based gene discovery in the eye""" ; sc:url "https://advaitabio.com/ivariantguide/" ; biotools:primaryContact "ADVAITA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0634, + edam:topic_3170, + edam:topic_3305, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC9235372", + "pubmed:35758882" ; + sc:description "A transcriptome atlas and interactive analysis platform for autoimmune disease." ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_3463 ; + sc:isAccessibleForFree true ; + sc:name "IAAA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://galaxy.ustc.edu.cn/IAAA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0202, @@ -246194,7 +251837,7 @@ A free resource for expression-based gene discovery in the eye""" ; biotools:primaryContact "Hao Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -246214,8 +251857,28 @@ This repository contains the source code and links to the data and pretrained em sc:name "iACP-DRLF" ; sc:url "http://public.aibiochem.net/iACP-DRLF/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0121, + edam:topic_0154, + edam:topic_3474 ; + sc:citation , + "pubmed:35772910" ; + sc:description "Computational prediction of anticoronavirus peptides (ACVPs) using their sequences." ; + sc:featureList edam:operation_0224, + edam:operation_3092, + edam:operation_3631 ; + sc:isAccessibleForFree true ; + sc:name "iACVP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://kurata35.bio.kyutech.ac.jp/iACVP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3053, @@ -246233,7 +251896,7 @@ This repository contains the source code and links to the data and pretrained em sc:url "https://bansal-lab.github.io/software/iadmix.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -246252,7 +251915,7 @@ This repository contains the source code and links to the data and pretrained em sc:url "http://www.jci-bioinfo.cn/iAMP-2L" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation ; @@ -246268,7 +251931,7 @@ This repository contains the source code and links to the data and pretrained em sc:url "https://github.com/ElsevierSoftwareX/SOFTX-D-15-00049" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3306, @@ -246285,7 +251948,7 @@ iAMY-SCM: Improved Prediction and Analysis of Amyloid Proteins Using Scoring Car sc:url "http://camt.pythonanywhere.com/iAMY-SCM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2533, @@ -246299,8 +251962,45 @@ iAMY-SCM: Improved Prediction and Analysis of Amyloid Proteins Using Scoring Car sc:url "http://www.brown.edu/Research/Istrail_Lab/iarg.php" ; biotools:primaryContact "Sorin Istrail" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_3444 ; + sc:citation , + "pubmed:34494276" ; + sc:description "Joint intraclassly adaptive GAN and segmentation network for unsupervised cross-domain in neonatal brain MRI segmentation." ; + sc:featureList edam:operation_3435, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "IAS-NET" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/lb-whu/RAS-NET" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_3318, + edam:topic_3360, + edam:topic_3379, + edam:topic_3399, + edam:topic_3452 ; + sc:citation , + "pmcid:PMC8680857" ; + sc:description "The Integrated Aging Studies Databank and Repository (IASDR) IASDR serves as a resource for the scientific community to foster new scientific questions and analyses" ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "IASDR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.peppercenter.org/public/dspIASDR.cfm" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169, @@ -246319,7 +252019,7 @@ iAMY-SCM: Improved Prediction and Analysis of Amyloid Proteins Using Scoring Car biotools:primaryContact "Yingying Wei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -246335,7 +252035,7 @@ iAMY-SCM: Improved Prediction and Analysis of Amyloid Proteins Using Scoring Car biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; @@ -246353,22 +252053,22 @@ Person re-identification (reID) by CNNs based networks has achieved favorable pe a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -246387,8 +252087,14 @@ Person re-identification (reID) by CNNs based networks has achieved favorable pe sc:url "http://bioconductor.org/packages/release/bioc/html/iBBiG.html" ; biotools:primaryContact "Aedin Culhane" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "This open source tool benchmarks IBD detection tools with multiple measurements." ; + sc:name "IBD Benchmark Tool" ; + sc:url "https://github.com/ZhiGroup/IBD_benchmark" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0625, @@ -246407,7 +252113,7 @@ Person re-identification (reID) by CNNs based networks has achieved favorable pe biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0625, @@ -246424,7 +252130,7 @@ Person re-identification (reID) by CNNs based networks has achieved favorable pe sc:url "http://dna.leeds.ac.uk/ibdfinder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -246441,7 +252147,7 @@ IBDkin is a software for IBD-based kinship estimation. IBDkin scales to hundreds sc:url "https://github.com/YingZhou001/IBDkin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2885, @@ -246457,7 +252163,7 @@ IBDkin is a software for IBD-based kinship estimation. IBDkin scales to hundreds sc:url "http://bioinfo.cs.technion.ac.il/IBDmap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation ; @@ -246471,7 +252177,7 @@ IBDkin is a software for IBD-based kinship estimation. IBDkin scales to hundreds sc:url "http://faculty.washington.edu/browning/ibdseq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -246489,8 +252195,29 @@ IBDkin is a software for IBD-based kinship estimation. IBDkin scales to hundreds sc:url "http://raphael.leblois.free.fr/#softwares" ; biotools:primaryContact "Raphael Leblois" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2830, + edam:topic_3168, + edam:topic_3382, + edam:topic_3518 ; + sc:citation , + "pubmed:35022622" ; + sc:description "Aligning images acquired with the IBEX microscopy imaging technique" ; + sc:featureList edam:operation_0480, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "IBEX" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/niaid/sitk-ibex" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -246509,7 +252236,7 @@ IBDkin is a software for IBD-based kinship estimation. IBDkin scales to hundreds biotools:primaryContact "Kircicegi Korkmaz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -246526,7 +252253,7 @@ IBDkin is a software for IBD-based kinship estimation. IBDkin scales to hundreds sc:url "http://lei.big.ac.cn/ibig" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -246546,7 +252273,7 @@ Welcome to SVM Biodegradability predictor. This is a tool for predicting biodegr sc:url "https://sysbiol.cnb.csic.es/BiodegPred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -246565,7 +252292,7 @@ iBioProVis has its own in house bioactivity dataset curated from ChEMBL (v25) ha sc:url "https://ibpv.kansil.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation "pubmed:19682367" ; @@ -246578,8 +252305,34 @@ iBioProVis has its own in house bioactivity dataset curated from ChEMBL (v25) ha sc:url "http://bioinf.eva.mpg.de/Ibis/" ; biotools:primaryContact "Martin Kircher" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0130, + edam:topic_0623, + edam:topic_3293, + edam:topic_3318 ; + sc:citation , + "pmcid:PMC9252744", + "pubmed:35670671" ; + sc:description "A web server for a phylogeny-driven coevolution analysis of protein families." ; + sc:featureList edam:operation_0323, + edam:operation_0492, + edam:operation_0556 ; + sc:isAccessibleForFree true ; + sc:name "iBIS2Analyzer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://ibis2analyzer.lcqb.upmc.fr/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -246606,10 +252359,10 @@ iBioProVis has its own in house bioactivity dataset curated from ChEMBL (v25) ha a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0121, @@ -246632,7 +252385,7 @@ iBioProVis has its own in house bioactivity dataset curated from ChEMBL (v25) ha sc:url "http://camt.pythonanywhere.com/iBitter-Fuse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -246650,7 +252403,7 @@ This is the website for predicting Bitter peptides from the publication called . sc:url "http://camt.pythonanywhere.com/iBitter-SCM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -246668,7 +252421,7 @@ This is the website for predicting Bitter peptides from the publication called . sc:url "https://github.com/vtsynergy/iBLAST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0154, edam:topic_0621, @@ -246691,7 +252444,7 @@ Bioluminescent proteins are a class of proteins that widely distributed in many sc:url "http://lin-group.cn/server/iBLP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0623, @@ -246714,7 +252467,7 @@ Bioluminescent proteins are a class of proteins that widely distributed in many sc:url "http://cbcsrv.watson.ibm.com/Tspd.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_2269, @@ -246732,7 +252485,7 @@ The benchmark dose (BMD) methodology is used to derive a hazard characterization sc:url "https://shiny-efsa.openanalytics.eu/app/bmd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -246754,7 +252507,7 @@ The benchmark dose (BMD) methodology is used to derive a hazard characterization biotools:primaryContact "Greg Imholte" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -246767,7 +252520,7 @@ The benchmark dose (BMD) methodology is used to derive a hazard characterization sc:url "http://www.eng.buffalo.edu/~neel/ibrena/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -246786,7 +252539,7 @@ The benchmark dose (BMD) methodology is used to derive a hazard characterization "Yu Xue" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -246807,7 +252560,7 @@ The benchmark dose (BMD) methodology is used to derive a hazard characterization biotools:primaryContact "Paolo Romano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0821, edam:topic_1317 ; @@ -246819,7 +252572,7 @@ The benchmark dose (BMD) methodology is used to derive a hazard characterization biotools:primaryContact "BotDB team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0780, @@ -246838,8 +252591,21 @@ The benchmark dose (BMD) methodology is used to derive a hazard characterization sc:url "https://github.com/vtphan/HeteroplasmyWorkflow" ; biotools:primaryContact "Vinhthuy Phan" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "Identification & Classification of Aminoacyl tRNA Synthetases" ; + sc:featureList edam:operation_2945 ; + sc:name "icaars" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/icaars/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640 ; @@ -246856,7 +252622,7 @@ The benchmark dose (BMD) methodology is used to derive a hazard characterization biotools:primaryContact "Bill Wheeler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -246879,7 +252645,7 @@ iCarPS is a server for the prediction of carbonylation sites based on omputation sc:url "http://lin-group.cn/server/iCarPS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0092 ; @@ -246895,8 +252661,34 @@ iCarPS is a server for the prediction of carbonylation sites based on omputation sc:softwareHelp ; sc:url "http://quast.sourceforge.net/icarus.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0621, + edam:topic_2229, + edam:topic_2830, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC9252722", + "pubmed:35536286" ; + sc:description "ICARUS (Interactive single cell RNA-seq analysis with R-shiny using Seurat) a interactive web server." ; + sc:featureList edam:operation_3223, + edam:operation_3680, + edam:operation_3891, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ICARUS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "2.1" ; + sc:url "https://launch.icarus-scrnaseq.cloud.edu.au/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Library" ; @@ -246915,7 +252707,7 @@ High throughput sequencing of immune cell receptor sequences presents a unique o sc:url "https://github.com/BioHPC/iCAT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -246930,8 +252722,30 @@ High throughput sequencing of immune cell receptor sequences presents a unique o sc:softwareHelp ; sc:url "http://www.jci-bioinfo.cn/iCataly-PseAAC" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_0625, + edam:topic_0634, + edam:topic_2640, + edam:topic_3293 ; + sc:citation , + "pmcid:PMC8725190", + "pubmed:34907423" ; + sc:description "An integrative database of cancer-associated viruses." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3208 ; + sc:isAccessibleForFree true ; + sc:name "iCAV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://icav.omicsbio.info/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -246949,7 +252763,7 @@ High throughput sequencing of immune cell receptor sequences presents a unique o biotools:primaryContact "Zeynep H Gümüş" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3172, @@ -246974,7 +252788,7 @@ ICBM-Webmaster (Stand: 21.08.2020).""" ; sc:url "http://www.icbm.de/icbm-ocean" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -246995,7 +252809,7 @@ ICBM-Webmaster (Stand: 21.08.2020).""" ; "Patrick Knupfer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -247014,7 +252828,7 @@ ICBM-Webmaster (Stand: 21.08.2020).""" ; sc:url "http://indra.mullins.microbiol.washington.edu/ICC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -247039,7 +252853,7 @@ ICBM-Webmaster (Stand: 21.08.2020).""" ; sc:url "http://genoweb.toulouse.inra.fr/iccare/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -247062,8 +252876,27 @@ ICBM-Webmaster (Stand: 21.08.2020).""" ; sc:softwareHelp ; sc:url "http://www.icd10data.com" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0605, + edam:topic_0634, + edam:topic_3305 ; + sc:citation , + "pmcid:PMC8577172", + "pubmed:34753471" ; + sc:description "An international classification of diseases for the twenty-first century." ; + sc:featureList edam:operation_0310 ; + sc:isAccessibleForFree true ; + sc:name "ICD-11" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://icd.who.int" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3063, @@ -247082,7 +252915,7 @@ ICBM-Webmaster (Stand: 21.08.2020).""" ; biotools:primaryContact "Tom Pollard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -247099,7 +252932,7 @@ ICBM-Webmaster (Stand: 21.08.2020).""" ; sc:url "http://www.jci-bioinfo.cn/iCDI-PseFpt/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3301, @@ -247116,7 +252949,7 @@ ICBM-Webmaster (Stand: 21.08.2020).""" ; biotools:primaryContact "Hector Plahar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -247138,7 +252971,7 @@ ICBM-Webmaster (Stand: 21.08.2020).""" ; biotools:primaryContact "iCE Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2828, @@ -247159,7 +252992,7 @@ IceBear is a research data management tool for structural biology. It currently sc:url "https://icebear.fi/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -247180,7 +253013,7 @@ IceBear is a research data management tool for structural biology. It currently biotools:primaryContact "Hong-Yu OU" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821 ; @@ -247196,7 +253029,7 @@ An Interactive Continuous Enzyme Kinetics Analysis Tool (ICEKAT) was developed f sc:url "https://icekat.herokuapp.com/icekat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2229, @@ -247216,7 +253049,7 @@ To install it, the easiest way is to use the R package devtools and its function sc:url "https://github.com/soumelis-lab/ICELLNET" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -247246,14 +253079,12 @@ A toolkit that allows scientists to work with data from single cell sequencing t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ] ; + sc:additionalType "http://edamontology.org/data_1245" ; + sc:name "Sequence cluster (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1711" ; - sc:name "Sequence alignment image" ; - sc:sameAs "http://edamontology.org/data_1711" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1711" ; + sc:name "Sequence alignment image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -247269,7 +253100,7 @@ A toolkit that allows scientists to work with data from single cell sequencing t sc:url "http://compomics.github.io/projects/icelogo.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -247288,7 +253119,7 @@ A toolkit that allows scientists to work with data from single cell sequencing t biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -247309,7 +253140,7 @@ Label-free proteomics enables the unbiased quantification of thousands of protei sc:url "https://github.com/mathiaskalxdorf/IceR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0659, @@ -247331,7 +253162,7 @@ Label-free proteomics enables the unbiased quantification of thousands of protei biotools:primaryContact "ICGC Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -247352,7 +253183,7 @@ Label-free proteomics enables the unbiased quantification of thousands of protei sc:url "http://www.icgeb.org/protein/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0601, edam:topic_0625, @@ -247374,7 +253205,7 @@ Function: This script is to simultaneously estimate the epigenetic conservation sc:url "https://github.com/FionaTJ/ICGEC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -247395,7 +253226,7 @@ Function: This script is to simultaneously estimate the epigenetic conservation biotools:primaryContact "Weiliang Qiu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0622, @@ -247415,7 +253246,7 @@ Function: This script is to simultaneously estimate the epigenetic conservation biotools:primaryContact "Dr. Didier Rognan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, edam:topic_3172, @@ -247435,7 +253266,7 @@ chespa, version 1.0.0 http://github.com/pnnl/chespa (accessed MMM YYYY).""" ; sc:url "http://github.com/pnnl/chespa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, @@ -247458,7 +253289,7 @@ chespa, version 1.0.0 http://github.com/pnnl/chespa (accessed MMM YYYY).""" ; sc:url "https://gitlab.com/bfr_bioinformatics/chewieSnake" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -247478,10 +253309,10 @@ chespa, version 1.0.0 http://github.com/pnnl/chespa (accessed MMM YYYY).""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Experimental measurement" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0621, @@ -247504,7 +253335,7 @@ chespa, version 1.0.0 http://github.com/pnnl/chespa (accessed MMM YYYY).""" ; sc:url "https://chromo.cloud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3334, @@ -247522,7 +253353,7 @@ chespa, version 1.0.0 http://github.com/pnnl/chespa (accessed MMM YYYY).""" ; biotools:primaryContact "John Muschelli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, @@ -247538,7 +253369,7 @@ chespa, version 1.0.0 http://github.com/pnnl/chespa (accessed MMM YYYY).""" ; sc:url "http://bliulab.net/iCircDA-LTR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -247558,38 +253389,35 @@ The 37 training sets of circular RNA (circRNA) and 31 testing sets of linear RNA a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0860" ; - sc:name "Sequence signature data" ; - sc:sameAs "http://edamontology.org/data_0860" ], + sc:additionalType "http://edamontology.org/data_2193" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database entry metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2193" ; - sc:name "Database entry metadata" ; - sc:sameAs "http://edamontology.org/data_2193" ], + sc:additionalType "http://edamontology.org/data_2193" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database entry metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2193" ; - sc:name "Database entry metadata" ; - sc:sameAs "http://edamontology.org/data_2193" ], + sc:additionalType "http://edamontology.org/data_2316" ; + sc:name "Cell line name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2316" ; - sc:name "Cell line name" ; - sc:sameAs "http://edamontology.org/data_2316" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ], + sc:additionalType "http://edamontology.org/data_2193" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database entry metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0860" ; + sc:name "Sequence signature data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2193" ; - sc:name "Database entry metadata" ; - sc:sameAs "http://edamontology.org/data_2193" ], + sc:additionalType "http://edamontology.org/data_2193" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database entry metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2193" ; - sc:name "Database entry metadata" ; - sc:sameAs "http://edamontology.org/data_2193" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3671" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3340 ; sc:author "Paolo Romano" ; @@ -247606,7 +253434,7 @@ The 37 training sets of circular RNA (circRNA) and 31 testing sets of linear RNA "Paolo Romano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -247629,7 +253457,7 @@ ICLRBBN, a tool for accurate prediction of potential lncRNA-disease associations sc:url "http://leelab2997.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -247648,7 +253476,7 @@ ICLRBBN, a tool for accurate prediction of potential lncRNA-disease associations "Ronglai Shen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0602, @@ -247667,7 +253495,7 @@ ICLRBBN, a tool for accurate prediction of potential lncRNA-disease associations biotools:primaryContact "Thomas C. Bishop" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -247685,8 +253513,34 @@ This is an implementation of ICN detection for gene co-expression network (GCN) sc:name "ICN" ; sc:url "https://figshare.com/articles/software/ICN-package/13229093" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0130, + edam:topic_0166, + edam:topic_3382, + edam:topic_3542 ; + sc:citation , + "pmcid:PMC8892267", + "pubmed:35252351" ; + sc:description "From Web-Based 3D Viewer to Structural Analysis Tool in Batch Mode." ; + sc:featureList edam:operation_0295, + edam:operation_0302, + edam:operation_0320, + edam:operation_0570, + edam:operation_2488 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "iCn3D" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://www.ncbi.nlm.nih.gov/Structure/icn3d/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3673, @@ -247706,7 +253560,7 @@ This is an implementation of ICN detection for gene co-expression network (GCN) biotools:primaryContact "Zilu Zhou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0605 ; @@ -247727,7 +253581,7 @@ This is an implementation of ICN detection for gene co-expression network (GCN) biotools:primaryContact "Charlotte Soneson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -247744,8 +253598,31 @@ This is an implementation of ICN detection for gene co-expression network (GCN) sc:url "https://bazzinilab.shinyapps.io/icodon/" ; biotools:primaryContact "Ariel Alejandro Bazzini" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Script" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_0769, + edam:topic_2640, + edam:topic_3170, + edam:topic_3676 ; + sc:citation ; + sc:description "iCOMIC is an open source genomic data analysis tool characterized by a user friendly GUI. It integrates many independent core workflows for Whole Genome/Exome Sequencing and RNA-Seq data analysis along with Machine Learning tools, cTaG and NBDriver for cancer related data analysis." ; + sc:featureList edam:operation_3223, + edam:operation_3227, + edam:operation_3800 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "iCOMIC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/RamanLab/iCOMIC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -247762,7 +253639,7 @@ This is an implementation of ICN detection for gene co-expression network (GCN) sc:url "http://bioinformatics.tecnoparco.org/SNPchimp/index.php/links" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3572 ; sc:citation "pubmed:20562415" ; @@ -247773,11 +253650,34 @@ This is an implementation of ICN detection for gene co-expression network (GCN) sc:operatingSystem "Linux" ; sc:softwareHelp , ; + sc:softwareVersion "1", + "2" ; sc:url "http://icorn.sourceforge.net/" ; biotools:primaryContact "T. D. Otto" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0130, + edam:topic_0176, + edam:topic_3382 ; + sc:citation , + "pubmed:34652149" ; + sc:description "A Python package to calculate, visualize and analyze correlation maps of proteins." ; + sc:featureList edam:operation_0244, + edam:operation_0337, + edam:operation_2476 ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "icorrelationplus" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/tekpinar/correlationplus" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3174 ; @@ -247795,7 +253695,7 @@ This is an implementation of ICN detection for gene co-expression network (GCN) biotools:primaryContact "Magdalena Calusinska" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -247814,22 +253714,22 @@ This is an implementation of ICN detection for gene co-expression network (GCN) a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3713" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Peptide mass fingerprint" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -247852,22 +253752,22 @@ This is an implementation of ICN detection for gene co-expression network (GCN) a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3713" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -247890,7 +253790,7 @@ This is an implementation of ICN detection for gene co-expression network (GCN) sc:url "https://www.biochem.mpg.de/en/rg/lottspeich/technologies/ICPLQuant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0749, @@ -247908,7 +253808,7 @@ This is an implementation of ICN detection for gene co-expression network (GCN) sc:url "http://210.212.215.199/icr/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0089, @@ -247928,8 +253828,33 @@ Semantic interoperability of clinical data requires the use of a common vocabula sc:name "iCRF Generator" ; sc:url "https://github.com/aderidder/iCRFGenerator/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0625, + edam:topic_0769, + edam:topic_3168 ; + sc:citation , + "pubmed:34905767" ; + sc:description "An integrative analysis of CRISPR screen by reducing false positive hits." ; + sc:featureList edam:operation_2436, + edam:operation_3435, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:name "iCRISEE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.icrisee.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3304, @@ -247951,7 +253876,7 @@ The proposed algorithm can also be used to obtain subject-level modules from mul sc:url "https://github.com/SCSE-Biomedical-Computing-Group/ICSC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2830, @@ -247975,7 +253900,7 @@ All SKIP ( 5615 ) RIKEN BRC ( 4111 ) eagle-i ( 3548 ) hPSCreg ( 3367 ).""" ; sc:url "http://icscb.stemcellinformatics.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -247992,7 +253917,7 @@ All SKIP ( 5615 ) RIKEN BRC ( 4111 ) eagle-i ( 3548 ) hPSCreg ( 3367 ).""" ; biotools:primaryContact "Zhiping Weng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -248015,7 +253940,7 @@ All SKIP ( 5615 ) RIKEN BRC ( 4111 ) eagle-i ( 3548 ) hPSCreg ( 3367 ).""" ; biotools:primaryContact "ICSNPathway Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -248034,7 +253959,7 @@ Conotoxins are small peptide toxins which are rich in disulfide and have the uni sc:url "http://bioinfor.imu.edu.cn/ictcraac" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602 ; @@ -248053,7 +253978,7 @@ Conotoxins are small peptide toxins which are rich in disulfide and have the uni sc:url "http://apps.cytoscape.org/apps/ictnet2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0781 ; @@ -248070,7 +253995,7 @@ Conotoxins are small peptide toxins which are rich in disulfide and have the uni sc:url "http://www.ictvonline.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0602, @@ -248084,7 +254009,7 @@ Conotoxins are small peptide toxins which are rich in disulfide and have the uni sc:url "https://icvmapp3r.readthedocs.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3382 ; @@ -248098,8 +254023,30 @@ Conotoxins are small peptide toxins which are rich in disulfide and have the uni sc:softwareVersion "1.6.1.1" ; sc:url "http://www.icy.bioimageanalysis.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3172, + edam:topic_3336, + edam:topic_3375, + edam:topic_3407 ; + sc:citation , + "pubmed:34672553" ; + sc:description "Identifying Human Cytochrome P450 Inhibitors Using Multitask Learning and Molecular Fingerprint-Embedded Encoding." ; + sc:featureList edam:operation_0440, + edam:operation_2238, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "iCYP-MFE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://103.130.219.193:5002" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -248118,22 +254065,22 @@ Conotoxins are small peptide toxins which are rich in disulfide and have the uni a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3172 ; sc:description "Aligns metabolite data from multiple files to single spreadsheet." ; @@ -248146,7 +254093,7 @@ Conotoxins are small peptide toxins which are rich in disulfide and have the uni sc:url "http://www.ce4csb.org/applications/idalign/idalign.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0121, @@ -248168,7 +254115,7 @@ Copyright© 2017-2020,IPR Osaka Univ.""" ; sc:url "http://coco.protein.osaka-u.ac.jp/id-plus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0605, edam:topic_0610, @@ -248187,14 +254134,12 @@ Abstract High-throughput sequencing 16S rRNA gene surveys have enabled new insig a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2610" ; - sc:name "Ensembl ID" ; - sc:sameAs "http://edamontology.org/data_2610" ] ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:name "Ensembl ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2610" ; - sc:name "Ensembl ID" ; - sc:sameAs "http://edamontology.org/data_2610" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:name "Ensembl ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3345 ; sc:citation ; @@ -248213,7 +254158,7 @@ Abstract High-throughput sequencing 16S rRNA gene surveys have enabled new insig biotools:primaryContact "Andrew Yates" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -248235,8 +254180,27 @@ Abstract High-throughput sequencing 16S rRNA gene surveys have enabled new insig "Windows" ; sc:url "http://mer.hc.mmh.org.tw/iDACP/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3174, + edam:topic_3315, + edam:topic_3360, + edam:topic_3941 ; + sc:citation ; + sc:description "IDAM provides a framework for the identification of microbial disease-associated biomarkers based on metagenomic and metatranscriptomic data. The raw sequencing data (matched metagenomic and metatranscriptomic data) or the expression matrix is required. The output is gene modules consisting of gene and sample subsets." ; + sc:featureList edam:operation_0323, + edam:operation_2495, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "IDAM" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/OSU-BMBL/IDAM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -248252,18 +254216,16 @@ Abstract High-throughput sequencing 16S rRNA gene surveys have enabled new insig a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1097" ; - sc:name "Sequence accession (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1097" ], + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; + sc:additionalType "http://edamontology.org/data_1097" ; + sc:name "Sequence accession (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634 ; sc:citation , @@ -248278,7 +254240,7 @@ Abstract High-throughput sequencing 16S rRNA gene surveys have enabled new insig sc:url "http://structure.bmc.lu.se/idbase/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0085, edam:topic_1317, @@ -248297,7 +254259,7 @@ Abstract High-throughput sequencing 16S rRNA gene surveys have enabled new insig sc:url "http://idbps.tau.ac.il/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0078, @@ -248316,7 +254278,7 @@ DNA-binding proteins play essential roles in many molecular functions and gene r sc:url "https://github.com/Zll-codeside/iDBP-DEP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0654, @@ -248332,20 +254294,40 @@ DNA-binding proteins play essential roles in many molecular functions and gene r sc:softwareHelp ; sc:url "http://idbps.tau.ac.il/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0219, + edam:topic_3299 ; + sc:citation , + "pmcid:PMC8710592", + "pubmed:34966754" ; + sc:description "An Open-Access Repository for Monitoring SARS-CoV-2 Variations and Evolution." ; + sc:featureList edam:operation_3208, + edam:operation_3225, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:name "IDbSV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://IDbSV.medbiotech-lab.ma" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1857" ; - sc:name "Atomic occupancy" ; - sc:sameAs "http://edamontology.org/data_1857" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2571" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_1857" ; + sc:encodingFormat "http://edamontology.org/format_2035" ; + sc:name "Atomic occupancy" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -248362,14 +254344,14 @@ DNA-binding proteins play essential roles in many molecular functions and gene r a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3747" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -248391,7 +254373,7 @@ DNA-binding proteins play essential roles in many molecular functions and gene r biotools:primaryContact "SourceForge team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3293, @@ -248406,7 +254388,7 @@ idCOV is a phylogenetic pipeline for quickly identifying the clades of SARS-CoV- sc:url "https://github.com/xz-stjude/idcov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -248425,7 +254407,7 @@ Infertility Disease DataBase (IDDB) provides a versatile resource for genes, exp sc:url "http://mdl.shsmu.edu.cn/IDDB/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3047, edam:topic_3314, @@ -248442,8 +254424,30 @@ Infertility Disease DataBase (IDDB) provides a versatile resource for genes, exp sc:url "https://3dmi.upatras.gr/IDDRRA" ; biotools:primaryContact "George C. Kagadis" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_3474, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC8557387", + "pubmed:34729472" ; + sc:description "A decision tree-based method for the refinement of variants in FFPE DNA sequencing data." ; + sc:featureList edam:operation_3192, + edam:operation_3227, + edam:operation_3675, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "Ideafix" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/mmaitenat/ideafix" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0601, @@ -248465,7 +254469,7 @@ Infertility Disease DataBase (IDDB) provides a versatile resource for genes, exp biotools:primaryContact "Satoshi Fukuchi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -248487,7 +254491,7 @@ Infertility Disease DataBase (IDDB) provides a versatile resource for genes, exp biotools:primaryContact "Federico Marini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -248508,8 +254512,31 @@ Infertility Disease DataBase (IDDB) provides a versatile resource for genes, exp sc:url "http://bioconductor.org/packages/release/bioc/html/ideal.html" ; biotools:primaryContact "Federico Marini" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Workflow" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0622, + edam:topic_3170, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC8784862", + "pubmed:35073995" ; + sc:description "IDEAS (Individual level Differential Expression Analysis for Single cells) an R package for differential expression analysis using single cell RNA-seq data of multiple individuals." ; + sc:featureList edam:operation_2436, + edam:operation_3223, + edam:operation_3680 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "IDEAS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Sun-lab/ideas" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3474, @@ -248529,7 +254556,7 @@ Infertility Disease DataBase (IDDB) provides a versatile resource for genes, exp sc:url "https://github.com/hehew321/iDeepC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0659, @@ -248550,7 +254577,7 @@ RNA-binding protein (RBP) is a class of proteins that bind to and accompany RNAs sc:url "http://www.csbio.sjtu.edu.cn/bioinf/iDeepMV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0140, @@ -248570,8 +254597,33 @@ RNA-binding protein (RBP) is a class of proteins that bind to and accompany RNAs "Windows" ; sc:url "https://github.com/houzl3416/iDeepSubMito" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0659, + edam:topic_3071 ; + sc:citation , + "pubmed:35679537" ; + sc:description "Aa ranking framework for miRNA-disease association identification." ; + sc:featureList edam:operation_0463, + edam:operation_2421, + edam:operation_2422, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:name "idenMD-NRF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://bliulab.net/idenMD-NRF/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3361, @@ -248591,7 +254643,7 @@ You can install the IdentiFlow package with pip:.""" ; sc:url "http://github.com/GrossTor/IdentiFlow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3361, @@ -248612,10 +254664,10 @@ The package is easy to use and we demonstrate its most relevant features in the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -248639,7 +254691,7 @@ The package is easy to use and we demonstrate its most relevant features in the sc:url "http://identpmp.aielab.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0097, @@ -248658,7 +254710,7 @@ The package is easy to use and we demonstrate its most relevant features in the biotools:primaryContact "Shraddha Pai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0625, @@ -248679,7 +254731,7 @@ The package is easy to use and we demonstrate its most relevant features in the biotools:primaryContact "Sergei L. Kosakovsky Pond" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -248695,7 +254747,7 @@ Enter the query DNA sequences in FASTA format (Example):.""" ; sc:url "http://www.xdu-duan.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0749, @@ -248713,7 +254765,7 @@ Enter the query DNA sequences in FASTA format (Example):.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0122, @@ -248732,7 +254784,7 @@ Enter the query DNA sequences in FASTA format (Example):.""" ; biotools:primaryContact "Karl J. Dykema" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -248752,34 +254804,41 @@ Enter the query DNA sequences in FASTA format (Example):.""" ; sc:url "http://rtools.cbrc.jp/idiographica/" ; biotools:primaryContact "Kin T." . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068, - edam:topic_3324, - edam:topic_3375 ; - sc:citation , - "pmcid:PMC6810476" ; - sc:description """2564. What Predicts Journal Publication Tier and Audience Engagement in the Infectious Diseases Literature? A Review of 146 Publications. - -IDJournal.Club - The ID Literature In Review. - -As always, feel free to share your thoughts by commenting on any of these blog posts, or reach out to me directly by email at contact.idjournalclub@gmail.com or via Twitter at @Cortes_Penfield . - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Altmetric', 'SJR', 'SJR Altmetric', 'engagement'""" ; - sc:featureList edam:operation_0306, - edam:operation_3891 ; - sc:name "idjournal" ; - sc:url "http://www.idjournal.club" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0749, + edam:topic_2259, + edam:topic_3315, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC8764688", + "pubmed:34992138" ; + sc:description "iDIRECT (Inference of Direct and Indirect Relationships with Effective Copula-based Transitivity), for quantitatively inferring direct dependencies in association networks" ; + sc:featureList edam:operation_1781, + edam:operation_2437, + edam:operation_3629, + edam:operation_3925, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "iDIRECT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/nxiao6gt/iDIRECT" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091, @@ -248800,14 +254859,14 @@ As always, feel free to share your thoughts by commenting on any of these blog p a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091, @@ -248828,7 +254887,7 @@ As always, feel free to share your thoughts by commenting on any of these blog p "Roger Day" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3474, @@ -248847,7 +254906,7 @@ As always, feel free to share your thoughts by commenting on any of these blog p sc:url "https://github.com/mrahma23/IDMIL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -248866,8 +254925,32 @@ The broad spectrum of intellectual disability (ID) patients' clinical manifestat sc:name "IDminer" ; sc:url "http://218.4.234.74:3100/IDminer/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0654, + edam:topic_3295, + edam:topic_3474 ; + sc:citation , + "pubmed:34601568" ; + sc:description "A generic webserver for predicting DNA methylation sites" ; + sc:featureList edam:operation_0308, + edam:operation_0417, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "iDNA-ABT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://server.wei-group.net/iDNA_ABT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3053, @@ -248885,7 +254968,7 @@ The broad spectrum of intellectual disability (ID) patients' clinical manifestat biotools:primaryContact "Xuan Xiao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2533, edam:topic_3295, @@ -248903,7 +254986,7 @@ The broad spectrum of intellectual disability (ID) patients' clinical manifestat "Wei Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0780, @@ -248918,7 +255001,7 @@ The broad spectrum of intellectual disability (ID) patients' clinical manifestat "Liang Kong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0154, @@ -248940,7 +255023,7 @@ The broad spectrum of intellectual disability (ID) patients' clinical manifestat sc:url "https://anaconda.org/GAMB-GO/idops" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0218, @@ -248962,7 +255045,7 @@ The datasets used in this study can be downloaded from below links:.""" ; sc:url "http://bliulab.net/IDP-Seq2Seq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -248982,7 +255065,7 @@ To facilitate this process, several tools have been proposed for the computation sc:url "http://mer.hc.mmh.org.tw/iDPGK/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_3538 ; sc:citation , @@ -249001,7 +255084,7 @@ To facilitate this process, several tools have been proposed for the computation biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -249015,8 +255098,55 @@ To facilitate this process, several tools have been proposed for the computation sc:name "iDPPIV-SCM" ; sc:url "http://camt.pythonanywhere.com/iDPPIV-SCM" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0123, + edam:topic_0154, + edam:topic_0736, + edam:topic_3538 ; + sc:citation , + "pmcid:PMC9015136", + "pubmed:35436286" ; + sc:description "A package for profiling and analyzing Intrinsically Disordered Proteins in R." ; + sc:featureList edam:operation_0470, + edam:operation_0474, + edam:operation_2574, + edam:operation_3904 ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "idpr" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://bioconductor.org/packages/idpr/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3300, + edam:topic_3407, + edam:topic_3534, + edam:topic_3538 ; + sc:citation , + "pmcid:PMC9327236", + "pubmed:35883018" ; + sc:description "A repository of binding sites for intrinsically disordered proteins complexes with known 3D structures." ; + sc:featureList edam:operation_0470, + edam:operation_2464, + edam:operation_3904 ; + sc:isAccessibleForFree true ; + sc:name "IDPsBind" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.s-bioinformatics.cn/idpsbind/home/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "The IDR (Irreproducible Discovery Rate) framework is a unified approach to measure the reproducibility of findings identified from replicate experiments and provide highly stable thresholds based on reproducibility." ; sc:featureList edam:operation_2238, edam:operation_3463 ; @@ -249024,7 +255154,7 @@ To facilitate this process, several tools have been proposed for the computation sc:url "https://github.com/nboley/idr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0621, @@ -249040,8 +255170,31 @@ Chromatin interaction data from protocols such as ChIA-PET, HiChIP and Hi-C prov sc:name "IDR2D" ; sc:url "https://idr2d.mit.edu" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0128, + edam:topic_3474 ; + sc:citation , + "pubmed:34932484" ; + sc:description "Identifying DNA- and RNA- binding proteins based on hierarchical ensemble learning." ; + sc:featureList edam:operation_0420, + edam:operation_3900, + edam:operation_3901 ; + sc:isAccessibleForFree true ; + sc:name "iDRBP-EL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bliulab.net/iDRBP-EL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0128, @@ -249057,7 +255210,7 @@ Chromatin interaction data from protocols such as ChIA-PET, HiChIP and Hi-C prov sc:url "http://bliulab.net/IDRBP-PPCT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -249075,22 +255228,22 @@ A new sequence-based computational predictor for identifying DNA-binding protein a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_0954" ; + sc:encodingFormat "http://edamontology.org/format_3326" ; + sc:name "Database cross-mapping" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0954" ; - sc:name "Database cross-mapping" ; - sc:sameAs "http://edamontology.org/data_0954" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -249113,7 +255266,7 @@ A new sequence-based computational predictor for identifying DNA-binding protein biotools:primaryContact "Jun Ding" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3168, @@ -249133,8 +255286,34 @@ IDRMutPred is specifically trained on the IDR nsSNVs, and is specifically utiliz sc:name "IDRMutPred" ; sc:url "http://www.wdspdb.com/IDRMutPred" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0128, + edam:topic_0154, + edam:topic_0749, + edam:topic_3474 ; + sc:citation , + "pubmed:35709747" ; + sc:description "Identifying DNA- and RNA-binding residues in proteins based on induction and transfer framework." ; + sc:featureList edam:operation_0321, + edam:operation_3901, + edam:operation_3902, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "iDRNA-ITF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bliulab.net/iDRNA-ITF" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -249154,7 +255333,7 @@ iDrug is a computational pipeline to jointly predict novel drug-disease and drug sc:url "https://github.com/Case-esaC/iDrug" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0820, @@ -249172,7 +255351,7 @@ iDrug is a computational pipeline to jointly predict novel drug-disease and drug biotools:primaryContact "Xuan Xiao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, @@ -249191,7 +255370,7 @@ iDRW is an integrative pathway activity inference method using directed random w sc:url "https://github.com/sykim122/iDRW" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0769, @@ -249215,8 +255394,31 @@ IDseq is a hypothesis-free global software platform that helps scientists identi sc:softwareHelp ; sc:url "https://idseq.net" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0621, + edam:topic_3172, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9177784", + "pubmed:35579321" ; + sc:description "IDSL.IPA Characterizes the Organic Chemical Space in Untargeted LC/HRMS Data Sets." ; + sc:featureList edam:operation_3215, + edam:operation_3628, + edam:operation_3633 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "IDSL-IPA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://ipa.idsl.me" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -249234,7 +255436,7 @@ BACKGROUND:It has been widely accepted that long non-coding RNAs (lncRNAs) play sc:url "https://github.com/CDMB-lab/IDSSIM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -249256,7 +255458,7 @@ BACKGROUND:It has been widely accepted that long non-coding RNAs (lncRNAs) play sc:url "http://www.idtdna.com/SciTools/SciTools.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0154, @@ -249279,7 +255481,7 @@ BACKGROUND:It has been widely accepted that long non-coding RNAs (lncRNAs) play biotools:primaryContact "Jung-Hsin Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3063, @@ -249301,8 +255503,30 @@ The proposed open-source dxpr package is a software tool aimed at expediting an "Windows" ; sc:url "https://github.com/DHLab-TSENG/dxpr" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3334, + edam:topic_3444, + edam:topic_3452, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9130477", + "pubmed:35645963" ; + sc:description "Deep Learning-Based Segmentation of the Inner Ear's Total Fluid Space." ; + sc:featureList edam:operation_0337, + edam:operation_3443, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "IE-Vnet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/pydsgz/IEVNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -249324,7 +255548,7 @@ The proposed open-source dxpr package is a software tool aimed at expediting an biotools:primaryContact "IEDB Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0621, @@ -249345,7 +255569,7 @@ The proposed open-source dxpr package is a software tool aimed at expediting an biotools:primaryContact "Julia Ponomarenko" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0082, @@ -249365,7 +255589,7 @@ The proposed open-source dxpr package is a software tool aimed at expediting an biotools:primaryContact "IEDB Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3324, @@ -249387,7 +255611,7 @@ Free resource for searching and exporting immune epitopes. Includes more than 95 sc:url "http://www.iedb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0605, edam:topic_2269, @@ -249408,7 +255632,7 @@ IeDEA is an international research consortium established in 2006 by the Nationa sc:url "https://www.iedea.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -249432,7 +255656,7 @@ IeDEA is an international research consortium established in 2006 by the Nationa "Toby J. Gibson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3444, @@ -249452,7 +255676,7 @@ IeDEA is an international research consortium established in 2006 by the Nationa biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Web service" ; @@ -249477,7 +255701,7 @@ IeDEA is an international research consortium established in 2006 by the Nationa biotools:primaryContact "Prof. Dr. Nenad Blau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3474 ; @@ -249491,7 +255715,7 @@ An enhancer is a short region of DNA with the ability to recruit transcription f sc:url "https://github.com/Not-so-middle/iEnhancer-KL.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3474, @@ -249509,7 +255733,7 @@ An enhancer is a short region of DNA with the ability to recruit transcription f sc:url "https://github.com/YangHuan639/iEnhancer-RD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3295, @@ -249528,14 +255752,12 @@ repDNA (http://bioinformatics.hitsz.edu.cn/repDNA/).""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1528" ; - sc:name "Protein isoelectric point" ; - sc:sameAs "http://edamontology.org/data_1528" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1528" ; + sc:name "Protein isoelectric point" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0123 ; sc:citation , @@ -249565,7 +255787,7 @@ repDNA (http://bioinformatics.hitsz.edu.cn/repDNA/).""" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/iep.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -249586,8 +255808,29 @@ repDNA (http://bioinformatics.hitsz.edu.cn/repDNA/).""" ; sc:url "https://www.mathworks.com/matlabcentral/fileexchange/50863-codes-of-abc-and-if-abc-algorithms-for-protein-structure-optimization-using-off-lattice-model" ; biotools:primaryContact "Li Bai" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3168, + edam:topic_3474, + edam:topic_3512, + edam:topic_3958 ; + sc:citation ; + sc:description "A novel isolation-forest-based package to detect copy number variations from various NGS datasets." ; + sc:featureList edam:operation_3359, + edam:operation_3435, + edam:operation_3961 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ifCNV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/SimCab-CHU/ifCNV" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -249605,7 +255848,7 @@ repDNA (http://bioinformatics.hitsz.edu.cn/repDNA/).""" ; sc:url "https://ifealid.cebitec.uni-bielefeld.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -249623,12 +255866,37 @@ repDNA (http://bioinformatics.hitsz.edu.cn/repDNA/).""" ; biotools:primaryContact "Jiangning Song", "Zhen Chen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application", + "Workbench" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0659, + edam:topic_2258, + edam:topic_3047, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9252729", + "pubmed:35524557" ; + sc:description "iFeatureOmega is a comprehensive platform for generating, analyzing and visualizing more than 170 representations for biological sequences, 3D structures and ligands." ; + sc:featureList edam:operation_0224, + edam:operation_0337, + edam:operation_3891, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "iFeatureOmega" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://ifeatureomega.erc.monash.edu" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -249653,8 +255921,36 @@ findCPcli takes as input an SBML files of genome-scale models, and provides as o sc:softwareHelp ; sc:url "https://github.com/findCP/findCPcli" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0821 ; + sc:citation , + "pubmed:35861063" ; + sc:description "An automated web tool for determining enzyme-kinetic parameters based on the high-curvature region of progress curves." ; + sc:featureList edam:operation_0334 ; + sc:isAccessibleForFree true ; + sc:name "iFIT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.i-fit.si" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "This web server is developed for users working in the field of vaccine design. This server allows users to predict and design IFN-gamma inducing peptides. It have following three modules." ; + sc:featureList edam:operation_2945 ; + sc:name "ifnepitope" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/ifnepitope/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0176, @@ -249667,7 +255963,7 @@ findCPcli takes as input an SBML files of genome-scale models, and provides as o sc:url "http://troll.med.unc.edu/ifoldrna.v2/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -249685,7 +255981,7 @@ findCPcli takes as input an SBML files of genome-scale models, and provides as o biotools:primaryContact "Wenjie Shu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0622, @@ -249705,7 +256001,7 @@ findCPcli takes as input an SBML files of genome-scale models, and provides as o biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -249717,7 +256013,7 @@ findCPcli takes as input an SBML files of genome-scale models, and provides as o sc:url "http://bioviz.org/igb/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -249740,14 +256036,14 @@ findCPcli takes as input an SBML files of genome-scale models, and provides as o a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -249769,7 +256065,7 @@ findCPcli takes as input an SBML files of genome-scale models, and provides as o biotools:primaryContact "Liang-Bo Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -249788,7 +256084,7 @@ Databases of large-scale genome projects now contain thousands of genomic interv sc:url "https://github.com/databio/IGD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -249811,18 +256107,16 @@ Databases of large-scale genome projects now contain thousands of genomic interv a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3496" ; - sc:name "RNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3496" ] ; + sc:additionalType "http://edamontology.org/data_3496" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "RNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:name "Gene expression profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation ; @@ -249839,7 +256133,7 @@ Databases of large-scale genome projects now contain thousands of genomic interv sc:url "http://igdiscover.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3170, @@ -249862,7 +256156,7 @@ Databases of large-scale genome projects now contain thousands of genomic interv sc:url "https://github.com/BigDataInSilicoBiologyGroup/IgemRNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -249880,7 +256174,7 @@ Databases of large-scale genome projects now contain thousands of genomic interv "Zongben X" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -249896,8 +256190,26 @@ Databases of large-scale genome projects now contain thousands of genomic interv sc:softwareVersion "3.0" ; sc:url "http://statgenpro.psychiatry.hku.hk/limx/igg/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:citation , + "pmcid:PMC8593043", + "pubmed:34795698" ; + sc:description "An implementation of scale functions for setting axis breaks of a 'gg' plot." ; + sc:featureList edam:operation_0337, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Artistic-2.0" ; + sc:name "iggbreak" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://CRAN.R-project.org/package=ggbreak" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2269, @@ -249913,8 +256225,18 @@ Decoding the properties of immune repertoires is key in understanding the respon sc:name "IgGeneUsage" ; sc:url "https://bioconductor.org/packages/IgGeneUsage/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:description "The Immunoglobulin Intraclonal Diversification Analysis tool (IgIDivA) offers the opportunity for an in-depth analysis of high-throughput sequencing data, with the scope of studying the intraclona diversification process through the identification of the somatic hypermutations that take place within the IGV gene region, the detailed characterization of their connections, the establishment of the mutational pathways and the calculation of metrics that allow the objective determination of the level of ID in a sample, together with statistical analysis for the comparison of different features of the ID level for different groups of samples." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "IgIDivA" ; + sc:softwareVersion "0.9" ; + sc:url "https://github.com/laurazara/IgIDivA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0654, @@ -249933,7 +256255,7 @@ Decoding the properties of immune repertoires is key in understanding the respon "Ruchi Jain" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3173, @@ -249956,7 +256278,7 @@ Decoding the properties of immune repertoires is key in understanding the respon sc:url "https://github.com/mensenyat/iGlioSub" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3068 ; sc:citation ; @@ -249973,8 +256295,27 @@ Interpreting Glucose Data from Continuous Glucose Monitors.""" ; sc:name "iglu" ; sc:url "https://github.com/irinagain/iglu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_0621, + edam:topic_0769, + edam:topic_3168 ; + sc:citation ; + sc:description "IgMAT is a tool for the automatic discrimination and annotation of antibody sequences, specifically designed to be integrated into analysis pipelines or being used as a cli tool. IgMAT is highly customizable, allowing the addition of custom antibody sequences datasets and generating a range of output formats including a bed file of FR and CDR coordinates allowing simple downstream analysis on individual regions." ; + sc:featureList edam:operation_0260, + edam:operation_0361 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "IgMAT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/TPI-Immunogenetics/igmat" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0621, @@ -249994,7 +256335,7 @@ Interpreting Glucose Data from Continuous Glucose Monitors.""" ; biotools:primaryContact "Enrique Morales-Bojórquez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0202, @@ -250014,7 +256355,7 @@ Interpreting Glucose Data from Continuous Glucose Monitors.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0623, @@ -250033,7 +256374,7 @@ Interpreting Glucose Data from Continuous Glucose Monitors.""" ; biotools:primaryContact "Hao Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0804, @@ -250051,7 +256392,7 @@ Interpreting Glucose Data from Continuous Glucose Monitors.""" ; biotools:primaryContact "Yana Safonova" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0804, @@ -250067,8 +256408,26 @@ Interpreting Glucose Data from Continuous Glucose Monitors.""" ; sc:url "http://yana-safonova.github.io/ig_simulator/" ; biotools:primaryContact "Yana Safonova" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2275, + edam:topic_3336, + edam:topic_3474 ; + sc:citation , + "pubmed:35514186" ; + sc:description "Intermolecular Graph Transformer (IGT) employs a dedicated attention mechanism to model intermolecular information with a three-way Transformer-based architecture." ; + sc:featureList edam:operation_2492, + edam:operation_3899, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "IGT" ; + sc:url "https://github.com/microsoft/IGT-Intermolecular-Graph-Transformer" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -250091,7 +256450,7 @@ Interpreting Glucose Data from Continuous Glucose Monitors.""" ; "IGV support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3320, edam:topic_3517 ; @@ -250118,7 +256477,7 @@ To create an igv.js browser supply a container div and an initial configuration sc:url "https://igv.org/app" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070 ; sc:description "Access to igv.js, the Integrative Genomics Viewer running in a web browser." ; @@ -250135,7 +256494,7 @@ To create an igv.js browser supply a container div and an initial configuration biotools:primaryContact "Paul Shannon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Plug-in" ; sc:applicationSubCategory edam:topic_0080 ; @@ -250154,7 +256513,7 @@ To create an igv.js browser supply a container div and an initial configuration sc:url "https://software.broadinstitute.org/software/igv/igvtools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, @@ -250174,8 +256533,30 @@ Identifying the 2-level antimicrobial peptides using reduced acid amino composit sc:name "IHEC-RAAC" ; sc:url "http://bioinfor.imu.edu.cn/ihecraac" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_3125, + edam:topic_3169, + edam:topic_3295, + edam:topic_3474 ; + sc:citation , + "pubmed:35809058" ; + sc:description "Identifying modifications on DNA-bound histones with joint deep learning of multiple binding sites in DNA sequence." ; + sc:featureList edam:operation_0417, + edam:operation_3903, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "iHMnBS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/lennylv/iHMnBS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -250197,7 +256578,7 @@ IHNLncSim is a freely and reliable computational model can calculate functional sc:url "http://www.lirmed.com/ihnlncsim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0218, @@ -250216,7 +256597,7 @@ IHNLncSim is a freely and reliable computational model can calculate functional sc:url "http://www.ihop-net.org/UniPub/iHOP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3473 ; @@ -250233,7 +256614,7 @@ IHNLncSim is a freely and reliable computational model can calculate functional sc:url "http://ws.bioinfo.cnio.es/iHOP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0605, @@ -250256,7 +256637,7 @@ IHP-PING provides a flexible python package, which extracts and integrates heter sc:url "http://web.cbio.uct.ac.za/ITGOM/post-analysis-tools/ihp-ping-dev/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0208, @@ -250269,7 +256650,7 @@ IHP-PING provides a flexible python package, which extracts and integrates heter biotools:primaryContact "Guiying Yan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation , @@ -250284,7 +256665,7 @@ IHP-PING provides a flexible python package, which extracts and integrates heter sc:url "http://coruscant.itmat.upenn.edu/whamm/ihs.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -250302,7 +256683,7 @@ IHP-PING provides a flexible python package, which extracts and integrates heter biotools:primaryContact "Hao Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -250324,7 +256705,7 @@ IHP-PING provides a flexible python package, which extracts and integrates heter sc:url "https://github.com/OpenMendel/MendelIHT.jl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269 ; sc:author ; @@ -250344,7 +256725,7 @@ IHP-PING provides a flexible python package, which extracts and integrates heter sc:url "http://bioconductor.org/packages/IHW/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154 ; @@ -250361,8 +256742,78 @@ IHP-PING provides a flexible python package, which extracts and integrates heter sc:softwareHelp ; sc:url "http://app.aporc.org/iHyd-PseAAC/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1009" ; + sc:name "Protein name" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0601, + edam:topic_0621, + edam:topic_2640, + edam:topic_3500 ; + sc:citation ; + sc:description "An integrative database of the expression dynamics of proteins in response to hypoxia in animals." ; + sc:featureList edam:operation_0417, + edam:operation_2476, + edam:operation_3630 ; + sc:isAccessibleForFree true ; + sc:name "iHypoxia" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://ihypoxia.omicsbio.info" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3336, + edam:topic_3474 ; + sc:citation , + "pubmed:35801934" ; + sc:description "Predicting drug-target interactions through interactive and independent features based on attention mechanism." ; + sc:featureList edam:operation_0269, + edam:operation_3937, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "IIFDTI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/czjczj/IIFDTI" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:citation , + "pmcid:PMC7495796", + "pubmed:34565935" ; + sc:description "An R Package for Online Item Calibration, Scoring, Evaluation of Model Fit, and Useful Functions for Unidimensional IRT." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "iirtplay" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://github.com/cran/irtplay" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0128, @@ -250383,8 +256834,29 @@ IHP-PING provides a flexible python package, which extracts and integrates heter sc:url "http://bioinfo03.ibi.unicamp.br/lnbio/IIS2/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_3315, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9230243", + "pubmed:35755841" ; + sc:description "Dynamic Python-Based Method Provides Quantitative Analysis of Intercellular Junction Organization During S. pneumoniae Infection of the Respiratory Epithelium." ; + sc:featureList edam:operation_3435, + edam:operation_3443, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "IJOQ" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/DevonsMo/IJOQ" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -250401,7 +256873,7 @@ IHP-PING provides a flexible python package, which extracts and integrates heter biotools:primaryContact "Marcel Mischnik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_2229, @@ -250424,7 +256896,7 @@ Note: IKAP will, by default, regress out the percentage of mitochondrial gene co sc:url "https://github.com/NHLBI-BCB/IKAP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -250453,7 +256925,7 @@ BLAST for all known locus nucleotide sequences (using blastn) to identify the be sc:url "https://github.com/katholt/Kaptive" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3174, @@ -250474,7 +256946,7 @@ kernInt uses the kernel framework to unify supervised and unsupervised microbiom sc:url "https://github.com/elies-ramon/kernInt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -250495,8 +256967,31 @@ kernInt uses the kernel framework to unify supervised and unsupervised microbiom sc:url "http://www.knockoutmouse.org" ; biotools:primaryContact "Martin Ringwald" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2229, + edam:topic_3400 ; + sc:citation ; + sc:description "Prediction of Interleukin-13 inducing peptides." ; + sc:featureList edam:operation_0252, + edam:operation_0416 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "IL-13Pred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/il13pred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, @@ -250522,8 +257017,39 @@ Welcome to the Dataset Page of IL-6Pred.""" ; sc:name "IL-6Pred" ; sc:url "https://webs.iiitd.edu.in/raghava/il6pred/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC5314457", + "pubmed:28211521" ; + sc:description "Prediction of Interleukin-10 inducing peptides" ; + sc:featureList edam:operation_2945 ; + sc:name "il10pred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/il10pred/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:35152041" ; + sc:description "IL-13Pred: Prediction of Interleukin-13 inducing peptides" ; + sc:featureList edam:operation_2945 ; + sc:name "il13pred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/il13pred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -250542,20 +257068,84 @@ Welcome to the Dataset Page of IL-6Pred.""" ; "Windows" ; sc:url "https://webs.iiitd.edu.in/raghava/il2pred/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:263952" ; + sc:description "IL4predIn Silico Platform for Designing and Discovering of Interleukin-4 inducing peptides" ; + sc:featureList edam:operation_2945 ; + sc:name "il4pred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/il4pred/index.php" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "IL5pred is developed for the prediction of IL5 inducing peptides. Interleukin-5 (IL-5) is one of the key cytokines released by several cellular elements, including T-helper 2 cells, mast cells, Type-2 innate lymphoid cells, basophils and eosinophils." ; + sc:featureList edam:operation_2945 ; + sc:name "il5pred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/il5pred/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation ; + sc:description "Prediction of Interlukin-6 inducing peptides" ; + sc:featureList edam:operation_2945 ; + sc:name "il6pred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/il6pred/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0769, + edam:topic_3170, + edam:topic_3304, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC8907970", + "pubmed:35281717" ; + sc:description "LaminaRGeneVis: a tool to visualize a tool to visualize gene expression across the laminar architecture of the human neocortex." ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_3463 ; + sc:license "Not licensed" ; + sc:name "iLaminaRGeneVis" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ethanhkim.shinyapps.io/laminargenevis/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3344, edam:topic_3474 ; @@ -250574,7 +257164,7 @@ Welcome to the Dataset Page of IL-6Pred.""" ; sc:url "https://www.ilastik.org/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0804 ; @@ -250596,7 +257186,7 @@ Retrieval Job IDInput your job id here (e.g. 20180602221946).""" ; sc:url "http://kurata14.bio.kyutech.ac.jp/iLBE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -250615,7 +257205,7 @@ Retrieval Job IDInput your job id here (e.g. 20180602221946).""" ; biotools:primaryContact "Lukasz Kurgan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -250633,7 +257223,7 @@ ILDGDB is a manually curated database that provides comprehensive experimentally sc:url "http://ildgdb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -250655,7 +257245,7 @@ ILDGDB is a manually curated database that provides comprehensive experimentally "Quanzhi Zhao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2229, @@ -250671,8 +257261,30 @@ ILDGDB is a manually curated database that provides comprehensive experimentally biotools:primaryContact , . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0153, + edam:topic_0176, + edam:topic_0820, + edam:topic_2229, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC9283888", + "pubmed:35860415" ; + sc:description "A computational microscope to scrutinize membrane properties at the organelle-level" ; + sc:featureList edam:operation_0244, + edam:operation_2476, + edam:operation_2489 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "iLipidDyn" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/ELELAB/LipidDyn" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3068, @@ -250689,7 +257301,7 @@ ILDGDB is a manually curated database that provides comprehensive experimentally sc:url "https://gitlab.com/AliK_A/iliski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -250705,7 +257317,7 @@ ILDGDB is a manually curated database that provides comprehensive experimentally sc:url "http://bioinf.wehi.edu.au/illumina/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -250727,7 +257339,7 @@ ILDGDB is a manually curated database that provides comprehensive experimentally biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:description "Analytics toolkit in Python for Illumina HiSeq and MiSeq metrics." ; @@ -250740,7 +257352,7 @@ ILDGDB is a manually curated database that provides comprehensive experimentally biotools:primaryContact "Naomi Most" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation "pubmed:21621601" ; @@ -250753,7 +257365,7 @@ ILDGDB is a manually curated database that provides comprehensive experimentally biotools:primaryContact "Ian Carr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -250771,8 +257383,25 @@ ILDGDB is a manually curated database that provides comprehensive experimentally sc:name "ILM" ; sc:url "http://cic.cs.wustl.edu/RNA/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0659 ; + sc:citation , + "pubmed:35594681" ; + sc:description "A Learning to Rank (LTR)-based method called iLncDA-LTR to predict diseases related with newly detected lncRNAs" ; + sc:featureList edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "iLncDA-LTR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bliulab.net/iLncDA-LTR/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -250788,7 +257417,7 @@ A new predictor for identifying lncRNA-disease associations by fusing biological sc:url "http://bliulab.net/iLncRNAdis-FB/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0623, @@ -250804,12 +257433,36 @@ A new predictor for identifying lncRNA-disease associations by fusing biological sc:url "http://www.jci-bioinfo.cn/iLoc-Hum" ; biotools:primaryContact "Xuan Xiao" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0196, + edam:topic_0621, + edam:topic_0622, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8862717", + "pubmed:35211671" ; + sc:description "Robust evaluation of genome content and organization for provisional and mature genome assemblies." ; + sc:featureList edam:operation_0362, + edam:operation_0525, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "ISC" ; + sc:name "iLoci" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://brendelgroup.github.io/AEGeAn/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1963" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_2259 ; sc:author ; @@ -250828,7 +257481,7 @@ A new predictor for identifying lncRNA-disease associations by fusing biological sc:url "http://sbi.imim.es/iLoopsServer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -250848,7 +257501,7 @@ ILoReg is a novel tool for cell population identification from single-cell RNA-s sc:url "https://github.com/elolab/iloreg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0601, edam:topic_3308, @@ -250864,8 +257517,28 @@ im6A-TS-cnn is able to identify multi-tissues in Human, Mouse and Rat.""" ; sc:name "im6A-TS-CNN" ; sc:url "https://github.com/liukeweiaway/DeepM6A_cnn" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0123, + edam:topic_0128, + edam:topic_2229, + edam:topic_3474, + edam:topic_3957 ; + sc:citation , + "pmcid:PMC8712950", + "pubmed:34970305" ; + sc:description "IMA method for identifying protein complexes in PPI network" ; + sc:featureList edam:operation_0276, + edam:operation_3092, + edam:operation_3094 ; + sc:license "Not licensed" ; + sc:name "IMA" ; + sc:operatingSystem "Windows" ; + sc:url "https://github.com/RongquanWang/IMA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -250888,7 +257561,7 @@ im6A-TS-cnn is able to identify multi-tissues in Human, Mouse and Rat.""" ; biotools:primaryContact "IMAAAGINE Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196 ; @@ -250902,7 +257575,7 @@ im6A-TS-cnn is able to identify multi-tissues in Human, Mouse and Rat.""" ; biotools:primaryContact "Tsai IJ" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3077, @@ -250919,7 +257592,7 @@ im6A-TS-cnn is able to identify multi-tissues in Human, Mouse and Rat.""" ; biotools:primaryContact "MathWorks Image Acquisition Toolbox Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3077, @@ -250936,7 +257609,7 @@ im6A-TS-cnn is able to identify multi-tissues in Human, Mouse and Rat.""" ; biotools:primaryContact "MathWorks Image Acquisition Toolbox Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3077, @@ -250953,7 +257626,7 @@ im6A-TS-cnn is able to identify multi-tissues in Human, Mouse and Rat.""" ; biotools:primaryContact "MathWorks Image Acquisition Toolbox Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, @@ -250973,7 +257646,7 @@ im6A-TS-cnn is able to identify multi-tissues in Human, Mouse and Rat.""" ; biotools:primaryContact "Jalali Lab Jalalilab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3318, @@ -250992,7 +257665,7 @@ im6A-TS-cnn is able to identify multi-tissues in Human, Mouse and Rat.""" ; biotools:primaryContact "Alison Chaiken" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -251010,7 +257683,7 @@ im6A-TS-cnn is able to identify multi-tissues in Human, Mouse and Rat.""" ; biotools:primaryContact "Romeil Sandhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -251029,7 +257702,7 @@ im6A-TS-cnn is able to identify multi-tissues in Human, Mouse and Rat.""" ; biotools:primaryContact "Peter Nagy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3344 ; @@ -251045,7 +257718,7 @@ im6A-TS-cnn is able to identify multi-tissues in Human, Mouse and Rat.""" ; biotools:primaryContact "Kateryna Artyushkova" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0654, @@ -251071,7 +257744,7 @@ IMAGE is implemented as an open source R package for mQTL mapping in sequencing- sc:url "https://github.com/fanyue322/IMAGE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0611 ; sc:description "Image SXM is a version of the public domain image analysis software NIH Image that has been extended to handle the loading, display and analysis of scanning microscope images. Image SXM supports SAM, SCM, SEM, SFM, SLM, SNOM, SPM and STM images." ; @@ -251085,30 +257758,30 @@ IMAGE is implemented as an open source R package for mQTL mapping in sequencing- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3424" ; - sc:name "Raw image" ; - sc:sameAs "http://edamontology.org/data_3424" ], + sc:additionalType "http://edamontology.org/data_3424" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Raw image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1052" ; - sc:name "URL" ; - sc:sameAs "http://edamontology.org/data_1052" ], + sc:additionalType "http://edamontology.org/data_3546" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Image metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3546" ; - sc:name "Image metadata" ; - sc:sameAs "http://edamontology.org/data_3546" ] ; + sc:additionalType "http://edamontology.org/data_1052" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "URL" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_3546" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Image metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3546" ; - sc:name "Image metadata" ; - sc:sameAs "http://edamontology.org/data_3546" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -251128,22 +257801,20 @@ IMAGE is implemented as an open source R package for mQTL mapping in sequencing- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_3546" ; + sc:name "Image metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3546" ; - sc:name "Image metadata" ; - sc:sameAs "http://edamontology.org/data_3546" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation ; @@ -251160,22 +257831,20 @@ IMAGE is implemented as an open source R package for mQTL mapping in sequencing- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_3546" ; + sc:name "Image metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3546" ; - sc:name "Image metadata" ; - sc:sameAs "http://edamontology.org/data_3546" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_3365, @@ -251199,7 +257868,7 @@ IMAGE is implemented as an open source R package for mQTL mapping in sequencing- sc:url "http://rsb.info.nih.gov/ij/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3383, @@ -251214,7 +257883,7 @@ IMAGE is implemented as an open source R package for mQTL mapping in sequencing- biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3382, @@ -251229,7 +257898,7 @@ IMAGE is implemented as an open source R package for mQTL mapping in sequencing- biotools:primaryContact "Melanie Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3382, @@ -251241,7 +257910,7 @@ IMAGE is implemented as an open source R package for mQTL mapping in sequencing- sc:url "http://www.yandell-lab.org/software/imageplane.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3383, @@ -251262,7 +257931,7 @@ IMAGE is implemented as an open source R package for mQTL mapping in sequencing- "Zhijun Wei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0611, edam:topic_1317 ; @@ -251280,7 +257949,7 @@ IMAGE is implemented as an open source R package for mQTL mapping in sequencing- sc:url "http://imagescience.de/imagic/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -251298,7 +257967,7 @@ IMAGE is implemented as an open source R package for mQTL mapping in sequencing- biotools:primaryContact "Fred Sigworth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Suite" ; sc:applicationSubCategory edam:topic_0602, @@ -251328,7 +257997,7 @@ Integrating an increasing number of available multi-omics cancer data remains on sc:url "http://portals.broadinstitute.org/pochetlab/amaretto.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2269, @@ -251346,7 +258015,7 @@ Integrating an increasing number of available multi-omics cancer data remains on biotools:primaryContact "Xiang Zhou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -251362,7 +258031,7 @@ Wang, D., Hou, S., Zhang, L. et al. iMAP: integration of multiple single-cell da sc:url "https://github.com/Svvord/iMAP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -251378,7 +258047,7 @@ Wang, D., Hou, S., Zhang, L. et al. iMAP: integration of multiple single-cell da sc:url "http://github.com/jkimlab/IMAP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382 ; sc:description "Imaris is Bitplane’s core scientific software module for data visualization, analysis, segmentation and interpretation of 3D and 4D microscopy datasets." ; @@ -251390,7 +258059,7 @@ Wang, D., Hou, S., Zhang, L. et al. iMAP: integration of multiple single-cell da sc:url "http://www.bitplane.com/go/products/imaris" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -251412,7 +258081,7 @@ Marmots are large Holarctic rodents in the genus Marmota with 14 living species. sc:url "http://www.marmotdb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -251434,7 +258103,7 @@ Marmots are large Holarctic rodents in the genus Marmota with 14 living species. biotools:primaryContact "Seonggyun Han" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0199, @@ -251455,26 +258124,26 @@ Marmots are large Holarctic rodents in the genus Marmota with 14 living species. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3391, @@ -251503,7 +258172,7 @@ Marmots are large Holarctic rodents in the genus Marmota with 14 living species. sc:url "http://imdevsoftware.wordpress.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0736, @@ -251520,7 +258189,7 @@ Marmots are large Holarctic rodents in the genus Marmota with 14 living species. biotools:primaryContact "Xiao Xuan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0176, @@ -251539,7 +258208,7 @@ Marmots are large Holarctic rodents in the genus Marmota with 14 living species. biotools:primaryContact "Charlotte Deane" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3172 ; sc:citation , @@ -251556,18 +258225,18 @@ Marmots are large Holarctic rodents in the genus Marmota with 14 living species. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053, @@ -251588,7 +258257,7 @@ Marmots are large Holarctic rodents in the genus Marmota with 14 living species. biotools:primaryContact "Audrey Lemacon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0203 ; @@ -251606,7 +258275,7 @@ Marmots are large Holarctic rodents in the genus Marmota with 14 living species. sc:url "http://korflab.ucdavis.edu/cgi-bin/web-imeter.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -251622,7 +258291,7 @@ Marmots are large Holarctic rodents in the genus Marmota with 14 living species. sc:url "http://www.imexconsortium.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -251644,7 +258313,7 @@ Marmots are large Holarctic rodents in the genus Marmota with 14 living species. sc:url "https://lv-csbg.github.io/IMFLer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0781, @@ -251661,7 +258330,7 @@ Marmots are large Holarctic rodents in the genus Marmota with 14 living species. sc:url "http://img.jgi.doe.gov/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0602 ; @@ -251677,7 +258346,7 @@ Marmots are large Holarctic rodents in the genus Marmota with 14 living species. biotools:primaryContact "David Breuer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0781, @@ -251701,7 +258370,7 @@ Marmots are large Holarctic rodents in the genus Marmota with 14 living species. biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Database portal", "Ontology", @@ -251726,30 +258395,30 @@ Marmots are large Holarctic rodents in the genus Marmota with 14 living species. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ], + sc:additionalType "http://edamontology.org/data_2858" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology concept" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2858" ; - sc:name "Ontology concept" ; - sc:sameAs "http://edamontology.org/data_2858" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_2085" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2085" ; - sc:name "Structure report" ; - sc:sameAs "http://edamontology.org/data_2085" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -251778,7 +258447,7 @@ Annotation is based on the IMGT-ONTOLOGY concepts.""" ; biotools:primaryContact "Marie-Paule Lefranc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0199, @@ -251800,14 +258469,12 @@ Annotation is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2830 ; @@ -251830,22 +258497,22 @@ Annotation is based on the IMGT-ONTOLOGY concepts.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ], + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Sequence report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -251873,7 +258540,7 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; biotools:primaryContact "Marie-Paule Lefranc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0085 ; sc:author "Giorgio Giurato" ; @@ -251893,7 +258560,7 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0659 ; @@ -251911,7 +258578,7 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; biotools:primaryContact "Robert L. Chow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3518, @@ -251926,7 +258593,7 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; sc:url "http://zhoulab.usc.edu/iMISS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -251948,7 +258615,7 @@ Analysis is based on the IMGT-ONTOLOGY concepts.""" ; sc:url "http://imitatedb.sblab-nsit.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2269, @@ -251969,7 +258636,7 @@ Ziqiao Wang and Peng Wei. IMIX: A multivariate mixture model approach to integra sc:url "https://github.com/ziqiaow/IMIX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -251987,7 +258654,7 @@ Ziqiao Wang and Peng Wei. IMIX: A multivariate mixture model approach to integra biotools:primaryContact "Omer Demirkaya" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0154, @@ -252005,7 +258672,7 @@ Ziqiao Wang and Peng Wei. IMIX: A multivariate mixture model approach to integra sc:url "https://github.com/CSBiology/iMLP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -252025,7 +258692,7 @@ Ziqiao Wang and Peng Wei. IMIX: A multivariate mixture model approach to integra biotools:primaryContact "Minoo Ashtiani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3315, @@ -252038,8 +258705,22 @@ Ziqiao Wang and Peng Wei. IMIX: A multivariate mixture model approach to integra sc:name "iMMC" ; sc:url "http://mcx.space/#mmc" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation ; + sc:description "ImmCancer - Portal For Cancer Immunothrerapy Tools And Repositories" ; + sc:featureList edam:operation_2945 ; + sc:name "immcancer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/immcancer/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -252060,7 +258741,7 @@ Maintainer: Xuan Liu xuan.liu.1@uth.tmc.edu Sara Gosline sara.gosline@sagebase.o sc:url "https://github.com/xliu-uth/ImmClassifier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0804, edam:topic_3308, @@ -252078,8 +258759,30 @@ Maintainer: Xuan Liu xuan.liu.1@uth.tmc.edu Sara Gosline sara.gosline@sagebase.o sc:url "http://csgi.tau.ac.il/ImmQuant/" ; biotools:primaryContact "Irit Gat-Viks" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0659, + edam:topic_0804, + edam:topic_2640, + edam:topic_3400 ; + sc:citation , + "pmcid:PMC8643631", + "pubmed:34755873" ; + sc:description "The regulon atlas of immune-related pathways across cancer types." ; + sc:featureList edam:operation_0533, + edam:operation_3223, + edam:operation_3463 ; + sc:isAccessibleForFree true ; + sc:name "ImmReg" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bio-bigdata.hrbmu.edu.cn/ImmReg/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, @@ -252096,20 +258799,44 @@ Maintainer: Xuan Liu xuan.liu.1@uth.tmc.edu Sara Gosline sara.gosline@sagebase.o "Windows" ; sc:url "http://bioinfo.vanderbilt.edu/database/Immu-Mela/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0804, + edam:topic_2229, + edam:topic_3308, + edam:topic_3934 ; + sc:citation , + "pubmed:34636837" ; + sc:description "A tool for comprehensive prediction of mouse immune cell abundance and immune microenvironment depiction." ; + sc:featureList edam:operation_0252, + edam:operation_0314, + edam:operation_3463 ; + sc:isAccessibleForFree true ; + sc:name "ImmuCellAI-mouse" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinfo.life.hust.edu.cn/ImmuCellAI-mouse/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2830 ; sc:citation ; @@ -252130,7 +258857,7 @@ Maintainer: Xuan Liu xuan.liu.1@uth.tmc.edu Sara Gosline sara.gosline@sagebase.o sc:url "https://immunarch.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0804 ; sc:citation ; @@ -252139,13 +258866,8 @@ Maintainer: Xuan Liu xuan.liu.1@uth.tmc.edu Sara Gosline sara.gosline@sagebase.o sc:name "immuneSIM" ; sc:url "https://github.com/GreiffLab/immuneSIM" . - a sc:SoftwareApplication ; - sc:description "CD Genomics has developed advanced Immune Repertoire Sequencing strategy to amplify and sequence the immune repertoire with Next Generation Sequencing (NGS). Now, we are providing comprehensive solution to evaluate the diversity of immune repertoire precisely in a cost-effective way by pooling the samples." ; - sc:name "Immune Repertoire Sequencing" ; - sc:url "https://www.cd-genomics.com/Immune-Repertoire-Sequencing.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, @@ -252161,7 +258883,7 @@ Maintainer: Xuan Liu xuan.liu.1@uth.tmc.edu Sara Gosline sara.gosline@sagebase.o sc:url "https://github.com/grst/immune_deconvolution_benchmark" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2830, @@ -252176,8 +258898,32 @@ Maintainer: Xuan Liu xuan.liu.1@uth.tmc.edu Sara Gosline sara.gosline@sagebase.o sc:url "http://immuneml.uio.no" ; biotools:primaryContact "Geir Kjetil Sandve" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0769, + edam:topic_2830, + edam:topic_3063, + edam:topic_3930 ; + sc:citation , + "pmcid:PMC9421535", + "pubmed:36046619" ; + sc:description "Reference-based comparison of adaptive immune receptor repertoires." ; + sc:featureList edam:operation_0300, + edam:operation_0491, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "immuneREF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/GreiffLab/immuneREF" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0804, @@ -252196,7 +258942,7 @@ Maintainer: Xuan Liu xuan.liu.1@uth.tmc.edu Sara Gosline sara.gosline@sagebase.o biotools:primaryContact "Renan Sauteraud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0199, @@ -252214,7 +258960,7 @@ The SARS-CoV-2 Immunoanalytics platform is an online tool for the visulisation a sc:url "http://genomics.lshtm.ac.uk/immuno" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2229, @@ -252234,7 +258980,7 @@ The SARS-CoV-2 Immunoanalytics platform is an online tool for the visulisation a "Yang Du" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0804, @@ -252255,7 +259001,7 @@ The SARS-CoV-2 Immunoanalytics platform is an online tool for the visulisation a biotools:primaryContact "Till Soerensen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3337, @@ -252279,7 +259025,7 @@ The immunoCluster package uses the scDataViz bioconductor package’s vizualizat "James N. Arnold" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0602, @@ -252301,7 +259047,7 @@ The immunoCluster package uses the scDataViz bioconductor package’s vizualizat biotools:primaryContact "Robert M Waterhouse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; sc:applicationSubCategory edam:topic_0121, @@ -252322,7 +259068,7 @@ ImmunoGlobe is a map of the immune network that describes how different parts of sc:url "http://www.immunoglobe.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web service" ; sc:applicationSubCategory edam:topic_0804, @@ -252343,7 +259089,7 @@ Because of the complexity of cancer-immune system interactions, combinations of sc:url "https://yamashige33.shinyapps.io/immunogram/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, edam:topic_0804, @@ -252364,7 +259110,7 @@ The Antibody Hub has been established with the aim of improving animal and human sc:url "https://www.immunologicaltoolbox.co.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -252382,8 +259128,24 @@ Wellcome Trust Sanger Institute.""" ; sc:name "immunophenotype" ; sc:url "http://www.immunophenotype.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC6367516", + "pubmed:30753476" ; + sc:description "ImmunoSPdb is a repository of experimentally validated peptides which suppress the immune system. All information compiled in this database has been extracted from research papers and patents." ; + sc:featureList edam:operation_2945 ; + sc:name "immunospdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/immunospdb/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0611, edam:topic_1317 ; @@ -252401,7 +259163,7 @@ Wellcome Trust Sanger Institute.""" ; sc:url "http://bio3d.colorado.edu/imod/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -252425,7 +259187,7 @@ Wellcome Trust Sanger Institute.""" ; biotools:primaryContact "Chacón P." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -252446,7 +259208,7 @@ iModulonDB is maintained by the Systems Biology Research Group at the University sc:url "http://imodulondb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3678 ; sc:citation "pubmed:26740524" ; @@ -252459,7 +259221,7 @@ iModulonDB is maintained by the Systems Biology Research Group at the University sc:url "http://www.stat.tamu.edu/~amir/code.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -252481,7 +259243,7 @@ iModulonDB is maintained by the Systems Biology Research Group at the University biotools:primaryContact "Dr. R. Sowdhamini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -252501,7 +259263,7 @@ iModulonDB is maintained by the Systems Biology Research Group at the University biotools:primaryContact "Troyanskaya O. G." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3382, @@ -252515,7 +259277,7 @@ iModulonDB is maintained by the Systems Biology Research Group at the University sc:url "https://github.com/salilab/IMP-sampcon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, @@ -252534,7 +259296,7 @@ iModulonDB is maintained by the Systems Biology Research Group at the University sc:url "http://www.salilab.org/imp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_3174, @@ -252556,7 +259318,7 @@ iModulonDB is maintained by the Systems Biology Research Group at the University biotools:primaryContact "Shaman Narayanasamy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Workflow" ; sc:applicationSubCategory edam:topic_2814, @@ -252581,7 +259343,7 @@ iModulonDB is maintained by the Systems Biology Research Group at the University biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Workflow" ; sc:applicationSubCategory edam:topic_2275, @@ -252608,7 +259370,7 @@ iModulonDB is maintained by the Systems Biology Research Group at the University biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2259, @@ -252625,7 +259387,7 @@ iModulonDB is maintained by the Systems Biology Research Group at the University sc:url "http://impala.molgen.mpg.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, @@ -252643,18 +259405,15 @@ Partial Annotations for MultiplexCell Instance Segmentation.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625 ; sc:citation ; @@ -252670,7 +259429,7 @@ Partial Annotations for MultiplexCell Instance Segmentation.""" ; biotools:primaryContact "Terry Meehan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "Package contains methods for data retrieval from IMPC Database." ; @@ -252687,7 +259446,7 @@ Partial Annotations for MultiplexCell Instance Segmentation.""" ; biotools:primaryContact "Jeremy Mason" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2269, @@ -252703,7 +259462,7 @@ Partial Annotations for MultiplexCell Instance Segmentation.""" ; sc:url "http://bogdan.bioinformatics.ucla.edu/software/impg/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -252722,8 +259481,34 @@ Partial Annotations for MultiplexCell Instance Segmentation.""" ; sc:name "IMPMD" ; sc:url "https://github.com/Sunmile/IMPMD" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0196, + edam:topic_0602, + edam:topic_3174, + edam:topic_3837 ; + sc:citation ; + sc:description "iMPP is a tool designed to predict and assemble peptides from short fragmentary reads. iMPP is written in C++ and has been tested on a 64-bit Linux system. The input for the software are FASTQ sequences, and the output comprises of 4 files: 1. predicted genes (nucl), 2. predicted peptides (prot), 3. gene predictions in gff format, 4. assembled peptide sequences (prot)." ; + sc:featureList edam:operation_0524, + edam:operation_0525, + edam:operation_3644, + edam:operation_3660 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "iMPP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Sirisha-t/iMPP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0804, edam:topic_2830, @@ -252741,7 +259526,7 @@ Partial Annotations for MultiplexCell Instance Segmentation.""" ; biotools:primaryContact "Xiao Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3344, @@ -252759,7 +259544,7 @@ Partial Annotations for MultiplexCell Instance Segmentation.""" ; biotools:primaryContact "Fang Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3077, @@ -252780,7 +259565,7 @@ improv is a streaming software platform designed to enable adaptive experiments. sc:url "http://github.com/pearsonlab/improv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, @@ -252802,7 +259587,7 @@ Identifying stabilising variants of membrane protein targets is often required f sc:url "http://improver.ddns.net/IMPROvER/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -252822,7 +259607,7 @@ Identifying stabilising variants of membrane protein targets is often required f "Nir Yosef" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -252843,7 +259628,7 @@ Identifying stabilising variants of membrane protein targets is often required f biotools:primaryContact "David S Fischer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091, @@ -252852,11 +259637,14 @@ Identifying stabilising variants of membrane protein targets is often required f sc:isAccessibleForFree true ; sc:license "MIT" ; sc:name "impuSARS" ; - sc:softwareVersion "1.0" ; + sc:softwareVersion "v1.0", + "v2.0", + "v3.0", + "v3.1" ; sc:url "https://github.com/babelomics/impuSARS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -252875,7 +259663,7 @@ Identifying stabilising variants of membrane protein targets is often required f biotools:primaryContact "Balasubramanian Narasimhan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation , @@ -252893,10 +259681,10 @@ Identifying stabilising variants of membrane protein targets is often required f a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0769, @@ -252919,7 +259707,7 @@ Identifying stabilising variants of membrane protein targets is often required f sc:url "https://imputehr.statgen.ncsu.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -252938,7 +259726,7 @@ imputeqc is an R package and accompanied scripts to estimate the quality of impu sc:url "https://github.com/inzilico/imputeqc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -252953,8 +259741,29 @@ imputeqc is an R package and accompanied scripts to estimate the quality of impu sc:url "https://www.mathworks.com/matlabcentral/fileexchange/61376-imread_big-read-in-tiff-stacks-larger-than-4gb" ; biotools:primaryContact "Tristan Ursell" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0659, + edam:topic_2640, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8784420", + "pubmed:35082835" ; + sc:description "ImReLnc accurately identified the irlncRNA characteristics in multiple cancers based on the heuristic correlation coefficient" ; + sc:featureList edam:operation_0314, + edam:operation_3461, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ImReLnc" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/meihonggao/ImReLnc" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -252972,8 +259781,24 @@ iMRM is able to simultaneously identify m6A, m5C, m1A, ψ and A-to-I modificatio sc:name "iMRM" ; sc:url "http://www.bioml.cn/XG_iRNA/home" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC4748260", + "pubmed:26861761" ; + sc:description "This is developed for designing a single-strand RNA sequence with desired immunomodulatory potentials in order to develop RNA-based therapeutics, immunotherapy and vaccine-adjuvants. This server also facilitates the users in computer-aided designing of siRNAs with desired toxicity." ; + sc:featureList edam:operation_2945 ; + sc:name "imrna" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/imrna/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3172, @@ -252994,7 +259819,7 @@ iMRM is able to simultaneously identify m6A, m5C, m1A, ψ and A-to-I modificatio biotools:primaryContact "Jan Baumbach" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -253013,8 +259838,33 @@ iMRM is able to simultaneously identify m6A, m5C, m1A, ψ and A-to-I modificatio sc:url "http://www.imtools.org/" ; biotools:primaryContact "Leon Kuchenbecke" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Library" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0154, + edam:topic_0602, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9194865", + "pubmed:35569805" ; + sc:description "The software ImShot aims to identifying peptides obtained in MALDI-IMS." ; + sc:featureList edam:operation_0337, + edam:operation_3627, + edam:operation_3629, + edam:operation_3767 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "ImShot" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/wasimaftab/ImShot" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3365, @@ -253038,7 +259888,7 @@ Simulation of two-dimensional small angle X-ray scattering patterns and, further sc:url "https://www.embl-hamburg.de/biosaxs/manuals/imsim.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -253056,7 +259906,7 @@ Simulation of two-dimensional small angle X-ray scattering patterns and, further "Tatsuhiko Tsunoda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3366, @@ -253073,8 +259923,36 @@ The 'iMUBAC' package provides a structured framework for objective inter-batch c sc:name "iMUBAC" ; sc:url "https://github.com/casanova-lab/iMUBAC" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0154, + edam:topic_0601, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8460736", + "pubmed:34556767" ; + sc:description "Computational identification of multiple lysine PTM sites by analyzing the instance hardness and feature importance." ; + sc:featureList edam:operation_0417, + edam:operation_1777, + edam:operation_3431, + edam:operation_3645 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "iMul-kSite" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://103.99.176.239/iMul-kSite" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2269, @@ -253085,7 +259963,7 @@ The 'iMUBAC' package provides a structured framework for objective inter-batch c sc:url "https://zhiyang.shinyapps.io/iMutSig/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0154, @@ -253106,14 +259984,13 @@ In-Pero: Prediction of sub-peroxisomal localisation using deep learning embeddin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269, @@ -253134,7 +260011,7 @@ In-Pero: Prediction of sub-peroxisomal localisation using deep learning embeddin sc:url "https://indelphi.giffordlab.mit.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Christian Ramon Cortes", @@ -253152,7 +260029,7 @@ In-Pero: Prediction of sub-peroxisomal localisation using deep learning embeddin biotools:primaryContact "Laia Codó" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654 ; @@ -253169,7 +260046,7 @@ In-Pero: Prediction of sub-peroxisomal localisation using deep learning embeddin sc:url "http://bioinfo.hr/research/inca/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2640, @@ -253184,23 +260061,8 @@ Comparative analysis of model performance for rate data.""" ; sc:name "incAnalysis" ; sc:url "http://github.com/mknoll/incAnalysis" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_3419 ; - sc:citation , - "pubmed:31829646" ; - sc:description """Modeling life course pathways affecting behavioral health. - -A consequence of a growing incarceration rate is that an increasing number of children face having an incarcerated household member, a known contributor to diverse lifelong behavioral health risks such as substance use and mental health impairment. Few studies have explored how household incarceration uniquely contributes to these subsequent behavioral health concerns, nor mediational contributors to these associations, within a theoretical framework. Using state Behavioral Risk Factor Surveillance System survey data (n = 14,001), this study tests pathways of household incarceration and Adverse Childhood Experiences (ACEs) to mental health impairment and substance use in adulthood. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'household incarceration'""" ; - sc:name "incarceration" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31829646" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -253218,7 +260080,7 @@ A consequence of a growing incarceration rate is that an increasing number of ch biotools:primaryContact "Barash D." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602 ; @@ -253238,7 +260100,7 @@ A consequence of a growing incarceration rate is that an increasing number of ch biotools:primaryContact "Robrecht Cannoodt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3071 ; @@ -253254,7 +260116,7 @@ A consequence of a growing incarceration rate is that an increasing number of ch sc:url "http://www.chemspider.com/InChI.asmx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3324 ; @@ -253276,7 +260138,7 @@ A consequence of a growing incarceration rate is that an increasing number of ch biotools:primaryContact "Zhian N. Kamvar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0203 ; @@ -253290,7 +260152,7 @@ A consequence of a growing incarceration rate is that an increasing number of ch sc:url "http://www.esat.kuleuven.ac.be/inclusive" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3295, edam:topic_3512, @@ -253310,7 +260172,7 @@ A consequence of a growing incarceration rate is that an increasing number of ch biotools:primaryContact "Dr. Clemens Wrzodek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3336, @@ -253330,7 +260192,7 @@ A consequence of a growing incarceration rate is that an increasing number of ch biotools:primaryContact "Phil J. Chapman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0821, edam:topic_3068, @@ -253348,7 +260210,7 @@ A consequence of a growing incarceration rate is that an increasing number of ch biotools:primaryContact "Lilly M. Saleena" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0607 ; @@ -253363,7 +260225,7 @@ A consequence of a growing incarceration rate is that an increasing number of ch biotools:primaryContact "Joseph J. Kieber" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0602, @@ -253379,8 +260241,33 @@ A consequence of a growing incarceration rate is that an increasing number of ch biotools:primaryContact "David Koslicki", "Molly Megraw" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_0209, + edam:topic_3324, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8826379", + "pubmed:34908131" ; + sc:description "3D fully convolutional neural networks to assist in silico drug design on protein-protein interactions." ; + sc:featureList edam:operation_0244, + edam:operation_0416, + edam:operation_2575, + edam:operation_3899, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "InDeep" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.pasteur.fr/InDeep/InDeep" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -253395,7 +260282,7 @@ A consequence of a growing incarceration rate is that an increasing number of ch biotools:primaryContact "Cory L. Strope" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080 ; @@ -253410,7 +260297,7 @@ A consequence of a growing incarceration rate is that an increasing number of ch biotools:primaryContact "Michael S. Rosenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -253432,7 +260319,7 @@ A consequence of a growing incarceration rate is that an increasing number of ch biotools:primaryContact "Bin Gong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0102, @@ -253454,7 +260341,7 @@ A consequence of a growing incarceration rate is that an increasing number of ch sc:url "https://github.com/stjude/indelPost" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -253469,23 +260356,8 @@ A consequence of a growing incarceration rate is that an increasing number of ch sc:name "INDELSCAN" ; sc:url "http://indelscan.genomics.sinica.edu.tw/IndelScan/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_3421 ; - sc:citation , - "pubmed:31633601" ; - sc:description """Potential Association Between Perioperative Fluid Management and Occurrence of Postoperative Ileus. - -BACKGROUND:Postoperative ileus remains an issue after colorectal surgery delaying recovery and increasing the length of hospital stay and costs. OBJECTIVE:The purpose of this study was to analyze the impact of perioperative fluid management on ileus occurrence after colorectal surgery within a fully implemented enhanced recovery pathway. DESIGN:This was a retrospective cohort study of a prospectively maintained institutional database. SETTINGS:The study was conducted at a tertiary academic facility with fully implemented standardized enhanced recovery pathway over the entire study period. PATIENTS:All of the consecutive elective major colorectal resections for benign or malign indications between 2011 and 2016 were included. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'B54', 'El ileo postoperatorio', 'para el ileo postoperatorio', 'riesgo independientes para el ileo'""" ; - sc:name "independientes para el ileo postoperatorio" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31633601" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3572, @@ -253503,7 +260375,7 @@ BACKGROUND:Postoperative ileus remains an issue after colorectal surgery delayin biotools:primaryContact "Brent S Pedersen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3382 ; @@ -253517,7 +260389,7 @@ Simple and effective: IndexNet Matting only deals with the upsampling stage but sc:url "https://git.io/IndexNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -253535,18 +260407,18 @@ Simple and effective: IndexNet Matting only deals with the upsampling stage but a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -253565,7 +260437,7 @@ Simple and effective: IndexNet Matting only deals with the upsampling stage but biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -253586,22 +260458,22 @@ IndiGenomes Resource of Population Genomes from India.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2970" ; - sc:name "Protein hydropathy data" ; - sc:sameAs "http://edamontology.org/data_2970" ], + sc:additionalType "http://edamontology.org/data_2970" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein hydropathy data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1238" ; - sc:name "Proteolytic digest" ; - sc:sameAs "http://edamontology.org/data_1238" ], + sc:additionalType "http://edamontology.org/data_1238" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Proteolytic digest" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1522" ; - sc:name "Protein sequence hydropathy plot" ; - sc:sameAs "http://edamontology.org/data_1522" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1522" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein sequence hydropathy plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -253619,7 +260491,7 @@ IndiGenomes Resource of Population Genomes from India.""" ; sc:url "http://indigestionapp.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0622, @@ -253639,7 +260511,7 @@ IndiGenomes Resource of Population Genomes from India.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -253659,7 +260531,7 @@ IndiGenomes Resource of Population Genomes from India.""" ; biotools:primaryContact "Xiao Yun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3297, @@ -253678,7 +260550,7 @@ IndiGenomes Resource of Population Genomes from India.""" ; biotools:primaryContact "Stephen Goldrick" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, edam:topic_2640, @@ -253695,26 +260567,8 @@ IndiGenomes Resource of Population Genomes from India.""" ; biotools:primaryContact , . - a sc:SoftwareApplication ; - sc:additionalType "Web application" ; - sc:applicationSubCategory edam:topic_2269, - edam:topic_3305, - edam:topic_3379 ; - sc:citation , - "pmcid:PMC6815418", - "pubmed:31655566" ; - sc:description """Interpreting HIV diagnostic histories into infection time estimates. - -BACKGROUND:It is frequently of epidemiological and or clinical interest to estimate the date of HIV infection or time-since-infection of individuals. Yet, for over 15 years, the only widely-referenced infection dating algorithm that utilises diagnostic testing data to estimate time-since-infection has been the 'Fiebig staging' system. This defines a number of stages of early HIV infection through various standard combinations of contemporaneous discordant diagnostic results using tests of different sensitivity. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'infection dating tool', 'infection date', 'interpretation diagnostic', 'interpretation diagnostic testing'""" ; - sc:featureList edam:operation_3196, - edam:operation_3435 ; - sc:name "infection dating" ; - sc:url "https://tools.incidence-estimation.org/idt/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0218, edam:topic_2840, @@ -253736,7 +260590,7 @@ BACKGROUND:It is frequently of epidemiological and or clinical interest to estim sc:url "https://github.com/XingqiaoWang/DeepCausalPV-master" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0622, @@ -253753,21 +260607,23 @@ BACKGROUND:It is frequently of epidemiological and or clinical interest to estim a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1354" ; - sc:name "Sequence profile" ; - sc:sameAs "http://edamontology.org/data_1354" ] ; + sc:additionalType "http://edamontology.org/data_1354" ; + sc:encodingFormat "http://edamontology.org/format_2069" ; + sc:name "Sequence profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation , + "pmcid:PMC3810854", + "pubmed:24008419" ; sc:description "Infernal (\"INFERence of RNA ALignment\") is for searching DNA sequence databases for RNA structure and sequence similarities. It is an implementation of a special case of profile stochastic context-free grammars called covariance models (CMs). A CM is like a sequence profile, but it scores a combination of sequence consensus and RNA secondary structure consensus, so in many cases, it is more capable of identifying RNA homologs that conserve their secondary structure more than their primary sequence." ; sc:featureList edam:operation_2478 ; sc:name "Infernal" ; sc:url "http://eddylab.org/infernal/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -253782,7 +260638,7 @@ BACKGROUND:It is frequently of epidemiological and or clinical interest to estim sc:url "http://www.ebi.ac.uk/Tools/webservices/services/rna/infernal_cmscan_rest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2885, @@ -253803,7 +260659,7 @@ BACKGROUND:It is frequently of epidemiological and or clinical interest to estim sc:url "http://www.statlab.wisc.edu/shiny/INFIMA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2640, @@ -253819,8 +260675,39 @@ BACKGROUND:It is frequently of epidemiological and or clinical interest to estim biotools:primaryContact "Naiqian Zhang", "Xiaoqi Zheng" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1196" ; + sc:name "Structure" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1009" ; + sc:name "Protein name" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2646" ; + sc:name "Compound ID (ChEMBL)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0209, + edam:topic_0218, + edam:topic_3373, + edam:topic_3375 ; + sc:citation ; + sc:description "Web-Based Database and Predictor of Anti-Inflammatory Natural Products." ; + sc:featureList edam:operation_0303, + edam:operation_3454, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "InflamNat" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.inflamnat.com/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -253842,13 +260729,13 @@ BACKGROUND:It is frequently of epidemiological and or clinical interest to estim sc:url "https://cran.r-project.org/web/packages/Inflect/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "influx_si estimates metabolic fluxes and concentrations based on stationary or dynamic labeling experiments conducted on cultures held in a metabolically stationary state." ; sc:name "influx_si" ; sc:url "https://metasys.insa-toulouse.fr/software/influx/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_2275 ; @@ -253863,7 +260750,7 @@ BACKGROUND:It is frequently of epidemiological and or clinical interest to estim biotools:primaryContact "Siyu Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -253887,18 +260774,15 @@ BACKGROUND:It is frequently of epidemiological and or clinical interest to estim a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0867" ; + sc:name "Sequence alignment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -253929,7 +260813,7 @@ BACKGROUND:It is frequently of epidemiological and or clinical interest to estim sc:url "http://emboss.open-bio.org/rel/rel6/apps/infoalign.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Information on a multiple sequence alignment." ; @@ -253944,14 +260828,14 @@ BACKGROUND:It is frequently of epidemiological and or clinical interest to estim a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -253986,7 +260870,7 @@ BACKGROUND:It is frequently of epidemiological and or clinical interest to estim sc:url "http://www.bioinformatics.nl/cgi-bin/emboss/infoassembly" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation , @@ -254016,7 +260900,7 @@ BACKGROUND:It is frequently of epidemiological and or clinical interest to estim sc:url "http://emboss.open-bio.org/rel/rel6/apps/infobase.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -254034,7 +260918,7 @@ BACKGROUND:It is frequently of epidemiological and or clinical interest to estim biotools:primaryContact "Noah A Rosenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0102, @@ -254058,18 +260942,15 @@ This site is an extension of the paper Identifying flow modules in ecological ne a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1505" ; - sc:name "Amino acid index (molecular weight)" ; - sc:sameAs "http://edamontology.org/data_1505" ], + sc:additionalType "http://edamontology.org/data_1505" ; + sc:name "Amino acid index (molecular weight)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1502" ; - sc:name "Amino acid index (chemical classes)" ; - sc:sameAs "http://edamontology.org/data_1502" ] ; + sc:additionalType "http://edamontology.org/data_1502" ; + sc:name "Amino acid index (chemical classes)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation , @@ -254099,7 +260980,7 @@ This site is an extension of the paper Identifying flow modules in ecological ne sc:url "http://emboss.open-bio.org/rel/rel6/apps/inforesidue.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053, @@ -254115,7 +260996,7 @@ This site is an extension of the paper Identifying flow modules in ecological ne biotools:primaryContact "Dario Greco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3318 ; @@ -254131,7 +261012,7 @@ This site is an extension of the paper Identifying flow modules in ecological ne biotools:primaryContact "Albert Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -254155,14 +261036,14 @@ Input data for MiXeR consists of summary statistics from a GWAS, and a reference a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3483" ; - sc:name "Spectrum" ; - sc:sameAs "http://edamontology.org/data_3483" ] ; + sc:additionalType "http://edamontology.org/data_3483" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3047, @@ -254179,7 +261060,7 @@ Input data for MiXeR consists of summary statistics from a GWAS, and a reference sc:url "https://github.com/PNNL-Comp-Mass-Spec/Informed-Proteomics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -254197,18 +261078,18 @@ Input data for MiXeR consists of summary statistics from a GWAS, and a reference a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0880" ; - sc:name "RNA secondary structure" ; - sc:sameAs "http://edamontology.org/data_0880" ] ; + sc:additionalType "http://edamontology.org/data_0880" ; + sc:encodingFormat "http://edamontology.org/format_1457" ; + sc:name "RNA secondary structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_3311" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author , @@ -254233,14 +261114,12 @@ Input data for MiXeR consists of summary statistics from a GWAS, and a reference a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -254271,22 +261150,21 @@ Input data for MiXeR consists of summary statistics from a GWAS, and a reference a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2858" ; - sc:name "Ontology concept" ; - sc:sameAs "http://edamontology.org/data_2858" ], + sc:additionalType "http://edamontology.org/data_2858" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Ontology concept" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2858" ; - sc:name "Ontology concept" ; - sc:sameAs "http://edamontology.org/data_2858" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2858" ; + sc:encodingFormat "http://edamontology.org/format_2062" ; + sc:name "Ontology concept" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_1775 ; @@ -254307,7 +261185,7 @@ Input data for MiXeR consists of summary statistics from a GWAS, and a reference biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2885, @@ -254326,7 +261204,7 @@ Input data for MiXeR consists of summary statistics from a GWAS, and a reference "Ji Qi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0622, @@ -254343,7 +261221,7 @@ Input data for MiXeR consists of summary statistics from a GWAS, and a reference biotools:primaryContact "Fangqing ZhaoEmail author" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0102, @@ -254363,7 +261241,7 @@ Input data for MiXeR consists of summary statistics from a GWAS, and a reference biotools:primaryContact "Ji Qi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0102, @@ -254384,7 +261262,7 @@ Input data for MiXeR consists of summary statistics from a GWAS, and a reference "Ji Qi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -254401,7 +261279,7 @@ Input data for MiXeR consists of summary statistics from a GWAS, and a reference biotools:primaryContact "Bill Sunderland" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2885, @@ -254419,7 +261297,7 @@ Input data for MiXeR consists of summary statistics from a GWAS, and a reference biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0781, @@ -254443,7 +261321,7 @@ FluConvert and IniFlu (ver.1.0.0.0701).""" ; sc:url "https://apps.flutures.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3344, @@ -254461,7 +261339,7 @@ FluConvert and IniFlu (ver.1.0.0.0701).""" ; biotools:primaryContact "Sam Nazari" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814, @@ -254479,7 +261357,7 @@ FluConvert and IniFlu (ver.1.0.0.0701).""" ; biotools:primaryContact "Yan Xu Close" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -254498,7 +261376,7 @@ The Individual Meta Random Forest (InMeRF) is a tool to predict the pathogenicit sc:url "https://www.med.nagoya-u.ac.jp/neurogenetics/InMeRF/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, @@ -254520,7 +261398,7 @@ The Individual Meta Random Forest (InMeRF) is a tool to predict the pathogenicit biotools:primaryContact "Jeff Xia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0128 ; sc:citation ; @@ -254534,16 +261412,37 @@ The Individual Meta Random Forest (InMeRF) is a tool to predict the pathogenicit sc:softwareVersion "1" ; sc:url "http://www.innatedb.com/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_3077, + edam:topic_3305, + edam:topic_3324, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8758098", + "pubmed:34928936" ; + sc:description "Revealing mechanisms of infectious disease spread through empirical contact networks." ; + sc:featureList edam:operation_3435, + edam:operation_3461, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "INoDS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bansallab/INoDS-model" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_1775, edam:topic_3299 ; @@ -254558,16 +261457,32 @@ The Individual Meta Random Forest (InMeRF) is a tool to predict the pathogenicit sc:softwareHelp ; sc:url "http://inparanoid.sbc.su.se/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:citation , + "pubmed:35357425" ; + sc:description "Accurate and fast ortholog detection." ; + sc:featureList edam:operation_2421, + edam:operation_3663 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "InParanoid-DIAMOND" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bitbucket.org/sonnhammergroup/inparanoid" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3583" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170, @@ -254588,7 +261503,7 @@ The Individual Meta Random Forest (InMeRF) is a tool to predict the pathogenicit biotools:primaryContact "Jianhong Ou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2885, @@ -254607,7 +261522,7 @@ The Individual Meta Random Forest (InMeRF) is a tool to predict the pathogenicit biotools:primaryContact "Bill Wheeler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -254626,14 +261541,14 @@ The Individual Meta Random Forest (InMeRF) is a tool to predict the pathogenicit a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199 ; @@ -254656,30 +261571,30 @@ The Individual Meta Random Forest (InMeRF) is a tool to predict the pathogenicit a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1008" ; - sc:name "Polypeptide chain ID" ; - sc:sameAs "http://edamontology.org/data_1008" ] ; + sc:additionalType "http://edamontology.org/data_1008" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Polypeptide chain ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ], + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, @@ -254703,8 +261618,30 @@ The Individual Meta Random Forest (InMeRF) is a tool to predict the pathogenicit biotools:primaryContact "Castrense Savojardo", "Piero Fariselli" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0202, + edam:topic_0602, + edam:topic_0749, + edam:topic_3303 ; + sc:citation , + "pmcid:PMC8933636", + "pubmed:35356545" ; + sc:description "An intelligent network pharmacology platform unique for traditional Chinese medicine." ; + sc:featureList edam:operation_0224, + edam:operation_2436, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:name "INPUT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://cbcb.cdutcm.edu.cn/INPUT/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0123, @@ -254722,7 +261659,7 @@ The Individual Meta Random Forest (InMeRF) is a tool to predict the pathogenicit biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3308, @@ -254743,46 +261680,41 @@ a, INSCT learns a data representation, which integrates cells across batches. Th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1103" ; - sc:name "EMBL/GenBank/DDBJ ID" ; - sc:sameAs "http://edamontology.org/data_1103" ], + sc:additionalType "http://edamontology.org/data_1103" ; + sc:name "EMBL/GenBank/DDBJ ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1103" ; - sc:name "EMBL/GenBank/DDBJ ID" ; - sc:sameAs "http://edamontology.org/data_1103" ], + sc:additionalType "http://edamontology.org/data_1103" ; + sc:name "EMBL/GenBank/DDBJ ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1103" ; - sc:name "EMBL/GenBank/DDBJ ID" ; - sc:sameAs "http://edamontology.org/data_1103" ], + sc:additionalType "http://edamontology.org/data_1103" ; + sc:name "EMBL/GenBank/DDBJ ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1103" ; - sc:name "EMBL/GenBank/DDBJ ID" ; - sc:sameAs "http://edamontology.org/data_1103" ], + sc:additionalType "http://edamontology.org/data_1103" ; + sc:name "EMBL/GenBank/DDBJ ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1103" ; - sc:name "EMBL/GenBank/DDBJ ID" ; - sc:sameAs "http://edamontology.org/data_1103" ] ; + sc:additionalType "http://edamontology.org/data_1103" ; + sc:name "EMBL/GenBank/DDBJ ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080 ; @@ -254800,7 +261732,7 @@ a, INSCT learns a data representation, which integrates cells across batches. Th biotools:primaryContact "ENA Contact details" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -254817,7 +261749,7 @@ a, INSCT learns a data representation, which integrates cells across batches. Th biotools:primaryContact "Dr. Patricio Yankilevich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0623, @@ -254837,7 +261769,7 @@ Prediction of odorant receptor genes from newly sequenced insect genomes is a di sc:url "http://caps.ncbs.res.in/insectOR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0085, @@ -254860,7 +261792,7 @@ Prediction of odorant receptor genes from newly sequenced insect genomes is a di biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -254879,7 +261811,7 @@ Prediction of odorant receptor genes from newly sequenced insect genomes is a di biotools:primaryContact "Chunguang Du" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0632, @@ -254897,7 +261829,7 @@ Prediction of odorant receptor genes from newly sequenced insect genomes is a di sc:url "http://insignia.cbcb.umd.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3172 ; @@ -254912,7 +261844,7 @@ Prediction of odorant receptor genes from newly sequenced insect genomes is a di biotools:primaryContact "Oliver Fiehn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -254935,7 +261867,7 @@ Prediction of odorant receptor genes from newly sequenced insect genomes is a di biotools:primaryContact "Bikandi J." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -254953,7 +261885,7 @@ Prediction of odorant receptor genes from newly sequenced insect genomes is a di biotools:primaryContact "Alexandre Masselot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -254973,7 +261905,7 @@ Prediction of odorant receptor genes from newly sequenced insect genomes is a di biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -255008,18 +261940,18 @@ GeneRegulation, RNASeq, Sequencing, Software, SystemsBiology, TimeCourse. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -255042,7 +261974,7 @@ GeneRegulation, RNASeq, Sequencing, Software, SystemsBiology, TimeCourse. biotools:primaryContact "Natalie Castellana" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3127, @@ -255060,7 +261992,7 @@ GeneRegulation, RNASeq, Sequencing, Software, SystemsBiology, TimeCourse. biotools:primaryContact "Frederic D. Bushman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3315, @@ -255076,7 +262008,7 @@ GeneRegulation, RNASeq, Sequencing, Software, SystemsBiology, TimeCourse. biotools:primaryContact "Rex Cheung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -255093,7 +262025,7 @@ GeneRegulation, RNASeq, Sequencing, Software, SystemsBiology, TimeCourse. biotools:primaryContact "Rex Cheung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -255122,7 +262054,7 @@ Note to OS X users: There is currently no CUDA support on Mojave (10.14) and it sc:url "https://github.com/koszullab/instaGRAAL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -255141,7 +262073,7 @@ Get in touch with Team InstaDock.""" ; sc:url "https://hassanlab.org/instadock" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, @@ -255160,7 +262092,7 @@ InstantDL enables experts and non-experts to use state-of-the art deep learning sc:url "https://github.com/marrlab/InstantDL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -255194,8 +262126,29 @@ InstantDL enables experts and non-experts to use state-of-the art deep learning sc:url "http://www.ttk.mta.hu/en/szolgaltatas/adatbazisok/" ; biotools:primaryContact "Istva´n Simon*" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_0611, + edam:topic_2828, + edam:topic_3448, + edam:topic_3452 ; + sc:citation , + "pubmed:34866631" ; + sc:description "Integrating High-End Services for Translational Research in Structural Biology." ; + sc:featureList edam:operation_0337, + edam:operation_2421, + edam:operation_3457 ; + sc:isAccessibleForFree true ; + sc:name "Instruct-ERIC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://instruct-eric.eu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053, @@ -255212,7 +262165,7 @@ InstantDL enables experts and non-experts to use state-of-the art deep learning sc:url "http://genome.jouy.inra.fr/Insyght" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -255240,14 +262193,14 @@ InstantDL enables experts and non-experts to use state-of-the art deep learning a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130 ; sc:author , @@ -255269,14 +262222,13 @@ InstantDL enables experts and non-experts to use state-of-the art deep learning a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128 ; sc:citation ; @@ -255291,7 +262243,7 @@ InstantDL enables experts and non-experts to use state-of-the art deep learning sc:url "http://www.ebi.ac.uk/intact/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -255311,7 +262263,7 @@ InstantDL enables experts and non-experts to use state-of-the art deep learning "Pablo Porras" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -255333,22 +262285,22 @@ InstantDL enables experts and non-experts to use state-of-the art deep learning a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1027" ; - sc:name "Gene ID (NCBI)" ; - sc:sameAs "http://edamontology.org/data_1027" ] ; + sc:additionalType "http://edamontology.org/data_1027" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene ID (NCBI)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0954" ; - sc:name "Database cross-mapping" ; - sc:sameAs "http://edamontology.org/data_0954" ], + sc:additionalType "http://edamontology.org/data_1288" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Genome map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1288" ; - sc:name "Genome map" ; - sc:sameAs "http://edamontology.org/data_1288" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0954" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Database cross-mapping" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -255370,7 +262322,7 @@ InstantDL enables experts and non-experts to use state-of-the art deep learning biotools:primaryContact "Wen Yao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, @@ -255390,30 +262342,30 @@ IntAPT is a C++ package to identify alternatively spliced isoforms using multipl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ], + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Feature table" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ], + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Feature table" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Patrick Wright" ; @@ -255436,7 +262388,7 @@ IntAPT is a C++ package to identify alternatively spliced isoforms using multipl "Patrick Wright" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -255459,7 +262411,7 @@ GNU General Public License, GPLv3.""" ; sc:url "https://github.com/whweve/IntAssoPlot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -255483,7 +262435,7 @@ GNU General Public License, GPLv3.""" ; biotools:primaryContact "José B Pereira-Leal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -255503,7 +262455,7 @@ GNU General Public License, GPLv3.""" ; biotools:primaryContact "Leo Lahti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, @@ -255527,7 +262479,7 @@ Search for DME Entries by DME Name:.""" ; sc:url "https://idrblab.org/intede/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3070, @@ -255543,7 +262495,7 @@ Search for DME Entries by DME Name:.""" ; biotools:primaryContact "Plamen Trayanov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0602, @@ -255566,7 +262518,7 @@ Search for DME Entries by DME Name:.""" ; "Thomas Jové (Curation and In numbering attributions)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3168, @@ -255583,7 +262535,7 @@ Search for DME Entries by DME Name:.""" ; biotools:primaryContact "Christopher Maher's Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2830, @@ -255603,7 +262555,7 @@ ICSCB is operated by CiRA,Kyoto University. It is an Intergerated Collection of sc:url "http://icscb.stemcellinformatics.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3518, edam:topic_3673 ; @@ -255618,7 +262570,7 @@ ICSCB is operated by CiRA,Kyoto University. It is an Intergerated Collection of sc:url "https://github.com/vibansal/IntegratedPhasing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654 ; @@ -255634,7 +262586,7 @@ ICSCB is operated by CiRA,Kyoto University. It is an Intergerated Collection of sc:url "http://genius.embnet.dkfz-heidelberg.de/menu/cgi-bin/w2h-open/w2h.open/w2h.welcome#integrationmap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0769, @@ -255655,7 +262607,7 @@ ICSCB is operated by CiRA,Kyoto University. It is an Intergerated Collection of biotools:primaryContact "Ettore Mosca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640 ; @@ -255676,32 +262628,40 @@ ICSCB is operated by CiRA,Kyoto University. It is an Intergerated Collection of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Feature table" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0085, edam:topic_0798, edam:topic_3047 ; - sc:author "Bertrand Neron" ; - sc:citation ; - sc:contributor "ERC EVOMOBILOME" ; + sc:author ; + sc:citation , + ; + sc:contributor , + , + , + "ERC EVOMOBILOME", + "INCEPTION", + "Laboratoire d’Excellence IBEID Integrative Biology of Emerging Infectious Diseases" ; sc:description "A tool to detect Integron in DNA sequences." ; sc:featureList edam:operation_0239, edam:operation_0362, edam:operation_0415, edam:operation_3092 ; - sc:funder "ERC EVOMOBILOME" ; + sc:funder "ERC EVOMOBILOME", + "INCEPTION", + "Laboratoire d’Excellence IBEID Integrative Biology of Emerging Infectious Diseases" ; sc:isAccessibleForFree true ; sc:license "GPL-3.0" ; sc:name "Integron Finder" ; @@ -255709,14 +262669,15 @@ ICSCB is operated by CiRA,Kyoto University. It is an Intergerated Collection of "Mac" ; sc:provider "Institut Pasteur" ; sc:softwareHelp ; - sc:softwareVersion "1.5.1" ; + sc:softwareVersion "1.5.1", + "2.0.1" ; sc:url "https://github.com/gem-pasteur/Integron_Finder" ; biotools:primaryContact "Bertrand Neron", "Eduardo Rocha", "Jean Cury" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -255733,7 +262694,7 @@ ICSCB is operated by CiRA,Kyoto University. It is an Intergerated Collection of sc:url "http://omics.informatics.indiana.edu/integron/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3343, @@ -255747,8 +262708,28 @@ The first step of automating composition patent drafting is to draft the claims sc:name "IntelliPatent" ; sc:url "https://intellipatent.cmdm.tw/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3361, + edam:topic_3372, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8570781", + "pubmed:34601559" ; + sc:description "Graphical User Interface for automatic analyses of IntelliCage data in .xlsx file" ; + sc:featureList edam:operation_0337, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "IntelliPy" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/NiRuff/IntelliPy" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -255762,7 +262743,7 @@ The first step of automating composition patent drafting is to draft the claims sc:url "http://cqb.pku.edu.cn/ZhuLab/InteMAP/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0821 ; sc:citation ; @@ -255777,7 +262758,7 @@ The first step of automating composition patent drafting is to draft the claims sc:url "http://www.ebi.ac.uk/intenz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0203, @@ -255796,7 +262777,7 @@ The first step of automating composition patent drafting is to draft the claims "Yadong Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -255816,7 +262797,7 @@ The first step of automating composition patent drafting is to draft the claims biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3382 ; @@ -255832,7 +262813,7 @@ The first step of automating composition patent drafting is to draft the claims biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091, @@ -255851,7 +262832,7 @@ The first step of automating composition patent drafting is to draft the claims biotools:primaryContact "Shawn Balcome" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091, @@ -255870,7 +262851,7 @@ The first step of automating composition patent drafting is to draft the claims biotools:primaryContact "Shawn Balcome" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2269, @@ -255889,7 +262870,7 @@ The first step of automating composition patent drafting is to draft the claims biotools:primaryContact "Henry Heberle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, @@ -255905,7 +262886,7 @@ The first step of automating composition patent drafting is to draft the claims biotools:primaryContact "Christopher Bystroff" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:23399932" ; sc:description "Network-centered approaches are increasingly used to understand the fundamentals of biology. However, the molecular details contained in the interaction networks, often necessary to understand cellular processes, are very limited, and the experimental difficulties surrounding the determination of protein complex structures make computational modeling techniques paramount. Interactome3D is a resource for the structural annotation and modeling of protein-protein interactions. Through the integration of interaction data from the main pathway repositories, we provide structural details at atomic resolution for over 12,000 protein-protein interactions in eight model organisms. Unlike static databases, Interactome3D also allows biologists to upload newly discovered interactions and pathways in any species, select the best combination of structural templates and build three-dimensional models in a fully automated manner." ; @@ -255914,14 +262895,13 @@ The first step of automating composition patent drafting is to draft the claims a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1048" ; - sc:name "Database ID" ; - sc:sameAs "http://edamontology.org/data_1048" ] ; + sc:additionalType "http://edamontology.org/data_1048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0128, @@ -255944,7 +262924,7 @@ The first step of automating composition patent drafting is to draft the claims biotools:primaryContact "Juan Felipe Beltrán" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -255968,7 +262948,7 @@ InteractomeSeq is a web server allowing domainome data analysis from either Euka sc:url "https://InteractomeSeq.ba.itb.cnr.it/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0632, @@ -255985,16 +262965,55 @@ InteractomeSeq is a web server allowing domainome data analysis from either Euka sc:url "https://github.com/Psy-Fer/interARTIC/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3047 ; + sc:citation , + "pubmed:34499117" ; + sc:description "The Interface Contact definition with Adaptable Atom Types (INTERCAAT) was developed to determine the atomic interactions between molecules that form a known three dimensional structure." ; + sc:featureList edam:operation_0387, + edam:operation_1836, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "INTERCAAT" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://gitlab.com/fiserlab.org/intercaat" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0634, + edam:topic_3300, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC8752611", + "pubmed:35017628" ; + sc:description "InterCellar enables interactive analysis and exploration of cell-cell communication in single-cell transcriptomic data." ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "InterCellar" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/martaint/InterCellar" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -256010,8 +263029,29 @@ InteractomeSeq is a web server allowing domainome data analysis from either Euka sc:url "https://urgi.versailles.inra.fr/Tools/REPET" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0621, + edam:topic_3958 ; + sc:citation , + "pmcid:PMC8950762", + "pubmed:35328097" ; + sc:description "An R Package for High-Dimensional Interaction Analysis of the Repeated Measurement Data" ; + sc:featureList edam:operation_3435, + edam:operation_3659, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "interep" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cran.r-project.org/package=interep" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3170 ; @@ -256034,30 +263074,30 @@ InteractomeSeq is a web server allowing domainome data analysis from either Euka a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2877" ; - sc:name "Protein complex" ; - sc:sameAs "http://edamontology.org/data_2877" ], + sc:additionalType "http://edamontology.org/data_2877" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein complex" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2877" ; - sc:name "Protein complex" ; - sc:sameAs "http://edamontology.org/data_2877" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2877" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein complex" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0128, @@ -256078,7 +263118,7 @@ InteractomeSeq is a web server allowing domainome data analysis from either Euka "Jessica Andreani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -256098,7 +263138,7 @@ InteractomeSeq is a web server allowing domainome data analysis from either Euka biotools:primaryContact "Interevol coordinator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0208, edam:topic_3295, @@ -256113,7 +263153,7 @@ InteractomeSeq is a web server allowing domainome data analysis from either Euka sc:url "http://bio-bigdata.hrbmu.edu.cn/CancerDAP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -256129,7 +263169,7 @@ In recent years, increasing evidence has suggested that aberrant long non-coding sc:url "http://bio-bigdata.hrbmu.edu.cn/LncCASE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0821, edam:topic_3047 ; @@ -256150,7 +263190,7 @@ When using interferENZY, the user-provided dataset is only kept as long as inter sc:url "https://interferenzy.i3s.up.pt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -256172,7 +263212,7 @@ When using interferENZY, the user-provided dataset is only kept as long as inter biotools:primaryContact "Paul J. Hertzog" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0621, @@ -256191,13 +263231,13 @@ When using interferENZY, the user-provided dataset is only kept as long as inter biotools:primaryContact "Paul Kersey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "A program to interleave and deinterleave FASTQ files" ; sc:name "interleafq" ; sc:url "https://github.com/quadram-institute-bioscience/interleafq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -256215,18 +263255,18 @@ When using interferENZY, the user-provided dataset is only kept as long as inter a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Protein structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3534 ; @@ -256246,7 +263286,7 @@ When using interferENZY, the user-provided dataset is only kept as long as inter sc:url "http://cbs.dtu.dk/services/InterMap3D/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -256270,14 +263310,14 @@ When using interferENZY, the user-provided dataset is only kept as long as inter a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal", "Web API", @@ -256309,7 +263349,7 @@ When using interferENZY, the user-provided dataset is only kept as long as inter sc:url "http://www.intermine.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0121, @@ -256342,7 +263382,7 @@ When using interferENZY, the user-provided dataset is only kept as long as inter biotools:primaryContact "InterMine Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -256364,7 +263404,7 @@ When using interferENZY, the user-provided dataset is only kept as long as inter "Xiaowei Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -256387,7 +263427,7 @@ When using interferENZY, the user-provided dataset is only kept as long as inter "Xiaowei Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -256410,7 +263450,7 @@ When using interferENZY, the user-provided dataset is only kept as long as inter biotools:primaryContact "InteroPORC coordinator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -256428,7 +263468,7 @@ Abstract Motivation Peptide-protein interactions between a smaller or disordered sc:url "http://wallnerlab.org/InterPepRank" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "This software encodes amino acid sequences as numerical descriptor vectors using a database of currently 532 descriptors (mainly from AAindex), and normalizes sequences to uniform length with one of five linear or non-linear interpolation algorithms." ; @@ -256443,7 +263483,7 @@ Abstract Motivation Peptide-protein interactions between a smaller or disordered sc:url "https://www.uni-due.de/~hy0546/Interpol/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3053, @@ -256461,7 +263501,7 @@ Abstract Motivation Peptide-protein interactions between a smaller or disordered biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, @@ -256478,21 +263518,70 @@ Abstract Motivation Peptide-protein interactions between a smaller or disordered sc:url "http://bioinfo.ifm.liu.se/inter/interpred/" ; biotools:primaryContact "Björn Wallner" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3407, + edam:topic_3474 ; + sc:citation , + "pubmed:35348618" ; + sc:description "A freely available server for ADMET properties evaluation, model interpretation and chemical optimization." ; + sc:featureList edam:operation_2429, + edam:operation_3659, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:name "interpretable-ADMET" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://cadd.pharmacy.nankai.edu.cn/interpretableadmet/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1133" ; - sc:name "InterPro accession" ; - sc:sameAs "http://edamontology.org/data_1133" ] ; + sc:additionalType "http://edamontology.org/data_1133" ; + sc:name "InterPro accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1355" ; - sc:name "Protein signature" ; - sc:sameAs "http://edamontology.org/data_1355" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1355" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein signature" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0157, edam:topic_0623 ; - sc:citation ; + sc:citation , + , + , + , + , + , + , + , + , + , + , + , + "pmcid:PMC165493", + "pmcid:PMC1899100", + "pmcid:PMC2686546", + "pmcid:PMC3245097", + "pmcid:PMC4383996", + "pmcid:PMC5210578", + "pmcid:PMC540060", + "pmcid:PMC7778928", + "pubmed:11125043", + "pubmed:12230031", + "pubmed:12520011", + "pubmed:15608177", + "pubmed:17202162", + "pubmed:18940856", + "pubmed:21082426", + "pubmed:22096229", + "pubmed:25428371", + "pubmed:27899635", + "pubmed:30398656", + "pubmed:33156333" ; sc:description "Protein families, domains, regions, repeats and sites in which identifiable features found in known proteins can be applied to new protein sequences." ; sc:featureList edam:operation_0224 ; sc:name "InterPro" ; @@ -256505,24 +263594,26 @@ Abstract Motivation Peptide-protein interactions between a smaller or disordered a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_0858" ; + sc:name "Sequence signature matches" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0858" ; - sc:name "Sequence signature matches" ; - sc:sameAs "http://edamontology.org/data_0858" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0623 ; sc:author "InterPro team", "Web Production" ; - sc:citation ; + sc:citation , + , + , + "pmcid:PMC1160203", + "pubmed:11590104", + "pubmed:15980438" ; sc:description "Scan sequences against the InterPro protein signature databases." ; sc:featureList edam:operation_0239, edam:operation_3092 ; @@ -256538,7 +263629,7 @@ Abstract Motivation Peptide-protein interactions between a smaller or disordered biotools:primaryContact "Web Production" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -256553,7 +263644,7 @@ Abstract Motivation Peptide-protein interactions between a smaller or disordered sc:url "http://www.ebi.ac.uk/Tools/webservices/services/pfa/iprscan5_rest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3070, @@ -256569,7 +263660,7 @@ Abstract Motivation Peptide-protein interactions between a smaller or disordered biotools:primaryContact "Nick" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_2640, @@ -256589,7 +263680,7 @@ Abstract Motivation Peptide-protein interactions between a smaller or disordered biotools:primaryContact "Prabhakar Chalise" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -256607,7 +263698,7 @@ Abstract Motivation Peptide-protein interactions between a smaller or disordered sc:url "http://bioinfo.konkuk.ac.kr/INTERSPIA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -256629,7 +263720,7 @@ InterTADs is an open-source tool written in R, for integrating multi-omics data sc:url "https://github.com/BiodataAnalysisGroup/InterTADs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0208, edam:topic_3325, @@ -256651,14 +263742,14 @@ InterTADs is an open-source tool written in R, for integrating multi-omics data a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Sequence set" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3307 ; @@ -256679,7 +263770,7 @@ InterTADs is an open-source tool written in R, for integrating multi-omics data biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -256700,7 +263791,7 @@ InterTADs is an open-source tool written in R, for integrating multi-omics data biotools:primaryContact "Dr Liam J. McGuffin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Workflow" ; sc:applicationSubCategory edam:topic_0622 ; @@ -256728,18 +263819,18 @@ InterTADs is an open-source tool written in R, for integrating multi-omics data a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1009" ; - sc:name "Protein name" ; - sc:sameAs "http://edamontology.org/data_1009" ], + sc:additionalType "http://edamontology.org/data_1009" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602 ; sc:description "Tool for integrating secretomics and transcriptomics data in order to uncover paracrine cell crosstalk mechanisms." ; @@ -256754,7 +263845,7 @@ InterTADs is an open-source tool written in R, for integrating multi-omics data sc:url "https://github.com/herrsalmi/IntOmics/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0160, @@ -256771,7 +263862,7 @@ InterTADs is an open-source tool written in R, for integrating multi-omics data biotools:primaryContact "Andrew Martin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -256789,7 +263880,7 @@ InterTADs is an open-source tool written in R, for integrating multi-omics data biotools:primaryContact "Surajit Bhattacharya" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_0780, @@ -256806,7 +263897,7 @@ The Bougainvillea is a genus of thorny ornamental vines, bushes, or trees.""" ; sc:url "http://www.bio-add.org/InTransBo/index.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654, @@ -256825,7 +263916,7 @@ The Bougainvillea is a genus of thorny ornamental vines, bushes, or trees.""" ; sc:url "http://sunflower.kuicr.kyoto-u.ac.jp/~jbbrown/dnaRepairPrediction/v2/index.py" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -256848,7 +263939,7 @@ The Bougainvillea is a genus of thorny ornamental vines, bushes, or trees.""" ; biotools:primaryContact "Kimmen Sjölander" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0114, @@ -256866,7 +263957,7 @@ The Bougainvillea is a genus of thorny ornamental vines, bushes, or trees.""" ; sc:url "http://www.uwyo.edu/buerkle/software/introgress/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -256884,7 +263975,7 @@ The Bougainvillea is a genus of thorny ornamental vines, bushes, or trees.""" ; sc:url "https://github.com/BGI2016/IntroSpect" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0128, @@ -256902,7 +263993,7 @@ The Bougainvillea is a genus of thorny ornamental vines, bushes, or trees.""" ; sc:url "http://intscore.molgen.mpg.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:25380960" ; sc:description "Drug side effects are one of the main health threats worldwide, and an important obstacle in drug development. Understanding how adverse reactions occur requires knowledge on drug mechanisms at the molecular level. Despite recent advances, the need for tools and methods that facilitate side effect anticipation still remains. IntSide is a web server to elucidate the molecular processes involved in drug side effects through the integration of chemistry and biology. IntSide currently catalogues 1,175 side effects caused by 996 drugs, associated with drug features divided into eight categories, belonging to either biology or chemistry. On the biological side, IntSide reports drug targets and off-targets, pathways, molecular functions and biological processes. From a chemical viewpoint, it includes molecular fingerprints, scaffolds and chemical entities." ; @@ -256910,7 +264001,7 @@ The Bougainvillea is a genus of thorny ornamental vines, bushes, or trees.""" ; sc:url "https://intside.irbbarcelona.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -256925,7 +264016,7 @@ The Bougainvillea is a genus of thorny ornamental vines, bushes, or trees.""" ; sc:url "https://sourceforge.net/projects/intsim/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3320, @@ -256941,7 +264032,7 @@ The Bougainvillea is a genus of thorny ornamental vines, bushes, or trees.""" ; sc:url "http://www.med.nagoya-u.ac.jp/neurogenetics/IntSplice/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3125, @@ -256957,8 +264048,29 @@ The Bougainvillea is a genus of thorny ornamental vines, bushes, or trees.""" ; sc:url "http://lin.uestc.edu.cn/server/iNuc-PseKNC" ; biotools:primaryContact "Hao Lin" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0621, + edam:topic_3176 ; + sc:citation , + "pmcid:PMC8652021", + "pubmed:34623394" ; + sc:description "Given nucleosome genomic coordinates, ligation junctions (in pairs format) produced by the Pairtools program, the inucs command line tool identifies interactions falling into different nucleosomes and counts them." ; + sc:featureList edam:operation_0335, + edam:operation_0337, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "iNucs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Karimi-Lab/inucs/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_2269, @@ -256979,7 +264091,7 @@ This approach is generalisable to any subset of the InvaCost database, regardles sc:url "https://github.com/Farewe/invacost" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -257001,7 +264113,7 @@ Both fixRealData and fixSimuData are written in Shell for data preprocessing. In sc:url "https://github.com/wzj1234/InvBFM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3175 ; @@ -257016,7 +264128,7 @@ Both fixRealData and fixSimuData are written in Shell for data preprocessing. In sc:url "https://github.com/isglobal-brge/invClust" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -257031,7 +264143,7 @@ Both fixRealData and fixSimuData are written in Shell for data preprocessing. In biotools:primaryContact "Patrick Lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -257050,8 +264162,28 @@ Both fixRealData and fixSimuData are written in Shell for data preprocessing. In sc:url "http://bioconductor.org/packages/release/bioc/html/inveRsion.html" ; biotools:primaryContact "Alejandro Caceres" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0637, + edam:topic_0780, + edam:topic_3068, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC9216569", + "pubmed:35363307" ; + sc:description "An expert-curated web-based platform for the identification and classification of invertebrate-associated fungi and fungus-like organisms." ; + sc:featureList edam:operation_3460 ; + sc:isAccessibleForFree true ; + sc:name "invertebratefungi" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://invertebratefungi.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -257074,7 +264206,7 @@ Both fixRealData and fixSimuData are written in Shell for data preprocessing. In sc:url "https://github.com/vincent-hanlon/InvertypeR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3307 ; sc:author ; @@ -257094,7 +264226,7 @@ Both fixRealData and fixSimuData are written in Shell for data preprocessing. In biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -257117,26 +264249,8 @@ Both fixRealData and fixSimuData are written in Shell for data preprocessing. In sc:softwareHelp ; sc:url "http://invfestdb.uab.cat/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_2640, - edam:topic_3168, - edam:topic_3407, - edam:topic_3473 ; - sc:citation ; - sc:description """Passenger mutations as a target for the personalized therapy of cancer. - -The American FDA approved the first comprehensive NGS diagnostic assay for cancer at the end of 2017, leading the way to personalised therapy of cancer and the massive employ of bioinformatics (https: www.fda.gov downloads medicaldevices productsandmedicalprocedures invitrodiagnostics ucm584603.pdf ). In NGS-detected genes from cancer patients, driver and passenger mutations can be distinguished. The former provides a proliferative advantage to cancer cells and are commonly found, the latter do not provide proliferative fitness and are different in different patients. However, some passenger mutations might occur in genes involved in metabolism and could be mildly deleterious for cancer cells. - -||| HOMEPAGE BROKEN!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'passenger', 'DrugBank' (bio.tools/drugbank), 'ucm584603.pdf', 'NGS-detected'""" ; - sc:featureList edam:operation_3202 ; - sc:name "invitrodiagnostics" ; - sc:url "https://www.fda.gov/downloads/medicaldevices/productsandmedicalprocedures/invitrodiagnostics/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3360, @@ -257159,7 +264273,7 @@ The American FDA approved the first comprehensive NGS diagnostic assay for cance sc:url "https://github.com/WlSunshine/IOAT-software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0769 ; sc:citation , @@ -257177,7 +264291,7 @@ iobio uses immediate visual feedback to make understanding complex genomic datas biotools:primaryContact "iobio Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3070, @@ -257194,7 +264308,7 @@ iobio uses immediate visual feedback to make understanding complex genomic datas biotools:primaryContact "Marko Vendelin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0602, @@ -257217,7 +264331,7 @@ iODA is a graphical user interface (GUI) local tool with the aim of integrating sc:url "http://www.sysbio.org.cn/iODA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2258, @@ -257235,7 +264349,7 @@ IOData is a HORTON 3 module for input/output of quantum chemistry file formats. sc:url "https://github.com/theochem/iodata" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3390, @@ -257253,7 +264367,7 @@ IOData is a HORTON 3 module for input/output of quantum chemistry file formats. sc:url "https://www.ars.usda.gov/northeast-area/beltsville-md-bhnrc/beltsville-human-nutrition-research-center/methods-and-application-of-food-composition-laboratory/mafcl-site-pages/iodine/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_3520 ; @@ -257272,7 +264386,7 @@ IOData is a HORTON 3 module for input/output of quantum chemistry file formats. biotools:primaryContact "Jan Fesl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0659, @@ -257295,7 +264409,7 @@ IOData is a HORTON 3 module for input/output of quantum chemistry file formats. "InterpretOmics Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -257322,7 +264436,7 @@ The National Agriculture and Food Research Organization (hereinafter referred to sc:url "https://github.com/DEMETER298/IonBreeders" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -257338,8 +264452,31 @@ IonCram is the first compression tool that efficiently compresses the Ion Torren sc:name "IonCRAM" ; sc:url "https://github.com/ionCRAM/ionCRAM" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Script" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_0780, + edam:topic_2229, + edam:topic_3173, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8464566", + "pubmed:34562172" ; + sc:description "Galaxy tool for processing and analysis of ionomics data , based on the modification of R package IonFlow." ; + sc:featureList edam:operation_2436, + edam:operation_2939, + edam:operation_3891, + edam:operation_3960 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "IonFlow" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/wanchanglin/ionflow" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -257360,18 +264497,17 @@ IonCram is the first compression tool that efficiently compresses the Ion Torren a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ], + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Nucleic acid sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:author "Mike Smith" ; @@ -257390,7 +264526,7 @@ IonCram is the first compression tool that efficiently compresses the Ion Torren biotools:primaryContact "Mike Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0659, @@ -257405,7 +264541,7 @@ IonCram is the first compression tool that efficiently compresses the Ion Torren biotools:primaryContact "University of Ljubljana Faculty of Computer and Information Science" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3063, @@ -257423,7 +264559,7 @@ IonCram is the first compression tool that efficiently compresses the Ion Torren sc:url "https://www.iontobioethics.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -257442,7 +264578,7 @@ IonCram is the first compression tool that efficiently compresses the Ion Torren biotools:primaryContact "Mingshu Cao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -257459,7 +264595,7 @@ IonCram is the first compression tool that efficiently compresses the Ion Torren biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0196, @@ -257478,7 +264614,7 @@ DNA replication is a key step in maintaining the stable transmission of genetic sc:url "http://lin-group.cn/server/iORI-Euk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3318, @@ -257492,7 +264628,7 @@ IoT-Flock is an open-source tool for IoT traffic generation which supports the t sc:url "https://github.com/ThingzDefense/IoT-Flock" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0621, @@ -257514,7 +264650,7 @@ T. Elsaleh, M. Bermudez-Edo, S. Enshaeifar, S. T. Acton, R. Rezvani and P. Barna sc:url "http://iot.ee.surrey.ac.uk/iot-crawler/ontology/iot-stream" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3172, @@ -257533,8 +264669,15 @@ BACKGROUND:Metabolomics data analyses rely on the use of bioinformatics tools. M sc:name "IP4M" ; sc:url "https://github.com/IP4M" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "Improved Phased Assembler (IPA) is the official PacBio software for HiFi genome assembly. IPA was designed to utilize the accuracy of PacBio HiFi reads to produce high-quality phased genome assemblies" ; + sc:name "IPA HiFi" ; + sc:softwareVersion "1.8.0" ; + sc:url "https://github.com/PacificBiosciences/pbipa" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0078, @@ -257554,7 +264697,7 @@ BACKGROUND:Metabolomics data analyses rely on the use of bioinformatics tools. M biotools:primaryContact "Gregory Ryslik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3174, @@ -257570,7 +264713,7 @@ BACKGROUND:Metabolomics data analyses rely on the use of bioinformatics tools. M sc:url "https://tavazoielab.c2b2.columbia.edu/iPAGE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -257592,7 +264735,7 @@ IPANEMAP is a software for predicting stable RNA secondary structures compatible sc:url "https://github.com/afafbioinfo/IPANEMAP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0097, @@ -257608,7 +264751,7 @@ IPANEMAP is a software for predicting stable RNA secondary structures compatible biotools:primaryContact "Chin Lung Lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -257627,7 +264770,7 @@ IPANEMAP is a software for predicting stable RNA secondary structures compatible . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -257645,34 +264788,28 @@ IPANEMAP is a software for predicting stable RNA secondary structures compatible a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1011" ; - sc:name "EC number" ; - sc:sameAs "http://edamontology.org/data_1011" ], + sc:additionalType "http://edamontology.org/data_2384" ; + sc:name "IPI protein ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2764" ; - sc:name "Protein name (UniProt)" ; - sc:sameAs "http://edamontology.org/data_2764" ], + sc:additionalType "http://edamontology.org/data_1027" ; + sc:name "Gene ID (NCBI)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2384" ; - sc:name "IPI protein ID" ; - sc:sameAs "http://edamontology.org/data_2384" ], + sc:additionalType "http://edamontology.org/data_2764" ; + sc:name "Protein name (UniProt)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1027" ; - sc:name "Gene ID (NCBI)" ; - sc:sameAs "http://edamontology.org/data_1027" ], + sc:additionalType "http://edamontology.org/data_1011" ; + sc:name "EC number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2302" ; - sc:name "STRING ID" ; - sc:sameAs "http://edamontology.org/data_2302" ], + sc:additionalType "http://edamontology.org/data_2343" ; + sc:name "Pathway ID (KEGG)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2343" ; - sc:name "Pathway ID (KEGG)" ; - sc:sameAs "http://edamontology.org/data_2343" ] ; + sc:additionalType "http://edamontology.org/data_2302" ; + sc:name "STRING ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3174 ; @@ -257698,7 +264835,7 @@ IPANEMAP is a software for predicting stable RNA secondary structures compatible biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """iPath is a tool developed by IMIM which provides mechanistic hypotheses for drug adverse events. iPath aims at identifying pathways in functional networks that connect drug targets, off-targets, ADME proteins and proteins associated to the toxicity phenotype elicited by a drug. It leverages information from diverse omics datasets, namely protein interaction networks, toxicogenomics data, gene and protein expression data, genotype-phenotype associations and chemical biology information. iPath uses as input tissue/organ-specific protein interaction networks and a list of genes of interest (seed genes), and after mapping the seeds to the network it applies network optimisation algorithms to identify the subnetwork. It can be used to identify molecular pathways related to drug toxicity.""" ; sc:name "iPath" ; @@ -257706,7 +264843,7 @@ iPath uses as input tissue/organ-specific protein interaction networks and a lis sc:url "http://sbi.imim.es/data/ipath.tgz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -257730,7 +264867,7 @@ iPath uses as input tissue/organ-specific protein interaction networks and a lis "Gil Mor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -257751,7 +264888,7 @@ iPath uses as input tissue/organ-specific protein interaction networks and a lis biotools:primaryContact "ipavs Admin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -257773,7 +264910,7 @@ iPath uses as input tissue/organ-specific protein interaction networks and a lis biotools:primaryContact "Agnel Praveen Joseph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -257790,14 +264927,13 @@ iPath uses as input tissue/organ-specific protein interaction networks and a lis a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1528" ; - sc:name "Protein isoelectric point" ; - sc:sameAs "http://edamontology.org/data_1528" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1528" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein isoelectric point" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0121, @@ -257822,7 +264958,7 @@ iPath uses as input tissue/organ-specific protein interaction networks and a lis biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -257840,7 +264976,7 @@ iPath uses as input tissue/organ-specific protein interaction networks and a lis biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0084, @@ -257865,7 +265001,7 @@ Free document hosting provided by Read the Docs.""" ; sc:url "https://github.com/pmckenz1/ipcoal/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -257877,7 +265013,7 @@ Free document hosting provided by Read the Docs.""" ; sc:url "https://cran.r-project.org/web/packages/ipcwswitch/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0804, @@ -257899,7 +265035,7 @@ Free document hosting provided by Read the Docs.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0199, @@ -257920,7 +265056,7 @@ Free document hosting provided by Read the Docs.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0089, @@ -257943,7 +265079,7 @@ Free document hosting provided by Read the Docs.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -257969,7 +265105,7 @@ IPD is an in-silico GUI-based automated pathogen analysis pipeline for seamless sc:url "http://www.actrec.gov.in/pi-webpages/AmitDutt/IPD/IPD.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0157, @@ -257988,8 +265124,31 @@ IPD is an in-silico GUI-based automated pathogen analysis pipeline for seamless sc:url "http://biominer.bime.ntu.edu.tw/ipda/" ; biotools:primaryContact "Chien-Yu Chen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_3170, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8549166", + "pubmed:34702185" ; + sc:description "A PIWI-bound piRNAs database to mining NGS sncRNA data and beyond." ; + sc:featureList edam:operation_0463, + edam:operation_2421, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "IPdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ipdb2.shinyapps.io/ipdb2/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web service" ; sc:applicationSubCategory edam:topic_0102, @@ -258010,7 +265169,7 @@ An implementation to reconstruct individual patient data from Kaplan-Meier (K-M) sc:url "http://trialdesign.org/one-page-shell.html#IPDfromKM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation , @@ -258022,7 +265181,7 @@ An implementation to reconstruct individual patient data from Kaplan-Meier (K-M) sc:url "https://jwang7.shinyapps.io/ipdmada/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -258044,7 +265203,7 @@ Tool kits for quanlity control, analysis and visulization of Illumina DNA methyl sc:url "https://bioconductor.org/packages/release/bioc/html/ENmix.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -258062,7 +265221,7 @@ Tool kits for quanlity control, analysis and visulization of Illumina DNA methyl "You-QiangSong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3300, edam:topic_3304, @@ -258079,14 +265238,13 @@ In the past few years a lot of attention has been given to methods for remotely a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2384" ; - sc:name "IPI protein ID" ; - sc:sameAs "http://edamontology.org/data_2384" ] ; + sc:additionalType "http://edamontology.org/data_2384" ; + sc:name "IPI protein ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0085, @@ -258101,7 +265259,7 @@ In the past few years a lot of attention has been given to methods for remotely sc:url "http://www.ebi.ac.uk/IPI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0593, @@ -258121,7 +265279,7 @@ In the past few years a lot of attention has been given to methods for remotely "Woonghee Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0654, @@ -258138,8 +265296,32 @@ In the past few years a lot of attention has been given to methods for remotely sc:softwareVersion "r5" ; sc:url "http://sourceforge.net/projects/ipig/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0602, + edam:topic_2269, + edam:topic_2640, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8756181", + "pubmed:34718410" ; + sc:description "Importance-Penalized Joint Graphical Lasso (IPJGL)." ; + sc:featureList edam:operation_3223, + edam:operation_3463, + edam:operation_3625, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "IPJGL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Wu-Lab/IPJGL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , , , @@ -258153,14 +265335,14 @@ In the past few years a lot of attention has been given to methods for remotely a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1921" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -258178,7 +265360,7 @@ In the past few years a lot of attention has been given to methods for remotely biotools:primaryContact "Dr. Uwe Scholz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -258198,7 +265380,7 @@ In the past few years a lot of attention has been given to methods for remotely sc:url "http://rtips.dna.bio.keio.ac.jp/ipknot/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -258217,7 +265399,7 @@ A webserver for identifying protein-nucleic acid interfaces hotspot residues. iP sc:url "http://zhulab.ahu.edu.cn/iPNHOT/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -258238,7 +265420,7 @@ A webserver for identifying protein-nucleic acid interfaces hotspot residues. iP biotools:primaryContact "Thomas Riebenbauer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293 ; @@ -258252,7 +265434,7 @@ A webserver for identifying protein-nucleic acid interfaces hotspot residues. iP biotools:primaryContact "Dr. Amar Mukherjee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0128, @@ -258269,7 +265451,7 @@ A webserver for identifying protein-nucleic acid interfaces hotspot residues. iP sc:url "http://www.jci-bioinfo.cn/iPPBS-Opt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0128, @@ -258286,7 +265468,7 @@ A webserver for identifying protein-nucleic acid interfaces hotspot residues. iP sc:url "http://www.jci-bioinfo.cn/iPPBS-PseAAC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0154, @@ -258305,7 +265487,7 @@ A webserver for identifying protein-nucleic acid interfaces hotspot residues. iP biotools:primaryContact "Martin Slawski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -258321,7 +265503,7 @@ A webserver for identifying protein-nucleic acid interfaces hotspot residues. iP sc:url "http://sunflower.kuicr.kyoto-u.ac.jp/~morihiro/protint/ppi-form.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3343 ; sc:citation ; @@ -258334,7 +265516,7 @@ A webserver for identifying protein-nucleic acid interfaces hotspot residues. iP sc:url "https://ippidb.pasteur.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -258349,8 +265531,21 @@ A webserver for identifying protein-nucleic acid interfaces hotspot residues. iP sc:softwareHelp ; sc:url "http://www.jci-bioinfo.cn/iPPI-Esml" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0749 ; + sc:citation , + "pubmed:35038653" ; + sc:description "A novel model based on generative adversarial learning for identifying promoters and their strength" ; + sc:license "Not licensed" ; + sc:name "iPro-GAN" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/Bovbene/iPro-GAN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation , @@ -258363,8 +265558,56 @@ A webserver for identifying protein-nucleic acid interfaces hotspot residues. iP sc:url "http://lin-group.cn/server/iPro54-PseKNC" ; biotools:primaryContact "Hao Lin" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0152, + edam:topic_3174, + edam:topic_3390, + edam:topic_3474, + edam:topic_3697 ; + sc:citation , + "pubmed:34849572" ; + sc:description "A machine learning platform for rapid identification of probiotic properties from whole-genome primary sequences." ; + sc:featureList edam:operation_3472, + edam:operation_3936, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:name "iProbiotics" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinfor.imu.edu.cn/iprobiotics" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0749, + edam:topic_0780, + edam:topic_3474 ; + sc:citation , + "pubmed:35533969" ; + sc:description "A two-layer model to identify plant promoters and their types using convolutional neural network." ; + sc:featureList edam:operation_0440, + edam:operation_0441, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:name "iProm-Zea" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://nsclbio.jbnu.ac.kr/tools/iProm-Zea/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -258382,7 +265625,7 @@ A webserver for identifying protein-nucleic acid interfaces hotspot residues. iP biotools:primaryContact "Bin Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2640, @@ -258404,8 +265647,53 @@ This prediction website is based on known human small cell lung cancer cell coef sc:name "iPromoter-5mC" ; sc:url "http://www.jci-bioinfo.cn/iPromoter-5mC" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0601, + edam:topic_0749, + edam:topic_0821, + edam:topic_3334, + edam:topic_3474 ; + sc:citation , + "pubmed:35696077" ; + sc:description "A Tool to Accurately Predict Protein Glycation Site Using Structural-Based Features." ; + sc:featureList edam:operation_0417, + edam:operation_2415, + edam:operation_2488, + edam:operation_3755 ; + sc:isAccessibleForFree true ; + sc:name "iProtGly-SS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://brl.uiu.ac.bd/iprotgly-ss/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0077, + edam:topic_0080, + edam:topic_0121, + edam:topic_0154, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8728291", + "pubmed:34871441" ; + sc:description "iProX is an integrated proteome resources center in China, which is built to accelerate the worldwide data sharing in proteomics. iProX is composed of a data submission system and a proteome database." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3431, + edam:operation_3631 ; + sc:isAccessibleForFree true ; + sc:name "iProX" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.iprox.cn" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2269 ; @@ -258421,10 +265709,10 @@ This prediction website is based on known human small cell lung cancer cell coef a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077 ; sc:author "Dmitri Pervouchine" ; @@ -258442,7 +265730,7 @@ This prediction website is based on known human small cell lung cancer cell coef biotools:primaryContact "Dmitri Pervouchine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0621, @@ -258459,7 +265747,7 @@ Pseudouridine modification is most commonly found among various kinds of RNA mod sc:url "https://github.com/ngphubinh/iPseU-NCP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3071 ; @@ -258478,7 +265766,7 @@ IPSI database, "Italian Present-day Stress Indicators", is a georeferenced repos sc:url "http://ipsi.rm.ingv.it/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -258495,7 +265783,7 @@ IPSI database, "Italian Present-day Stress Indicators", is a georeferenced repos biotools:primaryContact "Gui-Jun Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -258519,8 +265807,59 @@ IPSI database, "Italian Present-day Stress Indicators", is a georeferenced repos ; sc:url "https://anaconda.org/bioconda/iptkl" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0780, + edam:topic_2229, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9207291", + "pubmed:35765653" ; + sc:description "Identification of plant vacuole proteins by exploiting deep representation learning features." ; + sc:featureList edam:operation_2489, + edam:operation_3767, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "iPVP-DRLF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://121.40.214.145:7002" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_0602, + edam:topic_0625, + edam:topic_2885, + edam:topic_3516 ; + sc:citation , + "pmcid:PMC8679960", + "pubmed:35003914" ; + sc:description "Python for local ancestry estimation" ; + sc:featureList edam:operation_0487, + edam:operation_3196, + edam:operation_3436, + edam:operation_3454, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "iPyLAE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/smetam/pylae" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3298, @@ -258544,7 +265883,7 @@ Python toolbox for phenotype analysis of arrayed microbial colonies.""" ; sc:url "https://github.com/Bahler-Lab/pyphe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3056, @@ -258567,7 +265906,7 @@ Welcome to ipyrad — ipyrad documentation.""" ; sc:url "https://github.com/dereneaton/ipyrad/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0621, @@ -258580,7 +265919,7 @@ Welcome to ipyrad — ipyrad documentation.""" ; sc:url "http://www.iqtree.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -258598,7 +265937,7 @@ This is an R package to estimate relative protein abundances from ion quantifica sc:url "http://oncoproteomics.nl/iq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_2269, @@ -258614,7 +265953,7 @@ This is an R package to estimate relative protein abundances from ion quantifica sc:url "http://www.cibiv.at/software/iqtree/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053, @@ -258633,7 +265972,7 @@ This is an R package to estimate relative protein abundances from ion quantifica biotools:primaryContact "Peter W. Zandstra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3320 ; sc:citation ; @@ -258647,7 +265986,7 @@ This is an R package to estimate relative protein abundances from ion quantifica biotools:primaryContact "Gerstein Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -258664,7 +266003,7 @@ This is an R package to estimate relative protein abundances from ion quantifica biotools:primaryContact "Yuehua Cui" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -258677,7 +266016,7 @@ This is an R package to estimate relative protein abundances from ion quantifica sc:url "http://www.stt.msu.edu/~cui/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation ; @@ -258688,7 +266027,7 @@ This is an R package to estimate relative protein abundances from ion quantifica sc:url "http://www.iqtree.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3047, @@ -258705,7 +266044,7 @@ This is an R package to estimate relative protein abundances from ion quantifica biotools:primaryContact "Siqi Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web service" ; sc:applicationSubCategory edam:topic_3170, @@ -258729,7 +266068,7 @@ Download the latest version of R software, available at https://cran.r-project.o sc:url "http://www.lstmed.ac.uk/projects/IR-TEx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -258744,8 +266083,31 @@ Download the latest version of R software, available at https://cran.r-project.o sc:url "https://www.mathworks.com/matlabcentral/fileexchange/68674-infrared-and-visual-image-fusion-method-based-on-swt_dct_sf" ; biotools:primaryContact "Xin Jin" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0769, + edam:topic_3473 ; + sc:citation , + "pubmed:34704748" ; + sc:description "A Shape Matching Approach for Recognition and Comparison of Generic Atomic Patterns." ; + sc:featureList edam:operation_0387, + edam:operation_3432, + edam:operation_3456 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "IRA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/mammasmias/IterativeRotationsAssignments" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -258768,7 +266130,7 @@ Download the latest version of R software, available at https://cran.r-project.o biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Dmitri Pervouchine" ; @@ -258788,7 +266150,7 @@ Download the latest version of R software, available at https://cran.r-project.o biotools:primaryContact "Dmitri Pervouchine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -258805,7 +266167,7 @@ Download the latest version of R software, available at https://cran.r-project.o sc:url "http://kurata14.bio.kyutech.ac.jp/IRC-Fuse/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -258824,7 +266186,7 @@ iREAD (intron REtention Analysis and Detector)is a tool to detect intron retenti sc:url "https://github.com/genemine/iread" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128 ; sc:author "Ian Donaldson" ; @@ -258841,7 +266203,7 @@ iREAD (intron REtention Analysis and Detector)is a tool to detect intron retenti sc:url "http://irefindex.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128 ; sc:author "Antonio Mora", @@ -258862,14 +266224,14 @@ iREAD (intron REtention Analysis and Detector)is a tool to detect intron retenti a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128 ; sc:author "Ian Donaldson", @@ -258890,7 +266252,7 @@ iREAD (intron REtention Analysis and Detector)is a tool to detect intron retenti sc:url "http://irefindex.org/wiki/index.php?title=iRefScape" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -258912,8 +266274,53 @@ Identified a group of co-expressed genes, and would like to check if the protein sc:name "iRefWeb" ; sc:url "http://wodaklab.org/iRefWeb" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0749, + edam:topic_0780, + edam:topic_3169, + edam:topic_3295 ; + sc:citation , + "pmcid:PMC8566287", + "pubmed:34618085" ; + sc:description "An integrative Regulatory Network analysis tool for Arabidopsis thaliana." ; + sc:featureList edam:operation_1781, + edam:operation_2437, + edam:operation_3196, + edam:operation_3222, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:name "iRegNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://chromatindynamics.snu.ac.kr:8082/iRegNet_main" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0659, + edam:topic_0749, + edam:topic_3170, + edam:topic_3308 ; + sc:citation ; + sc:description "IReNA (Integrated Regulatory Network Analysis) is an R package to perform regulatory network analysis. IReNA contains two methods to reconstruct gene regulatory networks. The first is using single-cell RNA sequencing (scRNA-seq) data alone. The second is integrating scRNA-seq data and chromatin accessibility profiles from Assay for Transposase Accessible Chromatin using sequencing (ATAC-seq). IReNA performs modular regulatory network to reveal key transcription factors and significant regulatory relationships among modules, providing biological insights on regulatory mechanisms." ; + sc:featureList edam:operation_0314, + edam:operation_1781, + edam:operation_2437 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "IReNA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/jiang-junyao/IReNA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0621, @@ -258934,14 +266341,13 @@ A Comprehensive Database of Experimentally Verified Internal Ribosome Entry Site a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2084" ; - sc:name "Nucleic acid report" ; - sc:sameAs "http://edamontology.org/data_2084" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2084" ; + sc:name "Nucleic acid report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0160, @@ -258962,7 +266368,7 @@ A Comprehensive Database of Experimentally Verified Internal Ribosome Entry Site biotools:primaryContact "Martin Pospisek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0621, @@ -258978,8 +266384,26 @@ A Comprehensive Database of Experimentally Verified Internal Ribosome Entry Site sc:softwareHelp ; sc:url "http://bioinfo.net.in/IRESPred/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3299, + edam:topic_3379 ; + sc:citation , + "pmcid:PMC9066316", + "pubmed:35574155" ; + sc:description "A national web-based platform for operationalizing single IRB review." ; + sc:featureList edam:operation_3755 ; + sc:isAccessibleForFree true ; + sc:name "IREx" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://IRBExchange.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0611, edam:topic_2229, @@ -258999,8 +266423,32 @@ A Comprehensive Database of Experimentally Verified Internal Ribosome Entry Site biotools:primaryContact , "Lucy Collinson" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3170, + edam:topic_3320, + edam:topic_3474, + edam:topic_3512, + edam:topic_3519 ; + sc:citation , + "pmcid:PMC8573998", + "pubmed:34749764" ; + sc:description "A comprehensive suite to discover and explore intron retention." ; + sc:featureList edam:operation_0264, + edam:operation_0337, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "IRFinder-S" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/RitchieLabIGH/IRFinder" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0749, @@ -259022,7 +266470,7 @@ A Comprehensive Database of Experimentally Verified Internal Ribosome Entry Site biotools:primaryContact "Amy Marshall-Colon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Ontology" ; sc:applicationSubCategory edam:topic_0089, @@ -259042,7 +266490,7 @@ A Comprehensive Database of Experimentally Verified Internal Ribosome Entry Site sc:url "http://ir-go.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -259064,8 +266512,54 @@ A Comprehensive Database of Experimentally Verified Internal Ribosome Entry Site "Windows" ; sc:url "https://wlake.shinyapps.io/iRGvalid/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0601, + edam:topic_0780 ; + sc:citation , + "pubmed:34864888" ; + sc:description "An integrated XGBoost model for detecting multitype post-translational modification sites in rice." ; + sc:featureList edam:operation_0417, + edam:operation_3647, + edam:operation_3755 ; + sc:isAccessibleForFree true ; + sc:name "iRice-MS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://lin-group.cn/server/iRice-MS" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0780, + edam:topic_3068, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9138121", + "pubmed:35634096" ; + sc:description "Open source software for processing images from infrared thermal cameras." ; + sc:featureList edam:operation_0460, + edam:operation_3435, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "IRimage" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/gpereyrairujo/IRimage" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3301, @@ -259082,7 +266576,7 @@ A Comprehensive Database of Experimentally Verified Internal Ribosome Entry Site biotools:primaryContact "George Kritikos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -259102,7 +266596,7 @@ Single-cell RNA-Seq data is useful in discovering cell heterogeneity and signatu sc:url "https://github.com/OSU-BMBL/IRIS-FGM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -259121,7 +266615,7 @@ See 'README.1.pyIRIS.md' for detail.""" ; sc:url "https://github.com/th00516/ISS_pyIRIS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -259146,7 +266640,7 @@ integrated cell type specific Regulon inference from single-cell rna seq.""" ; sc:url "https://bmbl.bmi.osumc.edu/iris3/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3474 ; @@ -259163,7 +266657,7 @@ integrated cell type specific Regulon inference from single-cell rna seq.""" ; biotools:primaryContact "Daniel Gusenleitner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154 ; @@ -259180,7 +266674,7 @@ integrated cell type specific Regulon inference from single-cell rna seq.""" ; sc:url "http://biodev.extra.cea.fr/docs/irma/doku.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web service" ; sc:applicationSubCategory edam:topic_0099, @@ -259206,7 +266700,7 @@ Choose Species: Human Mouse Rat and Tissues: Brain Liver Kidney.""" ; sc:url "http://lin-group.cn/server/iRNA-m6A" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -259223,7 +266717,7 @@ Choose Species: Human Mouse Rat and Tissues: Brain Liver Kidney.""" ; biotools:primaryContact "Hao Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3308, @@ -259238,7 +266732,7 @@ A generic webserver for predicting RNA 5hmC sites.""" ; sc:url "http://server.malab.cn/iRNA5hmC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -259259,7 +266753,7 @@ Authors: Sajid Ahmed†, Zahid Hossain†, Mahtab Uddin, Ghazaleh Taherzadeh, Al sc:url "https://github.com/zahid6454/iRNA5hmC-PS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3127, @@ -259276,7 +266770,7 @@ Authors: Sajid Ahmed†, Zahid Hossain†, Mahtab Uddin, Ghazaleh Taherzadeh, Al biotools:primaryContact "Bin Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3168, @@ -259293,7 +266787,7 @@ Authors: Sajid Ahmed†, Zahid Hossain†, Mahtab Uddin, Ghazaleh Taherzadeh, Al "Ilgar Mamedov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3307, edam:topic_3365, @@ -259310,7 +266804,7 @@ Authors: Sajid Ahmed†, Zahid Hossain†, Mahtab Uddin, Ghazaleh Taherzadeh, Al biotools:primaryContact "Júlio Trevisan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0820, @@ -259330,7 +266824,7 @@ Authors: Sajid Ahmed†, Zahid Hossain†, Mahtab Uddin, Ghazaleh Taherzadeh, Al biotools:primaryContact "Christos Maramis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -259349,7 +266843,7 @@ Authors: Sajid Ahmed†, Zahid Hossain†, Mahtab Uddin, Ghazaleh Taherzadeh, Al biotools:primaryContact "Ali Amiryousefi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3127, @@ -259368,7 +266862,7 @@ Authors: Sajid Ahmed†, Zahid Hossain†, Mahtab Uddin, Ghazaleh Taherzadeh, Al biotools:primaryContact "Hao Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -259388,7 +266882,7 @@ Authors: Sajid Ahmed†, Zahid Hossain†, Mahtab Uddin, Ghazaleh Taherzadeh, Al biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3382, @@ -259410,8 +266904,24 @@ Primary Basmati Quality Characteristics.""" ; sc:name "iRSVPred" ; sc:url "http://14.139.62.220/rice/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:citation , + "pmcid:PMC7495790", + "pubmed:34565936" ; + sc:description "An R Package for Estimating IRT Models With Guessing or Slipping Parameters." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "IRTBEMM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://cran.r-project.org/package=IRTBEMM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3053, @@ -259427,7 +266937,7 @@ Primary Basmati Quality Characteristics.""" ; sc:url "http://www2.unil.ch/cbg/index.php?title=ISA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3382, @@ -259444,7 +266954,7 @@ This is an XML namespace defined in the XML Linking Language (XLink) specificati sc:url "https://mvnrepository.com/artifact/de.ipk-gatersleben/isa4j" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3382, @@ -259462,7 +266972,7 @@ The ISA API aims to provide you, the developer, with a set of tools to help you sc:url "http://github.com/ISA-tools/isa-api/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0219, edam:topic_3071 ; @@ -259478,7 +266988,7 @@ The ISA API aims to provide you, the developer, with a set of tools to help you sc:url "http://isa-tools.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622 ; @@ -259492,8 +267002,28 @@ The ISA API aims to provide you, the developer, with a set of tools to help you sc:url "https://github.com/sequencing" ; biotools:primaryContact "ISAAC support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0611, + edam:topic_0769, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9296836", + "pubmed:35874605" ; + sc:description "Accelerated 2D Classification With ISAC Using GPUs." ; + sc:featureList edam:operation_3432, + edam:operation_3458 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ISAC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.gwdg.de/mpi-dortmund/sphire/cuISAC/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -259513,14 +267043,14 @@ The ISA API aims to provide you, the developer, with a set of tools to help you a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3299, edam:topic_3473, @@ -259540,7 +267070,7 @@ The ISA API aims to provide you, the developer, with a set of tools to help you biotools:primaryContact "Ali Akbari" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0130, edam:topic_2258, @@ -259558,7 +267088,7 @@ The ISA API aims to provide you, the developer, with a set of tools to help you "D.N. Woolfson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -259579,7 +267109,7 @@ The ISA API aims to provide you, the developer, with a set of tools to help you biotools:primaryContact "Ping-Chiang Lyu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622 ; @@ -259594,7 +267124,7 @@ The ISA API aims to provide you, the developer, with a set of tools to help you sc:url "http://www.imagenix.com/genomics/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:description "A package to identify insertion sequences and similar transposable elements, their inverted repeats, and the direct target repeats they generate in entire genomes." ; @@ -259606,7 +267136,7 @@ The ISA API aims to provide you, the developer, with a set of tools to help you biotools:primaryContact "ExPASy helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168, @@ -259625,7 +267155,7 @@ The ISA API aims to provide you, the developer, with a set of tools to help you "Bing Ni" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, @@ -259654,7 +267184,7 @@ The ISA API aims to provide you, the developer, with a set of tools to help you sc:url "https://github.com/IMB-Computational-Genomics-Lab/scGPS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0749, @@ -259677,7 +267207,7 @@ The modelling of the chromatin immunoprecipitaion followed by next generation se sc:url "https://github.com/fnaumenko/isChIP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -259698,7 +267228,7 @@ Bacterial genomes are composed by a core and an accessory genome.""" ; sc:url "https://github.com/maurijlozano/ISCompare" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0804, edam:topic_2830, @@ -259714,7 +267244,7 @@ Bacterial genomes are composed by a core and an accessory genome.""" ; biotools:primaryContact "JunLiu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3308 ; @@ -259736,7 +267266,7 @@ Bacterial genomes are composed by a core and an accessory genome.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -259755,7 +267285,7 @@ Bacterial genomes are composed by a core and an accessory genome.""" ; biotools:primaryContact "Qianxing Mo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -259772,7 +267302,7 @@ Bacterial genomes are composed by a core and an accessory genome.""" ; biotools:primaryContact "Zhiqun Xie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, @@ -259793,7 +267323,7 @@ Bacterial genomes are composed by a core and an accessory genome.""" ; biotools:primaryContact "Patricia Siguier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -259815,8 +267345,27 @@ Bacterial genomes are composed by a core and an accessory genome.""" ; "Windows" ; sc:url "https://github.com/HuanLab/ISFrag" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0091 ; + sc:citation , + "pubmed:35441661" ; + sc:description "An R package for integrative dimension reduction analysis." ; + sc:featureList edam:operation_3891, + edam:operation_3935, + edam:operation_3960 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "iSFun" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://CRAN.R-project.org/package=iSFun" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0140, @@ -259836,8 +267385,77 @@ if computing on a GPU, it would be fasster.""" ; sc:name "isGP-DRLF" ; sc:url "http://isGP-DRLF.aibiochem.net" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:applicationSubCategory edam:topic_0623, + edam:topic_3474 ; + sc:description "Tools for predicting interferon stimulated human genes" ; + sc:license "GPL-3.0" ; + sc:name "ISGPRE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "1.0" ; + sc:url "http://isgpre.cvr.gla.ac.uk/" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3914" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Quality control report" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2337" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Resource metadata" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web API", + "Web application" ; + sc:applicationSubCategory edam:topic_0607, + edam:topic_3489 ; + sc:author , + "Luis Chapado" ; + sc:description "Open-source LIMS (laboratory Information Management System) for Next Generation Sequencing sample management, statistics and reports, and bioinformatics analysis service management." ; + sc:featureList edam:operation_0337, + edam:operation_2409, + edam:operation_3218 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "iSkyLIMS" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:softwareVersion "2.2.1" ; + sc:url "https://github.com/BU-ISCIII/iSkyLIMS" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0797, + edam:topic_3174 ; + sc:citation , + "pubmed:35584003" ; + sc:description "Enabling genomic island prediction and comparison in multiple genomes to investigate bacterial evolution and outbreaks." ; + sc:featureList edam:operation_0567, + edam:operation_3432, + edam:operation_3482 ; + sc:isAccessibleForFree true ; + sc:name "IslandCompare" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://islandcompare.ca" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0621, @@ -259857,7 +267475,7 @@ if computing on a GPU, it would be fasster.""" ; sc:url "http://www.pathogenomics.sfu.ca/islandpath/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -259880,7 +267498,7 @@ if computing on a GPU, it would be fasster.""" ; biotools:primaryContact "Fiona S. L. Brinkman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -259901,7 +267519,7 @@ Web site created using create-react-app.""" ; sc:url "https://covid19-ism.coe.drexel.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0166 ; @@ -259917,7 +267535,7 @@ Web site created using create-react-app.""" ; biotools:primaryContact "Sofie Demeyer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0166, edam:topic_2259 ; @@ -259940,22 +267558,21 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3110" ; - sc:name "Raw microarray data" ; - sc:sameAs "http://edamontology.org/data_3110" ], + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Experimental measurement" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ], + sc:additionalType "http://edamontology.org/data_3110" ; + sc:encodingFormat "http://edamontology.org/format_2056" ; + sc:name "Raw microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0085, @@ -259980,10 +267597,10 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_1638" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3518 ; @@ -260002,7 +267619,7 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; biotools:primaryContact "Mikhail Pachkov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -260016,7 +267633,7 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; sc:url "http://www.jci-bioinfo.cn/iSMP-Grey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation , @@ -260033,7 +267650,7 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; sc:url "http://app.aporc.org/iSNO-AAPair/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154 ; @@ -260048,7 +267665,7 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; sc:url "http://app.aporc.org/iSNO-PseAAC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -260060,7 +267677,7 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; sc:url "http://isnpranker.semilab.ir/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3292 ; sc:citation ; @@ -260076,22 +267693,22 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1857" ; - sc:name "Atomic occupancy" ; - sc:sameAs "http://edamontology.org/data_1857" ], + sc:additionalType "http://edamontology.org/data_1857" ; + sc:encodingFormat "http://edamontology.org/format_2035" ; + sc:name "Atomic occupancy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2571" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -260107,18 +267724,18 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -260147,8 +267764,29 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/isobar.html" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_3520 ; + sc:citation , + "pubmed:35776068" ; + sc:description "IsobaricQuant enables cross-platform quantification, visualization, and filtering of isobarically-labeled peptides." ; + sc:featureList edam:operation_3639, + edam:operation_3695, + edam:operation_3767 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "IsobaricQuant" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/Villen-Lab/isobaricquant" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -260167,7 +267805,7 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; biotools:primaryContact "IsoBase Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196 ; sc:description "Use transcripts to assess a de novo assembly." ; @@ -260184,14 +267822,12 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -260222,23 +267858,22 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_3512 ; sc:author "EMBOSS", - "Web Production" ; - sc:citation ; + "Job Dispatcher" ; + sc:citation , + ; sc:description "Plot potential isochore features." ; sc:featureList edam:operation_0430 ; - sc:name "isochore (EBI)" ; + sc:name "Isochore (EBI)" ; sc:operatingSystem "Linux", "Mac", "Windows" ; @@ -260247,10 +267882,10 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/seqstats/emboss_isochore/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814, @@ -260267,8 +267902,31 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; biotools:primaryContact "Derek N Woolfson", "Jack W Heal" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_0632, + edam:topic_2885, + edam:topic_3676, + edam:topic_3958 ; + sc:citation , + "pmcid:PMC8555218", + "pubmed:34715772" ; + sc:description "In silico optimization of copy number variant detection from targeted or exome sequencing data." ; + sc:featureList edam:operation_3196, + edam:operation_3227, + edam:operation_3961 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "isoCNV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.com/sequentiateampublic/isocnv" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0634, @@ -260288,7 +267946,7 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; "Maozu Guo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3320 ; sc:citation "pubmed:21504602" ; @@ -260306,7 +267964,7 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; "Sahar Al Seesi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0203, @@ -260322,7 +267980,7 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; "Ion I. Măndoiu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -260343,7 +268001,7 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; "Sangwoo Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -260363,7 +268021,7 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; biotools:primaryContact "J. L. Oliver" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -260374,7 +268032,7 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; biotools:primaryContact "Natalie Ahn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3307, edam:topic_3512 ; @@ -260395,7 +268053,7 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; "Kristoffer Vitting-Seerup" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -260415,7 +268073,7 @@ Cytoscape App for the ISMAGS motif detection algorithm.""" ; biotools:primaryContact "Setia Pramana" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0601, @@ -260435,7 +268093,7 @@ Isoform Specific O-Glycosylation Prediction (ISOGlyP).""" ; sc:url "http://ISOGlyP.utep.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_2640, @@ -260456,7 +268114,7 @@ The advent of RNA-seq technologies has switched the paradigm of genetic analysis sc:url "https://biotecnun.unav.es/app/isogo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -260471,7 +268129,7 @@ The advent of RNA-seq technologies has switched the paradigm of genetic analysis sc:url "http://alumni.cs.ucr.edu/~liw/isolasso.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053, @@ -260491,7 +268149,7 @@ The advent of RNA-seq technologies has switched the paradigm of genetic analysis biotools:primaryContact "Christelle Reynès" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -260510,7 +268168,7 @@ To replicate the algorithm use the following steps:.""" ; sc:url "https://github.com/NaziaFatima/iSOM_GSN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0780, @@ -260530,7 +268188,7 @@ The IsomiR Window project is a user-friendly tool that enables biologists to per sc:url "https://isomir.fc.ul.pt/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -260548,7 +268206,7 @@ The IsomiR Window project is a user-friendly tool that enables biologists to per biotools:primaryContact "Gianvito Urgese" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -260572,7 +268230,7 @@ isoMiRmap is a miRNA and isomiRs mining tool that let's you quickly, exhaustivel sc:url "https://cm.jefferson.edu/isoMiRmap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -260593,7 +268251,7 @@ isoMiRmap is a miRNA and isomiRs mining tool that let's you quickly, exhaustivel biotools:primaryContact "Lorena Pantano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0749, @@ -260611,26 +268269,8 @@ isoMiRmap is a miRNA and isomiRs mining tool that let's you quickly, exhaustivel "Windows" ; sc:url "https://github.com/Heng-Z/IsoNet" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_2840, - edam:topic_3305, - edam:topic_3314, - edam:topic_3360 ; - sc:citation "pubmed:31872748" ; - sc:description """Understanding the Early Biological Effects of Isoprene-Derived Particulate Matter Enhanced by Anthropogenic Pollutants. - -INTRODUCTION:Airborne fine particulate matter (PM2.5; particulate matter ≤ 2.5 μm in aerodynamic diameter) plays a key role in air quality, climate, and public health. Globally, the largest mass fraction of PM2.5 is organic, dominated by secondary organic aerosol (SOA) formed from atmospheric oxidation of volatile organic compounds (VOCs). Isoprene from vegetation is the most abundant nonmethane VOC emitted into Earth's atmosphere. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'precursors isoprene-derived SOA ISOPOOH-derived SOA', 'isoprene-derived SOA MAE- ISOPOOH-derived SOA', 'isoprene-derived SOA ISOPOOH-derived SOA alters', 'isoprene-derived SOA'""" ; - sc:featureList edam:operation_2495 ; - sc:name "isoprene-derived SOA ISOPOOH-derived SOA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31872748" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0114, @@ -260649,14 +268289,14 @@ IsoResolve is a computational approach for isoform function prediction by levera a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence search results" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2907" ; - sc:name "Protein accession" ; - sc:sameAs "http://edamontology.org/data_2907" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2907" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein accession" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154, @@ -260680,7 +268320,7 @@ IsoResolve is a computational approach for isoform function prediction by levera biotools:primaryContact "Simone Sidoli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -260697,7 +268337,7 @@ IsoResolve is a computational approach for isoform function prediction by levera sc:url "https://github.com/shenkers/isoscm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Workflow" ; @@ -260719,7 +268359,7 @@ IsoResolve is a computational approach for isoform function prediction by levera biotools:primaryContact "Pacific Biosciences" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, @@ -260738,7 +268378,7 @@ IsoResolve is a computational approach for isoform function prediction by levera "Sergueï Sokol" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0780, @@ -260758,7 +268398,7 @@ IsoResolve is a computational approach for isoform function prediction by levera biotools:primaryContact "Hengfu Yin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0114, edam:topic_3170, @@ -260781,14 +268421,14 @@ IsoResolve is a computational approach for isoform function prediction by levera a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0846" ; - sc:name "Chemical formula" ; - sc:sameAs "http://edamontology.org/data_0846" ] ; + sc:additionalType "http://edamontology.org/data_0846" ; + sc:encodingFormat "http://edamontology.org/format_2035" ; + sc:name "Chemical formula" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -260805,14 +268445,14 @@ IsoResolve is a computational approach for isoform function prediction by levera a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0846" ; - sc:name "Chemical formula" ; - sc:sameAs "http://edamontology.org/data_0846" ] ; + sc:additionalType "http://edamontology.org/data_0846" ; + sc:encodingFormat "http://edamontology.org/format_2035" ; + sc:name "Chemical formula" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -260825,7 +268465,7 @@ IsoResolve is a computational approach for isoform function prediction by levera sc:url "http://www.ms-utils.org/isotop_fs.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, @@ -260851,14 +268491,14 @@ For the obtention of exonizations, neoskipping and A5_A3 events, the first input a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0846" ; - sc:name "Chemical formula" ; - sc:sameAs "http://edamontology.org/data_0846" ] ; + sc:additionalType "http://edamontology.org/data_0846" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Chemical formula" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -260875,7 +268515,7 @@ For the obtention of exonizations, neoskipping and A5_A3 events, the first input sc:url "http://www.kombyonyx.com/isotopes/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0121, @@ -260898,7 +268538,7 @@ For the obtention of exonizations, neoskipping and A5_A3 events, the first input biotools:primaryContact "Fernandez-de-Cossio J." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0622, @@ -260914,7 +268554,7 @@ For the obtention of exonizations, neoskipping and A5_A3 events, the first input biotools:primaryContact "Erick Antezana" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0602, @@ -260938,7 +268578,7 @@ For the obtention of exonizations, neoskipping and A5_A3 events, the first input sc:url "https://matthieu-bruneaux.gitlab.io/isotracer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0108, @@ -260960,7 +268600,7 @@ IsoTV is Snakemake pipeline to analyze and visualize functional features of tran sc:url "https://github.molgen.mpg.de/MayerGroup/IsoTV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2640, @@ -260978,8 +268618,30 @@ IsoTV is Snakemake pipeline to analyze and visualize functional features of tran sc:url "https://github.com/ikalatskaya/ISOWN" ; biotools:primaryContact "Irina Kalatskaya" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0602, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8756298", + "pubmed:35083040" ; + sc:description "A approach to inferring gene-gene net-works using SPACE model with log penalty." ; + sc:featureList edam:operation_2436, + edam:operation_2437, + edam:operation_3196, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ispace-log" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/wuqian77/SpaceLog" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0593, @@ -260997,7 +268659,7 @@ We introduce iSPECTRON, a program that parses data from common quantum chemistry sc:url "https://github.com/ispectrongit/iSPECTRON/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -261012,8 +268674,33 @@ We introduce iSPECTRON, a program that parses data from common quantum chemistry sc:name "ISPIDER Central" ; sc:url "http://www.ispider.manchester.ac.uk/cgi-bin/ProteomicSearch.pl" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0123, + edam:topic_0128, + edam:topic_0749, + edam:topic_2275, + edam:topic_3534 ; + sc:citation , + "pmcid:PMC9316365", + "pubmed:35879651" ; + sc:description "Integrated structure-based protein interface prediction." ; + sc:featureList edam:operation_0321, + edam:operation_0474, + edam:operation_2575, + edam:operation_3659, + edam:operation_3899 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ISPIP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/eved1018/ISPIP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -261036,22 +268723,22 @@ We introduce iSPECTRON, a program that parses data from common quantum chemistry a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1008" ; - sc:name "Polypeptide chain ID" ; - sc:sameAs "http://edamontology.org/data_1008" ], + sc:additionalType "http://edamontology.org/data_1008" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Polypeptide chain ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0160 ; @@ -261072,7 +268759,7 @@ We introduce iSPECTRON, a program that parses data from common quantum chemistry biotools:primaryContact "Castrense Savojardo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0804, edam:topic_2640, @@ -261091,7 +268778,7 @@ The code and dataset used in the construction of ISPRF.""" ; sc:url "https://immunotype.shinyapps.io/ISPRF/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation "pubmed:19136549" ; @@ -261103,7 +268790,7 @@ The code and dataset used in the construction of ISPRF.""" ; biotools:primaryContact "R.L. Warren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -261124,8 +268811,21 @@ ISSEC adopts deep learning to learn specific patterns within predicted inter-res sc:name "ISSEC" ; sc:url "https://github.com/bigict/ISSEC/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "This server is an attempt to help biologist identify Inteins hiding in their protein sequences." ; + sc:featureList edam:operation_2945 ; + sc:name "isspred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/isspred/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, @@ -261142,7 +268842,7 @@ ISSEC adopts deep learning to learn specific patterns within predicted inter-res sc:url "http://predictor.nchu.edu.tw/istable/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -261160,7 +268860,7 @@ ISSEC adopts deep learning to learn specific patterns within predicted inter-res biotools:primaryContact "Axel Andersson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -261178,7 +268878,7 @@ ISSEC adopts deep learning to learn specific patterns within predicted inter-res sc:url "http://snp.istech.info/istech/board/login_form.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3303, @@ -261197,25 +268897,8 @@ ISTH’s Common Data Elements (CDE) project provides investigators with pre-defi sc:name "ISTH" ; sc:url "http://isth.breakthrough.healthcare" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0634, - edam:topic_3444 ; - sc:citation , - "pubmed:31804327" ; - sc:description """Association of MRI-defined lumbar paraspinal muscle mass and slip percentage in degenerative and isthmic spondylolisthesis. - -The objective of this study is to investigate the role of paraspinal muscles in the progression of different types of spondylolisthesis by examining the correlation between cross-sectional area (CSA) of lumbar paraspinal muscle and slip percentage (SP) in degenerative spondylolisthesis and isthmic spondylolisthesis. A multicenter retrospective analysis was carried out including 219 subjects diagnosed with lumbar spondylolisthesis. Using T2-weighted axial magnetic resonance imgaging, CSAs of the psoas major (PM), multifidus (MU), and erector spinae were measured and divided by L5 vertebral body (VB) CSA. SP was measured using sagittal T2-weighted images. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'spondylolisthesis degenerative spondylolisthesis', 'isthmic spondylolisthesis', 'isthmic spondylolisthesis degenerative', 'VB'""" ; - sc:featureList edam:operation_3659 ; - sc:name "isthmic spondylolisthesis degenerative spondylolisthesis" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31804327" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -261232,7 +268915,7 @@ The objective of this study is to investigate the role of paraspinal muscles in biotools:primaryContact "Yan Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0108, @@ -261249,7 +268932,7 @@ The objective of this study is to investigate the role of paraspinal muscles in biotools:primaryContact "Xiao Xuan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0128, @@ -261269,7 +268952,7 @@ The objective of this study is to investigate the role of paraspinal muscles in biotools:primaryContact "Yan Xu Close" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, @@ -261291,8 +268974,22 @@ The objective of this study is to investigate the role of paraspinal muscles in "Windows" ; sc:url "https://github.com/csbioinfopk/iSumoK-PseAAC" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:citation , + "pubmed:21572175" ; + sc:description "IsUnstruct is a new method based on the Ising model used for the prediction of disordered residues from protein sequence alone." ; + sc:isAccessibleForFree true ; + sc:name "IsUnstruct" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "v2.02" ; + sc:url "http://bioinfo.protres.ru/IsUnstruct/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3170, @@ -261311,7 +269008,7 @@ The objective of this study is to investigate the role of paraspinal muscles in biotools:primaryContact "Hasan Awad Aljohi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2275, @@ -261334,7 +269031,7 @@ Optimizing bonded terms of a CG model.""" ; sc:url "http://www.github.com/GMPavanLab/SwarmCG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0121, @@ -261351,7 +269048,7 @@ Optimizing bonded terms of a CG model.""" ; sc:url "https://github.com/taigangliu/iT3SE-PX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168 ; @@ -261367,7 +269064,7 @@ Optimizing bonded terms of a CG model.""" ; biotools:primaryContact "Jeong-Hyeon Choi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -261386,7 +269083,7 @@ Optimizing bonded terms of a CG model.""" ; biotools:primaryContact "Guillem Rigaill" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -261406,7 +269103,7 @@ Optimizing bonded terms of a CG model.""" ; biotools:primaryContact "Chao Cheng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Suite" ; sc:applicationSubCategory edam:topic_0637, @@ -261424,7 +269121,7 @@ Optimizing bonded terms of a CG model.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -261443,7 +269140,7 @@ Optimizing bonded terms of a CG model.""" ; biotools:primaryContact "Ka Yee Yeung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -261463,7 +269160,7 @@ Optimizing bonded terms of a CG model.""" ; biotools:primaryContact "Ka Yee Yeung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation , @@ -261483,7 +269180,7 @@ Optimizing bonded terms of a CG model.""" ; biotools:primaryContact "Hongxu Ding" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -261504,7 +269201,7 @@ The IterCluster is a barcode clustering algorithm fragment read analysis. There sc:url "https://github.com/JianCong-WENG/IterCluster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3168, @@ -261522,8 +269219,28 @@ The IterCluster is a barcode clustering algorithm fragment read analysis. There sc:url "http://bioconductor.org/packages/release/bioc/html/iteremoval.html" ; biotools:primaryContact "Jiacheng Chuan" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Library" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_3292, + edam:topic_3297, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8902591", + "pubmed:35273581" ; + sc:description "iThermo: Thermophilic Protein Prediction uses the protein sequence information to predict the thermophilic proteins. It is based on Multi-layer Perceptron classifier trained model." ; + sc:featureList edam:operation_0267, + edam:operation_0477, + edam:operation_3767 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "iThermo" ; + sc:url "http://lin-group.cn/server/iThermo/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -261540,8 +269257,27 @@ The IterCluster is a barcode clustering algorithm fragment read analysis. There sc:softwareVersion "2.0" ; sc:url "http://iti.sourceforge.net/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2269, + edam:topic_3382, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC8652029", + "pubmed:34734969" ; + sc:description """iTIME (interactive Tumor Immune MicroEnvironment) is a shiny application that creates interactive figures for examining spatial organization of individual tumors and provide basic spatial and summary information. +https://fridleylab.shinyapps.io/iTIME/""" ; + sc:featureList edam:operation_0337, + edam:operation_3443, + edam:operation_3799 ; + sc:name "iTIME" ; + sc:url "https://fridleylab.shinyapps.io/iTIME/" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3510, @@ -261557,16 +269293,38 @@ The IterCluster is a barcode clustering algorithm fragment read analysis. There sc:url "http://lin.uestc.edu.cn/server/iTIS-PseTNC" ; biotools:primaryContact "Hao Lin" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0203, + edam:topic_3068, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9205953", + "pubmed:35715466" ; + sc:description "A curated, ontology-based, large-scale knowledge graph of artificial intelligence tasks and benchmarks." ; + sc:featureList edam:operation_0224, + edam:operation_3096, + edam:operation_3559 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ITO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://openbiolink.github.io/ITOExplorer/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_3159" ; + sc:name "Phylogenetic tree" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1707" ; - sc:name "Phylogenetic tree image" ; - sc:sameAs "http://edamontology.org/data_1707" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1707" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Phylogenetic tree image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3174, @@ -261591,7 +269349,7 @@ The IterCluster is a barcode clustering algorithm fragment read analysis. There biotools:primaryContact "Georg Zeller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3379, @@ -261608,8 +269366,50 @@ ITR-Forest is used to generate individualized treatment rule (ITR) for both rand sc:name "ITR" ; sc:url "https://github.com/kdoub5ha/ITR.Forest" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2640, + edam:topic_3360, + edam:topic_3382, + edam:topic_3577 ; + sc:citation , + "pubmed:34848323" ; + sc:description "Interactive exploration of mono- and combination therapy dose response profiling data." ; + sc:featureList edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "iTReX" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://itrex.kitz-heidelberg.de" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0749, + edam:topic_0780, + edam:topic_2229, + edam:topic_3324 ; + sc:citation , + "pmcid:PMC9267065", + "pubmed:35806459" ; + sc:description "A Functional Annotation Resource for Deciphering the Complete Interaction Networks in Wheat-Karnal Bunt Pathosystem." ; + sc:featureList edam:operation_2489, + edam:operation_2492, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:name "iTritiKBdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinfo.usu.edu/tritikbdb/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -261631,13 +269431,8 @@ ITR-Forest is used to generate individualized treatment rule (ITR) for both rand biotools:primaryContact "Dr. Matthias Wolf", "Prof. Dr. Jörg Schultz" . - a sc:SoftwareApplication ; - sc:description "As a leading provider of NGS services and a partner of Illumina, CD Genomics offers a portfolio of solutions for metagenomics sequencing. 16S/18S/ITS amplicon sequencing is characterized by cost-efficiency, high-speed and practicability to help you identify and investigate the microbial community. With over 10 years of experience, we can totally meet your project requirements and budgets in the exploration of microbial biodiversity. If you are interested in what CD Genomics can do with the 16S/18S/ITS Amplicon Sequencing, please do not hesitate to contact us. We are more than happy to be of assistance!" ; - sc:name "ITS Amplicon Sequencing" ; - sc:url "https://www.cd-genomics.com/16S-18S-ITS-Amplicon-Sequencing.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3500 ; sc:citation ; @@ -261650,7 +269445,7 @@ Identify, Track and Segment sound (by) Frequency (and its) Modulation — itsFM sc:url "https://itsfm.readthedocs.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3174 ; sc:author "C.N.R. - IBIOM", @@ -261669,21 +269464,39 @@ Identify, Track and Segment sound (by) Frequency (and its) Modulation — itsFM biotools:primaryContact "Graziano Pesole" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "ITSoneWB (ITSone WorkBench) is a Galaxy-based bioinformatic environment where comprehensive and high-quality reference data are connected with established pipelines and new tools in an automated and easy-to-use service targeted at global taxonomic analysis of eukaryotic communities based on Internal Transcribed Spacer 1 variants high-throughput sequencing." ; sc:name "ITSoneWB" ; sc:url "http://itsonewb.cloud.ba.infn.it/galaxy" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_3301 ; + sc:author "Johan Bengtsson-Palme" ; + sc:citation ; + sc:description "TSx is an open source software utility to extract the highly variable ITS1 and ITS2 subregions from ITS sequences, which is commonly used as a molecular barcode for e.g. fungi. As the inclusion of parts of the neighbouring, very conserved, ribosomal genes (SSU, 5S and LSU rRNA sequences) in the sequence identification process can lead to severely misleading results, ITSx identifies and extracts only the ITS regions themselves." ; + sc:featureList edam:operation_0253 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ITSx" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareHelp ; + sc:url "https://microbiology.se/software/itsx/" ; + biotools:primaryContact "Johan Bengtsson-Palme" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_2545" ; + sc:name "Nucleic acid sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697 ; @@ -261699,7 +269512,7 @@ Identify, Track and Segment sound (by) Frequency (and its) Modulation — itsFM biotools:primaryContact "Adam Rivers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2640, @@ -261716,8 +269529,34 @@ iTTCA-Hybrid: Improved and robust identification of tumor T cell antigens by hyb sc:name "iTTCA-Hybrid" ; sc:url "http://camt.pythonanywhere.com/iTTCA-Hybrid" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2640, + edam:topic_2830, + edam:topic_3400, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8554859", + "pubmed:34706730" ; + sc:description "A random forest predictor for tumor T cell antigens." ; + sc:featureList edam:operation_0252, + edam:operation_0416, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:name "iTTCA-RF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://lab.malab.cn/~acy/iTTCA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -261734,7 +269573,7 @@ iTTCA-Hybrid: Improved and robust identification of tumor T cell antigens by hyb biotools:primaryContact "Xiao Xuan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0621, @@ -261754,7 +269593,7 @@ iTTCA-Hybrid: Improved and robust identification of tumor T cell antigens by hyb sc:url "https://github.com/azizka/IUCNN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -261773,7 +269612,7 @@ This is the website for predicting Umami Peptides from the publication called ." sc:url "http://camt.pythonanywhere.com/iUmami-SCM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0621, @@ -261793,7 +269632,7 @@ IUPACpal is an exact tool for efficient identification of inverted repeats in IU sc:url "https://sourceforge.net/projects/iupacpal/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -261814,7 +269653,7 @@ IUPACpal is an exact tool for efficient identification of inverted repeats in IU biotools:primaryContact "Anthony J. Harmar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0736, @@ -261828,12 +269667,17 @@ IUPACpal is an exact tool for efficient identification of inverted repeats in IU edam:operation_0470, edam:operation_1777, edam:operation_3904 ; + sc:isAccessibleForFree true ; sc:name "IUPred3" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; sc:url "https://iupred3.elte.hu" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -261848,8 +269692,32 @@ IUPACpal is an exact tool for efficient identification of inverted repeats in IU sc:softwareVersion "1" ; sc:url "http://www.compbio.dundee.ac.uk/jabaws/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0654, + edam:topic_2640, + edam:topic_3295, + edam:topic_3674 ; + sc:citation , + "pmcid:PMC8437300", + "pubmed:34464378" ; + sc:description "Intersection-union survival mixture-adjusted mediation test (IUSMMT) is a R procedure for examining whether a set of gene-based methylation loci affects cancer survival through gene expression under the framework of mixed models." ; + sc:featureList edam:operation_2495, + edam:operation_3196, + edam:operation_3206, + edam:operation_3207 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "IUSMMT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/biostatpzeng/IUSMMT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3170, @@ -261869,7 +269737,7 @@ IUPACpal is an exact tool for efficient identification of inverted repeats in IU biotools:primaryContact "Liang Niu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157, @@ -261884,7 +269752,7 @@ IUPACpal is an exact tool for efficient identification of inverted repeats in IU sc:url "http://sanger-pathogens.github.io/iva/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3168, @@ -261902,22 +269770,22 @@ iVar - DataBase of Genomics Variants.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ], + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Feature table" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170, @@ -261936,8 +269804,29 @@ iVar - DataBase of Genomics Variants.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/IVAS.html" ; biotools:primaryContact "Seonggyun Han" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_2269, + edam:topic_3572 ; + sc:citation , + "pmcid:PMC8618008", + "pubmed:34833800" ; + sc:description "An Open-Source Toolbox for Visualization and Analysis of Crowd-Sourced Sensor Data." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "iVayu" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sachit27/VAYU" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275, @@ -261954,7 +269843,7 @@ iVar - DataBase of Genomics Variants.""" ; biotools:primaryContact "Jacky Lee Hong Jian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0623, @@ -261971,7 +269860,7 @@ iVar - DataBase of Genomics Variants.""" ; biotools:primaryContact "Hao Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation , @@ -261987,7 +269876,7 @@ iVar - DataBase of Genomics Variants.""" ; sc:url "https://github.com/apple35932003/IVS-Caffe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3174, @@ -262005,7 +269894,7 @@ iVar - DataBase of Genomics Variants.""" ; sc:url "https://github.com/SJTU-CGM/ivTerm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168 ; @@ -262024,7 +269913,7 @@ iVar - DataBase of Genomics Variants.""" ; biotools:primaryContact "VJ Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -262048,7 +269937,7 @@ iVar - DataBase of Genomics Variants.""" ; sc:url "http://omicstudio.cloud:4005" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0769, @@ -262072,7 +269961,7 @@ All the steps of the pipeline and their dependencies are controlled by SCons so sc:url "https://github.com/alexcoppe/iWhale" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation ; @@ -262093,7 +269982,7 @@ All the steps of the pipeline and their dependencies are controlled by SCons so biotools:primaryContact "Marzia A Cremona" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3071 ; @@ -262108,7 +269997,7 @@ All the steps of the pipeline and their dependencies are controlled by SCons so sc:url "http://churchill.jax.org/software/jqtl.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0097, @@ -262126,7 +270015,7 @@ All the steps of the pipeline and their dependencies are controlled by SCons so "Jiyuan An" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0102, @@ -262145,7 +270034,7 @@ All the steps of the pipeline and their dependencies are controlled by SCons so sc:url "http://jexpress.bioinfo.no/site/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3277, edam:topic_3444, @@ -262160,8 +270049,32 @@ Joint model-based deep learning for parallel imaging.""" ; sc:name "J-MoDL" ; sc:url "https://github.com/hkaggarwal/J-MoDL" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0199, + edam:topic_2269, + edam:topic_2640, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC9270769", + "pubmed:35804300" ; + sc:description "A Julia package for the simulation of spatial models of cancer evolution and of sequencing experiments." ; + sc:featureList edam:operation_0324, + edam:operation_2426, + edam:operation_3196, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "J-SPACE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BIMIB-DISCo/J-Space.jl" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0080, @@ -262179,7 +270092,7 @@ Joint model-based deep learning for parallel imaging.""" ; sc:url "http://www.compbio.dundee.ac.uk/jabaws/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, @@ -262200,7 +270113,7 @@ Joint model-based deep learning for parallel imaging.""" ; biotools:primaryContact "Lucas A. Nell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0749, @@ -262220,7 +270133,7 @@ JACKIE (Jackie and Albert’s CRISPR K-mer Instances Enumerator) scans the genom sc:url "http://crispr.software/JACKIE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0797, @@ -262238,7 +270151,7 @@ JACKIE (Jackie and Albert’s CRISPR K-mer Instances Enumerator) scans the genom biotools:primaryContact "Neo Christopher Chung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0769, @@ -262255,7 +270168,7 @@ JACKIE (Jackie and Albert’s CRISPR K-mer Instances Enumerator) scans the genom sc:url "https://github.com/dieterich-lab/JACUSA2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -262270,7 +270183,7 @@ JACKIE (Jackie and Albert’s CRISPR K-mer Instances Enumerator) scans the genom sc:url "http://wwwabi.snv.jussieu.fr/public/Jadis/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, @@ -262289,7 +270202,7 @@ JACKIE (Jackie and Albert’s CRISPR K-mer Instances Enumerator) scans the genom . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_2269 ; @@ -262307,14 +270220,14 @@ JACKIE (Jackie and Albert’s CRISPR K-mer Instances Enumerator) scans the genom a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_3154" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3154" ; - sc:name "Protein alignment" ; - sc:sameAs "http://edamontology.org/data_3154" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API", "Web application" ; @@ -262336,7 +270249,7 @@ JACKIE (Jackie and Albert’s CRISPR K-mer Instances Enumerator) scans the genom sc:url "http://bibiserv.cebitec.uni-bielefeld.de/jali" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2275 ; sc:description "Jamberoo (former JMolEditor) is a program for displaying, analyzing, editing, converting, and animating molecular systems." ; @@ -262350,7 +270263,7 @@ JACKIE (Jackie and Albert’s CRISPR K-mer Instances Enumerator) scans the genom sc:url "http://sf.anu.edu.au/~vvv900/cct/appl/jmoleditor/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0091, @@ -262367,7 +270280,7 @@ JACKIE (Jackie and Albert’s CRISPR K-mer Instances Enumerator) scans the genom biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -262383,8 +270296,31 @@ JACKIE (Jackie and Albert’s CRISPR K-mer Instances Enumerator) scans the genom biotools:primaryContact "Marcel H Schulz", "Markus List" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0625, + edam:topic_0659, + edam:topic_2885, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8570227", + "pubmed:34730175" ; + sc:description "Japanese genome-wide identification of microRNA expression quantitative trait loci across dementia types." ; + sc:featureList edam:operation_3196, + edam:operation_3792, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "JAMIR-eQTL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.jamir-eqtl.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_3168, @@ -262398,7 +270334,7 @@ JACKIE (Jackie and Albert’s CRISPR K-mer Instances Enumerator) scans the genom sc:url "https://github.com/mahmoudibrahim/jamm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602 ; @@ -262414,7 +270350,7 @@ JACKIE (Jackie and Albert’s CRISPR K-mer Instances Enumerator) scans the genom sc:url "http://bis.ifc.unam.mx:8090/JAMMING/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -262430,7 +270366,7 @@ JACKIE (Jackie and Albert’s CRISPR K-mer Instances Enumerator) scans the genom biotools:primaryContact "Rob Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168, @@ -262454,7 +270390,7 @@ Janggu is a python package that facilitates deep learning in the context of geno sc:url "https://github.com/BIMSBbioinfo/janggu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0634, @@ -262472,8 +270408,28 @@ Janggu is a python package that facilitates deep learning in the context of geno sc:softwareHelp ; sc:url "http://charite.github.io/software-jannovar.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0219, + edam:topic_0621, + edam:topic_0623, + edam:topic_3299 ; + sc:citation ; + sc:description "This is the Schizosaccharomyces japonicus genome database." ; + sc:featureList edam:operation_0224 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "JaponicusDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.japonicusdb.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099 ; @@ -262488,8 +270444,19 @@ Janggu is a python package that facilitates deep learning in the context of geno sc:url "http://rna.bgsu.edu/jar3d" ; biotools:primaryContact "BGSU research" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3316 ; + sc:citation ; + sc:description "Efficient lossless compression of genomic sequences using a competitive prediction between two different classes of models: weighted stochastic repeat models and weighted context models." ; + sc:license "GPL-3.0" ; + sc:name "JARVIS" ; + sc:softwareVersion "1.0" ; + sc:url "https://github.com/cobilab/jarvis" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0769, @@ -262512,7 +270479,7 @@ The NIST Materials Data Curation System (MDCS) provides a means for capturing, s sc:url "https://jarvis.nist.gov/jarvisstm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, @@ -262533,7 +270500,7 @@ The NIST Materials Data Curation System (MDCS) provides a means for capturing, s "Sergey Aganezov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0611, edam:topic_2269, @@ -262552,50 +270519,41 @@ The NIST Materials Data Curation System (MDCS) provides a means for capturing, s a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2755" ; - sc:name "Transcription factor name" ; - sc:sameAs "http://edamontology.org/data_2755" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1119" ; - sc:name "JASPAR profile ID" ; - sc:sameAs "http://edamontology.org/data_1119" ], + sc:additionalType "http://edamontology.org/data_2755" ; + sc:name "Transcription factor name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2732" ; - sc:name "Family name" ; - sc:sameAs "http://edamontology.org/data_2732" ], + sc:additionalType "http://edamontology.org/data_1119" ; + sc:name "JASPAR profile ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1868" ; - sc:name "Taxon" ; - sc:sameAs "http://edamontology.org/data_1868" ], + sc:additionalType "http://edamontology.org/data_2732" ; + sc:name "Family name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ], + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_1868" ; + sc:name "Taxon" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1077" ; - sc:name "Transcription factor identifier" ; - sc:sameAs "http://edamontology.org/data_1077" ], + sc:additionalType "http://edamontology.org/data_3671" ; + sc:name "Text" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2291" ; - sc:name "UniProt ID" ; - sc:sameAs "http://edamontology.org/data_2291" ] ; + sc:additionalType "http://edamontology.org/data_1077" ; + sc:name "Transcription factor identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1119" ; - sc:name "JASPAR profile ID" ; - sc:sameAs "http://edamontology.org/data_1119" ], + sc:additionalType "http://edamontology.org/data_1119" ; + sc:name "JASPAR profile ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1119" ; - sc:name "JASPAR profile ID" ; - sc:sameAs "http://edamontology.org/data_1119" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1119" ; + sc:encodingFormat "http://edamontology.org/format_3750" ; + sc:name "JASPAR profile ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -262639,7 +270597,7 @@ The NIST Materials Data Curation System (MDCS) provides a means for capturing, s "Wyeth Wasserman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation , @@ -262659,7 +270617,7 @@ The NIST Materials Data Curation System (MDCS) provides a means for capturing, s biotools:primaryContact "Ge Tan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0654, @@ -262678,7 +270636,7 @@ The NIST Materials Data Curation System (MDCS) provides a means for capturing, s "Aziz Khan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0749 ; @@ -262695,7 +270653,7 @@ The NIST Materials Data Curation System (MDCS) provides a means for capturing, s sc:url "http://api.bioinfo.no/wsdl/Jaspar_webservice_0.2.wsdl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation ; @@ -262710,7 +270668,7 @@ The NIST Materials Data Curation System (MDCS) provides a means for capturing, s sc:url "http://api.bioinfo.no/wsdl/JasparDB.wsdl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3382, @@ -262729,7 +270687,7 @@ The NIST Materials Data Curation System (MDCS) provides a means for capturing, s biotools:primaryContact "Giri Narasimhan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3512 ; sc:citation , @@ -262760,14 +270718,12 @@ The NIST Materials Data Curation System (MDCS) provides a means for capturing, s a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation , @@ -262798,18 +270754,18 @@ The NIST Materials Data Curation System (MDCS) provides a means for capturing, s a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3590" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3590" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3590" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -262839,7 +270795,7 @@ The NIST Materials Data Curation System (MDCS) provides a means for capturing, s biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0601, edam:topic_0634, @@ -262856,7 +270812,7 @@ The NIST Materials Data Curation System (MDCS) provides a means for capturing, s biotools:primaryContact "Guillaume Beauclair" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -262871,7 +270827,7 @@ The NIST Materials Data Curation System (MDCS) provides a means for capturing, s sc:url "http://jtreeview.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2640, @@ -262889,7 +270845,7 @@ JavaDL is a deep learning program based on Java, freely available for download h sc:url "https://imdlab.mdanderson.org/JavaDL/JavaDL.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053, @@ -262906,8 +270862,26 @@ JavaDL is a deep learning program based on Java, freely available for download h sc:url "http://code.google.com/p/jawamix5/" ; biotools:primaryContact "Quan Lon" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_3673, + edam:topic_3958 ; + sc:citation , + "pubmed:35085778" ; + sc:description "JAX-CNV: clinical-graded copy number variation detector." ; + sc:featureList edam:operation_3227, + edam:operation_3920, + edam:operation_3961 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "JAX-CNV" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/TheJacksonLaboratory/JAX-CNV" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3473 ; @@ -262923,7 +270897,7 @@ JavaDL is a deep learning program based on Java, freely available for download h biotools:primaryContact "Rui Mendes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -262938,7 +270912,7 @@ JavaDL is a deep learning program based on Java, freely available for download h biotools:primaryContact "GMOD Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation , @@ -262956,7 +270930,7 @@ JavaDL is a deep learning program based on Java, freely available for download h sc:url "https://github.com/GMOD/JBrowseR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -262977,7 +270951,7 @@ JavaDL is a deep learning program based on Java, freely available for download h biotools:primaryContact "Andreas Grote" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -262996,7 +270970,7 @@ JavaDL is a deep learning program based on Java, freely available for download h biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3314 ; @@ -263011,7 +270985,7 @@ JavaDL is a deep learning program based on Java, freely available for download h sc:url "https://www.chemaxon.com/products/jchem-for-office/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3379, @@ -263033,7 +271007,7 @@ This work was conducted at the Neuroimmunology Clinic (NIC) and Translation Neur sc:url "https://github.com/omarallouz/JCnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3418, @@ -263052,18 +271026,18 @@ Official repository of the paper: JCS: An explainable COVID-19 diagnosis system a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1246" ; - sc:name "Sequence cluster (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1246" ] ; + sc:additionalType "http://edamontology.org/data_1246" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Sequence cluster (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0870" ; - sc:name "Sequence distance matrix" ; - sc:sameAs "http://edamontology.org/data_0870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0870" ; + sc:encodingFormat "http://edamontology.org/format_1423" ; + sc:name "Sequence distance matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -263081,7 +271055,7 @@ Official repository of the paper: JCS: An explainable COVID-19 diagnosis system biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0128, @@ -263102,7 +271076,7 @@ Official repository of the paper: JCS: An explainable COVID-19 diagnosis system "Qiu Xiao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3332 ; @@ -263122,7 +271096,7 @@ Official repository of the paper: JCS: An explainable COVID-19 diagnosis system biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -263140,7 +271114,7 @@ Official repository of the paper: JCS: An explainable COVID-19 diagnosis system biotools:primaryContact "Lei Xie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0176, @@ -263159,7 +271133,7 @@ Official repository of the paper: JCS: An explainable COVID-19 diagnosis system biotools:primaryContact "Achim Zielesny" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0166, @@ -263175,7 +271149,7 @@ Official repository of the paper: JCS: An explainable COVID-19 diagnosis system sc:url "http://www.healthinformaticslab.org/supp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -263193,7 +271167,7 @@ Abstract Circular RNA is a novel class of endogenous non-coding RNAs that have b sc:url "https://github.com/hallogameboy/JEDI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2269, edam:topic_3382 ; @@ -263211,7 +271185,7 @@ Abstract Circular RNA is a novel class of endogenous non-coding RNAs that have b biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622 ; @@ -263229,8 +271203,14 @@ Abstract Circular RNA is a novel class of endogenous non-coding RNAs that have b biotools:primaryContact "Carl Kingsford", "Guillaume Marçais" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "The GFP mRNA will express a green fluorescent protein, originally isolated from the jellyfish, Aequorea victoria. GFP could be used in a wide range of applications where they have functioned as a cell lineage tracer, reporter of gene expression, or as a measure of protein-protein interactions." ; + sc:name "Jellyfish GFP mRNA" ; + sc:url "https://integraterna.creative-biogene.com/jellyfish-gfp-mrna-item-pmrn-0001-470826.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0622 ; @@ -263247,7 +271227,7 @@ Abstract Circular RNA is a novel class of endogenous non-coding RNAs that have b biotools:primaryContact "Roslin Bioinformatics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, @@ -263262,7 +271242,7 @@ Abstract Circular RNA is a novel class of endogenous non-coding RNAs that have b sc:url "http://dleelab.github.io/jepeg/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -263280,7 +271260,7 @@ Abstract Circular RNA is a novel class of endogenous non-coding RNAs that have b biotools:primaryContact "Tim Jerman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -263297,7 +271277,7 @@ Abstract Circular RNA is a novel class of endogenous non-coding RNAs that have b sc:url "http://www.littlest.co.uk/software/bioinf/old_packages/jesam/jesam_paper.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0084, @@ -263320,7 +271300,7 @@ Abstract Circular RNA is a novel class of endogenous non-coding RNAs that have b biotools:primaryContact "JEvTrace team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3071, @@ -263334,7 +271314,7 @@ Abstract Circular RNA is a novel class of endogenous non-coding RNAs that have b sc:url "http://jflow.toulouse.inra.fr/app/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2275, @@ -263350,7 +271330,7 @@ Elucidating mechanistic relationships among intracellular macromolecules is fund sc:url "https://github.com/paiyetan/jfuzzymachine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -263371,7 +271351,7 @@ Elucidating mechanistic relationships among intracellular macromolecules is fund biotools:primaryContact "I.V. Grigoriev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, @@ -263394,7 +271374,7 @@ These instructions assume that you:.""" ; sc:url "https://github.com/Sage-Bionetworks/JHU-biobank" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -263410,7 +271390,7 @@ These instructions assume that you:.""" ; sc:url "http://www.jiffynet.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -263428,7 +271408,7 @@ These instructions assume that you:.""" ; biotools:primaryContact "Alida Palmisano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -263441,7 +271421,7 @@ These instructions assume that you:.""" ; sc:url "https://ccb.jhu.edu/software/jigsaw/index.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3170, @@ -263458,7 +271438,7 @@ JIND is a framework for automated cell-type identification based on neural netwo sc:url "https://github.com/mohit1997/JIND" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3168, @@ -263477,7 +271457,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati sc:url "https://jmorp.megabank.tohoku.ac.jp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3444, @@ -263496,14 +271476,13 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2129" ; - sc:name "File format name" ; - sc:sameAs "http://edamontology.org/data_2129" ] ; + sc:additionalType "http://edamontology.org/data_2129" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "File format name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2129" ; - sc:name "File format name" ; - sc:sameAs "http://edamontology.org/data_2129" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2129" ; + sc:name "File format name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -263520,10 +271499,10 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -263535,7 +271514,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati biotools:primaryContact "PRIDE Helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3172 ; @@ -263552,18 +271531,18 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3681" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3509" ; - sc:name "Ontology mapping" ; - sc:sameAs "http://edamontology.org/data_3509" ] ; + sc:additionalType "http://edamontology.org/data_3509" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Ontology mapping" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3681" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0089, @@ -263591,7 +271570,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0622, @@ -263607,7 +271586,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati sc:url "http://page.amss.ac.cn/shihua.zhang/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3391 ; @@ -263619,7 +271598,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati sc:url "http://micblab.iim.ac.cn/jnmfma/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0204, @@ -263640,7 +271619,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -263657,7 +271636,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati biotools:primaryContact "Axel Ahrens" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0781, @@ -263671,7 +271650,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati sc:url "https://coronavirus.jhu.edu/map.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3474, @@ -263691,7 +271670,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati biotools:primaryContact "Pete Philipson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0634, @@ -263709,8 +271688,33 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati "Windows" ; sc:url "https://github.com/rauschenberger/joinet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0659, + edam:topic_2229, + edam:topic_3360, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9284445", + "pubmed:35860412" ; + sc:description """Joint-SNF method uses SNF to integrate the joint structure extracted by JIVE method to obtain the fusion matrix. +The fused network enhances strong similarities and weakens spurious associations between samples while reducing the noise. The realization of Joint-SNF method relies on the following two important algorithms. +Extraction of joint structures by JIVE; Similarity Network Fusion""" ; + sc:featureList edam:operation_2938, + edam:operation_3432, + edam:operation_3503 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Joint-SNF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Sameerer/Joint-SNF" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation "pubmed:21321017" ; @@ -263724,7 +271728,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati biotools:primaryContact "Alberto Magi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "A nonparametric Test for Trend" ; sc:featureList edam:operation_2238 ; @@ -263739,7 +271743,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati biotools:primaryContact "Giuseppe Cardillo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3077, @@ -263761,7 +271765,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati biotools:primaryContact "Esteban Pérez-Wohlfeil" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0114, @@ -263781,19 +271785,8 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati sc:url "https://github.com/lmlui/Jorg" ; biotools:primaryContact "Adam P. Arkin" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3303, - edam:topic_3384, - edam:topic_3390 ; - sc:citation , - "pmcid:PMC6592134", - "pubmed:31360359" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'VOSviewer' | Altmetric Analysis of Contemporary Iranian Medical Journals | MoH Medical Journals بانک اطلاعات نشریات پزشکی کشور | سامانه اطلاعات نشریات پزشکی ایران Iran Medical Journals Information System" ; - sc:name "journals" ; - sc:url "http://journals.research.ac.ir/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -263813,8 +271806,30 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati sc:url "http://mizuguchilab.org/joy/" ; biotools:primaryContact "JOY Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3172, + edam:topic_3407, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8952385", + "pubmed:35323655" ; + sc:description "JPA (short for Joint Metabolomics Data Processing and Annotation), an R package that offers comprehensive and streamlined metabolic feature extraction and annotation." ; + sc:featureList edam:operation_3215, + edam:operation_3435, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "JPA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/HuanLab/JPA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0632 ; @@ -263833,7 +271848,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -263849,7 +271864,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati biotools:primaryContact "Sathyanarayan Rao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -263874,30 +271889,30 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ], + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3159" ; + sc:name "Taxonomy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_1991" ; + sc:name "Alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_3159" ; + sc:name "Phylogenetic tree" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ], + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3159" ; + sc:name "Taxonomy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_3159" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_1997" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3293, @@ -263926,7 +271941,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati biotools:primaryContact "Ben C. Stöver" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0654, @@ -263949,7 +271964,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati biotools:primaryContact "Ying Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -263970,7 +271985,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3542 ; @@ -263987,7 +272002,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati sc:url "http://www.compbio.dundee.ac.uk/jabaws/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, @@ -264006,7 +272021,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati biotools:primaryContact "Marc Rehmsmeier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -264023,7 +272038,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati sc:url "http://www.profilegrid.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -264038,7 +272053,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati sc:url "http://www.jprogo.de/index.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3382, edam:topic_3474 ; @@ -264051,7 +272066,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati sc:url "https://github.com/danfenghong/ECCV2018_J-Play" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -264067,7 +272082,7 @@ jMorp: Japanese Multi Omics Reference Panel - Tohoku Medical Megabank Organizati sc:url "http://www.compbio.dundee.ac.uk/jabaws/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -264088,7 +272103,7 @@ JavaScript Mass Spectrometry, a visualization GUI for Mass Spectrometry signal d sc:url "http://github.com/optimusmoose/jsms" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -264103,7 +272118,7 @@ JavaScript Mass Spectrometry, a visualization GUI for Mass Spectrometry signal d sc:url "http://sbml.org/Software/JSBML" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0804, edam:topic_3077, @@ -264123,10 +272138,9 @@ JavaScript Mass Spectrometry, a visualization GUI for Mass Spectrometry signal d a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -264141,7 +272155,7 @@ JavaScript Mass Spectrometry, a visualization GUI for Mass Spectrometry signal d sc:url "http://compomics.github.io/projects/jsparklines.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0797, @@ -264160,7 +272174,7 @@ JavaScript Mass Spectrometry, a visualization GUI for Mass Spectrometry signal d biotools:primaryContact "Ramon Rosselló Móra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293, @@ -264176,7 +272190,7 @@ JavaScript Mass Spectrometry, a visualization GUI for Mass Spectrometry signal d sc:url "https://github.com/guyleonard/jsPhyloSVG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3520, @@ -264196,14 +272210,12 @@ The jspsych-psychophysics plugin is developed for the purpose of conducting onli a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2259 ; sc:citation ; @@ -264219,7 +272231,7 @@ The jspsych-psychophysics plugin is developed for the purpose of conducting onli sc:url "http://jsquid.sbc.su.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, @@ -264240,14 +272252,14 @@ Clustering scRNA-seq by joint sparse representation clustering (jSRC) Overview:. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3246" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3246" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0121 ; @@ -264264,7 +272276,7 @@ Clustering scRNA-seq by joint sparse representation clustering (jSRC) Overview:. sc:url "https://github.com/compomics/jtraml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:31250907" ; @@ -264278,7 +272290,7 @@ Clustering scRNA-seq by joint sparse representation clustering (jSRC) Overview:. biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0102, @@ -264301,7 +272313,7 @@ Clustering scRNA-seq by joint sparse representation clustering (jSRC) Overview:. "The Center for Genome Architecture" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -264325,7 +272337,7 @@ Clustering scRNA-seq by joint sparse representation clustering (jSRC) Overview:. "The Center for Genome Architecture" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -264342,7 +272354,7 @@ Clustering scRNA-seq by joint sparse representation clustering (jSRC) Overview:. sc:url "http://homepages.inf.ed.ac.uk/vhuynht/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -264367,7 +272379,7 @@ Clustering scRNA-seq by joint sparse representation clustering (jSRC) Overview:. sc:url "https://github.com/elkebir-group/Jumper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -264387,8 +272399,38 @@ JUMPm is a software program for mass spectrometry-based metabolite identificatio sc:name "JUMPm" ; sc:url "http://www.stjuderesearch.org/site/lab/peng/jumpm" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Expression data" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0154, + edam:topic_3315, + edam:topic_3520 ; + sc:citation , + "pubmed:34587451" ; + sc:description "JUMPt (JUMP-turnover) software determines the protein turnover rates in pulse SILAC labeled animals using mass spectrometry (MS) data. JUMPt uses a novel differential equation-based mathematical model to calculate the reliable and accurate protein turnover rates. The proposed method calculates the half-life of individual proteins by fitting the dynamic data of unlabeled free Lys and protein-bound Lys from individual proteins simultaneously." ; + sc:featureList edam:operation_2476, + edam:operation_3638, + edam:operation_3715 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "JUMPt" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/JUMPSuite/JUMPt" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -264408,7 +272450,7 @@ JUMPm is a software program for mass spectrometry-based metabolite identificatio biotools:primaryContact "Stephen Hartley" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3318, @@ -264426,7 +272468,7 @@ A framework for high resolution Agent Based Modelling.""" ; sc:url "https://github.com/IDAS-Durham/JUNE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3068, @@ -264445,7 +272487,7 @@ A framework for high resolution Agent Based Modelling.""" ; sc:url "http://jupyterbook.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0625, @@ -264465,7 +272507,7 @@ A framework for high resolution Agent Based Modelling.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3170, @@ -264485,10 +272527,10 @@ A framework for high resolution Agent Based Modelling.""" ; a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "File name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3391 ; sc:author "Pierre Lindenbaum" ; @@ -264510,7 +272552,7 @@ A framework for high resolution Agent Based Modelling.""" ; biotools:primaryContact "Pierre Lindenbaum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2269 ; @@ -264526,7 +272568,7 @@ A framework for high resolution Agent Based Modelling.""" ; sc:url "http://bioinfo.genotoul.fr/jvenn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -264546,7 +272588,7 @@ A framework for high resolution Agent Based Modelling.""" ; biotools:primaryContact "K. Hiller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0769, @@ -264570,7 +272612,7 @@ A framework for high resolution Agent Based Modelling.""" ; sc:url "https://github.com/drzeeshanahmed/JWES-DB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3068, @@ -264587,7 +272629,7 @@ A framework for high resolution Agent Based Modelling.""" ; biotools:primaryContact "Yun William Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2269, @@ -264605,22 +272647,20 @@ A framework for high resolution Agent Based Modelling.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ], + sc:additionalType "http://edamontology.org/data_1008" ; + sc:name "Polypeptide chain ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1008" ; - sc:name "Polypeptide chain ID" ; - sc:sameAs "http://edamontology.org/data_1008" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130 ; sc:citation ; @@ -264638,7 +272678,7 @@ A framework for high resolution Agent Based Modelling.""" ; "Rita Casadio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -264655,7 +272695,7 @@ A framework for high resolution Agent Based Modelling.""" ; biotools:primaryContact "Lauren Bragg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, @@ -264672,7 +272712,7 @@ A framework for high resolution Agent Based Modelling.""" ; biotools:primaryContact "Tan Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0152, @@ -264695,7 +272735,7 @@ The following documentation is to help the user in usage of K-PAM web server.""" sc:url "http://www.iith.ac.in/K-PAM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080 ; @@ -264709,7 +272749,7 @@ The following documentation is to help the user in usage of K-PAM web server.""" sc:url "http://www.helsinki.fi/bsg/software/K-PAX/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0654, @@ -264727,8 +272767,28 @@ The following documentation is to help the user in usage of K-PAM web server.""" sc:url "https://github.com/ichen-lab-ucsb/k-seq" ; biotools:primaryContact "Irene A Chen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_3174, + edam:topic_3837 ; + sc:citation , + "pubmed:34606462" ; + sc:description "Discovering Discriminative K-mers From Sequencing Data for Metagenomic Reads Classification." ; + sc:featureList edam:operation_0362, + edam:operation_2995, + edam:operation_3472 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "K2Mem" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/davide92/K2Mem" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -264749,7 +272809,7 @@ The following documentation is to help the user in usage of K-PAM web server.""" biotools:primaryContact "Rob Kight" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0637, @@ -264767,17 +272827,8 @@ K2Taxonomer is an R package built around a "top-down" recursive partitioning fra sc:name "K2Taxonomer" ; sc:url "https://github.com/montilab/K2Taxonomer" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3053, - edam:topic_3168 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'introgression', 'pievos101', 'genome-scan', 'PopGenome' | Genome Scans for Selection and Introgression based on k-nearest Neighbor Techniques | Abstract In recent years, genome-scan methods have been extensively used to detect local signatures of selection and introgression. Here, we introduce a series of versatile genome-scan methods that are based on non-parametric k -nearest neighbors (kNN) techniques, while incorporating pairwise Fixation Index ( F ST ) estimates and pairwise nucleotide differences ( d xy ) as features. Simulations were performed for both positive directional selection and introgression, with varying parameters, such as recombination rates, population background histories, the proportion of introgression, and the time of gene flow. We find that kNN-based methods perform remarkably well while yielding stable results almost over the entire range of k" ; - sc:featureList edam:operation_3891 ; - sc:name "kNN-Genome-Scans" ; - sc:url "https://doi.org/10.1101/752758" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3421, @@ -264790,7 +272841,7 @@ K2Taxonomer is an R package built around a "top-down" recursive partitioning fra sc:url "http://www.kobcs.info" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0219, @@ -264808,7 +272859,7 @@ K2Taxonomer is an R package built around a "top-down" recursive partitioning fra biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -264824,7 +272875,7 @@ K2Taxonomer is an R package built around a "top-down" recursive partitioning fra biotools:primaryContact "James Wasmuth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -264845,14 +272896,14 @@ K2Taxonomer is an R package built around a "top-down" recursive partitioning fra a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3174 ; @@ -264876,7 +272927,7 @@ K2Taxonomer is an R package built around a "top-down" recursive partitioning fra "Peter Menzel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0154, @@ -264895,8 +272946,29 @@ K2Taxonomer is an R package built around a "top-down" recursive partitioning fra sc:url "https://kaikobase.dna.affrc.go.jp" ; biotools:primaryContact "Akiya Jouraku" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3300, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8586513", + "pubmed:34777017" ; + sc:description "Open-Source Software for the Analysis of Cardiac Optical Data Collected From Multiple Species." ; + sc:featureList edam:operation_3435, + edam:operation_3443, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "KairoSight" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/kairosight/kairosight-2.0" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2533, @@ -264913,7 +272985,7 @@ K2Taxonomer is an R package built around a "top-down" recursive partitioning fra biotools:primaryContact "Jun Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -264928,22 +273000,21 @@ K2Taxonomer is an R package built around a "top-down" recursive partitioning fra a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Erik Sonnhammer", - "Web Production" ; - sc:citation ; + "Job Dispatcher" ; + sc:citation , + ; sc:description "Fast and accurate multiple sequence alignment which handles large sequences." ; sc:featureList edam:operation_0492 ; - sc:name "Kalign" ; + sc:name "Kalign (EBI)" ; sc:operatingSystem "Linux", "Mac", "Windows" ; @@ -264953,10 +273024,10 @@ K2Taxonomer is an R package built around a "top-down" recursive partitioning fra ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/msa/kalign/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -264971,7 +273042,7 @@ K2Taxonomer is an R package built around a "top-down" recursive partitioning fra sc:url "http://www.ebi.ac.uk/Tools/webservices/services/msa/kalign_rest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0622 ; @@ -264986,7 +273057,7 @@ K2Taxonomer is an R package built around a "top-down" recursive partitioning fra biotools:primaryContact "Oliver Frings" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -265004,7 +273075,7 @@ K2Taxonomer is an R package built around a "top-down" recursive partitioning fra sc:url "https://pachterlab.github.io/kallisto/about.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -265026,7 +273097,7 @@ Kinship Adjusted Multiple Loci Best Linear Unbiased Prediction.""" ; sc:url "https://github.com/YinLiLin/KAML" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -265043,8 +273114,32 @@ Kinship Adjusted Multiple Loci Best Linear Unbiased Prediction.""" ; sc:url "http://vannberg.biology.gatech.edu:8080/VannbergLab/kanalyze.html" ; biotools:primaryContact "Dr. Fredrik Vannberg" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0601, + edam:topic_0602, + edam:topic_0749, + edam:topic_3300 ; + sc:citation , + "pmcid:PMC8750479", + "pubmed:35011609" ; + sc:description "A Database of Kinase-Associated Neural Protein Phosphorylation in the Brain." ; + sc:featureList edam:operation_0224, + edam:operation_0417, + edam:operation_0533 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "KANPHOS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://kanphos.neuroinf.jp/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -265063,7 +273158,7 @@ Kinship Adjusted Multiple Loci Best Linear Unbiased Prediction.""" ; biotools:primaryContact "Turner Conrad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -265079,7 +273174,7 @@ Kinship Adjusted Multiple Loci Best Linear Unbiased Prediction.""" ; biotools:primaryContact "Mihaela Zavolan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -265095,7 +273190,7 @@ Kinship Adjusted Multiple Loci Best Linear Unbiased Prediction.""" ; biotools:primaryContact "Daniel P. Matton" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -265115,7 +273210,7 @@ Kinship Adjusted Multiple Loci Best Linear Unbiased Prediction.""" ; biotools:primaryContact "KaPPA-View4 Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0196, @@ -265136,7 +273231,7 @@ Kinship Adjusted Multiple Loci Best Linear Unbiased Prediction.""" ; sc:url "https://github.com/DataIntellSystLab/KARGA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -265151,7 +273246,7 @@ Kinship Adjusted Multiple Loci Best Linear Unbiased Prediction.""" ; sc:url "http://biryani.med.yale.edu/karma/cgi-bin/mysql/karma.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench", "Workflow" ; sc:applicationSubCategory edam:topic_0196, @@ -265166,13 +273261,14 @@ Kinship Adjusted Multiple Loci Best Linear Unbiased Prediction.""" ; edam:operation_0525, edam:operation_3227, edam:operation_3644 ; - sc:license "MIT" ; + sc:license "GPL-3.0" ; sc:name "Karyon" ; + sc:softwareVersion "1.2" ; sc:url "https://github.com/Gabaldonlab/karyon" ; biotools:primaryContact "Toni Gabaldón" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0622, @@ -265193,7 +273289,7 @@ Kinship Adjusted Multiple Loci Best Linear Unbiased Prediction.""" ; biotools:primaryContact "Bernat Gel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -265216,7 +273312,7 @@ main.nf assembles KIR haplotypes from PacBio HiFi reads.""" ; sc:url "https://github.com/droeatumn/kass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -265236,7 +273332,7 @@ main.nf assembles KIR haplotypes from PacBio HiFi reads.""" ; biotools:primaryContact "Dr. Martin Kollmar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622 ; @@ -265255,7 +273351,7 @@ main.nf assembles KIR haplotypes from PacBio HiFi reads.""" ; sc:url "http://www.earlham.ac.uk/kat-tools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -265275,7 +273371,7 @@ main.nf assembles KIR haplotypes from PacBio HiFi reads.""" ; sc:url "https://github.com/flosalbizziae/kataegis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -265298,7 +273394,7 @@ Detect genotypes from raw sequence data.""" ; sc:url "http://bioinfo.ut.ee/KATK/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640 ; sc:citation ; @@ -265311,7 +273407,7 @@ Detect genotypes from raw sequence data.""" ; sc:url "http://sfb.kaust.edu.sa/Pages/Software.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053, @@ -265328,10 +273424,9 @@ Detect genotypes from raw sequence data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3388 ; sc:citation , @@ -265352,7 +273447,7 @@ Detect genotypes from raw sequence data.""" ; biotools:primaryContact "William McLaughlin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0797 ; sc:citation ; @@ -265366,7 +273461,7 @@ Detect genotypes from raw sequence data.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -265384,7 +273479,7 @@ Detect genotypes from raw sequence data.""" ; sc:url "http://www.stat.sinica.edu.tw/hsinchou/genetics/association/KBAT.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -265402,7 +273497,7 @@ Detect genotypes from raw sequence data.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -265415,8 +273510,43 @@ Detect genotypes from raw sequence data.""" ; sc:softwareVersion "1" ; sc:url "http://www.g-language.org/wiki/kbws_readme" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102 ; + sc:description "A fast and accurate tool for performing codon-aware multiple sequence alignments" ; + sc:featureList edam:operation_0492 ; + sc:license "AFL-3.0" ; + sc:name "kc-align" ; + sc:softwareVersion "1.0" ; + sc:url "https://github.com/davebx/kc-align" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2840, + edam:topic_3292, + edam:topic_3343 ; + sc:citation , + "pubmed:35348625" ; + sc:description "A tool to aid in the evaluation and classification of chemical carcinogens." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "kc-hits" ; + sc:operatingSystem "Windows" ; + sc:url "https://gitlab.com/i1650/kc-hits.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0102, @@ -265437,7 +273567,7 @@ Detect genotypes from raw sequence data.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -265451,28 +273581,73 @@ Detect genotypes from raw sequence data.""" ; sc:url "https://github.com/abdullah009/kcmbt_mt" ; biotools:primaryContact "Abdullah-Al Mamun" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_1317, + edam:topic_3300, + edam:topic_3306, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC5679743", + "pubmed:29021305" ; + sc:description "Predicting the Functional Impact of KCNQ1 Variants with Artificial Neural Networks." ; + sc:featureList edam:operation_0331, + edam:operation_0480, + edam:operation_3092, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:name "KCNQ1" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.kcnq1predict.org" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0196, + edam:topic_3174 ; + sc:citation , + "pubmed:34849595" ; + sc:description "An ultra-fast k-mer counter for assembled genome analysis." ; + sc:featureList edam:operation_0525, + edam:operation_3211, + edam:operation_3472, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "KCOSS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/kcoss-2021/KCOSS" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ], + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Processed microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640, @@ -265493,7 +273668,7 @@ Detect genotypes from raw sequence data.""" ; biotools:primaryContact "Jorma de Ronde" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3047 ; @@ -265508,7 +273683,7 @@ Long non-coding RNAs (lncRNAs) refer to functional RNA molecules with a length m sc:url "https://github.com/HuijuanQiao/KD-KLNMF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -265529,7 +273704,7 @@ Long non-coding RNAs (lncRNAs) refer to functional RNA molecules with a length m biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -265547,7 +273722,7 @@ Long non-coding RNAs (lncRNAs) refer to functional RNA molecules with a length m sc:url "http://apps.cytoscape.org/apps/kddn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -265565,7 +273740,7 @@ Long non-coding RNAs (lncRNAs) refer to functional RNA molecules with a length m biotools:primaryContact "Grady Weyenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -265584,7 +273759,7 @@ Long non-coding RNAs (lncRNAs) refer to functional RNA molecules with a length m biotools:primaryContact "Avi Ma’ayan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3050, @@ -265605,7 +273780,7 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat sc:url "https://github.com/IGBB/keanu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -265626,7 +273801,7 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0154, @@ -265648,7 +273823,7 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat biotools:primaryContact "Pavel Beran" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -265664,7 +273839,7 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat biotools:primaryContact "Stefano Toppo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -265680,7 +273855,7 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat sc:url "http://www.genome.jp/kegg/expression/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -265694,16 +273869,24 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat sc:url "http://www.kegg.jp/kegg/download/kegtools.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0128, edam:topic_0602, edam:topic_0621, edam:topic_3407 ; - sc:citation "pubmed:12539951", - "pubmed:18077471", + sc:citation , + , + , + "pmcid:PMC102409", + "pmcid:PMC6798127", + "pmcid:PMC7779016", + "pubmed:10592173", + "pubmed:12539951", "pubmed:18477636", + "pubmed:31441146", + "pubmed:33125081", "pubmed:9847135" ; sc:description "Pathway maps, molecular catalogs, genome maps and gene catalogs that capture knowledge about interactions in terms of information pathways. This tool comprises several databases, including BRITE (protein-protein interactions), PATHWAY (interaction networks for cellular processes), and LIGAND (chemical compounds and chemical reactions). Its Atlas is a new tool for the global analysis of metabolic pathways." ; sc:featureList edam:operation_0533, @@ -265721,14 +273904,14 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_3167" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0092, @@ -265753,17 +273936,18 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ] ; + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Protein family report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2984" ; - sc:name "Pathway or network report" ; - sc:sameAs "http://edamontology.org/data_2984" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2984" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Pathway or network report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0085 ; sc:author ; + sc:citation ; sc:description "A tool for representing genomic potential and transcriptomic expression into KEGG pathways." ; sc:featureList edam:operation_3925 ; sc:isAccessibleForFree true ; @@ -265772,11 +273956,11 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat sc:operatingSystem "Linux", "Mac" ; sc:softwareHelp ; - sc:softwareVersion "0.2.3" ; + sc:softwareVersion "0.3.4" ; sc:url "https://github.com/iquasere/KEGGCharter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -265798,7 +273982,7 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat biotools:primaryContact "Jitao David Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -265817,7 +274001,7 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat biotools:primaryContact "Shana White" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -265836,7 +274020,7 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat biotools:primaryContact "VJ Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -265854,7 +274038,7 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat sc:url "http://www.mathworks.com/matlabcentral/fileexchange/37561" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602 ; @@ -265874,22 +274058,22 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091 ; @@ -265908,7 +274092,7 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3071 ; @@ -265923,7 +274107,7 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat sc:url "http://www.ra.cs.uni-tuebingen.de/software/KEGGtranslator/index.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -265939,8 +274123,32 @@ The following command is used to create the taxonomy.dat and merged_deleted.dat sc:url "http://www.sailing.cs.cmu.edu/main/?page_id=430" ; biotools:primaryContact "Eric P. Xing" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_0602, + edam:topic_3174, + edam:topic_3407, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC8976094", + "pubmed:35422973" ; + sc:description "A python tool for KEGG Module evaluation and microbial genome annotation expansion." ; + sc:featureList edam:operation_0310, + edam:operation_0362, + edam:operation_3660, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "KEMET" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Matteopaluh/KEMET" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -265960,7 +274168,7 @@ KERA (Kinetic Event Resolving Algorithm) is a tool for analyzing data which cons sc:url "https://github.com/MSpiesLab/KERA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0621, @@ -265980,7 +274188,7 @@ Keras_dna is an API that helps quick experimentation in applying deep learning t sc:url "https://github.com/etirouthier/keras_dna.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -265998,7 +274206,7 @@ keras-rcnn is the Keras package for region-based convolutional neural networks." sc:url "https://github.com/broadinstitute/keras-rcnn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0154, @@ -266017,7 +274225,7 @@ keras-rcnn is the Keras package for region-based convolutional neural networks." biotools:primaryContact "Stefan Bräse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """We researched, and here you will learn who makes Keto Advanced 1500 and the best way to get the quality product you deserve. These are the real facts made by the company and the owner of the Keto Advanced 1500. https://www.bignewsnetwork.com/news/270897667/keto-1500massive-weight-loss-technique @@ -266030,18 +274238,15 @@ https://www.kemovebbs.com/Thread-Keto-Advanced-1500-Updated-October-2021-Shark-T a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_2259, @@ -266063,7 +274268,7 @@ https://www.kemovebbs.com/Thread-Keto-Advanced-1500-Updated-October-2021-Shark-T biotools:primaryContact "Jan Baumbach" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2640, @@ -266078,19 +274283,8 @@ https://www.kemovebbs.com/Thread-Keto-Advanced-1500-Updated-October-2021-Shark-T sc:url "https://cran.r-project.org/package=Keyboard" ; biotools:primaryContact "Chen Li" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_3170, - edam:topic_3512 ; - sc:citation ; - sc:description "> LOW CONFIDENCE! | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/RECIST_1.1 (PYTHONANYWHERE.COM), bio.tools/iPro70-FMWin (PYTHONANYWHERE.COM), bio.tools/camels (PYTHONANYWHERE.COM) | > CORRECT NAME OF TOOL COULD ALSO BE 'spatiotemporal-specific', 'NMTSI' | Analysis of spatiotemporal specificity of small RNAs regulating hPSC differentiation and beyond | We provide a search engine to retrieve detailed information of small RNA. For reference, please cite the following paper: | Li, L., Miu, K. K., Gu, S., Cheung, H. H. & Chan, W. Y. Comparison of multi-lineage differentiation of hiPSCs reveals novel miRNAs that regulate lineage specification. Sci Rep 8, 9630, doi:10.1038/s41598-018-27719-0 (2018) | contact: lli172@usc.edu, jinfeng@megagon.ai" ; - sc:featureList edam:operation_3501, - edam:operation_3792 ; - sc:name "keyminer" ; - sc:url "https://keyminer.pythonanywhere.com/km/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -266115,7 +274309,7 @@ https://www.kemovebbs.com/Thread-Keto-Advanced-1500-Updated-October-2021-Shark-T sc:url "https://mitchell-lab.biochem.wisc.edu/KFC_Server/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -266135,7 +274329,7 @@ https://www.kemovebbs.com/Thread-Keto-Advanced-1500-Updated-October-2021-Shark-T biotools:primaryContact "Dana Reichmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3305, @@ -266152,7 +274346,7 @@ The KG-COVID-19 project is the first instantiation of such a KG Hub. Thus, KG-CO sc:url "https://github.com/Knowledge-Graph-Hub/kg-covid-19/wiki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -266171,7 +274365,7 @@ The KG-COVID-19 project is the first instantiation of such a KG Hub. Thus, KG-CO sc:url "https://github.com/JieZheng-ShanghaiTech/KG4SL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -266189,7 +274383,7 @@ kGCN: a graph-based deep learning framework for life science.""" ; sc:url "https://github.com/clinfo/kGCN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3168 ; @@ -266204,8 +274398,32 @@ kGCN: a graph-based deep learning framework for life science.""" ; sc:softwareVersion "0.3.1" ; sc:url "http://alan.cs.gsu.edu/NGS/?q=content/kgem" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0602, + edam:topic_0625, + edam:topic_3068, + edam:topic_3473 ; + sc:citation , + "pmcid:PMC9161770", + "pubmed:35655307" ; + sc:description "Expediting knowledge acquisition by a web framework for Knowledge Graph Exploration and Visualization (KGEV)." ; + sc:featureList edam:operation_0337, + edam:operation_2421, + edam:operation_2422, + edam:operation_3625 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "KGEV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/WGLab/kgev-neo4j" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053, @@ -266222,7 +274440,7 @@ kGCN: a graph-based deep learning framework for life science.""" ; biotools:primaryContact "Dr Li, Miaoxin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -266239,18 +274457,18 @@ kGCN: a graph-based deep learning framework for life science.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ], + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "DNA sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "DNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation , @@ -266277,7 +274495,7 @@ kGCN: a graph-based deep learning framework for life science.""" ; "khmer-project@idyll.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workbench" ; sc:applicationSubCategory edam:topic_0121, @@ -266297,7 +274515,7 @@ kGCN: a graph-based deep learning framework for life science.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3168, @@ -266315,8 +274533,21 @@ kGCN: a graph-based deep learning framework for life science.""" ; biotools:primaryContact "Khyati Patel", "YetingZhang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "KiDoQ, a web server has been developed to serve scientific community working in the field of designing inhibitors against Dihydrodipicolinate synthase (DHDPS), a potential drug target enzyme of a unique bacterial DAP/Lysine pathway." ; + sc:featureList edam:operation_2945 ; + sc:name "kidoq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/kidoq/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0196, @@ -266335,7 +274566,7 @@ KIMI: R package based on Knockoff Inference for Motif Identification from molecu sc:url "https://github.com/xinbaiusc/KIMI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -266354,7 +274585,7 @@ KIMI: R package based on Knockoff Inference for Motif Identification from molecu biotools:primaryContact "M L Zingaretti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -266372,8 +274603,31 @@ KiMONo is a network inference tool for multi-omics datasets. The multi-omics net sc:name "KiMONo" ; sc:url "https://github.com/cellmapslab/kimono" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0769, + edam:topic_3068 ; + sc:citation , + "pmcid:PMC9251768", + "pubmed:35700393" ; + sc:description "A python Package for Kinetic Modeling of the Chemical Mechanism." ; + sc:featureList edam:operation_0337, + edam:operation_3219, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "KiMoPack" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://pypi.org/project/KiMoPack/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3375, @@ -266393,7 +274647,7 @@ KiMONo is a network inference tool for multi-omics datasets. The multi-omics net biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, @@ -266410,7 +274664,7 @@ KiMONo is a network inference tool for multi-omics datasets. The multi-omics net "Dr. Douglas E. V. Pires" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -266429,7 +274683,7 @@ KiMONo is a network inference tool for multi-omics datasets. The multi-omics net "Guang-Fu Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0123, @@ -266451,14 +274705,13 @@ KiMONo is a network inference tool for multi-omics datasets. The multi-omics net a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "ChEMBL Team" ; @@ -266478,14 +274731,12 @@ KiMONo is a network inference tool for multi-omics datasets. The multi-omics net a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3490" ; - sc:name "Chemical structure sketch" ; - sc:sameAs "http://edamontology.org/data_3490" ] ; + sc:additionalType "http://edamontology.org/data_3490" ; + sc:name "Chemical structure sketch" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0962" ; + sc:name "Small molecule report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154 ; sc:author "ChEMBL Team" ; @@ -266504,7 +274755,7 @@ KiMONo is a network inference tool for multi-omics datasets. The multi-omics net biotools:primaryContact "Mark Davies" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -266522,7 +274773,7 @@ Mutations in kinases are abundant and critical to study signaling pathways and r sc:url "https://bioinfo.uth.edu/kmd/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -266544,7 +274795,7 @@ Mutations in kinases are abundant and critical to study signaling pathways and r biotools:primaryContact "KinasePhos Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -266568,7 +274819,7 @@ Set up the conda environment and activate it.""" ; sc:url "https://github.com/sirimullalab/KinasepKipred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053 ; @@ -266584,7 +274835,7 @@ Set up the conda environment and activate it.""" ; biotools:primaryContact "Nilanjan Chatterjee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0166, @@ -266606,10 +274857,10 @@ Use the following command to create a virtual enviroment and install the necessa a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2301" ; - sc:name "SMILES string" ; - sc:sameAs "http://edamontology.org/data_2301" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:encodingFormat "http://edamontology.org/format_1196" ; + sc:name "SMILES string" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -266631,8 +274882,27 @@ Use the following command to create a virtual enviroment and install the necessa "Windows" ; sc:url "http://biosig.unimelb.edu.au/kin_csm/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_0749, + edam:topic_2229 ; + sc:citation , + "pmcid:PMC8756297", + "pubmed:35083039" ; + sc:description "A simple web tool for ranking pairwise associations in biomedical applications." ; + sc:featureList edam:operation_0306 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "KinderMiner web" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.kinderminer.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0621, @@ -266650,7 +274920,7 @@ Use the following command to create a virtual enviroment and install the necessa sc:url "https://github.com/moshejasper/kindisperse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -266667,7 +274937,7 @@ Use the following command to create a virtual enviroment and install the necessa sc:url "http://abcis.cbs.cnrs.fr/kindock/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -266687,7 +274957,7 @@ Use the following command to create a virtual enviroment and install the necessa biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3314, @@ -266703,7 +274973,7 @@ Use the following command to create a virtual enviroment and install the necessa sc:url "http://www.cosbi.eu/research/prototypes/kinfer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3375, @@ -266717,7 +274987,7 @@ Use the following command to create a virtual enviroment and install the necessa sc:url "https://github.com/mathesong/kinfitr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0196, @@ -266741,14 +275011,13 @@ We present here KinFragLib, a data-driven kinase-focused fragment library based a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2091" ; - sc:name "Accession" ; - sc:sameAs "http://edamontology.org/data_2091" ] ; + sc:additionalType "http://edamontology.org/data_2091" ; + sc:name "Accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_3698" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0077 ; sc:description "Easier download/extract of FASTA/Q read data and metadata from the ENA, NCBI, AWS or GCP." ; sc:featureList edam:operation_0349, @@ -266761,7 +275030,7 @@ We present here KinFragLib, a data-driven kinase-focused fragment library based sc:url "https://github.com/wwood/kingfisher-download" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2275 ; sc:description "KinImmerse translates the molecular capabilities of the kinemage graphics format into software for display and manipulation in the DiVE (Duke immersive Virtual Environment) or other VR system. KinImmerse is supported by the flexible display construction and editing features in the KiNG kinemage viewer and it implements new forms of user interaction in the DiVE." ; @@ -266774,7 +275043,7 @@ We present here KinFragLib, a data-driven kinase-focused fragment library based sc:url "http://kinemage.biochem.duke.edu/software/kinimmerse.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053 ; @@ -266791,7 +275060,7 @@ We present here KinFragLib, a data-driven kinase-focused fragment library based biotools:primaryContact "JinliangWang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0623, @@ -266812,7 +275081,7 @@ We present here KinFragLib, a data-driven kinase-focused fragment library based biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0821, @@ -266833,7 +275102,7 @@ We present here KinFragLib, a data-driven kinase-focused fragment library based biotools:primaryContact "Miguel vazquez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0623, @@ -266851,7 +275120,7 @@ We present here KinFragLib, a data-driven kinase-focused fragment library based biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0089, @@ -266874,7 +275143,7 @@ Users of KinPred-formatted Prediction Algorithm Resources.""" ; sc:url "https://figshare.com/projects/KinPred_v1_0/86885" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -266888,7 +275157,7 @@ Users of KinPred-formatted Prediction Algorithm Resources.""" ; sc:url "http://www.bioinf.uni-leipzig.de/Software/Kinwalker/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -266904,7 +275173,7 @@ Users of KinPred-formatted Prediction Algorithm Resources.""" ; sc:url "http://www.mcisb.org/resources/kipar/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0623, edam:topic_3293 ; sc:author "Boas Pucker" ; @@ -266918,7 +275187,7 @@ Users of KinPred-formatted Prediction Algorithm Resources.""" ; biotools:primaryContact "Boas Pucker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071 ; @@ -266932,7 +275201,7 @@ Users of KinPred-formatted Prediction Algorithm Resources.""" ; sc:url "https://github.com/Public-Health-Bioinformatics/kipper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3173, edam:topic_3295 ; @@ -266947,7 +275216,7 @@ Users of KinPred-formatted Prediction Algorithm Resources.""" ; biotools:primaryContact "Kismeth Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3175, @@ -266967,27 +275236,58 @@ Users of KinPred-formatted Prediction Algorithm Resources.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/kissDE.html" ; biotools:primaryContact "Aurélie Siberchicot" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0082, + edam:topic_0154, + edam:topic_0160 ; + sc:citation , + "pubmed:35536589" ; + sc:description "Predicting Off-Targets from Structural Similarities in the Kinome." ; + sc:featureList edam:operation_0337, + edam:operation_0475, + edam:operation_2929 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "KiSSim" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/volkamerlab/kissim" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Desktop application" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Library" ; sc:applicationSubCategory edam:topic_2229, + edam:topic_3382, edam:topic_3383 ; - sc:citation , + sc:citation , + , "pmcid:PMC4908324", - "pubmed:27153705" ; + "pmcid:PMC9191203", + "pubmed:27153705", + "pubmed:35579370" ; sc:description "Kinetochore Tracking (KiT) is an open-source software package for tracking kinetochores from live-cell fluorescent movies." ; - sc:featureList edam:operation_3443 ; + sc:featureList edam:operation_0337, + edam:operation_3443, + edam:operation_3799, + edam:operation_3935 ; + sc:isAccessibleForFree true ; sc:license "GPL-3.0" ; sc:name "KiT" ; sc:operatingSystem "Linux", "Mac", "Windows" ; sc:softwareHelp ; - sc:url "https://bitbucket.org/jarmond/kit/overview" ; + sc:url "https://github.com/cmcb-warwick/KiT" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0196, @@ -267011,8 +275311,24 @@ KITSUNE is a toolkit for evaluation of the length of k-mer in a given genome dat sc:name "KITSUNE" ; sc:url "https://github.com/natapol/kitsune" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3382 ; + sc:citation , + "pubmed:34813472" ; + sc:description "Overcomplete Convolutional Architectures for Biomedical Image and Volumetric Segmentation." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "KiU-Net" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/jeya-maria-jose/KiU-Net-pytorch" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -267032,7 +275348,7 @@ KITSUNE is a toolkit for evaluation of the length of k-mer in a given genome dat biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0102, @@ -267055,7 +275371,7 @@ KITSUNE is a toolkit for evaluation of the length of k-mer in a given genome dat sc:url "http://kiwifruitgenome.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3519 ; @@ -267069,7 +275385,7 @@ KITSUNE is a toolkit for evaluation of the length of k-mer in a given genome dat biotools:primaryContact "Stephen A.Krawetz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -267089,7 +275405,7 @@ KITSUNE is a toolkit for evaluation of the length of k-mer in a given genome dat sc:url "http://github.com/reality/klarigi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3174, @@ -267107,7 +275423,7 @@ kLDM is designed to infer multiple association networks based on variation of en sc:url "https://github.com/tinglab/kLDM.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -267128,7 +275444,7 @@ A manuscript describing the Kleborate software in full is currently in preparati sc:url "https://github.com/katholt/Kleborate" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3301, edam:topic_3305, @@ -267144,7 +275460,7 @@ A manuscript describing the Kleborate software in full is currently in preparati sc:url "https://maldityper.pasteur.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3172, @@ -267165,90 +275481,71 @@ The code contained in this folder can be used to reproduce the pancancer analysi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_2554" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1712" ; - sc:name "Chemical structure image" ; - sc:sameAs "http://edamontology.org/data_1712" ], + sc:additionalType "http://edamontology.org/data_0954" ; + sc:name "Database cross-mapping" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction report" ; - sc:sameAs "http://edamontology.org/data_0906" ], + sc:additionalType "http://edamontology.org/data_0982" ; + sc:name "Molecule identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0982" ; - sc:name "Molecule identifier" ; - sc:sameAs "http://edamontology.org/data_0982" ], + sc:additionalType "http://edamontology.org/data_1498" ; + sc:name "Tanimoto similarity score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2050" ; - sc:name "Molecular property (general)" ; - sc:sameAs "http://edamontology.org/data_2050" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2992" ; - sc:name "Protein structure image" ; - sc:sameAs "http://edamontology.org/data_2992" ], + sc:additionalType "http://edamontology.org/data_0893" ; + sc:name "Sequence-structure alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0890" ; - sc:name "Structural (3D) profile alignment" ; - sc:sameAs "http://edamontology.org/data_0890" ], + sc:additionalType "http://edamontology.org/data_0888" ; + sc:name "Structure similarity score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0889" ; - sc:name "Structural profile" ; - sc:sameAs "http://edamontology.org/data_0889" ], + sc:additionalType "http://edamontology.org/data_0984" ; + sc:name "Molecule name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_1537" ; + sc:name "Protein structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_2992" ; + sc:name "Protein structure image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0954" ; - sc:name "Database cross-mapping" ; - sc:sameAs "http://edamontology.org/data_0954" ], + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1461" ; - sc:name "Protein-ligand complex" ; - sc:sameAs "http://edamontology.org/data_1461" ], + sc:additionalType "http://edamontology.org/data_0897" ; + sc:name "Protein property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0897" ; - sc:name "Protein property" ; - sc:sameAs "http://edamontology.org/data_0897" ], + sc:additionalType "http://edamontology.org/data_0906" ; + sc:name "Protein interaction report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1498" ; - sc:name "Tanimoto similarity score" ; - sc:sameAs "http://edamontology.org/data_1498" ], + sc:additionalType "http://edamontology.org/data_1712" ; + sc:name "Chemical structure image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0984" ; - sc:name "Molecule name" ; - sc:sameAs "http://edamontology.org/data_0984" ], + sc:additionalType "http://edamontology.org/data_1461" ; + sc:name "Protein-ligand complex" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0893" ; - sc:name "Sequence-structure alignment" ; - sc:sameAs "http://edamontology.org/data_0893" ], + sc:additionalType "http://edamontology.org/data_2050" ; + sc:name "Molecular property (general)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0888" ; - sc:name "Structure similarity score" ; - sc:sameAs "http://edamontology.org/data_0888" ], + sc:additionalType "http://edamontology.org/data_0889" ; + sc:name "Structural profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ], + sc:additionalType "http://edamontology.org/data_1463" ; + sc:name "Small molecule structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1481" ; - sc:name "Structure alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1481" ], + sc:additionalType "http://edamontology.org/data_0890" ; + sc:name "Structural (3D) profile alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1481" ; + sc:name "Structure alignment (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -267298,12 +275595,12 @@ The code contained in this folder can be used to reproduce the pancancer analysi "Windows" ; sc:softwareHelp , ; - sc:softwareVersion "3.0" ; + sc:softwareVersion "3.2" ; sc:url "https://klifs.net" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -267321,8 +275618,51 @@ The code contained in this folder can be used to reproduce the pancancer analysi sc:url "https://github.com/juanbot/km2gcn" ; biotools:primaryContact "Juan A. Botía" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_1984" ; + sc:name "Nucleic acid sequence alignment" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3917" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Count matrix" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0858" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Sequence signature matches" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2019" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Map data" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080 ; + sc:citation , + "pmcid:PMC6116485", + "pubmed:30157759" ; + sc:description "KMA is mapping a method designed to map raw reads directly against redundant databases, in an ultra-fast manner using seed and extend." ; + sc:featureList edam:operation_3198 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "KMA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "1.4.0" ; + sc:url "https://bitbucket.org/genomicepidemiology/kma/src/master/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -267336,7 +275676,7 @@ The code contained in this folder can be used to reproduce the pancancer analysi sc:url "http://kmacs.gobics.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -267362,7 +275702,7 @@ KAUST Metagenomic Analysis Platform.""" ; sc:url "http://www.cbrc.kaust.edu.sa/kmapBLAST/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -267378,7 +275718,7 @@ KAUST Metagenomic Analysis Platform.""" ; sc:url "http://sun.aei.polsl.pl/REFRESH/index.php?page=projects&project=kmc&subpage=about" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -267399,7 +275739,7 @@ KAUST Metagenomic Analysis Platform.""" ; "Limsoon Wong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Library" ; sc:applicationSubCategory edam:topic_0219, @@ -267422,7 +275762,7 @@ KAUST Metagenomic Analysis Platform.""" ; sc:url "https://github.com/raredd/kmdata" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, @@ -267439,7 +275779,7 @@ KAUST Metagenomic Analysis Platform.""" ; sc:url "http://www.igb.uci.edu/tools/sb/metabolic-modeling/35-kmech.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157, @@ -267454,7 +275794,7 @@ KAUST Metagenomic Analysis Platform.""" ; biotools:primaryContact "Perry Ridge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -267474,7 +275814,7 @@ KAUST Metagenomic Analysis Platform.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2885, @@ -267491,7 +275831,7 @@ Kmer2SNP is a fast and accurate variants calling tool for next-generation sequen sc:url "https://github.com/yanboANU/Kmer2SNP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3174, @@ -267511,7 +275851,7 @@ Kmer2SNP is a fast and accurate variants calling tool for next-generation sequen biotools:primaryContact "Klaus Jung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "An alignment-free method capable of processing and counting k-mers in a reasonable time, while evaluating multiple values of the k parameter concurrently." ; sc:isAccessibleForFree true ; @@ -267522,7 +275862,7 @@ Kmer2SNP is a fast and accurate variants calling tool for next-generation sequen biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -267535,20 +275875,23 @@ Kmer2SNP is a fast and accurate variants calling tool for next-generation sequen edam:operation_0450, edam:operation_3472, edam:operation_3800 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; sc:name "Kmerator" ; + sc:softwareVersion "0.5.2" ; sc:url "https://github.com/Transipedia/kmerator" ; biotools:primaryContact "Thérèse Commes" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3305 ; @@ -267570,7 +275913,7 @@ Kmer2SNP is a fast and accurate variants calling tool for next-generation sequen biotools:primaryContact "Ole Lund" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -267584,7 +275927,7 @@ Kmer2SNP is a fast and accurate variants calling tool for next-generation sequen biotools:primaryContact "KmerGenie Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0196, @@ -267605,7 +275948,7 @@ KmerGO is a user-friendly tool to identify the group-specific sequences on two g sc:url "https://github.com/ChnMasterOG/KmerGO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -267624,7 +275967,7 @@ KmerGO is a user-friendly tool to identify the group-specific sequences on two g biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2269, @@ -267640,7 +275983,7 @@ KmerGO is a user-friendly tool to identify the group-specific sequences on two g biotools:primaryContact "Páll Melsted" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3174, @@ -267659,10 +276002,10 @@ kmtricks is a modular tool suite for counting kmers, and constructing Bloom filt a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1207" ; + sc:name "Sequence set (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3047 ; sc:author "Ketil Malde" ; @@ -267679,7 +276022,7 @@ kmtricks is a modular tool suite for counting kmers, and constructing Bloom filt biotools:primaryContact "Ketil Malde" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -267695,7 +276038,7 @@ kmtricks is a modular tool suite for counting kmers, and constructing Bloom filt sc:url "http://compbio.med.wayne.edu/software/KNet/index.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -267710,7 +276053,7 @@ kmtricks is a modular tool suite for counting kmers, and constructing Bloom filt sc:url "https://binkley2.ncifcrf.gov/users/bshapiro/knetfold/kNetFold.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0780, @@ -267732,18 +276075,17 @@ KnetMiner is a web application to search and visualise genome-scale knowledge ne a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_2350" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0092, @@ -267773,7 +276115,7 @@ KnetMiner is a web application to search and visualise genome-scale knowledge ne biotools:primaryContact "Alexander Fillbrunn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_2259 ; sc:citation , @@ -267785,7 +276127,7 @@ KnetMiner is a web application to search and visualise genome-scale knowledge ne biotools:primaryContact "Manuel Gunkel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0622, @@ -267803,7 +276145,7 @@ KnetMiner is a web application to search and visualise genome-scale knowledge ne biotools:primaryContact "Pierre LINDENBAUM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -267820,7 +276162,7 @@ KnetMiner is a web application to search and visualise genome-scale knowledge ne biotools:primaryContact "Robert Kueffner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3068, @@ -267840,7 +276182,7 @@ After your Node.js environment and MySQL are ready, find out the location of the sc:url "https://knindex.pufengdu.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -267860,7 +276202,7 @@ Knock-In / Knock-Out Network Interaction Tools.""" ; sc:url "http://knit.ims.bio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -267876,8 +276218,30 @@ Knock-In / Knock-Out Network Interaction Tools.""" ; sc:url "http://function.princeton.edu/software/" ; biotools:primaryContact "Russ B. Altman" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0082, + edam:topic_0097, + edam:topic_0659, + edam:topic_3512 ; + sc:citation ; + sc:description "KnotAli is an algorithm for predicting the pseudoknotted secondary structures of RNA using relaxed Hierarchical Folding." ; + sc:featureList edam:operation_0278, + edam:operation_0292, + edam:operation_0502, + edam:operation_0570, + edam:operation_3469 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "KnotAli" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/mateog4712/KnotAli" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -267893,7 +276257,7 @@ Knock-In / Knock-Out Network Interaction Tools.""" ; "Yanni Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3382, @@ -267911,7 +276275,7 @@ Knock-In / Knock-Out Network Interaction Tools.""" ; sc:url "https://designfordementia.squarespace.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -267930,7 +276294,7 @@ Knock-In / Knock-Out Network Interaction Tools.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -267955,7 +276319,7 @@ Knock-In / Knock-Out Network Interaction Tools.""" ; biotools:primaryContact "Purdue University, College of Science" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0602, @@ -267974,7 +276338,7 @@ Knock-In / Knock-Out Network Interaction Tools.""" ; biotools:primaryContact "Liping Wei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -267991,7 +276355,7 @@ Knock-In / Knock-Out Network Interaction Tools.""" ; sc:url "https://cran.r-project.org/web/packages/KOBT/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3365, @@ -268011,7 +276375,7 @@ Knock-In / Knock-Out Network Interaction Tools.""" ; biotools:primaryContact "Stefano Cacciatore" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749, @@ -268027,7 +276391,7 @@ Knock-In / Knock-Out Network Interaction Tools.""" ; biotools:primaryContact "Inanc Birol" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0081, @@ -268044,7 +276408,7 @@ Knock-In / Knock-Out Network Interaction Tools.""" ; biotools:primaryContact "Raffaele Giancarlo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697, @@ -268059,8 +276423,28 @@ Revealing repeats using K-core on unitig graphs.""" ; sc:name "KOMB" ; sc:url "https://gitlab.com/treangenlab/komb.git" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0218, + edam:topic_0621, + edam:topic_3374, + edam:topic_3375 ; + sc:citation ; + sc:description "Knowledgebase of Microbes’ Battling Agents for Therapeutics." ; + sc:featureList edam:operation_0306, + edam:operation_3482 ; + sc:isAccessibleForFree true ; + sc:name "KOMBAT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://kombat.igib.res.in/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -268077,7 +276461,7 @@ Komenti is a tool for semantic query, annotation, and analysis of text using ont sc:url "http://github.com/reality/komenti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -268094,7 +276478,7 @@ Komenti is a tool for semantic query, annotation, and analysis of text using ont biotools:primaryContact "FP Lobo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -268108,7 +276492,7 @@ Komenti is a tool for semantic query, annotation, and analysis of text using ont sc:url "http://www.tgac.ac.uk/kontaminant/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -268128,7 +276512,7 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu sc:url "https://team.inria.fr/nano-d/korp-pl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -268150,7 +276534,7 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu biotools:primaryContact "Kosmos team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3056, @@ -268166,7 +276550,7 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu sc:url "https://eeg-ebe.github.io/KoT/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2814, @@ -268182,7 +276566,7 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu sc:url "http://kotaiab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2815, edam:topic_2830, @@ -268198,7 +276582,7 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu biotools:primaryContact "Carl Kingsford" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -268212,7 +276596,7 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu sc:url "http://www.cs.cmu.edu/~ckingsf/software/pathenc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0632, @@ -268231,7 +276615,7 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu sc:url "https://github.com/droeatumn/kpi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0659, @@ -268255,8 +276639,21 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu sc:url "http://kplogo.wi.mit.edu/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation , + "pubmed:32746932" ; + sc:description "Knowledge-primed neural networks developed in the Bock lab at CeMM. KPNNs are neural networks that are trained using a knowledge-based network structure, which enables interpretability after training. Networks used in KPNNs should consist of nodes with labels (for example proteins in biological networks) that are connected based on prior knolwedge. After training, KPNNs enable extraction of node weights (importance scores) that represent the importance of individual nodes for the prediction." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "KPNN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/epigen/KPNN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0632, @@ -268278,14 +276675,14 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174 ; @@ -268303,14 +276700,14 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174 ; @@ -268325,18 +276722,18 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ], + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Taxonomy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Taxonomy" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174 ; @@ -268352,7 +276749,7 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu sc:url "https://github.com/jenniferlu717/KrakenTools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0821, @@ -268371,7 +276768,7 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3390, @@ -268391,7 +276788,7 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu sc:url "http://coda.nih.go.kr/coda/KRGDB/index.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3293, @@ -268414,7 +276811,7 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu "Tulio de Oliveira" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation "pubmed:21961884" ; @@ -268431,22 +276828,22 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0637, @@ -268466,7 +276863,7 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -268483,26 +276880,60 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu sc:url "https://github.com/jtaghiyar/kronos" ; biotools:primaryContact "Jafar Taghiyar" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Script" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0621, + edam:topic_0654, + edam:topic_2229, + edam:topic_3940 ; + sc:citation ; + sc:description "A uniform framework for single-cell replication timing analysis." ; + sc:featureList edam:operation_3454, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Kronos scRT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/CL-CHEN-Lab/Kronos_scRT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Command-line tool" ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0203, - edam:topic_3518 ; - sc:citation ; - sc:description "Network-based Prediction of Differential Kinase Activity from Kinome Array Data." ; - sc:featureList edam:operation_0417, - edam:operation_0531, - edam:operation_3927 ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_0601, + edam:topic_0769, + edam:topic_3179 ; + sc:citation , + , + "pmcid:PMC8682895", + "pubmed:34919543" ; + sc:description "An R package and R Shiny web application for an end-to-end upstream kinase analysis of kinome array data." ; + sc:featureList edam:operation_0335, + edam:operation_0337, + edam:operation_3695, + edam:operation_3891, + edam:operation_3960 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; sc:name "KRSA" ; - sc:url "https://github.com/kalganem/KRSA" . + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://kalganem.shinyapps.io/KRSA/" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2640, @@ -268525,7 +276956,7 @@ Our Knowledge-base ORientational Potential (KORP-PL), developed in a joint-ventu sc:url "https://jiang-lab.shinyapps.io/kscv/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -268544,7 +276975,7 @@ KSP is a method for predicting kinase annotations for phosphorylation sites by e sc:url "https://sourceforge.net/projects/kspscore/files/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -268560,7 +276991,7 @@ KSP is a method for predicting kinase annotations for phosphorylation sites by e sc:url "https://github.com/PengyiYang/KSP-PUEL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0084, @@ -268585,7 +277016,7 @@ KSP is a method for predicting kinase annotations for phosphorylation sites by e biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3336, @@ -268605,7 +277036,7 @@ KSP is a method for predicting kinase annotations for phosphorylation sites by e biotools:primaryContact "Adam Brown" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -268620,7 +277051,7 @@ KSP is a method for predicting kinase annotations for phosphorylation sites by e sc:url "https://github.com/yhg926/public_kssd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3518 ; sc:description "KTH-package provides a collection of tools designed to make the microarray data analysis easier." ; @@ -268632,8 +277063,26 @@ KSP is a method for predicting kinase annotations for phosphorylation sites by e sc:softwareVersion "1.2.1" ; sc:url "http://www.biotech.kth.se/molbio/microarray/dataanalysis/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_3421 ; + sc:citation , + "pubmed:35000822" ; + sc:description "Kidney Transplantation Outcome Predictions (KTOP) allows the prediction of certain outcomes after kidney transplantations from brain-dead deceased donors." ; + sc:featureList edam:operation_3503, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "KTOP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://riskcalc.org/ktop/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293, @@ -268650,7 +277099,7 @@ KSP is a method for predicting kinase annotations for phosphorylation sites by e biotools:primaryContact "Castresana Villamor, José" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3168 ; @@ -268665,7 +277114,7 @@ There is a bug in multi-file handling in v1.2.0 and previous versions of Ktrim, sc:url "https://github.com/hellosunking/Ktrim/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -268685,7 +277134,7 @@ The kTWAS program leverages TWAS-like feature selection (Elastic Net weights) fo sc:url "https://github.com/theLongLab/kTWAS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0610 ; @@ -268702,7 +277151,7 @@ The kTWAS program leverages TWAS-like feature selection (Elastic Net weights) fo biotools:primaryContact "Marlon E. Cobos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3304, edam:topic_3384, @@ -268722,7 +277171,7 @@ A workflow to allow Freesurfer recon-all to run on brain images with large lesio sc:url "https://github.com/KUL-Radneuron/KUL_VBG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -268744,7 +277193,7 @@ A workflow to allow Freesurfer recon-all to run on brain images with large lesio biotools:primaryContact "Xue-wen Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0780, @@ -268763,7 +277212,7 @@ KusakiDB is a database of protein orthologous groups (OGs) that:.""" ; sc:url "http://pgdbjsnp.kazusa.or.jp/app/kusakidb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -268782,7 +277231,7 @@ KusakiDB is a database of protein orthologous groups (OGs) that:.""" ; sc:url "http://bioinfo.zju.edu.cn/KVarPredDB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -268804,8 +277253,38 @@ KusakiDB is a database of protein orthologous groups (OGs) that:.""" ; sc:softwareVersion "0.12.2" ; sc:url "https://www.swisstph.ch/en/about/mpi/tuberculosis-research/kvarq-targeted-and-direct-variant-calling-in-fastq-reads-of-bacterial-genomes/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2878" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structural motif" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Plug-in" ; + sc:applicationSubCategory edam:topic_0081, + edam:topic_1317, + edam:topic_2814, + edam:topic_3332 ; + sc:citation ; + sc:description """The KVFinder software, originally published in 2014, is DEPRECATED. + +We published more recent software: parKVFinder and pyKVFinder.""" ; + sc:featureList edam:operation_0250, + edam:operation_2575, + edam:operation_3351 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "KVFinder" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:url "http://lnbio.cnpem.br/bioinformatics/main/software/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -268823,7 +277302,7 @@ KusakiDB is a database of protein orthologous groups (OGs) that:.""" ; sc:url "https://github.com/fjukstad/kvik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0749, @@ -268840,14 +277319,14 @@ Software implementing a parsimony-based heuristic algorithm for reconstructing a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0848" ; - sc:name "Raw sequence" ; - sc:sameAs "http://edamontology.org/data_0848" ] ; + sc:additionalType "http://edamontology.org/data_0848" ; + sc:encodingFormat "http://edamontology.org/format_2571" ; + sc:name "Raw sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0870" ; - sc:name "Sequence distance matrix" ; - sc:sameAs "http://edamontology.org/data_0870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0870" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Sequence distance matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -268867,7 +277346,7 @@ Software implementing a parsimony-based heuristic algorithm for reconstructing a biotools:primaryContact "Kevin Murray" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3383 ; @@ -268886,7 +277365,7 @@ Software implementing a parsimony-based heuristic algorithm for reconstructing a sc:url "https://www.encalada.scripps.edu/kymoanalyzer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0780, @@ -268903,7 +277382,7 @@ Software implementing a parsimony-based heuristic algorithm for reconstructing a biotools:primaryContact "Philippe Andrey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3315, @@ -268923,7 +277402,7 @@ Kyrix facilitates the creation of data visualizations with details-on-demand int sc:url "https://github.com/tracyhenry/kyrix" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3334, @@ -268939,8 +277418,20 @@ Kyrix facilitates the creation of data visualizations with details-on-demand int ; sc:url "http://cng.gmu.edu:8080/Lm/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3954 ; + sc:citation , + "pubmed:34995188" ; + sc:description "Second-Order Ultrasound Elastography With L1-Norm Spatial Regularization." ; + sc:isAccessibleForFree true ; + sc:name "L1-SOUL" ; + sc:url "https://users.encs.concordia.ca/~impact/code/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -268955,7 +277446,7 @@ Kyrix facilitates the creation of data visualizations with details-on-demand int biotools:primaryContact "Zhao Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0821 ; sc:description "L1pred is a sequence-based prediction tool for catalytic residues in enzymes with the L1-logreg classifier" ; @@ -268966,7 +277457,7 @@ Kyrix facilitates the creation of data visualizations with details-on-demand int sc:url "http://sysbio.unl.edu/L1pred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0204 ; @@ -268981,7 +277472,7 @@ Kyrix facilitates the creation of data visualizations with details-on-demand int sc:url "http://depts.washington.edu/l2l/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; @@ -268997,14 +277488,12 @@ Light Field (LF) offers unique advantages such as post-capture refocusing and de a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0121, @@ -269027,7 +277516,7 @@ Light Field (LF) offers unique advantages such as post-capture refocusing and de biotools:primaryContact "LA-iMages support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0607, edam:topic_0622, @@ -269041,7 +277530,7 @@ Light Field (LF) offers unique advantages such as post-capture refocusing and de sc:url "http://www.lab7.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -269058,14 +277547,14 @@ Light Field (LF) offers unique advantages such as post-capture refocusing and de biotools:primaryContact "Hong-Bin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Label3DMaize was applied to achieve semi-automatic point cloud segmentation and annotation of maize shoots at different growth stages, through a series of operations, including stem segmentation, coarse segmentation, fine segmentation, and sample-based segmentation." ; sc:name "Label3DMaize" ; sc:softwareVersion "2.0" ; sc:url "https://github.com/syau-miao/Label3DMaize.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -269081,7 +277570,7 @@ Light Field (LF) offers unique advantages such as post-capture refocusing and de biotools:primaryContact "Nicole Prause" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -269106,7 +277595,7 @@ Light Field (LF) offers unique advantages such as post-capture refocusing and de sc:url "https://github.com/TaliaferroLab/LABRAT/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal" ; sc:applicationSubCategory edam:topic_0607, @@ -269127,7 +277616,7 @@ LabxDB for high-throughput sequencing (HTS) annotation. LabxDB seq organizes sam sc:url "https://labxdb.vejnar.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2269 ; @@ -269140,8 +277629,29 @@ LabxDB for high-throughput sequencing (HTS) annotation. LabxDB seq organizes sam sc:softwareHelp ; sc:url "http://shendurelab.github.io/LACHESIS/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0114, + edam:topic_0204, + edam:topic_0602, + edam:topic_0625, + edam:topic_3407 ; + sc:citation , + "pubmed:35723033" ; + sc:description "A free web-based lac operon simulation that enhances student learning of gene regulation concepts." ; + sc:featureList edam:operation_0435, + edam:operation_3196, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:name "LacOp" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://flask-env.rnwhymamqf.us-west-2.elasticbeanstalk.com/lacop" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0654, @@ -269158,7 +277668,7 @@ LabxDB for high-throughput sequencing (HTS) annotation. LabxDB seq organizes sam sc:url "http://services.appliedgenomics.org/software/ladderfinder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0622, @@ -269175,7 +277685,7 @@ LabxDB for high-throughput sequencing (HTS) annotation. LabxDB seq organizes sam biotools:primaryContact "Michael Brudno" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -269197,7 +277707,7 @@ LabxDB for high-throughput sequencing (HTS) annotation. LabxDB seq organizes sam biotools:primaryContact "LAHEDES Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0601, @@ -269221,14 +277731,14 @@ Search LAHMA database by PDB identifier.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0780 ; @@ -269254,7 +277764,7 @@ Search LAHMA database by PDB identifier.""" ; "Jinbo Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -269277,14 +277787,13 @@ Search LAHMA database by PDB identifier.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0780 ; @@ -269307,7 +277816,7 @@ Search LAHMA database by PDB identifier.""" ; "Jinbo Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080 ; @@ -269325,42 +277834,42 @@ Search LAHMA database by PDB identifier.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_1381" ; + sc:encodingFormat "http://edamontology.org/format_3014" ; + sc:name "Sequence alignment (pair)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -269382,7 +277891,7 @@ Search LAHMA database by PDB identifier.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3387, @@ -269401,7 +277910,7 @@ Search LAHMA database by PDB identifier.""" ; biotools:primaryContact "Jeffrey Hollister" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2269 ; sc:citation , @@ -269419,24 +277928,23 @@ This repository contains all the materials needed to reproduce Hollister et al. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157 ; sc:author "Bill Pearson", - "Web Production" ; - sc:citation ; + "Job Dispatcher" ; + sc:citation , + ; sc:description "Find internal duplications by calculating non-intersecting local sequence alignments." ; sc:featureList edam:operation_0491, edam:operation_0495 ; - sc:name "LALIGN" ; + sc:name "LALIGN (EBI)" ; sc:operatingSystem "Linux", "Mac", "Windows" ; @@ -269446,29 +277954,10 @@ This repository contains all the materials needed to reproduce Hollister et al. ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/psa/lalign/" ; - biotools:primaryContact "Web Production" . - - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Web application" ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0121, - edam:topic_0622 ; - sc:description "LALIGN, from the FASTA package, finds multiple matching subsegments in two sequences, locally or globally." ; - sc:featureList edam:operation_0292, - edam:operation_0346, - edam:operation_0491, - edam:operation_2479 ; - sc:name "LALIGN (SIB)" ; - sc:operatingSystem "Linux", - "Mac", - "Windows" ; - sc:softwareHelp ; - sc:url "http://embnet.vital-it.ch/software/LALIGN_form.html" ; - biotools:primaryContact "Bill Pearson" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, @@ -269487,7 +277976,7 @@ Welcome to LAMA, an open source pipeline to automatically identify embryo dysmor sc:url "https://github.com/mpi2/LAMA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2269, @@ -269505,7 +277994,7 @@ An R package of model based clustering for flow and mass cytometry data.""" ; sc:url "https://github.com/abikoushi/lambda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0623, @@ -269525,7 +278014,7 @@ An R package of model based clustering for flow and mass cytometry data.""" ; sc:url "http://www.lm.lncc.br" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2840, edam:topic_3301, @@ -269544,7 +278033,7 @@ An R package of model based clustering for flow and mass cytometry data.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -269575,7 +278064,7 @@ Sorry, this file is invalid so it cannot be displayed.""" ; sc:url "https://github.com/Gorbalenya-Lab/LAMPA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2885, @@ -269590,7 +278079,7 @@ Sorry, this file is invalid so it cannot be displayed.""" ; sc:url "http://a-terada.github.io/lamplink/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0632, @@ -269613,7 +278102,7 @@ The 'Ligation-mediated Amplified, Multiplexed Primer-pair Sequence' or LAMPS is sc:url "https://github.com/BlanchetteLab/LAMPS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0749, @@ -269632,7 +278121,7 @@ LanceOtron is a machine learning, genomic data extraction and analysis tool trai sc:url "https://lanceotron.molbiol.ox.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -269649,24 +278138,8 @@ Lancet is a somatic variant caller (SNVs and indels) for short read data. Lancet sc:name "Lancet" ; sc:url "https://github.com/nygenome/lancet" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3068 ; - sc:citation ; - sc:description """Open educational resources for validation of global high-resolution land cover maps. - -Land cover (LC) maps are crucial to analyze and understand several phenomena, including urbanization, deforestation and climate change. This elevates the importance of their accuracy, which is assessed through a validation process. However, we observed that knowledge on the importance of LC maps and their validation is limited. Hence, a set of educational resources has been created to assist in the validation of LC maps. These resources, available under an open access license, focus on validation through open source and easy-to-use software. Moreover, addressing the lack of accurate and up-to-date reference LC data, an application has been developed that provides users a means to collect LC data. - -||| HOMEPAGE BROKEN!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'deforestation', 'LC', 'urbanization', 'elevates'""" ; - sc:featureList edam:operation_2428, - edam:operation_2429 ; - sc:name "land" ; - sc:url "http://www.gisgeolab.polimi.it/docs/training/ISPRS2018/Land" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -269687,7 +278160,7 @@ Land cover (LC) maps are crucial to analyze and understand several phenomena, in biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2229, @@ -269700,7 +278173,7 @@ Land cover (LC) maps are crucial to analyze and understand several phenomena, in sc:url "https://github.com/edukait/laocoon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -269717,7 +278190,7 @@ Land cover (LC) maps are crucial to analyze and understand several phenomena, in biotools:primaryContact "Yann Ruffieux" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -269735,8 +278208,32 @@ Land cover (LC) maps are crucial to analyze and understand several phenomena, in sc:url "http://www.mi.fu-berlin.de/w/LiSA/Lara" ; biotools:primaryContact "Bauer M" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0097, + edam:topic_0166, + edam:topic_0659, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8734264", + "pubmed:34991448" ; + sc:description "Parallel and vectorized program for sequence-structure alignment of RNA sequences." ; + sc:featureList edam:operation_0295, + edam:operation_0302, + edam:operation_0491, + edam:operation_0502 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "LaRA 2" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareHelp ; + sc:url "https://github.com/seqan/lara" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0199, @@ -269753,7 +278250,7 @@ Land cover (LC) maps are crucial to analyze and understand several phenomena, in biotools:primaryContact "Mark Gerstein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3334, @@ -269773,7 +278270,7 @@ Land cover (LC) maps are crucial to analyze and understand several phenomena, in biotools:primaryContact "Dorit Merhof" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -269791,7 +278288,7 @@ Land cover (LC) maps are crucial to analyze and understand several phenomena, in biotools:primaryContact "Chun-Hsi Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -269809,7 +278306,7 @@ Land cover (LC) maps are crucial to analyze and understand several phenomena, in sc:url "http://genome.sph.umich.edu/wiki/LASER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -269837,7 +278334,7 @@ Land cover (LC) maps are crucial to analyze and understand several phenomena, in biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0622, @@ -269855,7 +278352,7 @@ Land cover (LC) maps are crucial to analyze and understand several phenomena, in biotools:primaryContact "Mika Gustafsson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0797 ; @@ -269872,7 +278369,7 @@ Land cover (LC) maps are crucial to analyze and understand several phenomena, in biotools:primaryContact "LAST Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:description "A tool for (1) aligning two DNA sequences, and (2) inferring appropriate scoring parameters automatically." ; @@ -269886,7 +278383,7 @@ Land cover (LC) maps are crucial to analyze and understand several phenomena, in biotools:primaryContact "LASTZ Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0122, edam:topic_0199, @@ -269902,7 +278399,7 @@ Land cover (LC) maps are crucial to analyze and understand several phenomena, in sc:url "https://zlab.umassmed.edu/~zhuangj/laSV/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, @@ -269919,7 +278416,7 @@ This gives the code for the latent Gaussian copula model.""" ; sc:url "https://github.com/Aiying0512/LGCM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -269940,7 +278437,7 @@ A tool for generating bacterial genomes from metagenomes with Nanopore long read sc:url "http://www.github.com/bhattlab/lathe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3678 ; sc:citation ; @@ -269955,7 +278452,7 @@ A tool for generating bacterial genomes from metagenomes with Nanopore long read sc:url "http://www.bioinf.uni-freiburg.de/Software/LatPack/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -269974,7 +278471,7 @@ A tool for generating bacterial genomes from metagenomes with Nanopore long read biotools:primaryContact "Log in" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2814, @@ -269990,7 +278487,7 @@ A tool for generating bacterial genomes from metagenomes with Nanopore long read sc:url "http://www.csb.iitkgp.ernet.in/applications/mol_layers/main" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -270007,7 +278504,7 @@ Here are some extra scripts that we use in combination with LayNii.""" ; sc:url "https://github.com/ofgulban/LayNii_extras" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0196, @@ -270031,8 +278528,33 @@ Here are some extra scripts that we use in combination with LayNii.""" ; "Windows" ; sc:url "https://github.com/TGatter/LazyB" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0219, + edam:topic_3300, + edam:topic_3360, + edam:topic_3422, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC9254641", + "pubmed:35788654" ; + sc:description "LBD (Lymphoma Biomarker Database) is a manually curated database of literature-supported biomarkers for lymphoma. It contains 793 biomarkers (715 single biomarkers and 78 combined biomarkers) for different subtypes of lymphoma which have been verified by experiments. The biomarkers are collected from 978 literatures from PubMed and are categorized into molecular (DNA, RNA, protein, chemical), cellular (cells or cell counts), image (imaging technologies or parameters), histopathological (characteristics of individuals' histopathological functioning), physiological (characteristics of individuals' normal functioning) biomarkers. By browsing and searching LBD, users can get access to comprehensive information about lymphoma biomarkers conveniently." ; + sc:featureList edam:operation_2421, + edam:operation_2428, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:name "LBD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bis.zju.edu.cn/LBD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3063, @@ -270050,7 +278572,7 @@ Here are some extra scripts that we use in combination with LayNii.""" ; sc:url "https://github.com/kilicogluh/lbd-covid" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269 ; @@ -270067,8 +278589,24 @@ Here are some extra scripts that we use in combination with LayNii.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/LBE.html" ; biotools:primaryContact "Cyril Dalmasso" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC3646881", + "pubmed:23667458" ; + sc:description "We developed a method LBtope for predicting linear B-cell epitopes. We developed several models using various techniques (e.g., SVM, IBk)on a large dataset of B-cell epitopes and non-epitopes (12063 epitopes and 20589 non epitopes obtained from IEDB database)." ; + sc:featureList edam:operation_2945 ; + sc:name "lbtope" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/lbtope/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -270080,7 +278618,7 @@ Here are some extra scripts that we use in combination with LayNii.""" ; sc:url "http://omics.pnl.gov/software/lc-ims-ms-feature-finder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3390, @@ -270100,7 +278638,7 @@ Nutrigenomics aims at understanding the interaction between nutrition and gene i sc:url "http://shiny.maths.usyd.edu.au/LC-N2G/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -270118,14 +278656,14 @@ Nutrigenomics aims at understanding the interaction between nutrition and gene i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084 ; @@ -270142,7 +278680,7 @@ Nutrigenomics aims at understanding the interaction between nutrition and gene i biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0202, @@ -270165,8 +278703,32 @@ Estimates the longitudinal concordance correlation to access the longitudinal ag sc:name "lcc" ; sc:url "https://prof-thiagooliveira.shinyapps.io/lccApp/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2640, + edam:topic_3172, + edam:topic_3360, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8683384", + "pubmed:34976312" ; + sc:description "The Lung Cancer Metabolome Database (LCMD), a freely available online database depositing 2013 lung cancer-related metabolites identified from 65 mass spectrometry-based lung cancer metabolomics studies." ; + sc:featureList edam:operation_2422, + edam:operation_3431, + edam:operation_3803 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "LCMD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://cosbi7.ee.ncku.edu.tw/LCMD/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3366, @@ -270182,7 +278744,7 @@ Estimates the longitudinal concordance correlation to access the longitudinal ag biotools:primaryContact "Katerina J. Kechris" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3172 ; sc:citation ; @@ -270195,10 +278757,10 @@ Estimates the longitudinal concordance correlation to access the longitudinal ag a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Mass spectrum" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -270219,7 +278781,7 @@ Estimates the longitudinal concordance correlation to access the longitudinal ag sc:url "https://github.com/PGB-LIV/lcmsWorld" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2269, @@ -270237,7 +278799,7 @@ This software implements the LCQS algorithm described in: Fu J , Ke B , Dong S . sc:url "https://github.com/SCUT-CCNL/LCQS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:citation ; sc:description "An R package and tutorial on latent change score modelling." ; @@ -270251,7 +278813,7 @@ This software implements the LCQS algorithm described in: Fu J , Ke B , Dong S . sc:url "https://milanwiedemann.shinyapps.io/shinychange/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -270269,7 +278831,7 @@ LCT is a tool that analyzes a protein sequence and portrays its Low Complexity T sc:url "http://cbdm-01.zdv.uni-mainz.de/~munoz/lct/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0176, @@ -270284,7 +278846,7 @@ LCT is a tool that analyzes a protein sequence and portrays its Low Complexity T biotools:primaryContact "Xuhui Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -270301,14 +278863,14 @@ LCT is a tool that analyzes a protein sequence and portrays its Low Complexity T a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0153, edam:topic_3172 ; @@ -270328,7 +278890,7 @@ LCT is a tool that analyzes a protein sequence and portrays its Low Complexity T biotools:primaryContact "Gerhard Thallinger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0780, edam:topic_2269, @@ -270347,7 +278909,7 @@ LCT is a tool that analyzes a protein sequence and portrays its Low Complexity T sc:url "https://github.com/gilsonshimizu/ldacov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2269, @@ -270364,7 +278926,7 @@ Code for the image generation experiments in Latent Dirichlet Allocation in Gene sc:url "https://github.com/Sumching/LDAGAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "Define data structures for linkage disequilibrium measures in populations." ; @@ -270381,7 +278943,7 @@ Code for the image generation experiments in Latent Dirichlet Allocation in Gene biotools:primaryContact "VJ Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -270401,7 +278963,7 @@ LDBlockShow is a fast and effective tool to generate linkage disequilibrium (LD) sc:url "https://github.com/BGI-shenzhen/LDBlockShow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056, @@ -270415,8 +278977,31 @@ LDBlockShow is a fast and effective tool to generate linkage disequilibrium (LD) sc:url "https://bitbucket.org/nygcresearch/ldetect" ; biotools:primaryContact "Tomas Berisa" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0203, + edam:topic_2640, + edam:topic_3305, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC8686638", + "pubmed:34930111" ; + sc:description "An online tool for integrating population-specific linkage disequilibrium patterns with tissue-specific expression data." ; + sc:featureList edam:operation_0282, + edam:operation_0488, + edam:operation_3196, + edam:operation_3226 ; + sc:isAccessibleForFree true ; + sc:name "LDexpress" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ldlink.nci.nih.gov/?tab=ldexpress" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -270431,7 +279016,7 @@ LDBlockShow is a fast and effective tool to generate linkage disequilibrium (LD) biotools:primaryContact "Yun S. Song" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -270452,7 +279037,7 @@ Run using Graphic User Interface (GUI).""" ; sc:url "https://github.com/tangyou79/LDkit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056, @@ -270469,7 +279054,7 @@ Run using Graphic User Interface (GUI).""" ; biotools:primaryContact "LDlink Admin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0102, @@ -270488,7 +279073,7 @@ LDlinkR - An R Package for Calculating Linkage Disequilibrium.""" ; sc:url "https://github.com/CBIIT/LDlinkR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697 ; @@ -270504,7 +279089,7 @@ Linear Decomposition Model.""" ; sc:url "https://github.com/yijuanhu/LDM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -270520,7 +279105,7 @@ Linear Decomposition Model.""" ; biotools:primaryContact "Hongyu Zhao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -270536,7 +279121,7 @@ Linear Decomposition Model.""" ; biotools:primaryContact "Hongyu Zhao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -270555,7 +279140,7 @@ LDNFSGB:Predicting lncRNA-disease associations using network feature similarity sc:url "https://github.com/MLMIP/LDNFSGB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -270572,7 +279157,7 @@ LDNFSGB:Predicting lncRNA-disease associations using network feature similarity biotools:primaryContact "Buhm Han" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -270595,7 +279180,7 @@ This tutorial only uses fake data for educational purposes. You should also prob sc:url "https://privefl.github.io/bigsnpr/articles/LDpred2.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -270611,7 +279196,7 @@ This tutorial only uses fake data for educational purposes. You should also prob sc:url "https://github.com/bulik/ldsc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -270631,7 +279216,7 @@ Estimate haplotypic or composite pairwise linkage disequilibrium (LD) in polyplo sc:url "https://cran.r-project.org/package=ldsep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053, @@ -270648,7 +279233,7 @@ Estimate haplotypic or composite pairwise linkage disequilibrium (LD) in polyplo biotools:primaryContact "Florence Ytournel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -270663,7 +279248,7 @@ Estimate haplotypic or composite pairwise linkage disequilibrium (LD) in polyplo sc:url "http://www.cs.cityu.edu.hk/~lwang/software/LDWP/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084 ; sc:description "Quick bioInformatic phylogeny of prokaryotes." ; sc:name "leBIBI" ; @@ -270671,18 +279256,18 @@ Estimate haplotypic or composite pairwise linkage disequilibrium (LD) in polyplo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0610, @@ -270708,8 +279293,53 @@ Estimate haplotypic or composite pairwise linkage disequilibrium (LD) in polyplo sc:url "http://bioconductor.org/packages/release/bioc/html/LEA.html" ; biotools:primaryContact "Eric Frichot" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_3300, + edam:topic_3304, + edam:topic_3384, + edam:topic_3421, + edam:topic_3444 ; + sc:citation , + "pmcid:PMC9177150", + "pubmed:35594135" ; + sc:description "A multimodal platform for deep brain stimulation surgery." ; + sc:featureList edam:operation_3435, + edam:operation_3443, + edam:operation_3890 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Lead-OR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.lead-dbs.org" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0209, + edam:topic_3047, + edam:topic_3299 ; + sc:citation , + "pmcid:PMC8760751", + "pubmed:35033209" ; + sc:description "LEADD (Lamarckian Evolutionary Algorithm for de novo Drug Design) is a tool for molecular design and optimization." ; + sc:featureList edam:operation_0479, + edam:operation_3216, + edam:operation_3435, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "LEADD" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/UAMCAntwerpen/LEADD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320, @@ -270732,7 +279362,7 @@ LeafCutter: Annotation-free quantification of RNA splicing.""" ; sc:url "http://davidaknowles.github.io/leafcutter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0780, @@ -270750,8 +279380,32 @@ LeafMachine is a GUI that autonomously extracts leaf trait data from herbarium v sc:name "LeafMachine" ; sc:url "https://github.com/Gene-Weaver/LeafMachine" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Web application", + "Workflow" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0780, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8972303", + "pubmed:35080620" ; + sc:description "LeafNet is a convenient tool that can robustly localize stomata and segment pavement cells for light-microscope images of leaves" ; + sc:featureList edam:operation_3443, + edam:operation_3553, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "LeafNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://leafnet.whu.edu.cn/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -270770,7 +279424,7 @@ LeafMachine is a GUI that autonomously extracts leaf trait data from herbarium v biotools:primaryContact "Christopher D Muir" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -270788,8 +279442,15 @@ Layered Enrichment Analysis of Pathways in R (leapR) a tool that carries out sta sc:name "leapR" ; sc:url "https://github.com/biodataganache/leapR" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "Multiple sequence alignment formulated as a statistical machine learning problem, where an optimal profile hidden Markov model for a potentially very large family of protein sequences is searched and an alignment is decoded." ; + sc:name "learnMSA" ; + sc:softwareVersion "1.0.1" ; + sc:url "https://github.com/Gaius-Augustus/learnMSA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3055, edam:topic_3056, @@ -270811,7 +279472,7 @@ Layered Enrichment Analysis of Pathways in R (leapR) a tool that carries out sta biotools:primaryContact "Liam J. Revell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -270825,7 +279486,7 @@ Layered Enrichment Analysis of Pathways in R (leapR) a tool that carries out sta sc:url "http://groups.csail.mit.edu/cb/learncoil/webcoil.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3344, @@ -270843,7 +279504,7 @@ Layered Enrichment Analysis of Pathways in R (leapR) a tool that carries out sta biotools:primaryContact "Ahmed Raafat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -270856,30 +279517,28 @@ Layered Enrichment Analysis of Pathways in R (leapR) a tool that carries out sta a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1056" ; - sc:name "Database name" ; - sc:sameAs "http://edamontology.org/data_1056" ] ; + sc:additionalType "http://edamontology.org/data_1056" ; + sc:name "Database name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_3272" ; + sc:name "Species tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_1333" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3272" ; - sc:name "Species tree" ; - sc:sameAs "http://edamontology.org/data_3272" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1984" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621 ; @@ -270902,26 +279561,26 @@ Layered Enrichment Analysis of Pathways in R (leapR) a tool that carries out sta a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3005" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2854" ; - sc:name "Position-specific scoring matrix" ; - sc:sameAs "http://edamontology.org/data_2854" ] ; + sc:additionalType "http://edamontology.org/data_2854" ; + sc:encodingFormat "http://edamontology.org/format_3005" ; + sc:name "Position-specific scoring matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mathematical model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -270941,7 +279600,7 @@ Layered Enrichment Analysis of Pathways in R (leapR) a tool that carries out sta biotools:primaryContact "Aitor Gonzalez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2269, @@ -270956,22 +279615,20 @@ Layered Enrichment Analysis of Pathways in R (leapR) a tool that carries out sta a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_1097" ; + sc:name "Sequence accession (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1097" ; - sc:name "Sequence accession (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1097" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation "pubmed:7704253" ; @@ -270987,8 +279644,32 @@ Layered Enrichment Analysis of Pathways in R (leapR) a tool that carries out sta biotools:primaryContact , "Carmen Buchrieser" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3300, + edam:topic_3304, + edam:topic_3334, + edam:topic_3444, + edam:topic_3452 ; + sc:citation , + "pmcid:PMC8695687", + "pubmed:34955721" ; + sc:description "A Fast and Accurate Graphical User Interface for Automated Detection and Anatomical Localization of Intracranial Electrodes." ; + sc:featureList edam:operation_3435, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "LeGUI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://github.com/Rolston-Lab/LeGUI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -271011,7 +279692,7 @@ Layered Enrichment Analysis of Pathways in R (leapR) a tool that carries out sta biotools:primaryContact "The Samuel Roberts Noble Foundation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -271031,7 +279712,7 @@ The Leishmania Exclusive Protein database (Leish-ExP) is a repository of protein sc:url "http://www.hpppi.iicb.res.in/Leish-ex" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -271048,7 +279729,7 @@ run scan Need to enter motif alignments before running scan.""" ; sc:url "https://leitmotif.irb.hr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3489, @@ -271070,7 +279751,7 @@ LeMaRns is an R package to set up, run and explore the outputs of the Length-bas sc:url "https://cran.r-project.org/web/packages/LeMaRns/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0749, @@ -271094,7 +279775,7 @@ Methods that completely or partially failed the LEMMI evaluation.""" ; sc:url "https://lemmi.ezlab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0769, @@ -271110,7 +279791,7 @@ Methods that completely or partially failed the LEMMI evaluation.""" ; sc:url "https://github.com/chopralab/lemon/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -271130,14 +279811,12 @@ Methods that completely or partially failed the LEMMI evaluation.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2984" ; - sc:name "Pathway or network report" ; - sc:sameAs "http://edamontology.org/data_2984" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2984" ; + sc:name "Pathway or network report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -271154,7 +279833,7 @@ Methods that completely or partially failed the LEMMI evaluation.""" ; biotools:primaryContact "Tom Michoel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2258, @@ -271169,35 +279848,16 @@ Methods that completely or partially failed the LEMMI evaluation.""" ; sc:url "https://github.com/magarveylab/lemons" ; biotools:primaryContact "Nathan A. Magarvey" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3382, - edam:topic_3404, - edam:topic_3421 ; - sc:citation , - "pubmed:31639788" ; - sc:description """Evidence-Based Clinical Practice Guidelines for the Management of Patients with Lentigo Maligna. - -What are the most effective treatment/management interventions to improve outcomes in patients with lentigo maligna?. - -Complete surgical removal of lentigo maligna lesion with 5-10mm margins is the preferred management, when possible. - -Soyer, P, Meghna Kakani, Associate Professor Pascale Guitera FACD PhD, Clinical Professor Angela Hong, Scolyer, R, Stretch, J, Strutton, G, Cancer Council Australia Melanoma Guidelines Working Party. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'maligna', 'lentigo', 'Clinical question:Effective interventions improve outcomes lentigo maligna3F', 'lentigo maligna melanoma'""" ; - sc:name "lentigo maligna" ; - sc:url "https://wiki.cancer.org.au/australia/Clinical_question:Effective_interventions_to_improve_outcomes_in_lentigo_maligna%3F" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0955" ; - sc:name "Data index" ; - sc:sameAs "http://edamontology.org/data_0955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Data index" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -271215,7 +279875,7 @@ Soyer, P, Meghna Kakani, Associate Professor Pascale Guitera FACD PhD, Clinical biotools:primaryContact "Dominique Lavenier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -271232,10 +279892,10 @@ Soyer, P, Meghna Kakani, Associate Professor Pascale Guitera FACD PhD, Clinical a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation , @@ -271252,14 +279912,14 @@ Soyer, P, Meghna Kakani, Associate Professor Pascale Guitera FACD PhD, Clinical a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622 ; sc:description "Genomics of two major lepidopteran pests." ; @@ -271276,22 +279936,20 @@ Soyer, P, Meghna Kakani, Associate Professor Pascale Guitera FACD PhD, Clinical a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1097" ; - sc:name "Sequence accession (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1097" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1097" ; + sc:name "Sequence accession (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:description "Mycobacterium leprae genome database." ; @@ -271304,7 +279962,7 @@ Soyer, P, Meghna Kakani, Associate Professor Pascale Guitera FACD PhD, Clinical sc:url "http://genolist.pasteur.fr/Leproma/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2533, @@ -271324,7 +279982,7 @@ Soyer, P, Meghna Kakani, Associate Professor Pascale Guitera FACD PhD, Clinical biotools:primaryContact "Julian Gehring" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2640, @@ -271340,8 +279998,21 @@ Soyer, P, Meghna Kakani, Associate Professor Pascale Guitera FACD PhD, Clinical sc:url "https://www.mathworks.com/matlabcentral/fileexchange/64357-leukemia-cancer-detection" ; biotools:primaryContact "Vivek Singh" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "leukemiaBD is a database of blood cancer that maintains gene expression datasets and biomarkers curated from public repositories and literature respectively. It contains following two modules for extracting data." ; + sc:featureList edam:operation_2945 ; + sc:name "leukemiabd" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/leukemiabd/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -271362,7 +280033,7 @@ Acute Lymphoblastic Leukemia (ALL) is one of the most common heterogeneous disea sc:url "http://tdb.ccmb.res.in/LeukmiR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -271383,7 +280054,7 @@ Acute Lymphoblastic Leukemia (ALL) is one of the most common heterogeneous disea sc:url "http://www.lcqb.upmc.fr/levelnet/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3385 ; @@ -271399,7 +280070,7 @@ Acute Lymphoblastic Leukemia (ALL) is one of the most common heterogeneous disea biotools:primaryContact "Andrew R. Cohen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0108, @@ -271418,7 +280089,7 @@ Use a VCF file containing alternative haplotype information to lift SAM/BAM alig sc:url "https://github.com/alshai/levioSAM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0218, @@ -271431,7 +280102,7 @@ Use a VCF file containing alternative haplotype information to lift SAM/BAM alig sc:url "https://sarkerlab.org/lexexp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3382 ; @@ -271450,7 +280121,7 @@ LexOPS is an R package and shiny app for generating controlled word stimuli, for sc:url "https://JackEdTaylor.github.io/LexOPSdocs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0081, @@ -271473,7 +280144,7 @@ LexOPS is an R package and shiny app for generating controlled word stimuli, for "Wei Hao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2269, @@ -271491,7 +280162,7 @@ LexOPS is an R package and shiny app for generating controlled word stimuli, for biotools:primaryContact "Sekretariat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0610, @@ -271514,10 +280185,9 @@ LexOPS is an R package and shiny app for generating controlled word stimuli, for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3306, @@ -271537,7 +280207,7 @@ LexOPS is an R package and shiny app for generating controlled word stimuli, for sc:url "http://lfpy.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071 ; @@ -271552,7 +280222,7 @@ LexOPS is an R package and shiny app for generating controlled word stimuli, for biotools:primaryContact "Sanguthevar Rajasekaran" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -271567,7 +280237,7 @@ LexOPS is an R package and shiny app for generating controlled word stimuli, for "Yunping Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2269, @@ -271590,7 +280260,7 @@ TP53 germline mutation carrier estimation and cancer risk predictions.""" ; sc:url "https://bioinformatics.mdanderson.org/public-software/lfspro/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -271612,7 +280282,7 @@ TP53 germline mutation carrier estimation and cancer risk predictions.""" ; biotools:primaryContact "Adam Zemla" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "The code of Local Gravitation Clustering" ; sc:featureList edam:operation_3432, @@ -271627,7 +280297,7 @@ TP53 germline mutation carrier estimation and cancer risk predictions.""" ; biotools:primaryContact "w qiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3321, @@ -271639,27 +280309,25 @@ TP53 germline mutation carrier estimation and cancer risk predictions.""" ; sc:name "LGEpred" ; sc:operatingSystem "Linux" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/lgepred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/lgepred/" ; biotools:primaryContact "Gajendra P.S. Raghava" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2797" ; - sc:name "Protein ID (LGICdb)" ; - sc:sameAs "http://edamontology.org/data_2797" ], + sc:additionalType "http://edamontology.org/data_2797" ; + sc:name "Protein ID (LGICdb)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2797" ; - sc:name "Protein ID (LGICdb)" ; - sc:sameAs "http://edamontology.org/data_2797" ] ; + sc:additionalType "http://edamontology.org/data_2797" ; + sc:name "Protein ID (LGICdb)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0166, edam:topic_3293 ; @@ -271675,7 +280343,7 @@ TP53 germline mutation carrier estimation and cancer risk predictions.""" ; biotools:primaryContact "Nicolas Le Novere" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0634, @@ -271692,7 +280360,7 @@ R package for Longitudinal Gaussian Process Regression.""" ; sc:url "http://jtimonen.github.io/lgpr-usage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099 ; @@ -271708,8 +280376,28 @@ R package for Longitudinal Gaussian Process Regression.""" ; sc:url "http://www.comp.nus.edu.sg/~bioinfo/LGSFAligner/index.htm" ; biotools:primaryContact "Jesper Jansson" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3063, + edam:topic_3068, + edam:topic_3452 ; + sc:citation , + "pmcid:PMC9098195", + "pubmed:35582239" ; + sc:description "A web based application for predicting lung health severity." ; + sc:featureList edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "LHSPred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://dibresources.jcbose.ac.in/ssaha4/lhspred" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3571 ; @@ -271724,7 +280412,7 @@ R package for Longitudinal Gaussian Process Regression.""" ; biotools:primaryContact "Rodrigo Cánovas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053 ; @@ -271738,7 +280426,7 @@ R package for Longitudinal Gaussian Process Regression.""" ; sc:url "http://pbil.univ-lyon1.fr/software/libfbat/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091 ; sc:author "Robert Homann" ; @@ -271758,7 +280446,7 @@ R package for Longitudinal Gaussian Process Regression.""" ; sc:url "http://bibiserv.cebitec.uni-bielefeld.de/libfid" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -271781,7 +280469,7 @@ R package for Longitudinal Gaussian Process Regression.""" ; sc:url "https://github.com/MolecularAI/Lib-INVENT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -271796,7 +280484,7 @@ R package for Longitudinal Gaussian Process Regression.""" ; sc:url "https://github.com/kirchnerlab/libipaca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3372 ; sc:description "A collection of data structures and algorithms. libmaus is a necessary component of Biobambam." ; @@ -271811,14 +280499,14 @@ R package for Longitudinal Gaussian Process Regression.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3652" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3652" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0121, @@ -271842,7 +280530,7 @@ R package for Longitudinal Gaussian Process Regression.""" ; sc:url "http://kirchnerlab.github.io/libmgf/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0749, @@ -271864,7 +280552,7 @@ LibMI is an histopathological image annotating library. This library is based on sc:url "https://gitlab.com/BioAI/libMI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3332, @@ -271884,7 +280572,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol sc:url "http://gnina.github.io/libmolgrid" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -271895,7 +280583,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol sc:url "http://informatics.mayo.edu/svn/trunk/mprc/raams/doc/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0154, @@ -271915,7 +280603,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol biotools:primaryContact "Marcus Johansson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3067, @@ -271937,14 +280625,14 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3747" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -271963,7 +280651,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol sc:url "http://tools.proteomecenter.org/Libra.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_2275 ; @@ -271978,14 +280666,14 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1385" ; - sc:name "Sequence alignment (hybrid)" ; - sc:sameAs "http://edamontology.org/data_1385" ] ; + sc:additionalType "http://edamontology.org/data_1385" ; + sc:encodingFormat "http://edamontology.org/format_2924" ; + sc:name "Sequence alignment (hybrid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1385" ; - sc:name "Sequence alignment (hybrid)" ; - sc:sameAs "http://edamontology.org/data_1385" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1385" ; + sc:encodingFormat "http://edamontology.org/format_2924" ; + sc:name "Sequence alignment (hybrid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3070, @@ -272011,7 +280699,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol biotools:primaryContact "Ben Stöver" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3070 ; @@ -272026,7 +280714,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol sc:url "http://www.libroadrunner.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3071 ; @@ -272041,7 +280729,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol sc:url "http://sbml.org/Software/libSBML" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0736 ; @@ -272057,7 +280745,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, @@ -272073,7 +280761,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol sc:url "http://viq854.github.io/lichee/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2269, @@ -272092,7 +280780,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol biotools:primaryContact "G. Andrés Cisneros" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3070, @@ -272110,7 +280798,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol biotools:primaryContact "Giuseppe Cardillo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -272123,7 +280811,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol sc:url "http://www.cs.cityu.edu.hk/~lwang/software/Link/index.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -272141,24 +280829,30 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol ; sc:url "http://www.lifeexplorer.info/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "Liferay, Inc., is an open-source company that provides free documentation and paid professional service to users of its software. Mainly focused on enterprise portal technology, the company has its headquarters in Diamond Bar, California, United States." ; + sc:name "Liferay" ; + sc:url "https://www.liferay.com/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1868" ; - sc:name "Taxon" ; - sc:sameAs "http://edamontology.org/data_1868" ], + sc:additionalType "http://edamontology.org/data_1869" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Organism identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3549" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1869" ; - sc:name "Organism identifier" ; - sc:sameAs "http://edamontology.org/data_1869" ] ; + sc:additionalType "http://edamontology.org/data_1868" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Taxon" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3546" ; - sc:name "Image metadata" ; - sc:sameAs "http://edamontology.org/data_3546" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3546" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Image metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3050, edam:topic_3382, @@ -272181,7 +280875,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -272198,7 +280892,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol sc:url "https://github.com/agshumate/Liftoff" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071 ; @@ -272214,7 +280908,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol sc:url "http://api.bioinfo.no/wsdl/LiftOverService.wsdl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3304, @@ -272236,7 +280930,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol sc:url "https://pypi.org/project/liftpose/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -272255,7 +280949,7 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0097, @@ -272276,28 +280970,8 @@ libmolgrid is a C++ library with Python bindings that generates tensors from mol sc:url "http://compbio.cs.toronto.edu/ligalign/" ; biotools:primaryContact "LigAlign support" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0654, - edam:topic_2275, - edam:topic_2640, - edam:topic_3304 ; - sc:citation ; - sc:description """In silico homology modelling and identification of Tousled-like kinase 1 inhibitors for glioblastoma therapy via high throughput virtual screening protein-ligand docking. - -Background: Glioblastoma multiforme (GBM) is a grade IV brain tumor that arises from star-shaped glial cells supporting neural cells called astrocytes. The survival of GBM patients remains poor despite many specific molecular targets that have been developed and used for therapy. Tousled-like kinase 1 (TLK1), a serine-threonine kinase, was identified to be overexpressed in cancers such as GBM. TLK1 plays an important role in controlling chromosomal aggregation, cell survival and proliferation. In vitro studies suggested that TLK1 is a potential target for some cancers; hence, the identification of suitable molecular inhibitors for TLK1 is warranted as a new therapeutic agents in GBM. - -||| HOMEPAGE BROKEN!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'ligand.info database'""" ; - sc:featureList edam:operation_0477, - edam:operation_0482, - edam:operation_3436 ; - sc:name "ligand-docking" ; - sc:url "http://ligand.info" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -272316,7 +280990,7 @@ Background: Glioblastoma multiforme (GBM) is a grade IV brain tumor that arises "Kaja Milanowska - Server developer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0804, @@ -272334,7 +281008,7 @@ Background: Glioblastoma multiforme (GBM) is a grade IV brain tumor that arises biotools:primaryContact "Tarmo Äijö" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0154, @@ -272355,7 +281029,7 @@ With the rapid development of systems-based pharmacology and poly-pharmacology, sc:url "http://www.pkumdl.cn/ligbuilder3/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -272373,7 +281047,7 @@ Predicting pIC50 and distinguishing hit compounds for ligands against human EGFR sc:url "https://ligegfr.vistec.ist" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, @@ -272395,7 +281069,7 @@ LIGER (liger) is a package for integrating and analyzing multiple single-cell da sc:url "https://github.com/MacoskoLab/liger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -272415,14 +281089,14 @@ Jacob Durrant software July 7, 2020July 10, 2020.""" ; sc:url "http://durrantlab.com/liggrep/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "Deep learning architecture and web server which predicts protein subcellular localization. It is based on protein language models and pre-trained Transformers." ; sc:name "Light Attention" ; sc:url "https://github.com/HannesStark/protein-localization" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168 ; @@ -272435,7 +281109,7 @@ Jacob Durrant software July 7, 2020July 10, 2020.""" ; sc:url "https://github.com/SaraEl-Metwally/LightAssembler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -272451,7 +281125,7 @@ Identification of blood-brain barrier (BBB) permeability of a compound is a majo sc:url "http://ssbio.cau.ac.kr/software/bbb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3360, @@ -272472,14 +281146,13 @@ The diagnosis of inflammatory bowel disease (IBD) and discrimination between the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2877" ; - sc:name "Protein complex" ; - sc:sameAs "http://edamontology.org/data_2877" ] ; + sc:additionalType "http://edamontology.org/data_2877" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein complex" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2877" ; - sc:name "Protein complex" ; - sc:sameAs "http://edamontology.org/data_2877" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2877" ; + sc:name "Protein complex" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128 ; sc:citation "pubmed:28968719" ; @@ -272499,7 +281172,7 @@ The framework is highly versatile, with many options that can be further develop biotools:primaryContact "Brian Jimenez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -272517,10 +281190,10 @@ The framework is highly versatile, with many options that can be further develop a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -272538,7 +281211,7 @@ The framework is highly versatile, with many options that can be further develop "Paola Bonizzoni" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0209, edam:topic_3343, @@ -272553,7 +281226,7 @@ Ligand-similarity-based virtual screening is one of the most applicable computer sc:url "http://cao.labshare.cn/ligmate/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2275, @@ -272569,13 +281242,39 @@ Ligand-similarity-based virtual screening is one of the most applicable computer sc:url "http://nbcr.ucsd.edu/data/sw/hosted/ligmerge/" ; biotools:primaryContact "Steffen Lindert" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0593, + edam:topic_3068, + edam:topic_3315 ; + sc:citation , + "pmcid:PMC9261032", + "pubmed:35794646" ; + sc:description "LigninGraphs is an open-source software package in Python to generate feasible lignin structures." ; + sc:featureList edam:operation_0320, + edam:operation_0337, + edam:operation_0479 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "LigninGraphs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/VlachosGroup/ligningraphs" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275, edam:topic_2814 ; - sc:citation "pubmed:7630882" ; + sc:citation , + , + "pubmed:21919503", + "pubmed:7630882" ; sc:description "Program which plots schematic diagrams of protein-ligand interactions." ; sc:featureList edam:operation_0482 ; sc:name "LIGPLOT" ; @@ -272589,14 +281288,12 @@ Ligand-similarity-based virtual screening is one of the most applicable computer a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1566" ; - sc:name "Protein-ligand interaction report" ; - sc:sameAs "http://edamontology.org/data_1566" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1566" ; + sc:name "Protein-ligand interaction report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2814 ; @@ -272618,7 +281315,7 @@ Ligand-similarity-based virtual screening is one of the most applicable computer biotools:primaryContact "Roman Laskowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0154, @@ -272632,7 +281329,7 @@ Ligand-similarity-based virtual screening is one of the most applicable computer sc:url "http://cssb.biology.gatech.edu/LIGSIFT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -272648,7 +281345,7 @@ Ligand-similarity-based virtual screening is one of the most applicable computer sc:url "https://ligtbm.cluspro.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -272669,13 +281366,13 @@ Ligand-similarity-based virtual screening is one of the most applicable computer sc:url "https://cbbio.online/LigTMap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "With Like A Diva this year, don't compromise on style with our Indian salwar kameez, lehenga choli, Indian sarees, palazzo suits, and designer sharara suits. Experience a comfortable and warm experience with our sharara suits. We also have a selection of ready-to-wear ethnic dresses, making it simple to update your wardrobe for the new season." ; sc:name "Like A Diva" ; sc:url "https://www.likeadiva.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -272692,7 +281389,7 @@ Ligand-similarity-based virtual screening is one of the most applicable computer biotools:primaryContact "Ronald D Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -272712,7 +281409,7 @@ LikelihoodProfiler is a package for identifiability analysis and confidence inte sc:url "https://github.com/insysbio/LikelihoodProfiler.jl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -272729,14 +281426,13 @@ LikelihoodProfiler is a package for identifiability analysis and confidence inte a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:name "Genotype/phenotype report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation ; @@ -272753,7 +281449,7 @@ LikelihoodProfiler is a package for identifiability analysis and confidence inte biotools:primaryContact "Stijn Dhondt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3168, @@ -272774,7 +281470,7 @@ LiME is a novel lightweight alignment-free and assembly-free framework for metag sc:url "https://github.com/veronicaguerrini/LiME" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3305, @@ -272791,7 +281487,7 @@ Linear Mixed Effects Model with Trimming.""" ; sc:url "https://github.com/zhengp0/limetr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -272806,14 +281502,14 @@ Linear Mixed Effects Model with Trimming.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3047, @@ -272833,34 +281529,20 @@ Linear Mixed Effects Model with Trimming.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/limma.html" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_3295, - edam:topic_3518 ; - sc:citation , - "pubmed:31460783" ; - sc:description "> VERY_LOW CONFIDENCE! | > NAME EQUAL TO (PUB. DIFFERENT) bio.tools/limma | > COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/limma (BIOCONDUCTOR.ORG/packages/release/bioc/html/limma.html) | > CORRECT NAME OF TOOL COULD ALSO BE 'DMGs', 'GBMs', 'GBM', 'ALX1' | Construction of Novel DNA Methylation-Based Prognostic Model to Predict Survival in Glioblastoma | Linear Models for Microarray Data | Data analysis, linear models and differential expression for microarray data" ; - sc:featureList edam:operation_2495, - edam:operation_3501, - edam:operation_3659 ; - sc:license "GPL-2.0" ; - sc:name "limma_autogenerated" ; - sc:url "https://bioconductor.org/packages/release/bioc/html/limma.html" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091, @@ -272883,18 +281565,18 @@ Linear Mixed Effects Model with Trimming.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0121, @@ -272915,7 +281597,7 @@ Linear Mixed Effects Model with Trimming.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0176, @@ -272935,7 +281617,7 @@ Linear Mixed Effects Model with Trimming.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885 ; @@ -272947,7 +281629,7 @@ Linear Mixed Effects Model with Trimming.""" ; sc:url "http://www.ikmb.uni-kiel.de/resources/download-tools/software/software-download-institute-clinical-molecular-biology#limstools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2840, edam:topic_3360, @@ -272968,7 +281650,7 @@ Linear Mixed Effects Model with Trimming.""" ; biotools:primaryContact "Andrés Cañada Pallarés" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2275, @@ -272988,7 +281670,7 @@ Linear Mixed Effects Model with Trimming.""" ; sc:url "https://yzhang.hpc.nyu.edu/Lin_F9/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0654, @@ -273005,7 +281687,7 @@ Linear Mixed Effects Model with Trimming.""" ; sc:url "https://github.com/swidler/linadmix" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -273025,7 +281707,7 @@ Linear Mixed Effects Model with Trimming.""" ; biotools:primaryContact "Manuel Goepferich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -273041,7 +281723,7 @@ Linear Mixed Effects Model with Trimming.""" ; sc:url "https://bioinformaticslab.erc.monash.edu/linc2function" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659 ; sc:citation ; @@ -273055,7 +281737,7 @@ Linear Mixed Effects Model with Trimming.""" ; biotools:primaryContact "Ning Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0203, @@ -273080,7 +281762,7 @@ Linear Mixed Effects Model with Trimming.""" ; biotools:primaryContact "Avi Ma'ayan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2815, @@ -273098,8 +281780,31 @@ Linear Mixed Effects Model with Trimming.""" ; sc:url "http://210.46.80.146/lincsnp/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0157, + edam:topic_3168, + edam:topic_3500, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9012043", + "pubmed:35421994" ; + sc:description "Linear models for differential abundance analysis of microbiome compositional data." ; + sc:featureList edam:operation_3435, + edam:operation_3557, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "LinDA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/zhouhj1994/LinDA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -273120,10 +281825,9 @@ Cell Type Deconvolution using gene expression data for bulk samples.""" ; a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1278" ; - sc:name "Genetic map" ; - sc:sameAs "http://edamontology.org/data_1278" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1278" ; + sc:name "Genetic map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation , @@ -273152,8 +281856,28 @@ Cell Type Deconvolution using gene expression data for bulk samples.""" ; sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/lindna.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0199, + edam:topic_3170, + edam:topic_3500, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC8812554", + "pubmed:35086932" ; + sc:description "A lineage analysis algorithm called Label-free IdeNtification of Endogenous informAtive sinGle cell mitochondrial RNA mutation for lineage analysis and clonal Evolution (LINEAGE) by integrating the low cross-entropy subspaces identification with a consensus clustering method." ; + sc:featureList edam:operation_0314 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "lineage" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "https://github.com/songjiajia2018/LINEAGE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -273172,7 +281896,7 @@ Cell Type Deconvolution using gene expression data for bulk samples.""" ; biotools:primaryContact "David S Fischer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "Lineagespot is a framework written in R, and aims to identify and assign different SARS-CoV-2 lineages based on a single variant file (i.e., variant calling format)." ; sc:isAccessibleForFree true ; @@ -273183,7 +281907,7 @@ Cell Type Deconvolution using gene expression data for bulk samples.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0659, @@ -273205,7 +281929,7 @@ This repository contains the C++ source code for the LinearPartition project, th sc:url "http://linearfold.org/partition" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3068 ; sc:citation , @@ -273218,7 +281942,7 @@ This repository contains the C++ source code for the LinearPartition project, th biotools:primaryContact "Andrew T. Leaf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0194, @@ -273238,7 +281962,7 @@ This repository contains the C++ source code for the LinearPartition project, th sc:url "https://code.vt.edu/linbaseproject/LINflow/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -273254,7 +281978,7 @@ This repository contains the C++ source code for the LinearPartition project, th sc:url "http://www.jurgott.org/linkage/LinkagePC.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -273274,7 +281998,7 @@ This repository contains the C++ source code for the LinearPartition project, th biotools:primaryContact "Lisa A Ouellette" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -273289,7 +282013,7 @@ This repository contains the C++ source code for the LinearPartition project, th sc:url "https://cran.r-project.org/web/packages/linkcomm/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3325, @@ -273311,7 +282035,7 @@ This repository contains the C++ source code for the LinearPartition project, th biotools:primaryContact "Melanie Bahlo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -273336,14 +282060,14 @@ This repository contains the C++ source code for the LinearPartition project, th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data reference" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_3750" ; + sc:name "Data reference" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workbench", "Workflow" ; @@ -273369,8 +282093,39 @@ This repository contains the C++ source code for the LinearPartition project, th sc:url "https://etl.linkedpipes.com/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:description """LinkEHR is a set of tools that enables the semantic interoperability of your data by: + +Creating clinical information models (archetypes) +Transforming clinical data into standards such as openEHR, HL7 CDA, or ISO 13606""" ; + sc:featureList edam:operation_2429, + edam:operation_2430 ; + sc:isAccessibleForFree true ; + sc:name "LinkEHR" ; + sc:url "https://linkehr.veratech.es/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3474 ; + sc:citation , + "pubmed:35139158" ; + sc:description "Predicting, explaining and exploring links in large biomedical knowledge graphs." ; + sc:featureList edam:operation_2422, + edam:operation_3359, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "LinkExplorer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/OpenBioLink/Explorer" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -273383,7 +282138,7 @@ This repository contains the C++ source code for the LinearPartition project, th sc:url "http://www.uoguelph.ca/~rdanzman/software.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625 ; @@ -273398,7 +282153,7 @@ This repository contains the C++ source code for the LinearPartition project, th sc:url "http://bioinf.wehi.edu.au/software/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -273417,7 +282172,7 @@ This repository contains the C++ source code for the LinearPartition project, th biotools:primaryContact "Rene L. Warren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -273435,7 +282190,7 @@ This repository contains the C++ source code for the LinearPartition project, th "Hideki Innan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -273455,7 +282210,7 @@ This repository contains the C++ source code for the LinearPartition project, th biotools:primaryContact "Ken Shun Hang Yip" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -273479,8 +282234,28 @@ This repository contains the C++ source code for the LinearPartition project, th sc:softwareHelp ; sc:url "https://bcmslab.shinyapps.io/LINPSAPP/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0153, + edam:topic_3172, + edam:topic_3308, + edam:topic_3407 ; + sc:citation , + "pubmed:34928054" ; + sc:description "A lipidomic data processing website aims to provide users a friendly pipeline for statistical analyses and lipidomic data mining." ; + sc:featureList edam:operation_3928, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:name "LINT-web" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.lintwebomics.info/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3070, @@ -273494,7 +282269,7 @@ This repository contains the C++ source code for the LinearPartition project, th sc:url "https://imb-dev.gitlab.io/linus-manuscript/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -273522,8 +282297,9 @@ LIONESS, or Linear Interpolation to Obtain Network Estimates for Single Samples, sc:url "https://github.com/kuijjerlab/lionessR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Library" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Suite" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3300, edam:topic_3384 ; @@ -273532,12 +282308,16 @@ LIONESS, or Linear Interpolation to Obtain Network Estimates for Single Samples, sc:featureList edam:operation_0337, edam:operation_3219, edam:operation_3435 ; + sc:isAccessibleForFree true ; sc:license "GPL-3.0" ; sc:name "LIONirs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; sc:url "https://github.com/JulieTremblay3/LIONirs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0153, @@ -273560,10 +282340,10 @@ LIONESS, or Linear Interpolation to Obtain Network Estimates for Single Samples, a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2812" ; - sc:name "Lipid identifier" ; - sc:sameAs "http://edamontology.org/data_2812" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2812" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Lipid identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0153 ; sc:description "LipidCreator is a kick-off tool for targeted lipidomics providing both precursor / fragment mass transition list and a spectral library of MS2 spectra for lipids." ; @@ -273572,7 +282352,7 @@ LIONESS, or Linear Interpolation to Obtain Network Estimates for Single Samples, sc:url "http://lifs.isas.de/index.php/lipidcreator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0154, @@ -273593,8 +282373,31 @@ LipidCreator_HumanPlatelet_application.""" ; sc:name "LipidCreator_skyline" ; sc:url "https://panoramaweb.org/lipidcreator.url" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0153, + edam:topic_0176, + edam:topic_0736, + edam:topic_0820, + edam:topic_2640 ; + sc:citation , + "pmcid:PMC9283888", + "pubmed:35860415" ; + sc:description "Unraveling membrane properties at the organelle-level with LipidDyn." ; + sc:featureList edam:operation_0244, + edam:operation_2476, + edam:operation_2489 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "LipidDyn" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ELELAB/LipidDyn" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Workbench" ; sc:applicationSubCategory edam:topic_0153, @@ -273615,7 +282418,7 @@ LipidCreator_HumanPlatelet_application.""" ; sc:url "https://github.com/coongroup/LipiDex" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0153, @@ -273640,7 +282443,7 @@ LipidFinder is an open-source Python workflow which searches a number of differe sc:url "http://lipidmaps.org/resources/tools/lipidfinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0218, @@ -273663,7 +282466,7 @@ LipidFinder is an open-source Python workflow which searches a number of differe sc:url "http://cbdm-01.zdv.uni-mainz.de:3838/piyusmor/LipiDisease/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0121, @@ -273686,7 +282489,7 @@ A robust and accurate converter can only be achieved by community-wide collabora sc:url "https://github.com/SysMedOs/LipidLynxX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0769, @@ -273705,7 +282508,7 @@ Integrative Visualizations of the Lipidome.""" ; sc:url "https://lipidomer.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0153, edam:topic_3360, @@ -273727,8 +282530,29 @@ Welcome to the Lipidomics Standard Initiative (LSI)""" ; sc:name "lipidomics" ; sc:url "https://lipidomics-standards-initiative.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Workbench" ; + sc:applicationSubCategory edam:topic_0153, + edam:topic_0196, + edam:topic_0203, + edam:topic_0821, + edam:topic_3047 ; + sc:citation , + "pubmed:34971364" ; + sc:description "LipidOne is a freely available and easy-to-use software to discover the deeper features of building blocks in a lipidomic dataset." ; + sc:featureList edam:operation_0310, + edam:operation_3463, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "LipidOne" ; + sc:operatingSystem "Windows" ; + sc:url "http://www.dcbb.unipg.it/LipidOne" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0153, @@ -273751,7 +282575,7 @@ lipidr: Data Mining and Analysis of Lipidomics Datasets in R.""" ; sc:url "https://www.lipidr.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0625, @@ -273768,7 +282592,7 @@ lipidr: Data Mining and Analysis of Lipidomics Datasets in R.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0769, @@ -273786,7 +282610,7 @@ lipidr: Data Mining and Analysis of Lipidomics Datasets in R.""" ; sc:url "http://suite.lipidr.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0166, @@ -273809,18 +282633,18 @@ lipidr: Data Mining and Analysis of Lipidomics Datasets in R.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0153, edam:topic_3172 ; @@ -273838,8 +282662,28 @@ lipidr: Data Mining and Analysis of Lipidomics Datasets in R.""" ; sc:softwareVersion "1.2.8" ; sc:url "https://lifs.isas.de/wiki" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0780, + edam:topic_2229, + edam:topic_3382, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8825436", + "pubmed:34791452" ; + sc:description "ImageJ Plugin for manual cell lineage tracking." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "LiPlaCeT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/paul-hernandez-herrera/LiPlaCeT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3301, @@ -273855,7 +282699,7 @@ lipidr: Data Mining and Analysis of Lipidomics Datasets in R.""" ; sc:url "http://services.cbu.uib.no/tools/lipo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3325, @@ -273873,14 +282717,14 @@ LIPO-DDx® is a mobile app based on a personal algorithm developed by Prof. Davi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -273902,7 +282746,7 @@ LIPO-DDx® is a mobile app based on a personal algorithm developed by Prof. Davi biotools:primaryContact "Agnieszka S. Juncker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -273919,7 +282763,7 @@ LIPO-DDx® is a mobile app based on a personal algorithm developed by Prof. Davi biotools:primaryContact "Maxim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0154, @@ -273943,7 +282787,7 @@ The file named Encoding schemes contains code for different encoding schemes: PS sc:url "https://github.com/stars20180811/LipoSVM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0153, @@ -273965,7 +282809,7 @@ A small Python package to manipulate complex lipids.""" ; sc:url "https://github.com/Stemanz/liputils/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0153, @@ -273986,7 +282830,7 @@ lipydomics is a Python package for performing standard lipidomics analysis proto sc:url "https://github.com/dylanhross/lipydomics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0176, @@ -274004,7 +282848,7 @@ lipydomics is a Python package for performing standard lipidomics analysis proto biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -274026,7 +282870,7 @@ The input of LIQA is long-read RNA-seq read data in BAM format together with a r sc:url "https://github.com/WGLab/LIQA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0202, @@ -274043,7 +282887,7 @@ The input of LIQA is long-read RNA-seq read data in BAM format together with a r biotools:primaryContact "Yusuf Tanrikulu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0097, @@ -274063,7 +282907,7 @@ The input of LIQA is long-read RNA-seq read data in BAM format together with a r biotools:primaryContact "Yen-Yi Ho" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2269, @@ -274084,8 +282928,34 @@ This software seeks to improve the process of analyzing mouse lung slides for Tu sc:name "LIRA" ; sc:url "https://Github.com/TB-imaging/LIRA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0659, + edam:topic_0780, + edam:topic_3500, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8728187", + "pubmed:34643715" ; + sc:description "A comprehensive database of long inverted repeats in eukaryotic genomes." ; + sc:featureList edam:operation_0282, + edam:operation_0502, + edam:operation_3208, + edam:operation_3223, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "LIRBase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://venyao.xyz/lirbase/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3298, @@ -274106,7 +282976,7 @@ LIRICAL is designed to provide clincially interpretable computational analysis o sc:url "https://github.com/TheJacksonLaboratory/LIRICAL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -274126,7 +282996,7 @@ LIRICAL is designed to provide clincially interpretable computational analysis o biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -274148,7 +283018,7 @@ Web version and documentation is hosted at http://lisa.cistrome.org. For large s sc:url "http://lisa.cistrome.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -274170,7 +283040,7 @@ Web version and documentation is hosted at http://lisa.cistrome.org. For large s biotools:primaryContact "LISE Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -274192,7 +283062,7 @@ LIST-S2 predicts the deleteriousness of amino acid mutations in protein sequence sc:url "https://list-s2.msl.ubc.ca/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3071 ; @@ -274206,43 +283076,16 @@ LIST-S2 predicts the deleteriousness of amino acid mutations in protein sequence sc:softwareVersion "1" ; sc:url "https://confluence.crbs.ucsd.edu/display/NIF/OntoQuestMain" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3304, - edam:topic_3334, - edam:topic_3384, - edam:topic_3421 ; - sc:citation , - "pubmed:31852258" ; - sc:description """Interesting different survival status of musicians with malignant cerebral tumors. - -List of people with brain tumors. - -From Wikipedia, the free encyclopedia. - -Jump to navigation Jump to search. - -This is a dynamic list and may never be able to satisfy particular standards for completeness. You can help by expanding it with reliably sourced entries. - -A brain tumor is an abnormal growth of cells within the brain or inside the skull, and can be cancerous (malignant) or non-cancerous (benign). Just over half of all primary brain tumors are malignant; the rest are benign, though they may still be life-threatening. In the United States in 2000, survivors of benign primary brain tumors outnumbered those who had cancerous primary brain tumors by approximately 4:1. Metastatic brain cancer is over six times more common than primary brain cancer, as it occurs in about 10–30% of all people with cancer.[1]. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'musicians malign cerebral tumors music'""" ; - sc:featureList edam:operation_2421, - edam:operation_3503, - edam:operation_3659 ; - sc:name "list people brain tumors" ; - sc:url "https://en.wikipedia.org/wiki/List_of_people_with_brain_tumors" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0219 ; sc:citation , @@ -274260,18 +283103,18 @@ A brain tumor is an abnormal growth of cells within the brain or inside the skul a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071 ; @@ -274290,14 +283133,12 @@ A brain tumor is an abnormal growth of cells within the brain or inside the skul a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -274327,7 +283168,7 @@ A brain tumor is an abnormal growth of cells within the brain or inside the skul sc:url "http://emboss.open-bio.org/rel/rel6/apps/listor.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -274348,7 +283189,7 @@ LIT-PCBA: A dataset for virtual screening and machine learninig.""" ; sc:url "http://drugdesign.unistra.fr/LIT-PCBA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; @@ -274363,22 +283204,20 @@ Over four decades, the majority addresses the problem of optical flow estimation a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0940" ; - sc:name "Electron microscopy volume map" ; - sc:sameAs "http://edamontology.org/data_0940" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ], + sc:additionalType "http://edamontology.org/data_0940" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Electron microscopy volume map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2992" ; - sc:name "Protein structure image" ; - sc:sameAs "http://edamontology.org/data_2992" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2992" ; + sc:name "Protein structure image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092 ; sc:author "David Sehnal" ; @@ -274399,7 +283238,7 @@ Over four decades, the majority addresses the problem of optical flow estimation biotools:primaryContact "David Sehnal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3512, @@ -274420,7 +283259,7 @@ Over four decades, the majority addresses the problem of optical flow estimation sc:url "https://github.com/senresearch/LiteQTL.jl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0219, @@ -274441,7 +283280,7 @@ Over four decades, the majority addresses the problem of optical flow estimation sc:url "http://www.litinspector.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0218, @@ -274458,7 +283297,7 @@ Over four decades, the majority addresses the problem of optical flow estimation sc:url "http://andromeda.gsf.de/litminer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0218, @@ -274477,7 +283316,7 @@ Over four decades, the majority addresses the problem of optical flow estimation biotools:primaryContact "Sophia Ananiadou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3303, @@ -274493,7 +283332,7 @@ Over four decades, the majority addresses the problem of optical flow estimation biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3324, @@ -274511,7 +283350,7 @@ Over four decades, the majority addresses the problem of optical flow estimation sc:url "https://github.com/CDCgov/TB_molecular_epidemiology" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -274533,7 +283372,7 @@ Over four decades, the majority addresses the problem of optical flow estimation biotools:primaryContact "Leszek Rychlewski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0769, @@ -274558,8 +283397,30 @@ Over four decades, the majority addresses the problem of optical flow estimation sc:softwareHelp ; sc:url "https://github.com/sartorius-research/LIVECell" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0160, + edam:topic_0634, + edam:topic_2229, + edam:topic_3382 ; + sc:citation ; + sc:description "Extension to the SciXMiner MATLAB toolbox used for quantitative analysis of chromatin decondensation" ; + sc:featureList edam:operation_0337, + edam:operation_3216, + edam:operation_3436, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "LiveCellMiner" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/stegmaierj/LiveCellMiner" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0634, @@ -274579,7 +283440,7 @@ MISP Research Center, Isfahan University of Medical Sciences.""" ; sc:url "https://github.com/MansoorehMontazerin/Livelayer-Software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3344, @@ -274597,14 +283458,14 @@ MISP Research Center, Isfahan University of Medical Sciences.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -274622,7 +283483,7 @@ MISP Research Center, Isfahan University of Medical Sciences.""" ; biotools:primaryContact "Maya B Gokhale" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0202, @@ -274641,7 +283502,7 @@ MISP Research Center, Isfahan University of Medical Sciences.""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2830, @@ -274663,8 +283524,29 @@ MISP Research Center, Isfahan University of Medical Sciences.""" ; "Windows" ; sc:url "https://github.com/sangzhe/Llamanade" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9133536", + "pubmed:35645753" ; + sc:description "Local Label Point Correction for Edge Detection of Overlapping Cervical Cells." ; + sc:featureList edam:operation_3096, + edam:operation_3553, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "LLPC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/nachifur/LLPC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0154, @@ -274685,7 +283567,7 @@ LLPSDB contains LLPS related proteins together with the corresponding phase sepa sc:url "http://bio-comp.org.cn/llpsdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Workflow" ; @@ -274713,7 +283595,7 @@ LLPSDB contains LLPS related proteins together with the corresponding phase sepa biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Workflow" ; @@ -274739,7 +283621,7 @@ The LMAP_S package additionally includes our RYcode.pl application for purine/py biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -274756,7 +283638,7 @@ The LMAP_S package additionally includes our RYcode.pl application for purine/py biotools:primaryContact "Arthur W. Pightling" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -274777,7 +283659,7 @@ The LMAP_S package additionally includes our RYcode.pl application for purine/py biotools:primaryContact "Cristobal Fresno" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517, edam:topic_3678 ; @@ -274792,7 +283674,7 @@ The LMAP_S package additionally includes our RYcode.pl application for purine/py sc:url "https://cran.r-project.org/web/packages/lme4/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -274813,7 +283695,7 @@ The LMAP_S package additionally includes our RYcode.pl application for purine/py sc:url "https://github.com/perpdgo/lme4GS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -274833,7 +283715,7 @@ The LMAP_S package additionally includes our RYcode.pl application for purine/py biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -274852,7 +283734,7 @@ The LMAP_S package additionally includes our RYcode.pl application for purine/py biotools:primaryContact "Blythe Durbin-Johnson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -274868,7 +283750,7 @@ The LMAP_S package additionally includes our RYcode.pl application for purine/py sc:url "http://www.bsse.ethz.ch/mlcb/research/bioinformatics-and-computational-biology/lmm-lasso.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3172, @@ -274890,7 +283772,7 @@ The LMAP_S package additionally includes our RYcode.pl application for purine/py biotools:primaryContact "Sakda Khoomrung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -274909,7 +283791,7 @@ The LMAP_S package additionally includes our RYcode.pl application for purine/py biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3305, @@ -274931,7 +283813,7 @@ The LMAP_S package additionally includes our RYcode.pl application for purine/py sc:url "https://wenn23.shinyapps.io/lmslmosapp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -274953,8 +283835,50 @@ Until now, existing methods for identifying lncRNA related miRNA sponge modules sc:name "LMSM" ; sc:url "https://github.com/zhangjunpeng411/LMSM" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0625, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8548730", + "pubmed:34720899" ; + sc:description "Novel Methodological Approach to Place Mouse Ultrasonic Vocalizations in Their Behavioral Contexts." ; + sc:featureList edam:operation_2409, + edam:operation_3196, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:name "LMT USV Toolbox" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://usv.pasteur.cloud" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3301, + edam:topic_3305, + edam:topic_3324, + edam:topic_3411, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC9084517", + "pubmed:35533187" ; + sc:description "A Listeria monocytogenes fast-tracing platform for global surveillance." ; + sc:featureList edam:operation_0335, + edam:operation_0337, + edam:operation_3840 ; + sc:license "Other" ; + sc:name "LmTraceMap" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://lmtracemap.cgu.edu.tw/hua_map/test/upload.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -274978,7 +283902,7 @@ Until now, existing methods for identifying lncRNA related miRNA sponge modules "Support in the US" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -274999,8 +283923,35 @@ Lnc2Cancer, is a manually curated database that provides comprehensive experimen sc:softwareVersion "3.0" ; sc:url "http://www.bio-bigdata.net/lnc2cancer" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0634, + edam:topic_0659, + edam:topic_2640, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC8728196", + "pubmed:34850125" ; + sc:description "An updated database of experimentally supported ceRNA interactions and personalized networks contributing to precision medicine." ; + sc:featureList edam:operation_0314, + edam:operation_0463, + edam:operation_2421, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:name "LncACTdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "3.0" ; + sc:url "http://bio-bigdata.hrbmu.edu.cn/LncACTdb" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0634, @@ -275015,7 +283966,7 @@ Lnc2Cancer, is a manually curated database that provides comprehensive experimen biotools:primaryContact "Qinghua Cui(崔庆华)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; sc:applicationSubCategory edam:topic_0625, @@ -275033,7 +283984,7 @@ Lnc2Cancer, is a manually curated database that provides comprehensive experimen sc:url "http://www.bio-bigdata.net/LnCeCell/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0659, @@ -275050,7 +284001,7 @@ Lnc2Cancer, is a manually curated database that provides comprehensive experimen sc:url "https://gitlab.com/spirit678/lncrna_conservation_nf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; sc:applicationSubCategory edam:topic_0203, @@ -275073,14 +284024,12 @@ LncExpDB is a comprehensive database for lncRNA expression. It covers expression a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -275104,7 +284053,7 @@ LncExpDB is a comprehensive database for lncRNA expression. It covers expression sc:url "http://lncexplore.bmi.nycu.edu.tw" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -275127,7 +284076,7 @@ LncExpDB is a comprehensive database for lncRNA expression. It covers expression sc:url "https://github.com/ylab-hi/lncGSEA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659 ; sc:citation , @@ -275146,26 +284095,23 @@ LncExpDB is a comprehensive database for lncRNA expression. It covers expression a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ], + sc:additionalType "http://edamontology.org/data_2295" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:name "Sequence coordinates" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0114, edam:topic_3473 ; @@ -275181,7 +284127,7 @@ LncExpDB is a comprehensive database for lncRNA expression. It covers expression sc:url "http://www.lncipedia.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -275202,7 +284148,7 @@ lncMachine requires python3 or newer.""" ; sc:url "https://github.com/hbusra/lncMachine.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Script" ; sc:applicationSubCategory edam:topic_0203, @@ -275225,7 +284171,7 @@ Increasing lncRNA-associated competing triplets were found to play important rol sc:url "https://github.com/xiaofengsong/LncMiM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; sc:applicationSubCategory edam:topic_0659, @@ -275245,7 +284191,7 @@ A database for experimentally supported lncRNAs during various cancer metastatic sc:url "http://lncR2metasta.wchoda.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0659, @@ -275263,7 +284209,7 @@ A database for experimentally supported lncRNAs during various cancer metastatic sc:url "http://dibresources.jcbose.ac.in/zhumur/lncrbase2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -275279,7 +284225,7 @@ A database for experimentally supported lncRNAs during various cancer metastatic biotools:primaryContact "Yuan Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -275292,7 +284238,7 @@ lncRNA_Mdeep is a computational tool for distinguishing lncRNAs from protein-cod sc:url "https://github.com/NWPU-903PR/lncRNA_Mdeep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -275312,8 +284258,32 @@ lncRNA_Mdeep is a computational tool for distinguishing lncRNAs from protein-cod sc:url "http://www.lncrnadb.org/" ; biotools:primaryContact "Quek Xiu Cheng" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_0749, + edam:topic_2640, + edam:topic_3320, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8728133", + "pubmed:34791419" ; + sc:description "A knowledgebase of lncRNA function in human cancer." ; + sc:featureList edam:operation_0420, + edam:operation_0463, + edam:operation_3792, + edam:operation_3901 ; + sc:isAccessibleForFree true ; + sc:name "lncRNAfunc" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ccsm.uth.edu/lncRNAfunc" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -275337,7 +284307,7 @@ LncRNAKB is an invaluable resource to understand the biological importance of lo sc:url "http://www.lncrnakb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0128, @@ -275355,7 +284325,7 @@ LncRNAKB is an invaluable resource to understand the biological importance of lo sc:url "http://lncrnator.ewha.ac.kr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; sc:applicationSubCategory edam:topic_0659, @@ -275375,7 +284345,7 @@ Welcome to LncSEA a comprehensive human lncRNA sets resource and enrichment anal sc:url "http://bio.liclab.net/LncSEA/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; sc:applicationSubCategory edam:topic_0659, @@ -275395,7 +284365,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for sc:url "http://bio-bigdata.hrbmu.edu.cn/LncSpA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0099, @@ -275413,7 +284383,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for biotools:primaryContact "Dr. Qinghua Cui" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3324, @@ -275427,7 +284397,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293, @@ -275444,7 +284414,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for biotools:primaryContact "Juan Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293 ; @@ -275458,7 +284428,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for biotools:primaryContact "Nalvo F. Almeida" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:description "A new converter from Linkage-style to Morgan ver 3 style data files." ; @@ -275471,7 +284441,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation , @@ -275488,7 +284458,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for sc:url "http://www.evolutionarygenomics.com/ProgramsData/lnlcorr/LnLCorr.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation ; @@ -275503,14 +284473,14 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -275527,7 +284497,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082 ; sc:citation , @@ -275545,7 +284515,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for biotools:primaryContact "Silvio Tosatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0154, @@ -275566,7 +284536,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation "pubmed:22522390" ; @@ -275580,7 +284550,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for "lobSTR user group mailing list" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -275599,7 +284569,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for sc:url "http://cubic.bioc.columbia.edu/db/LOC3d/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Perform reciprocal blast against two databases to find RBH Orthologs" ; sc:featureList edam:operation_2421, @@ -275615,7 +284585,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for biotools:primaryContact "Hengfu Yin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3053 ; @@ -275630,7 +284600,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for biotools:primaryContact "Mark Gerstein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -275644,7 +284614,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for biotools:primaryContact "Jialu Hu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0130, @@ -275665,7 +284635,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for "Rohit V. Pappu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3377, @@ -275684,7 +284654,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for sc:url "https://CRAN.R-project.org/package=LocalControl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -275702,7 +284672,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for biotools:primaryContact "Bagadam David" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -275726,7 +284696,7 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for "Sangsoo Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0099, @@ -275743,8 +284713,30 @@ Knowledge of lncRNA spatial expression patterns across tissues is important for sc:url "http://bioinformatics.bc.edu/clotelab/localmove/" ; biotools:primaryContact "Clote Structural Biology Lab" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_2885, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC8796377", + "pubmed:34718411" ; + sc:description "A software tool for inferring IBD sharing along the genome between pairs of individuals from low-depth NGS data." ; + sc:featureList edam:operation_0337, + edam:operation_0484, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "LocalNgsRelate" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/idamoltke/LocalNgsRelate" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -275766,7 +284758,7 @@ LocalSTAR3D is a program for the local alignment of RNA 3D structures.""" ; sc:url "http://genome.ucf.edu/LocalSTAR3D" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -275786,7 +284778,7 @@ LocalSTAR3D is a program for the local alignment of RNA 3D structures.""" ; sc:url "http://www.watkinscv.com/app-demos/LocalVar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3383 ; sc:citation ; @@ -275799,24 +284791,43 @@ LocalSTAR3D is a program for the local alignment of RNA 3D structures.""" ; sc:url "https://gitlab.pasteur.fr/iah-public/localzprojector" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Library" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_3303, + edam:topic_3382 ; + sc:citation , + "pubmed:35298593" ; + sc:description "A python library for analyzing single-molecule localization microscopy data." ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "LOCAN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://pypi.org/project/locan" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1465" ; - sc:name "RNA structure" ; - sc:sameAs "http://edamontology.org/data_1465" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1465" ; + sc:encodingFormat "http://edamontology.org/format_3466" ; + sc:name "RNA structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:author , @@ -275840,22 +284851,22 @@ LocalSTAR3D is a program for the local alignment of RNA 3D structures.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1465" ; - sc:name "RNA structure" ; - sc:sameAs "http://edamontology.org/data_1465" ], + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ], + sc:additionalType "http://edamontology.org/data_1465" ; + sc:encodingFormat "http://edamontology.org/format_3466" ; + sc:name "RNA structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097 ; @@ -275879,7 +284890,7 @@ LocalSTAR3D is a program for the local alignment of RNA 3D structures.""" ; "Sebastian Will" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation "pubmed:21858125" ; @@ -275892,7 +284903,7 @@ LocalSTAR3D is a program for the local alignment of RNA 3D structures.""" ; biotools:primaryContact "Juliane D. Klein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -275915,7 +284926,7 @@ LocalSTAR3D is a program for the local alignment of RNA 3D structures.""" ; "Rohan Teasdale" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2269, @@ -275934,7 +284945,7 @@ The system will take one RNA sequence at a time.""" ; sc:url "http://locate-r.azurewebsites.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0089, @@ -275954,7 +284965,7 @@ The system will take one RNA sequence at a time.""" ; "Shruti Rastogi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -275978,7 +284989,7 @@ The system will take one RNA sequence at a time.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3053, @@ -275994,7 +285005,7 @@ The system will take one RNA sequence at a time.""" ; sc:url "http://compgenome.org/lochap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0203, @@ -276014,7 +285025,7 @@ The system will take one RNA sequence at a time.""" ; biotools:primaryContact "Tianlei Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0166, edam:topic_2814 ; @@ -276027,7 +285038,7 @@ The system will take one RNA sequence at a time.""" ; sc:url "http://motif.stanford.edu/distributions/lock/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -276043,7 +285054,7 @@ The system will take one RNA sequence at a time.""" ; sc:url "http://prodata.swmed.edu/LocNES/LocNES.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -276059,7 +285070,7 @@ The system will take one RNA sequence at a time.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814 ; @@ -276074,7 +285085,7 @@ The system will take one RNA sequence at a time.""" ; sc:url "http://www.dsimb.inserm.fr/~debrevern/TOOLS/LOCPRED/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -276091,7 +285102,7 @@ The system will take one RNA sequence at a time.""" ; biotools:primaryContact "Vincent Detours" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -276108,14 +285119,14 @@ The system will take one RNA sequence at a time.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0123, @@ -276138,14 +285149,14 @@ The system will take one RNA sequence at a time.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -276177,7 +285188,7 @@ The system will take one RNA sequence at a time.""" ; sc:url "https://rostlab.org/services/loctree3/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3320 ; @@ -276191,7 +285202,7 @@ The system will take one RNA sequence at a time.""" ; sc:url "http://stormo.wustl.edu/resources.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0219, @@ -276210,7 +285221,7 @@ The system will take one RNA sequence at a time.""" ; biotools:primaryContact "Tokhir Dadaev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -276233,7 +285244,7 @@ A Colocalization Tool to Prioritize Genes and Tissues from GWAS and eQTL Integra sc:url "https://locusfocus.research.sickkids.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -276249,7 +285260,7 @@ A Colocalization Tool to Prioritize Genes and Tissues from GWAS and eQTL Integra sc:url "http://animalgene.umn.edu/locusmap/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -276279,7 +285290,7 @@ The LocusZoom.js library provides several pre-defined layouts for entire plots a sc:url "https://github.com/statgen/locuszoom/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3360, @@ -276296,7 +285307,7 @@ The LocusZoom.js library provides several pre-defined layouts for entire plots a biotools:primaryContact "Ilja M. Nolte" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "LoFreq* (i.e. LoFreq version 2) is a fast and sensitive variant-caller for inferring SNVs and indels from next-generation sequencing data. It makes full use of base-call qualities and other sources of errors inherent in sequencing (e.g. mapping or base/indel alignment uncertainty), which are usually ignored by other methods or only used for filtering." ; sc:name "lofreq" ; sc:softwareVersion "v2.1.5" ; @@ -276304,10 +285315,10 @@ The LocusZoom.js library provides several pre-defined layouts for entire plots a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -276327,7 +285338,7 @@ The LocusZoom.js library provides several pre-defined layouts for entire plots a sc:url "https://github.com/CirculatoryHealth/LoFTK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229 ; sc:citation ; @@ -276342,7 +285353,7 @@ The LocusZoom.js library provides several pre-defined layouts for entire plots a biotools:primaryContact "Jia Meng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -276362,7 +285373,7 @@ The LocusZoom.js library provides several pre-defined layouts for entire plots a biotools:primaryContact "Holger Schwender" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -276378,7 +285389,7 @@ The LocusZoom.js library provides several pre-defined layouts for entire plots a sc:url "https://github.com/CompBioIPM/LogicNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3315, @@ -276393,7 +285404,7 @@ LogiKEy Workbench (dataset of formalized knowledge): Flexible, Pluralistic Found sc:url "http://logikey.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -276412,7 +285423,7 @@ LogiKEy Workbench (dataset of formalized knowledge): Flexible, Pluralistic Found biotools:primaryContact "Hinrich Gronemeyer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0077, @@ -276431,7 +285442,7 @@ LogiKEy Workbench (dataset of formalized knowledge): Flexible, Pluralistic Found biotools:primaryContact "Tobias Guennel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -276448,7 +285459,7 @@ LogiKEy Workbench (dataset of formalized knowledge): Flexible, Pluralistic Found biotools:primaryContact "Lateef Adewale Kareem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0804, @@ -276467,7 +285478,7 @@ LogiKEy Workbench (dataset of formalized knowledge): Flexible, Pluralistic Found "Steven Kleinstein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3954 ; sc:description "Fit disruption replenishment time-intensity data with the lognormal perfusion model" ; @@ -276480,8 +285491,30 @@ LogiKEy Workbench (dataset of formalized knowledge): Flexible, Pluralistic Found sc:url "https://www.mathworks.com/matlabcentral/fileexchange/40786-lognormal-perfusion-model" ; biotools:primaryContact "John Hudson" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_0749, + edam:topic_2815, + edam:topic_3517, + edam:topic_3574 ; + sc:citation , + "pubmed:35536244" ; + sc:description "Integrating convolution and self-attention improves language model of human genome for interpreting non-coding regions at base-resolution." ; + sc:featureList edam:operation_0331, + edam:operation_0440, + edam:operation_3226 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "LOGO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/melobio/LOGO" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -276502,7 +285535,7 @@ LogiKEy Workbench (dataset of formalized knowledge): Flexible, Pluralistic Found biotools:primaryContact "Thomas Burglin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092 ; @@ -276519,7 +285552,7 @@ LogiKEy Workbench (dataset of formalized knowledge): Flexible, Pluralistic Found biotools:primaryContact "Yi-Kuo Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2885, @@ -276539,18 +285572,18 @@ Create Logos: paste or upload data in common formats.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0858" ; - sc:name "Sequence signature matches" ; - sc:sameAs "http://edamontology.org/data_0858" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0858" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Sequence signature matches" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0160 ; @@ -276570,7 +285603,7 @@ Create Logos: paste or upload data in common formats.""" ; biotools:primaryContact "GenOuest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -276589,7 +285622,7 @@ Create Logos: paste or upload data in common formats.""" ; biotools:primaryContact "Kushal Dey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3315, @@ -276610,7 +285643,7 @@ Create Logos: paste or upload data in common formats.""" ; sc:url "https://github.com/RudgeLab/LOICA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -276629,7 +285662,7 @@ Create Logos: paste or upload data in common formats.""" ; biotools:primaryContact "Yinyin Yuan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -276648,7 +285681,7 @@ Create Logos: paste or upload data in common formats.""" ; biotools:primaryContact "Nathan Sheffield" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749 ; @@ -276664,7 +285697,7 @@ Create Logos: paste or upload data in common formats.""" ; sc:url "http://lolaweb.databio.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3452 ; sc:citation , @@ -276681,7 +285714,7 @@ Create Logos: paste or upload data in common formats.""" ; biotools:primaryContact "Andreas Bertsatos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0091, @@ -276700,13 +285733,8 @@ Create Logos: paste or upload data in common formats.""" ; "Windows" ; sc:url "https://long-read-tools.org/" . - a sc:SoftwareApplication ; - sc:description "CD Genomics has further optimized the process to exceed PacBio’s benchmarks in output and read length to support long-read metagenomic sequencing, and reduce some splicing errors and effectively improve the resolution of microbial community profiling. PacBio System is highly robust and cost-effective and should be the platform of choice in metagenomics sequencing , particularly for complex sample and low-diversity microbial communities. CD Genomics will be your best companion in long-read metagenomic sequencing. Please contact us for more information and a detailed quote." ; - sc:name "Long-Read Metagenomic Sequencing" ; - sc:url "https://www.cd-genomics.com/Long-Read-Metagenomic-Sequencing.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3175 ; @@ -276724,7 +285752,7 @@ LongAGE is a memory-efficient implementation of AGE (https://github.com/abyzovla sc:url "https://github.com/Coaxecva/LongAGE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -276742,7 +285770,7 @@ Long genes harbor specific genomic and epigenomic features and have been implica sc:url "https://longgenedb.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2640, @@ -276763,7 +285791,7 @@ A computational algorithm and software tool for fast and accurate detection of g sc:url "https://github.com/WGLab/LongGF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -276780,7 +285808,7 @@ A computational algorithm and software tool for fast and accurate detection of g biotools:primaryContact "Nicholas Furlotte" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3053 ; @@ -276796,27 +285824,8 @@ A computational algorithm and software tool for fast and accurate detection of g sc:softwareHelp ; sc:url "https://github.com/bioinform/longislnd" . - a sc:SoftwareApplication ; - sc:additionalType "Command-line tool" ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0602, - edam:topic_3172, - edam:topic_3697 ; - sc:citation ; - sc:description """Dynamic Bayesian networks for integrating multi-omics time-series microbiome data. - -longitudinal_multiomic_analysis_public. - -The source code and documentation will be posted here after publication.""" ; - sc:featureList edam:operation_2428, - edam:operation_2495, - edam:operation_3435 ; - sc:license "MIT" ; - sc:name "longitudinal multiomic analysis public" ; - sc:url "https://github.com/DaniRuizPerez/longitudinal_multiomic_analysis_public" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -276835,7 +285844,7 @@ The source code and documentation will be posted here after publication.""" ; biotools:primaryContact "Tae-Hyuk Ahn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0622, @@ -276861,8 +285870,22 @@ The source code and documentation will be posted here after publication.""" ; ; sc:url "https://support.10xgenomics.com/genome-exome/software/pipelines/latest/what-is-long-ranger" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199 ; + sc:citation ; + sc:description "Longshot is a variant calling tool for diploid genomes using long error prone reads such as Pacific Biosciences (PacBio) SMRT and Oxford Nanopore Technologies (ONT). It takes as input an aligned BAM file and outputs a phased VCF file with variants and haplotype information. It can also genotype and phase input VCF files. It can output haplotype-separated BAM files that can be used for downstream analysis. Currently, it only calls single nucleotide variants (SNVs), but it can genotype indels if they are given in an input VCF." ; + sc:featureList edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Longshot" ; + sc:softwareHelp ; + sc:url "https://github.com/pjedge/longshot" ; + biotools:primaryContact "Vikas Bansal" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -276882,7 +285905,7 @@ The source code and documentation will be posted here after publication.""" ; sc:url "https://github.com/bcgsc/longstitch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0102, @@ -276900,7 +285923,7 @@ The source code and documentation will be posted here after publication.""" ; sc:url "https://github.com/schatzlab/LongTron" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -276923,7 +285946,7 @@ The source code and documentation will be posted here after publication.""" ; biotools:primaryContact "Dr Magnus Manske" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -276942,8 +285965,31 @@ LoopDetect - comprehensive detection of feedback loops in ODE models.""" ; sc:name "LoopDetect" ; sc:url "https://de.mathworks.com/matlabcentral/fileexchange/81928-loopdetect/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0130, + edam:topic_0736, + edam:topic_0821, + edam:topic_3421, + edam:topic_3542 ; + sc:citation , + "pubmed:35438789" ; + sc:description "A web tool for transplanting dynamical loops for protein engineering." ; + sc:featureList edam:operation_0244, + edam:operation_0249, + edam:operation_0479, + edam:operation_0481, + edam:operation_4008 ; + sc:isAccessibleForFree true ; + sc:name "LoopGrafter" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://loschmidt.chemi.muni.cz/loopgrafter/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0736, edam:topic_2814 ; @@ -276959,7 +286005,7 @@ LoopDetect - comprehensive detection of feedback loops in ODE models.""" ; sc:url "http://circe.med.uniroma1.it/looping/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -276977,7 +286023,7 @@ Cloning has been an integral part of most laboratory research questions and cont sc:url "https://gitlab.com/marielelensink325/loopseq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -276993,7 +286039,7 @@ Cloning has been an integral part of most laboratory research questions and cont sc:url "http://compbio.case.edu/loqum/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3325 ; @@ -277011,7 +286057,7 @@ Cloning has been an integral part of most laboratory research questions and cont sc:url "http://enlord.bndmr.fr/#homepage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168, @@ -277032,7 +286078,7 @@ Cloning has been an integral part of most laboratory research questions and cont "Faraz Hach" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0654, @@ -277049,7 +286095,7 @@ Cloning has been an integral part of most laboratory research questions and cont "Leena Salmela" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0196, @@ -277071,7 +286117,7 @@ Cloning has been an integral part of most laboratory research questions and cont biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -277088,7 +286134,7 @@ Cloning has been an integral part of most laboratory research questions and cont biotools:primaryContact "Hongyu Zhao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3068, @@ -277103,23 +286149,8 @@ Cloning has been an integral part of most laboratory research questions and cont sc:name "LoRSI" ; sc:url "https://github.com/YakhiniGroup/LoRSI" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3512 ; - sc:citation , - "pmcid:PMC6895391", - "pubmed:31633600" ; - sc:description """Preventing Complications or Improving Efficiency. - -BACKGROUND:There is increased focus on the value of surgical care. Postoperative complications decrease value, but it is unknown whether high-value hospitals spend less than low-value hospitals in cases without complications. Previous studies have not evaluated both expenditures and validated outcomes in the same patients, limiting the understanding of interactions between clinical performance, efficient utilization of services, and costliness of surgical episodes. OBJECTIVE:This study aimed to identify payment differences between low- and high-value hospitals in colectomy cases without adverse outcomes using a linked data set of multipayer claims and validated clinical outcomes. DESIGN:This is a retrospective observational cohort study. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'los hospitales de alto valor', 'hospitales de bajo valor', 'bajo valor con casos sin', 'valor con casos sin resultados'""" ; - sc:name "los hospitales de bajo valor" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31633600" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -277134,7 +286165,7 @@ BACKGROUND:There is increased focus on the value of surgical care. Postoperative sc:url "http://c2s2.yale.edu/software/LOT/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0637, edam:topic_2258, @@ -277155,7 +286186,7 @@ BACKGROUND:There is increased focus on the value of surgical care. Postoperative . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634 ; sc:description "Detection and analysis of Lou Gehrig's disease by using Watershed Techniques as well as clustering." ; @@ -277170,7 +286201,7 @@ BACKGROUND:There is increased focus on the value of surgical care. Postoperative biotools:primaryContact "ALI AKBAR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0085, @@ -277193,7 +286224,7 @@ BACKGROUND:There is increased focus on the value of surgical care. Postoperative sc:url "http://www.lovd.nl/3.0/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -277214,32 +286245,53 @@ BACKGROUND:There is increased focus on the value of surgical care. Postoperative sc:url "http://wwwmgs.bionet.nsc.ru/mgs/programs/low_complexity/" ; biotools:primaryContact "Yury Orlov" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_0625, + edam:topic_3500, + edam:topic_3673 ; + sc:citation ; + sc:description "Moment Estimators of Relatedness From Low-Depth Whole-Genome Sequencing Data." ; + sc:featureList edam:operation_3196, + edam:operation_3557, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "LowKi" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/genostats/LowKi" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ], + sc:additionalType "http://edamontology.org/data_2295" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1138" ; - sc:name "Pfam accession number" ; - sc:sameAs "http://edamontology.org/data_1138" ] ; + sc:additionalType "http://edamontology.org/data_1138" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pfam accession number" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2166" ; - sc:name "Sequence composition plot" ; - sc:sameAs "http://edamontology.org/data_2166" ], + sc:additionalType "http://edamontology.org/data_0867" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Sequence alignment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ], + sc:additionalType "http://edamontology.org/data_2166" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Sequence composition plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Sequence alignment (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0078, @@ -277263,7 +286315,7 @@ BACKGROUND:There is increased focus on the value of surgical care. Postoperative . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168 ; @@ -277279,7 +286331,7 @@ BACKGROUND:There is increased focus on the value of surgical care. Postoperative biotools:primaryContact "Townsend Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -277298,7 +286350,7 @@ The system LP-HCLUS and all the necessary files(lphclus.zip).""" ; sc:url "http://www.di.uniba.it/~gianvitopio/systems/lphclus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0623, @@ -277315,7 +286367,7 @@ The system LP-HCLUS and all the necessary files(lphclus.zip).""" ; biotools:primaryContact "Konstantin Voevodski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0625, @@ -277333,7 +286385,7 @@ The system LP-HCLUS and all the necessary files(lphclus.zip).""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -277353,7 +286405,7 @@ The system LP-HCLUS and all the necessary files(lphclus.zip).""" ; biotools:primaryContact "Nitin Jain" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -277372,7 +286424,7 @@ The system LP-HCLUS and all the necessary files(lphclus.zip).""" ; biotools:primaryContact "Carl Murie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -277390,8 +286442,29 @@ LPI-CNNCP designs a copy-padding trick to turn the protein/RNA sequences with va sc:name "LPI-CNNCP" ; sc:url "https://github.com/NWPU-903PR/LPI-CNNCP" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0659, + edam:topic_3474, + edam:topic_3500 ; + sc:citation , + "pubmed:35785626" ; + sc:description "A computational method LPI-CSFFR to predict lncRNA-protein interactions from sequences, secondary structure, and physicochemical property, which makes use of deep learning CNN and further improve its performance using feature reuse strategy." ; + sc:featureList edam:operation_0267, + edam:operation_2492, + edam:operation_3094 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "LPI-CSFFR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/JianjunTan-Beijing/LPI-CSFFR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0128, @@ -277410,11 +286483,10 @@ This model is proposed to predict lncRNA-protein interactions, which can be summ sc:url "https://github.com/zyk2118216069/LPI-SKF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, - edam:topic_2814, - edam:topic_3557 ; + edam:topic_2814 ; sc:citation "pubmed:27016210" ; sc:description "Web server developed for understanding protein-ligand interaction for almost all ligands available in Protein Data Bank." ; sc:featureList edam:operation_2949 ; @@ -277423,10 +286495,33 @@ This model is proposed to predict lncRNA-protein interactions, which can be summ "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://crdd.osdd.net/raghava/lpicom/" . + sc:url "http://webs.iiitd.edu.in/raghava/lpicom/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_0634, + edam:topic_0659, + edam:topic_3300, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9013167", + "pubmed:35428172" ; + sc:description "A webserver for lncRNA-protein interaction extraction from the literature." ; + sc:featureList edam:operation_3280, + edam:operation_3625, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "LPInsider" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.csbg-jlu.info/LPInsider/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3316, edam:topic_3382 ; @@ -277441,7 +286536,7 @@ This model is proposed to predict lncRNA-protein interactions, which can be summ sc:url "https://github.com/jasonyangshadow/lpmx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0204, @@ -277461,7 +286556,7 @@ This model is proposed to predict lncRNA-protein interactions, which can be summ biotools:primaryContact "Lars Kaderali" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0625, @@ -277477,7 +286572,7 @@ This model is proposed to predict lncRNA-protein interactions, which can be summ biotools:primaryContact "Dan Gusfield" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0153, @@ -277493,7 +286588,7 @@ This model is proposed to predict lncRNA-protein interactions, which can be summ biotools:primaryContact "Issue tracker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0605 ; @@ -277510,8 +286605,28 @@ This model is proposed to predict lncRNA-protein interactions, which can be summ sc:url "http://bioconductor.org/packages/release/bioc/html/lpsymphony.html" ; biotools:primaryContact "Vladislav Kim" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0736, + edam:topic_3315, + edam:topic_3382, + edam:topic_3542 ; + sc:citation , + "pubmed:35311956" ; + sc:description "The LPTD is an automatic topology determination method for intermediate resolution cryo-EM maps." ; + sc:featureList edam:operation_0319, + edam:operation_2429, + edam:operation_2488 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "LPTD" ; + sc:url "https://github.com/B-Behkamal/LPTD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -277532,7 +286647,7 @@ Lag Penalized Weighted Correlation (LPWC) is a method for clustering short time sc:url "https://github.com/gitter-lab/LPWC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3393, @@ -277548,7 +286663,7 @@ The goal is to classify an area as “high” or “low” on some trait of inte sc:url "https://github.com/isabelfulcher/lqas_imp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0091, @@ -277571,7 +286686,7 @@ Long read aligner for sequences and contigs.""" ; sc:url "https://anaconda.org/bioconda/lra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3047, @@ -277587,8 +286702,32 @@ Long read aligner for sequences and contigs.""" ; biotools:primaryContact "Dingming Wu", "Jin Gu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_3174, + edam:topic_3277, + edam:topic_3474, + edam:topic_3837 ; + sc:citation , + "pmcid:PMC9277797", + "pubmed:35821155" ; + sc:description "Binning long reads in metagenomics datasets using composition and coverage information." ; + sc:featureList edam:operation_0310, + edam:operation_3432, + edam:operation_3472, + edam:operation_3798 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "LRBinner" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/anuradhawick/LRBinner" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0804, edam:topic_2229, @@ -277605,8 +286744,26 @@ Long read aligner for sequences and contigs.""" ; sc:url "http://bs.ipm.ir/softwares/LRC/" ; biotools:primaryContact "School of Biological Sciences" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102 ; + sc:citation , + "pubmed:34850358" ; + sc:description "An R package and Shiny application for processing lexical data." ; + sc:featureList edam:operation_0335, + edam:operation_2422, + edam:operation_3096 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "lrd" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/npm27/lrd" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3344, @@ -277625,7 +286782,7 @@ Long read aligner for sequences and contigs.""" ; biotools:primaryContact "Diane" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0621 ; @@ -277641,8 +286798,44 @@ Long read aligner for sequences and contigs.""" ; sc:softwareHelp ; sc:url "http://mleg.cse.sc.edu/LRensemble/cgi-bin/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Script" ; + sc:applicationSubCategory edam:topic_0196 ; + sc:citation ; + sc:description "LR_Gapcloser is a gap closing tool using long reads from studied species. The long reads could be downloaed from public read archive database (for instance, NCBI SRA database ) or be your own data. Then they are fragmented and aligned to scaffolds using BWA mem algorithm in BWA package. In the package, we provided a compiled bwa, so the user needn't to install bwa. LR_Gapcloser uses the alignments to find the bridging that cross the gap, and then fills the long read original sequence into the genomic gaps." ; + sc:featureList edam:operation_3217 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "LR_Gapcloser" ; + sc:url "https://github.com/CAFS-bioinformatics/LR_Gapcloser" ; + biotools:primaryContact . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_2640, + edam:topic_3360, + edam:topic_3373 ; + sc:citation , + "pmcid:PMC8508984", + "pubmed:34638849" ; + sc:description "Predicting Associations between ncRNA and Drug Resistance via Linear Residual Graph Convolution." ; + sc:featureList edam:operation_0321, + edam:operation_3436, + edam:operation_3625 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "LRGCPND" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/TroyePlus/LRGCPND" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0602, @@ -277660,8 +286853,29 @@ Long read aligner for sequences and contigs.""" ; sc:url "http://www.rna.uni-jena.de/en/software/" ; biotools:primaryContact "Marcus Fricke" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_2229, + edam:topic_3170 ; + sc:citation , + "pubmed:35788263" ; + sc:description "LRLoop is a full-featured R package for analyzing LR-Loops from bulk & single-cell RNA-seq data." ; + sc:featureList edam:operation_0314, + edam:operation_2437, + edam:operation_2492 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "LRLoop" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Pinlyu3/LRLoop" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -277674,7 +286888,7 @@ Long read aligner for sequences and contigs.""" ; sc:url "http://code.google.com/p/likelihood-ratio-motifs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0196, @@ -277692,7 +286906,7 @@ LROD can detect overlap regions among long reads.""" ; sc:url "https://github.com/luojunwei/LROD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -277709,7 +286923,7 @@ LROD can detect overlap regions among long reads.""" ; sc:url "http://lrpath.ncibi.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275 ; @@ -277725,7 +286939,7 @@ LROD can detect overlap regions among long reads.""" ; biotools:primaryContact "Admin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -277744,8 +286958,26 @@ LROD can detect overlap regions among long reads.""" ; sc:url "http://www.lrrsearch.com/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0634, + edam:topic_0659, + edam:topic_2640 ; + sc:citation , + "pmcid:PMC8729064", + "pubmed:34983367" ; + sc:description "Prediction of lncRNA-disease association based on a Laplace normalized random walk with restart algorithm on heterogeneous networks." ; + sc:featureList edam:operation_0463, + edam:operation_3435, + edam:operation_3927 ; + sc:license "Not licensed" ; + sc:name "LRWRHLDA" ; + sc:url "https://github.com/wang-124/LRWRHLDA.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2885, @@ -277762,7 +286994,7 @@ LROD can detect overlap regions among long reads.""" ; sc:url "http://ls-snp.icm.jhu.edu/ls-snp-pdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , @@ -277777,7 +287009,7 @@ This repository is the pytorch implementation for the crowd counting model, LSC- sc:url "https://github.com/val-iisc/lsc-cnn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -277797,8 +287029,18 @@ This repository is the pytorch implementation for the crowd counting model, LSC- sc:url "http://psd.cbi.pku.edu.cn/" ; biotools:primaryContact "Jingchu Luo" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3293 ; + sc:citation ; + sc:description "Fast dating using least-squares criteria and algorithms" ; + sc:name "LSD" ; + sc:operatingSystem "Linux" ; + sc:url "http://www.atgc-montpellier.fr/LSD/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:description "LSGSP is the java codes which provided for use on this site are not part of the book Large-Scale Genome Sequence Processing published by Imperial College Press" ; @@ -277810,7 +287052,7 @@ This repository is the pytorch implementation for the crowd counting model, LSC- sc:url "http://mlab.cb.k.u-tokyo.ac.jp/~moris/LSGSP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2814 ; @@ -277823,7 +287065,7 @@ This repository is the pytorch implementation for the crowd counting model, LSC- sc:url "http://www.molspaces.com/d_lsim-overview.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0769 ; @@ -277841,7 +287083,7 @@ This repository is the pytorch implementation for the crowd counting model, LSC- biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, @@ -277859,7 +287101,7 @@ This repository is the pytorch implementation for the crowd counting model, LSC- biotools:primaryContact "CY Y" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -277875,7 +287117,7 @@ This repository is the pytorch implementation for the crowd counting model, LSC- biotools:primaryContact "Peter Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -277887,7 +287129,7 @@ This repository is the pytorch implementation for the crowd counting model, LSC- sc:url "http://bioinformatics.fccc.edu/software/OpenSource/LS-NMF/lsnmf.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -277901,7 +287143,7 @@ This repository is the pytorch implementation for the crowd counting model, LSC- sc:url "http://bioinformatics.cau.edu.cn/LSPR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053, @@ -277914,7 +287156,7 @@ This repository is the pytorch implementation for the crowd counting model, LSC- sc:url "http://www.csjfann.ibms.sinica.edu.tw/eag/programlist/LSR/LSR.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -277931,7 +287173,7 @@ This repository is the pytorch implementation for the crowd counting model, LSC- biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -277949,7 +287191,7 @@ This repository is the pytorch implementation for the crowd counting model, LSC- biotools:primaryContact "Marek Mutwil" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -277973,7 +287215,7 @@ LSTrAP-Cloud is a pipeline designed for building co-expression networks from RNA sc:url "https://github.com/tqiaowen/LSTrAP-Cloud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0780, @@ -277987,8 +287229,27 @@ By NTU Plants Systems Biology and Evolution Laboratory.""" ; sc:name "LSTrAP-Kingdom" ; sc:url "https://github.com/wirriamm/plants-pipeline" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0202, + edam:topic_0218, + edam:topic_0625, + edam:topic_3303, + edam:topic_3336 ; + sc:citation , + "pubmed:35306140" ; + sc:description "A comprehensive database for the linking of Traditional Chinese Medicine with modern medicine at molecular and phenotypic levels." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "LTM-TCM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://cloud.tasly.com/#/tcm/home" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0749, @@ -277999,7 +287260,7 @@ By NTU Plants Systems Biology and Evolution Laboratory.""" ; sc:url "https://github.com/oushujun/LTR_FINDER_parallel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0622, @@ -278014,8 +287275,20 @@ By NTU Plants Systems Biology and Evolution Laboratory.""" ; sc:url "http://tlife.fudan.edu.cn/ltr_finder/" ; biotools:primaryContact "Webmaster" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:citation ; + sc:description "LTR_retriever is a highly accurate and sensitive program for identification of LTR retrotransposons; The LTR Assembly Index (LAI) is also included in this package." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "LTR_retriever" ; + sc:url "https://github.com/oushujun/LTR_retriever" ; + biotools:primaryContact , + . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -278030,7 +287303,7 @@ By NTU Plants Systems Biology and Evolution Laboratory.""" ; sc:url "http://www.mcdonaldlab.biology.gatech.edu/ltr_struc.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -278048,7 +287321,7 @@ By NTU Plants Systems Biology and Evolution Laboratory.""" ; biotools:primaryContact "Li-Zhi Gao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053, @@ -278062,7 +287335,7 @@ By NTU Plants Systems Biology and Evolution Laboratory.""" ; sc:url "http://www.hsph.harvard.edu/alkes-price/software/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053, @@ -278078,7 +287351,7 @@ By NTU Plants Systems Biology and Evolution Laboratory.""" ; sc:url "http://stat.sfu.ca/statgen/research/luca.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0654, @@ -278095,7 +287368,7 @@ By NTU Plants Systems Biology and Evolution Laboratory.""" ; sc:url "http://www.gmod.org/wiki/LuceGene" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -278113,22 +287386,18 @@ By NTU Plants Systems Biology and Evolution Laboratory.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ], + sc:additionalType "http://edamontology.org/data_3497" ; + sc:name "DNA sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3572 ; sc:citation ; @@ -278146,7 +287415,7 @@ By NTU Plants Systems Biology and Evolution Laboratory.""" ; "Michael Holmes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3174, @@ -278164,7 +287433,7 @@ LueVari is a reference free metagenome SNP caller, based on the read-colored de sc:url "https://github.com/baharpan/cosmo/tree/LueVari" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053, @@ -278186,7 +287455,7 @@ LueVari is a reference free metagenome SNP caller, based on the read-colored de biotools:primaryContact "Pan Du" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Script" ; sc:applicationSubCategory edam:topic_0632, @@ -278207,7 +287476,7 @@ LueVari is a reference free metagenome SNP caller, based on the read-colored de sc:url "https://github.com/anthonyuren/LUMI-PCR-pipeline/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3524, @@ -278226,7 +287495,7 @@ Note: Estimates of cLV parameters with LUMINATE is considered experimental. To t sc:url "https://github.com/tyjo/luminate" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3452, @@ -278244,16 +287513,21 @@ LUMINOUS Database: Lumbar MUltifidus Muscle SegmentatIoN FrOm UltraSound.""" ; sc:url "http://data.sonography.ai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation ; sc:description "A novel SV discovery framework that naturally integrates multiple SV signals jointly across multiple samples. We show that LUMPY yields improved sensitivity, especially when SV signal is reduced owing to either low coverage data or low intra-sample variant allele frequency." ; sc:featureList edam:operation_3228 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; sc:name "lumpy" ; - sc:url "https://github.com/arq5x/lumpy-sv" . + sc:url "https://github.com/arq5x/lumpy-sv" ; + biotools:primaryContact "Aaron R Quinlan", + "Ira M Hall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -278279,14 +287553,12 @@ Notice: Use of undefined constant filterByMrna - assumed 'filterByMrna' in /var/ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -278305,18 +287577,18 @@ Notice: Use of undefined constant filterByMrna - assumed 'filterByMrna' in /var/ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3652" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "Sequence set" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -278333,7 +287605,7 @@ Notice: Use of undefined constant filterByMrna - assumed 'filterByMrna' in /var/ sc:url "http://www.hairyfatguy.com/lutefisk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3520 ; @@ -278352,14 +287624,13 @@ Notice: Use of undefined constant filterByMrna - assumed 'filterByMrna' in /var/ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2905" ; - sc:name "Lipid accession" ; - sc:sameAs "http://edamontology.org/data_2905" ] ; + sc:additionalType "http://edamontology.org/data_2905" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Lipid accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0153 ; sc:citation ; @@ -278372,8 +287643,30 @@ Notice: Use of undefined constant filterByMrna - assumed 'filterByMrna' in /var/ sc:softwareHelp ; sc:url "http://lifs.isas.de/index.php/lux-score" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workflow" ; + sc:applicationSubCategory edam:topic_0654, + edam:topic_3168, + edam:topic_3295, + edam:topic_3674 ; + sc:citation , + "pmcid:PMC8760685", + "pubmed:35030989" ; + sc:description "LuxRep is a genome wide methylation analysis tool that models different bisulphite-converted DNA libraries from the same biological replicate (i.e., technical replicates) thereby allowing use of libraries of even low bisulphite conversion rates." ; + sc:featureList edam:operation_3186, + edam:operation_3207, + edam:operation_3919 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "LuxRep" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/tare/LuxGLM/tree/master/LuxRep" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3292, @@ -278393,7 +287686,7 @@ LuxGLM Using Spatial correlation (LuxUS) is a tool for differential methylation sc:url "https://github.com/hallav/LuxUS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3444 ; @@ -278411,7 +287704,7 @@ LuxGLM Using Spatial correlation (LuxUS) is a tool for differential methylation biotools:primaryContact "Thien-Khoi N. Phung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -278431,7 +287724,7 @@ LuxGLM Using Spatial correlation (LuxUS) is a tool for differential methylation biotools:primaryContact "Stefano Calza" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0622, @@ -278448,7 +287741,7 @@ LuxGLM Using Spatial correlation (LuxUS) is a tool for differential methylation biotools:primaryContact "Jeremiah Faith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3372 ; @@ -278461,7 +287754,7 @@ LuxGLM Using Spatial correlation (LuxUS) is a tool for differential methylation sc:url "http://bioinformatics.jnu.edu.cn/LXtoo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0804, @@ -278479,7 +287772,7 @@ LuxGLM Using Spatial correlation (LuxUS) is a tool for differential methylation biotools:primaryContact "cathal.seoighe@nuigalway.ie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0108, @@ -278499,7 +287792,7 @@ Shiny application to visualise phospho-kinetics upon TCR activation.""" ; sc:url "https://bmm-lab.github.io/LymphoAtlas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -278516,7 +287809,7 @@ Shiny application to visualise phospho-kinetics upon TCR activation.""" ; biotools:primaryContact "David Coffey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -278535,7 +287828,7 @@ Shiny application to visualise phospho-kinetics upon TCR activation.""" ; sc:url "http://lynx.ci.uchicago.edu/webservices.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, edam:topic_0634, @@ -278551,7 +287844,7 @@ Shiny application to visualise phospho-kinetics upon TCR activation.""" ; sc:url "https://github.com/jiaying2508/LYRUS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275 ; sc:citation , @@ -278566,7 +287859,7 @@ Shiny application to visualise phospho-kinetics upon TCR activation.""" ; sc:url "http://kiharalab.org/proteindocking/lzerd.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -278581,7 +287874,7 @@ Shiny application to visualise phospho-kinetics upon TCR activation.""" ; biotools:primaryContact "Attila Kertész-Farkas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -278597,26 +287890,21 @@ Shiny application to visualise phospho-kinetics upon TCR activation.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0984" ; - sc:name "Molecule name" ; - sc:sameAs "http://edamontology.org/data_0984" ], + sc:additionalType "http://edamontology.org/data_0984" ; + sc:name "Molecule name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1864" ; - sc:name "Map set data" ; - sc:sameAs "http://edamontology.org/data_1864" ], + sc:additionalType "http://edamontology.org/data_0990" ; + sc:name "Compound name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0990" ; - sc:name "Compound name" ; - sc:sameAs "http://edamontology.org/data_0990" ], + sc:additionalType "http://edamontology.org/data_1864" ; + sc:name "Map set data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1154" ; - sc:name "KEGG object identifier" ; - sc:sameAs "http://edamontology.org/data_1154" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1154" ; + sc:name "KEGG object identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Desktop application", "Suite", @@ -278651,7 +287939,7 @@ Shiny application to visualise phospho-kinetics upon TCR activation.""" ; biotools:primaryContact "Maria I Klapa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -278668,22 +287956,22 @@ Shiny application to visualise phospho-kinetics upon TCR activation.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3682" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3551" ; + sc:name "Image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3551" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3682" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0091 ; @@ -278703,7 +287991,7 @@ Shiny application to visualise phospho-kinetics upon TCR activation.""" ; sc:url "https://www.m2aia.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -278724,7 +288012,7 @@ Predicting MiRNA-disease Associations by Multiple Meta-paths Fusion Graph Embedd sc:url "https://github.com/dangdangzhang/M2GMDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -278744,7 +288032,7 @@ M2IA is a web-based server for the Microbiome and Metabolome data integration an sc:url "http://m2ia.met-bioinformatics.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3071 ; @@ -278758,8 +288046,31 @@ M2IA is a web-based server for the Microbiome and Metabolome data integration an sc:softwareHelp ; sc:url "https://bitbucket.org/paiyetan/m2lite" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_0154, + edam:topic_0602, + edam:topic_0634, + edam:topic_3335 ; + sc:citation , + "pmcid:PMC8728953", + "pubmed:34983358" ; + sc:description "a computational model for predicting drug-targeted pathogenic proteins" ; + sc:featureList edam:operation_2489, + edam:operation_3094, + edam:operation_3461, + edam:operation_3659 ; + sc:license "Not licensed" ; + sc:name "M2PP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/shimingwang1994/M2PP.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0625, @@ -278778,7 +288089,7 @@ Microbiota-to-Recon (M2R) program.""" ; sc:url "https://github.com/e-weglarz-tomczak/m2r" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -278794,7 +288105,7 @@ Microbiota-to-Recon (M2R) program.""" ; sc:url "http://zhaocenter.org/software/#Genomic_Expression_Pathway_Analysis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -278811,8 +288122,28 @@ Microbiota-to-Recon (M2R) program.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/M3C.html" ; biotools:primaryContact "Christopher John" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0218, + edam:topic_0659, + edam:topic_2640, + edam:topic_3063 ; + sc:citation , + "pubmed:35303059" ; + sc:description "MicroRNA childhood Cancer Catalog (M3Cs) is a high-quality curated collection of published miRNA research studies on 16 pediatric cancer diseases." ; + sc:featureList edam:operation_0306, + edam:operation_3436, + edam:operation_3454 ; + sc:name "M3Cs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://m3cs.shinyapps.io/M3Cs/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0097, @@ -278832,7 +288163,7 @@ Microbiota-to-Recon (M2R) program.""" ; biotools:primaryContact "Tom Mayo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3374, @@ -278847,7 +288178,7 @@ Select a tested drug product Example 1 Example 2 Example 3 Example 4 Load materi sc:url "http://m3diseen.com/predictions/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -278867,7 +288198,7 @@ Select a tested drug product Example 1 Example 2 Example 3 Example 4 Load materi biotools:primaryContact "Tallulah Andrews" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -278889,8 +288220,33 @@ Select a tested drug product Example 1 Example 2 Example 3 Example 4 Load materi sc:softwareHelp ; sc:url "http://manaslu.fiserlab.org/M4T/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_2885, + edam:topic_3320, + edam:topic_3512, + edam:topic_3674 ; + sc:citation , + "pmcid:PMC8728298", + "pubmed:34986603" ; + sc:description "A database for decoding and annotating the 5-methylcytosine (m5C) epitranscriptome." ; + sc:featureList edam:operation_0278, + edam:operation_0314, + edam:operation_0463, + edam:operation_0502 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "m5C-Atlas" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.xjtlu.edu.cn/biologicalsciences/m5c-atlas" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0780, @@ -278913,7 +288269,7 @@ A webserver for m5C Sites Identification of RNA. m5CPred-SVM was developed by us sc:url "http://zhulab.ahu.edu.cn/m5CPred-SVM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3295, @@ -278933,7 +288289,7 @@ As one of the widely occurring RNA modifications, 5-methyluridine (m5U) has rece sc:url "https://www.xjtlu.edu.cn/biologicalsciences/m5u" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0659, @@ -278955,8 +288311,29 @@ As one of the widely occurring RNA modifications, 5-methyluridine (m5U) has rece sc:url "http://xjtlu.edu.cn/biologicalsciences/m6acomet" ; biotools:primaryContact "Jia Meng" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0602, + edam:topic_2640, + edam:topic_3512 ; + sc:citation , + "pubmed:35314342" ; + sc:description "Prediction of m6A regulated expression genes by integrating m6A sites and reader binding information in specific- context" ; + sc:featureList edam:operation_2495, + edam:operation_2575, + edam:operation_3222 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "m6 Aexpress-Reader" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/NWPU-903PR/m6AexpressReader" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -278978,8 +288355,34 @@ As one of the widely occurring RNA modifications, 5-methyluridine (m5U) has rece "Windows" ; sc:url "https://github.com/Yufei-Huang-Lab/m6Aexpress" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3264" ; + sc:name "COSMIC ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0659, + edam:topic_2640, + edam:topic_3295, + edam:topic_3512 ; + sc:citation ; + sc:description "Unveiling the context-specific m6A methylation and m6A-affecting mutations in 23 human tissues." ; + sc:featureList edam:operation_0314, + edam:operation_0331, + edam:operation_0417 ; + sc:isAccessibleForFree true ; + sc:name "m6A-TSHub" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.xjtlu.edu.cn/biologicalsciences/m6ats" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3170, @@ -278996,7 +288399,7 @@ N6-methyladenosine (m6A) is the most abundant posttranscriptional modification i sc:url "http://m6a2target.canceromics.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0634, @@ -279013,8 +288416,27 @@ N6-methyladenosine (m6A) is the most abundant posttranscriptional modification i sc:url "http://m6add.edbc.org/" ; biotools:primaryContact "Yan Zhang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0602, + edam:topic_3295 ; + sc:citation , + "pubmed:35091075" ; + sc:description "Analysis of m6A profile matrix based on graph regularized non-negative matrix factorization." ; + sc:featureList edam:operation_0314, + edam:operation_2436, + edam:operation_3204 ; + sc:isAccessibleForFree true ; + sc:name "m6Adecom" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.rnanut.net/m6adecom" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3320, @@ -279036,7 +288458,7 @@ N6-methyladenosine (m6A) is the most abundant posttranscriptional modification i sc:url "https://github.com/bokunoBike/m6AGE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3047, @@ -279049,7 +288471,7 @@ N6-methyladenosine (m6A) is the most abundant posttranscriptional modification i sc:url "https://www.xjtlu.edu.cn/biologicalsciences/m6am" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -279070,7 +288492,7 @@ N6-methyladenosine (m6A) is the most abundant posttranscriptional modification i sc:url "https://github.com/GoekeLab/m6anet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3295, @@ -279090,7 +288512,7 @@ Among the various types of RNA modification, the methylation of adenosine at the sc:url "http://m6areader.rnamd.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -279105,7 +288527,7 @@ Among the various types of RNA modification, the methylation of adenosine at the sc:url "https://github.com/jeppevinther/m7g_map_seq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; sc:applicationSubCategory edam:topic_0659, @@ -279128,27 +288550,8 @@ A database for the disease-associated genetic variants that may affect m7G sites sc:name "m7GHub" ; sc:url "http://www.xjtlu.edu.cn/biologicalsciences/m7ghub" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_2269, - edam:topic_3411 ; - sc:citation , - "pmcid:PMC6773420", - "pubmed:31574133" ; - sc:description """Costs and cost-effectiveness analyses of mCARE strategies for promoting care seeking of maternal and newborn health services in rural Bangladesh. - -OBJECTIVE:We examined the incremental cost-effectiveness between two mHealth programs, implemented from 2011 to 2015 in rural Bangladesh: (1) Comprehensive mCARE package as an intervention group and (2) Basic mCARE package as a control group. METHODS:Both programs included a core package of census enumeration and pregnancy surveillance provided by an established cadre of digitally enabled community health workers (CHWs). In the comprehensive mCARE package, short message service (SMS) and home visit reminders were additionally sent to pregnant women (n = 610) and CHWs (n = 70) to promote the pregnant women's care-seeking of essential maternal and newborn care services. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'SMS' (bio.tools/sms)""" ; - sc:featureList edam:operation_3435, - edam:operation_3454 ; - sc:name "mCARE" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31574133" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0199, @@ -279172,7 +288575,7 @@ OBJECTIVE:We examined the incremental cost-effectiveness between two mHealth pro . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, @@ -279188,7 +288591,7 @@ OBJECTIVE:We examined the incremental cost-effectiveness between two mHealth pro sc:url "https://www.itb.cnr.it/mnd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -279212,14 +288615,14 @@ Werner, J., Géron, A., Kerssemakers, J. et al. mPies: a novel metaproteomics to a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3572 ; @@ -279241,7 +288644,7 @@ Werner, J., Géron, A., Kerssemakers, J. et al. mPies: a novel metaproteomics to biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3071, @@ -279257,7 +288660,7 @@ Werner, J., Géron, A., Kerssemakers, J. et al. mPies: a novel metaproteomics to sc:url "http://maia.genouest.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -279273,7 +288676,7 @@ Werner, J., Géron, A., Kerssemakers, J. et al. mPies: a novel metaproteomics to sc:url "http://www.emouseatlas.org/emap/home.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3518 ; @@ -279290,7 +288693,7 @@ Werner, J., Géron, A., Kerssemakers, J. et al. mPies: a novel metaproteomics to sc:url "http://liulab.dfci.harvard.edu/MA2C/MA2C.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -279309,7 +288712,7 @@ Werner, J., Géron, A., Kerssemakers, J. et al. mPies: a novel metaproteomics to biotools:primaryContact "Keith Sheppard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3170, @@ -279331,7 +288734,7 @@ Werner, J., Géron, A., Kerssemakers, J. et al. mPies: a novel metaproteomics to sc:url "https://github.com/Vivianstats/MAAPER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0769, @@ -279351,11 +288754,15 @@ A Multifunctional and Visual Tool for Microbiomic Data Analyses.""" ; sc:url "http://www.maawf.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_2269 ; - sc:citation "pubmed:22932419" ; + sc:citation , + , + "pmcid:PMC3517402", + "pubmed:22932419", + "pubmed:28881959" ; sc:description "Simulating continuous/discrete time Markov processes, applied on a Boolean network." ; sc:featureList edam:operation_3562 ; sc:name "MaBoSS" ; @@ -279364,16 +288771,36 @@ A Multifunctional and Visual Tool for Microbiomic Data Analyses.""" ; sc:softwareVersion "2.0" ; sc:url "https://maboss.curie.fr" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pubmed:34935911" ; + sc:description "Marker-based automatic cell-type annotation for single cell expression data" ; + sc:featureList edam:operation_0313, + edam:operation_2422, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MACA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ImXman/MACA" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3307, @@ -279392,8 +288819,30 @@ A Multifunctional and Visual Tool for Microbiomic Data Analyses.""" ; sc:url "http://www.genmed.fr/index.php/fr/recherche/publications" ; biotools:primaryContact "Waqasuddin Khan" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_0780, + edam:topic_2885, + edam:topic_3517 ; + sc:citation , + "pubmed:34864867" ; + sc:description "Macarons is an algorithm designed to recover single nucleotide polymorphisms (SNPs) that are related with a phenotype in genome wide association studies (GWAS) by taking into account of the dependencies between them." ; + sc:featureList edam:operation_3196, + edam:operation_3661, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Macarons" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/serhan-yilmaz/macarons" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0077, @@ -279415,7 +288864,7 @@ A Multifunctional and Visual Tool for Microbiomic Data Analyses.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293, @@ -279429,8 +288878,54 @@ A Multifunctional and Visual Tool for Microbiomic Data Analyses.""" ; sc:url "http://macclade.org/index.html" ; biotools:primaryContact "David Maddison" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0780, + edam:topic_3071, + edam:topic_3172, + edam:topic_3520 ; + sc:citation , + "pubmed:35576088" ; + sc:description "An Open Access Data Repository of Mass Spectra for Chemical Ecology." ; + sc:featureList edam:operation_3431, + edam:operation_3801, + edam:operation_3803, + edam:operation_3860 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-SA-4.0" ; + sc:name "MACE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.oc.tu-bs.de/schulz/html/MACE.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0621, + edam:topic_3572 ; + sc:citation , + "pmcid:PMC8443542", + "pubmed:34594153" ; + sc:description "Molecular Acquisition, Cleaning, and Evaluation in R (MACER) is an R package to assist biological researchers in assembling taxonomically and marker focused molecular sequence data set." ; + sc:featureList edam:operation_0310, + edam:operation_3192, + edam:operation_3200 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "MACER" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://github.com/rgyoung6/MACER" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3055, @@ -279451,7 +288946,7 @@ A Multifunctional and Visual Tool for Microbiomic Data Analyses.""" ; sc:url "http://csg.sph.umich.edu/abecasis/mach/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation , @@ -279470,7 +288965,7 @@ A Multifunctional and Visual Tool for Microbiomic Data Analyses.""" ; sc:url "https://yunliweb.its.unc.edu//MaCH-Admix/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2885 ; @@ -279485,7 +288980,7 @@ A Multifunctional and Visual Tool for Microbiomic Data Analyses.""" ; sc:url "https://www.nitrc.org/projects/mach2dat/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation , @@ -279500,7 +288995,7 @@ A Multifunctional and Visual Tool for Microbiomic Data Analyses.""" ; sc:url "https://www.nitrc.org/projects/mach2qtl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite", "Web API", @@ -279517,7 +289012,7 @@ A Multifunctional and Visual Tool for Microbiomic Data Analyses.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0166, edam:topic_3474, @@ -279537,7 +289032,7 @@ A Multifunctional and Visual Tool for Microbiomic Data Analyses.""" ; sc:url "http://rayluolab.org/ml-ses/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3292, @@ -279556,7 +289051,7 @@ Machine-OLF-action: a machine learning-driven computational framework.""" ; sc:url "https://ahuja-lab.in/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, @@ -279576,7 +289071,7 @@ Machine Boss allows you to manipulate state machines by concatenating, composing sc:url "http://machineboss.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, @@ -279598,7 +289093,7 @@ Machine Boss allows you to manipulate state machines by concatenating, composing biotools:primaryContact "Gemma L. Holliday" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3053, @@ -279615,7 +289110,7 @@ Machine Boss allows you to manipulate state machines by concatenating, composing sc:url "http://www.ra.cs.uni-tuebingen.de/software/MACLEAPS/index.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -279629,7 +289124,7 @@ Machine Boss allows you to manipulate state machines by concatenating, composing sc:url "http://medicine.yale.edu/lab/townsend/sand/index.aspx#page1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053 ; @@ -279643,7 +289138,7 @@ Machine Boss allows you to manipulate state machines by concatenating, composing sc:url "http://www.csbio.sjtu.edu.cn/bioinf/MACOED/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0204, @@ -279663,7 +289158,7 @@ Machine Boss allows you to manipulate state machines by concatenating, composing biotools:primaryContact "Alexander Ploner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -279684,7 +289179,7 @@ Machine Boss allows you to manipulate state machines by concatenating, composing sc:url "https://macpepdb.mpc.rub.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3125 ; @@ -279705,7 +289200,7 @@ Machine Boss allows you to manipulate state machines by concatenating, composing biotools:primaryContact "Ioannis Vardaxis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Web application" ; @@ -279730,7 +289225,7 @@ Pipeline to mine antimicrobial peptides (AMPs) from (meta)genomes.""" ; sc:url "https://big-data-biology.org/software/macrel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0821, edam:topic_3343, @@ -279749,7 +289244,7 @@ Pipeline to mine antimicrobial peptides (AMPs) from (meta)genomes.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306 ; sc:citation ; @@ -279765,7 +289260,7 @@ Pipeline to mine antimicrobial peptides (AMPs) from (meta)genomes.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2229, @@ -279788,26 +289283,26 @@ Pipeline to mine antimicrobial peptides (AMPs) from (meta)genomes.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3005" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -279826,7 +289321,7 @@ Pipeline to mine antimicrobial peptides (AMPs) from (meta)genomes.""" ; biotools:primaryContact "MACS Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3678 ; @@ -279840,7 +289335,7 @@ Pipeline to mine antimicrobial peptides (AMPs) from (meta)genomes.""" ; sc:url "https://popmodels.cancercontrol.cancer.gov/gsr/packages/macs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0108, @@ -279866,18 +289361,16 @@ MACSE aligns coding NT sequences with respect to their AA translation while allo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1947" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -279895,7 +289388,7 @@ MACSE aligns coding NT sequences with respect to their AA translation while allo biotools:primaryContact "Julie Thompson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0602, @@ -279918,46 +289411,38 @@ MACSNVdb is an open-access SNV database comprising ~74.51 million high-quality n a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0869" ; - sc:name "Sequence-profile alignment" ; - sc:sameAs "http://edamontology.org/data_0869" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_0869" ; + sc:encodingFormat "http://edamontology.org/format_3329" ; + sc:name "Sequence-profile alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2337" ; - sc:name "Resource metadata" ; - sc:sameAs "http://edamontology.org/data_2337" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2337" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Resource metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0085 ; sc:author "Bertrand Néron" ; sc:citation ; sc:description "Program to model and detect macromolecular systems, genetic pathways... in protein datasets. In prokaryotes, these systems have often evolutionarily conserved properties: they are made of conserved components, and are encoded in compact loci (conserved genetic architecture). The user models these systems to reflect these conserved features, and to allow their efficient detection." ; - sc:featureList edam:operation_0337, - edam:operation_2423 ; + sc:featureList edam:operation_1777, + edam:operation_3672 ; sc:license "GPL-3.0" ; sc:name "MacSyFinder" ; sc:operatingSystem "Linux", @@ -279965,13 +289450,17 @@ MACSNVdb is an open-access SNV database comprising ~74.51 million high-quality n sc:provider "Institut Pasteur", "Microbial Evolutionary Genomics Unit" ; sc:softwareHelp , - ; - sc:softwareVersion "1.0.2" ; + , + , + ; + sc:softwareVersion "1.0.2", + "2.0" ; sc:url "https://github.com/gem-pasteur/macsyfinder" ; - biotools:primaryContact "Bertrand Néron" . + biotools:primaryContact , + "Bertrand Néron" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3168, @@ -279987,7 +289476,7 @@ MACSNVdb is an open-access SNV database comprising ~74.51 million high-quality n sc:url "https://github.com/isglobal-brge/MAD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -280008,7 +289497,7 @@ A Tool for Multiple Accessions' Distinguishing through Hierarchical Decision Tre sc:url "https://bioinfo.noble.org/MAD-HiDTree/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3452, edam:topic_3474, @@ -280025,7 +289514,7 @@ Deep Learning Tutorial for Kaggle Ultrasound Nerve Segmentation competition, usi sc:url "https://github.com/Mrqins/pancreas-segmentation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0654, @@ -280046,7 +289535,7 @@ MADA is developed for the whole process of methylation array data analysis""" ; sc:url "http://bioinformatics.csu.edu.cn/MADA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -280067,7 +289556,7 @@ MADA is developed for the whole process of methylation array data analysis""" ; biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0736, @@ -280083,7 +289572,7 @@ MADA is developed for the whole process of methylation array data analysis""" ; sc:url "http://www.grigoryanlab.org/madcat/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0769, @@ -280099,7 +289588,7 @@ The Maryland Analysis of Developmental EEG (MADE) Pipeline. Version 1.0. Develop sc:url "https://github.com/ChildDevLab/MADE-EEG-preprocessing-pipeline" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -280121,7 +289610,7 @@ The Maryland Analysis of Developmental EEG (MADE) Pipeline. Version 1.0. Develop biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2269, @@ -280139,7 +289628,7 @@ The Maryland Analysis of Developmental EEG (MADE) Pipeline. Version 1.0. Develop biotools:primaryContact "Keegan Korthauer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3473, @@ -280156,10 +289645,10 @@ The Maryland Analysis of Developmental EEG (MADE) Pipeline. Version 1.0. Develop a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Genotype/phenotype report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3303, @@ -280183,7 +289672,7 @@ The Maryland Analysis of Developmental EEG (MADE) Pipeline. Version 1.0. Develop biotools:primaryContact "Daniel Georgiev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0097, @@ -280203,7 +289692,7 @@ The Maryland Analysis of Developmental EEG (MADE) Pipeline. Version 1.0. Develop biotools:primaryContact "Yu Kong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0749, @@ -280225,7 +289714,7 @@ A magnetostrictive material is one which changes in size due to a change of stat sc:url "https://maelasviewer.herokuapp.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2533, edam:topic_2814, @@ -280241,7 +289730,7 @@ A magnetostrictive material is one which changes in size due to a change of stat sc:url "https://biwww.che.sbg.ac.at/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:citation , "pubmed:25885774" ; @@ -280254,7 +289743,7 @@ A magnetostrictive material is one which changes in size due to a change of stat sc:url "https://pbwww.services.came.sbg.ac.at/maestro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3307 ; sc:description "MAESTRO-web is web interface to MAESTRO, a Multi AgEnt STability pRedictiOn tool for calculating changes in unfolding free energy upon point mutation. MAESTRO is structure based, which means that the 3-d structure of the wild type is required. It is able to predict single- and multi-point in monomeric and multimeric proteins. In addition, MAESTROweb provides mutation sensitivity profiles, a scanner for the most (de)stabilizing mutations and potential S-S bonds sites." ; @@ -280262,7 +289751,7 @@ A magnetostrictive material is one which changes in size due to a change of stat sc:url "https://pbwww.services.came.sbg.ac.at/maestro/web" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2269, @@ -280282,7 +289771,7 @@ A magnetostrictive material is one which changes in size due to a change of stat sc:url "http://maexplorer.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3518 ; @@ -280298,7 +289787,7 @@ A magnetostrictive material is one which changes in size due to a change of stat biotools:primaryContact "P.Hingamp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_3071 ; @@ -280313,14 +289802,14 @@ A magnetostrictive material is one which changes in size due to a change of stat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -280337,7 +289826,7 @@ A magnetostrictive material is one which changes in size due to a change of stat sc:url "https://www.ebi.ac.uk/Tools/msa/mafft/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -280354,7 +289843,7 @@ A magnetostrictive material is one which changes in size due to a change of stat biotools:primaryContact "Jiyuan Hu and Hong Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -280372,7 +289861,7 @@ A magnetostrictive material is one which changes in size due to a change of stat biotools:primaryContact "Anand Mayakonda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0160, @@ -280395,7 +289884,7 @@ MAGA is a new simpler way to infer information from alignments. Based on a regul sc:url "http://cbdm-01.zdv.uni-mainz.de/~munoz/maga/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -280422,8 +289911,32 @@ MAGA is a new simpler way to infer information from alignments. Based on a regul sc:url "http://bitlab-es.com/magallanes/" ; biotools:primaryContact "Esteban Pérez-Wohlfeil" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0625, + edam:topic_0632, + edam:topic_3063, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC9220151", + "pubmed:35741417" ; + sc:description "An Open-Source Tool for Meta-Analysis of Gene Expression Studies." ; + sc:featureList edam:operation_0314, + edam:operation_0315, + edam:operation_2436 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MAGE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.compgen.org/tools/mage" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3368 ; sc:description "MAGE-ML visualize script will read any MAGE-ML file and generate a graph showing the links between BioMaterials all the way through to BioAssays, and include information on sample characteristics and experimental factor values in the output." ; @@ -280436,7 +289949,7 @@ MAGA is a new simpler way to infer information from alignments. Based on a regul sc:url "http://tab2mage.sourceforge.net/#other_packages" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -280452,7 +289965,7 @@ MAGA is a new simpler way to infer information from alignments. Based on a regul biotools:primaryContact "Dana Farber" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085 ; sc:description "It is designed to surporting downstream analysis, utilizing the gene summary data provided through MAGeCK or MAGeCK-VISPR. Quality control, normalization, and screen hit identification for CRISPR screen data are performed in pipeline. Identified hits within the pipeline are categorized based on experimental design, and are subsequently interpreted by functional enrichment analysis." ; @@ -280473,7 +289986,7 @@ MAGA is a new simpler way to infer information from alignments. Based on a regul biotools:primaryContact "Wubing Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3365, edam:topic_3473 ; @@ -280492,7 +290005,7 @@ MAGA is a new simpler way to infer information from alignments. Based on a regul biotools:primaryContact "Helen Parkinson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3056 ; @@ -280513,18 +290026,18 @@ MAGA is a new simpler way to infer information from alignments. Based on a regul a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2337" ; - sc:name "Resource metadata" ; - sc:sameAs "http://edamontology.org/data_2337" ], + sc:additionalType "http://edamontology.org/data_2337" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Resource metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0848" ; - sc:name "Raw sequence" ; - sc:sameAs "http://edamontology.org/data_0848" ] ; + sc:additionalType "http://edamontology.org/data_0848" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Raw sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -280543,7 +290056,7 @@ MAGA is a new simpler way to infer information from alignments. Based on a regul biotools:primaryContact "Dmitriy M. Chudakov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -280562,7 +290075,7 @@ MAGGIE provides a framework for identifying DNA sequence motifs mediating transc sc:url "https://github.com/zeyang-shen/maggie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3070 ; @@ -280577,7 +290090,7 @@ MAGGIE provides a framework for identifying DNA sequence motifs mediating transc sc:url "http://wormloco.org/mag/doc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2640, @@ -280594,7 +290107,7 @@ MAGGIE provides a framework for identifying DNA sequence motifs mediating transc biotools:primaryContact "Raphael Lab, Princeton University" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -280615,7 +290128,7 @@ MAGGIE provides a framework for identifying DNA sequence motifs mediating transc sc:url "https://github.com/jchow32/MAGI-MS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -280639,18 +290152,15 @@ MAGGIE provides a framework for identifying DNA sequence motifs mediating transc a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ] ; + sc:additionalType "http://edamontology.org/data_2295" ; + sc:name "Gene ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_3134" ; + sc:name "Gene transcript report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3308 ; @@ -280667,7 +290177,7 @@ MAGGIE provides a framework for identifying DNA sequence motifs mediating transc sc:url "http://bioinformatics.intec.ugent.be/magic/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3337, @@ -280685,7 +290195,7 @@ MAGGIE provides a framework for identifying DNA sequence motifs mediating transc "Junhao Wen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -280705,7 +290215,7 @@ The manuscript accompanying this script is: MAGIC: A tool for predicting transcr sc:url "https://go.wisc.edu/magic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_1317, @@ -280722,7 +290232,7 @@ The manuscript accompanying this script is: MAGIC: A tool for predicting transcr biotools:primaryContact "T.-Y. Sung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -280743,7 +290253,7 @@ The manuscript accompanying this script is: MAGIC: A tool for predicting transcr sc:url "https://bit.ly/magicrings" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382 ; sc:description "MAGIC Tool is an integrated microarray data analysis software." ; @@ -280758,7 +290268,7 @@ The manuscript accompanying this script is: MAGIC: A tool for predicting transcr sc:url "http://www.bio.davidson.edu/projects/magic/magic.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -280780,7 +290290,7 @@ The manuscript accompanying this script is: MAGIC: A tool for predicting transcr "Zhongsheng Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -280798,7 +290308,7 @@ The manuscript accompanying this script is: MAGIC: A tool for predicting transcr biotools:primaryContact "Chien-Yu Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -280820,7 +290330,7 @@ MAGINE is a framework for the analysis of quantitative multi-omics data. It was sc:url "https://github.com/lolab-vu/magine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3518 ; @@ -280834,7 +290344,7 @@ MAGINE is a framework for the analysis of quantitative multi-omics data. It was sc:url "http://www.magma-fgcz.unizh.ch/pages/loginuser.jsf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, @@ -280851,7 +290361,7 @@ MAGINE is a framework for the analysis of quantitative multi-omics data. It was biotools:primaryContact "Gary D. Stormo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3299 ; @@ -280867,7 +290377,7 @@ MAGINE is a framework for the analysis of quantitative multi-omics data. It was biotools:primaryContact "Tijana Milenkovic, Ph.D" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -280890,7 +290400,7 @@ MAGINE is a framework for the analysis of quantitative multi-omics data. It was biotools:primaryContact "Gürkan Bebek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -280905,30 +290415,31 @@ MAGINE is a framework for the analysis of quantitative multi-omics data. It was sc:url "https://www.mathworks.com/matlabcentral/fileexchange/70296-the-codes-for-measuring-magnetic-susceptibility" ; biotools:primaryContact "Seon ha Hwang" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2269, - edam:topic_3452, - edam:topic_3474 ; - sc:citation , - "pubmed:31598847" ; - sc:description """a GPU Accelerated FEM Tool for Forward and Inverse Computations in Matlab. - -Open-source Python software for exploring, visualizing, and analyzing human neurophysiological data: MEG, EEG, sEEG, ECoG, and more. - -Clean scripting & visualization. - -Broad data format & analysis support. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/MNE-Python (MARTINOS.ORG/mne/stable). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Zeffiro User Interface Electromagnetic Brain Imaging', 'Zeffiro', 'FEM' (bio.tools/fem), 'EEG'""" ; - sc:featureList edam:operation_0337, - edam:operation_3435 ; - sc:name "magnetoencephalography EEG" ; - sc:url "https://martinos.org/mne/stable/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0769, + edam:topic_3050, + edam:topic_3174, + edam:topic_3697 ; + sc:citation , + "pubmed:35703559" ; + sc:description "An automated workflow for genome-resolved metagenomics" ; + sc:featureList edam:operation_0310, + edam:operation_0362, + edam:operation_3192, + edam:operation_3219 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MAGNETO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.univ-nantes.fr/bird_pipeline_registry/magneto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -280951,10 +290462,9 @@ Broad data format & analysis support. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2269, @@ -280974,7 +290484,7 @@ Broad data format & analysis support. biotools:primaryContact "Christoph Baldow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053 ; @@ -280988,7 +290498,7 @@ Broad data format & analysis support. sc:url "http://qge.fhcrc.org/MAGprediction/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0637, @@ -281004,7 +290514,7 @@ Broad data format & analysis support. biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091 ; @@ -281022,7 +290532,7 @@ MAFFT (linux version is included).""" ; sc:url "https://github.com/vlasmirnov/MAGUS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0654, @@ -281042,7 +290552,7 @@ MAFFT (linux version is included).""" ; biotools:primaryContact "Gustavo H. Esteves" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0611, @@ -281062,7 +290572,7 @@ MAINMAST is a fully automated protocol and can generate reliable initial C-alpha sc:url "http://kiharalab.org/mainmast/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0736, @@ -281080,7 +290590,7 @@ MAINMAST is a fully automated protocol and can generate reliable initial C-alpha sc:url "http://kiharalab.org/mainmast_seg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3063, @@ -281097,7 +290607,7 @@ This repository is a fork of the official Mainzelliste project, embodying the fe sc:url "https://github.com/medicalinformatics/MainzellisteSEL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3303, @@ -281110,7 +290620,7 @@ This repository is a fork of the official Mainzelliste project, embodying the fe sc:url "https://github.com/DanielPreciado-Marquez/MainzelHandler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -281131,7 +290641,7 @@ The malaria inhibitor prediction (MAIP) platform is the result of a public-priva sc:url "https://www.ebi.ac.uk/chembl/maip/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0196, @@ -281151,14 +290661,12 @@ The malaria inhibitor prediction (MAIP) platform is the result of a public-priva a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082 ; sc:citation ; @@ -281176,22 +290684,22 @@ The malaria inhibitor prediction (MAIP) platform is the result of a public-priva a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3172, @@ -281214,14 +290722,13 @@ The malaria inhibitor prediction (MAIP) platform is the result of a public-priva a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2798" ; - sc:name "MaizeDB ID" ; - sc:sameAs "http://edamontology.org/data_2798" ] ; + sc:additionalType "http://edamontology.org/data_2798" ; + sc:name "MaizeDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene transcript report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0780 ; sc:citation ; @@ -281235,7 +290742,7 @@ The malaria inhibitor prediction (MAIP) platform is the result of a public-priva sc:url "http://www.maizegdb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0798 ; @@ -281248,7 +290755,7 @@ The malaria inhibitor prediction (MAIP) platform is the result of a public-priva sc:url "http://perl.idmb.tamu.edu/mak.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -281265,14 +290772,14 @@ The malaria inhibitor prediction (MAIP) platform is the result of a public-priva a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -281286,7 +290793,7 @@ The malaria inhibitor prediction (MAIP) platform is the result of a public-priva sc:url "http://www.ms-utils.org/make_random.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -281306,7 +290813,7 @@ The malaria inhibitor prediction (MAIP) platform is the result of a public-priva biotools:primaryContact "James W. MacDonald" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -281327,14 +290834,12 @@ MakeHub is a command line tool for the fully automatic generation of of track da a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1597" ; - sc:name "Codon usage table" ; - sc:sameAs "http://edamontology.org/data_1597" ] ; + sc:additionalType "http://edamontology.org/data_1597" ; + sc:name "Codon usage table" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -281365,14 +290870,12 @@ MakeHub is a command line tool for the fully automatic generation of of track da a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0897" ; - sc:name "Protein property" ; - sc:sameAs "http://edamontology.org/data_0897" ] ; + sc:additionalType "http://edamontology.org/data_0897" ; + sc:name "Protein property" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -281402,14 +290905,17 @@ MakeHub is a command line tool for the fully automatic generation of of track da sc:url "http://emboss.open-bio.org/rel/rel6/apps/makeprotseq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, edam:topic_0654 ; sc:citation , + , "pmcid:PMC2134774", - "pubmed:18025269" ; + "pmcid:PMC3280279", + "pubmed:18025269", + "pubmed:22192575" ; sc:description "Portable and easily configurable genome annotation pipeline. It’s purpose is to allow smaller eukaryotic and prokaryotic genome projects to independently annotate their genomes and to create genome databases." ; sc:featureList edam:operation_0362 ; sc:license "Artistic-2.0" ; @@ -281419,7 +290925,7 @@ MakeHub is a command line tool for the fully automatic generation of of track da sc:url "http://www.yandell-lab.org/software/maker.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219, edam:topic_3168 ; @@ -281433,22 +290939,22 @@ MakeHub is a command line tool for the fully automatic generation of of track da a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3169 ; sc:citation , @@ -281465,30 +290971,30 @@ MakeHub is a command line tool for the fully automatic generation of of track da a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3169 ; sc:citation , @@ -281504,7 +291010,7 @@ MakeHub is a command line tool for the fully automatic generation of of track da biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3335, @@ -281526,7 +291032,7 @@ MAKIPS ACUTE KIDNEY INJURY RISK CALCULATOR.""" ; sc:url "http://www.bioestadistica.net/MAKIPS.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -281543,7 +291049,7 @@ MAKIPS ACUTE KIDNEY INJURY RISK CALCULATOR.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0601, @@ -281563,7 +291069,7 @@ Mal-Prec is a supervised machine learning classification to predict malonylated sc:url "https://github.com/flyinsky6/Mal-Prec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -281577,7 +291083,7 @@ Mal-Prec is a supervised machine learning classification to predict malonylated sc:url "http://dmb.iasi.cnr.it/mala.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -281597,7 +291103,7 @@ The goal of malacoda is to enable Bayesian analysis of high-throughput genomic a sc:url "http://github.com/andrewGhazi/malacoda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3510 ; @@ -281614,14 +291120,13 @@ The goal of malacoda is to enable Bayesian analysis of high-throughput genomic a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0621, @@ -281643,14 +291148,12 @@ The goal of malacoda is to enable Bayesian analysis of high-throughput genomic a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3490" ; - sc:name "Chemical structure sketch" ; - sc:sameAs "http://edamontology.org/data_3490" ] ; + sc:additionalType "http://edamontology.org/data_3490" ; + sc:name "Chemical structure sketch" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0962" ; + sc:name "Small molecule report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -281671,7 +291174,7 @@ The goal of malacoda is to enable Bayesian analysis of high-throughput genomic a biotools:primaryContact "Mark Davies" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3173, @@ -281689,7 +291192,7 @@ The goal of malacoda is to enable Bayesian analysis of high-throughput genomic a "Omer Weissbrod" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -281713,7 +291216,7 @@ The goal of malacoda is to enable Bayesian analysis of high-throughput genomic a sc:url "http://malboost.bi.up.ac.za" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_0121, @@ -281735,7 +291238,7 @@ The goal of malacoda is to enable Bayesian analysis of high-throughput genomic a biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3520 ; sc:citation , @@ -281752,7 +291255,7 @@ The goal of malacoda is to enable Bayesian analysis of high-throughput genomic a biotools:primaryContact "ExPASy helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3056 ; @@ -281770,7 +291273,7 @@ The goal of malacoda is to enable Bayesian analysis of high-throughput genomic a sc:url "https://web.stanford.edu/group/pritchardlab/software/maldsoft_download.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080 ; @@ -281784,7 +291287,7 @@ The goal of malacoda is to enable Bayesian analysis of high-throughput genomic a sc:url "https://github.com/LeeMendelowitz/maligner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3511 ; @@ -281799,7 +291302,7 @@ The goal of malacoda is to enable Bayesian analysis of high-throughput genomic a sc:url "http://www.softsea.com/review/Mallard.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0196, @@ -281817,7 +291320,7 @@ The goal of malacoda is to enable Bayesian analysis of high-throughput genomic a sc:url "http://alan.cs.gsu.edu/NGS/?q=malta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0121, @@ -281836,22 +291339,22 @@ The goal of malacoda is to enable Bayesian analysis of high-throughput genomic a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0781, @@ -281878,7 +291381,7 @@ MALVIRUS is distributed as a Docker image and is publicly available on GitHub an sc:url "https://algolab.github.io/MALVIRUS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -281896,14 +291399,13 @@ MALVIRUS is distributed as a Docker image and is publicly available on GitHub an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1893" ; - sc:name "Locus ID" ; - sc:sameAs "http://edamontology.org/data_1893" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1893" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Locus ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -281919,7 +291421,7 @@ MALVIRUS is distributed as a Docker image and is publicly available on GitHub an sc:url "http://www.biobix.be/mam/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, @@ -281941,7 +291443,7 @@ Internally uses RDKit, numpy, pandas and scikit-learn python packages.""" ; sc:url "https://github.com/CHLoschen/mamba" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workflow" ; sc:applicationSubCategory edam:topic_0659, @@ -281963,18 +291465,17 @@ Internally uses RDKit, numpy, pandas and scikit-learn python packages.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_3736" ; + sc:encodingFormat "http://edamontology.org/format_3706" ; + sc:name "Ecological data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3736" ; - sc:name "Ecological data" ; - sc:sameAs "http://edamontology.org/data_3736" ] ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:name "Data reference" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3174, @@ -281993,7 +291494,7 @@ Internally uses RDKit, numpy, pandas and scikit-learn python packages.""" ; biotools:primaryContact "Bas E. Dutilh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0769, @@ -282012,7 +291513,7 @@ Automated machine learning model building pipeline for microbiome data.""" ; sc:url "https://github.com/yangfenglong/mAML1.0" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -282041,7 +291542,7 @@ Automated machine learning model building pipeline for microbiome data.""" ; biotools:primaryContact "National Institute of Health" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, @@ -282059,7 +291560,7 @@ Automated machine learning model building pipeline for microbiome data.""" ; biotools:primaryContact "deepukv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3382 ; @@ -282074,18 +291575,30 @@ Automated machine learning model building pipeline for microbiome data.""" ; sc:url "https://www.mathworks.com/matlabcentral/fileexchange/50281-mammogram-image-enhancement" ; biotools:primaryContact "Darshan Yogendra" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3168, - edam:topic_3444 ; - sc:citation , - "pubmed:31409076" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'BRIP1 RAD51C RAD51D', 'carriers BRIP1 RAD51C RAD51D', 'BRIP1 RAD51C', 'RAD51C RAD51D' | Recommendations for Preventive Care for Women with Rare Genetic Cause of Breast and Ovarian Cancer | Program mamografického screeningu v České republice | Výzkumný projekt řešený pod odbornou garancí Komise odborníků pro mamární diagnostiku (KOMD). Sběr a analýza dat z Programu mamografického screeningu v České republice. Organizační a edukační materiály o prevenci rakoviny prsu, on-line poradna pro veřejnost | MAMO.CZ : MAMOGRAFICKÝ SCREENING [ISSN 1804-0861]" ; - sc:name "mamo" ; - sc:url "http://www.mamo.cz" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0634, + edam:topic_3175, + edam:topic_3474 ; + sc:citation , + "pubmed:35580841" ; + sc:description "Detecting and genotyping deletions and insertions based on long reads and a deep learning approach." ; + sc:featureList edam:operation_3196, + edam:operation_3227, + edam:operation_3228, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MAMnet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/micahvista/MAMnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3372 ; sc:citation ; @@ -282100,7 +291613,7 @@ Automated machine learning model building pipeline for microbiome data.""" ; sc:url "http://www.cs.tut.fi/sgn/csb/mamodel/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -282114,7 +291627,7 @@ Automated machine learning model building pipeline for microbiome data.""" ; biotools:primaryContact "Mauro Delorenzi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -282128,7 +291641,7 @@ Automated machine learning model building pipeline for microbiome data.""" ; sc:url "http://evol.nhri.org.tw/phenome/index.jsp?platform=mmus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3403 ; @@ -282140,7 +291653,7 @@ Automated machine learning model building pipeline for microbiome data.""" ; sc:url "http://www.MANA-nom.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_0625, @@ -282159,7 +291672,7 @@ Automated machine learning model building pipeline for microbiome data.""" ; biotools:primaryContact "Supinda Bunyavanich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3071 ; @@ -282173,8 +291686,34 @@ Automated machine learning model building pipeline for microbiome data.""" ; sc:url "https://www.mathworks.com/matlabcentral/fileexchange/47871-management-of-accession-numbers-and-sequences" ; biotools:primaryContact "José Luis Ruiz" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_2885, + edam:topic_3305, + edam:topic_3315, + edam:topic_3796 ; + sc:citation ; + sc:description "Visualising microbial population structure by embedding millions of genomes into a low-dimensional representation." ; + sc:featureList edam:operation_0337, + edam:operation_0525, + edam:operation_3891, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Mandrake" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://gtonkinhill.github.io/mandrake-web/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0122, edam:topic_2269 ; @@ -282190,7 +291729,7 @@ Automated machine learning model building pipeline for microbiome data.""" ; biotools:primaryContact "PHANSTIEL LAB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation , @@ -282205,8 +291744,21 @@ Free document hosting provided by Read the Docs.""" ; sc:name "Mango_EDA" ; sc:url "https://bdg-mango.readthedocs.io/en/latest/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "MANGO: Prediction of Protein Function from Manually Annotated proteins based on GO (Gene Ontology)" ; + sc:featureList edam:operation_2945 ; + sc:name "mango : Prediction of Protein Function from Manually Annotated proteins based on GO (Gene Ontology)" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/mango/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2885, @@ -282224,7 +291776,7 @@ Free document hosting provided by Read the Docs.""" ; biotools:primaryContact "Harry Green" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3474, edam:topic_3697 ; @@ -282240,7 +291792,7 @@ Free document hosting provided by Read the Docs.""" ; biotools:primaryContact "Kewei Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0121, @@ -282262,18 +291814,8 @@ A novel manifold learning approach to reveal thefunctional links between gene ne "Windows" ; sc:url "https://github.com/daifengwanglab/ManiNetCluster" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3474, - edam:topic_3489, - edam:topic_3912 ; - sc:citation , - "pubmed:31506941" ; - sc:description "> CORRECT NAME OF TOOL COULD ALSO BE 'manipulatives' | Manipulatives in nursing education | Definition of Manipulatives at Dictionary.com | Manipulatives definition, influencing or attempting to influence the behavior or emotions of others for one’s own purposes: a manipulative boss. See more | Dictionary.com and Thesaurus.com use cookies to enhance {see also: improve, boost} your experience. By continuing without changing your settings, you agree to this use. To provide the best {see also: finest, first-rate} English dictionary and thesaurus on the web for free, we also request your permission for us and our partners to use cookies to personalize ads. To allow this, please click \"Accept Cookies.\" Need more info? Take a bite out of our ∙ Cookie Policy | https://www.appnexus.com/en/company/platform-privacy-policy" ; - sc:name "manipulatives nursing education" ; - sc:url "http://www.dictionary.com/browse/manipulatives" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3321, @@ -282294,8 +291836,31 @@ A novel manifold learning approach to reveal thefunctional links between gene ne sc:url "http://bioconductor.org/packages/release/bioc/html/MANOR.html" ; biotools:primaryContact "Pierre Neuvial" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0209, + edam:topic_0632, + edam:topic_2828, + edam:topic_3474 ; + sc:citation , + "pubmed:34614393" ; + sc:description "A machine learning platform to guide protein-ligand design by anchors and influential distances." ; + sc:featureList edam:operation_2429, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "MANORAA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://manoraa.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3169, @@ -282312,7 +291877,7 @@ A novel manifold learning approach to reveal thefunctional links between gene ne sc:url "http://bcb.dfci.harvard.edu/~gcyuan/MAnorm/MAnorm.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -282336,7 +291901,7 @@ MAnorm2_utils is designed to coordinate with MAnorm2, an R package for different sc:url "https://pypi.org/project/MAnorm2-utils" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3174, @@ -282356,7 +291921,7 @@ MAnorm2_utils is designed to coordinate with MAnorm2, an R package for different "Chris Berthiaume" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal" ; sc:applicationSubCategory edam:topic_0102, @@ -282380,7 +291945,7 @@ Microbiota And pheNotype correlaTion Analysis platform.""" ; sc:url "https://mizuguchilab.org/manta/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3053, @@ -282395,7 +291960,7 @@ Microbiota And pheNotype correlaTion Analysis platform.""" ; sc:url "https://github.com/Illumina/manta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2269 ; @@ -282416,7 +291981,7 @@ Microbiota And pheNotype correlaTion Analysis platform.""" ; biotools:primaryContact "Steinar Thorvaldsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -282435,7 +292000,7 @@ Microbiota And pheNotype correlaTion Analysis platform.""" ; biotools:primaryContact "Brian Steinmeyer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -282457,7 +292022,7 @@ Microbiota And pheNotype correlaTion Analysis platform.""" ; sc:url "https://MANTI.sourceforge.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3299, @@ -282478,7 +292043,7 @@ Microbiota And pheNotype correlaTion Analysis platform.""" ; biotools:primaryContact "Jose Lourenco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3322, @@ -282497,7 +292062,7 @@ Microbiota And pheNotype correlaTion Analysis platform.""" ; sc:url "https://dvitsios.github.io/mantis-ml-predictions" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0160, @@ -282515,16 +292080,36 @@ This tool can be used for protein function annotation, it is a standalone tool t sc:name "Mantis_GA" ; sc:url "https://github.com/PedroMTQ/mantis" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0203, + edam:topic_3170, + edam:topic_3315 ; + sc:citation , + "pubmed:35325039" ; + sc:description "Mantis is a space-efficient data structure that can be used to index thousands of raw- read experiments and facilitate large-scale sequence searches on those experiments. Mantis uses counting quotient filters instead of Bloom filters, enabling rapid index builds and queries, small indexes, and exact results, i.e., no false positives or negatives." ; + sc:featureList edam:operation_0524, + edam:operation_2421, + edam:operation_2422, + edam:operation_3472 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "Mantis" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/splatlab/mantis/tree/mergeMSTs" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_1775 ; sc:citation ; @@ -282540,7 +292125,7 @@ This tool can be used for protein function annotation, it is a standalone tool t biotools:primaryContact "Pedro Queirós" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2259, @@ -282557,7 +292142,7 @@ This tool can be used for protein function annotation, it is a standalone tool t sc:url "http://mantra.tigem.it/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -282584,7 +292169,7 @@ TMAPs of the ChEMBL, non-Lipinski ChEMBL, Human Metabolome, SwissProt up to 50 r sc:url "http://tm.gdb.tools/map4/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0219, @@ -282603,7 +292188,7 @@ TMAPs of the ChEMBL, non-Lipinski ChEMBL, Human Metabolome, SwissProt up to 50 r "Yuan Zhou (for prediction server-related issues)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2269, @@ -282625,7 +292210,7 @@ TMAPs of the ChEMBL, non-Lipinski ChEMBL, Human Metabolome, SwissProt up to 50 r sc:url "https://github.com/FelicienLL/mapbayr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -282642,8 +292227,29 @@ TMAPs of the ChEMBL, non-Lipinski ChEMBL, Human Metabolome, SwissProt up to 50 r "Hákon Jónsson", "Mikkel Schubert" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script", + "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0654, + edam:topic_3168 ; + sc:citation , + "pubmed:35771611" ; + sc:description "A ShinyR package to chart ancient DNA data through space and time." ; + sc:featureList edam:operation_0573, + edam:operation_2939, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "mapDATAge" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/xuefenfei712/mapDATAge" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -282660,7 +292266,7 @@ TMAPs of the ChEMBL, non-Lipinski ChEMBL, Human Metabolome, SwissProt up to 50 r biotools:primaryContact "Hyungwon Choi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -282677,7 +292283,7 @@ TMAPs of the ChEMBL, non-Lipinski ChEMBL, Human Metabolome, SwissProt up to 50 r sc:url "http://mapdisto.free.fr/MapDisto/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -282696,7 +292302,7 @@ MHC-associated peptide discovery platform.""" ; sc:url "https://gitlab.com/iric-proteo/mapdp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -282716,7 +292322,7 @@ MHC-associated peptide discovery platform.""" ; "Ryan N Gutenkunst" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080 ; @@ -282730,7 +292336,7 @@ MHC-associated peptide discovery platform.""" ; sc:url "http://mapgaps.igs.umaryland.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0621, @@ -282754,7 +292360,7 @@ This repository can be used to reproduce source data and results contributing to sc:url "https://github.com/adadiehl/mapGL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3307, @@ -282777,8 +292383,30 @@ This repository can be used to reproduce source data and results contributing to sc:url "http://bitlab-es.com/mapi/" ; biotools:primaryContact "Esteban Pérez-Wohlfeil" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0081, + edam:topic_0128, + edam:topic_0196 ; + sc:citation , + "pmcid:PMC9252833", + "pubmed:35524560" ; + sc:description "MAPIYA contact map server for identification and visualization of molecular interactions in proteins and biological complexes." ; + sc:featureList edam:operation_0272, + edam:operation_0310, + edam:operation_0337, + edam:operation_0478, + edam:operation_2429 ; + sc:isAccessibleForFree true ; + sc:name "Mapiya" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://mapiya.lcbio.pl/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -282796,8 +292424,29 @@ This repository can be used to reproduce source data and results contributing to sc:url "http://bioconductor.org/packages/release/bioc/html/mAPKL.html" ; biotools:primaryContact "Argiris Sakellariou" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0749, + edam:topic_2269 ; + sc:citation , + "pmcid:PMC8686323", + "pubmed:34930265" ; + sc:description "A user friendly web-application for spatio-temporal malaria prevalence mapping." ; + sc:featureList edam:operation_2429, + edam:operation_3359, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:name "Maplaria" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://fhm-chicas-Maplaria.lancs.ac.uk" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -282819,8 +292468,30 @@ This repository can be used to reproduce source data and results contributing to sc:url "http://maple.rx.umaryland.edu/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_0769, + edam:topic_3172 ; + sc:citation , + "pmcid:PMC8796365", + "pubmed:34694386" ; + sc:description "An extensible R toolbox for modular and reproducible metabolomics pipelines." ; + sc:featureList edam:operation_0337, + edam:operation_3557, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "maplet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/krumsieklab/maplet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -282837,7 +292508,7 @@ This repository can be used to reproduce source data and results contributing to biotools:primaryContact "MapMan Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3334, @@ -282854,7 +292525,7 @@ This repository can be used to reproduce source data and results contributing to biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -282875,7 +292546,7 @@ This repository can be used to reproduce source data and results contributing to biotools:primaryContact "Anton Enright" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3120 ; @@ -282893,42 +292564,42 @@ This repository can be used to reproduce source data and results contributing to a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -282946,7 +292617,7 @@ This repository can be used to reproduce source data and results contributing to biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2815, @@ -282963,7 +292634,7 @@ This repository can be used to reproduce source data and results contributing to sc:url "http://genome.ufl.edu/mapperdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -282981,7 +292652,7 @@ Massively Parallel, Portable, and Reproducible Tractography (MaPPeRTrac) is a br sc:url "https://github.com/LLNL/MaPPeRTrac" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, edam:topic_0621, @@ -283001,7 +292672,7 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal sc:url "https://github.com/compomics/MAPPI-DAT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -283017,82 +292688,82 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0637, @@ -283112,7 +292783,7 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -283134,7 +292805,7 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal biotools:primaryContact "Alexandra Shulman-Peleg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053, @@ -283150,22 +292821,22 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0121, @@ -283187,7 +292858,7 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal sc:url "http://arep.med.harvard.edu/MapQuant/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -283206,7 +292877,7 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal biotools:primaryContact "Adi Laurentiu Tarca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -283228,26 +292899,21 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3546" ; - sc:name "Image metadata" ; - sc:sameAs "http://edamontology.org/data_3546" ], + sc:additionalType "http://edamontology.org/data_3424" ; + sc:name "Raw image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ], + sc:additionalType "http://edamontology.org/data_3546" ; + sc:name "Image metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3424" ; - sc:name "Raw image" ; - sc:sameAs "http://edamontology.org/data_3424" ], + sc:additionalType "http://edamontology.org/data_2523" ; + sc:name "Phylogenetic data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2523" ; - sc:name "Phylogenetic data" ; - sc:sameAs "http://edamontology.org/data_2523" ] ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:name "Genotype/phenotype report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2229, @@ -283268,7 +292934,7 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal biotools:primaryContact "Maia Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -283286,22 +292952,22 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -283318,7 +292984,7 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal biotools:primaryContact "Pierre Peterlongo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -283334,7 +293000,7 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal biotools:primaryContact "Christian von Mering" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation "pubmed:20802226" ; @@ -283347,7 +293013,7 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -283369,7 +293035,7 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal "Suhua Shi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation , @@ -283389,7 +293055,7 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation "pubmed:19620971" ; @@ -283403,7 +293069,7 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal biotools:primaryContact "Henry Bigelow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092 ; sc:description "Graphical read alignment viewer. It is specifically designed for the Maq alignment file and allows visualization of the mismatches, base qualities and mapping qualities. Maqview is nothing fancy as Consed or GAP, but just a simple viewer for visualizing what happens in a particular region." ; @@ -283414,8 +293080,33 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal sc:softwareHelp ; sc:url "http://maq.sourceforge.net/maqview.shtml" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_3169, + edam:topic_3170, + edam:topic_3512, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC8973887", + "pubmed:35361110" ; + sc:description "ALGAEFUN with MARACAS, microALGAE FUNctional enrichment tool for MicroAlgae RnA-seq and Chip-seq AnalysiS." ; + sc:featureList edam:operation_2436, + edam:operation_3223, + edam:operation_3431, + edam:operation_3680, + edam:operation_3800 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MARACAS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/fran-romero-campero/MARACAS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -283431,7 +293122,7 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal biotools:primaryContact "Kevin C. O'Kane" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3301, @@ -283456,7 +293147,7 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal biotools:primaryContact "The MMP team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0081, @@ -283475,8 +293166,28 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal sc:url "http://bcf.isb-sib.ch/webmarcoil/webmarcoilINFOC1.html" ; biotools:primaryContact "Mauro Delorenzi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2229, + edam:topic_3170 ; + sc:citation , + "pubmed:35420135" ; + sc:description "A method to discover differentially expressed genes in single-cell RNA-seq data without depending on prior clustering." ; + sc:featureList edam:operation_0313, + edam:operation_2844, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "MarcoPolo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/chanwkimlab/MarcoPolo" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3301, @@ -283500,7 +293211,7 @@ MAPPI-DAT (Mappit microArray Protein Protein Interaction- Data management & Anal sc:url "https://mmp.sfb.uit.no/databases/mardb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3070, @@ -283520,7 +293231,7 @@ MaRe has been developed with scientific application in mind. High-throughput met sc:url "https://github.com/mcapuccini/MaRe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3387 ; @@ -283537,7 +293248,7 @@ MaRe has been developed with scientific application in mind. High-throughput met biotools:primaryContact "Juan Carlos Villaseñor-Derbez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0637, @@ -283561,8 +293272,57 @@ These scripts support the MARES (MARine Eukaryote Species) pipeline used to crea sc:name "MARES" ; sc:url "https://github.com/wpearman1996/MARES_database_pipeline" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3169, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8769703", + "pubmed:34664074" ; + sc:description "Predicting transcription factor binding sites by combining multi-scale bottom-up and top-down attention and residual network." ; + sc:featureList edam:operation_0445, + edam:operation_2575, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MAResNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://csbio.njust.edu.cn/bioinf/maresnet/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0749, + edam:topic_2229, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pubmed:35639499" ; + sc:description "MARGARET is a computational tool for Trajectory Inference i.e. for inferring trajectories underlying biological developmental processes like cell-differentiation." ; + sc:featureList edam:operation_3799, + edam:operation_3890, + edam:operation_3891, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MARGARET" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Zafar-Lab/Margaret" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169 ; sc:citation ; @@ -283577,7 +293337,7 @@ These scripts support the MARES (MARine Eukaryote Species) pipeline used to crea sc:url "http://cistrome.org/MARGE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602 ; @@ -283593,8 +293353,73 @@ These scripts support the MARES (MARine Eukaryote Species) pipeline used to crea sc:url "https://github.com/Monneret/MarginalCausality" ; biotools:primaryContact "Gilles Monneret" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Alignment" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Nucleic acid sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence record" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1364" ; + sc:encodingFormat "http://edamontology.org/format_2072" ; + sc:name "Hidden Markov model" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Script" ; + sc:applicationSubCategory edam:topic_0102 ; + sc:author "Benedict Paten" ; + sc:citation ; + sc:description "The marginAlign package can be used to align reads to a reference genome and call single nucleotide variations (SNVs). It is specifically tailored for Oxford Nanopore Reads." ; + sc:featureList edam:operation_3198, + edam:operation_3227 ; + sc:license "MIT" ; + sc:name "marginAlign" ; + sc:url "https://github.com/benedictpaten/marginAlign" ; + biotools:primaryContact "Benedict Paten", + "Mark Akeson" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0625 ; + sc:description "MarginPhase is a program for simultaneous haplotyping and genotyping." ; + sc:featureList edam:operation_0487, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "marginPhase" ; + sc:url "https://github.com/benedictpaten/marginPhase" ; + biotools:primaryContact "Benedict Paten" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0821, edam:topic_1775 ; @@ -283610,7 +293435,7 @@ These scripts support the MARES (MARine Eukaryote Species) pipeline used to crea biotools:primaryContact "Thomas Abeel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0605, @@ -283632,18 +293457,18 @@ Progress in biomedical science is all about incrementally building off of the wo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -283660,7 +293485,7 @@ Progress in biomedical science is all about incrementally building off of the wo biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3452 ; @@ -283673,7 +293498,7 @@ Progress in biomedical science is all about incrementally building off of the wo sc:url "https://github.com/icthrm/joint-marker-free-alignment" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, @@ -283688,7 +293513,7 @@ MarkerCapsule is a genneral framework for identifying cell types from single cel sc:url "https://github.com/sumantaray/MarkerCapsule" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, @@ -283706,8 +293531,47 @@ MarkerDB is a freely available electronic database that attempts to consolidate sc:name "MarkerDB" ; sc:url "https://markerdb.ca" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0659, + edam:topic_3174, + edam:topic_3293 ; + sc:citation , + "pubmed:35713513" ; + sc:description "Linking metagenome-assembled genomes (MAGs) with 16S rRNA marker genes using paired-end short reads." ; + sc:featureList edam:operation_0310, + edam:operation_3198, + edam:operation_3233 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "MarkerMAG" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/songweizhi/MarkerMAG" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3174, + edam:topic_3360, + edam:topic_3474, + edam:topic_3697 ; + sc:citation , + "pubmed:35662460" ; + sc:description "Marker Feature Identification in Metagenomic Datasets Using Interpretable Machine Learning." ; + sc:featureList edam:operation_2238 ; + sc:isAccessibleForFree true ; + sc:name "MarkerML" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://microbiome.igib.res.in/markerml/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2229, @@ -283729,7 +293593,7 @@ MarkerDB is a freely available electronic database that attempts to consolidate "Kathryn Roeder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0623, @@ -283747,7 +293611,7 @@ MarkerDB is a freely available electronic database that attempts to consolidate biotools:primaryContact "Utkarsh J. Dang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, @@ -283765,7 +293629,7 @@ MarkovHC is an open-source R package designed for explore hierarchical structure sc:url "https://github.com/ZhenyiWangTHU/MarkovHC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -283787,7 +293651,7 @@ MarkovHC is an open-source R package designed for explore hierarchical structure biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_3071 ; @@ -283806,14 +293670,14 @@ MarkovHC is an open-source R package designed for explore hierarchical structure a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "RNA Team Freiburg" ; @@ -283835,7 +293699,7 @@ MarkovHC is an open-source R package designed for explore hierarchical structure "RNA Team Freiburg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3511 ; sc:author ; @@ -283848,7 +293712,7 @@ MarkovHC is an open-source R package designed for explore hierarchical structure sc:url "http://bioinfo.net.in/MARome" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -283864,7 +293728,7 @@ MarkovHC is an open-source R package designed for explore hierarchical structure sc:url "http://marq.dacya.ucm.es" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -283892,7 +293756,7 @@ MarkovHC is an open-source R package designed for explore hierarchical structure sc:url "https://maxmcgrath.shinyapps.io/marr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -283912,7 +293776,7 @@ MarkovHC is an open-source R package designed for explore hierarchical structure biotools:primaryContact "Yee Hwa (Jean) Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -283931,7 +293795,7 @@ MarkovHC is an open-source R package designed for explore hierarchical structure biotools:primaryContact "junbai wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3301, @@ -283955,7 +293819,7 @@ MarkovHC is an open-source R package designed for explore hierarchical structure biotools:primaryContact "The MMP team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053, @@ -283970,7 +293834,7 @@ MarkovHC is an open-source R package designed for explore hierarchical structure biotools:primaryContact "Zhandong Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0736, edam:topic_2814 ; @@ -283985,7 +293849,7 @@ MarkovHC is an open-source R package designed for explore hierarchical structure biotools:primaryContact "Markus Zweckstetter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2640, edam:topic_3304, @@ -284009,7 +293873,7 @@ MARS's novel approach to extracting features from the animals' poses and traject sc:url "https://neuroethology.github.io/MARS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3125, @@ -284031,14 +293895,12 @@ MARS's novel approach to extracting features from the animals' poses and traject a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation , @@ -284068,7 +293930,7 @@ MARS's novel approach to extracting features from the animals' poses and traject sc:url "http://emboss.open-bio.org/rel/rel6/apps/marscan.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0154, @@ -284083,7 +293945,7 @@ MARS's novel approach to extracting features from the animals' poses and traject biotools:primaryContact "Markus J Herrgård" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -284096,11 +293958,11 @@ MARS's novel approach to extracting features from the animals' poses and traject "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/marspred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/marspred/" ; biotools:primaryContact "Bharat Panwar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -284121,7 +293983,7 @@ MARS's novel approach to extracting features from the animals' poses and traject biotools:primaryContact "Hector Climente-Gonzalez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0153, @@ -284141,7 +294003,7 @@ MARS's novel approach to extracting features from the animals' poses and traject sc:url "http://cgmartini.nl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -284162,7 +294024,7 @@ MARS's novel approach to extracting features from the animals' poses and traject biotools:primaryContact "Arek Kasprzyk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -284181,7 +294043,7 @@ MARS's novel approach to extracting features from the animals' poses and traject biotools:primaryContact "Marika Kaakinen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -284195,8 +294057,32 @@ MARS's novel approach to extracting features from the animals' poses and traject sc:softwareHelp ; sc:url "https://github.com/illumina/marvin" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0154, + edam:topic_0621, + edam:topic_0622, + edam:topic_3316 ; + sc:citation , + "pmcid:PMC8501643", + "pubmed:34627149" ; + sc:description "Manual Annotation Studio (MAS) is a web server which assists users in the process of identifying coding regions and determining the function of genes." ; + sc:featureList edam:operation_0362, + edam:operation_2421, + edam:operation_3431, + edam:operation_3778 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MAS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BDRD-Genomics/MAS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -284212,14 +294098,14 @@ MARS's novel approach to extracting features from the animals' poses and traject a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3713" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; @@ -284230,14 +294116,12 @@ MARS's novel approach to extracting features from the animals' poses and traject a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -284255,7 +294139,7 @@ MARS's novel approach to extracting features from the animals' poses and traject sc:url "http://compomics.github.io/projects/mascotdatfile.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0780, @@ -284271,7 +294155,7 @@ MARS's novel approach to extracting features from the animals' poses and traject sc:url "http://gator.masc-proteomics.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -284287,7 +294171,7 @@ MARS's novel approach to extracting features from the animals' poses and traject biotools:primaryContact "Database Administor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -284306,7 +294190,7 @@ MARS's novel approach to extracting features from the animals' poses and traject biotools:primaryContact "Adam M. Phillippy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -284328,7 +294212,7 @@ MASH Explorer is a comprehensive and user-friendly software environment for top- sc:url "http://ge.crb.wisc.edu/MASH_Explorer/index.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -284349,7 +294233,7 @@ MASH Explorer is a comprehensive and user-friendly software environment for top- "Srinivas Aluru" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2840, @@ -284370,7 +294254,7 @@ Accumulating evidence about the interaction between human microbiota and active sc:url "http://www.aiddlab.com/MASI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -284391,7 +294275,7 @@ Accumulating evidence about the interaction between human microbiota and active biotools:primaryContact "Maria Jose Nueda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -284409,14 +294293,12 @@ Accumulating evidence about the interaction between human microbiota and active a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -284447,14 +294329,12 @@ Accumulating evidence about the interaction between human microbiota and active a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -284484,7 +294364,7 @@ Accumulating evidence about the interaction between human microbiota and active sc:url "http://emboss.open-bio.org/rel/rel6/apps/maskambigprot.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -284504,14 +294384,12 @@ Accumulating evidence about the interaction between human microbiota and active a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -284541,7 +294419,7 @@ Accumulating evidence about the interaction between human microbiota and active sc:url "http://emboss.open-bio.org/rel/rel6/apps/maskfeat.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3382, @@ -284558,7 +294436,7 @@ Codes for our Medical & Biological Engineering & Computing paper "MaskMitosis: a sc:url "https://github.com/MeriemSebai/MaskMitosis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3127 ; @@ -284573,14 +294451,12 @@ Codes for our Medical & Biological Engineering & Computing paper "MaskMitosis: a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -284610,7 +294486,7 @@ Codes for our Medical & Biological Engineering & Computing paper "MaskMitosis: a sc:url "http://emboss.open-bio.org/rel/rel6/apps/maskseq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -284627,7 +294503,7 @@ Codes for our Medical & Biological Engineering & Computing paper "MaskMitosis: a biotools:primaryContact "Manuel Holtgrewe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3071, @@ -284643,7 +294519,7 @@ Codes for our Medical & Biological Engineering & Computing paper "MaskMitosis: a sc:url "http://genome.tugraz.at/maspectras/maspectras_description.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3518, @@ -284661,14 +294537,14 @@ Codes for our Medical & Biological Engineering & Computing paper "MaskMitosis: a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -284691,7 +294567,7 @@ Codes for our Medical & Biological Engineering & Computing paper "MaskMitosis: a biotools:primaryContact "Mass++ Users Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0078, @@ -284712,33 +294588,20 @@ Tong Liu and Zheng Wang. MASS: predict the global qualities of individual protei sc:name "MASS-p" ; sc:url "http://dna.cs.miami.edu/MASS/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068 ; - sc:citation ; - sc:description """high-capacity magazines significantly increase fatality counts, and are becoming more prevalent. - -Background: There has been disagreement in the literature regarding whether public mass shootings are becoming more frequent, or more deadly, and whether high-capacity magazine (HCM) weaponry is associated with increased fatalities. Objective: We examined the 85 non-felony- and non-gang-related mass shootings with at least four people shot and killed that occurred in public places between 1995 to 2018 to examine the frequency and deadliness of public mass shootings, as well as the role of HCM weaponry in fatalities. Findings: The per-capita rate of public mass shootings with at least four people killed has not significantly increased since 1995 (Negative Binomial linear regression p=0.20), but public mass shootings with at least six people killed have been increasing by 6.9% per year (p=0.01). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'mass shootings'""" ; - sc:featureList edam:operation_3659, - edam:operation_3799 ; - sc:name "Temporal trends public mass shootings" ; - sc:url "https://mass-shooting-analytics.shinyapps.io/mass_shootings/" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Peptide mass fingerprint" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -284769,30 +294632,30 @@ Background: There has been disagreement in the literature regarding whether publ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_3483" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Spectrum" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3483" ; - sc:name "Spectrum" ; - sc:sameAs "http://edamontology.org/data_3483" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -284812,7 +294675,7 @@ Background: There has been disagreement in the literature regarding whether publ sc:url "http://www.massai.dk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -284833,13 +294696,8 @@ Background: There has been disagreement in the literature regarding whether publ sc:url "http://bioconductor.org/packages/release/bioc/html/MassArray.html" ; biotools:primaryContact "Reid F. Thompson" . - a sc:SoftwareApplication ; - sc:description "CD Genomics offers a rapid and accurate custom SNP validation on the MassARRAY MALDI–TOF instrument provided by Agena Bioscience. Our service includes customized SNP panels design, oligo manufacture and pool balancing, iPLEX chemistry running, analysis of genotyping and delivery of genotype report in Excel format. Our workflows can be designed to accommodate both small and large assay requirements. If you have additional requirements or questions, please feel free to contact us." ; - sc:name "MassARRAY SNP Genotyping" ; - sc:url "https://www.cd-genomics.com/MassARRAY-SNP-Genotyping.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3172 ; sc:author "The MassBank Project" ; @@ -284850,7 +294708,7 @@ Background: There has been disagreement in the literature regarding whether publ sc:url "https://massbank.eu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0780, @@ -284875,14 +294733,14 @@ Background: There has been disagreement in the literature regarding whether publ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -284903,8 +294761,31 @@ Background: There has been disagreement in the literature regarding whether publ sc:softwareHelp ; sc:url "http://pappso.inra.fr/bioinfo/masschroq/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Library" ; + sc:applicationSubCategory edam:topic_0153, + edam:topic_0154, + edam:topic_0602, + edam:topic_3172, + edam:topic_3407 ; + sc:citation , + "pubmed:35944213" ; + sc:description "massdatabase is an R package that operates the online public databases and combines with other tools for streamlined compound annotation and pathway enrichment analysis. massDatabase is a flexible, simple, and powerful tool that can be installed on all platforms, allowing the users to leverage all the online public databases for biological function mining." ; + sc:featureList edam:operation_2409, + edam:operation_3501, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "massDatabase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://massdatabase.tidymass.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3047, @@ -284927,14 +294808,14 @@ The tools are distributed as a Python3 package called masserstein. Basic functio a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -284950,7 +294831,7 @@ The tools are distributed as a Python3 package called masserstein. Basic functio sc:url "http://www.quadtechassociates.com/freeware.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -284966,22 +294847,22 @@ The tools are distributed as a Python3 package called masserstein. Basic functio a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -285001,8 +294882,30 @@ The tools are distributed as a Python3 package called masserstein. Basic functio sc:url "http://bioconductor.org/packages/release/bioc/html/massiR.html" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3068, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC9140214", + "pubmed:35626622" ; + sc:description "A Mann-Whitney-Wilcoxon Gene-Set Test Tool That Gives Meaning to Gene-Set Enrichment Analysis." ; + sc:featureList edam:operation_2436, + edam:operation_3435, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "massiveGST" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://www.massivegenesetstest.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0637, @@ -285023,18 +294926,18 @@ The tools are distributed as a Python3 package called masserstein. Basic functio a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -285057,7 +294960,7 @@ The tools are distributed as a Python3 package called masserstein. Basic functio sc:url "http://www.massmatrix.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0128, @@ -285075,7 +294978,7 @@ The tools are distributed as a Python3 package called masserstein. Basic functio sc:url "http://massnet.kr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3172, @@ -285096,7 +294999,7 @@ The tools are distributed as a Python3 package called masserstein. Basic functio biotools:primaryContact "Julian L. Griffin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, @@ -285118,7 +295021,7 @@ MASSpy - Mass Action Stoichiometric Simulation in Python.""" ; sc:url "https://pypi.org/project/masspy/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -285134,7 +295037,7 @@ MASSpy - Mass Action Stoichiometric Simulation in Python.""" ; sc:url "http://www.uib.no/en/rg/probe/65790/massshiftfinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_2258 ; sc:citation ; @@ -285149,7 +295052,7 @@ MASSpy - Mass Action Stoichiometric Simulation in Python.""" ; sc:url "http://www.chemspider.com/MassSpecAPI.asmx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3303, @@ -285175,7 +295078,7 @@ MASSpy - Mass Action Stoichiometric Simulation in Python.""" ; sc:url "https://ms.biomed.cas.cz/msb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -285196,7 +295099,7 @@ MASSpy - Mass Action Stoichiometric Simulation in Python.""" ; biotools:primaryContact "Pan Du" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -285219,14 +295122,14 @@ MASSpy - Mass Action Stoichiometric Simulation in Python.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -285243,14 +295146,14 @@ MASSpy - Mass Action Stoichiometric Simulation in Python.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -285263,22 +295166,22 @@ MASSpy - Mass Action Stoichiometric Simulation in Python.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0977" ; - sc:name "Tool identifier" ; - sc:sameAs "http://edamontology.org/data_0977" ], + sc:additionalType "http://edamontology.org/data_0977" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Tool identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_0977" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Tool identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0977" ; - sc:name "Tool identifier" ; - sc:sameAs "http://edamontology.org/data_0977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0123, @@ -285303,10 +295206,10 @@ MASSpy - Mass Action Stoichiometric Simulation in Python.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -285319,7 +295222,7 @@ MASSpy - Mass Action Stoichiometric Simulation in Python.""" ; sc:url "http://www.bioprocess.org/massypup" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3071, @@ -285334,7 +295237,7 @@ MASSpy - Mass Action Stoichiometric Simulation in Python.""" ; sc:url "https://github.com/Tarskin/MassyTools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3308 ; @@ -285353,14 +295256,14 @@ MASSpy - Mass Action Stoichiometric Simulation in Python.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -285382,7 +295285,7 @@ MASSpy - Mass Action Stoichiometric Simulation in Python.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:description "masterVar2VCF converts a Complete Genomics masterVar file to a file in VCF v4.1 format." ; @@ -285395,7 +295298,7 @@ MASSpy - Mass Action Stoichiometric Simulation in Python.""" ; sc:url "http://www.completegenomics.com/analysis-tools/toolrepository/masterVarformattoVCFformatfileconverter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -285417,18 +295320,16 @@ MasterPATH is an exploratory network analysis method that employs the shortest p a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ], + sc:additionalType "http://edamontology.org/data_1916" ; + sc:name "Alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0880" ; - sc:name "RNA secondary structure" ; - sc:sameAs "http://edamontology.org/data_0880" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0880" ; + sc:name "RNA secondary structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080 ; @@ -285447,7 +295348,7 @@ MasterPATH is an exploratory network analysis method that employs the shortest p biotools:primaryContact "Stinus Lindgreen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293, @@ -285466,7 +295367,7 @@ MasterPATH is an exploratory network analysis method that employs the shortest p "Yongji Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -285482,7 +295383,7 @@ MasterPATH is an exploratory network analysis method that employs the shortest p "Guillaume Marçais" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3308, @@ -285500,7 +295401,7 @@ MasterPATH is an exploratory network analysis method that employs the shortest p "Xing-Ming Zhao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -285519,7 +295420,7 @@ MasterPATH is an exploratory network analysis method that employs the shortest p biotools:primaryContact "Laboratory of Computational Systems Biotechnology" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -285535,7 +295436,7 @@ MasterPATH is an exploratory network analysis method that employs the shortest p sc:url "https://github.com/bonsai-team/matam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0780, @@ -285552,7 +295453,7 @@ MasterPATH is an exploratory network analysis method that employs the shortest p sc:url "http://matapax.mpimp-golm.mpg.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170 ; @@ -285569,7 +295470,7 @@ MasterPATH is an exploratory network analysis method that employs the shortest p biotools:primaryContact "Kengo Kinoshita" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0099, @@ -285585,7 +295486,7 @@ MasterPATH is an exploratory network analysis method that employs the shortest p biotools:primaryContact "Paul Gottlieb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -285607,7 +295508,7 @@ MasterPATH is an exploratory network analysis method that employs the shortest p biotools:primaryContact "Webmaster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -285630,7 +295531,7 @@ MasterPATH is an exploratory network analysis method that employs the shortest p sc:url "https://seqr.broadinstitute.org/matchmaker/matchbox" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3169, @@ -285650,7 +295551,7 @@ This is the implementation of the algorithm MATCHA for analyzing multi-way chrom sc:url "https://github.com/ma-compbio/MATCHA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3344 ; sc:citation ; @@ -285668,22 +295569,22 @@ To help students find faculty members with mutual research interests, we use thi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -285707,22 +295608,18 @@ To help students find faculty members with mutual research interests, we use thi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -285752,7 +295649,7 @@ To help students find faculty members with mutual research interests, we use thi sc:url "http://emboss.open-bio.org/rel/rel6/apps/matcher.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -285768,23 +295665,22 @@ To help students find faculty members with mutual research interests, we use thi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "EMBOSS", - "Web Production" ; - sc:citation ; + "Job Dispatcher" ; + sc:citation , + ; sc:description "Waterman-Eggert local alignment of two sequences." ; sc:featureList edam:operation_0491, edam:operation_0495 ; - sc:name "matcher (EBI)" ; + sc:name "Matcher (EBI)" ; sc:operatingSystem "Linux", "Mac", "Windows" ; @@ -285793,10 +295689,10 @@ To help students find faculty members with mutual research interests, we use thi ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/psa/emboss_matcher/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -285808,7 +295704,7 @@ To help students find faculty members with mutual research interests, we use thi sc:url "http://genius.embnet.dkfz-heidelberg.de/menu/hobit/embdoc/matcher.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -285826,7 +295722,7 @@ Drug combination therapies have been a viable strategy for the treatment of comp sc:url "https://github.com/tastanlab/matchmaker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -285851,7 +295747,7 @@ Drug combination therapies have been a viable strategy for the treatment of comp sc:url "http://www.matchmakerexchange.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -285873,7 +295769,7 @@ Drug combination therapies have been a viable strategy for the treatment of comp biotools:primaryContact "MatchMiner Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -285890,7 +295786,7 @@ MOTIVATION:Combining gene expression (GE) profiles generated from different plat sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31904810" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3172 ; sc:description "Tool to import, process, clean, and compare mass spectrometry data." ; @@ -285901,7 +295797,7 @@ MOTIVATION:Combining gene expression (GE) profiles generated from different plat sc:url "https://github.com/matchms/matchms" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -285923,7 +295819,7 @@ Each script includes a help menu with further instructions and available options sc:url "https://github.com/mpieva/matchseq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382 ; @@ -285938,7 +295834,7 @@ Each script includes a help menu with further instructions and available options biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3474, @@ -285955,7 +295851,7 @@ The matFR toolbox has already integrated 42 methods. Among them, 12 methods are sc:url "http://github.com/NicoYuCN/matFR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0154, @@ -285973,7 +295869,7 @@ The matFR toolbox has already integrated 42 methods. Among them, 12 methods are biotools:primaryContact "Martin Robert" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -285995,7 +295891,7 @@ Machine learning algorithms have been very successfully applied to extract new a sc:url "https://bonidia.github.io/MathFeature/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2229, @@ -286015,7 +295911,7 @@ Machine learning algorithms have been very successfully applied to extract new a biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:description "MATLAB is a general use development environment and scientific computing language." ; sc:isAccessibleForFree false ; @@ -286027,7 +295923,7 @@ Machine learning algorithms have been very successfully applied to extract new a sc:url "https://www.mathworks.com/products/matlab.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, @@ -286043,7 +295939,7 @@ Machine learning algorithms have been very successfully applied to extract new a biotools:primaryContact "cedric MORIO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -286058,7 +295954,7 @@ Machine learning algorithms have been very successfully applied to extract new a biotools:primaryContact "Javier Barbero Jiménez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; @@ -286078,8 +295974,30 @@ This is a PyTorch implementation of our MATNet for unsupervised video object seg sc:name "MATNet" ; sc:url "https://github.com/tfzhou/MATNet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0194, + edam:topic_0199 ; + sc:citation , + "pmcid:PMC9344837", + "pubmed:35731204" ; + sc:description "matOptimize is a program to rapidly and effectively optimize a mutation-annotated tree (MAT) for parsimony using subtree pruning and regrafting (SPR) moves within a user-defined radius." ; + sc:featureList edam:operation_0323, + edam:operation_0326, + edam:operation_0558, + edam:operation_0567 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "matOptimize" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/yceh/matOptimize-experiments" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3321, edam:topic_3382 ; @@ -286095,7 +296013,7 @@ This is a PyTorch implementation of our MATNet for unsupervised video object seg biotools:primaryContact "Matloob Khushi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -286118,7 +296036,7 @@ This is a PyTorch implementation of our MATNet for unsupervised video object seg biotools:primaryContact "MATRAS Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -286139,22 +296057,20 @@ The extracellular matrix (ECM) is an assembly of hundreds of proteins that struc a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1361" ; - sc:name "Position frequency matrix" ; - sc:sameAs "http://edamontology.org/data_1361" ] ; + sc:additionalType "http://edamontology.org/data_1361" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Position frequency matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1361" ; - sc:name "Position frequency matrix" ; - sc:sameAs "http://edamontology.org/data_1361" ], + sc:additionalType "http://edamontology.org/data_1246" ; + sc:name "Sequence cluster (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1246" ; - sc:name "Sequence cluster (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1246" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1361" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Position frequency matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3125, @@ -286179,7 +296095,7 @@ The extracellular matrix (ECM) is an assembly of hundreds of proteins that struc "Morgane Thomas-Chollier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3053, @@ -286198,7 +296114,7 @@ The extracellular matrix (ECM) is an assembly of hundreds of proteins that struc biotools:primaryContact "Paul Pavlidis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053 ; @@ -286214,7 +296130,7 @@ The extracellular matrix (ECM) is an assembly of hundreds of proteins that struc biotools:primaryContact "Andrey A. Shabalin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:description "MatrixCGH is an extensible software framework for array CGH processing" ; @@ -286228,14 +296144,12 @@ The extracellular matrix (ECM) is an assembly of hundreds of proteins that struc a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2855" ; - sc:name "Distance matrix" ; - sc:sameAs "http://edamontology.org/data_2855" ] ; + sc:additionalType "http://edamontology.org/data_2855" ; + sc:name "Distance matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1235" ; - sc:name "Sequence cluster" ; - sc:sameAs "http://edamontology.org/data_1235" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1235" ; + sc:name "Sequence cluster" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation , @@ -286252,7 +296166,7 @@ The extracellular matrix (ECM) is an assembly of hundreds of proteins that struc biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -286278,7 +296192,7 @@ The extracellular matrix (ECM) is an assembly of hundreds of proteins that struc biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0625, @@ -286296,7 +296210,7 @@ The extracellular matrix (ECM) is an assembly of hundreds of proteins that struc biotools:primaryContact "Shijia Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation "pubmed:19696150" ; @@ -286308,7 +296222,7 @@ The extracellular matrix (ECM) is an assembly of hundreds of proteins that struc sc:url "http://www.uhnresearch.ca/labs/tillier/software.htm#8" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0769, @@ -286327,7 +296241,7 @@ The extracellular matrix (ECM) is an assembly of hundreds of proteins that struc sc:url "https://www.bioconductor.org/packages/release/bioc/html/MatrixQCvis.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3534 ; @@ -286345,7 +296259,7 @@ The extracellular matrix (ECM) is an assembly of hundreds of proteins that struc biotools:primaryContact "Elena Grassi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315 ; sc:description "Matroid intersection algorithm, i.e., find the maximum cardinality intersection of two matroids" ; @@ -286359,7 +296273,7 @@ The extracellular matrix (ECM) is an assembly of hundreds of proteins that struc biotools:primaryContact "Yuan Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3277, @@ -286376,7 +296290,7 @@ An efficient version of MATS that was used to perform the experiments in the art sc:url "https://github.com/timo-verstraeten/mats-experiments" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3448, @@ -286391,7 +296305,7 @@ An efficient version of MATS that was used to perform the experiments in the art biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -286407,7 +296321,7 @@ An efficient version of MATS that was used to perform the experiments in the art sc:url "http://matscholar.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation ; @@ -286422,7 +296336,7 @@ An efficient version of MATS that was used to perform the experiments in the art sc:url "http://matt.cs.tufts.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2814 ; @@ -286437,7 +296351,7 @@ An efficient version of MATS that was used to perform the experiments in the art sc:url "http://bcb.cs.tufts.edu/mattbench/Mattbench.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -286457,7 +296371,7 @@ An efficient version of MATS that was used to perform the experiments in the art biotools:primaryContact "Kylie A. Bemis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659 ; @@ -286473,7 +296387,7 @@ An efficient version of MATS that was used to perform the experiments in the art biotools:primaryContact "Panayiota Poirazi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -286493,8 +296407,25 @@ MAUDE is an R package for finding differences in means of normally distributed ( sc:name "MAUDE" ; sc:url "https://github.com/Carldeboer/MAUDE" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_2815, + edam:topic_3378, + edam:topic_3489 ; + sc:citation , + "pubmed:35778250" ; + sc:description "A Cross-sectional Analysis of the US Food and Drug Administration Manufacturer and User Facility Device Experience Database." ; + sc:featureList edam:operation_2421 ; + sc:isAccessibleForFree true ; + sc:name "MAUDE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.accessdata.fda.gov/scripts/cdrh/cfdocs/cfmaude/search.cfm" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Workflow" ; sc:applicationSubCategory edam:topic_0625, @@ -286515,7 +296446,7 @@ MAUDE is an R package for finding differences in means of normally distributed ( "Leeat Keren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3308 ; @@ -286534,7 +296465,7 @@ MAUDE is an R package for finding differences in means of normally distributed ( biotools:primaryContact "Aaron Darling" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -286550,7 +296481,7 @@ learning genotype-phenotype maps from multiplex assays of variant effect — mav sc:url "https://mavenn.readthedocs.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -286574,7 +296505,7 @@ MaveQuest is an online database for querying literature-curated functional assay sc:url "https://mavequest.varianteffect.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0154, @@ -286590,7 +296521,7 @@ MaveRegistry is a collaborative resource for sharing progress on Multiplexed Ass sc:url "https://registry.varianteffect.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -286607,7 +296538,7 @@ MaveRegistry is a collaborative resource for sharing progress on Multiplexed Ass sc:url "http://pachterlab.github.io/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2259 ; sc:citation ; @@ -286625,7 +296556,7 @@ MaveRegistry is a collaborative resource for sharing progress on Multiplexed Ass sc:url "http://mavisto.ipk-gatersleben.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -286650,7 +296581,7 @@ MaveRegistry is a collaborative resource for sharing progress on Multiplexed Ass "Technical problems: Peter Wad Sackett" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -286666,7 +296597,7 @@ MaveRegistry is a collaborative resource for sharing progress on Multiplexed Ass biotools:primaryContact "Yu-Wei Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814 ; @@ -286683,7 +296614,7 @@ MaveRegistry is a collaborative resource for sharing progress on Multiplexed Ass sc:url "http://www.sbg.bio.ic.ac.uk/~maxcluster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3382 ; sc:description "A problem when recording 3D fluorescent microscopy images is how to properly present these results in 2D. Maximum intensity projections are a popular method to determine the focal plane of each pixel in the image. The problem with this approach, however, is that out-of-focus elements will still be visible, making edges and fine structures difficult to detect. This package aims to resolve this problem." ; @@ -286700,7 +296631,7 @@ MaveRegistry is a collaborative resource for sharing progress on Multiplexed Ass biotools:primaryContact "Jan Sauer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -286718,7 +296649,7 @@ MaveRegistry is a collaborative resource for sharing progress on Multiplexed Ass biotools:primaryContact "Francesca Finotello" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -286735,7 +296666,7 @@ MaveRegistry is a collaborative resource for sharing progress on Multiplexed Ass biotools:primaryContact "Sean B Holden" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080 ; @@ -286750,7 +296681,7 @@ MaveRegistry is a collaborative resource for sharing progress on Multiplexed Ass sc:url "http://ekhidna.biocenter.helsinki.fi/gtg/start" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, @@ -286768,7 +296699,7 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments sc:url "https://github.com/Rassa-Gvm/MaxHiC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3678 ; @@ -286787,7 +296718,7 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments biotools:primaryContact "Systems Proteomics Laboratory, Institute of Information Science, Academia Sinica" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3384 ; sc:citation ; @@ -286802,7 +296733,7 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments biotools:primaryContact "Diana Rodrigues de Pina" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -286822,7 +296753,7 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments biotools:primaryContact "Job" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0622 ; sc:description "Hybrid reference and de novo assembly pipeline" ; @@ -286835,7 +296766,7 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments "Allen Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -286852,7 +296783,7 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments biotools:primaryContact "Dimitri Guala" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2275, @@ -286867,7 +296798,7 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments biotools:primaryContact "Panda PK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2275 ; @@ -286886,18 +296817,18 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -286923,7 +296854,7 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments sc:url "http://www.maxquant.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -286942,7 +296873,7 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments biotools:primaryContact "Tao Zhou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3400, edam:topic_3474 ; @@ -286959,14 +296890,12 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1470" ; - sc:name "C-alpha trace" ; - sc:sameAs "http://edamontology.org/data_1470" ] ; + sc:additionalType "http://edamontology.org/data_1470" ; + sc:name "C-alpha trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2814 ; @@ -286988,7 +296917,7 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments biotools:primaryContact "Web Production" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation "pubmed:20375461" ; @@ -287004,26 +296933,26 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -287040,7 +296969,7 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments sc:url "http://proteomics.ethz.ch/muellelu/web/LukasReiter/Mayu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation ; @@ -287050,7 +296979,7 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments sc:url "https://github.com/zhanxw/MB-GAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0593, @@ -287067,7 +296996,7 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments biotools:primaryContact "Olga Vitek Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0204, @@ -287087,7 +297016,7 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments biotools:primaryContact "Tao Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -287106,7 +297035,7 @@ MaxHiC is a background correcting model for General and Capture Hi-C experiments biotools:primaryContact "Oleg Mayba" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0769, @@ -287123,7 +297052,7 @@ MrBayes Ancestral States with R. Contribute to stevenheritage/MBASR development sc:url "https://github.com/stevenheritage/MBASR/releases" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3174, @@ -287143,7 +297072,7 @@ MrBayes Ancestral States with R. Contribute to stevenheritage/MBASR development "Ying Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -287161,8 +297090,53 @@ MrBayes Ancestral States with R. Contribute to stevenheritage/MBASR development sc:url "http://bioconductor.org/packages/release/bioc/html/MBCB.html" ; biotools:primaryContact "Jeff Allen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2269, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8527798", + "pubmed:34670485" ; + sc:description "Differential expression analysis using a model-based gene clustering algorithm for RNA-seq data." ; + sc:featureList edam:operation_0313, + edam:operation_3223, + edam:operation_3680 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MBCdeg" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/takosa/MBCdeg-paper" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_2269, + edam:topic_3170, + edam:topic_3174, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9011970", + "pubmed:35422001" ; + sc:description "Microbiome data denoising using zero-inflated probabilistic principal components analysis." ; + sc:featureList edam:operation_3435, + edam:operation_3891, + edam:operation_3935, + edam:operation_3960 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "mbDenoise" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/YanyZeng/mbDenoise" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2269 ; @@ -287176,7 +297150,7 @@ MrBayes Ancestral States with R. Contribute to stevenheritage/MBASR development sc:url "https://cran.r-project.org/package=mbend" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0196, @@ -287192,8 +297166,27 @@ Minimizer based sparse de Bruijn Graph constructor. Homopolymer compress input s sc:name "MBG" ; sc:url "https://anaconda.org/bioconda/mbg" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3305, + edam:topic_3344 ; + sc:citation , + "pmcid:PMC8719748", + "pubmed:34972193" ; + sc:description "A Shiny application for teaching model-based geostatistics to population health scientists." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MBGapp" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://olatunjijohnson.shinyapps.io/mbgapp/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622 ; @@ -287205,7 +297198,7 @@ Multiple Bacteria Genome Compressor (MBGC) is a tool for compressing genomes in sc:url "http://github.com/kowallus/mbgc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -287224,7 +297217,7 @@ Multiple Bacteria Genome Compressor (MBGC) is a tool for compressing genomes in biotools:primaryContact "Ikuo Uchiyama" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3071 ; @@ -287237,7 +297230,7 @@ Multiple Bacteria Genome Compressor (MBGC) is a tool for compressing genomes in sc:url "https://github.com/MICommunity/psicquic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -287259,14 +297252,14 @@ Clustering, GeneExpression, RNASeq, Sequencing, SingleCell, Software, Transcript a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -287281,24 +297274,47 @@ Clustering, GeneExpression, RNASeq, Sequencing, SingleCell, Software, Transcript sc:url "https://bioweb.pasteur.fr/packages/pack@ptools@0.99d" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0219, + edam:topic_0634, + edam:topic_3063, + edam:topic_3174, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC8728210", + "pubmed:34718713" ; + sc:description "A curated database for microbes across human body and their associations with health and diseases." ; + sc:featureList edam:operation_0224, + edam:operation_0362, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:name "mBodyMap" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://mbodymap.microbiome.cloud" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -287317,7 +297333,7 @@ Clustering, GeneExpression, RNASeq, Sequencing, SingleCell, Software, Transcript biotools:primaryContact "P.M.V. Rancoita" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0820, @@ -287333,7 +297349,7 @@ Clustering, GeneExpression, RNASeq, Sequencing, SingleCell, Software, Transcript sc:url "http://aias.biol.uoa.gr/MBPpred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3518 ; @@ -287350,7 +297366,7 @@ Clustering, GeneExpression, RNASeq, Sequencing, SingleCell, Software, Transcript sc:url "http://liulab.dfci.harvard.edu/Software/MBR/MBR.htm.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3172 ; @@ -287366,7 +297382,7 @@ Clustering, GeneExpression, RNASeq, Sequencing, SingleCell, Software, Transcript sc:url "http://csbg.cnb.csic.es/mbrole2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2885, @@ -287383,7 +297399,7 @@ Clustering, GeneExpression, RNASeq, Sequencing, SingleCell, Software, Transcript biotools:primaryContact "Kosuke M Teshima" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -287399,7 +297415,7 @@ Clustering, GeneExpression, RNASeq, Sequencing, SingleCell, Software, Transcript sc:url "http://www.isical.ac.in/~bioinfo_miu/MBStar30.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3308 ; @@ -287417,7 +297433,7 @@ Clustering, GeneExpression, RNASeq, Sequencing, SingleCell, Software, Transcript biotools:primaryContact "Yuan-De Tan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3168, @@ -287435,18 +297451,18 @@ Clustering, GeneExpression, RNASeq, Sequencing, SingleCell, Software, Transcript a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -287466,7 +297482,7 @@ Clustering, GeneExpression, RNASeq, Sequencing, SingleCell, Software, Transcript biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3374 ; sc:description "A MATLAB implementation of Monte Carlo simulation for photon migration inside tissue." ; @@ -287483,7 +297499,7 @@ Clustering, GeneExpression, RNASeq, Sequencing, SingleCell, Software, Transcript biotools:primaryContact "Bo Qiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -287498,7 +297514,7 @@ Clustering, GeneExpression, RNASeq, Sequencing, SingleCell, Software, Transcript biotools:primaryContact "Soha Hassoun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053, @@ -287519,7 +297535,7 @@ Clustering, GeneExpression, RNASeq, Sequencing, SingleCell, Software, Transcript biotools:primaryContact "Wade K. Copeland" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -287541,7 +297557,7 @@ Clustering, GeneExpression, RNASeq, Sequencing, SingleCell, Software, Transcript biotools:primaryContact "Robert Bentham" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -287561,8 +297577,71 @@ ADnet: An integration powerful method(MCC-SP) for Identification of Causal Pathw sc:name "MCC-SP" ; sc:url "https://github.com/zhuyuchen95/ADnet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_3336, + edam:topic_3373 ; + sc:citation , + "pubmed:35262678" ; + sc:description "A framework MccDTI for DTIs prediction by integrating heterogeneous information of drug and target. MccDTI adopts multiview network embedding to integrate heterogeneous information." ; + sc:featureList edam:operation_3927 ; + sc:license "Not licensed" ; + sc:name "MccDTI" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/ShangCS/MccDTI" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3315, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9005200", + "pubmed:35415991" ; + sc:description "An open-source software application for Monte Carlo simulations of radiative transport." ; + sc:featureList edam:operation_0337, + edam:operation_2428, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MCCL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + , + ; + sc:url "https://virtualphotonics.org/software-mccl" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_3068, + edam:topic_3318, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC8830788", + "pubmed:35073313" ; + sc:description "A user-friendly tool for next-generation individual-based modeling of microbial consumer-resource systems." ; + sc:featureList edam:operation_3196, + edam:operation_3660, + edam:operation_3891, + edam:operation_3946 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "McComedy" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://git.ufz.de/bogdanow/mccomedy" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0199, @@ -287580,8 +297659,32 @@ ADnet: An integration powerful method(MCC-SP) for Identification of Causal Pathw biotools:primaryContact "Isaac Turner", "Kiran V Garimella" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_0202, + edam:topic_0209, + edam:topic_2640, + edam:topic_3473 ; + sc:citation , + "pmcid:PMC8546929", + "pubmed:34729303" ; + sc:description "A comprehensive curated mitotic catastrophe database for retrieval, protein sequence alignment, and target prediction." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_2489, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "MCDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.combio-lezhang.online/MCDB/index_html/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -287599,7 +297702,7 @@ ADnet: An integration powerful method(MCC-SP) for Identification of Causal Pathw biotools:primaryContact "Asia-Pacific Operations Research Center" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0610, @@ -287615,7 +297718,7 @@ ADnet: An integration powerful method(MCC-SP) for Identification of Causal Pathw sc:url "http://www.stat.duke.edu/research/software/west/MCF/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -287632,7 +297735,7 @@ ADnet: An integration powerful method(MCC-SP) for Identification of Causal Pathw biotools:primaryContact "Junbai Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -287656,7 +297759,7 @@ Using a sequence similarity-based annotation and an ensemble of a support vector sc:url "https://cbb.ut.ac.ir/MCIC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3419, @@ -287676,7 +297779,7 @@ Using a sequence similarity-based annotation and an ensemble of a support vector sc:url "https://sorg-apps.shinyapps.io/tka_koos_mcid/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3316 ; @@ -287690,7 +297793,7 @@ Using a sequence similarity-based annotation and an ensemble of a support vector sc:url "http://micans.org/mcl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation "pubmed:20939868" ; @@ -287702,7 +297805,7 @@ Using a sequence similarity-based annotation and an ensemble of a support vector sc:url "https://sites.google.com/site/mclcaw/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation , @@ -287717,7 +297820,7 @@ Using a sequence similarity-based annotation and an ensemble of a support vector biotools:primaryContact "Daniel Alcaide" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3293 ; @@ -287735,7 +297838,7 @@ Installing the CoupledMCMC package.""" ; sc:url "https://github.com/nicfel/CoupledMCMC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2885, @@ -287752,7 +297855,7 @@ Installing the CoupledMCMC package.""" ; biotools:primaryContact "Ida Moltke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2269, @@ -287767,7 +297870,7 @@ Installing the CoupledMCMC package.""" ; sc:url "http://www.bioinformatics.uottawa.ca/stephane/downloads.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0769, @@ -287785,7 +297888,7 @@ Installing the CoupledMCMC package.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -287805,7 +297908,7 @@ This is the repo for the mcmseq R package, which has the wrapper functions to ru sc:url "https://github.com/stop-pre16/mcmseq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0602, @@ -287825,8 +297928,29 @@ This is the repo for the mcmseq R package, which has the wrapper functions to ru sc:url "https://gitlab.com/pierrejulien.viailly/mcna/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_3474, + edam:topic_3534, + edam:topic_3794 ; + sc:citation , + "pubmed:35471886" ; + sc:description "Multiple convolutional neural networks for RNA-protein binding sites prediction." ; + sc:featureList edam:operation_2464, + edam:operation_3902, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MCNN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/biomg/MCNN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -287850,7 +297974,7 @@ This is the repo for the mcmseq R package, which has the wrapper functions to ru biotools:primaryContact "Gary Bader" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -287873,7 +297997,7 @@ This is the repo for the mcmseq R package, which has the wrapper functions to ru biotools:primaryContact "MCPath Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -287898,7 +298022,7 @@ This is the repo for the mcmseq R package, which has the wrapper functions to ru sc:url "https://github.com/yiwenstat/MCPCA_PopGen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3321, @@ -287915,7 +298039,7 @@ This is the repo for the mcmseq R package, which has the wrapper functions to ru biotools:primaryContact "Alexander Schliep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0623, @@ -287937,7 +298061,7 @@ MCPdb is an online resource for viewing and exploring bacterial microcompartment sc:url "https://mcpdb.mbi.ucla.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0820, @@ -287957,7 +298081,7 @@ MCPdb is an online resource for viewing and exploring bacterial microcompartment sc:url "http://bental.tau.ac.il/MCPep/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -287974,7 +298098,7 @@ Monte Carlo Penalty Selection (MCPeSe) for graphical lasso.""" ; sc:url "https://github.com/markkukuismin/MCPeSe/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -287992,7 +298116,7 @@ Monte Carlo Penalty Selection (MCPeSe) for graphical lasso.""" ; biotools:primaryContact "Chris Burge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099 ; @@ -288008,7 +298132,7 @@ Monte Carlo Penalty Selection (MCPeSe) for graphical lasso.""" ; biotools:primaryContact "Dirk Metzler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -288028,12 +298152,13 @@ Monte Carlo Penalty Selection (MCPeSe) for graphical lasso.""" ; biotools:primaryContact "Marc Johannes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; - sc:applicationSubCategory edam:topic_3053, + sc:applicationSubCategory edam:topic_3173, edam:topic_3295, edam:topic_3518 ; - sc:citation ; + sc:citation , + "pubmed:30753302" ; sc:description "Identification of diferentially methylated regions (DMRs) in predefined regions (promoters, CpG islands...) from the human genome using Illumina's 450K or EPIC microarray data. Provides methods to rank CpG probes based on linear models and includes plotting functions." ; sc:featureList edam:operation_0362, edam:operation_2424, @@ -288044,14 +298169,14 @@ Monte Carlo Penalty Selection (MCPeSe) for graphical lasso.""" ; sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:softwareHelp , - ; - sc:softwareVersion "1.0.1" ; + sc:softwareHelp , + ; + sc:softwareVersion "1.14.0" ; sc:url "http://bioconductor.org/packages/release/bioc/html/mCSEA.html" ; - biotools:primaryContact "Jordi Martorell-Marugán" . + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3344, @@ -288068,7 +298193,7 @@ Monte Carlo Penalty Selection (MCPeSe) for graphical lasso.""" ; biotools:primaryContact "Brian Schmidt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0804, @@ -288088,7 +298213,7 @@ Monte Carlo Penalty Selection (MCPeSe) for graphical lasso.""" ; "Dr. Douglas E. V. Pires" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0130, @@ -288112,7 +298237,7 @@ Douglas E. V. Pires & David B. Ascher.""" ; sc:url "http://biosig.unimelb.edu.au/mcsm_membrane" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0128, @@ -288131,7 +298256,7 @@ Douglas E. V. Pires & David B. Ascher.""" ; "Dr. Douglas E. V. Pires" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -288148,7 +298273,7 @@ Douglas E. V. Pires & David B. Ascher.""" ; sc:url "http://www.bioinformatics.org/mcsnp/wiki/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749, @@ -288169,7 +298294,7 @@ McSplicer is a probabilistic model for estimating splice site usages, rather tha sc:url "https://github.com/canzarlab/McSplicer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -288184,8 +298309,74 @@ McSplicer is a probabilistic model for estimating splice site usages, rather tha sc:url "http://rna.physics.missouri.edu/MCTBI/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_3315, + edam:topic_3382, + edam:topic_3398 ; + sc:citation , + "pmcid:PMC9084406", + "pubmed:35534924" ; + sc:description "Graphics processing unit-accelerated Monte Carlo simulation of polarized light in complex three-dimensional media.'" ; + sc:featureList edam:operation_2426, + edam:operation_2940, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MCX" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "http://mcx.space/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3315, + edam:topic_3316, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8728956", + "pubmed:34989198" ; + sc:description "Modern, scalable, high-performance and in-browser Monte Carlo simulation platform with cloud computing." ; + sc:featureList edam:operation_0337, + edam:operation_2426, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MCX Cloud" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://mcx.space/cloud" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Database portal" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0623, + edam:topic_3174, + edam:topic_3697, + edam:topic_3837 ; + sc:citation , + "pubmed:35080120" ; + sc:description "A curated database for comprehensively profiling methane cycling processes of environmental microbiomes." ; + sc:featureList edam:operation_3460 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MCycDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/qichao1984/MCycDB" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0154, @@ -288201,8 +298392,47 @@ McSplicer is a probabilistic model for estimating splice site usages, rather tha sc:url "https://github.com/RUBi-ZA/MD-TASK" ; biotools:primaryContact "Özlem Tastan Bishop" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_0176, + edam:topic_0602, + edam:topic_3382 ; + sc:citation , + "pubmed:35532115" ; + sc:description "Interactive Data Visualization of Protein Molecular Dynamics." ; + sc:featureList edam:operation_0244, + edam:operation_0249, + edam:operation_0337, + edam:operation_2476 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MD DaVis" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/djmaity/md-davis/tree/v0.4.0" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3301 ; + sc:citation , + "pubmed:35254998" ; + sc:description "A webserver integrating database and prediction tools for microbe-disease associations." ; + sc:license "Not licensed" ; + sc:name "MDADP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://mdadp.leelab2997.cn" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -288224,7 +298454,7 @@ Learning a mixed directed acyclic graph based on both continuous and categorical sc:url "https://CRAN.R-project.org/package=mDAG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176 ; sc:citation ; @@ -288239,7 +298469,7 @@ Learning a mixed directed acyclic graph based on both continuous and categorical biotools:primaryContact "MDAnalysis mainling list" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3374, @@ -288257,7 +298487,7 @@ Learning a mixed directed acyclic graph based on both continuous and categorical biotools:primaryContact "Nicholas Knowlton" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0176, @@ -288287,10 +298517,10 @@ MDBenchmark: Benchmark molecular dynamics simulations¶.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -288311,7 +298541,7 @@ MDBenchmark: Benchmark molecular dynamics simulations¶.""" ; sc:url "https://github.com/ekimb/rust-mdbg/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2814, @@ -288329,7 +298559,7 @@ MDBenchmark: Benchmark molecular dynamics simulations¶.""" ; sc:url "https://gitlab.com/chiemotono/mdcontactcom" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3277 ; @@ -288345,7 +298575,7 @@ MDBenchmark: Benchmark molecular dynamics simulations¶.""" ; sc:url "http://mips.helmholtz-muenchen.de/proj/mdcs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_2259, @@ -288362,7 +298592,7 @@ MDBenchmark: Benchmark molecular dynamics simulations¶.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0736 ; @@ -288379,14 +298609,14 @@ MDBenchmark: Benchmark molecular dynamics simulations¶.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176 ; sc:citation ; @@ -288403,7 +298633,7 @@ MDBenchmark: Benchmark molecular dynamics simulations¶.""" ; biotools:primaryContact "Institute for Research in Biomedicine Barcelona" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0154, @@ -288423,7 +298653,7 @@ MDeePred: Multi-Channel Deep Chemogenomic Modeling of Receptor-Ligand Binding Af sc:url "https://github.com/cansyl/MDeePred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -288443,24 +298673,44 @@ MDEHT is termed as Multivariate Differential Expression by Hotelling’s Test."" sc:name "MDEHT" ; sc:url "https://github.com/amanzju/MDEHT" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0634, + edam:topic_3300, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pubmed:35907779" ; + sc:description "A multi-view dual attention embedding model with cooperative ensemble learning for CircRNA-disease association prediction." ; + sc:featureList edam:operation_0303 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MDGF-MCEC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ABard0/MDGF-MCEC" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Processed microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -288485,7 +298735,7 @@ MDEHT is termed as Multivariate Differential Expression by Hotelling’s Test."" biotools:primaryContact "David Montaner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2259 ; @@ -288500,7 +298750,7 @@ MDEHT is termed as Multivariate Differential Expression by Hotelling’s Test."" biotools:primaryContact "Warwick Systems Biology Centre" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0154, @@ -288522,7 +298772,7 @@ A microRNA-drug Interaction Prediction Approach.""" ; sc:url "https://github.com/AliJam82/MDIPA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056, @@ -288536,7 +298786,7 @@ A microRNA-drug Interaction Prediction Approach.""" ; sc:url "http://people.binf.ku.dk/rasmus/webpage/mdiv.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2275, @@ -288553,7 +298803,7 @@ A microRNA-drug Interaction Prediction Approach.""" ; biotools:primaryContact "Trevor Cickovski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2229 ; @@ -288568,7 +298818,7 @@ A microRNA-drug Interaction Prediction Approach.""" ; sc:url "http://128.4.31.235/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0769, @@ -288588,7 +298838,7 @@ A platform for the analysis of molecular dynamics trajectories using dynamic res sc:url "https://mdmtaskweb.rubi.ru.ac.za/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0605, @@ -288609,7 +298859,7 @@ The Molecular Detection Mapping and Analysis Platform for R (MDMAPR) is an open- sc:url "https://hannerlab.shinyapps.io/MDMAPR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API" ; sc:applicationSubCategory edam:topic_0082 ; @@ -288625,7 +298875,7 @@ The Molecular Detection Mapping and Analysis Platform for R (MDMAPR) is an open- biotools:primaryContact "Institute for Research in Biomedicine Barcelona" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_0209, @@ -288642,7 +298892,7 @@ The Molecular Detection Mapping and Analysis Platform for R (MDMAPR) is an open- biotools:primaryContact "Xiaoqin Zou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -288663,7 +298913,7 @@ MDockPeP server predicts protein-peptide complex structures starting with the pr sc:url "http://zougrouptoolkit.missouri.edu/mdockpep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0637, @@ -288686,7 +298936,7 @@ The Molecular Data Organization for Publication (MDOP) R package has functions t sc:url "https://github.com/rgyoung6/MDOP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3063, @@ -288706,7 +298956,7 @@ The Molecular Data Organization for Publication (MDOP) R package has functions t biotools:primaryContact "Helder Nakaya" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3452 ; @@ -288719,7 +298969,7 @@ The Molecular Data Organization for Publication (MDOP) R package has functions t sc:url "https://github.com/bbbbbbzhou/MDPET" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -288735,7 +298985,7 @@ The Molecular Data Organization for Publication (MDOP) R package has functions t biotools:primaryContact "Shihua Zhang's Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -288756,14 +299006,12 @@ The Molecular Data Organization for Publication (MDOP) R package has functions t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -288774,7 +299022,7 @@ The Molecular Data Organization for Publication (MDOP) R package has functions t sc:url "http://www.bioinfo.ifm.liu.se/services/mdr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -288791,8 +299039,32 @@ The Molecular Data Organization for Publication (MDOP) R package has functions t sc:softwareHelp ; sc:url "http://ritchielab.psu.edu/mdr-downloads" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_3301, + edam:topic_3324, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8678511", + "pubmed:34925273" ; + sc:description "The web-based application for rapid determination of multidrug-resistant Staphylococcus aureus with MALDI-TOF mass spectra" ; + sc:featureList edam:operation_3215, + edam:operation_3482 ; + sc:isAccessibleForFree true ; + sc:name "MDRSA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://fdblab.csie.ncu.edu.tw/mdrsa/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -288810,7 +299082,7 @@ The Molecular Data Organization for Publication (MDOP) R package has functions t biotools:primaryContact "Xiaole Shirley Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3056, @@ -288827,7 +299099,7 @@ The Molecular Data Organization for Publication (MDOP) R package has functions t biotools:primaryContact "Georg K. GerberEmail author" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080 ; @@ -288840,7 +299112,7 @@ The Molecular Data Organization for Publication (MDOP) R package has functions t sc:url "http://salilab.org/mdt/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3168 ; @@ -288859,14 +299131,14 @@ The Molecular Data Organization for Publication (MDOP) R package has functions t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workbench" ; sc:applicationSubCategory edam:topic_0081, @@ -288886,7 +299158,7 @@ The Molecular Data Organization for Publication (MDOP) R package has functions t biotools:primaryContact "Institute for Research in Biomedicine Barcelona" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0632, @@ -288910,8 +299182,26 @@ MEScanner is an intergrated tool for identifying polymorphic mobile element inse sc:name "ME-Scan" ; sc:url "https://github.com/JXing-Lab/ME-SCAN_2018" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_3063, + edam:topic_3305, + edam:topic_3418 ; + sc:citation , + "pmcid:PMC8633963", + "pubmed:34877511" ; + sc:description "A site to help depressed patients select an antidepressant tahat is most likely to help them" ; + sc:isAccessibleForFree true ; + sc:name "Me Again Meds" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://hi.gmu.edu/ad" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3173, @@ -288931,7 +299221,7 @@ MEScanner is an intergrated tool for identifying polymorphic mobile element inse sc:url "https://github.com/julienrichardalbert/MEA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056, @@ -288948,7 +299238,7 @@ MEScanner is an intergrated tool for identifying polymorphic mobile element inse biotools:primaryContact "Prof. Ken Norris" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2259, @@ -288966,26 +299256,26 @@ MEScanner is an intergrated tool for identifying polymorphic mobile element inse a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Processed microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -289007,7 +299297,7 @@ MEScanner is an intergrated tool for identifying polymorphic mobile element inse biotools:primaryContact "Carlos Ruiz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3374 ; sc:description "The process of mean-centering is to calculate the average spectrum of the data set and subtract that" ; @@ -289024,7 +299314,7 @@ MEScanner is an intergrated tool for identifying polymorphic mobile element inse biotools:primaryContact "reza ha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation "pubmed:23605045" ; @@ -289032,8 +299322,31 @@ MEScanner is an intergrated tool for identifying polymorphic mobile element inse sc:name "Meander" ; sc:url "https://sites.google.com/site/meanderviz/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0610, + edam:topic_3293, + edam:topic_3500, + edam:topic_3673 ; + sc:citation , + "pubmed:34941991" ; + sc:description "An efficient seed-free tool for de novo assembling animal mitochondrial genome using whole genome NGS data." ; + sc:featureList edam:operation_0523, + edam:operation_0524, + edam:operation_0525, + edam:operation_3211 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MEANGS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/YanCCscu/meangs" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3569 ; @@ -289050,7 +299363,7 @@ MEScanner is an intergrated tool for identifying polymorphic mobile element inse biotools:primaryContact "Michael P. H. Stumpf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308 ; sc:citation ; @@ -289065,7 +299378,7 @@ MEScanner is an intergrated tool for identifying polymorphic mobile element inse sc:url "http://csbi.ltdk.helsinki.fi/meap/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3068, @@ -289084,7 +299397,7 @@ MEArec: Fast and customizable simulation of extracellular recordings on Multi-El sc:url "https://github.com/alejoe91/MEArec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3304, @@ -289102,7 +299415,7 @@ MEArec: Fast and customizable simulation of extracellular recordings on Multi-El biotools:primaryContact "steed huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -289119,7 +299432,7 @@ MEArec: Fast and customizable simulation of extracellular recordings on Multi-El biotools:primaryContact "Rob Campbell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -289134,7 +299447,7 @@ MEArec: Fast and customizable simulation of extracellular recordings on Multi-El sc:url "https://ohlerlab.mdc-berlin.de/software/PAR-CLIP_motif_analysis_tool_87/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0108, @@ -289157,7 +299470,7 @@ MEArec: Fast and customizable simulation of extracellular recordings on Multi-El sc:url "http://services.bromberglab.org/mebipred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -289177,7 +299490,7 @@ MEArec: Fast and customizable simulation of extracellular recordings on Multi-El "Valerie De Anda Torres" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168, @@ -289199,7 +299512,7 @@ MEArec: Fast and customizable simulation of extracellular recordings on Multi-El "Ying Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -289215,7 +299528,7 @@ MEArec: Fast and customizable simulation of extracellular recordings on Multi-El sc:url "http://www.meccog.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3368, edam:topic_3372 ; @@ -289233,18 +299546,15 @@ MEArec: Fast and customizable simulation of extracellular recordings on Multi-El a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ], + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2291" ; - sc:name "UniProt ID" ; - sc:sameAs "http://edamontology.org/data_2291" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -289271,7 +299581,7 @@ MEArec: Fast and customizable simulation of extracellular recordings on Multi-El sc:url "http://mechnetor.russelllab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0128, @@ -289288,8 +299598,52 @@ MEArec: Fast and customizable simulation of extracellular recordings on Multi-El "Rolf Backofen", "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0821, + edam:topic_3534 ; + sc:citation , + "pubmed:35044164" ; + sc:description "MeCOM is a versatile tool for metalloenzyme active site comparison, which is based on the pharmacophore and α-carbon patterns. It can automatically recognize the active site of the given metalloenzyme, extract active site features, and superimpose metalloenzymes. This tool can be used to find important information to develop new specific metalloenzyme inhibitors, and it will be also useful for protein function prediction, drug repurposing, inhibitor selectivity investigation, and so on." ; + sc:featureList edam:operation_1831, + edam:operation_1834, + edam:operation_3898 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MeCOM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://mecom.ddtmlab.org" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_0780, + edam:topic_3168, + edam:topic_3295, + edam:topic_3674 ; + sc:citation , + "pmcid:PMC9235486", + "pubmed:35758820" ; + sc:description "A new metric to quantitatively characterize DNA methylation heterogeneity across reads and CpG sites." ; + sc:featureList edam:operation_3186, + edam:operation_3207, + edam:operation_3629, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MeConcord" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/WangLabTHU/MeConcord" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2815 ; sc:citation , @@ -289302,7 +299656,7 @@ MEArec: Fast and customizable simulation of extracellular recordings on Multi-El sc:url "https://github.com/LindaNab/mecor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654 ; @@ -289317,7 +299671,7 @@ MEArec: Fast and customizable simulation of extracellular recordings on Multi-El sc:url "http://cqb.pku.edu.cn/ZhuLab/med2_1/MED2.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3303, @@ -289335,7 +299689,7 @@ MED-TMA: Machine learning-based Ensemble model for Diagnosis of TMA.""" ; sc:url "http://hematology.snu.ac.kr/medtma/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0218, @@ -289348,7 +299702,7 @@ MED-TMA: Machine learning-based Ensemble model for Diagnosis of TMA.""" ; sc:url "https://cran.r-project.org/web/packages/medExtractR/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3474 ; @@ -289367,7 +299721,7 @@ MED-TMA: Machine learning-based Ensemble model for Diagnosis of TMA.""" ; biotools:primaryContact "Oxford Nanopore Technologies" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, @@ -289391,7 +299745,7 @@ The focal and broad copy number alterations associated with lineage expansion."" sc:url "https://github.com/KChen-lab/MEDALT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3170, @@ -289411,7 +299765,7 @@ This repository contains the pipeline for generating exonic PSI used in MeDAS."" sc:url "https://das.chenlulab.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3304, @@ -289430,7 +299784,7 @@ MedCalc is a comprehensive statistical software package for biomedical research. sc:url "http://www.medcalc.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0625, @@ -289454,18 +299808,18 @@ MEDEA identifies lineage-specifying transcription factors (TFs) from chromatin a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3554" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -289491,7 +299845,7 @@ MEDEA identifies lineage-specifying transcription factors (TFs) from chromatin a biotools:primaryContact "Pavlo Lutsik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0820, @@ -289508,7 +299862,7 @@ MEDEA identifies lineage-specifying transcription factors (TFs) from chromatin a biotools:primaryContact "Charlotte Deane" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -289530,7 +299884,7 @@ MEDEA identifies lineage-specifying transcription factors (TFs) from chromatin a sc:url "https://www.vumc.org/wei-lab/medi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -289548,7 +299902,7 @@ MEDEA identifies lineage-specifying transcription factors (TFs) from chromatin a biotools:primaryContact "Kei Otsuka" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -289563,7 +299917,7 @@ MEDEA identifies lineage-specifying transcription factors (TFs) from chromatin a biotools:primaryContact "Steve Miller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3303, @@ -289584,7 +299938,7 @@ This is an implementation of BERT-CNN model used in our paper "A General Approac sc:url "https://github.com/chentao1999/MedicalRelationExtraction" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, @@ -289604,7 +299958,7 @@ MEDICASCY is a multi-label based boosted random forest machine learning method t sc:url "http://pwp.gatech.edu/cssb/MEDICASCY" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0084, @@ -289622,7 +299976,7 @@ MEDICASCY is a multi-label based boosted random forest machine learning method t biotools:primaryContact "Roland F Schwarz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -289645,18 +299999,15 @@ MEDICASCY is a multi-label based boosted random forest machine learning method t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1088" ; - sc:name "Article ID" ; - sc:sameAs "http://edamontology.org/data_1088" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_1088" ; + sc:name "Article ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0972" ; - sc:name "Text mining report" ; - sc:sameAs "http://edamontology.org/data_0972" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0972" ; + sc:name "Text mining report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0218 ; @@ -289674,7 +300025,7 @@ MEDICASCY is a multi-label based boosted random forest machine learning method t biotools:primaryContact "Jean Fred Fontaine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218 ; sc:citation "pubmed:19429696" ; @@ -289689,7 +300040,7 @@ MEDICASCY is a multi-label based boosted random forest machine learning method t biotools:primaryContact "Jean Fred Fontaine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0654, @@ -289710,7 +300061,7 @@ MEDICASCY is a multi-label based boosted random forest machine learning method t biotools:primaryContact "Mattia Pelizzola" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -289729,7 +300080,7 @@ MEDICASCY is a multi-label based boosted random forest machine learning method t biotools:primaryContact "MedMiner Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2275, @@ -289752,7 +300103,7 @@ MEDICASCY is a multi-label based boosted random forest machine learning method t sc:url "https://medock.ee.ncku.edu.tw/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -289776,7 +300127,7 @@ MEDICASCY is a multi-label based boosted random forest machine learning method t sc:url "http://www.nipgr.ac.in/MedProDB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3053 ; @@ -289789,12 +300140,58 @@ MEDICASCY is a multi-label based boosted random forest machine learning method t sc:softwareVersion "1.3.6" ; sc:url "http://www.genomesavant.com/p/medsavant/index" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0218, + edam:topic_0621, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8684237", + "pubmed:34922517" ; + sc:description "A portable and customizable annotation tool for biomedical documents." ; + sc:featureList edam:operation_2422, + edam:operation_3280, + edam:operation_3283, + edam:operation_3778 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MedTAG" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/MedTAG/medtag-core" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0218, + edam:topic_3303, + edam:topic_3500 ; + sc:citation , + "pubmed:34983060" ; + sc:description "MedTator is a serverless text annotation tool for corpus development. It is built on HTML5 techniques and many open-source packages, and was designed to be easy-to-use for your annotation task." ; + sc:featureList edam:operation_0337, + edam:operation_2422, + edam:operation_3280, + edam:operation_3778 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "MedTator" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://ohnlp.github.io/MedTator" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0122, @@ -289815,7 +300212,7 @@ MEDICASCY is a multi-label based boosted random forest machine learning method t "Marco Galardini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -289834,7 +300231,7 @@ MEDICASCY is a multi-label based boosted random forest machine learning method t "Tatiana Galochkina" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602 ; @@ -289845,7 +300242,7 @@ MEDICASCY is a multi-label based boosted random forest machine learning method t sc:url "https://sites.google.com/site/medusa3visualization/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -289863,7 +300260,7 @@ MEDICASCY is a multi-label based boosted random forest machine learning method t biotools:primaryContact "Christina Leslie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, @@ -289880,7 +300277,7 @@ MEDICASCY is a multi-label based boosted random forest machine learning method t biotools:primaryContact "Erik Shonhammer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_3172, @@ -289908,7 +300305,7 @@ Free document hosting provided by Read the Docs.""" ; sc:url "https://github.com/opencobra/Medusa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0602, @@ -289926,7 +300323,7 @@ Free document hosting provided by Read the Docs.""" ; biotools:primaryContact "James Komianos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2640, @@ -289941,8 +300338,27 @@ Free document hosting provided by Read the Docs.""" ; sc:url "http://compbio.med.harvard.edu/Meerkat/" ; biotools:primaryContact "Lixing Yang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3360, + edam:topic_3379, + edam:topic_3384 ; + sc:citation , + "pmcid:PMC8883304", + "pubmed:35237353" ; + sc:description "Application of the Meet-URO score to metastatic renal cell carcinoma patients treated with second- and third-line cabozantinib." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Meet-URO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://proviso.shinyapps.io/Meet-URO15_score/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0621, @@ -289964,7 +300380,7 @@ MEFISTO provides an unsupervised approach to integrate multi-modal data with con sc:url "https://biofam.github.io/MOFA2/MEFISTO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3168, @@ -289984,7 +300400,7 @@ MEFISTO provides an unsupervised approach to integrate multi-modal data with con biotools:primaryContact "Hardik I. Parikh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -290006,17 +300422,44 @@ Medicinal Fungi Secondary Metabolite And Therapeutics (MeFSAT) is a curated data sc:url "https://cb.imsc.res.in/mefsat/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, edam:topic_3053, edam:topic_3056, edam:topic_3293 ; - sc:citation "pubmed:11751241", + sc:citation , + , + , + , + , + , + , + , + , + , + , + , + "pmcid:PMC2562624", + "pmcid:PMC3203626", + "pmcid:PMC3467750", + "pmcid:PMC3840312", + "pmcid:PMC5967553", + "pmcid:PMC7086165", + "pmcid:PMC8210823", + "pmcid:PMC8233496", + "pubmed:11751241", "pubmed:15260895", "pubmed:17488738", + "pubmed:18417537", "pubmed:21546353", + "pubmed:22923298", + "pubmed:24132122", + "pubmed:27004904", + "pubmed:29722887", + "pubmed:31904846", + "pubmed:33892491", "pubmed:8019868" ; sc:description "Software package for phylogenetic analysis with a graphical user interface. It allows viewing and editing of the aligned input sequence data and provides many tools for phylogenetic and statistical analysis of the alignments." ; sc:featureList edam:operation_0540, @@ -290032,8 +300475,31 @@ Medicinal Fungi Secondary Metabolite And Therapeutics (MeFSAT) is a curated data sc:softwareHelp ; sc:url "http://www.megasoftware.net/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3174, + edam:topic_3474, + edam:topic_3577, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9143510", + "pubmed:35629336" ; + sc:description "Deep Learning for Rapid and Accurate Disease Status Prediction of Metagenomic Samples." ; + sc:featureList edam:operation_3435, + edam:operation_3460, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MegaD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BioHPC/MegaD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -290054,7 +300520,7 @@ This package provides an R interface to Megadepth by Christopher Wilks available sc:url "https://github.com/ChristopherWilks/megadepth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275 ; @@ -290068,7 +300534,7 @@ This package provides an R interface to Megadepth by Christopher Wilks available sc:url "http://www.bi.cs.titech.ac.jp/megadock/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -290084,7 +300550,7 @@ This package provides an R interface to Megadepth by Christopher Wilks available "Yutaka Akiyama" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0121, @@ -290105,7 +300571,7 @@ Calculate semantic distance for sets of Gene Ontology terms.""" ; sc:url "https://megago.ugent.be" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0610, @@ -290122,7 +300588,7 @@ Calculate semantic distance for sets of Gene Ontology terms.""" ; biotools:primaryContact "L3 Bioinformatics Limited" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -290139,7 +300605,7 @@ Scripts to run all analyses and make all figures in the paper: MegaLMM: Mega-sca sc:url "https://github.com/deruncie/MegaLMM_analyses" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2533, edam:topic_3168, @@ -290156,18 +300622,15 @@ Scripts to run all analyses and make all figures in the paper: MegaLMM: Mega-sca a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -290198,7 +300661,7 @@ Scripts to run all analyses and make all figures in the paper: MegaLMM: Mega-sca sc:url "http://emboss.open-bio.org/rel/rel6/apps/megamerger.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -290213,7 +300676,7 @@ Scripts to run all analyses and make all figures in the paper: MegaLMM: Mega-sca sc:url "http://genius.embnet.dkfz-heidelberg.de/menu/hobit/embdoc/megamerger.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:17255551" ; @@ -290229,7 +300692,7 @@ Scripts to run all analyses and make all figures in the paper: MegaLMM: Mega-sca biotools:primaryContact "Huson DH" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation ; @@ -290246,7 +300709,7 @@ Scripts to run all analyses and make all figures in the paper: MegaLMM: Mega-sca sc:url "http://ab.inf.uni-tuebingen.de/software/megan6/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0780, @@ -290266,7 +300729,7 @@ Scripts to run all analyses and make all figures in the paper: MegaLMM: Mega-sca sc:url "https://megante.dna.affrc.go.jp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168, @@ -290286,7 +300749,7 @@ Next-generation sequencing (NGS) enables unbiased detection of pathogens by mapp sc:url "https://sourceforge.net/projects/megapath" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0625, @@ -290309,8 +300772,35 @@ Machine learning has been utilized in many applications from biomedical imaging sc:name "MegaR" ; sc:url "https://github.com/BioHPC/MegaR" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_2269, + edam:topic_2815 ; + sc:citation , + "pmcid:PMC9315191", + "pubmed:35668699" ; + sc:description "A parametric class of general hazard models for clustered survival data." ; + sc:featureList edam:operation_3432, + edam:operation_3659, + edam:operation_3664 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MEGH" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/FJRubio67/MEGH" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "ur company provides aeps cash withdrawal service to the best of our abilities. It is easy to start serving customers once you download the mego app, register & begin using it." ; + sc:name "Mego Pay" ; + sc:url "https://mymego.in/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3174, @@ -290328,7 +300818,7 @@ Machine learning has been utilized in many applications from biomedical imaging biotools:primaryContact "Johan Bengtsson-Palme" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3308, @@ -290343,7 +300833,7 @@ Machine learning has been utilized in many applications from biomedical imaging sc:url "http://megu.iab.keio.ac.jp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2258, @@ -290363,7 +300853,7 @@ Machine learning has been utilized in many applications from biomedical imaging "Julio Saez-Rodríguez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2259, @@ -290382,7 +300872,7 @@ Machine learning has been utilized in many applications from biomedical imaging biotools:primaryContact "Jose Egea" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -290405,7 +300895,7 @@ Machine learning has been utilized in many applications from biomedical imaging sc:url "https://mcg.ustc.edu.cn/bsc/meiosis/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -290432,7 +300922,7 @@ To get started using MEIRLOP, see our documentation, which gives you a quick ide sc:url "https://github.com/npdeloss/meirlop" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -290453,10 +300943,9 @@ To get started using MEIRLOP, see our documentation, which gives you a quick ide a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0942" ; - sc:name "2D PAGE image" ; - sc:sameAs "http://edamontology.org/data_0942" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0942" ; + sc:name "2D PAGE image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3520 ; sc:citation ; @@ -290472,7 +300961,7 @@ To get started using MEIRLOP, see our documentation, which gives you a quick ide sc:url "http://world-2dpage.expasy.org/melanie/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218 ; sc:author "Andrés Cañada", @@ -290494,7 +300983,7 @@ To get started using MEIRLOP, see our documentation, which gives you a quick ide "Martin Krallinger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -290515,7 +301004,7 @@ The Multi-centre Epilepsy Lesion Detection (MELD) project is an international co sc:url "https://meldproject.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -290539,10 +301028,10 @@ The Multi-centre Epilepsy Lesion Detection (MELD) project is an international co a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3172 ; sc:citation ; @@ -290565,7 +301054,7 @@ The Multi-centre Epilepsy Lesion Detection (MELD) project is an international co sc:url "http://meltdb.cebitec.uni-bielefeld.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0097, @@ -290583,7 +301072,7 @@ The Multi-centre Epilepsy Lesion Detection (MELD) project is an international co biotools:primaryContact "Nicolas Le Novère" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3068, @@ -290602,18 +301091,18 @@ MeltingPlot is a tool for strains clustering/typing and epidemiological investig a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ], + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_3326" ; + sc:name "Gene expression profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3768" ; - sc:name "Clustered gene expression profiles" ; - sc:sameAs "http://edamontology.org/data_3768" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3768" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Clustered gene expression profiles" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -290639,7 +301128,7 @@ MeltingPlot is a tool for strains clustering/typing and epidemiological investig "Raivo Kolde" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0820, @@ -290657,8 +301146,28 @@ MeltingPlot is a tool for strains clustering/typing and epidemiological investig biotools:primaryContact "Man-Wai Mak", "Shibiao Wan" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0153, + edam:topic_0820, + edam:topic_3318, + edam:topic_3382 ; + sc:citation ; + sc:description "Modeling Membrane Mechanochemical Dynamics in 3D using Discrete Differential Geometry." ; + sc:featureList edam:operation_2476, + edam:operation_3454, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MPL-2.0" ; + sc:name "Mem3DG" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/RangamaniLabUCSD/Mem3DG" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:citation , , @@ -290669,7 +301178,7 @@ MeltingPlot is a tool for strains clustering/typing and epidemiological investig sc:url "http://memblob.hegelab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_1317, @@ -290690,7 +301199,7 @@ MeltingPlot is a tool for strains clustering/typing and epidemiological investig sc:url "http://sourceforge.net/projects/membplugin/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0736, edam:topic_0820, @@ -290707,7 +301216,7 @@ MeltingPlot is a tool for strains clustering/typing and epidemiological investig biotools:primaryContact "Hong Bin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0820, @@ -290724,7 +301233,7 @@ MeltingPlot is a tool for strains clustering/typing and epidemiological investig biotools:primaryContact "The PhET Project" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0153, @@ -290745,7 +301254,7 @@ MeltingPlot is a tool for strains clustering/typing and epidemiological investig sc:url "http://bioinfo3d.cs.tau.ac.il/Memdock/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3510, @@ -290764,38 +301273,38 @@ MeltingPlot is a tool for strains clustering/typing and epidemiological investig a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -290820,62 +301329,62 @@ MeltingPlot is a tool for strains clustering/typing and epidemiological investig a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -290899,538 +301408,508 @@ MeltingPlot is a tool for strains clustering/typing and epidemiological investig a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1197" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2854" ; - sc:name "Position-specific scoring matrix" ; - sc:sameAs "http://edamontology.org/data_2854" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1962" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2854" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Position-specific scoring matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_2070" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_2070" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1361" ; - sc:name "Position frequency matrix" ; - sc:sameAs "http://edamontology.org/data_1361" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1982" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1982" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2534" ; - sc:name "Sequence attribute" ; - sc:sameAs "http://edamontology.org/data_2534" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_2854" ; + sc:name "Position-specific scoring matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2070" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2854" ; - sc:name "Position-specific scoring matrix" ; - sc:sameAs "http://edamontology.org/data_2854" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2534" ; + sc:name "Sequence attribute" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_0582" ; + sc:encodingFormat "http://edamontology.org/format_2196" ; + sc:name "Ontology" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_1361" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Position frequency matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2854" ; - sc:name "Position-specific scoring matrix" ; - sc:sameAs "http://edamontology.org/data_2854" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1367" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1097" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence accession (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1982" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1097" ; - sc:name "Sequence accession (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1097" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_2854" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Position-specific scoring matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_2854" ; + sc:name "Position-specific scoring matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_2854" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Position-specific scoring matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_0582" ; + sc:name "Ontology" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2854" ; - sc:name "Position-specific scoring matrix" ; - sc:sameAs "http://edamontology.org/data_2854" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2854" ; - sc:name "Position-specific scoring matrix" ; - sc:sameAs "http://edamontology.org/data_2854" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2854" ; - sc:name "Position-specific scoring matrix" ; - sc:sameAs "http://edamontology.org/data_2854" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1940" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1982" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1982" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_2854" ; + sc:encodingFormat "http://edamontology.org/format_3597" ; + sc:name "Position-specific scoring matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ], + sc:additionalType "http://edamontology.org/data_0582" ; + sc:name "Ontology" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1982" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1982" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Statistical estimate score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1997" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2523" ; - sc:name "Phylogenetic data" ; - sc:sameAs "http://edamontology.org/data_2523" ], + sc:additionalType "http://edamontology.org/data_0582" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Ontology" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_0951" ; + sc:name "Statistical estimate score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1022" ; - sc:name "Sequence feature label" ; - sc:sameAs "http://edamontology.org/data_1022" ], + sc:additionalType "http://edamontology.org/data_0951" ; + sc:name "Statistical estimate score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0951" ; + sc:name "Statistical estimate score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ], + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2523" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Phylogenetic data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_2854" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Position-specific scoring matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0869" ; - sc:name "Sequence-profile alignment" ; - sc:sameAs "http://edamontology.org/data_0869" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2854" ; - sc:name "Position-specific scoring matrix" ; - sc:sameAs "http://edamontology.org/data_2854" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1962" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_0869" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence-profile alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1022" ; + sc:name "Sequence feature label" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1360" ; + sc:name "Sequence motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite", "Web application" ; @@ -291489,7 +301968,7 @@ MeltingPlot is a tool for strains clustering/typing and epidemiological investig biotools:primaryContact "MEME Suite Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -291516,7 +301995,7 @@ motif matching, comparison, and de novo discovery using the MEME Suite.""" ; biotools:primaryContact "Daniel J. McKay" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0820, @@ -291535,14 +302014,13 @@ motif matching, comparison, and de novo discovery using the MEME Suite.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3520 ; sc:author "Véronique Hourdel" ; @@ -291569,14 +302047,14 @@ motif matching, comparison, and de novo discovery using the MEME Suite.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0621, @@ -291596,7 +302074,7 @@ motif matching, comparison, and de novo discovery using the MEME Suite.""" ; "Pier Luigi Martelli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0153, @@ -291618,7 +302096,7 @@ Membrane-binding Molecular Recognition Features.""" ; sc:url "https://memmorf.hegelab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3295, edam:topic_3474, @@ -291638,8 +302116,22 @@ Membrane-binding Molecular Recognition Features.""" ; biotools:primaryContact "Eva-Maria Geissen", "Nicole E. Radde" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3172 ; + sc:citation ; + sc:description "Ms2 basEd saMple vectOrization (MEMO) is a method allowing a Retention Time (RT) agnostic alignment of metabolomics samples using the fragmentation spectra (MS2) of their consituents. The occurence of MS2 peaks and neutral losses (to the precursor) in each sample is counted and used to generate an MS2 fingerprint of the sample. These fingerprints can in a second stage be aligned to compare different samples." ; + sc:isAccessibleForFree true ; + sc:name "MEMO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "0.1.4" ; + sc:url "https://github.com/mandelbrot-project/memo" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -291655,7 +302147,7 @@ Membrane-binding Molecular Recognition Features.""" ; sc:url "http://cbio.mskcc.org/tools/memo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -291677,26 +302169,8 @@ Membrane-binding Molecular Recognition Features.""" ; sc:url "http://opig.stats.ox.ac.uk/webapps/memoir" ; biotools:primaryContact "Oxford Protein Informatics Group" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_3474, - edam:topic_3557 ; - sc:citation , - "pmcid:PMC6882172", - "pubmed:31775612" ; - sc:description """Attention mechanism enhanced LSTM with residual architecture and its application for protein-protein interaction residue pairs prediction. - -BACKGROUND:Recurrent neural network(RNN) is a good way to process sequential data, but the capability of RNN to compute long sequence data is inefficient. As a variant of RNN, long short term memory(LSTM) solved the problem in some extent. Here we improved LSTM for big data application in protein-protein interaction interface residue pairs prediction based on the following two reasons. On the one hand, there are some deficiencies in LSTM, such as shallow layers, gradient explosion or vanishing, etc. With a dramatic data increasing, the imbalance between algorithm innovation and big data processing has been more serious and urgent. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'LSTM' (bio.tools/LSTM)""" ; - sc:featureList edam:operation_0272, - edam:operation_2464, - edam:operation_2492 ; - sc:name "memory(LSTM" ; - sc:url "https://github.com/Jiale-Liu/LSTM" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -291712,8 +302186,17 @@ BACKGROUND:Recurrent neural network(RNN) is a good way to process sequential dat sc:url "http://icbi.at/software/memosys/memosys.shtml" ; biotools:primaryContact "Zlatko Trajanoski (Director)" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "Testing of metabolic models" ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "memote" ; + sc:softwareHelp ; + sc:url "https://github.com/opencobra/memote" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0166, @@ -291736,14 +302219,14 @@ BACKGROUND:Recurrent neural network(RNN) is a good way to process sequential dat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0621, @@ -291766,7 +302249,7 @@ BACKGROUND:Recurrent neural network(RNN) is a good way to process sequential dat "Pier Luigi Martelli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -291785,7 +302268,7 @@ Memrgc is a tool for compression genome sequence. The program is written in C++1 sc:url "https://github.com/yuansliu/memRGC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2814 ; @@ -291802,7 +302285,7 @@ Memrgc is a tool for compression genome sequence. The program is written in C++1 sc:url "http://bioinfadmin.cs.ucl.ac.uk/downloads/memsat-svm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0820, @@ -291819,7 +302302,7 @@ Memrgc is a tool for compression genome sequence. The program is written in C++1 biotools:primaryContact "Hong Bin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_2269, @@ -291836,7 +302319,7 @@ Memrgc is a tool for compression genome sequence. The program is written in C++1 sc:url "http://software.genetics.ucla.edu/mendel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269, @@ -291849,20 +302332,34 @@ Memrgc is a tool for compression genome sequence. The program is written in C++1 sc:softwareHelp ; sc:url "https://code.google.com/p/mendel-gpu/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:description "Mendelgen is a plasmid editing app that features cloning, sequencing alignment, vaccine design tools, and more." ; + sc:featureList edam:operation_0361, + edam:operation_0491, + edam:operation_0492, + edam:operation_0560, + edam:operation_0575, + edam:operation_0578, + edam:operation_2429 ; + sc:isAccessibleForFree true ; + sc:name "Mendelgen" ; + sc:softwareHelp ; + sc:url "https://mendelgen.com" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3325 ; @@ -291882,7 +302379,7 @@ Memrgc is a tool for compression genome sequence. The program is written in C++1 "Filip Van Nieuwerburgh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -291902,14 +302399,14 @@ Memrgc is a tool for compression genome sequence. The program is written in C++1 a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1775, edam:topic_2885, @@ -291929,7 +302426,7 @@ Memrgc is a tool for compression genome sequence. The program is written in C++1 biotools:primaryContact "Sérgio D. J. Pena" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -291949,7 +302446,7 @@ A new tool that blends your everyday work apps into one. It's the all-in-one wor sc:url "https://mendelvar.mrcieu.ac.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3301, @@ -291971,7 +302468,7 @@ A collection of open-access, curated databases that integrate population sequenc sc:url "https://pubmlst.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0602, @@ -291993,7 +302490,7 @@ A collection of open-access, curated databases that integrate population sequenc "Sylvain Prigent" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2640, @@ -292015,8 +302512,27 @@ Individual-patient prediction of meningioma malignancy and survival.""" ; sc:name "meningioma" ; sc:url "http://www.meningioma.app" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0097, + edam:topic_3292 ; + sc:citation , + "pmcid:PMC8711798", + "pubmed:34634538" ; + sc:description "Multi-start Evolutionary Nonlinear OpTimizeR (MENOTR)." ; + sc:featureList edam:operation_0455, + edam:operation_0475 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MENOTR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ZachIngram/2021-MENOTR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0154, @@ -292036,18 +302552,18 @@ Individual-patient prediction of meningioma malignancy and survival.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3210" ; - sc:name "Genome index" ; - sc:sameAs "http://edamontology.org/data_3210" ], + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3210" ; + sc:encodingFormat "http://edamontology.org/format_3590" ; + sc:name "Genome index" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3492" ; - sc:name "Nucleic acid signature" ; - sc:sameAs "http://edamontology.org/data_3492" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3492" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Nucleic acid signature" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation ; @@ -292063,10 +302579,10 @@ Individual-patient prediction of meningioma malignancy and survival.""" ; a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_3158" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3325 ; @@ -292091,7 +302607,7 @@ Individual-patient prediction of meningioma malignancy and survival.""" ; "Luana Licata" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3071 ; @@ -292107,7 +302623,7 @@ Individual-patient prediction of meningioma malignancy and survival.""" ; biotools:primaryContact "greenify" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_2229, @@ -292129,7 +302645,7 @@ MEPHAS is a shiny-based statistical software that was developed to support stati sc:url "https://alain003.phs.osaka-u.ac.jp/mephas/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, @@ -292148,7 +302664,7 @@ MEPHAS is a shiny-based statistical software that was developed to support stati "Paulino G´omez-Puertas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3572, @@ -292164,7 +302680,7 @@ MEPHAS is a shiny-based statistical software that was developed to support stati sc:url "http://life.tongji.edu.cn/meqa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation "pubmed:21876754" ; @@ -292177,7 +302693,7 @@ MEPHAS is a shiny-based statistical software that was developed to support stati biotools:primaryContact "Eugene Goltsman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3295, @@ -292192,7 +302708,7 @@ MEPHAS is a shiny-based statistical software that was developed to support stati sc:url "http://www.icbi.at/software/meRanTK/merantk.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -292210,7 +302726,7 @@ MEPHAS is a shiny-based statistical software that was developed to support stati biotools:primaryContact "Yoav Shaul" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654 ; @@ -292224,7 +302740,7 @@ MEPHAS is a shiny-based statistical software that was developed to support stati sc:url "http://www.biostat.wisc.edu/~cdewey/mercator/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0780, @@ -292242,7 +302758,7 @@ MEPHAS is a shiny-based statistical software that was developed to support stati biotools:primaryContact "MARC LOHSE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3303 ; @@ -292255,7 +302771,7 @@ MEPHAS is a shiny-based statistical software that was developed to support stati sc:url "https://cran.r-project.org/web/packages/Mercator/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -292273,7 +302789,7 @@ MEPHAS is a shiny-based statistical software that was developed to support stati sc:url "https://github.com/arangrhie/merfin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -292293,7 +302809,7 @@ MEPHAS is a shiny-based statistical software that was developed to support stati biotools:primaryContact "Xiaogang Zhong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite", "Web application", @@ -292319,7 +302835,7 @@ MEPHAS is a shiny-based statistical software that was developed to support stati biotools:primaryContact "Douglas Arneson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3174, @@ -292340,26 +302856,21 @@ MEPHAS is a shiny-based statistical software that was developed to support stati a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ], + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -292391,58 +302902,58 @@ MEPHAS is a shiny-based statistical software that was developed to support stati a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3365 ; @@ -292461,58 +302972,58 @@ MEPHAS is a shiny-based statistical software that was developed to support stati a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3071 ; @@ -292531,38 +303042,38 @@ MEPHAS is a shiny-based statistical software that was developed to support stati a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168 ; @@ -292581,7 +303092,7 @@ MEPHAS is a shiny-based statistical software that was developed to support stati biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0202, edam:topic_2640, @@ -292602,7 +303113,7 @@ MEPHAS is a shiny-based statistical software that was developed to support stati sc:url "https://github.com/unisb-bioinf/MERIDA.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -292619,8 +303130,31 @@ MEPHAS is a shiny-based statistical software that was developed to support stati sc:url "http://software.big.ac.cn/MeRIP-PF.html" ; biotools:primaryContact "YU Jun" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0769, + edam:topic_3169, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pubmed:35022687" ; + sc:description "An integrated analysis pipeline for MeRIP-seq data based on Nextflow." ; + sc:featureList edam:operation_0337, + edam:operation_3222, + edam:operation_3223 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MeRIPseqPipe" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/canceromics/MeRIPseqPipe" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -292640,7 +303174,7 @@ It considers the genomic context of the errors, including the nucleotides immedi biotools:primaryContact "Hossein Khiabanian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3517 ; @@ -292656,42 +303190,69 @@ It considers the genomic context of the errors, including the nucleotides immedi sc:softwareHelp ; sc:url "https://csg.sph.umich.edu/abecasis/Merlin/" . - a sc:SoftwareApplication ; + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1179" ; - sc:name "NCBI taxonomy ID" ; - sc:sameAs "http://edamontology.org/data_1179" ] ; + sc:additionalType "http://edamontology.org/data_1179" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "NCBI taxonomy ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ], + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Mathematical model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2129" ; - sc:name "File format name" ; - sc:sameAs "http://edamontology.org/data_2129" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2129" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "File format name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2259 ; - sc:citation ; - sc:description """merlin is a simple, graphical and user-oriented solution for the reconstruction of genome-scale metabolic models. + sc:citation , + , + "pmcid:PMC4417185", + "pmcid:PMC9226533", + "pubmed:25845595", + "pubmed:35694833" ; + sc:description """Merlin is a simple, graphical and user-oriented solution for the reconstruction of genome-scale metabolic models. It will guide you along the model reconstruction, providing several tools that help to improve and curate the model throughout the whole process.""" ; sc:featureList edam:operation_3660 ; sc:isAccessibleForFree true ; sc:license "GPL-3.0" ; - sc:name "merlin - MEtabolic models Reconstruction using genome-scaLe INformation" ; + sc:name "merlin" ; sc:operatingSystem "Linux", "Mac", "Windows" ; sc:softwareVersion "4.0.0-beta" ; sc:url "https://merlin-sysbio.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3047, + edam:topic_3315, + edam:topic_3336, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8626955", + "pubmed:34838134" ; + sc:description "An open source automated hit-to-lead method based on deep reinforcement learning." ; + sc:featureList edam:operation_0337, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MERMAID" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sekijima-lab/mermaid" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -292714,22 +303275,18 @@ It will guide you along the model reconstruction, providing several tools that h a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0821 ; @@ -292752,7 +303309,7 @@ It will guide you along the model reconstruction, providing several tools that h biotools:primaryContact "MEROPS group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3305, @@ -292768,7 +303325,7 @@ It will guide you along the model reconstruction, providing several tools that h biotools:primaryContact "Benjamin F. Voight" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0780, @@ -292789,7 +303346,7 @@ Merqury provides a set of tools for this purpose.""" ; sc:url "https://github.com/marbl/merqury" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3318, edam:topic_3332 ; @@ -292804,8 +303361,21 @@ Merqury provides a set of tools for this purpose.""" ; sc:url "https://www.geos.ed.ac.uk/geosciences/research/projects/rockmag" ; biotools:primaryContact "Pádraig Ó Conbhuí" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0622, + edam:topic_3673 ; + sc:citation ; + sc:description "Meryl is a tool for counting and working with sets of k-mers that was originally developed for use in the Celera Assembler and has since been migrated and maintained as part of Canu." ; + sc:featureList edam:operation_3472 ; + sc:name "Meryl" ; + sc:softwareVersion "1.3" ; + sc:url "https://github.com/marbl/meryl" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0196, @@ -292828,7 +303398,7 @@ MESA: automated assessment of synthetic DNA fragments and simulation of DNA synt sc:url "http://mesa.mosla.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154, @@ -292854,14 +303424,12 @@ MESA: automated assessment of synthetic DNA fragments and simulation of DNA synt a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation ; @@ -292873,7 +303441,7 @@ MESA: automated assessment of synthetic DNA fragments and simulation of DNA synt sc:url "https://github.ugent.be/ComputationalBiology/mesalina" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -292894,20 +303462,43 @@ We provide an example dataset from TCGA Ovarian Cancer to demonstrate the pipeli sc:name "MEScan" ; sc:url "https://github.com/MarkeyBBSRF/MEScan" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0654, + edam:topic_0798, + edam:topic_3474, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9171953", + "pubmed:35668366" ; + sc:description "High-quality clustering of DNA sequences using the mean shift algorithm and alignment-free identity scores." ; + sc:featureList edam:operation_3432, + edam:operation_3435, + edam:operation_3472 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MeShClust" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareVersion "3.0" ; + sc:url "https://github.com/BioinformaticsToolsmith/MeShClust2" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3509" ; - sc:name "Ontology mapping" ; - sc:sameAs "http://edamontology.org/data_3509" ], + sc:additionalType "http://edamontology.org/data_0967" ; + sc:encodingFormat "http://edamontology.org/format_2195" ; + sc:name "Ontology concept data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0967" ; - sc:name "Ontology concept data" ; - sc:sameAs "http://edamontology.org/data_0967" ] ; + sc:additionalType "http://edamontology.org/data_3509" ; + sc:encodingFormat "http://edamontology.org/format_2195" ; + sc:name "Ontology mapping" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0582" ; + sc:encodingFormat "http://edamontology.org/format_2195" ; + sc:name "Ontology" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3063, @@ -292928,7 +303519,7 @@ We provide an example dataset from TCGA Ovarian Cancer to demonstrate the pipeli biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3068, @@ -292948,22 +303539,22 @@ We provide an example dataset from TCGA Ovarian Cancer to demonstrate the pipeli a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ], + sc:additionalType "http://edamontology.org/data_2295" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ] ; + sc:additionalType "http://edamontology.org/data_0582" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3509" ; - sc:name "Ontology mapping" ; - sc:sameAs "http://edamontology.org/data_3509" ], + sc:additionalType "http://edamontology.org/data_3509" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology mapping" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3063, @@ -292985,18 +303576,18 @@ We provide an example dataset from TCGA Ovarian Cancer to demonstrate the pipeli a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2195" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_0582" ; + sc:encodingFormat "http://edamontology.org/format_2195" ; + sc:name "Ontology" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0089, @@ -293016,7 +303607,7 @@ We provide an example dataset from TCGA Ovarian Cancer to demonstrate the pipeli biotools:primaryContact "Jing ZHou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0091 ; @@ -293038,7 +303629,7 @@ We provide an example dataset from TCGA Ovarian Cancer to demonstrate the pipeli biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_1317 ; @@ -293053,7 +303644,7 @@ We provide an example dataset from TCGA Ovarian Cancer to demonstrate the pipeli biotools:primaryContact "Mark P. Foster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3064, edam:topic_3304, @@ -293066,16 +303657,31 @@ We provide an example dataset from TCGA Ovarian Cancer to demonstrate the pipeli sc:name "mesoSPIM initiative" ; sc:url "http://www.mesospim.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_2815, + edam:topic_3489, + edam:topic_3573 ; + sc:citation , + "pubmed:35559777" ; + sc:description "A mesocosm database management system for environmental nanosafety." ; + sc:featureList edam:operation_2421 ; + sc:isAccessibleForFree true ; + sc:name "mesocosm" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://aliayadi.github.io/MESOCOSM-database/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2087" ; - sc:name "Molecular property" ; - sc:sameAs "http://edamontology.org/data_2087" ] ; + sc:additionalType "http://edamontology.org/data_2087" ; + sc:name "Molecular property" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2087" ; - sc:name "Molecular property" ; - sc:sameAs "http://edamontology.org/data_2087" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2087" ; + sc:name "Molecular property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3332 ; @@ -293090,7 +303696,7 @@ We provide an example dataset from TCGA Ovarian Cancer to demonstrate the pipeli sc:url "http://mesord.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -293110,7 +303716,7 @@ MESSAR 0.1 (MEtabolite SubStructure Auto-Recommender).""" ; sc:url "http://messar.biodatamining.be" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -293128,18 +303734,18 @@ MESSI (Mixture of Experts for Spatial Signaling genes Identification) is a predi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -293163,7 +303769,7 @@ MESSI (Mixture of Experts for Spatial Signaling genes Identification) is a predi biotools:primaryContact "Mark Pinese" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -293183,8 +303789,32 @@ MESSI (Mixture of Experts for Spatial Signaling genes Identification) is a predi sc:url "http://veda.cs.uiuc.edu/MET/" ; biotools:primaryContact "Charles Blatti" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Pathway or network" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0602 ; + sc:author "Clément Frainay", + "Ludovic Cottret" ; + sc:description "Java library for metabolic networks. Singularity and docker containers allow to use met4j without installing Java or computational skills. Met4j apps allow to parse and edit SBML and to analyse the network with graph analysis." ; + sc:featureList edam:operation_3660, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:license "CECILL-2.1" ; + sc:name "met4j" ; + sc:softwareHelp ; + sc:softwareVersion "1.0.1" ; + sc:url "https://forgemia.inra.fr/metexplore/met4j" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0160 ; @@ -293208,7 +303838,7 @@ MESSI (Mixture of Experts for Spatial Signaling genes Identification) is a predi biotools:primaryContact "Enrique Blanco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, @@ -293223,26 +303853,8 @@ MESSI (Mixture of Experts for Spatial Signaling genes Identification) is a predi sc:name "Meta-Align" ; sc:url "https://github.com/shravan-repos/Metaalign" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3517, - edam:topic_3673, - edam:topic_3676 ; - sc:citation , - "pubmed:31830326" ; - sc:description """An adaptive test for meta-analysis of rare variant association studies. - -Single genome-wide studies may be underpowered to detect trait-associated rare variants with moderate or weak effect sizes. As a viable alternative, meta-analysis is widely used to increase power by combining different studies. The power of meta-analysis critically depends on the underlying association patterns and heterogeneity levels, which are unknown and vary from locus to locus. However, existing methods mainly focus on one or only a few combinations of the association pattern and heterogeneity level, thus may lose power in many situations. To address this issue, we propose a general and unified framework by combining a class of tests including and beyond some existing ones, leading to high power across a wide range of scenarios. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'aSPUmeta'""" ; - sc:featureList edam:operation_3196, - edam:operation_3435, - edam:operation_3791 ; - sc:name "meta-analysis rare variant" ; - sc:url "https://github.com/ytzhong/metaRV" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3542 ; sc:citation "pubmed:15215454" ; @@ -293260,7 +303872,7 @@ Single genome-wide studies may be underpowered to detect trait-associated rare v "Leszek Rychlewski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0160, @@ -293283,18 +303895,18 @@ Single genome-wide studies may be underpowered to detect trait-associated rare v a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1872" ; - sc:name "Taxonomic classification" ; - sc:sameAs "http://edamontology.org/data_1872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1872" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Taxonomic classification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3174 ; @@ -293314,7 +303926,7 @@ Single genome-wide studies may be underpowered to detect trait-associated rare v biotools:primaryContact "Esteban Pérez-Wohlfeil" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0780, @@ -293334,7 +303946,7 @@ DNA N6-Methyladenine Site predictor.""" ; sc:url "http://kurata14.bio.kyutech.ac.jp/Meta-i6mA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2229, @@ -293353,7 +303965,7 @@ In this work, we developed a novel PVP predictor named PVPred-SCM which is an ef sc:url "http://camt.pythonanywhere.com/Meta-iPVP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -293373,16 +303985,39 @@ In this work, we developed a novel PVP predictor named PVPred-SCM which is an ef sc:url "http://metameme.sdsc.edu/" ; biotools:primaryContact "Grundy W. N." . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_3174, + edam:topic_3308, + edam:topic_3512, + edam:topic_3837 ; + sc:citation ; + sc:description "Characterization and simulation of metagenomic nanopore sequencing data with Meta-NanoSim." ; + sc:featureList edam:operation_0310, + edam:operation_0335, + edam:operation_3185, + edam:operation_3472, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Meta-NanoSim" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bcgsc/NanoSim" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0736, @@ -293412,7 +304047,7 @@ In this work, we developed a novel PVP predictor named PVPred-SCM which is an ef "Erik Hjerde" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3174, @@ -293432,18 +304067,18 @@ Meta-Prism aims to conduct quick query in large-scale metagenomics database. The a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2209" ; - sc:name "Mutation ID" ; - sc:sameAs "http://edamontology.org/data_2209" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2209" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mutation ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1622" ; - sc:name "Disease report" ; - sc:sameAs "http://edamontology.org/data_1622" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1622" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Disease report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0634 ; @@ -293463,7 +304098,7 @@ Meta-Prism aims to conduct quick query in large-scale metagenomics database. The biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0610, @@ -293479,7 +304114,7 @@ Meta-Prism aims to conduct quick query in large-scale metagenomics database. The biotools:primaryContact "Su, Xiaoquan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3315, @@ -293498,38 +304133,38 @@ Meta-Prism aims to conduct quick query in large-scale metagenomics database. The a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_1872" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Taxonomic classification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1011" ; - sc:name "EC number" ; - sc:sameAs "http://edamontology.org/data_1011" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2583" ; - sc:name "GO concept ID (molecular function)" ; - sc:sameAs "http://edamontology.org/data_2583" ], + sc:additionalType "http://edamontology.org/data_1011" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "EC number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1872" ; - sc:name "Taxonomic classification" ; - sc:sameAs "http://edamontology.org/data_1872" ] ; + sc:additionalType "http://edamontology.org/data_2583" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "GO concept ID (molecular function)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ], + sc:additionalType "http://edamontology.org/data_2583" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "GO concept ID (molecular function)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2583" ; - sc:name "GO concept ID (molecular function)" ; - sc:sameAs "http://edamontology.org/data_2583" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3174, @@ -293557,7 +304192,7 @@ Meta-Prism aims to conduct quick query in large-scale metagenomics database. The sc:url "https://github.com/galaxyproteomics/metaquantome" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0593, @@ -293572,7 +304207,7 @@ Meta-Prism aims to conduct quick query in large-scale metagenomics database. The sc:url "http://rformassspectrometry.github.io/metaRbolomics-book" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -293597,7 +304232,7 @@ Patuzzi I., Baruzzo G., Losasso C., Ricci A., Di Camillo B. "metaSPARSim: a 16S sc:url "http://sysbiobig.dei.unipd.it/?q=Software#metaSPARSimand" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -293615,7 +304250,7 @@ The new version consists of 744,709 drug-ADE associations between 8,498 compound sc:url "http://lmmd.ecust.edu.cn/metaadedb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -293635,7 +304270,7 @@ The new version consists of 744,709 drug-ADE associations between 8,498 compound biotools:primaryContact "Hyungwon Choi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -293657,7 +304292,7 @@ The new version consists of 744,709 drug-ADE associations between 8,498 compound biotools:primaryContact "Raphael Aggio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0632, @@ -293677,7 +304312,7 @@ This package can be easily used in combination with others R packages commonly u sc:url "https://metabarfactory.github.io/metabaR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0621, @@ -293697,7 +304332,7 @@ This package can be easily used in combination with others R packages commonly u biotools:primaryContact "Dan M. Bolser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -293716,7 +304351,7 @@ This package can be easily used in combination with others R packages commonly u sc:url "https://github.com/anuradhawick/MetaBCC-LR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -293734,7 +304369,7 @@ This package can be easily used in combination with others R packages commonly u . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3168, @@ -293751,7 +304386,7 @@ This package can be easily used in combination with others R packages commonly u sc:url "http://metabin.riken.jp/application" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, @@ -293771,7 +304406,7 @@ This package can be easily used in combination with others R packages commonly u sc:url "https://github.com/ziyewang/MetaBinner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0821, @@ -293792,7 +304427,7 @@ This package can be easily used in combination with others R packages commonly u biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3172 ; @@ -293808,7 +304443,7 @@ This package can be easily used in combination with others R packages commonly u biotools:primaryContact "Jauhiainen A" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -293828,7 +304463,7 @@ This package can be easily used in combination with others R packages commonly u sc:url "http://www.metaboanalyst.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -293845,7 +304480,7 @@ This package can be easily used in combination with others R packages commonly u biotools:primaryContact "Karl Burgess" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0797, @@ -293863,7 +304498,7 @@ This package can be easily used in combination with others R packages commonly u biotools:primaryContact "Andreas Mock" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0154, @@ -293882,7 +304517,7 @@ We have developed MetaboKit, a comprehensive software package for compound ident sc:url "https://github.com/MetaboKit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3407, @@ -293896,7 +304531,7 @@ We have developed MetaboKit, a comprehensive software package for compound ident sc:url "https://github.com/AnantharamanLab/METABOLIC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -293914,7 +304549,7 @@ We have developed MetaboKit, a comprehensive software package for compound ident "Satya Swarup Sama" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -293936,7 +304571,7 @@ Baranwal, Mayank, Abram Magner, Paolo Elvati, Jacob Saldinger, Angela Violi, and sc:url "https://github.com/baranwa2/MetabolicPathwayPrediction" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2259 ; sc:citation , @@ -293955,7 +304590,7 @@ Baranwal, Mayank, Abram Magner, Paolo Elvati, Jacob Saldinger, Angela Violi, and sc:url "https://metabolicatlas.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3172 ; sc:citation ; @@ -293970,7 +304605,7 @@ Baranwal, Mayank, Abram Magner, Paolo Elvati, Jacob Saldinger, Angela Violi, and sc:url "http://www.ebi.ac.uk/metabolights/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0160, @@ -294000,7 +304635,7 @@ metabolisHMM is a tool for visualizing the distributions and evolutionary histor sc:url "https://github.com/elizabethmcd/metabolisHMM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -294020,7 +304655,7 @@ This is a Shiny-App with the aim of facilitating association and covariate selec sc:url "https://apps.health-atlas.de/metabolite-investigator/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -294037,7 +304672,7 @@ This is a Shiny-App with the aim of facilitating association and covariate selec sc:url "https://mpietzke.shinyapps.io/autoplotter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172 ; @@ -294052,8 +304687,25 @@ This is a Shiny-App with the aim of facilitating association and covariate selec biotools:primaryContact "K. Hiller - Software Developer", "Nils koschnitzki - Administrator" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602 ; + sc:citation , + "pmcid:PMC6397295", + "pubmed:30854222" ; + sc:description "Metabolizer is a web tool for analysis of modular architecture of metabolic pathways using transcriptomic data. Metabolizer calculates impact of modules on production of metabolites. These modules are conserved part of metabolism which starts with substrate(s) and ends with a product." ; + sc:isAccessibleForFree true ; + sc:name "Metabolizer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "1.7.0" ; + sc:url "http://metabolizer.babelomics.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2259 ; @@ -294066,7 +304718,7 @@ This is a Shiny-App with the aim of facilitating association and covariate selec sc:url "http://procyc.westcent.usu.edu/cgi-bin/MetaboSearcher.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3172 ; sc:description "An international data aggregation and notification service for metabolomics." ; @@ -294080,7 +304732,7 @@ This is a Shiny-App with the aim of facilitating association and covariate selec sc:url "http://metabolomexchange.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3407 ; @@ -294098,7 +304750,7 @@ This is a Shiny-App with the aim of facilitating association and covariate selec biotools:primaryContact "Christoph Steinbeck" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -294122,7 +304774,7 @@ MetaboMAPS is a web project for manipulating metabolic pathways in SVG format. M sc:url "https://metabomaps.brenda-enzymes.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3172, @@ -294139,7 +304791,7 @@ MetaboMAPS is a web project for manipulating metabolic pathways in SVG format. M biotools:primaryContact "Jianguo Xia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269 ; @@ -294157,7 +304809,7 @@ MetaboMAPS is a web project for manipulating metabolic pathways in SVG format. M biotools:primaryContact "Michael Nodzenski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -294174,7 +304826,7 @@ MetaboMAPS is a web project for manipulating metabolic pathways in SVG format. M biotools:primaryContact "Joram Posma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0769, @@ -294193,7 +304845,7 @@ MetaboMAPS is a web project for manipulating metabolic pathways in SVG format. M sc:url "https://github.com/MRCIEU/metaboprep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3489 ; @@ -294209,7 +304861,7 @@ MetaboMAPS is a web project for manipulating metabolic pathways in SVG format. M biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -294232,7 +304884,7 @@ MetaboMAPS is a web project for manipulating metabolic pathways in SVG format. M "Rafael Ayala" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -294255,7 +304907,7 @@ Integrating multi- or single-omic metabolic data upon the metabolic network can sc:url "https://github.com/Metaboverse/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -294274,7 +304926,7 @@ Integrating multi- or single-omic metabolic data upon the metabolic network can biotools:primaryContact "Robert E W Hancock" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0780, @@ -294292,7 +304944,7 @@ Integrating multi- or single-omic metabolic data upon the metabolic network can sc:url "https://github.com/jmabuin/MetaCacheSpark" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0625, @@ -294313,7 +304965,7 @@ Integrating multi- or single-omic metabolic data upon the metabolic network can biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -294334,7 +304986,7 @@ MetaChrom is a transfer learning framework that takes advantage of both an exten sc:url "https://metachrom.ttic.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -294354,7 +305006,7 @@ Detection of Low-Quality Peaks in Untargeted Metabolomics Data.""" ; sc:url "https://CRAN.R-project.org/package=MetaClean" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157, edam:topic_3174, @@ -294369,7 +305021,7 @@ Detection of Low-Quality Peaks in Untargeted Metabolomics Data.""" ; sc:url "http://i.cs.hku.hk/~alse/MetaCluster/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640 ; sc:citation ; @@ -294381,7 +305033,7 @@ The majority of copy number callers requires high read coverage data that is oft sc:url "https://bitbucket.org/sonnhammergroup/metacnv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -294400,14 +305052,14 @@ The majority of copy number callers requires high read coverage data that is oft a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3736" ; - sc:name "Ecological data" ; - sc:sameAs "http://edamontology.org/data_3736" ] ; + sc:additionalType "http://edamontology.org/data_3736" ; + sc:encodingFormat "http://edamontology.org/format_3706" ; + sc:name "Ecological data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_2006" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0092, @@ -294428,7 +305080,7 @@ The majority of copy number callers requires high read coverage data that is oft "Niklaus J. Grünwald" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2269, @@ -294448,7 +305100,7 @@ The majority of copy number callers requires high read coverage data that is oft "Peng Zhai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196 ; @@ -294461,7 +305113,7 @@ The majority of copy number callers requires high read coverage data that is oft sc:url "http://metacompass.cbcb.umd.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3168, @@ -294480,7 +305132,7 @@ The majority of copy number callers requires high read coverage data that is oft "Xiejia Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0780, @@ -294505,7 +305157,7 @@ The majority of copy number callers requires high read coverage data that is oft biotools:primaryContact "Falk Schreiber" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157, edam:topic_3168, @@ -294518,7 +305170,7 @@ The majority of copy number callers requires high read coverage data that is oft sc:url "https://sourceforge.net/projects/metacv/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, @@ -294540,7 +305192,7 @@ The majority of copy number callers requires high read coverage data that is oft biotools:primaryContact "MetaCyc Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -294559,7 +305211,7 @@ The majority of copy number callers requires high read coverage data that is oft biotools:primaryContact "Zicheng Hu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal" ; sc:applicationSubCategory edam:topic_0610, @@ -294580,7 +305232,7 @@ Metadataset is a collection of open data from scientific publications.""" ; sc:url "http://www.metadataset.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3125 ; @@ -294597,7 +305249,7 @@ Metadataset is a collection of open data from scientific publications.""" ; biotools:primaryContact "Dr. Bingding Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0634, @@ -294617,7 +305269,7 @@ Metadataset is a collection of open data from scientific publications.""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170 ; @@ -294632,14 +305284,14 @@ Metadataset is a collection of open data from scientific publications.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091 ; sc:citation ; @@ -294655,14 +305307,14 @@ Metadataset is a collection of open data from scientific publications.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0889" ; - sc:name "Structural profile" ; - sc:sameAs "http://edamontology.org/data_0889" ] ; + sc:additionalType "http://edamontology.org/data_0889" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Structural profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3332 ; sc:author "Petr Hosek", @@ -294685,14 +305337,14 @@ Metadataset is a collection of open data from scientific publications.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ] ; + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Trajectory data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3892 ; sc:description "Molecular simulations are slow because the system usually gets stuck in local energy minima. To address this problem, metadynamics uses an artificial bias potential calculated adaptivly during the simulation. Metadynminer is R package for analysis and visualization of metadynamics results, primarily from popular Plumed package." ; @@ -294714,7 +305366,7 @@ Metadataset is a collection of open data from scientific publications.""" ; biotools:primaryContact "Vojtech Spiwok" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0176 ; sc:description "Metadynreporter is a Galaxy portal that generates a PDF report based on data from metadynamics simulation done in Plumed (https://www.plumed.org/)." ; @@ -294724,7 +305376,7 @@ Metadataset is a collection of open data from scientific publications.""" ; sc:url "http://metadynreporter.cz/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0154, @@ -294743,7 +305395,7 @@ PubChem, Kyoto Encyclopedia of Genes and Genomes (KEGG), and Lipidomics Gateway biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3172 ; @@ -294758,7 +305410,7 @@ PubChem, Kyoto Encyclopedia of Genes and Genomes (KEGG), and Lipidomics Gateway sc:url "http://mlg.ucd.ie/metabol.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0634, @@ -294779,7 +305431,7 @@ PubChem, Kyoto Encyclopedia of Genes and Genomes (KEGG), and Lipidomics Gateway sc:url "http://bioinfo.cipf.es/metafun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0769, @@ -294799,7 +305451,7 @@ Create the nrgo database for the metafunc workflow.""" ; sc:url "https://gitlab.com/schmeierlab/workflows/metafunc.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, @@ -294823,7 +305475,7 @@ Create the nrgo database for the metafunc workflow.""" ; sc:url "https://github.com/jialiu232/MetaFunPrimer_paper_info.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0114, @@ -294838,7 +305490,7 @@ Create the nrgo database for the metafunc workflow.""" ; sc:url "https://github.com/ccmbioinfo/MetaFusion" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0637, @@ -294858,7 +305510,7 @@ Due to file size limitations, the databases can be found here:.""" ; sc:url "http://bioinformatics.uni-muenster.de/tools/metag/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -294879,7 +305531,7 @@ metaGEM integrates an array of existing bioinformatics and metabolic modeling to sc:url "https://github.com/franciscozorrilla/metaGEM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Plug-in", "Script" ; @@ -294898,7 +305550,7 @@ metaGEM integrates an array of existing bioinformatics and metabolic modeling to biotools:primaryContact "Pantelis Bagos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3474 ; @@ -294917,14 +305569,14 @@ metaGEM integrates an array of existing bioinformatics and metabolic modeling to a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053 ; @@ -294943,7 +305595,7 @@ metaGEM integrates an array of existing bioinformatics and metabolic modeling to biotools:primaryContact "Charles Joly Beauparlant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0621, @@ -294959,14 +305611,35 @@ metaGEM integrates an array of existing bioinformatics and metabolic modeling to sc:url "http://metagene.cb.k.u-tokyo.ac.jp/" ; biotools:primaryContact "Hideki Noguchi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3174, + edam:topic_3577, + edam:topic_3697, + edam:topic_3837 ; + sc:citation , + "pmcid:PMC8485520", + "pubmed:34592929" ; + sc:description "A standardized database to study deep sequenced metagenomic data from human fecal specimen." ; + sc:featureList edam:operation_0335, + edam:operation_2421, + edam:operation_3431, + edam:operation_3695, + edam:operation_3891 ; + sc:name "MetaGeneBank" ; + sc:url "http://tcm.zju.edu.cn/mgb" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "MetaGeneMark is a tool for gene prediction in metagenomes, utilizing metagenome parameters and gene prediction." ; sc:name "MetaGeneMark" ; sc:url "http://exon.gatech.edu/GeneMark/meta_gmhmmp.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0769, @@ -294984,7 +305657,7 @@ metaGEM integrates an array of existing bioinformatics and metabolic modeling to sc:url "https://github.com/pgp-pasteur-fr/MetaGenSense" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation ; @@ -294998,30 +305671,30 @@ metaGEM integrates an array of existing bioinformatics and metabolic modeling to a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ], + sc:additionalType "http://edamontology.org/data_3113" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sample annotation" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3567" ; - sc:name "Reference sample report" ; - sc:sameAs "http://edamontology.org/data_3567" ], + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Taxonomy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3113" ; - sc:name "Sample annotation" ; - sc:sameAs "http://edamontology.org/data_3113" ] ; + sc:additionalType "http://edamontology.org/data_3567" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Reference sample report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ], + sc:additionalType "http://edamontology.org/data_3567" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Reference sample report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3567" ; - sc:name "Reference sample report" ; - sc:sameAs "http://edamontology.org/data_3567" ], + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Taxonomy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3113" ; - sc:name "Sample annotation" ; - sc:sameAs "http://edamontology.org/data_3113" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3113" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sample annotation" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0637, @@ -295042,22 +305715,22 @@ metaGEM integrates an array of existing bioinformatics and metabolic modeling to a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ], + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Taxonomy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -295076,13 +305749,8 @@ metaGEM integrates an array of existing bioinformatics and metabolic modeling to sc:url "http://bioconductor.org/packages/release/bioc/html/metagenomeSeq.html" ; biotools:primaryContact "Joseph N. Paulson" . - a sc:SoftwareApplication ; - sc:description "As an experienced provider of NGS services and a partner of Illumina, CD Genomics is committed to offering qualified metagenomic shotgun sequencing service. Shotgun metagenomic sequencing allows the taxonomic and biological functional characterization of polymicrobial communities in a cost-effective and time-efficient manner. We consistently deliver high-quality data with flexibility and bioinformatics analysis based on customers’ requirements." ; - sc:name "Metagenomic Shotgun Sequencing" ; - sc:url "https://www.cd-genomics.com/Metagenomic-Shotgun-Sequencing.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -295101,23 +305769,33 @@ Microbial association networks are frequently used for understanding and compari sc:url "https://web.rniapps.net/metagenonets" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Genotype/phenotype report" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:name "Genotype/phenotype report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, - edam:topic_2269 ; + edam:topic_0625, + edam:topic_2269, + edam:topic_2885 ; + sc:author "Jordi Martorell-Marugán" ; sc:citation ; - sc:description "Meta-analysis of genetic association studies." ; - sc:featureList edam:operation_3439 ; + sc:description "MetaGenyo is a simple, ready-to-use software which has been designed to perform meta-analysis of genetic association studies." ; + sc:featureList edam:operation_2403 ; + sc:isAccessibleForFree true ; sc:name "MetaGenyo" ; sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:softwareHelp ; - sc:url "http://bioinfo.genyo.es/metagenyo/" ; - biotools:primaryContact "Pedro Carmona-Saez" . + sc:url "https://metagenyo.genyo.es" ; + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0196, @@ -295140,7 +305818,7 @@ The MetaGraph framework allows for indexing and analysis of very large biologica sc:url "https://metagraph.ethz.ch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3174, @@ -295153,8 +305831,50 @@ The MetaGraph framework allows for indexing and analysis of very large biologica sc:softwareHelp ; sc:url "http://cqb.pku.edu.cn/ZhuLab/MetaGUN/index.html" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Taxonomy" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3917" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Count matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_3174 ; + sc:description "metagWGS is a workflow dedicated to the analysis of metagenomic data. It allows assembly, taxonomic annotation, and functional annotation of predicted genes. Since release 2.3, binning step with the possibility of cross-alignment is included. It has been developed in collaboration with several CATI BIOS4biol agents. Funded by Antiselfish Project (Labex Ecofect), ExpoMicoPig project (France Futur elevage) and SeqOccIn project (CPER - Occitanie Toulouse / FEDER), ATB_Biofilm funded by PNREST Anses, France genomique (ANR-10-INBS-09-08) and Resalab Ouest." ; + sc:featureList edam:operation_0524, + edam:operation_3460, + edam:operation_3672 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "metagWGS" ; + sc:operatingSystem "Linux" ; + sc:provider "GenoToul bioinformatics facility" ; + sc:softwareHelp ; + sc:softwareVersion "2.3" ; + sc:url "https://forgemia.inra.fr/genotoul-bioinfo/metagwgs" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -295172,7 +305892,7 @@ The MetaGraph framework allows for indexing and analysis of very large biologica biotools:primaryContact "Michael Zon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -295191,7 +305911,7 @@ The MetaGraph framework allows for indexing and analysis of very large biologica biotools:primaryContact "John R. Stevens" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -295209,7 +305929,7 @@ The MetaGraph framework allows for indexing and analysis of very large biologica biotools:primaryContact "Erik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -295228,7 +305948,7 @@ The MetaGraph framework allows for indexing and analysis of very large biologica biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -295243,7 +305963,7 @@ The MetaGraph framework allows for indexing and analysis of very large biologica sc:url "http://metainter.meb.uni-bonn.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_1317, edam:topic_3170, @@ -295259,7 +305979,7 @@ The MetaGraph framework allows for indexing and analysis of very large biologica biotools:primaryContact "L. Pachter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation ; @@ -295274,7 +305994,7 @@ The MetaGraph framework allows for indexing and analysis of very large biologica sc:url "http://genome.sph.umich.edu/wiki/METAL_Program" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3174, @@ -295297,7 +306017,7 @@ MetaLAFFA is a pipeline for annotating shotgun metagenomic data with abundances sc:url "https://github.com/borenstein-lab/MetaLAFFA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3125, @@ -295320,7 +306040,7 @@ MetaLAFFA is a pipeline for annotating shotgun metagenomic data with abundances biotools:primaryContact "Metal Detector v2.0 Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3303, @@ -295338,7 +306058,7 @@ Metalign is a method for estimating the taxonomic composition and relative abund sc:url "https://github.com/nlapier2/Metalign" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0607, edam:topic_3071, @@ -295354,8 +306074,82 @@ Metalign is a method for estimating the taxonomic composition and relative abund sc:url "https://github.com/cheinle/MetaLIMS" ; biotools:primaryContact "Cassie Heinle" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence record" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence record" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Taxonomy" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence record" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Taxonomy" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3579" ; + sc:name "Plot" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Taxonomy" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence record" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Plot" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0637, + edam:topic_3174, + edam:topic_3301 ; + sc:description "metagenomics Taxonomic Assignation pipeline in Snakemake" ; + sc:featureList edam:operation_0337, + edam:operation_0496, + edam:operation_3192, + edam:operation_3211, + edam:operation_3218, + edam:operation_3434, + edam:operation_3460 ; + sc:license "GPL-2.0" ; + sc:name "meTAline" ; + sc:url "https://github.com/Dfupa/meTAline" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -295372,14 +306166,13 @@ Metalign is a method for estimating the taxonomic composition and relative abund a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3534 ; @@ -295394,10 +306187,10 @@ Metalign is a method for estimating the taxonomic composition and relative abund a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0081, @@ -295423,10 +306216,10 @@ Metalign is a method for estimating the taxonomic composition and relative abund a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_2065" ; + sc:name "PDB ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3292 ; sc:citation ; @@ -295443,10 +306236,10 @@ Metalign is a method for estimating the taxonomic composition and relative abund a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3292 ; @@ -295464,7 +306257,7 @@ Metalign is a method for estimating the taxonomic composition and relative abund biotools:primaryContact "Antonio Rosato" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, @@ -295481,7 +306274,7 @@ Metalign is a method for estimating the taxonomic composition and relative abund sc:url "http://dgrapov.github.io/MetaMapR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157, edam:topic_3174 ; @@ -295493,8 +306286,32 @@ Metalign is a method for estimating the taxonomic composition and relative abund sc:url "https://github.com/DiltheyLab/MetaMaps" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0154, + edam:topic_0602, + edam:topic_3407, + edam:topic_3955 ; + sc:citation , + "pmcid:PMC8878866", + "pubmed:35208198" ; + sc:description "MetAMDB is a software/database for the analysis of metabolic models and specifically the work with atom mappings." ; + sc:featureList edam:operation_2421, + edam:operation_2429, + edam:operation_3660 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MetAMDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://metamdb.tu-bs.de/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -295513,7 +306330,7 @@ EWAS meta-analysis of age in human skeletal muscle.""" ; sc:url "https://sarah-voisin.shinyapps.io/MetaMeth/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2830 ; @@ -295534,7 +306351,7 @@ EWAS meta-analysis of age in human skeletal muscle.""" ; biotools:primaryContact "Cheng Luo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -295553,7 +306370,7 @@ EWAS meta-analysis of age in human skeletal muscle.""" ; sc:url "https://github.com/ZhaoXM-Lab/metaMIC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3399, edam:topic_3410, @@ -295572,7 +306389,7 @@ EWAS meta-analysis of age in human skeletal muscle.""" ; biotools:primaryContact "Nhan Thi Ho" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3056, edam:topic_3174, @@ -295592,7 +306409,7 @@ EWAS meta-analysis of age in human skeletal muscle.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3174, @@ -295609,7 +306426,7 @@ EWAS meta-analysis of age in human skeletal muscle.""" ; biotools:primaryContact "Sofia Morfopoulou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal", "Web application" ; @@ -295629,7 +306446,7 @@ MetamORF: A repository of unique short Open Reading Frames identified by both ex sc:url "http://metamorf.hb.univ-amu.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168 ; @@ -295646,7 +306463,7 @@ MetamORF: A repository of unique short Open Reading Frames identified by both ex sc:url "http://cbcb.umd.edu/software/metAMOS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3172 ; @@ -295665,7 +306482,7 @@ MetamORF: A repository of unique short Open Reading Frames identified by both ex biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -295680,14 +306497,14 @@ MetamORF: A repository of unique short Open Reading Frames identified by both ex a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3325, edam:topic_3510 ; @@ -295708,7 +306525,7 @@ MetamORF: A repository of unique short Open Reading Frames identified by both ex biotools:primaryContact "Christian Delamarche" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -295724,7 +306541,7 @@ metan (multi-environment trials analysis) provides useful functions for analyzin sc:url "https://tiagoolivoto.github.io/metan/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3308 ; @@ -295742,7 +306559,7 @@ metan (multi-environment trials analysis) provides useful functions for analyzin biotools:primaryContact "Manthan Shah" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -295758,7 +306575,7 @@ metan (multi-environment trials analysis) provides useful functions for analyzin biotools:primaryContact "Zhenqiu Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3382, @@ -295778,7 +306595,7 @@ This is a toolbox to convert .mat files on MetaNet into GDS files.""" ; sc:url "http://metanet.stanford.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -295805,7 +306622,7 @@ This is a toolbox to convert .mat files on MetaNet into GDS files.""" ; biotools:primaryContact "MetaNetX Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -295823,7 +306640,7 @@ This is a toolbox to convert .mat files on MetaNet into GDS files.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_1775, @@ -295840,7 +306657,7 @@ This is a toolbox to convert .mat files on MetaNet into GDS files.""" ; sc:url "http://www.metnetdb.org/MetNet_MetaOmGraph.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3172 ; @@ -295858,7 +306675,7 @@ This is a toolbox to convert .mat files on MetaNet into GDS files.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -295874,7 +306691,7 @@ This is a toolbox to convert .mat files on MetaNet into GDS files.""" ; sc:url "http://www.way2drug.com/metapass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602 ; @@ -295888,7 +306705,7 @@ This is a toolbox to convert .mat files on MetaNet into GDS files.""" ; biotools:primaryContact "George C. Tseng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -295913,7 +306730,7 @@ This is a toolbox to convert .mat files on MetaNet into GDS files.""" ; biotools:primaryContact "Thomas Handorf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0637, @@ -295929,7 +306746,7 @@ This is a toolbox to convert .mat files on MetaNet into GDS files.""" ; sc:url "http://hallam.microbiology.ubc.ca/MetaPathways/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3168, @@ -295944,7 +306761,7 @@ This is a toolbox to convert .mat files on MetaNet into GDS files.""" ; sc:url "http://sourceforge.net/projects/metapepseq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0625, @@ -295964,7 +306781,7 @@ MetaPhat is an open sourced program to detect best subset traits on lead multiva sc:url "https://sourceforge.net/projects/meta-pheno-association-tracer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0194, @@ -295982,7 +306799,7 @@ MetaPhat is an open sourced program to detect best subset traits on lead multiva sc:url "http://huttenhower.sph.harvard.edu/metaphlan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; sc:applicationSubCategory edam:topic_0084, @@ -296003,12 +306820,11 @@ MetaPhat is an open sourced program to detect best subset traits on lead multiva sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:softwareVersion "metaphors_201405", - "metaphors_201901" ; + sc:softwareVersion "2.5" ; sc:url "http://orthology.phylomedb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174, @@ -296024,7 +306840,7 @@ MetaPhat is an open sourced program to detect best subset traits on lead multiva biotools:primaryContact "Bo Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3174 ; sc:author ; @@ -296041,7 +306857,7 @@ META-pipe is also available as a web service (see link section).""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -296057,18 +306873,18 @@ META-pipe is also available as a web service (see link section).""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -296088,31 +306904,56 @@ META-pipe is also available as a web service (see link section).""" ; "Windows" ; sc:url "https://github.com/rkajitani/MetaPlatanus" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0602, + edam:topic_3172, + edam:topic_3407, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9272804", + "pubmed:35639952" ; + sc:description "A Bioconductor package for joint pathway testing for untargeted metabolomics data." ; + sc:featureList edam:operation_3501, + edam:operation_3659, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:license "Artistic-2.0" ; + sc:name "metapone" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://bioconductor.org/packages/devel/bioc/html/metapone.html. a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Command-line tool", - "Library", - "Script" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, edam:topic_0769, edam:topic_2885, edam:topic_3174 ; - sc:citation ; - sc:description """A pipeline for macro- and micro-diversity analyses and visualization of microbial and viral metagenome-derived populations. - -A pipeline for the macro- and micro-diversity analyses and visualization of metagenomic-derived populations. - -MetaPop is a pipeline designed to facilitate the processing of sets of short read data mapped to reference genomes with the twin aims of calculating sample-level diversity metrics such as abundance, population diversity, and similarity across multiple samples, and assessing within-species diversity through the assessment of nucleotide polymorphisms and amino acid substitutions. To further facilitate understanding, the pipeline also produces graphical summaries of its results.""" ; + sc:citation , + "pmcid:PMC8922842", + "pubmed:35287721" ; + sc:description "A pipeline for the macro- and micro-diversity analyses and visualization of metagenomic-derived populations" ; sc:featureList edam:operation_0337, edam:operation_0484, edam:operation_2962, edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; sc:name "MetaPopR" ; - sc:url "https://github.com/metaGmetapop/metapop" . + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://de.cyverse.org/apps/agave/MetaPop-1.0.0" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Workbench" ; sc:applicationSubCategory edam:topic_3063, @@ -296131,7 +306972,7 @@ MetaPop is a pipeline designed to facilitate the processing of sets of short rea sc:url "https://github.com/sheryl-ai/MetaPred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0621, @@ -296147,8 +306988,21 @@ MetaPop is a pipeline designed to facilitate the processing of sets of short rea sc:softwareHelp ; sc:url "http://metapred2cs.ibers.aber.ac.uk/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "MetaPred : A webserver for the Prediction of Cytochrome P450 Isoform responsible for Metabolizing a Drug Molecule" ; + sc:featureList edam:operation_2945 ; + sc:name "metapred webserver" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/metapred/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -296171,7 +307025,7 @@ MetaPop is a pipeline designed to facilitate the processing of sets of short rea sc:url "http://metapredict.readthedocs.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174, @@ -296191,7 +307045,7 @@ MetaPrism provides joint profile (infer both taxonomical and functional profile) sc:url "https://github.com/jiwoongbio/MetaPrism" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0769, @@ -296215,7 +307069,7 @@ The MetaPro Meta Transcriptomics/Genomics Pipeline is a software tool that will sc:url "https://github.com/ParkinsonLab/MetaPro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0154, @@ -296233,7 +307087,7 @@ The MetaPro Meta Transcriptomics/Genomics Pipeline is a software tool that will sc:url "https://github.com/kalininalab/metaprofi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -296253,17 +307107,17 @@ This repository contains the source code of the MetaProfiler software package. I sc:url "https://github.com/psmyth94/MetaProfiler.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "`prokka` optimized for large datasets" ; sc:name "metaprokka" ; sc:url "https://github.com/telatin/metaprokka" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -296277,7 +307131,7 @@ This repository contains the source code of the MetaProfiler software package. I sc:url "https://code.google.com/p/meta-proteome-analyzer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_1317, @@ -296293,7 +307147,7 @@ This repository contains the source code of the MetaProfiler software package. I sc:url "http://bioinf.cs.ucl.ac.uk/MetaPSICOV/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3678 ; sc:citation ; @@ -296309,7 +307163,7 @@ This repository contains the source code of the MetaProfiler software package. I sc:url "http://www.pitt.edu/~tsengweb/MetaOmicsHome.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -296328,7 +307182,7 @@ This repository contains the source code of the MetaProfiler software package. I sc:url "http://www.bioinformatics.org/mqtl/wiki/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3174 ; @@ -296343,7 +307197,7 @@ This repository contains the source code of the MetaProfiler software package. I sc:url "http://quast.sourceforge.net/metaquast.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3301, @@ -296361,18 +307215,18 @@ This repository contains the source code of the MetaProfiler software package. I a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ] ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2984" ; - sc:name "Pathway or network report" ; - sc:sameAs "http://edamontology.org/data_2984" ], + sc:additionalType "http://edamontology.org/data_2984" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Pathway or network report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -296403,7 +307257,7 @@ This repository contains the source code of the MetaProfiler software package. I biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -296422,10 +307276,9 @@ metaRE R Package for Meta-analysis of Transcriptome Data to Identify the Cis-reg a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation ; @@ -296442,7 +307295,7 @@ metaRE R Package for Meta-analysis of Transcriptome Data to Identify the Cis-reg biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0102, @@ -296456,7 +307309,7 @@ metaRE R Package for Meta-analysis of Transcriptome Data to Identify the Cis-reg sc:url "http://rth.dk/resources/mrm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2815, edam:topic_3325 ; @@ -296469,7 +307322,7 @@ metaRE R Package for Meta-analysis of Transcriptome Data to Identify the Cis-reg biotools:primaryContact "Xiaoming Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0154, @@ -296491,7 +307344,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for sc:url "https://github.com/zaidissa/MetaRon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3340, @@ -296508,7 +307361,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for biotools:primaryContact "Sissades Tongsima" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -296528,14 +307381,14 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308 ; sc:citation "pubmed:25452340" ; @@ -296554,7 +307407,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for biotools:primaryContact "Panagiotis Moulos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:author "Panagiotis Moulos" ; @@ -296571,7 +307424,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for biotools:primaryContact "Panagiotis Moulos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -296588,7 +307441,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for sc:url "http://bioinformatics.leeds.ac.uk/shark/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174, @@ -296604,7 +307457,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for biotools:primaryContact "G. Pesole" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -296624,7 +307477,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for sc:url "https://github.com/metashot/prok-quality" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3174 ; @@ -296642,7 +307495,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for biotools:primaryContact "Richter DC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation ; @@ -296657,7 +307510,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for sc:url "https://www.hsph.harvard.edu/skat/metaskat/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3837 ; @@ -296676,7 +307529,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for biotools:primaryContact "Peer Bork" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -296699,38 +307552,38 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3174 ; @@ -296749,7 +307602,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622 ; @@ -296763,7 +307616,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for biotools:primaryContact "Michael Schatz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3172, @@ -296780,7 +307633,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for biotools:primaryContact "Tim Ebbels" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3542 ; @@ -296794,7 +307647,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for biotools:primaryContact "Hoque Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3174, @@ -296810,7 +307663,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for sc:url "http://metastats.cbcb.umd.edu/detection.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3307 ; sc:author "Tobias Hamp" ; @@ -296829,7 +307682,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for biotools:primaryContact "Rostlab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3168 ; @@ -296842,7 +307695,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for sc:url "http://bioinform.github.io/metasv/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0196, @@ -296858,17 +307711,11 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for sc:operatingSystem "Linux" ; sc:url "http://cssb.biology.gatech.edu/skolnick/webservice/MetaTASSER/index.html" . - a sc:SoftwareApplication ; - sc:description "CD Genomics provides full metatranscriptomic sequencing service package including sample standardization, library construction, Hiseq sequencing, raw data alignment, down-stream bioinformatics processing and statistical analysis. We can tailor this pipeline to your research interest. If you have additional requirements or questions, please feel free to contact us, our specialists are more than happy to assist you." ; - sc:name "Metatranscriptomic Sequencing" ; - sc:url "https://www.cd-genomics.com/Metatranscriptomic-Sequencing.html" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -296891,7 +307738,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for sc:url "https://github.com/BGI-Qingdao/MetaTrass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293, @@ -296907,7 +307754,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for sc:url "http://metasystems.riken.jp/visualization/treemap/index.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3305 ; @@ -296923,7 +307770,7 @@ MetaRon (Metagenomic opeRon prediction pipeline) is a computational workflow for biotools:primaryContact "Pantelis G. Bagos, Ph.D." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -296951,7 +307798,7 @@ METATRYP allows users to investigate the occurrence of tryptic peptides within t sc:url "https://metatryp.whoi.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -296971,7 +307818,7 @@ The MetaTX is aimed for plotting the transcriptomic distribution of RNA-related sc:url "https://github.com/yue-wang-biomath/MetaTX.1.0" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2885, @@ -296993,7 +307840,7 @@ metaVaR is a R package developed for population genomic analyses based on varian sc:url "https://github.com/madoui/MetaVaR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -297005,7 +307852,7 @@ metaVaR is a R package developed for population genomic analyses based on varian sc:url "http://metavelvet.dna.bio.keio.ac.jp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -297030,7 +307877,7 @@ metaVaR is a R package developed for population genomic analyses based on varian sc:url "http://www.dna.bio.keio.ac.jp/metavelvet-dl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -297049,7 +307896,7 @@ metaVaR is a R package developed for population genomic analyses based on varian biotools:primaryContact "Christophe Antoniewski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697, @@ -297068,7 +307915,7 @@ metaVaR is a R package developed for population genomic analyses based on varian sc:url "http://metaviz.cbcb.umd.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation , @@ -297088,7 +307935,7 @@ metaVaR is a R package developed for population genomic analyses based on varian biotools:primaryContact "Hector Corrada Bravo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0621, @@ -297107,7 +307954,7 @@ MetaWorks consists of a Conda environment and Snakemake pipeline that is meant t sc:url "https://github.com/terrimporter/MetaWorks" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3673, @@ -297129,7 +307976,7 @@ MetaWorks consists of a Conda environment and Snakemake pipeline that is meant t "James Taylor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3172, @@ -297149,7 +307996,7 @@ MetaWorks consists of a Conda environment and Snakemake pipeline that is meant t biotools:primaryContact "Bo Wen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3174, @@ -297167,7 +308014,7 @@ MetaWorks consists of a Conda environment and Snakemake pipeline that is meant t biotools:primaryContact "Johan Bengtsson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0637, @@ -297184,7 +308031,7 @@ MetaWorks consists of a Conda environment and Snakemake pipeline that is meant t sc:url "http://microbiology.se/software/metaxa2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3071, @@ -297198,8 +308045,52 @@ MetaWorks consists of a Conda environment and Snakemake pipeline that is meant t sc:softwareVersion "1.0-beta" ; sc:url "https://github.com/SouthGreenPlatform/metaXplor" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_3170, + edam:topic_3308, + edam:topic_3320, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8728262", + "pubmed:34718719" ; + sc:description "A database for gene expression and alternative splicing profiles and their analyses based on 53 615 public RNA-seq samples in 72 metazoan species." ; + sc:featureList edam:operation_0224, + edam:operation_0264, + edam:operation_0314, + edam:operation_3431, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MetazExp" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bioinfo.njau.edu.cn/metazExp/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0097, + edam:topic_0099, + edam:topic_3125, + edam:topic_3534 ; + sc:citation , + "pubmed:35695777" ; + sc:description "A Software Tool for Detection of Interaction between Metal Ion-RNA Base Pairs." ; + sc:featureList edam:operation_1834, + edam:operation_3898, + edam:operation_3903 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MetBP" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/computational-biology/metbp" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -297216,7 +308107,7 @@ MetaWorks consists of a Conda environment and Snakemake pipeline that is meant t biotools:primaryContact "Zheng-Jiang Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -297232,7 +308123,7 @@ This repository contains code and datasets used for the article Using Out-of-Bat sc:url "https://github.com/mbongaerts/Metchalizer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -297252,7 +308143,7 @@ This repository contains code and datasets used for the article Using Out-of-Bat biotools:primaryContact "Thomas Naake" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3050, edam:topic_3308, @@ -297267,7 +308158,7 @@ This repository contains code and datasets used for the article Using Out-of-Bat sc:url "http://metdb.sb-roscoff.fr/metdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0602, @@ -297285,7 +308176,7 @@ This repository contains code and datasets used for the article Using Out-of-Bat biotools:primaryContact "Alla Karnovsky" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3407 ; @@ -297301,7 +308192,7 @@ This repository contains code and datasets used for the article Using Out-of-Bat biotools:primaryContact "Dr. Jason A. Papin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -297322,7 +308213,7 @@ MetENP is a R package that enables detection of significant metabolites from met sc:url "https://github.com/metabolomicsworkbench/MetENP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3306, @@ -297338,16 +308229,36 @@ This product is developed, managed and maintained by Theo Baracchini and part of sc:name "Meteolakes" ; sc:url "http://meteolakes.ch" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_3172, + edam:topic_3520 ; + sc:citation , + "pubmed:34859662" ; + sc:description "Metabolomics Explorer Application for Natural Product Discovery." ; + sc:featureList edam:operation_0337, + edam:operation_3803, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:name "MetEx" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://mo.princeton.edu/MetEx/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service", "Workbench" ; @@ -297372,20 +308283,21 @@ This product is developed, managed and maintained by Theo Baracchini and part of ; sc:softwareVersion "2.26", "2.27", - "2.28" ; + "2.28", + "2.30" ; sc:url "http://www.metexplore.fr/" ; biotools:primaryContact . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3172 ; sc:citation , @@ -297411,14 +308323,13 @@ This product is developed, managed and maintained by Theo Baracchini and part of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3391 ; sc:citation ; @@ -297433,7 +308344,7 @@ This product is developed, managed and maintained by Theo Baracchini and part of sc:url "http://msbi.ipb-halle.de/MetFragBeta/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3172 ; @@ -297447,19 +308358,8 @@ This product is developed, managed and maintained by Theo Baracchini and part of sc:softwareHelp ; sc:url "http://msbi.ipb-halle.de/MetFusion/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_0780, - edam:topic_3810 ; - sc:citation , - "pmcid:PMC6659764", - "pubmed:31372208" ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'suppressing methane emissions high-emitting paddies', 'emissions high-emitting paddies', 'high-emitting paddies', 'methane emissions high-emitting' | Rice plants reduce methane emissions in high-emitting paddies | Background: Rice is understood to enhance methane emissions from paddy fields in IPCC guidelines. However, rice actually has two opposite functions related to methane: i) emission enhancement, such as by providing emission pathways (aerenchyma) and methanogenetic substrates; and ii) emission suppression by providing oxygen pathways, which suppress methanogenesis or enhance methane oxidation. The overall role of rice is thus determined by the balance between its enhancing and suppressing functions" ; - sc:name "methane emissions high-emitting paddies" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31372208" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -297480,7 +308380,7 @@ methCancer-gen is a deep neural network-based tool for generating DNA methylome sc:url "https://github.com/cbi-bioinfo/methCancer-gen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Script" ; sc:applicationSubCategory edam:topic_0199, @@ -297499,7 +308399,7 @@ methCancer-gen is a deep neural network-based tool for generating DNA methylome sc:url "https://github.com/84AP/MethCoresProfiler/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -297517,7 +308417,7 @@ methCancer-gen is a deep neural network-based tool for generating DNA methylome biotools:primaryContact "christoph.grunau@methdb.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -297544,7 +308444,7 @@ Ordinal association analyses with genes ranked by gene expression level.""" ; sc:url "https://paoyang.ipmb.sinica.edu.tw/Software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3295, @@ -297558,7 +308458,7 @@ Ordinal association analyses with genes ranked by gene expression level.""" ; sc:url "http://paoyangchen-laboratory.github.io/methgo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, @@ -297580,7 +308480,7 @@ DNA methylation is an important epigenetic modification that plays a critical ro sc:url "https://github.com/ZhouQiangwei/MethHaplo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -297604,7 +308504,7 @@ More Clinical and Experimentally Validated Data.""" ; sc:url "http://awi.cuhk.edu.cn/~MethHC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3295 ; @@ -297623,7 +308523,7 @@ More Clinical and Experimentally Validated Data.""" ; biotools:primaryContact "Aaron Taudt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3168, @@ -297644,7 +308544,7 @@ More Clinical and Experimentally Validated Data.""" ; biotools:primaryContact "Pascal Belleau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0204, @@ -297660,7 +308560,7 @@ More Clinical and Experimentally Validated Data.""" ; sc:url "http://csb.cse.yzu.edu.tw/MethK/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3173, edam:topic_3295 ; @@ -297675,8 +308575,27 @@ More Clinical and Experimentally Validated Data.""" ; sc:url "http://methmarker.mpi-inf.mpg.de/" ; biotools:primaryContact "MethMarker Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_3063, + edam:topic_3382, + edam:topic_3520 ; + sc:citation , + "pubmed:34654919" ; + sc:description "A software tool to capture metadata and generate comprehensive microscopy methods text." ; + sc:featureList edam:operation_3443, + edam:operation_3552 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MethodsJ2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ABIF-McGill/MethodsJ2" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0769, @@ -297694,7 +308613,7 @@ MethPanel is a computational pipeline in Linux operating system with an interact sc:url "https://github.com/thinhong/MethPanel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -297711,7 +308630,7 @@ MethPanel is a computational pipeline in Linux operating system with an interact biotools:primaryContact "Bernie Pope" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -297732,7 +308651,7 @@ MethPanel is a computational pipeline in Linux operating system with an interact biotools:primaryContact "Helena Carén" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3295 ; @@ -297748,7 +308667,7 @@ MethPanel is a computational pipeline in Linux operating system with an interact biotools:primaryContact "MethPipe Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -297777,7 +308696,7 @@ methplotlib [-h] [-v] -m METHYLATION [METHYLATION ...] -n NAMES""" ; sc:url "https://github.com/wdecoster/methplotlib" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, @@ -297800,7 +308719,7 @@ Epigenome-wide association studies (EWAS) detects a large number of DNA methylat sc:url "https://bioconductor.org/packages/MethReg/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3295, @@ -297823,14 +308742,14 @@ Bedgraph files generated by BS pipelines often come in various flavors. Critical a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1921" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -297849,7 +308768,7 @@ Bedgraph files generated by BS pipelines often come in various flavors. Critical biotools:primaryContact "Muhammad Ahmer Jamil" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3295, @@ -297869,7 +308788,7 @@ Bedgraph files generated by BS pipelines often come in various flavors. Critical biotools:primaryContact "Arie Zackay" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0654, @@ -297889,7 +308808,7 @@ Bedgraph files generated by BS pipelines often come in various flavors. Critical biotools:primaryContact "Pan Du" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -297911,7 +308830,7 @@ Bedgraph files generated by BS pipelines often come in various flavors. Critical sc:url "https://rstudio-prd-c1.pmacs.upenn.edu/methyl-eQTL/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -297942,7 +308861,7 @@ DNAMethylation, MethylSeq, MethylationArray, Microarray, Sequencing, Software, W sc:url "https://github.com/stephaniehicks/methylCC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_3170, @@ -297965,7 +308884,7 @@ DNAMethylation, MethylSeq, MethylationArray, Microarray, Sequencing, Software, W biotools:primaryContact "Xu Ren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0654, @@ -297983,18 +308902,18 @@ DNAMethylation, MethylSeq, MethylationArray, Microarray, Sequencing, Software, W a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3117" ; - sc:name "Microarray hybridisation data" ; - sc:sameAs "http://edamontology.org/data_3117" ] ; + sc:additionalType "http://edamontology.org/data_3117" ; + sc:encodingFormat "http://edamontology.org/format_3578" ; + sc:name "Microarray hybridisation data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -298016,20 +308935,8 @@ DNAMethylation, MethylSeq, MethylationArray, Microarray, Sequencing, Software, W sc:url "http://bioconductor.org/packages/release/bioc/html/MethylAid.html" ; biotools:primaryContact "M. van Iterson" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3295, - edam:topic_3518, - edam:topic_3674 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'Infinium Methylation450K BeadChip Infinium methylationEPIC', 'cartilage', 'CpG', 'Infinium Methylation450K' | Correlation of Infinium HumanMethylation450K and MethylationEPIC BeadChip arrays in cartilage | Abstract Background DNA methylation of CpG sites is commonly measured using Illumina Infinium BeadChip platforms. The Infinium MethylationEPIC array has replaced the Infinium Methylation450K array. The two arrays use the same technology, with the EPIC array assaying 865859 CpG sites, almost double the number of sites present on the 450K array. In this study, we compare DNA methylation values of shared CpGs of the same human cartilage samples assayed using both platforms. Methods DNA methylation was measured in 21 human cartilage samples using the Illumina Infinium Methylation450K BeadChip and the Infinium methylationEPIC array" ; - sc:featureList edam:operation_0417, - edam:operation_3206, - edam:operation_3207 ; - sc:name "methylation" ; - sc:url "https://doi.org/10.1101/733204" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2640, @@ -298049,7 +308956,7 @@ Although genome-wide DNA methylomes have demonstrated their clinical value as re sc:url "https://platform.stjude.cloud/workflows/methylation-to-activity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0654, @@ -298067,7 +308974,7 @@ Although genome-wide DNA methylomes have demonstrated their clinical value as re sc:url "https://github.com/isglobal-brge/methylclock" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -298087,14 +308994,14 @@ Although genome-wide DNA methylomes have demonstrated their clinical value as re a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2854" ; - sc:name "Position-specific scoring matrix" ; - sc:sameAs "http://edamontology.org/data_2854" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2854" ; + sc:encodingFormat "http://edamontology.org/format_3583" ; + sc:name "Position-specific scoring matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3173 ; sc:description "A (mostly) universal methylation extractor for BS-seq experiments." ; @@ -298109,7 +309016,7 @@ Although genome-wide DNA methylomes have demonstrated their clinical value as re sc:url "https://github.com/dpryan79/MethylDackel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -298128,7 +309035,7 @@ Although genome-wide DNA methylomes have demonstrated their clinical value as re "Ricardo Lebrón" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -298143,7 +309050,7 @@ Although genome-wide DNA methylomes have demonstrated their clinical value as re biotools:primaryContact "Hector Corrada Bravo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3295 ; sc:citation ; @@ -298156,7 +309063,7 @@ Although genome-wide DNA methylomes have demonstrated their clinical value as re sc:url "http://stephenslab.uchicago.edu/software.html#eqtlbma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3168, @@ -298176,7 +309083,7 @@ Although genome-wide DNA methylomes have demonstrated their clinical value as re biotools:primaryContact "Astrid Deschenes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0654, @@ -298198,7 +309105,7 @@ Although genome-wide DNA methylomes have demonstrated their clinical value as re biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3295, @@ -298218,14 +309125,14 @@ Although genome-wide DNA methylomes have demonstrated their clinical value as re a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -298245,7 +309152,7 @@ Although genome-wide DNA methylomes have demonstrated their clinical value as re biotools:primaryContact "Yan Zhou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3173, @@ -298266,7 +309173,7 @@ Although genome-wide DNA methylomes have demonstrated their clinical value as re biotools:primaryContact "Fatemeh G. Haghighi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0654, @@ -298287,8 +309194,27 @@ Although genome-wide DNA methylomes have demonstrated their clinical value as re sc:url "http://bioconductor.org/packages/release/bioc/html/methylPipe.html" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0654, + edam:topic_0769, + edam:topic_3295 ; + sc:citation ; + sc:description "Modular and reproducible pipelines for multi-omics predictors of complex traits." ; + sc:featureList edam:operation_0417, + edam:operation_3503, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MethylPipeR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/marioni-group/MethylPipeR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3176, @@ -298306,7 +309232,7 @@ methylscaper is a Shiny app for visualizing methylation data. Install the packag sc:url "https://github.com/rhondabacher/acmethylscaper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0654, @@ -298328,7 +309254,7 @@ methylscaper is a Shiny app for visualizing methylation data. Install the packag biotools:primaryContact "Lukas Burger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -298345,7 +309271,7 @@ methylscaper is a Shiny app for visualizing methylation data. Install the packag biotools:primaryContact "Maureen A. Sartor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -298360,7 +309286,7 @@ methylscaper is a Shiny app for visualizing methylation data. Install the packag sc:url "http://people.oregonstate.edu/~housemae/software/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0769, @@ -298385,7 +309311,7 @@ To process a large number of WGBS samples in a consistent, documented and reprod sc:url "https://github.com/jlab-code/MethylStar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0654, @@ -298405,7 +309331,7 @@ To process a large number of WGBS samples in a consistent, documented and reprod biotools:primaryContact "Sean Davis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3125, edam:topic_3168, @@ -298422,7 +309348,7 @@ To process a large number of WGBS samples in a consistent, documented and reprod biotools:primaryContact "Ian Carr." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3295, edam:topic_3674 ; @@ -298441,7 +309367,7 @@ To process a large number of WGBS samples in a consistent, documented and reprod biotools:primaryContact "Nima Hejazi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3071, @@ -298457,7 +309383,7 @@ To process a large number of WGBS samples in a consistent, documented and reprod biotools:primaryContact "Michael Snyder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0154, @@ -298476,7 +309402,7 @@ MetIDfyR is an open-source, cross-platform and versatile R script to predict and sc:url "https://github.com/agnesblch/MetIDfyR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3172 ; sc:citation ; @@ -298492,7 +309418,7 @@ MetIDfyR is an open-source, cross-platform and versatile R script to predict and sc:url "http://www.metitree.nl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3174, @@ -298511,7 +309437,7 @@ MetIDfyR is an open-source, cross-platform and versatile R script to predict and biotools:primaryContact "Julliette Hayer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3297, @@ -298528,7 +309454,7 @@ MetIDfyR is an open-source, cross-platform and versatile R script to predict and biotools:primaryContact "Julio Vera" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3172 ; sc:citation , @@ -298544,7 +309470,7 @@ MetIDfyR is an open-source, cross-platform and versatile R script to predict and biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3518 ; @@ -298557,8 +309483,31 @@ MetIDfyR is an open-source, cross-platform and versatile R script to predict and sc:url "http://biomath.med.uth.gr/default.aspx?id=232164AC-9C6B-4A27-A595-2A22C35B6260" ; biotools:primaryContact "Elias Zintzaras" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0153, + edam:topic_0199, + edam:topic_0203, + edam:topic_3305, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9118130", + "pubmed:35334221" ; + sc:description "METRO is a new computational method that leverages expression data collected from multiple genetic ancestries to enhance Transcriptome-wide association studies (TWAS)." ; + sc:featureList edam:operation_0282, + edam:operation_2495, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "METRO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/zhengli09/METRO" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0736, @@ -298579,7 +309528,7 @@ METROID (Morphological Extraction of Transmembrane potential from Regions Of Int sc:url "https://doi.org/10.6084/m9.figshare.11344046.v1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -298596,7 +309545,7 @@ METROID (Morphological Extraction of Transmembrane potential from Regions Of Int biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3172 ; sc:description "A diverse collection of metabolomics related statistical tools." ; @@ -298613,7 +309562,7 @@ METROID (Morphological Extraction of Transmembrane potential from Regions Of Int biotools:primaryContact "Gooitzen Zwanenburg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3172 ; @@ -298629,7 +309578,7 @@ METROID (Morphological Extraction of Transmembrane potential from Regions Of Int biotools:primaryContact "Choi H" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3305, edam:topic_3324 ; @@ -298652,7 +309601,7 @@ ERİŞKİN YOĞUN BAKIM DOLULUK ORANI.""" ; sc:url "https://github.com/kansil/covid-19" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation ; @@ -298670,10 +309619,9 @@ ERİŞKİN YOĞUN BAKIM DOLULUK ORANI.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3173, edam:topic_3308 ; @@ -298690,7 +309638,7 @@ ERİŞKİN YOĞUN BAKIM DOLULUK ORANI.""" ; sc:url "http://www.mexpress.be" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0625, @@ -298711,7 +309659,7 @@ ERİŞKİN YOĞUN BAKIM DOLULUK ORANI.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -298728,7 +309676,7 @@ R program to implement MF-TOWmuT, a new method developed for large-scale genome sc:url "https://github.com/gaochengPRC/MF-TOWmuT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170 ; @@ -298747,7 +309695,7 @@ R program to implement MF-TOWmuT, a new method developed for large-scale genome biotools:primaryContact "Kieran Campbell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "An MATLAB implementation of the (Mutliple) FAst MEdoid Selection algorithm (MFAMES)." ; sc:featureList edam:operation_3432 ; @@ -298761,7 +309709,7 @@ R program to implement MF-TOWmuT, a new method developed for large-scale genome biotools:primaryContact "Stephen Pratt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814, @@ -298776,7 +309724,7 @@ R program to implement MF-TOWmuT, a new method developed for large-scale genome biotools:primaryContact "Zhi Liang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -298791,7 +309739,7 @@ Ultrahigh resolution mass spectrometry is widely used for nontargeted analysis o sc:url "https://github.com/skschum/MFAssignR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0780, @@ -298814,7 +309762,7 @@ Ultrahigh resolution mass spectrometry is widely used for nontargeted analysis o sc:url "http://mfcis.online/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168, @@ -298835,7 +309783,7 @@ There are six directories. 1.program This directory contains three files that ha sc:url "https://github.com/BDanalysis/mfcnv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -298853,7 +309801,7 @@ There are six directories. 1.program This directory contains three files that ha biotools:primaryContact "LI Haipeng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0634, @@ -298870,7 +309818,7 @@ There are six directories. 1.program This directory contains three files that ha biotools:primaryContact "Dr. Lukasz Kurgan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -298888,7 +309836,7 @@ The Male Fertility Gene Atlas (MFGA) is a public platform for providing a fast, sc:url "https://mfga.uni-muenster.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269, @@ -298904,7 +309852,7 @@ The Male Fertility Gene Atlas (MFGA) is a public platform for providing a fast, biotools:primaryContact "David Curtis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -298925,7 +309873,7 @@ The Male Fertility Gene Atlas (MFGA) is a public platform for providing a fast, "Dr. Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2815, @@ -298943,7 +309891,7 @@ The Male Fertility Gene Atlas (MFGA) is a public platform for providing a fast, "Hicham Charoute" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -298966,34 +309914,34 @@ The Male Fertility Gene Atlas (MFGA) is a public platform for providing a fast, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3710" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3713" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3713" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -299014,8 +309962,21 @@ The Male Fertility Gene Atlas (MFGA) is a public platform for providing a fast, sc:softwareHelp ; sc:url "http://mfpaq.sourceforge.net" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0622 ; + sc:description "FASTA/FASTQ extractor for multiple sets of read names" ; + sc:featureList edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "mfqe" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:url "https://github.com/wwood/mfqe" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3172 ; sc:citation ; @@ -299031,14 +309992,13 @@ The Male Fertility Gene Atlas (MFGA) is a public platform for providing a fast, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2799" ; - sc:name "Gene ID (MfunGD)" ; - sc:sameAs "http://edamontology.org/data_2799" ] ; + sc:additionalType "http://edamontology.org/data_2799" ; + sc:name "Gene ID (MfunGD)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation , @@ -299054,7 +310014,7 @@ The Male Fertility Gene Atlas (MFGA) is a public platform for providing a fast, sc:url "http://bio2rdf.org/describe/?uri=http://bio2rdf.org/lsr:mfungd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -299075,8 +310035,29 @@ The Male Fertility Gene Atlas (MFGA) is a public platform for providing a fast, sc:url "http://bioconductor.org/packages/release/bioc/html/Mfuzz.html" ; biotools:primaryContact "Matthias Futschik" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_0804, + edam:topic_3360, + edam:topic_3512 ; + sc:citation , + "pubmed:35809855" ; + sc:description "Comprehensive analysis of ncRNA involvement in brain microglia immunology." ; + sc:featureList edam:operation_0314, + edam:operation_2422, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:name "MG-ncRexplorer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bio-bigdata.hrbmu.edu.cn/MG-ncRexplorer/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3293 ; @@ -299090,7 +310071,7 @@ The Male Fertility Gene Atlas (MFGA) is a public platform for providing a fast, biotools:primaryContact "F. Meyer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -299104,7 +310085,7 @@ The Male Fertility Gene Atlas (MFGA) is a public platform for providing a fast, sc:url "http://bibiserv.techfak.uni-bielefeld.de/mga/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -299123,7 +310104,7 @@ The Male Fertility Gene Atlas (MFGA) is a public platform for providing a fast, sc:url "http://alggen.lsi.upc.es/recerca/align/mgcat/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -299138,8 +310119,33 @@ The Male Fertility Gene Atlas (MFGA) is a public platform for providing a fast, sc:url "http://sonnhammer.sbc.su.se/download/software/MGclus/Readme" ; biotools:primaryContact "Erik L. L. Sonnhammer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0203, + edam:topic_0659, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8760670", + "pubmed:35030988" ; + sc:description "A total RNA-seq quantification tool to address multi-mapping and multi-overlapping alignments ambiguity in non-coding transcripts." ; + sc:featureList edam:operation_0314, + edam:operation_3436, + edam:operation_3563, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MGcount" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/hitaandrea/MGcount" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -299163,7 +310169,7 @@ The Male Fertility Gene Atlas (MFGA) is a public platform for providing a fast, sc:url "http://www.informatics.jax.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3305, @@ -299182,7 +310188,7 @@ MGDrivE 2 is a new simulation platform which extends capabilities from the MGDri sc:url "https://github.com/MarshallLab/MGDrivE/tree/master/MGDrivE2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -299197,7 +310203,7 @@ MGDrivE 2 is a new simulation platform which extends capabilities from the MGDri biotools:primaryContact "Shiquan Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:20435682" ; @@ -299214,18 +310220,18 @@ MGDrivE 2 is a new simulation platform which extends capabilities from the MGDri a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ], + sc:additionalType "http://edamontology.org/data_1033" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Ensembl gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2298" ; - sc:name "Gene ID (HGNC)" ; - sc:sameAs "http://edamontology.org/data_2298" ], + sc:additionalType "http://edamontology.org/data_3274" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "MGI accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3274" ; - sc:name "MGI accession" ; - sc:sameAs "http://edamontology.org/data_3274" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2298" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene ID (HGNC)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3697 ; @@ -299243,7 +310249,7 @@ MGDrivE 2 is a new simulation platform which extends capabilities from the MGDri sc:url "https://ciernialab.shinyapps.io/MGEnrichmentApp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0122, edam:topic_0621, @@ -299257,7 +310263,7 @@ MGDrivE 2 is a new simulation platform which extends capabilities from the MGDri sc:url "http://darwin.informatics.indiana.edu/cgi-bin/evolution/ltr.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -299277,7 +310283,7 @@ MGF proteins are classified into 31 groups based on sequence homology. Three, ni sc:url "http://www.computationalbiology.cn/MGF/home.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -299296,7 +310302,7 @@ MGF proteins are classified into 31 groups based on sequence homology. Three, ni biotools:primaryContact "Khadija El Amrani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -299316,7 +310322,7 @@ MGF proteins are classified into 31 groups based on sequence homology. Three, ni biotools:primaryContact "Khadija El Amrani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation , @@ -299333,14 +310339,13 @@ MGF proteins are classified into 31 groups based on sequence homology. Three, ni a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Data reference" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation , @@ -299356,7 +310361,7 @@ MGF proteins are classified into 31 groups based on sequence homology. Three, ni sc:url "http://www.informatics.jax.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -299377,7 +310382,7 @@ MGF proteins are classified into 31 groups based on sequence homology. Three, ni biotools:primaryContact "Lee S. Katz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3174 ; @@ -299396,7 +310401,7 @@ MGF proteins are classified into 31 groups based on sequence homology. Three, ni "Thomas Sicheritz-Pontén" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3277, edam:topic_3474, @@ -299418,7 +310423,7 @@ A glycolipid mass spectrometry technology has the potential to accurately identi sc:url "https://CRAN.R-project.org/package=MGMS2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -299439,8 +310444,30 @@ A glycolipid mass spectrometry technology has the potential to accurately identi sc:url "https://www.mathworks.com/matlabcentral/fileexchange/14635-mgraph" ; biotools:primaryContact "Junbai Wang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0611, + edam:topic_0625, + edam:topic_2885, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9327374", + "pubmed:35896974" ; + sc:description "Multivariate estimation of factor structures of complex traits using SNP-based genomic relationships." ; + sc:featureList edam:operation_0331, + edam:operation_3196, + edam:operation_3661 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MGREML" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/devlaming/mgreml/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -299459,7 +310486,7 @@ A glycolipid mass spectrometry technology has the potential to accurately identi biotools:primaryContact "Sebastian Bauer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0157, @@ -299475,7 +310502,7 @@ A glycolipid mass spectrometry technology has the potential to accurately identi biotools:primaryContact "Boas Pucker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053 ; @@ -299491,7 +310518,7 @@ A glycolipid mass spectrometry technology has the potential to accurately identi biotools:primaryContact "Pashupati Mishra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0196, @@ -299517,7 +310544,7 @@ A glycolipid mass spectrometry technology has the potential to accurately identi sc:url "https://mgtdb.unsw.edu.au/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -299532,7 +310559,7 @@ A glycolipid mass spectrometry technology has the potential to accurately identi biotools:primaryContact "Jose R. Valverde" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -299553,8 +310580,31 @@ A glycolipid mass spectrometry technology has the potential to accurately identi "Windows" ; sc:url "http://www.informatics.jax.org/mgv" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0634, + edam:topic_2885, + edam:topic_3172, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9230867", + "pubmed:35736459" ; + sc:description "Linking SNPs, Genes, Metabolites, and Diseases for Functional Insights." ; + sc:featureList edam:operation_2436, + edam:operation_3196, + edam:operation_3661, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:name "mGWAS-Explorer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.mgwas.ca" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0091, @@ -299573,26 +310623,22 @@ A glycolipid mass spectrometry technology has the potential to accurately identi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_3284" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_3028" ; + sc:name "Taxonomy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation , @@ -299613,10 +310659,10 @@ A glycolipid mass spectrometry technology has the potential to accurately identi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -299635,7 +310681,7 @@ A glycolipid mass spectrometry technology has the potential to accurately identi sc:url "https://jiantaoshi.github.io/mHap/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2830 ; @@ -299652,7 +310698,7 @@ A glycolipid mass spectrometry technology has the potential to accurately identi "Sébastien Giguère" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -299672,11 +310718,11 @@ A glycolipid mass spectrometry technology has the potential to accurately identi biotools:primaryContact "Kang Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0804, - edam:topic_2830 ; + edam:topic_3344 ; sc:citation "pubmed:18450002" ; sc:description "SVM based method for prediction of promiscuous MHC class II binding peptides. The average accuracy of SVM based method for 42 alleles is ~80%. The performence of the method was poorer for few allele due to smaller size of dataset. The performence of the method was tested through 5-fold cross-validation." ; sc:featureList edam:operation_0252 ; @@ -299685,11 +310731,11 @@ A glycolipid mass spectrometry technology has the potential to accurately identi "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/mhc2pred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/mhc2pred/" ; biotools:primaryContact "Dr. G.P.S. Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -299708,20 +310754,35 @@ MHCAttnNet uses a Bi-directional Long Short Term Memory (Bi-LSTM) styled encoder sc:name "MHCAttnNet" ; sc:url "https://github.com/gopuvenkat/MHCAttnNet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:12651731" ; + sc:description "The MHCBN is a curated database consisting of detailed information about Major Histocompatibility Complex (MHC) Binding, Non-binding peptides and T-cell epitopes. The version 4.0 of database provides information about peptides interacting with TAP and MHC linked autoimmune diseases." ; + sc:featureList edam:operation_2945 ; + sc:name "MHCBN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/mhcbn/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ] ; + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence motif" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_2006" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2830 ; sc:citation , @@ -299742,7 +310803,7 @@ MHCAttnNet uses a Bi-directional Long Short Term Memory (Bi-LSTM) styled encoder biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0804, @@ -299761,7 +310822,7 @@ MHCAttnNet uses a Bi-directional Long Short Term Memory (Bi-LSTM) styled encoder biotools:primaryContact "Timothy J. O'Donnell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -299783,7 +310844,7 @@ The knowledge of MHC II binding peptides is highly desired in immunological rese sc:url "http://tools.iedb.org/auto_bench/mhcii/weekly/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0749, @@ -299800,8 +310861,27 @@ The knowledge of MHC II binding peptides is highly desired in immunological rese sc:url "http://www.ddg-pharmfac.net/mhcpred/MHCPred/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0218, + edam:topic_2830, + edam:topic_3474 ; + sc:citation , + "pubmed:35443027" ; + sc:description "Pan-specific peptide-MHC class I binding prediction through transfer learning with label-agnostic protein sequences." ; + sc:featureList edam:operation_0252, + edam:operation_0416 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MHCRoBERTa" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/FuxuWang/MHCRoBERTa" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -299820,7 +310900,7 @@ The knowledge of MHC II binding peptides is highly desired in immunological rese sc:url "https://github.com/PGB-LIV/MHCVision" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -299844,7 +310924,7 @@ MhcVizPipe connects the bioinformatic tools NetMHCpan, NetMHCIIpan and GibbsClus sc:url "https://github.com/CaronLab/MhcVizPipe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -299868,7 +310948,7 @@ In order to have an integrated tool, we developed a Graphical User Interface for sc:url "https://github.com/MHi-C" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -299884,7 +310964,7 @@ Package: MHRWR Type: Package Title: MHRWR Prediction of lncRNA-disease associati sc:url "https://github.com/yangyq505/MHRWR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3382, @@ -299902,7 +310982,7 @@ Multiple instance learning based classification for MSI data.""" ; sc:url "https://github.com/Vitek-Lab/mi-CNN_MSI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -299923,7 +311003,7 @@ Multiple instance learning based classification for MSI data.""" ; sc:url "https://research.cchmc.org/mershalab/MI-MAAP/login/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3524, edam:topic_3697 ; @@ -299940,7 +311020,7 @@ Multiple instance learning based classification for MSI data.""" ; biotools:primaryContact "Matthew J. Wade" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -299954,27 +311034,8 @@ Multiple instance learning based classification for MSI data.""" ; sc:name "miComplete" ; sc:url "https://bitbucket.org/evolegiolab/micomplete" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_0749, - edam:topic_2229, - edam:topic_3519 ; - sc:citation , - "pubmed:31880296" ; - sc:description """miR-206 Inhibits Cell Proliferation and Extracellular Matrix Accumulation by Targeting Hypoxia-Inducible Factor 1-alpha (HIF-1α) in Mesangial Cells Treated with High Glucose. - -BACKGROUND The goal of this study was to investigate the expression of miR-206 in human glomerular mesangial cells (hMCs) treated by exposure to high glucose (HG) levels, to assess the influence of miR-206 on the proliferation and extracellular matrix (ECM) deposition of hMCs, and to investigate the potential mechanisms of action. MATERIAL AND METHODS The level of miR-206 was detected by RT-qPCR. MTT assay and colony formation assay were used to assess hMCs cell proliferation ability. Western blotting was carried out to measure the expression of related proteins. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'hMCs miR-206', 'miR-206 hMCs', 'miR-206 mimics miR-206', 'regulated miR-206 hMCs miR-206'""" ; - sc:featureList edam:operation_0463, - edam:operation_3431 ; - sc:name "miR-206 hMCs miR-206" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31880296" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0625, edam:topic_0634, @@ -299994,7 +311055,7 @@ microRNAs (miRNAs) have been established as critical regulators of the pathogene sc:url "http://mir2diabetes.yoonlab.or.kr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0659, @@ -300009,7 +311070,7 @@ microRNAs (miRNAs) have been established as critical regulators of the pathogene sc:url "http://mirdb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -300028,64 +311089,8 @@ microRNAs (miRNAs) have been established as critical regulators of the pathogene sc:url "http://mirdrn.ncu.edu.tw/mirdrn/" ; biotools:primaryContact "Hoong-Chien Lee" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_3170, - edam:topic_3316, - edam:topic_3512, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6836743", - "pubmed:31645363" ; - sc:description """Dynamics of microRNA expression during mouse prenatal development. - -miRNAtap: microRNA Targets - Aggregated Predictions. - -The package facilitates implementation of workflows requiring miRNA predictions, it allows to integrate ranked miRNA target predictions from multiple sources available online and aggregate them with various methods which improves quality of predictions above any of the single sources. Currently predictions are available for Homo sapiens, Mus musculus and Rattus norvegicus (the last one through homology translation). - -# Running maSigPro on miRNAs in hpc. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/mirnatap (BIOCONDUCTOR.ORG/packages/release/bioc/html/miRNAtap.html). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'organ-specific', 'miRNAs' (bio.tools/miRNAs), 'embryonic'""" ; - sc:featureList edam:operation_0463, - edam:operation_3192, - edam:operation_3436, - edam:operation_3792 ; - sc:license "GPL-2.0" ; - sc:name "miRNA" ; - sc:url "https://bioconductor.org/packages/release/bioc/html/miRNAtap.html" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0659, - edam:topic_2640, - edam:topic_3170, - edam:topic_3512 ; - sc:citation , - , - "pmcid:PMC6889159", - "pubmed:31792281", - "pubmed:31860057" ; - sc:description """The integrative knowledge base for miRNA-mRNA expression in colorectal cancer. - -Complexity measures of the mature miRNA for improving pre-miRNAs prediction. - -This is a distribution of the source code used in:. - -Jonathan Raad, Georgina Stegmayer and Diego H. Milone, "Complexity measures of the mature for improving pre-miRNAs prediction". - -Welcome to the miRNA-mRNA expression atlas: a knowledge base for studying the expression of miRNAs and their target genes in colorectal cancer. - -We performed an integrative analysis of miRNA-target gene interactions (MTI) on high-throughput molecular profiling of 295 CRC samples obtained from The Cancer Genome Atlas (TCGA). Our study results in 26,963 correlated MTIs, with focus on the negatively strong correlated MTIs. Our analysis provides a catalogue of MTIs that can serve as a starting point in testing more targeted hypotheses and dealing with CRC functional experiments""" ; - sc:featureList edam:operation_0463, - edam:operation_3463, - edam:operation_3792 ; - sc:name "miRNA_autogenerated" ; - sc:url "https://mirna-coadread.omics.si/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -300106,22 +311111,8 @@ We performed an integrative analysis of miRNA-target gene interactions (MTI) on sc:softwareHelp ; sc:url "http://mirnamotif.ibch.poznan.pl" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_3170, - edam:topic_3518 ; - sc:citation , - "pubmed:31372646" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'EISA', 'EMT', 'EMT-regulatory', 'miR-200c' | Extensive transcriptional responses are co-ordinated by microRNAs as revealed by Exon-Intron Split Analysis (EISA) | A collection of scripts associated with the manuscript Cursons et al (2017) - Post-transcriptional control of EMT is coordinated through distributed, combinatorial targeting by multiple microRNAs | Combinatorial miRNAs in breast cancer EMT" ; - sc:featureList edam:operation_0463, - edam:operation_3792, - edam:operation_3800 ; - sc:license "MIT" ; - sc:name "miRNAs" ; - sc:url "https://github.com/DavisLaboratory/Combinatorial_miRNAs" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -300138,7 +311129,7 @@ Since the initial release of miRPathDB, tremendous progress has been made in the sc:url "https://mpd.bioinf.uni-sb.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -300159,31 +311150,8 @@ As a database, miRTarBase has accumulated more than three hundred and sixty thou sc:name "miRTarBas" ; sc:url "http://mirtarbase.mbc.nctu.edu.tw" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0218, - edam:topic_0659, - edam:topic_0749, - edam:topic_3518, - edam:topic_3794 ; - sc:citation , - "pubmed:31647101" ; - sc:description """updates to the experimentally validated microRNA-target interaction database. - -the experimentally validated microRNA-target interactions database. - -As a database, miRTarBase has accumulated more than three hundred and sixty thousand miRNA-target interactions (MTIs), which are collected by manually surveying pertinent literature after NLP of the text systematically to filter research articles related to functional studies of miRNAs. Generally, the collected MTIs are validated experimentally by reporter assay, western blot, microarray and next-generation sequencing experiments. While containing the largest amount of validated MTIs, the miRTarBase provides the most updated collection by comparing with other similar, previously developed databases. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/mirtarbase. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'miRTarBase 2020'""" ; - sc:featureList edam:operation_0463, - edam:operation_2428, - edam:operation_3792 ; - sc:name "miRTarBase_autogenerated" ; - sc:url "http://miRTarBase.cuhk.edu.cn/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0108, @@ -300207,7 +311175,7 @@ As a database, miRTarBase has accumulated more than three hundred and sixty thou biotools:primaryContact "Translational Bioinformatics Laboratory at CNR-ICAR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0659, @@ -300228,7 +311196,7 @@ As a database, miRTarBase has accumulated more than three hundred and sixty thou biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -300251,7 +311219,7 @@ As a database, miRTarBase has accumulated more than three hundred and sixty thou sc:url "https://github.com/friedlanderlab/mirtrace" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0659, @@ -300271,7 +311239,7 @@ MicroRNAs are conserved, endogenous small RNAs with critical post-transcriptiona sc:url "https://github.com/hendrixlab/miRWoods" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -300295,7 +311263,7 @@ MiRcode provides "whole transcriptome" human microRNA target predictions based o sc:url "http://www.mircode.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -300310,7 +311278,7 @@ MiRcode provides "whole transcriptome" human microRNA target predictions based o sc:url "https://github.com/Amitai88/miRmedon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -300331,7 +311299,7 @@ MiRcode provides "whole transcriptome" human microRNA target predictions based o sc:url "http://bioconductor.org/packages/release/bioc/html/miRspongeR.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -300354,7 +311322,7 @@ A novel method for identifying miRNA synergism using multiple-intervention causa sc:url "https://github.com/zhangjunpeng411/miRsyn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -300373,8 +311341,26 @@ A novel method for identifying miRNA synergism using multiple-intervention causa sc:url "https://wasabi.ddpsc.org/~apps/ta/" ; biotools:primaryContact "Blake C. Meyers" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_3344, + edam:topic_3382, + edam:topic_3474 ; + sc:citation ; + sc:description "An Open Source Standalone Deep Learning Application for Microscopic Image Analysis." ; + sc:featureList edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MIA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/MIAnalyzer/MIA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0219, @@ -300396,8 +311382,54 @@ A novel method for identifying miRNA synergism using multiple-intervention causa sc:url "http://www.ebi.ac.uk/microarray/MIAMExpress/miamexpress.html" ; biotools:primaryContact "Contact Form" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0634, + edam:topic_2640, + edam:topic_3382, + edam:topic_3934 ; + sc:citation , + "pmcid:PMC9344855", + "pubmed:35748713" ; + sc:description "Mutual Information-based Analysis of Multiplex Imaging data." ; + sc:featureList edam:operation_3443, + edam:operation_3463, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MIAMI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sealx017/MIAMI" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0659, + edam:topic_3172, + edam:topic_3173, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9136154", + "pubmed:35664224" ; + sc:description "Human microbiome affect the host epigenome." ; + sc:featureList edam:operation_0463, + edam:operation_2421, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:name "MIAOME" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://miaome.idrblab.net/ttd/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -300418,7 +311450,7 @@ A novel method for identifying miRNA synergism using multiple-intervention causa sc:url "http://miarmaseq.idoproteins.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3385, @@ -300438,7 +311470,7 @@ A novel method for identifying miRNA synergism using multiple-intervention causa biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -300457,8 +311489,37 @@ A novel method for identifying miRNA synergism using multiple-intervention causa sc:url "https://www.mathworks.com/matlabcentral/fileexchange/63402-microscopy-image-browser-2-mib2" ; biotools:primaryContact "Ilya Belevich" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2275, + edam:topic_2814, + edam:topic_3534 ; + sc:citation , + "pubmed:35904542" ; + sc:description "Metal ion-binding site prediction and modeling server." ; + sc:featureList edam:operation_0474, + edam:operation_3898, + edam:operation_3899 ; + sc:isAccessibleForFree true ; + sc:name "MIB2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinfo.cmu.edu.tw/MIB2/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -300476,7 +311537,7 @@ A web application for multi-omics analysis.""" ; sc:url "https://shiny-bird.univ-nantes.fr/app/Mibiomics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2885, @@ -300491,7 +311552,7 @@ A web application for multi-omics analysis.""" ; sc:url "http://github.com/johnathanlo/micRocounter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -300504,7 +311565,7 @@ A web application for multi-omics analysis.""" ; sc:url "https://github.com/aquaskyline/MICA-aligner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3168, @@ -300522,7 +311583,7 @@ A web application for multi-omics analysis.""" ; "Zhang MQ" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3174, @@ -300546,7 +311607,7 @@ A web application for multi-omics analysis.""" ; biotools:primaryContact "Davide Albanese" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0820, @@ -300566,7 +311627,7 @@ A web application for multi-omics analysis.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -300587,7 +311648,7 @@ MICHA (Minimal Information for CHemosensitivity Assay) is a web-based platform t sc:url "https://micha-protocol.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3339, @@ -300605,7 +311666,7 @@ MICHA (Minimal Information for CHemosensitivity Assay) is a web-based platform t biotools:primaryContact "Claudine Medigue" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3382 ; @@ -300625,7 +311686,7 @@ Convert PyMOL files, upload PDB files or submit PDB codes and create a webpage t sc:url "http://michelanglo.sgc.ox.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -300642,7 +311703,7 @@ Convert PyMOL files, upload PDB files or submit PDB codes and create a webpage t biotools:primaryContact "Michele Giugliano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -300660,7 +311721,7 @@ Convert PyMOL files, upload PDB files or submit PDB codes and create a webpage t biotools:primaryContact "Michele Giugliano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0659, @@ -300680,7 +311741,7 @@ Convert PyMOL files, upload PDB files or submit PDB codes and create a webpage t biotools:primaryContact "Jonathon Blake" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0634, @@ -300697,8 +311758,48 @@ Convert PyMOL files, upload PDB files or submit PDB codes and create a webpage t sc:url "https://github.com/ZhangJlab/MICMIC" ; biotools:primaryContact "J. Zhang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_0602, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9231805", + "pubmed:35749381" ; + sc:description "Visualizing and unraveling a microbial network." ; + sc:featureList edam:operation_3432, + edam:operation_3925, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:name "MicNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://micnetapplb-1212130533.us-east-1.elb.amazonaws.com" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_3299, + edam:topic_3697 ; + sc:citation ; + sc:description "Visualizing and deconstructing a microbial network." ; + sc:featureList edam:operation_3432, + edam:operation_3925, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MicNet toolbox" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Labevo/MicNetToolbox" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0199, @@ -300713,26 +311814,8 @@ Convert PyMOL files, upload PDB files or submit PDB codes and create a webpage t sc:softwareHelp ; sc:url "http://mico.ggc.org/MICO/SearchEntry.jsp" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0632, - edam:topic_3370, - edam:topic_3382 ; - sc:citation , - "pmcid:PMC6923132", - "pubmed:31701110" ; - sc:description """an open-source autosampler and fraction collector for automated microfluidic input-output. - -Microfluidic devices are an enabling technology for many labs, facilitating a wide range of applications spanning high-throughput encapsulation, molecular separations, and long-term cell culture. In many cases, however, their utility is limited by a 'world-to-chip' barrier that makes it difficult to serially interface samples with these devices. As a result, many researchers are forced to rely on low-throughput, manual approaches for managing device input and output (IO) of samples, reagents, and effluent. Here, we present a hardware-software platform for automated microfluidic IO (micrIO). The platform, which is uniquely compatible with positive-pressure microfluidics, comprises an 'AutoSipper' for input and a 'Fraction Collector' for output. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'world-to-chip', 'hardware-software'""" ; - sc:featureList edam:operation_0310 ; - sc:name "micrIO" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31701110" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, @@ -300750,24 +311833,47 @@ Microfluidic devices are an enabling technology for many labs, facilitating a wi "Windows" ; sc:url "https://github.com/WU-BIMAC/MicroMetaApp.github.io" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0632, + edam:topic_0769, + edam:topic_2885, + edam:topic_3056, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC8741888", + "pubmed:34997147" ; + sc:description "Automating microsatellite screening and primer design from multi-individual libraries using Micro-Primers." ; + sc:featureList edam:operation_0308, + edam:operation_3196, + edam:operation_3237 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Micro-Primers" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/FilAlves/micro-primers" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2545" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3707" ; - sc:name "Biodiversity data" ; - sc:sameAs "http://edamontology.org/data_3707" ], + sc:additionalType "http://edamontology.org/data_1872" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Taxonomic classification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3272" ; - sc:name "Species tree" ; - sc:sameAs "http://edamontology.org/data_3272" ], + sc:additionalType "http://edamontology.org/data_3272" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Species tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1872" ; - sc:name "Taxonomic classification" ; - sc:sameAs "http://edamontology.org/data_1872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3707" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Biodiversity data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3697 ; sc:author "Erwan Delage" ; @@ -300788,7 +311894,7 @@ Microfluidic devices are an enabling technology for many labs, facilitating a wi . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2885, @@ -300805,7 +311911,7 @@ Microfluidic devices are an enabling technology for many labs, facilitating a wi sc:url "https://sourceforge.net/projects/microanalyzer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3518, @@ -300820,7 +311926,7 @@ Microfluidic devices are an enabling technology for many labs, facilitating a wi sc:url "http://www.lgtc.nl/MaRe/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0102, @@ -300835,7 +311941,7 @@ Microfluidic devices are an enabling technology for many labs, facilitating a wi sc:url "http://microbe.vital-it.ch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0769, @@ -300855,7 +311961,7 @@ MicrobeAnnotator uses an iterative approach to annotate microbial genomes (Bacte sc:url "https://github.com/cruizperez/MicrobeAnnotator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3174, @@ -300871,7 +311977,7 @@ MicrobeAnnotator uses an iterative approach to annotate microbial genomes (Bacte biotools:primaryContact "Bernhard Y Renard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2259, @@ -300890,7 +311996,7 @@ MicrobeAnnotator uses an iterative approach to annotate microbial genomes (Bacte sc:url "https://github.com/alubbock/microbench" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -300913,38 +312019,37 @@ MicrobeAnnotator uses an iterative approach to annotate microbial genomes (Bacte a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2914" ; - sc:name "Sequence features metadata" ; - sc:sameAs "http://edamontology.org/data_2914" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_0870" ; + sc:name "Sequence distance matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1442" ; - sc:name "Phylogenetic tree distances" ; - sc:sameAs "http://edamontology.org/data_1442" ], + sc:additionalType "http://edamontology.org/data_1442" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Phylogenetic tree distances" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0870" ; - sc:name "Sequence distance matrix" ; - sc:sameAs "http://edamontology.org/data_0870" ], + sc:additionalType "http://edamontology.org/data_2914" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Sequence features metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2554" ; + sc:name "Nucleic acid sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3424" ; - sc:name "Raw image" ; - sc:sameAs "http://edamontology.org/data_3424" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "Nucleic acid sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3424" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Raw image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workbench" ; sc:applicationSubCategory edam:topic_0084, @@ -300982,14 +312087,13 @@ be readily imported, integrated and visualized...no coding required!""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Data reference" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation "pubmed:9283758" ; @@ -301005,7 +312109,7 @@ be readily imported, integrated and visualized...no coding required!""" ; "Hélène Chiapello" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -301026,13 +312130,8 @@ be readily imported, integrated and visualized...no coding required!""" ; sc:url "http://www.cmbi.ru.nl/MGV/" ; biotools:primaryContact "Robert Kerkhoven" . - a sc:SoftwareApplication ; - sc:description "With decades of experience in the fields of genome sequencing, CD Genomics is devoted to providing the accurate and affordable microbial whole genome sequencing service. We combine both Illumina (short reads) and PacBio (long reads) platforms for microbial re-sequencing and complete genome de novo sequencing . Our strong expertise is enhanced by flexible sequencing strategies and professional bioinformatics pipelines. We can tailor this pipeline to your research interest. If you have additional requirements or questions, please feel free to contact us." ; - sc:name "Microbial Whole Genome Sequencing" ; - sc:url "https://www.cd-genomics.com/Microbial-Whole-Genome-Sequencing.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174 ; sc:author "Leo Lahti" ; @@ -301048,7 +312147,7 @@ be readily imported, integrated and visualized...no coding required!""" ; biotools:primaryContact "Leo Lahti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697, @@ -301072,7 +312171,7 @@ After installing Jupyter and the appopriate kernel you can access an interactive sc:url "http://bioconductor.org/packages/microbiomeDASim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -301093,7 +312192,7 @@ Note - MicrobiomeAnalystR is still under development - we cannot guarantee full sc:url "https://www.microbiomeanalyst.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0659, @@ -301116,8 +312215,53 @@ Both the workflows are controlled by bash scripts: amplicon_analysis.sh and meta sc:name "MicrobiomeBPR" ; sc:url "https://github.com/grimmlab/MicrobiomeBestPracticeReview" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0659, + edam:topic_2885, + edam:topic_3517, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9317577", + "pubmed:35886007" ; + sc:description "MicrobiomeGWAS is a software package for identifying host genetic variants associated with micorbiome distance matrix or beta-diversity. For each SNP, microbiome GWAS tests the main effect or the SNP-environment interaction." ; + sc:featureList edam:operation_0484, + edam:operation_3196, + edam:operation_3659, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "microbiomeGWAS" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/lsncibb/microbiomeGWAS" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3342, + edam:topic_3360, + edam:topic_3474, + edam:topic_3577, + edam:topic_3697 ; + sc:citation , + "pubmed:35771644" ; + sc:description "An R/Bioconductor package for microbiome marker identification and visualization." ; + sc:featureList edam:operation_0337, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "microbiomeMarker" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://www.bioconductor.org/packages/microbiomeMarker" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2269, @@ -301138,7 +312282,7 @@ In this folder you'll find code for the R package MicroBVS found in:. sc:url "https://github.com/mkoslovsky/MicroBVS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0637, @@ -301157,7 +312301,7 @@ In this folder you'll find code for the R package MicroBVS found in:. biotools:primaryContact "Lars Snipen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -301173,7 +312317,7 @@ In this folder you'll find code for the R package MicroBVS found in:. sc:url "http://reprod.njmu.edu.cn/cgi-bin/microdor/index.py" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -301189,7 +312333,7 @@ In this folder you'll find code for the R package MicroBVS found in:. biotools:primaryContact "Noah A Rosenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -301206,7 +312350,7 @@ In this folder you'll find code for the R package MicroBVS found in:. sc:url "http://www.zsl.org/science/software/microerroranalyzer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0204, @@ -301228,7 +312372,7 @@ In this folder you'll find code for the R package MicroBVS found in:. biotools:primaryContact "Martin Tompa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0196, @@ -301251,7 +312395,7 @@ MicroGMT is a python based package, which takes either raw sequence reads or ass sc:url "https://github.com/qunfengdong/MicroGMT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3572 ; @@ -301266,7 +312410,7 @@ MicrographCleaner (micrograph_cleaner_em) is a python package designed to segmen sc:url "https://github.com/rsanchezgarc/micrograph_cleaner_em" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085 ; sc:citation , @@ -301286,7 +312430,7 @@ MicrographCleaner (micrograph_cleaner_em) is a python package designed to segmen biotools:primaryContact "Chiara Romualdi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -301305,7 +312449,7 @@ MicroHapDB is a portable database intended for scientists and researchers intere sc:url "https://github.com/bioforensics/MicroHapDB/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -301323,7 +312467,7 @@ MicroHapDB is a portable database intended for scientists and researchers intere sc:url "http://bioinfo.uni-plovdiv.bg/microinspector/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0621, @@ -301347,7 +312491,7 @@ MicroHapDB is a portable database intended for scientists and researchers intere "Zexian Liu," . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3383 ; @@ -301363,18 +312507,18 @@ MicroHapDB is a portable database intended for scientists and researchers intere a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ], + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_3009" ; + sc:name "Sequence assembly" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_2206" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308 ; sc:citation ; @@ -301388,7 +312532,7 @@ MicroHapDB is a portable database intended for scientists and researchers intere biotools:primaryContact "Uwe Ohler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -301405,14 +312549,13 @@ MicroHapDB is a portable database intended for scientists and researchers intere a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0797, edam:topic_3070, @@ -301436,7 +312579,7 @@ MicroHapDB is a portable database intended for scientists and researchers intere sc:url "https://cran.r-project.org/web/packages/micropan/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3301, @@ -301454,7 +312597,7 @@ MicroHapDB is a portable database intended for scientists and researchers intere biotools:primaryContact "Qinghua Cui" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, @@ -301473,7 +312616,7 @@ MicroHapDB is a portable database intended for scientists and researchers intere sc:url "https://github.com/koesterlab/microphaser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -301489,7 +312632,7 @@ MicroHapDB is a portable database intended for scientists and researchers intere sc:url "http://www.liwzlab.cn/microphenodb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3298, @@ -301510,7 +312653,7 @@ MicroHapDB is a portable database intended for scientists and researchers intere biotools:primaryContact "Jin Mao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation ; @@ -301522,7 +312665,7 @@ MicroHapDB is a portable database intended for scientists and researchers intere sc:url "http://www.embl.de/almf/almf_services/hc_screeing/micropilot/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -301544,14 +312687,14 @@ microPIPE was developed to automate high-quality complete bacterial genome assem a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -301571,7 +312714,7 @@ microPIPE was developed to automate high-quality complete bacterial genome assem biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3301, edam:topic_3697 ; @@ -301585,7 +312728,7 @@ microPIPE was developed to automate high-quality complete bacterial genome assem biotools:primaryContact "Frederic Bushman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0622, @@ -301600,7 +312743,7 @@ microPIPE was developed to automate high-quality complete bacterial genome assem biotools:primaryContact "Anne-Katrin Emde" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -301618,14 +312761,8 @@ microPIPE was developed to automate high-quality complete bacterial genome assem sc:url "http://bioconductor.org/packages/release/bioc/html/microRNA.html" ; biotools:primaryContact "\"James F. Reid\"" . - a sc:SoftwareApplication ; - sc:description """"CD Genomics offers a comprehensive microRNA microarray profiling service based on some of the most powerful platforms in this field with unrivaled accuracy and sensitivity. -miRNA expression profiling came into prominence, in part, because of the expectation that a highly expressed miRNA for a given tissue or cell type (or a developmental stage) is likely to play a regulatory role.Let microRNA and microarray experts perform your analysis in automated laboratories with rigorous quality control and fast turn-around times and advanced data analysis tailored to your research needs and budget.\"""" ; - sc:name "MicroRNA Expression Profiling Microarray" ; - sc:url "https://www.cd-genomics.com/MicroRNA-Expression-Profiling-Microarray-Service.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -301641,13 +312778,33 @@ miRNA expression profiling came into prominence, in part, because of the expecta biotools:primaryContact "Na-Sheng Lin", "Wen-Chi Chang" . - a sc:SoftwareApplication ; - sc:description "CD Genomics has extensive experience in providing support for the selection and design of microsatellite markers for a wide range of plant and animal species. Besides microsatellite genotyping, we also provide genotyping by sequencing (GBS) method, which saves time and resources. CD Genomics provides full microsatellite genotyping service package, including designing and ordering fluorescently labeled primer pairs, primer validation, microsatellite genotyping, as well as data analysis. We can tailor this pipeline to your research interest. If you have additional requirements or questions, please feel free to contact us." ; - sc:name "Microsatellite Genotyping" ; - sc:url "https://www.cd-genomics.com/Microsatellite-Genotyping-Service.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0659, + edam:topic_0749, + edam:topic_3308, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8544657", + "pubmed:34698276" ; + sc:description "A Comprehensive, Searchable Resource of Predicted MicroRNA Targets and 3'UTR Cis-Regulatory Elements in the Full-Length Sequenced Atlantic Salmon Transcriptome." ; + sc:featureList edam:operation_0239, + edam:operation_0335, + edam:operation_0441, + edam:operation_0463, + edam:operation_3192 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MicroSalmon" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/AndreassenLab/MicroSalmon/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0622 ; @@ -301666,7 +312823,7 @@ miRNA expression profiling came into prominence, in part, because of the expecta biotools:primaryContact "Bohdan B. Khomtchouk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3344, edam:topic_3382, @@ -301685,52 +312842,8 @@ Micron Advanced Imaging ConsortiumMicron Advanced Imaging ConsortiumMicron Advan sc:name "Microscope-Cockpit" ; sc:url "https://micronoxford.com/python-microscope-cockpit" . - a sc:SoftwareApplication ; - edam:has_input edam:data_0925, - edam:data_3495 ; - edam:has_output edam:data_3002 ; - sc:additionalType "Bioinformatics portal", - "Web application", - "Workbench" ; - sc:applicationSubCategory edam:topic_0085, - edam:topic_0621, - edam:topic_0797, - edam:topic_2259, - edam:topic_3301 ; - sc:citation , - , - , - , - , - , - "pubmed:28968784", - "pubmed:31647104" ; - sc:description """MicroScope is an integrated Web platform for the annotation and exploration of microbial gene functions through genomic, pangenomic and metabolic comparative analysis. - -It supports submissions of newly assembled genomes and metagenomes, and also provides analysis services for RNA-seq data. - -The user interface of MicroScope enables collaborative work in a rich comparative context to improve community-based curation efforts.""" ; - sc:featureList edam:operation_0362, - edam:operation_2495, - edam:operation_3083, - edam:operation_3197, - edam:operation_3208, - edam:operation_3209, - edam:operation_3562 ; - sc:isAccessibleForFree true ; - sc:name "MicroScope - MaGe" ; - sc:operatingSystem "Linux", - "Mac", - "Windows" ; - sc:provider "LABGeM - CEA/Genosocope - UMR8030" ; - sc:softwareHelp , - ; - sc:termsOfService ; - sc:url "https://www.genoscope.cns.fr/agc/microscope" ; - sc:version "3" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -301748,7 +312861,7 @@ The user interface of MicroScope enables collaborative work in a rich comparativ biotools:primaryContact "Fred Sigworth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -301764,7 +312877,7 @@ The user interface of MicroScope enables collaborative work in a rich comparativ sc:url "http://epicenter.ie-freiburg.mpg.de/services/microsniper/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3068, @@ -301784,8 +312897,29 @@ The user interface of MicroScope enables collaborative work in a rich comparativ sc:softwareHelp ; sc:url "https://github.com/plus-microstate/toolbox" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0203, + edam:topic_0659, + edam:topic_0780, + edam:topic_3512 ; + sc:citation , + "pubmed:35760231" ; + sc:description "A database of comprehensive miRNA target prediction framework for sugarcane (Saccharum officinarum L.)." ; + sc:featureList edam:operation_0463, + edam:operation_2422, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:name "MicroSugar" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://suc.gene-db.com/#/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0637, @@ -301801,7 +312935,7 @@ The user interface of MicroScope enables collaborative work in a rich comparativ sc:url "http://metagenomics.iiserb.ac.in/microtaxi/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3474 ; @@ -301812,8 +312946,27 @@ The user interface of MicroScope enables collaborative work in a rich comparativ sc:name "microTSS" ; sc:url "http://www.microrna.gr/microTSS" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196 ; + sc:citation , + "pmcid:PMC9041221", + "pubmed:35495207" ; + sc:description "A low-cost platform for indoor marine swarm robotics research." ; + sc:featureList edam:operation_0310, + edam:operation_2428, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "microUSV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/CalvinGregory/microUSV/releases/tag/v1.0" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3070, @@ -301832,7 +312985,7 @@ The user interface of MicroScope enables collaborative work in a rich comparativ biotools:primaryContact "Constantino Carlos Reyes-Aldasoro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3169 ; @@ -301847,7 +313000,7 @@ The user interface of MicroScope enables collaborative work in a rich comparativ "Valentina Boeva" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654 ; @@ -301861,7 +313014,7 @@ The user interface of MicroScope enables collaborative work in a rich comparativ sc:url "http://cqb.pku.edu.cn/ZhuLab/MID/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -301880,7 +313033,7 @@ The user interface of MicroScope enables collaborative work in a rich comparativ "Gelio Alves" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0154, @@ -301906,7 +313059,7 @@ The user interface of MicroScope enables collaborative work in a rich comparativ sc:url "https://github.com/Genentech/MiDAS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0154, @@ -301927,7 +313080,7 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to sc:url "https://github.com/Genentech/MiDAS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0203, @@ -301942,7 +313095,7 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to sc:url "http://midaw.cribi.unipd.it/dnachip/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3320, @@ -301957,8 +313110,30 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to sc:name "MIDB" ; sc:url "https://midb.pnb.uconn.edu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_3277, + edam:topic_3315, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8553042", + "pubmed:34662338" ; + sc:description "Measures the concentration of specific infections (SIN) in a virus sample based on a TCID50 endpoint dilution assay." ; + sc:featureList edam:operation_2939, + edam:operation_3435, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "midSIN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://midsin.physics.ryerson.ca" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -301978,7 +313153,7 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to biotools:primaryContact "Backes C" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128 ; @@ -301992,7 +313167,7 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to biotools:primaryContact "Wei Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -302008,7 +313183,7 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to sc:url "http://www.uea.ac.uk/computing/mifold" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0634, @@ -302029,7 +313204,7 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to biotools:primaryContact "Keller A" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:24529207" ; @@ -302043,7 +313218,7 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to biotools:primaryContact "Ioannis Kavakiotis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0637, @@ -302060,7 +313235,7 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to biotools:primaryContact "Luis M. Rodriguez-R" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -302080,8 +313255,34 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to "MIGenAS support", "Markus Rampp" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3275" ; + sc:name "Phenotype name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0203, + edam:topic_0625, + edam:topic_0634, + edam:topic_3068 ; + sc:citation ; + sc:description "An Evidence-based Database of Genes and Phenotypes of Male Infertility." ; + sc:featureList edam:operation_2421, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:name "MIgene" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://midb.geneworks.cn" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -302101,7 +313302,7 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056, @@ -302118,7 +313319,7 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to biotools:primaryContact "François Rousset" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -302137,7 +313338,7 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to biotools:primaryContact "Juan C. Rodriguez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -302153,8 +313354,28 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to sc:url "https://cran.r-project.org/web/packages/miic/index.html" ; biotools:primaryContact "Nadir Sella" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_2640, + edam:topic_3305, + edam:topic_3384, + edam:topic_3421 ; + sc:citation , + "pmcid:PMC9365762", + "pubmed:35948579" ; + sc:description "Interactive exploration of a global clinical network from a large breast cancer cohort." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:name "MIIC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://miic.curie.fr" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3315, @@ -302176,7 +313397,7 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to sc:url "https://github.com/dekamps/miind" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3512 ; @@ -302194,7 +313415,7 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to sc:url "https://github.com/lucventurini/mikado" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0102, @@ -302214,8 +313435,30 @@ Human immunogenetic variation in the form of HLA and KIR types has been shown to sc:name "Mikan_GB" ; sc:url "https://mikan.dna.affrc.go.jp" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_3053, + edam:topic_3300, + edam:topic_3335, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC8626632", + "pubmed:34900127" ; + sc:description "A manually curated and comprehensive knowledge base for myocardial infarction." ; + sc:featureList edam:operation_3454, + edam:operation_3501, + edam:operation_3907 ; + sc:isAccessibleForFree true ; + sc:name "MIKB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.sysbio.org.cn/mikb/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -302235,7 +313478,7 @@ Millefy is a tool for visualizing read coverage of single-cell RNA sequensing (s sc:url "https://github.com/yuifu/millefy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654, @@ -302252,7 +313495,7 @@ Millefy is a tool for visualizing read coverage of single-cell RNA sequensing (s biotools:primaryContact "Alexander J. Hartemink" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, @@ -302269,7 +313512,7 @@ Milo is a method for differential abundance analysis on KNN graph from single-ce sc:url "https://github.com/MarioniLab/miloR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -302287,7 +313530,7 @@ This package is for Genome Wide Association Studies using a logistic mixed model sc:url "https://github.com/genostats/milorGWAS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3511 ; @@ -302302,7 +313545,7 @@ This package is for Genome Wide Association Studies using a logistic mixed model sc:url "http://bcb.dfci.harvard.edu/~gcyuan/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3518 ; sc:description "Easily visualize and inspect microarrays for spatial artifacts." ; @@ -302320,7 +313563,7 @@ This package is for Genome Wide Association Studies using a logistic mixed model biotools:primaryContact "Aaron Wolen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -302337,7 +313580,7 @@ This package is for Genome Wide Association Studies using a logistic mixed model biotools:primaryContact "Maureen Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -302358,7 +313601,7 @@ MiMeNet uses microbial features to predict metabolite output features. To do so, sc:url "https://github.com/YDaiLab/MiMeNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0196, @@ -302381,7 +313624,7 @@ MiMeNet uses microbial features to predict metabolite output features. To do so, sc:url "https://github.com/ClavelLab/MiMiC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3384, @@ -302400,8 +313643,49 @@ The above is a cineloop of cardiac data with conventional delay-and-sum beamform sc:name "MimickNet" ; sc:url "https://github.com/ouwen/MimickNet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3172, + edam:topic_3305, + edam:topic_3337, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC9344846", + "pubmed:35695757" ; + sc:description "R-shiny application to infer risk factors and endpoints from Nightingale Health's 1H-NMR Metabolomics data." ; + sc:featureList edam:operation_3435, + edam:operation_3557 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MiMIR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/DanieleBizzarri/MiMIR" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3336, + edam:topic_3474 ; + sc:citation , + "pubmed:34882225" ; + sc:description "Accelerating bioactive peptide discovery via mutual information-based meta-learning." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MIMML" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/TearsWaiting/MIMML" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -302416,7 +313700,7 @@ The above is a cineloop of cardiac data with conventional delay-and-sum beamform sc:url "http://www.picb.ac.cn/ClinicalGenomicNTW/MIMO.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0154, @@ -302438,14 +313722,14 @@ The above is a cineloop of cardiac data with conventional delay-and-sum beamform a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3361 ; @@ -302467,10 +313751,9 @@ The above is a cineloop of cardiac data with conventional delay-and-sum beamform a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -302494,7 +313777,7 @@ The above is a cineloop of cardiac data with conventional delay-and-sum beamform sc:url "http://elbo-spice.cs.tau.ac.il/shiny/MIMOSA2shiny/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2640, @@ -302512,7 +313795,7 @@ A deep, multiple instance learning based classifier for identifying Microsatelli sc:url "https://github.com/mskcc/mimsi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -302534,7 +313817,7 @@ A deep, multiple instance learning based classifier for identifying Microsatelli biotools:primaryContact "Marc Delarue Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -302556,16 +313839,31 @@ A deep, multiple instance learning based classifier for identifying Microsatelli sc:url "http://www.minas.uzh.ch/" ; biotools:primaryContact "Joachim Schnabl" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0157, + edam:topic_0622, + edam:topic_3174 ; + sc:description "MinCED is a program to find Clustered Regularly Interspaced Short Palindromic Repeats (CRISPRs) in full genomes or environmental datasets such as assembled contigs from metagenomes." ; + sc:featureList edam:operation_0237 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "minced" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ctSkennerton/minced" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3442" ; - sc:name "MRI image" ; - sc:sameAs "http://edamontology.org/data_3442" ] ; + sc:additionalType "http://edamontology.org/data_3442" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "MRI image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3444 ; @@ -302583,10 +313881,9 @@ A deep, multiple instance learning based classifier for identifying Microsatelli a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:name "Nucleic acid sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3168 ; @@ -302607,7 +313904,7 @@ A deep, multiple instance learning based classifier for identifying Microsatelli biotools:primaryContact "Dr. Yuanda Lv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -302630,14 +313927,14 @@ A deep, multiple instance learning based classifier for identifying Microsatelli a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation ; @@ -302655,7 +313952,7 @@ A deep, multiple instance learning based classifier for identifying Microsatelli biotools:primaryContact "Claire Lemaitre" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -302672,16 +313969,39 @@ A deep, multiple instance learning based classifier for identifying Microsatelli sc:url "http://wiki.c2b2.columbia.edu/califanolab/index.php/Software/MINDY2?" ; biotools:primaryContact "Andrea Califano" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3172, + edam:topic_3292, + edam:topic_3407, + edam:topic_3473 ; + sc:citation , + "pmcid:PMC9237697", + "pubmed:35595247" ; + sc:description "Enhanced biochemical coverage for peak identification in untargeted metabolomics." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3803 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MINE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "2.0" ; + sc:url "https://minedatabase.ci.northwestern.edu" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Script" ; sc:applicationSubCategory edam:topic_3292, @@ -302707,7 +314027,7 @@ A deep, multiple instance learning based classifier for identifying Microsatelli sc:url "http://msxpertsuite.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -302728,18 +314048,18 @@ A deep, multiple instance learning based classifier for identifying Microsatelli a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2013" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3166" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation , @@ -302763,8 +314083,16 @@ MinePath identifies of differentially expressed functional paths or sub-paths wi sc:url "http://www.minepath.org/" ; biotools:primaryContact "Lefteris Koumakis" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "AI systems represented by AlphaFold are rapidly expanding the data scale of protein structure modelling, hence how to curate these novel high-throughput data has emerged as a challenge. Here we provide our solution, MineProt, a project to help researchers efficiently set up custom protein servers to facilitate data sharing. It enables users to build their own server in simple steps, run almost out-of-the-box scripts to annotate and curate their proteins, visualize, browse and search their data via a user-friendly online interface, and utilize plugins to extend the functionality of server. Its current version can directly transform results of AlphaFold and ColabFold into a fully functional website, while supporting any other data compatible with its standard as well. MineProt is open-sourced at https://github.com/huiwenke/MineProt." ; + sc:name "MineProt" ; + sc:softwareHelp ; + sc:softwareVersion "0.1.2" ; + sc:url "https://github.com/huiwenke/MineProt" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -302782,7 +314110,7 @@ MinePath identifies of differentially expressed functional paths or sub-paths wi sc:url "http://coit-apple01.uncc.edu/MINER/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602 ; @@ -302799,7 +314127,7 @@ MinePath identifies of differentially expressed functional paths or sub-paths wi biotools:primaryContact "Patrick E. Meyer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0654, @@ -302822,7 +314150,7 @@ MinePath identifies of differentially expressed functional paths or sub-paths wi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3384, @@ -302836,16 +314164,40 @@ MinePath identifies of differentially expressed functional paths or sub-paths wi sc:url "https://github.com/navchetan-awasthi/Mini-COVIDNet" ; biotools:primaryContact . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1193" ; + sc:encodingFormat "http://edamontology.org/format_2545" ; + sc:name "Tool name (FASTA)" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1711" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Sequence alignment image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091 ; + sc:citation ; + sc:description "This pipeline was developed to detect and quantify isoforms from the expression of minigenes, whose cDNA was sequenced using Oxford Nanopore Technologies (ONT)." ; + sc:featureList edam:operation_3182, + edam:operation_3800 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "Mini-IsoQLR" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:url "https://github.com/TBLabFJD/Mini-IsoQLR" ; + biotools:primaryContact . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -302862,8 +314214,24 @@ MinePath identifies of differentially expressed functional paths or sub-paths wi biotools:primaryContact "Guillaume Rizk", "Rayan Chikhi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0622 ; + sc:citation , + "pmcid:PMC4937194", + "pubmed:27153593" ; + sc:description "Miniasm is a very fast OLC-based de novo assembler for noisy long reads. It takes all-vs-all read self-mappings (typically by minimap) as input and outputs an assembly graph in the GFA format." ; + sc:featureList edam:operation_0524 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "miniasm" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/lh3/miniasm" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3168 ; @@ -302878,7 +314246,7 @@ This repo contains reference implementation and analysis codes for the manuscrip sc:url "https://github.com/kingsford-group/miniception" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170 ; @@ -302894,7 +314262,7 @@ This repo contains reference implementation and analysis codes for the manuscrip . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053 ; @@ -302907,7 +314275,7 @@ This repo contains reference implementation and analysis codes for the manuscrip sc:url "http://genome.sph.umich.edu/wiki/Minimac2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -302920,7 +314288,7 @@ This repo contains reference implementation and analysis codes for the manuscrip sc:url "http://genome.sph.umich.edu/wiki/Minimac3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3168 ; @@ -302933,7 +314301,7 @@ This repo contains reference implementation and analysis codes for the manuscrip sc:url "https://genome.sph.umich.edu/wiki/Minimac4" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation , @@ -302948,7 +314316,7 @@ This repo contains reference implementation and analysis codes for the manuscrip sc:url "https://github.com/lh3/minimap2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3070, @@ -302965,7 +314333,7 @@ This repo contains reference implementation and analysis codes for the manuscrip biotools:primaryContact "Hanchuan Peng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -302982,7 +314350,7 @@ This repo contains reference implementation and analysis codes for the manuscrip biotools:primaryContact "Ashim Gautam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0625, @@ -303001,7 +314369,7 @@ This repo contains reference implementation and analysis codes for the manuscrip biotools:primaryContact "Robert B Scharpf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -303015,16 +314383,29 @@ This repo contains reference implementation and analysis codes for the manuscrip sc:url "https://github.com/mw55309/MinION_SynthMetagenome" ; biotools:primaryContact "Bonnie L. Brown" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0160 ; + sc:description "Miniprot aligns a protein sequence against a genome with affine gap penalty, splicing and frameshift. It is primarily intended for annotating protein-coding genes in a new species using known genes from other species." ; + sc:featureList edam:operation_0292, + edam:operation_2479 ; + sc:license "MIT" ; + sc:name "miniprot" ; + sc:softwareVersion "0.3" ; + sc:url "https://github.com/lh3/miniprot" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0003 ; sc:description "Minirmd is a tool to fast remove duplicate reads." ; @@ -303037,7 +314418,7 @@ This repo contains reference implementation and analysis codes for the manuscrip sc:url "https://github.com/yuansliu/minirmd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0089, @@ -303060,7 +314441,7 @@ minMLST is a machine-learning based methodology for identifying a minimal subset sc:url "https://pypi.org/project/minmlst/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -303081,8 +314462,30 @@ minMLST is a machine-learning based methodology for identifying a minimal subset "Windows" ; sc:url "http://minimotifminer.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3336, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9272808", + "pubmed:35652721" ; + sc:description "Effective drug-target interaction prediction with mutual interaction neural network." ; + sc:featureList edam:operation_0272, + edam:operation_3094, + edam:operation_3216, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MINN-DTI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/admislf/MINN-DTI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -303101,7 +314504,7 @@ minMLST is a machine-learning based methodology for identifying a minimal subset sc:url "https://github.com/weitinging/MinNetRank" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3512, @@ -303118,18 +314521,18 @@ minMLST is a machine-learning based methodology for identifying a minimal subset a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -303149,7 +314552,7 @@ minMLST is a machine-learning based methodology for identifying a minimal subset sc:url "https://github.com/iqbal-lab-org/minos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0769, @@ -303171,7 +314574,7 @@ minMLST is a machine-learning based methodology for identifying a minimal subset sc:url "http://137.44.59.170" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3174, @@ -303191,14 +314594,13 @@ minMLST is a machine-learning based methodology for identifying a minimal subset a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_3158" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -303228,8 +314630,31 @@ minMLST is a machine-learning based methodology for identifying a minimal subset sc:url "https://mint.bio.uniroma2.it/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0203, + edam:topic_3174, + edam:topic_3697, + edam:topic_3837 ; + sc:citation , + "pmcid:PMC8483015", + "pubmed:34692239" ; + sc:description "A metagenomic INserT integrated assembly and annotation tool." ; + sc:featureList edam:operation_0310, + edam:operation_0362, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MINTIA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Bios4Biol/MINTIA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -303254,7 +314679,7 @@ minMLST is a machine-learning based methodology for identifying a minimal subset biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2229, @@ -303272,7 +314697,7 @@ minMLST is a machine-learning based methodology for identifying a minimal subset biotools:primaryContact "Isidore Rigoutsos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -303291,8 +314716,33 @@ MINTyper is a tools designed to quickly a distance matrix from a set of input se sc:name "MINTyper" ; sc:url "https://cge.cbs.dtu.dk/services/MINTyper" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0659, + edam:topic_2640, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC9272810", + "pubmed:35642895" ; + sc:description "MicroRNA target analysis system for Immuno-Oncology." ; + sc:featureList edam:operation_0252, + edam:operation_0463, + edam:operation_3659, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MIO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://mio.icbi.at" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0749, @@ -303313,7 +314763,7 @@ R software package for integration of multi-omics data""" ; sc:url "https://gitlab.com/algoromics/miodin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2258, edam:topic_2259, @@ -303335,8 +314785,27 @@ R software package for integration of multi-omics data""" ; sc:url "http://miolite2.iceht.forth.gr" ; biotools:primaryContact "Maria Klapa" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_3172, + edam:topic_3308 ; + sc:description "MIOM (Mixed Integer Optimization for Metabolism) is a python library for creating and solving complex optimization problems using genome-scale metabolic networks, in just a few lines. It offers a high-level API that leverages the power of modern Mixed Integer Optimization (MIO) solvers to easily define steady-state metabolic optimization problems, from simple Flux Balance Analysis (FBA) simulations, to more complex problems, such as sparse FBA or context-specific reconstruction algorithms, and solve them the required level of optimality." ; + sc:featureList edam:operation_3660 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MIOM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "0.9.0-beta9" ; + sc:url "https://github.com/metexplore/miom" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -303355,7 +314824,7 @@ R software package for integration of multi-omics data""" ; biotools:primaryContact "Leena Salmela" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0611, @@ -303376,7 +314845,7 @@ R software package for integration of multi-omics data""" ; "Ideas for features" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0632, @@ -303392,7 +314861,7 @@ R software package for integration of multi-omics data""" ; "Jay Shendure" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0160, @@ -303413,7 +314882,7 @@ R software package for integration of multi-omics data""" ; biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0623, @@ -303432,7 +314901,7 @@ R software package for integration of multi-omics data""" ; biotools:primaryContact "Sukwoo Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -303455,7 +314924,7 @@ Welcome to MIPPIE, a web tool to generate reliable and meaningful mouse protein- sc:url "https://cbdm.uni-mainz.de/mippie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3500, @@ -303467,7 +314936,7 @@ Welcome to MIPPIE, a web tool to generate reliable and meaningful mouse protein- sc:url "http://www.bioinf.seu.edu.cn/miRNA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -303487,7 +314956,7 @@ MIPRIP: The Mixed Integer linear Programming based Regulatory Interaction Predic sc:url "https://github.com/KoenigLabNM/MIPRIP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -303504,7 +314973,7 @@ MIPRIP: The Mixed Integer linear Programming based Regulatory Interaction Predic biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3056 ; @@ -303517,7 +314986,7 @@ Abstract Admixture graphs represent the genetic relationship between a set of po sc:url "https://github.com/juliayyan/PhylogeneticTrees.jl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -303533,7 +315002,7 @@ Abstract Admixture graphs represent the genetic relationship between a set of po sc:url "http://cptweb.cpt.wayne.edu/miR-AT/search.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0780, @@ -303549,7 +315018,7 @@ Abstract Admixture graphs represent the genetic relationship between a set of po sc:url "https://github.com/janeyurigao/miR-Island" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -303566,7 +315035,7 @@ Abstract Admixture graphs represent the genetic relationship between a set of po sc:url "http://www.cse.msu.edu/~leijikai/mir-prefer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -303586,7 +315055,7 @@ MicroRNAs (miRNAs) have been found in many organisms and play essential roles in sc:url "http://mirtv.ibms.sinica.edu.tw" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -303602,7 +315071,7 @@ MicroRNAs (miRNAs) have been found in many organisms and play essential roles in sc:url "http://www.cuilab.cn/mir2gene" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0204, @@ -303619,7 +315088,7 @@ MicroRNAs (miRNAs) have been found in many organisms and play essential roles in biotools:primaryContact "Yan Cui" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -303641,7 +315110,7 @@ MicroRNAs (miRNAs) have been found in many organisms and play essential roles in biotools:primaryContact "Sun Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -303657,7 +315126,7 @@ MicroRNAs (miRNAs) have been found in many organisms and play essential roles in sc:url "http://comp-sysbio.org/miR_Path/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170 ; @@ -303676,7 +315145,7 @@ MicroRNAs (miRNAs) have been found in many organisms and play essential roles in biotools:primaryContact "Bastien Chevreux" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -303692,7 +315161,7 @@ MicroRNAs (miRNAs) have been found in many organisms and play essential roles in biotools:primaryContact "Michael Huttner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -303712,7 +315181,7 @@ A simple and efficient miRNA target prediction tool.""" ; sc:url "http://bioinfo.univ-rouen.fr/mirabel/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -303728,7 +315197,7 @@ A simple and efficient miRNA target prediction tool.""" ; biotools:primaryContact "Masao Nagasaki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3518 ; @@ -303744,7 +315213,7 @@ A simple and efficient miRNA target prediction tool.""" ; biotools:primaryContact "Markus List" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -303765,7 +315234,7 @@ A simple and efficient miRNA target prediction tool.""" ; "Ke Deng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, @@ -303782,8 +315251,32 @@ A simple and efficient miRNA target prediction tool.""" ; sc:name "mirAct" ; sc:url "http://sysbio.ustc.edu.cn/software/mirAct" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0659, + edam:topic_0749, + edam:topic_3308, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8987502", + "pubmed:35401578" ; + sc:description "A Knowledgebase of RAG Regulators." ; + sc:featureList edam:operation_0337, + edam:operation_0463, + edam:operation_3192, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "miRAGDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://52.4.112.252/shiny/miragdb/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -303804,7 +315297,7 @@ A simple and efficient miRNA target prediction tool.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0623, @@ -303824,7 +315317,7 @@ Mirage is ancestral genome estimation software with high accuracy based on a phy sc:url "https://github.com/fukunagatsu/Mirage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0659, @@ -303843,7 +315336,7 @@ Mirage is ancestral genome estimation software with high accuracy based on a phy sc:url "http://bioinfo2.ugr.es/miRanalyzer/miRanalyzer.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0602, @@ -303863,7 +315356,7 @@ Mirage is ancestral genome estimation software with high accuracy based on a phy sc:url "https://ophid.utoronto.ca/miRAnno/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0102, @@ -303885,7 +315378,7 @@ Mirage is ancestral genome estimation software with high accuracy based on a phy biotools:primaryContact "Sam Griffiths-Jones" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3518 ; @@ -303902,8 +315395,35 @@ Mirage is ancestral genome estimation software with high accuracy based on a phy sc:url "http://bioconductor.org/packages/release/bioc/html/miRBaseConverter.html" ; biotools:primaryContact "Taosheng Xu" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_3170, + edam:topic_3474, + edam:topic_3518, + edam:topic_3794 ; + sc:citation , + "pmcid:PMC8509996", + "pubmed:34637468" ; + sc:description "Machine-learning on Bayesian causal nets of RBP-miRNA interactions successfully predicts miRNA profiles." ; + sc:featureList edam:operation_0314, + edam:operation_0463, + edam:operation_3792, + edam:operation_3799, + edam:operation_3901 ; + sc:isAccessibleForFree true ; + sc:name "miRbiom" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://scbb.ihbt.res.in/miRbiom-webserver/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0769 ; sc:citation ; @@ -303918,7 +315438,7 @@ Mirage is ancestral genome estimation software with high accuracy based on a phy biotools:primaryContact "Forum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0780, @@ -303937,7 +315457,7 @@ Mirage is ancestral genome estimation software with high accuracy based on a phy "V. Moulton" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0602, @@ -303960,14 +315480,14 @@ Mirage is ancestral genome estimation software with high accuracy based on a phy a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Processed microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0659, @@ -303990,7 +315510,7 @@ Mirage is ancestral genome estimation software with high accuracy based on a phy biotools:primaryContact "Matthew N. McCall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3519 ; @@ -304009,7 +315529,7 @@ Mirage is ancestral genome estimation software with high accuracy based on a phy biotools:primaryContact "Matthew N. McCall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659 ; @@ -304026,7 +315546,7 @@ Mirage is ancestral genome estimation software with high accuracy based on a phy "Stefano Pirro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -304044,7 +315564,7 @@ Mirage is ancestral genome estimation software with high accuracy based on a phy sc:url "http://www.benoslab.pitt.edu/mirconnx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -304060,7 +315580,7 @@ Although miRNAs can cause widespread changes in expression programs, single miRN sc:url "https://github.com/guldenolgun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -304080,7 +315600,7 @@ Although miRNAs can cause widespread changes in expression programs, single miRN biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0659, @@ -304100,22 +315620,8 @@ Given a list of miRNA candidates, MirCure evaluates a number of miRNA-specific f sc:name "MirCure" ; sc:url "https://github.com/ConesaLab/MirCure" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_0780, - edam:topic_3500 ; - sc:citation , - "pmcid:PMC6700487", - "pubmed:31453279" ; - sc:description "> LOW CONFIDENCE! | Genome-wide hairpins datasets of animals and plants for novel miRNA prediction | sinc(i) - http://sinc.unl.edu.ar/ lbugnon@sinc.unl.edu.ar | This is a public distribution of the dataset detailed in: \"Genome-wide hairpins datasets of animals and plants for novel miRNA prediction”, by Leandro A. Bugnon, Cristian Yones, Diego H. Milone and Georgina Stegmayer, under review (2019) | We make available to the research community the hairpin sequences and extracted features of genome-wide data, that can be very useful for the task of computational microRNAs prediction:" ; - sc:featureList edam:operation_0463, - edam:operation_3192, - edam:operation_3792 ; - sc:name "mirdata" ; - sc:url "https://sourceforge.net/projects/sourcesinc/files/mirdata/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -304130,7 +315636,7 @@ Given a list of miRNA candidates, MirCure evaluates a number of miRNA-specific f biotools:primaryContact "Nikolaus Rajewsky" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3794 ; @@ -304149,7 +315655,7 @@ Given a list of miRNA candidates, MirCure evaluates a number of miRNA-specific f sc:url "https://github.com/rajewsky-lab/mirdeep2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3500, @@ -304168,7 +315674,7 @@ Given a list of miRNA candidates, MirCure evaluates a number of miRNA-specific f biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0780, @@ -304185,8 +315691,34 @@ Given a list of miRNA candidates, MirCure evaluates a number of miRNA-specific f sc:url "http://sinc.unl.edu.ar/web-demo/mirdnn/" ; biotools:primaryContact "G. Stegmayer" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0654, + edam:topic_0659, + edam:topic_3170, + edam:topic_3474 ; + sc:citation , + "pubmed:34875006" ; + sc:description "A full end-to-end deep model based on Transformers for prediction of pre-miRNAs." ; + sc:featureList edam:operation_0278, + edam:operation_0463, + edam:operation_3192 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "miRe2e" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://sinc.unl.edu.ar/web-demo/miRe2e/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -304206,18 +315738,16 @@ MiREDiBase (miRNA Editing Database) is a catalog of validated and putative miRNA a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ], + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659 ; sc:description "This tool correlates the logarithm of expression fold changes of a set of genes with the motif content of the regulatory sequences of these genes. In particular, it correlates the genome wide mRNA log fold changes in experiments involving the knockout/knockdown/overexpression of one or more miRNAs with the motif content of the 3'UTRs. The model is based on linear regression, and is intended for genome-wide studies." ; @@ -304226,8 +315756,32 @@ MiREDiBase (miRNA Editing Database) is a catalog of validated and putative miRNA sc:operatingSystem "Linux" ; sc:url "https://www.mdc-berlin.de/10615841/en/research/research_teams/systems_biology_of_gene_regulatory_elements/projects/mireduce" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_0634, + edam:topic_0659, + edam:topic_3063, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC8696973", + "pubmed:34988440" ; + sc:description "R package and web application for miRNA text mining." ; + sc:featureList edam:operation_0306, + edam:operation_0463, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "miRetrieve" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://miretrieve.shinyapps.io/miRetrieve/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -304243,7 +315797,7 @@ MiREDiBase (miRNA Editing Database) is a catalog of validated and putative miRNA biotools:primaryContact "Alex Hildebrandt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -304261,7 +315815,7 @@ MiREDiBase (miRNA Editing Database) is a catalog of validated and putative miRNA "Yulia A. Medvedeva" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0634, @@ -304283,14 +315837,14 @@ miRNA and Transcription Factors (TFs) are fundamental transcriptional and post-t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "MIRfix automatically curates miRNA datasets by improving alignments of their precursors, the consistency of the annotation of mature miR and miR* sequence, and the phylogenetic coverage. MIRfix produces alignments that are comparable across families and sets the stage for improved homology search as well as quantitative analyses." ; sc:featureList edam:operation_2428 ; sc:name "MIRfix" ; @@ -304298,7 +315852,7 @@ miRNA and Transcription Factors (TFs) are fundamental transcriptional and post-t sc:url "https://github.com/Bierinformatik/MIRfix" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -304311,8 +315865,31 @@ miRNA and Transcription Factors (TFs) are fundamental transcriptional and post-t sc:softwareHelp ; sc:url "http://wwwabi.snv.jussieu.fr/research/publi/small_ncRNA/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_0769, + edam:topic_3168, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC8616193", + "pubmed:34830818" ; + sc:description "Galaxy-Based Framework for Interactive Analysis of microRNA and isomiR Sequencing Data." ; + sc:featureList edam:operation_0337, + edam:operation_3223, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "miRGalaxy" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Glogobyte/miRGalaxy" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0769, @@ -304333,30 +315910,27 @@ Enables building small-RNA libraries for the organism of choice to use in the mi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1097" ; - sc:name "Sequence accession (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1097" ], + sc:additionalType "http://edamontology.org/data_1097" ; + sc:name "Sequence accession (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1097" ; - sc:name "Sequence accession (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1097" ], + sc:additionalType "http://edamontology.org/data_1869" ; + sc:name "Organism identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1869" ; - sc:name "Organism identifier" ; - sc:sameAs "http://edamontology.org/data_1869" ] ; + sc:additionalType "http://edamontology.org/data_1097" ; + sc:name "Sequence accession (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0880" ; - sc:name "RNA secondary structure" ; - sc:sameAs "http://edamontology.org/data_0880" ], + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene transcript report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ], + sc:additionalType "http://edamontology.org/data_0880" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "RNA secondary structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0659 ; sc:citation ; @@ -304374,7 +315948,7 @@ Enables building small-RNA libraries for the organism of choice to use in the mi biotools:primaryContact "Bastian Fromm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -304394,7 +315968,7 @@ microRNA-target binding site prediction tool.""" ; sc:url "http://predictor.nchu.edu.tw/miRgo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -304416,7 +315990,7 @@ microRNA-target binding site prediction tool.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -304430,8 +316004,31 @@ microRNA-target binding site prediction tool.""" ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/miriam/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0769, + edam:topic_2229, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:35084791" ; + sc:description "A machine and deep learning single-cell segmentation and quantification pipeline for multi-dimensional tissue images." ; + sc:featureList edam:operation_0314, + edam:operation_3443, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MIRIAM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/Coffey-Lab/MIRIAM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3071 ; @@ -304447,7 +316044,7 @@ microRNA-target binding site prediction tool.""" ; sc:url "http://www.ebi.ac.uk/miriam/main/mdb?section=ws_help" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -304464,7 +316061,7 @@ microRNA-target binding site prediction tool.""" ; sc:url "http://mirin.ym.edu.tw/tool.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0089, @@ -304487,7 +316084,7 @@ This R Shiny application can be used to predict Gene Ontology (GO) terms indirec sc:url "https://github.com/Fadeel/miRinGO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -304506,8 +316103,29 @@ This R Shiny application can be used to predict Gene Ontology (GO) terms indirec sc:url "http://bioconductor.org/packages/release/bioc/html/mirIntegrator.html" ; biotools:primaryContact "Diana Diaz" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3379, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9010828", + "pubmed:35432465" ; + sc:description "A Distance-Based Microbiome Kernel Association Test With Multi-Categorical Outcomes.MiRKAT-MC" ; + sc:featureList edam:operation_2238, + edam:operation_3196, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MiRKAT-MC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Zhiwen-Owen-Jiang/MiRKATMC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "miRkit is an open source framework written in R, that allows for the comprehensive analysis of RT-PCR data, from the processing of raw data to a functional analysis of the produced results. The main goal of the tool is to provide an assessment of the samples’ quality, perform data normalization by endogenous and exogenous miRNAs, and facilitate differential and functional enrichment analysis. The tool offers fast execution times with low memory usage, can perform the full analysis from the raw RT-PCR data to functional analysis of targeted genes, and is specifically designed to support the popular miScript miRNA PCR Array (Qiagen) technology." ; sc:isAccessibleForFree true ; sc:license "MIT" ; @@ -304519,18 +316137,17 @@ This R Shiny application can be used to predict Gene Ontology (GO) terms indirec a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ], + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Experimental measurement" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Plug-in" ; @@ -304560,7 +316177,7 @@ This R Shiny application can be used to predict Gene Ontology (GO) terms indirec biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -304577,7 +316194,7 @@ This R Shiny application can be used to predict Gene Ontology (GO) terms indirec biotools:primaryContact "Steffen Sass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal", "Library", @@ -304602,7 +316219,7 @@ This R Shiny application can be used to predict Gene Ontology (GO) terms indirec "Morten Lindow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0659 ; sc:citation ; @@ -304617,7 +316234,7 @@ This R Shiny application can be used to predict Gene Ontology (GO) terms indirec sc:url "http://mirmap.ezlab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -304632,7 +316249,7 @@ This R Shiny application can be used to predict Gene Ontology (GO) terms indirec biotools:primaryContact "Lana Garmire" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0659, @@ -304650,7 +316267,7 @@ This R Shiny application can be used to predict Gene Ontology (GO) terms indirec biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659 ; @@ -304667,7 +316284,7 @@ This R Shiny application can be used to predict Gene Ontology (GO) terms indirec "Prof. J.Wang (Other)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "miRmine database is a collection of expression profiles from different publicly available miRNA-seq datasets, Panwar et al (2017) miRmine: A Database of Human miRNA Expression, prepared with this data package as RangedSummarizedExperiment." ; @@ -304684,7 +316301,7 @@ This R Shiny application can be used to predict Gene Ontology (GO) terms indirec biotools:primaryContact "Dusan Randjelovic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2533, edam:topic_2640, @@ -304701,7 +316318,7 @@ This R Shiny application can be used to predict Gene Ontology (GO) terms indirec "Steven M Foltz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0099, @@ -304721,7 +316338,7 @@ This R Shiny application can be used to predict Gene Ontology (GO) terms indirec biotools:primaryContact "Dinesh Gupta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -304735,8 +316352,31 @@ This R Shiny application can be used to predict Gene Ontology (GO) terms indirec sc:softwareHelp ; sc:url "http://hulab.ucf.edu/research/projects/miRNA/miRModule/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0659, + edam:topic_0769, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9039401", + "pubmed:35495139" ; + sc:description "Detecting miRNA-mRNA Regulatory Modules." ; + sc:featureList edam:operation_0314, + edam:operation_2436, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "miRModuleNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/malikyousef/miRModuleNet/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0659, @@ -304755,7 +316395,7 @@ based on distance structure status pairs.""" ; biotools:primaryContact "Bin Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -304771,10 +316411,10 @@ based on distance structure status pairs.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -304796,7 +316436,7 @@ based on distance structure status pairs.""" ; sc:url "http://mirnafinder.shyaman.me/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0099, @@ -304813,7 +316453,7 @@ based on distance structure status pairs.""" ; sc:url "http://evryrna.ibisc.univ-evry.fr/miRNAFold/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0659 ; sc:citation "pubmed:20801911" ; @@ -304827,7 +316467,7 @@ based on distance structure status pairs.""" ; biotools:primaryContact "miRNAKey Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0160, @@ -304844,7 +316484,7 @@ based on distance structure status pairs.""" ; biotools:primaryContact "Yin Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -304867,26 +316507,26 @@ based on distance structure status pairs.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ], + sc:additionalType "http://edamontology.org/data_3115" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Microarray metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3115" ; - sc:name "Microarray metadata" ; - sc:sameAs "http://edamontology.org/data_3115" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -304907,7 +316547,7 @@ based on distance structure status pairs.""" ; biotools:primaryContact "James M. Ward" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2229, @@ -304929,7 +316569,7 @@ mirnaQC provides several quality features that can help researchers identify iss sc:url "https://arn.ugr.es/mirnaqc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -304951,7 +316591,7 @@ microRNAs (miRNAs) are endogenous and regulatory non-coding RNAs by targeting mR sc:url "http://bioinfo.life.hust.edu.cn/miRNASNP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0659, @@ -304970,22 +316610,22 @@ microRNAs (miRNAs) are endogenous and regulatory non-coding RNAs by targeting mR a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1027" ; - sc:name "Gene ID (NCBI)" ; - sc:sameAs "http://edamontology.org/data_1027" ], + sc:additionalType "http://edamontology.org/data_1027" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Gene ID (NCBI)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0954" ; - sc:name "Database cross-mapping" ; - sc:sameAs "http://edamontology.org/data_0954" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0954" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Database cross-mapping" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0621, @@ -305008,7 +316648,7 @@ microRNAs (miRNAs) are endogenous and regulatory non-coding RNAs by targeting mR biotools:primaryContact "Maciej Pajak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0659, @@ -305029,7 +316669,7 @@ As a database, miRTarBase has accumulated more than three hundred and sixty thou sc:url "http://miRTarBase.cuhk.edu.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -305045,7 +316685,7 @@ As a database, miRTarBase has accumulated more than three hundred and sixty thou biotools:primaryContact "Antonino Fiannaca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0634, @@ -305066,7 +316706,7 @@ As a database, miRTarBase has accumulated more than three hundred and sixty thou sc:url "https://www.ccb.uni-saarland.de/tissueatlas2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0780, @@ -305088,7 +316728,7 @@ As a database, miRTarBase has accumulated more than three hundred and sixty thou biotools:primaryContact "miRNEST Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0602, @@ -305109,7 +316749,7 @@ As a database, miRTarBase has accumulated more than three hundred and sixty thou biotools:primaryContact "Jeff Xia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -305128,7 +316768,7 @@ As a database, miRTarBase has accumulated more than three hundred and sixty thou sc:url "http://cegg.unige.ch/mirortho" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659 ; @@ -305143,7 +316783,7 @@ As a database, miRTarBase has accumulated more than three hundred and sixty thou sc:url "https://bioinformatics.mpi-bn.mpg.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -305164,7 +316804,7 @@ As a database, miRTarBase has accumulated more than three hundred and sixty thou biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -305182,7 +316822,7 @@ As a database, miRTarBase has accumulated more than three hundred and sixty thou "Dr. Simon Moxon," . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, @@ -305201,7 +316841,7 @@ Run cv_mirPLS to determine the regularization parameters: lambda1 and lambda2. W sc:url "https://github.com/pfruan/mirPLS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3168, @@ -305221,7 +316861,7 @@ Run cv_mirPLS to determine the regularization parameters: lambda1 and lambda2. W biotools:primaryContact "Vincent Moulton" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0092 ; @@ -305239,14 +316879,14 @@ Run cv_mirPLS to determine the regularization parameters: lambda1 and lambda2. W a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3496" ; - sc:name "RNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3496" ] ; + sc:additionalType "http://edamontology.org/data_3496" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "RNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0659 ; sc:citation , @@ -305267,7 +316907,7 @@ Run cv_mirPLS to determine the regularization parameters: lambda1 and lambda2. W biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3077, @@ -305287,8 +316927,34 @@ Run cv_mirPLS to determine the regularization parameters: lambda1 and lambda2. W sc:softwareHelp ; sc:url "https://github.com/opieters/MIRRA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0114, + edam:topic_0219, + edam:topic_3174, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9045266", + "pubmed:35352997" ; + sc:description "Database and Tool for Metataxonomics with Long-Read Sequence." ; + sc:featureList edam:operation_0579, + edam:operation_3200, + edam:operation_3460, + edam:operation_3695, + edam:operation_3933 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MIrROR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://mirror.egnome.co.kr/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -305304,7 +316970,7 @@ Run cv_mirPLS to determine the regularization parameters: lambda1 and lambda2. W sc:url "http://bartellab.wi.mit.edu/softwareDocs/MiRscan3/Introduction.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -305326,7 +316992,7 @@ Run cv_mirPLS to determine the regularization parameters: lambda1 and lambda2. W sc:url "https://github.com/hannenhalli-lab/miRSCAPE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -305350,7 +317016,7 @@ Run cv_mirPLS to determine the regularization parameters: lambda1 and lambda2. W biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3063, @@ -305370,7 +317036,7 @@ Run cv_mirPLS to determine the regularization parameters: lambda1 and lambda2. W biotools:primaryContact "Junpeng Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3071, @@ -305385,7 +317051,7 @@ Run cv_mirPLS to determine the regularization parameters: lambda1 and lambda2. W biotools:primaryContact "David T. Humphreys" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -305403,7 +317069,7 @@ This website uses Matomo Analytics and cookies. For more information, please ref sc:url "https://www.ccb.uni-saarland.de/mirswitch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -305424,7 +317090,7 @@ This website uses Matomo Analytics and cookies. For more information, please ref biotools:primaryContact "Yue Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0602, @@ -305443,7 +317109,7 @@ This website uses Matomo Analytics and cookies. For more information, please ref biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2229, @@ -305465,7 +317131,7 @@ This website uses Matomo Analytics and cookies. For more information, please ref "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -305486,8 +317152,31 @@ This website uses Matomo Analytics and cookies. For more information, please ref sc:url "http://miRTarBase.mbc.nctu.edu.tw/" ; biotools:primaryContact "miRTarBase Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_0659, + edam:topic_2885, + edam:topic_3512, + edam:topic_3794 ; + sc:citation , + "pmcid:PMC8728135", + "pubmed:34850920" ; + sc:description "The experimentally validated microRNA-target interactions database" ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_0463, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:name "miRTarBase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://miRTarBase.cuhk.edu.cn/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0203, @@ -305505,7 +317194,7 @@ This website uses Matomo Analytics and cookies. For more information, please ref sc:url "http://hcil.snu.ac.kr/~rati/miRTarVis/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0204, @@ -305522,7 +317211,7 @@ This website uses Matomo Analytics and cookies. For more information, please ref biotools:primaryContact "Gang Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -305539,7 +317228,7 @@ This website uses Matomo Analytics and cookies. For more information, please ref biotools:primaryContact "Kuo-Bin Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -305558,7 +317247,7 @@ This project includes the dataset and excuteable programs (both on Windows and L sc:url "https://github.com/hjiangcsu/miRTMC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0659, @@ -305575,7 +317264,7 @@ This project includes the dataset and excuteable programs (both on Windows and L sc:url "http://centre.bioinformatics.zj.cn/mirtools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0602, @@ -305593,7 +317282,7 @@ This project includes the dataset and excuteable programs (both on Windows and L sc:url "http://mirtrail.bioinf.uni-sb.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -305616,7 +317305,7 @@ This project includes the dataset and excuteable programs (both on Windows and L "Yi Jiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0659, @@ -305635,7 +317324,7 @@ This project includes the dataset and excuteable programs (both on Windows and L biotools:primaryContact "The Zhao Bioinformatics Laboratory" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0634, @@ -305656,7 +317345,7 @@ This project includes the dataset and excuteable programs (both on Windows and L "Rahim Rajwani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -305678,7 +317367,7 @@ This project includes the dataset and excuteable programs (both on Windows and L biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -305696,7 +317385,7 @@ This project includes the dataset and excuteable programs (both on Windows and L biotools:primaryContact "AV Antonov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0203, edam:topic_0659, @@ -305723,7 +317412,7 @@ Cammaerts, S., Strazisar, M., Dierckx, J., Del Favero, J., De Rijk, P. (2015) mi sc:url "http://mirvas.bioinf.be/analyse.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, @@ -305746,7 +317435,7 @@ Cammaerts, S., Strazisar, M., Dierckx, J., Del Favero, J., De Rijk, P. (2015) mi biotools:primaryContact "miRvestigator Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0659, @@ -305763,7 +317452,7 @@ Cammaerts, S., Strazisar, M., Dierckx, J., Del Favero, J., De Rijk, P. (2015) mi biotools:primaryContact "Weixiong Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0625, @@ -305785,7 +317474,7 @@ Overlay microRNA data (miR expression, differential expression, phenotypic score sc:url "http://mirviz.prabi.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -305798,7 +317487,7 @@ Overlay microRNA data (miR expression, differential expression, phenotypic score sc:url "http://www.mirz.unibas.ch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0654, @@ -305815,7 +317504,7 @@ Overlay microRNA data (miR expression, differential expression, phenotypic score biotools:primaryContact "Thomas Thiel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3305 ; @@ -305828,7 +317517,7 @@ Overlay microRNA data (miR expression, differential expression, phenotypic score sc:url "https://miscan.eu-topia.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -305849,7 +317538,7 @@ MISCAST (MIssense variant to protein StruCture Analysis web SuiTe; http://miscas sc:url "http://miscast.broadinstitute.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3384, @@ -305869,7 +317558,7 @@ The open-source Python library MIScnn is an intuitive API allowing fast setup of sc:url "https://github.com/frankkramer-lab/MIScnn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3339, edam:topic_3678, @@ -305887,8 +317576,29 @@ The open-source Python library MIScnn is an intuitive API allowing fast setup of "Windows" ; sc:url "https://github.com/pchlenski/misdeed" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3063, + edam:topic_3303, + edam:topic_3384, + edam:topic_3452, + edam:topic_3474 ; + sc:citation , + "pubmed:35612011" ; + sc:description "A Metric Library for Medical Image Segmentation Evaluation." ; + sc:featureList edam:operation_3435, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MISeval" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/frankkramer-lab/miseval" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -305903,7 +317613,7 @@ The open-source Python library MIScnn is an intuitive API allowing fast setup of sc:url "https://github.com/hitbio/misFinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -305917,7 +317627,7 @@ The open-source Python library MIScnn is an intuitive API allowing fast setup of sc:url "http://kirill-kryukov.com/study/mishima/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0781, @@ -305933,7 +317643,7 @@ The open-source Python library MIScnn is an intuitive API allowing fast setup of sc:url "https://www.fasteris.com/apps/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation ; @@ -305946,7 +317656,7 @@ The open-source Python library MIScnn is an intuitive API allowing fast setup of biotools:primaryContact "Cinzia Pizzi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320 ; @@ -305960,8 +317670,31 @@ The open-source Python library MIScnn is an intuitive API allowing fast setup of sc:url "http://genes.mit.edu/burgelab/miso/docs/#releases" ; biotools:primaryContact "Tom Griffiths" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2229, + edam:topic_2640, + edam:topic_3170, + edam:topic_3421 ; + sc:citation , + "pmcid:PMC8566242", + "pubmed:34725485" ; + sc:description "A knowledgebase and transparency tool for minimum information in spheroid identity." ; + sc:featureList edam:operation_0310, + edam:operation_3223, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "MISpheroID" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.mispheroid.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -305986,7 +317719,7 @@ Missense3D-DB is a database of precomputed structural predictions for ~4M human sc:url "http://missense3d.bc.ic.ac.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -306002,7 +317735,7 @@ Missense3D-DB is a database of precomputed structural predictions for ~4M human sc:url "http://www.cs.colostate.edu/seq/missequel/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3332 ; @@ -306014,7 +317747,7 @@ Missense3D-DB is a database of precomputed structural predictions for ~4M human sc:url "https://github.com/ljmartin/Missing_label_problem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -306037,7 +317770,7 @@ Missense3D-DB is a database of precomputed structural predictions for ~4M human . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3307 ; @@ -306059,7 +317792,7 @@ Missense3D-DB is a database of precomputed structural predictions for ~4M human biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -306081,7 +317814,7 @@ Missense3D-DB is a database of precomputed structural predictions for ~4M human sc:url "http://mistdb.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3382, @@ -306097,7 +317830,7 @@ Missense3D-DB is a database of precomputed structural predictions for ~4M human biotools:primaryContact "Joe Chalfoun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -306120,7 +317853,7 @@ Missense3D-DB is a database of precomputed structural predictions for ~4M human biotools:primaryContact "Franco Simonetti (Webadmin)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2640, @@ -306139,7 +317872,7 @@ Missense3D-DB is a database of precomputed structural predictions for ~4M human biotools:primaryContact "Sylvie Mader" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0602, @@ -306157,8 +317890,61 @@ Missense3D-DB is a database of precomputed structural predictions for ~4M human sc:softwareVersion "2.1.16" ; sc:url "https://mistic2.leloir.org.ar/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script", + "Web API", + "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0622, + edam:topic_2269, + edam:topic_3063, + edam:topic_3325, + edam:topic_3474, + edam:topic_3676 ; + sc:author , + ; + sc:citation , + "pmcid:PMC7394404", + "pubmed:32735577" ; + sc:contributor ; + sc:description "MISTIC (MISsense deleTeriousness predICtor), a prediction tool to reveal disease-relevant deleterious missense variants based on an original combination of two complementary machine learning algorithms using a soft voting system that integrates 113 missense features, ranging from multi-ethnic minor allele frequencies and evolutionary conservation, to physiochemical and biochemical properties of amino acids." ; + sc:featureList edam:operation_0331, + edam:operation_3225, + edam:operation_3226 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MISTIC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "1.0" ; + sc:url "http://lbgi.fr/mistic" ; + biotools:primaryContact , + . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0625, + edam:topic_3360, + edam:topic_3382 ; + sc:citation ; + sc:description "An open-source multiplexed image t-SNE viewer." ; + sc:featureList edam:operation_0337, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Mistic" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/MathOnco/Mistic" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0203, @@ -306182,7 +317968,7 @@ Missense3D-DB is a database of precomputed structural predictions for ~4M human biotools:primaryContact "Chris Burge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3474, @@ -306196,7 +317982,7 @@ Missense3D-DB is a database of precomputed structural predictions for ~4M human sc:url "https://github.com/tjgu/miTAR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -306221,7 +318007,7 @@ mitch is an R package for multi-contrast enrichment analysis.""" ; sc:url "https://bioconductor.org/packages/mitch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -306234,7 +318020,7 @@ mitch is an R package for multi-contrast enrichment analysis.""" ; sc:url "http://labs.csb.utoronto.ca/yang/MITEDigger/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0099, @@ -306250,7 +318036,7 @@ mitch is an R package for multi-contrast enrichment analysis.""" ; sc:url "http://cbl-gorilla.cs.technion.ac.il/miTEA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -306272,7 +318058,7 @@ MITGARD (Mitochondrial Genome Assembly from RNA-seq Data) is a computational too sc:url "https://github.com/pedronachtigall/MITGARD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -306292,12 +318078,15 @@ MitImpact is a collection of pre-computed pathogenicity predictions for all poss sc:url "http://mitimpact.css-mendel.it" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0199, edam:topic_0602 ; - sc:citation ; + sc:citation , + , + "pmcid:PMC9252804", + "pubmed:35524562" ; sc:description "Visual data mining platform to systematically analyze and visualize mitochondrial expression dynamics and mutations." ; sc:featureList edam:operation_0337, edam:operation_3891 ; @@ -306308,11 +318097,13 @@ MitImpact is a collection of pre-computed pathogenicity predictions for all poss "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://mitoxplorer.ibdm.univ-mrs.fr" ; - biotools:primaryContact "Bianca Habermann" . + sc:softwareVersion "1.0", + "2.0" ; + sc:url "http://mitoxplorer2.ibdm.univ-mrs.fr/index.php" ; + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0654 ; @@ -306327,7 +318118,7 @@ MitImpact is a collection of pre-computed pathogenicity predictions for all poss sc:url "http://darwin.uvigo.es/software/mitobank.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2229, @@ -306346,7 +318137,7 @@ MitImpact is a collection of pre-computed pathogenicity predictions for all poss biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -306367,13 +318158,8 @@ MitoCarta3.0 is an inventory of 1136 human and 1140 mouse genes encoding protein sc:softwareVersion "3.0" ; sc:url "http://www.broadinstitute.org/mitocarta" . - a sc:SoftwareApplication ; - sc:description "Mitochondrial DNA sequencing is available on both Illumina’s MiSeq, and PacBio Sequel System. Illumina next-generation sequencing (NGS) has the potential to transform mtDNA analysis. Take advantage of PacBio’s long reads, CD Genomics present amplification-free, full-length sequencing of linearized mtDNA. Full-length sequencing allows variant phasing along the entire mitochondrial genome, identification of heteroplasmic variants, and detection of epigenetic modifications that are lost in amplicon-based methods." ; - sc:name "Mitochondrial DNA (mtDNA) sequencing" ; - sc:url "https://www.cd-genomics.com/Mitochondrial-DNA-mtDNA-sequencing.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -306387,8 +318173,26 @@ MitoCarta3.0 is an inventory of 1136 human and 1140 mouse genes encoding protein sc:url "http://sourceforge.net/projects/mitocounter/?source=navbar" ; biotools:primaryContact "Cheng-Yan Kao" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0199, + edam:topic_2640, + edam:topic_3168, + edam:topic_3474 ; + sc:citation , + "pubmed:35001369" ; + sc:description "A machine learning approach for the accurate identification of cross-contamination-derived tumor mitochondrial DNA mutations." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "mitoDataclean" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "https://github.com/3150129019/mitoDataclean" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -306408,7 +318212,7 @@ MitoCarta3.0 is an inventory of 1136 human and 1140 mouse genes encoding protein biotools:primaryContact "Wataru Iwasaki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -306429,7 +318233,7 @@ MitoFlex is a Python3 based toolkit designated for mitochondrial genome assembli sc:url "https://github.com/Prunoideae/MitoFlex" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0622, @@ -306445,7 +318249,7 @@ MitoFlex is a Python3 based toolkit designated for mitochondrial genome assembli sc:url "http://dogma.ccbb.utexas.edu/mitofy/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -306470,8 +318274,25 @@ MitoFlex is a Python3 based toolkit designated for mitochondrial genome assembli "Jean-Christophe GELLY", "Mickael ORGEUR" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0196, + edam:topic_0622 ; + sc:citation ; + sc:description "Find, circularise and annotate mitogenome from PacBio assemblies" ; + sc:featureList edam:operation_0362, + edam:operation_0524, + edam:operation_0525, + edam:operation_2995 ; + sc:license "MIT" ; + sc:name "MitoHiFi" ; + sc:softwareVersion "2.2" ; + sc:url "https://github.com/marcelauliano/MitoHiFi" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -306493,7 +318314,7 @@ MitoFlex is a Python3 based toolkit designated for mitochondrial genome assembli sc:url "https://ab-openlab.csir.res.in/mitolink/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0621, @@ -306516,18 +318337,18 @@ MitoFlex is a Python3 based toolkit designated for mitochondrial genome assembli a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0625, @@ -306551,7 +318372,7 @@ MitoFlex is a Python3 based toolkit designated for mitochondrial genome assembli "Gregoire Pau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, @@ -306574,7 +318395,7 @@ MitoFlex is a Python3 based toolkit designated for mitochondrial genome assembli "Silvia Crafa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2229, @@ -306589,7 +318410,7 @@ MitoFlex is a Python3 based toolkit designated for mitochondrial genome assembli biotools:primaryContact "Tan Mun Hua" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -306608,7 +318429,7 @@ MitoFlex is a Python3 based toolkit designated for mitochondrial genome assembli biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -306631,7 +318452,7 @@ MitoFlex is a Python3 based toolkit designated for mitochondrial genome assembli sc:url "http://www.mitophen.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -306648,7 +318469,7 @@ MitoFlex is a Python3 based toolkit designated for mitochondrial genome assembli sc:url "http://bioinformatics.albany.edu/~mitopred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -306667,14 +318488,14 @@ MitoFlex is a Python3 based toolkit designated for mitochondrial genome assembli a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2084" ; - sc:name "Nucleic acid report" ; - sc:sameAs "http://edamontology.org/data_2084" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2084" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Nucleic acid report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_3500, @@ -306687,8 +318508,32 @@ MitoFlex is a Python3 based toolkit designated for mitochondrial genome assembli sc:softwareHelp ; sc:url "http://mitos.bioinf.uni-leipzig.de/index.py" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_2229, + edam:topic_3168, + edam:topic_3474, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC8610268", + "pubmed:34762648" ; + sc:description "A big-data, machine-learning platform for obtaining mitochondrial DNA from next-generation sequencing data." ; + sc:featureList edam:operation_0292, + edam:operation_0308, + edam:operation_3227, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "MitoScape" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/larryns/MitoScape" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2229, @@ -306702,7 +318547,7 @@ MitoFlex is a Python3 based toolkit designated for mitochondrial genome assembli sc:url "https://github.com/riverlee/MitoSeek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0625, @@ -306726,7 +318571,7 @@ All scripts used to generate statistical and visual data shown in the MitoSegNet sc:url "https://zenodo.org/search?page=1&size=20&q=mitosegnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -306746,7 +318591,7 @@ All scripts used to generate statistical and visual data shown in the MitoSegNet biotools:primaryContact "Neal Sondheimer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -306764,7 +318609,7 @@ All scripts used to generate statistical and visual data shown in the MitoSegNet biotools:primaryContact "Yong-Gang Yao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2229, @@ -306781,7 +318626,7 @@ All scripts used to generate statistical and visual data shown in the MitoSegNet biotools:primaryContact "Long Fan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -306805,8 +318650,32 @@ All scripts used to generate statistical and visual data shown in the MitoSegNet sc:softwareHelp ; sc:url "http://www.mitotox.org" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0097, + edam:topic_0099, + edam:topic_0654 ; + sc:citation , + "pubmed:35412583" ; + sc:description "MitoVisualize is a tool for analysis of variants in human mitochondrial RNAs and DNA." ; + sc:featureList edam:operation_0502, + edam:operation_0570, + edam:operation_3197 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MitoVisualize" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://www.mitovisualize.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3299 ; sc:citation ; @@ -306823,7 +318692,7 @@ All scripts used to generate statistical and visual data shown in the MitoSegNet biotools:primaryContact "Graziano Pesole" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2229, @@ -306837,11 +318706,11 @@ All scripts used to generate statistical and visual data shown in the MitoSegNet "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/mitpred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/mitpred/" ; biotools:primaryContact "G.P.S.Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation "pubmed:11262950" ; @@ -306853,7 +318722,7 @@ All scripts used to generate statistical and visual data shown in the MitoSegNet sc:url "http://www.snubi.org/software/MITree/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3125, @@ -306870,7 +318739,7 @@ All scripts used to generate statistical and visual data shown in the MitoSegNet biotools:primaryContact "Alastair M. Kilpatrick" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -306889,7 +318758,7 @@ Technically you can run mity call and mity normalise separately, but since mity sc:url "https://github.com/KCCG/mity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:author "Alexis Groppi", @@ -306915,7 +318784,7 @@ Technically you can run mity call and mity normalise separately, but since mity biotools:primaryContact "Alexis Groppi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3055 ; @@ -306931,7 +318800,7 @@ Technically you can run mity call and mity normalise separately, but since mity sc:url "https://portal.mtt.fi/portal/page/portal/mtt_en/mtt/about/researchunits/bel/biometricalgenetics/software/MiX99" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_2269, @@ -306951,7 +318820,7 @@ mixNBHMM is an R package for the detection of genomic regions exhibiting short a sc:url "https://github.com/plbaldoni/mixNBHMM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3055 ; sc:description "Modern genetic evaluation system for all breeding organizations. It estimates genetic merit of individuals using observations and family relationships, given the components of variance." ; @@ -306965,7 +318834,7 @@ mixNBHMM is an R package for the detection of genomic regions exhibiting short a sc:url "http://www.mixblup.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3125, @@ -306983,7 +318852,7 @@ mixNBHMM is an R package for the detection of genomic regions exhibiting short a "Sini Rautio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0122, edam:topic_2640 ; @@ -307000,7 +318869,7 @@ mixNBHMM is an R package for the detection of genomic regions exhibiting short a sc:url "https://github.com/uci-cbcl/MixClone" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -307013,8 +318882,27 @@ mixNBHMM is an R package for the detection of genomic regions exhibiting short a sc:softwareVersion "1.0r" ; sc:url "http://proteomics.ucsd.edu/software-tools/mixdb/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_2640, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC8916743", + "pubmed:35280976" ; + sc:description "The R package mixedCCA implements sparse canonical correlation analysis for data of mixed types: continuous, binary or zero-inflated (truncated continuous)." ; + sc:featureList edam:operation_0337, + edam:operation_3799 ; + sc:license "Not licensed" ; + sc:name "mixedCCA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/irinagain/mixedCCA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -307030,7 +318918,7 @@ mixNBHMM is an R package for the detection of genomic regions exhibiting short a sc:url "http://proteomics.ucsd.edu/software-tools/mixgf/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -307055,8 +318943,30 @@ The goal of mixIndependR is to test the mutual independence of mixed genetic mar sc:name "mixIndependR" ; sc:url "https://cran.r-project.org/web/packages/mixIndependR/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3307, + edam:topic_3391, + edam:topic_3569 ; + sc:citation , + ; + sc:description "Kernel-based methods are powerful methods for integrating heterogeneous types of data. mixKernel aims at providing methods to combine kernel for unsupervised exploratory analysis. Different solutions are provided to compute a meta-kernel, in a consensus way or in a way that best preserves the original topology of the data. mixKernel also integrates kernel PCA to visualize similarities between samples in a non linear space and from the multiple source point of view. Functions to assess and display important variables are also provided in the package." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "mixKernel" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + , + ; + sc:softwareVersion "0.8" ; + sc:url "http://mixkernel.clementine.wf/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -307068,7 +318978,7 @@ The goal of mixIndependR is to test the mutual independence of mixed genetic mar sc:url "http://www.csjfann.ibms.sinica.edu.tw/eag/programlist/MIXMUL/MIXMUL.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3314 ; sc:citation ; @@ -307083,14 +318993,14 @@ Mixology is a tool that makes it easy to calculate the ingredients needed for me a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0121, @@ -307120,7 +319030,7 @@ Mixology is a tool that makes it easy to calculate the ingredients needed for me biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, @@ -307141,7 +319051,7 @@ MixONat allows the dereplication of natural products mixtures using 13C-NMR and sc:url "https://sourceforge.net/projects/mixonat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -307160,7 +319070,7 @@ Detection and visualization of 2n/3n mixoploidy from a VCF. This repo contains t sc:url "https://github.com/HudsonAlpha/mixoviz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -307177,7 +319087,7 @@ Detection and visualization of 2n/3n mixoploidy from a VCF. This repo contains t "Bogdan Pasaniuc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654 ; @@ -307191,7 +319101,7 @@ Detection and visualization of 2n/3n mixoploidy from a VCF. This repo contains t sc:url "https://sites.google.com/site/hmatsu1226/software/mixsih" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623, edam:topic_3293, @@ -307206,7 +319116,7 @@ Detection and visualization of 2n/3n mixoploidy from a VCF. This repo contains t biotools:primaryContact "Ikram Ullah Khattak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -307225,7 +319135,7 @@ Detection and visualization of 2n/3n mixoploidy from a VCF. This repo contains t biotools:primaryContact "Michael A Newton" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -307244,7 +319154,7 @@ Detection and visualization of 2n/3n mixoploidy from a VCF. This repo contains t "Tamara Munzner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -307258,7 +319168,7 @@ Detection and visualization of 2n/3n mixoploidy from a VCF. This repo contains t sc:url "http://prodom.prabi.fr/prodom/xdom/welcome.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0736 ; @@ -307273,14 +319183,13 @@ Detection and visualization of 2n/3n mixoploidy from a VCF. This repo contains t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_2187" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3210" ; - sc:name "Genome index" ; - sc:sameAs "http://edamontology.org/data_3210" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3210" ; + sc:name "Genome index" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3071 ; @@ -307301,7 +319210,7 @@ Detection and visualization of 2n/3n mixoploidy from a VCF. This repo contains t sc:url "http://bibiserv.cebitec.uni-bielefeld.de/mkesa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -307324,7 +319233,7 @@ Detection and visualization of 2n/3n mixoploidy from a VCF. This repo contains t "Sonia Casillas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -307343,7 +319252,7 @@ Derives Gromacs virtual site parameters (angle constraint, dummy constraints) fo sc:url "https://github.com/ErikMarklund/mkvsites" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3314, @@ -307365,7 +319274,7 @@ Derives Gromacs virtual site parameters (angle constraint, dummy constraints) fo biotools:primaryContact "Orly Liba" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -307383,8 +319292,29 @@ Derives Gromacs virtual site parameters (angle constraint, dummy constraints) fo "Windows" ; sc:url "https://github.com/liusong299/ML-DBSCAN" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0140, + edam:topic_0601, + edam:topic_0749, + edam:topic_0820, + edam:topic_2229 ; + sc:citation , + "pmcid:PMC8690230", + "pubmed:34864897" ; + sc:description "Predicting the multi-label protein subcellular localization through multi-information fusion and MLSI dimensionality reduction based on MLFE classifier." ; + sc:featureList edam:operation_2489, + edam:operation_3891, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ML-locMLFE" ; + sc:operatingSystem "Windows" ; + sc:url "https://github.com/QUST-AIBBDRC/ML-locMLFE/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_3382, @@ -307407,7 +319337,7 @@ Derives Gromacs virtual site parameters (angle constraint, dummy constraints) fo sc:url "http://ML-SIM.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -307422,8 +319352,43 @@ Derives Gromacs virtual site parameters (angle constraint, dummy constraints) fo sc:url "http://www.cbil.ece.vt.edu/software.htm" ; biotools:primaryContact "Jianhua Xuan" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2258, + edam:topic_3332, + edam:topic_3474 ; + sc:citation , + "pubmed:34559964" ; + sc:contributor , + , + "Alexander W. Kohn", + "Nadav Geva" ; + sc:description "ML-wPBE is a machine learned range separated hybrid functional for use in density functional theory (DFT) calculations." ; + sc:name "ML-wPBE" ; + sc:url "https://github.com/zhoulinumass/ML-wPBE" ; + biotools:primaryContact . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3315, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9236579", + "pubmed:35758797" ; + sc:description "An approachable, flexible and practical machine learning workshop for biologists." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ML4Bio" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/gitter-lab/ml4bio" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0769, @@ -307441,7 +319406,7 @@ Derives Gromacs virtual site parameters (angle constraint, dummy constraints) fo sc:url "https://ml4vis.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0140, @@ -307460,7 +319425,7 @@ Derives Gromacs virtual site parameters (angle constraint, dummy constraints) fo "Shibiao Wan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0082, edam:topic_3448, @@ -307481,7 +319446,7 @@ Derives Gromacs virtual site parameters (angle constraint, dummy constraints) fo sc:url "https://github.com/usccolumbia/MLatticeABC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation "pubmed:25086004" ; @@ -307495,8 +319460,39 @@ Derives Gromacs virtual site parameters (angle constraint, dummy constraints) fo sc:url "http://tsenglab.biostat.pitt.edu/software.htm#MLbias" ; biotools:primaryContact "Tseng GC" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_3474 ; + sc:citation , + "pubmed:34651655" ; + sc:description "Identifying multi-functional bioactive peptide functions using multi-label deep learning." ; + sc:featureList edam:operation_3631 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MLBP" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:url "https://github.com/xialab-ahu/MLBP" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:applicationSubCategory edam:topic_3474 ; + sc:description "Tools for analyzing and quantifying effects of confounder variables on machine learning model predictions." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "mlconfound" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "v0.20" ; + sc:url "https://mlconfound.readthedocs.io/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3365, edam:topic_3366 ; @@ -307516,7 +319512,7 @@ Derives Gromacs virtual site parameters (angle constraint, dummy constraints) fo biotools:primaryContact "Sebastian Ventura" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, @@ -307534,7 +319530,7 @@ A machine-learning package for navigating combinatorial protein fitness landscap sc:url "https://github.com/fhalab/MLDE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3308, @@ -307551,7 +319547,7 @@ A machine-learning package for navigating combinatorial protein fitness landscap biotools:primaryContact "Chuang Ma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; @@ -307570,7 +319566,7 @@ Image denoising is a challenging inverse problem due to the complex scenes and i sc:url "https://github.com/MIVRC/MLEFGN-PyTorch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259 ; sc:citation , @@ -307587,7 +319583,7 @@ Image denoising is a challenging inverse problem due to the complex scenes and i sc:url "https://gdancik.github.io/bioinformatics/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3473, @@ -307605,8 +319601,31 @@ A machine learning repository for pattern recognition of gaze errors in consumer sc:name "MLGaze" ; sc:url "https://github.com/anuradhakar49/MLGaze" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_3336, + edam:topic_3375, + edam:topic_3407, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9235472", + "pubmed:35758801" ; + sc:description "A Multi-Label Graph Learning framework enhanced by pathway interdependence for Metabolic Pathway prediction." ; + sc:featureList edam:operation_3660, + edam:operation_3926, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MLGL-MP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/dubingxue/MLGL-MP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3168, @@ -307627,7 +319646,7 @@ A machine learning repository for pattern recognition of gaze errors in consumer biotools:primaryContact "Dave T. Gerrard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -307648,7 +319667,7 @@ A machine learning repository for pattern recognition of gaze errors in consumer biotools:primaryContact "Stephen Wright" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_3324, @@ -307671,18 +319690,15 @@ A machine learning repository for pattern recognition of gaze errors in consumer a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:name "Peptide mass fingerprint" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3489 ; @@ -307702,7 +319718,7 @@ A machine learning repository for pattern recognition of gaze errors in consumer sc:url "http://www.sing-group.org/MLibrary/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3474 ; @@ -307720,7 +319736,7 @@ A machine learning repository for pattern recognition of gaze errors in consumer biotools:primaryContact "V. Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0176, @@ -307739,12 +319755,25 @@ A machine learning repository for pattern recognition of gaze errors in consumer ; sc:url "https://vivien-walter.github.io/mllpa/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3336, + edam:topic_3373 ; + sc:citation , + "pubmed:35289352" ; + sc:description "Drug repositioning based on multi-view learning with matrix completion." ; + sc:license "Not licensed" ; + sc:name "MLMC" ; + sc:url "https://github.com/BioinformaticsCSU/MLMC" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, @@ -307767,7 +319796,7 @@ A machine learning repository for pattern recognition of gaze errors in consumer sc:url "http://cabgrid.res.in:8080/mlocmrna/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0634, @@ -307788,7 +319817,7 @@ MloDisDB aims to gather MLOs and LLPS related diseases from the dispersed litera sc:url "http://mlodis.phasep.pro/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269 ; @@ -307806,7 +319835,7 @@ MloDisDB aims to gather MLOs and LLPS related diseases from the dispersed litera biotools:primaryContact "Tobias Verbeke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:description "mlPhaser is an R package for phase haplotypes from genotypes based on a list of known haplotypes. Suited to highly diverse loci such as HLA." ; @@ -307821,14 +319850,13 @@ MloDisDB aims to gather MLOs and LLPS related diseases from the dispersed litera a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0196, @@ -307857,7 +319885,7 @@ It currently classifies short-read contigs as chromosomes and plasmids for Enter sc:url "https://gitlab.com/sirarredondo/mlplasmids" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3303, @@ -307879,7 +319907,7 @@ Core learners are implemented in mlr3proba, recommended common learners are impl sc:url "https://github.com/mlr-org/mlr3proba" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3518 ; @@ -307892,7 +319920,7 @@ Core learners are implemented in mlr3proba, recommended common learners are impl sc:url "http://github.com/mlr-org/mlrMBO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3056, @@ -307909,7 +319937,7 @@ Core learners are implemented in mlr3proba, recommended common learners are impl biotools:primaryContact "Haubold B" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170, @@ -307929,14 +319957,14 @@ Core learners are implemented in mlr3proba, recommended common learners are impl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2830 ; sc:citation , @@ -307956,14 +319984,12 @@ Core learners are implemented in mlr3proba, recommended common learners are impl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation ; @@ -307978,7 +320004,7 @@ Core learners are implemented in mlr3proba, recommended common learners are impl sc:url "http://mlstdb.bmc.uu.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3174, @@ -307998,7 +320024,7 @@ Deconvoluting the Diversity of Within-host Pathogen Strain in a MLST Framework." sc:url "https://github.com/WGS-TB/MLST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2533, @@ -308014,7 +320040,7 @@ Deconvoluting the Diversity of Within-host Pathogen Strain in a MLST Framework." sc:url "http://www.prc.boun.edu.tr/appserv/prc/mlsta/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084 ; sc:citation ; @@ -308028,7 +320054,7 @@ Deconvoluting the Diversity of Within-host Pathogen Strain in a MLST Framework." biotools:primaryContact "MLtree Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0821, @@ -308045,8 +320071,30 @@ Deconvoluting the Diversity of Within-host Pathogen Strain in a MLST Framework." sc:url "http://mltreemap.org/" ; biotools:primaryContact "http://mltreemap.org/treemap_cgi/treemap_input_page.pl?sessionId=pboNF1ki5uQW&userId=so9xq1rVittY" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0601, + edam:topic_3373 ; + sc:citation , + "pubmed:35953081" ; + sc:description "Graph-based multi-view clustering and multi-dimensional normal distribution resampling techniques to predict multiple lysine sites." ; + sc:featureList edam:operation_0417, + edam:operation_3435, + edam:operation_3645 ; + sc:isAccessibleForFree true ; + sc:name "MLysPRED" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://47.100.136.41:8181" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0176, @@ -308062,7 +320110,7 @@ Deconvoluting the Diversity of Within-host Pathogen Strain in a MLST Framework." sc:url "http://ub.cbm.uam.es/software/mmismsa.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0659, @@ -308082,7 +320130,7 @@ For instance, suppose that you have sequenced your organism of interest with sRN sc:url "https://github.com/mzytnicki/mmannot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0102, @@ -308100,26 +320148,26 @@ For instance, suppose that you have sequenced your organism of interest with sRN a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0153, @@ -308154,7 +320202,7 @@ For instance, suppose that you have sequenced your organism of interest with sRN sc:url "http://www.mmass.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2275 ; @@ -308170,38 +320218,38 @@ For instance, suppose that you have sequenced your organism of interest with sRN a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_1005" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "HET group name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1005" ; - sc:name "HET group name" ; - sc:sameAs "http://edamontology.org/data_1005" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1011" ; - sc:name "EC number" ; - sc:sameAs "http://edamontology.org/data_1011" ], + sc:additionalType "http://edamontology.org/data_1011" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "EC number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ], + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_1705" ; + sc:name "Small molecule structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0081 ; @@ -308216,7 +320264,7 @@ For instance, suppose that you have sequenced your organism of interest with sRN biotools:primaryContact "Josep Ll. Gelpi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -308234,11 +320282,10 @@ For instance, suppose that you have sequenced your organism of interest with sRN biotools:primaryContact "Sylvia Richardson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0130, - edam:topic_2533, - edam:topic_2830 ; + edam:topic_2533 ; sc:citation "pubmed:14511568" ; sc:description "Server of prediction of of MHC class I binders which can bind to wide range of MHC alleles with high affinity. This server has potential to develop sub-unit vaccine for large population." ; sc:featureList edam:operation_1777 ; @@ -308247,11 +320294,11 @@ For instance, suppose that you have sequenced your organism of interest with sRN "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/mmbpred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/mmbpred/" ; biotools:primaryContact "Dr.G.P.S.Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:description "MMCIF Dictionary Suite is a collection of tools to parse, validate, manage data dictionaries used by the PDB. Applications are also included, which convert data dictionaries to XML schema, provide HTML browsing, produce mapping information for relational database loaders (Db Loader) and convert data files between related CIF dialects" ; @@ -308264,7 +320311,7 @@ For instance, suppose that you have sequenced your organism of interest with sRN sc:url "http://sw-tools.rcsb.org/apps/MMCIF-DICT-SUITE/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -308284,8 +320331,36 @@ Murine version of MCP-counter, a tool to estimate the immune and stromal composi sc:name "mMCP-counter" ; sc:url "https://github.com/cit-bioinfo/mMCP-counter" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0077, + edam:topic_0128, + edam:topic_0130, + edam:topic_0154, + edam:topic_0199 ; + sc:citation , + "pmcid:PMC8600011", + "pubmed:34805992" ; + sc:description "Accurately predicting effects of single and multiple mutations on protein-nucleic acid binding affinity." ; + sc:featureList edam:operation_0331, + edam:operation_0420, + edam:operation_0478, + edam:operation_0480, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "mmCSM-NA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://biosig.unimelb.edu.au/mmcsm_na" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -308308,7 +320383,7 @@ Murine version of MCP-counter, a tool to estimate the immune and stromal composi . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0082, @@ -308331,7 +320406,7 @@ Murine version of MCP-counter, a tool to estimate the immune and stromal composi biotools:primaryContact "Stephen H. Bryant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0625, @@ -308353,7 +320428,7 @@ Identify frequently found bacterial species in the gastrointestinal tract of hea sc:url "http://leb.snu.ac.kr/mmdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -308373,7 +320448,7 @@ Identify frequently found bacterial species in the gastrointestinal tract of hea biotools:primaryContact "Gabriele Schweikert" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0654, @@ -308393,7 +320468,7 @@ Identify frequently found bacterial species in the gastrointestinal tract of hea sc:url "https://www.unthsc.edu/mmdit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -308410,7 +320485,7 @@ Identify frequently found bacterial species in the gastrointestinal tract of hea sc:url "https://idrblab.org/mmease/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0160 ; @@ -308432,7 +320507,7 @@ Identify frequently found bacterial species in the gastrointestinal tract of hea biotools:primaryContact "Enrique Blanco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3303, @@ -308451,7 +320526,7 @@ Identify frequently found bacterial species in the gastrointestinal tract of hea "Ni Zhao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -308470,8 +320545,22 @@ Extrachromosomal mobile genetic elements (eMGEs), including phages and plasmids, sc:name "mMGE" ; sc:url "https://mgedb.comp-sysbio.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3384 ; + sc:citation , + "pubmed:35286257" ; + sc:description "an end-to-end Multi-modal Graph Learning framework (MMGL) for disease prediction with multi-modality" ; + sc:featureList edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MMGL" ; + sc:url "https://github.com/SsGood/MMGL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0780, @@ -308493,7 +320582,7 @@ Comprehensively, freely, and User-friendly.""" ; sc:url "https://biodb.swu.edu.cn/mmdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0659, @@ -308508,7 +320597,7 @@ Comprehensively, freely, and User-friendly.""" ; sc:url "http://cancer.informatics.indiana.edu/mmia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623, edam:topic_3053, @@ -308524,7 +320613,7 @@ Comprehensively, freely, and User-friendly.""" ; biotools:primaryContact "Xin Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_2269 ; @@ -308537,7 +320626,7 @@ Comprehensively, freely, and User-friendly.""" ; sc:url "http://lcb.infotech.monash.edu.au/seqmmligner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -308557,7 +320646,7 @@ Comprehensively, freely, and User-friendly.""" ; biotools:primaryContact "Masahiro SUGIMOTO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3174, @@ -308578,7 +320667,7 @@ Comprehensively, freely, and User-friendly.""" ; sc:url "https://github.com/dorbarker/voc-identify/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -308600,7 +320689,7 @@ Comprehensively, freely, and User-friendly.""" ; "Yang Cao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -308631,7 +320720,7 @@ Comprehensively, freely, and User-friendly.""" ; sc:url "https://mmp.sfb.uit.no/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -308651,7 +320740,7 @@ Comprehensively, freely, and User-friendly.""" ; biotools:primaryContact "Guy Brock" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -308669,7 +320758,7 @@ Distance-assisted multimodal conformation sampling for de novo protein structure sc:url "https://github.com/iobio-zjut/MMpred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170 ; @@ -308685,7 +320774,7 @@ Distance-assisted multimodal conformation sampling for de novo protein structure biotools:primaryContact "Matthias Zytnicki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0797, @@ -308702,7 +320791,7 @@ Distance-assisted multimodal conformation sampling for de novo protein structure biotools:primaryContact "MSKCC – Computational Biology Center" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2640, @@ -308720,7 +320809,7 @@ Distance-assisted multimodal conformation sampling for de novo protein structure biotools:primaryContact "Mario Cannataro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0621, @@ -308746,7 +320835,7 @@ Distance-assisted multimodal conformation sampling for de novo protein structure sc:url "http://med.unc.edu/mmrrc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -308765,7 +320854,7 @@ The package mms2plot visualizes multiple tandem mass spectrometry (MS/MS or MS2) sc:url "https://github.com/lileir/MMS2plot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2258 ; sc:citation ; @@ -308782,7 +320871,7 @@ The package mms2plot visualizes multiple tandem mass spectrometry (MS/MS or MS2) biotools:primaryContact "Stefano Moro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170 ; @@ -308797,7 +320886,7 @@ The package mms2plot visualizes multiple tandem mass spectrometry (MS/MS or MS2) biotools:primaryContact "Ernest Turro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0623 ; @@ -308813,7 +320902,7 @@ The package mms2plot visualizes multiple tandem mass spectrometry (MS/MS or MS2) biotools:primaryContact "Johannes Söding" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -308834,7 +320923,7 @@ The package mms2plot visualizes multiple tandem mass spectrometry (MS/MS or MS2) . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3077, @@ -308850,7 +320939,7 @@ Parent repository for the MMSIM framework which currently includes MMSIMPlugin a sc:url "https://github.com/ctr26/MMSIM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2258 ; sc:citation ; @@ -308866,7 +320955,7 @@ Parent repository for the MMSIM framework which currently includes MMSIMPlugin a biotools:primaryContact "Stefano Moro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2258 ; sc:description "Web-oriented tool developed with the specific aim to calculate chemical similarity indexes between a query structure and a chemical database." ; @@ -308881,7 +320970,7 @@ Parent repository for the MMSIM framework which currently includes MMSIMPlugin a biotools:primaryContact "Stefano Moro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_1317, @@ -308896,20 +320985,43 @@ Parent repository for the MMSIM framework which currently includes MMSIMPlugin a sc:softwareHelp ; sc:url "http://blue11.bch.msu.edu/mmtsb/Main_Page" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_2830, + edam:topic_3379, + edam:topic_3930, + edam:topic_3966 ; + sc:citation , + "pmcid:PMC8533362", + "pubmed:34679165" ; + sc:description "Vaccinomics and RNA-based therapeutics database for infectious hemorrhagic fever-causing mammarenaviruses." ; + sc:featureList edam:operation_0252, + edam:operation_0416, + edam:operation_0560 ; + sc:isAccessibleForFree true ; + sc:name "MMVdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.mmvdb.dqweilab-sjtu.com/index.php" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3746" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_1915" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3172, @@ -308928,7 +321040,7 @@ Parent repository for the MMSIM framework which currently includes MMSIMPlugin a sc:url "https://github.com/biocore/mmvec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2828, edam:topic_3452 ; @@ -308945,7 +321057,7 @@ Parent repository for the MMSIM framework which currently includes MMSIMPlugin a biotools:primaryContact "Antoine Bergamaschi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -308968,8 +321080,29 @@ MNDR (Mammalian ncRNA-Disease Repository) is a database that curated association sc:softwareVersion "3.0" ; sc:url "http://www.rna-society.org/mndr/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_3300, + edam:topic_3384 ; + sc:citation , + "pmcid:PMC9390980", + "pubmed:35990374" ; + sc:description "Organizing electrophysiological data into the BIDS format and facilitating their analysis." ; + sc:featureList edam:operation_0224, + edam:operation_0335, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "MNE-BIDS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://mne.tools/mne-bids/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3168, @@ -308991,7 +321124,7 @@ MNDR (Mammalian ncRNA-Disease Repository) is a database that curated association sc:url "https://gitlab.in2p3.fr/mnhn-tools/mnhn-tree-tools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -309008,7 +321141,7 @@ MNDR (Mammalian ncRNA-Disease Repository) is a database that curated association sc:url "http://dibernardo.tigem.it/softwares/mode-of-action-by-network-inference-mni" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3384, @@ -309028,7 +321161,7 @@ A simple command line tool and GUI for computing subtraction ictal SPECT coregis sc:url "https://github.com/jeremymoreau/mnisiscom" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -309050,8 +321183,27 @@ A simple command line tool and GUI for computing subtraction ictal SPECT coregis "Windows" ; sc:url "https://github.com/dmis-lab/moable" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_2640, + edam:topic_2830 ; + sc:citation , + "pubmed:34661627" ; + sc:description "A multi-outcome interaction identification approach" ; + sc:featureList edam:operation_3503 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MOAI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://sites.google.com/view/moaitool/home" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3169, @@ -309072,10 +321224,10 @@ Methylated RNA immunoprecipitation sequencing (MeRIP-Seq) is a popular sequencin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -309092,7 +321244,7 @@ Methylated RNA immunoprecipitation sequencing (MeRIP-Seq) is a popular sequencin biotools:primaryContact "Eivind Valen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0798, @@ -309115,7 +321267,7 @@ Plasmids are mobile genetic elements (MGEs), which allow for rapid evolution and sc:url "https://github.com/phac-nml/mob-suite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation ; @@ -309133,18 +321285,17 @@ Plasmids are mobile genetic elements (MGEs), which allow for rapid evolution and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_2007" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "UniProt keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2007" ; - sc:name "UniProt keyword" ; - sc:sameAs "http://edamontology.org/data_2007" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -309177,14 +321328,14 @@ Plasmids are mobile genetic elements (MGEs), which allow for rapid evolution and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2548" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3510 ; sc:citation "pubmed:28453683" ; @@ -309199,8 +321350,28 @@ Plasmids are mobile genetic elements (MGEs), which allow for rapid evolution and sc:url "http://protein.bio.unipd.it/mobidblite/" ; biotools:primaryContact "Silvio C.E. Tosatto" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0623, + edam:topic_0798, + edam:topic_3174 ; + sc:citation , + "pubmed:36036594" ; + sc:description "A Manually Curated Database of Protein Families Mediating the Life Cycle of Bacterial Mobile Genetic Elements." ; + sc:featureList edam:operation_0427, + edam:operation_0578, + edam:operation_3482 ; + sc:isAccessibleForFree true ; + sc:name "mobileOG-db" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://mobileogdb.flsi.cloud.vt.edu/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3277, @@ -309213,8 +321384,46 @@ mobileQ is a free, open-source web dashboard and Android smartphone application sc:name "mobileQ" ; sc:url "https://mobileQ.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:34898430" ; + sc:description "Extremely Efficient RGB-D Salient Object Detection." ; + sc:featureList edam:operation_3436, + edam:operation_3454, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "MobileSal" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/yuhuan-wu/mobilesal" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0769, + edam:topic_3172 ; + sc:citation , + "pubmed:35781328" ; + sc:description "An R package for effective mobility transformation of CE-MS data." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Artistic-2.0" ; + sc:name "MobilityTransformR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://bioconductor.org/packages/MobilityTransformR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0749, @@ -309241,7 +321450,7 @@ mobileQ is a free, open-source web dashboard and Android smartphone application "Zixin Deng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -309268,7 +321477,7 @@ More convenient input for Manuel Select (selection of cohorts for BVE - 03/11/20 sc:url "http://www.mobps.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -309283,7 +321492,7 @@ More convenient input for Manuel Select (selection of cohorts for BVE - 03/11/20 biotools:primaryContact "Jayne Y Hehir-Kwa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -309302,8 +321511,27 @@ Model-based tumour subclonal deconvolution.""" ; sc:name "mobster-R" ; sc:url "https://caravagnalab.github.io/mobster/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3068, + edam:topic_3407 ; + sc:citation , + "pubmed:35876789" ; + sc:description "A comprehensive Python library for simulating cancer development with Phase Field Models." ; + sc:featureList edam:operation_2426, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-4.0" ; + sc:name "Mocafe" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/BioComputingUP/mocafe" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -309318,7 +321546,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact "Martin Paluszewski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081 ; sc:citation ; @@ -309337,18 +321565,18 @@ Model-based tumour subclonal deconvolution.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation "pubmed:23082188", @@ -309372,7 +321600,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact "Georg Zeller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3295, @@ -309391,7 +321619,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3524 ; @@ -309405,7 +321633,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact "Michael Hucka," . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3125, @@ -309422,7 +321650,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact "Haruka Ozaki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0622, @@ -309442,7 +321670,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact "Alexander D. Johnson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053 ; @@ -309458,7 +321686,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact "Mamoru Kato" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -309481,7 +321709,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3372 ; @@ -309497,7 +321725,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact "Pierre Lindenbaum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -309518,7 +321746,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact "Giulio Pavesi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -309537,7 +321765,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact "Dong Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0621, @@ -309561,34 +321789,30 @@ Model-based tumour subclonal deconvolution.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1106" ; - sc:name "dbSNP ID" ; - sc:sameAs "http://edamontology.org/data_1106" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_1106" ; + sc:name "dbSNP ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation ; @@ -309602,7 +321826,7 @@ Model-based tumour subclonal deconvolution.""" ; sc:url "http://modbase.compbio.ucsf.edu/modbase-cgi/index.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0602, @@ -309619,14 +321843,12 @@ Model-based tumour subclonal deconvolution.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0176 ; sc:citation ; @@ -309643,7 +321865,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact "Institute for Research in Biomedicine Barcelona" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -309659,7 +321881,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact "Florian Augustin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3318, @@ -309675,7 +321897,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, @@ -309695,7 +321917,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact "Katrine Hommelhoff Jensen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -309712,7 +321934,7 @@ Model-based tumour subclonal deconvolution.""" ; sc:url "https://github.com/dewancse/model-discovery-tool" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -309733,7 +321955,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3518 ; @@ -309749,7 +321971,7 @@ Model-based tumour subclonal deconvolution.""" ; sc:url "http://github.com/mknoll/modelBuildR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081 ; @@ -309764,8 +321986,26 @@ Model-based tumour subclonal deconvolution.""" ; sc:url "http://www.csc.kth.se/~arve/code/modelestimator/" ; biotools:primaryContact "Lars Arvestad" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_0154 ; + sc:citation , + "pmcid:PMC1435933", + "pubmed:16563161" ; + sc:description "Amino acid and nucleotide substitution model selection" ; + sc:featureList edam:operation_2423 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "modelgenerator" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://mcinerneylab.com/software/modelgenerator/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3070, @@ -309781,12 +322021,23 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact "Paola Favaretto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, edam:topic_2814 ; - sc:citation "pubmed:24573470" ; + sc:citation , + , + , + , + , + "pmcid:PMC2144714", + "pmcid:PMC5031415", + "pubmed:10940251", + "pubmed:11045621", + "pubmed:24573470", + "pubmed:27322406", + "pubmed:8254673" ; sc:description "Used for homology or comparative modeling of protein three-dimensional structures. The user provides an alignment of a sequence to be modeled with known related structures and MODELLER automatically calculates a model containing all non-hydrogen atoms." ; sc:featureList edam:operation_0477 ; sc:name "MODELLER" ; @@ -309799,7 +322050,7 @@ Model-based tumour subclonal deconvolution.""" ; biotools:primaryContact "Modeller Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -309816,7 +322067,7 @@ Model-based tumour subclonal deconvolution.""" ; sc:url "https://www.modelmatcher.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3067, edam:topic_3384, @@ -309836,7 +322087,7 @@ We have built a set of pre-trained models called Generic Autodidactic Models, ni sc:url "https://github.com/MrGiovanni/ModelsGenesis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0780, @@ -309855,7 +322106,7 @@ The ModelSEED is a resource for the reconstruction, exploration, comparison, and sc:url "https://modelseed.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -309869,7 +322120,7 @@ The ModelSEED is a resource for the reconstruction, exploration, comparison, and sc:url "http://darwin.uvigo.es/software/modeltest_server.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -309885,7 +322136,7 @@ The ModelSEED is a resource for the reconstruction, exploration, comparison, and biotools:primaryContact "Guy Karlebach" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_2269, @@ -309905,7 +322156,7 @@ MODER2 is implemented in C++ and has been tested in Linux platform. As the only sc:url "https://github.com/jttoivon/moder2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097 ; @@ -309923,7 +322174,7 @@ MODER2 is implemented in C++ and has been tested in Linux platform. As the only sc:url "http://genesilico.pl/moderna/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -309947,7 +322198,7 @@ MODER2 is implemented in C++ and has been tested in Linux platform. As the only biotools:primaryContact "MODDEST Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623, edam:topic_2275 ; @@ -309962,7 +322213,7 @@ MODER2 is implemented in C++ and has been tested in Linux platform. As the only sc:url "http://modorama.org/modexplorer/index/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -309979,14 +322230,14 @@ MODER2 is implemented in C++ and has been tested in Linux platform. As the only a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130 ; @@ -310003,7 +322254,7 @@ MODER2 is implemented in C++ and has been tested in Linux platform. As the only biotools:primaryContact "Dr Liam J. McGuffin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -310025,7 +322276,7 @@ MODER2 is implemented in C++ and has been tested in Linux platform. As the only biotools:primaryContact "Dr Liam J. McGuffin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -310042,7 +322293,7 @@ MODER2 is implemented in C++ and has been tested in Linux platform. As the only sc:url "http://prix.uos.ac.kr/research.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3170, @@ -310062,34 +322313,34 @@ R package for robust disease module identification.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3071 ; @@ -310108,14 +322359,14 @@ R package for robust disease module identification.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -310135,7 +322386,7 @@ R package for robust disease module identification.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2533, @@ -310154,8 +322405,26 @@ R package for robust disease module identification.""" ; sc:url "http://compbio.cs.toronto.edu/modil/" ; biotools:primaryContact "MoDIL support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3299, + edam:topic_3305, + edam:topic_3315 ; + sc:citation , + "pmcid:PMC9375249", + "pubmed:35990010" ; + sc:description "An automated online software for modeling epidemics." ; + sc:featureList edam:operation_2426 ; + sc:isAccessibleForFree true ; + sc:name "ModInterv" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://fisica.ufpr.br/modinterv" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0123, @@ -310174,10 +322443,10 @@ R package for robust disease module identification.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1218" ; + sc:name "Protein sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0736 ; sc:author , @@ -310198,7 +322467,7 @@ R package for robust disease module identification.""" ; sc:url "http://sbi.imim.es/modlink/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -310214,7 +322483,7 @@ R package for robust disease module identification.""" ; biotools:primaryContact "David Amar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3391 ; sc:citation , @@ -310229,7 +322498,7 @@ R package for robust disease module identification.""" ; sc:url "http://research.mssm.edu/integrative-network-biology/Software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0602, @@ -310249,18 +322518,17 @@ R package for robust disease module identification.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0893" ; - sc:name "Sequence-structure alignment" ; - sc:sameAs "http://edamontology.org/data_0893" ], + sc:additionalType "http://edamontology.org/data_0893" ; + sc:name "Sequence-structure alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082 ; sc:citation , @@ -310280,7 +322548,7 @@ R package for robust disease module identification.""" ; biotools:primaryContact "Jan Kosinski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2258, @@ -310297,7 +322565,7 @@ R package for robust disease module identification.""" ; biotools:primaryContact "Sheng-You Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -310314,7 +322582,7 @@ R package for robust disease module identification.""" ; biotools:primaryContact "Rolf Backofen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0654, @@ -310334,7 +322602,7 @@ R package for robust disease module identification.""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0601, @@ -310351,7 +322619,7 @@ R package for robust disease module identification.""" ; biotools:primaryContact "Pejaver, V" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -310369,7 +322637,7 @@ R package for robust disease module identification.""" ; sc:url "http://www.nii.res.in/~narendra/PROT_PEP_INTERACTION/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2275, @@ -310384,7 +322652,7 @@ R package for robust disease module identification.""" ; sc:url "http://zhanglab.ccmb.med.umich.edu/ModRefiner/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0654, @@ -310401,7 +322669,7 @@ R package for robust disease module identification.""" ; biotools:primaryContact "Feifei Xiao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056, edam:topic_3293 ; @@ -310421,7 +322689,7 @@ R package for robust disease module identification.""" ; biotools:primaryContact "Heping Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -310443,7 +322711,7 @@ R package for robust disease module identification.""" ; biotools:primaryContact "Igor Jurisica" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -310466,7 +322734,7 @@ R package for robust disease module identification.""" ; sc:url "https://github.com/ktan8/ModTect" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -310488,14 +322756,12 @@ R package for robust disease module identification.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation ; @@ -310509,7 +322775,7 @@ R package for robust disease module identification.""" ; sc:url "http://bioinformatics.intec.ugent.be/kmarchal/Supplementary_Information_Sun_2009_ModuleDigger/Index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -310528,7 +322794,7 @@ R package for robust disease module identification.""" ; "Klaus Harter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -310543,7 +322809,7 @@ R package for robust disease module identification.""" ; sc:url "http://www.genouest.org/spip.php?page=outils&id_rubrique=113&lang=en" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -310558,8 +322824,30 @@ R package for robust disease module identification.""" ; sc:softwareHelp ; sc:url "http://bclab.inha.ac.kr/ModuleSearch/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0602, + edam:topic_0621, + edam:topic_0622, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8982048", + "pubmed:35380657" ; + sc:description "A web-based gene set enrichment tool at the Rat Genome Database for multiontology and multispecies analyses." ; + sc:featureList edam:operation_2436, + edam:operation_3559, + edam:operation_3672 ; + sc:isAccessibleForFree true ; + sc:name "MOET" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://rgd.mcw.edu/rgdweb/enrichment/start.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3306, edam:topic_3336, @@ -310577,14 +322865,12 @@ R package for robust disease module identification.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2071" ; - sc:name "Sequence motif (protein)" ; - sc:sameAs "http://edamontology.org/data_2071" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2071" ; + sc:name "Sequence motif (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -310602,7 +322888,7 @@ R package for robust disease module identification.""" ; biotools:primaryContact "Lennart Martens" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:citation , "pubmed:29624378" ; @@ -310617,7 +322903,7 @@ R package for robust disease module identification.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -310639,7 +322925,7 @@ MetaOmGraph (MOG) is a Java software to interactively explore and visualize larg sc:url "https://github.com/urmi-21/MetaOmGraph/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -310658,7 +322944,7 @@ MOGAMUN is a Multi Objective Genetic Algorithm to find active modules (i.e., hig sc:url "https://github.com/elvanov/MOGAMUN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0122, edam:topic_0804, @@ -310674,26 +322960,26 @@ MOGAMUN is a Multi Objective Genetic Algorithm to find active modules (i.e., hig a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Gene expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3115" ; - sc:name "Microarray metadata" ; - sc:sameAs "http://edamontology.org/data_3115" ] ; + sc:additionalType "http://edamontology.org/data_3115" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Microarray metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -310715,7 +323001,7 @@ MOGAMUN is a Multi Objective Genetic Algorithm to find active modules (i.e., hig biotools:primaryContact "Chen Meng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, @@ -310749,7 +323035,7 @@ Welcome to moiety_modeling’s documentation!¶. sc:url "https://figshare.com/articles/moiety_modeling_framework/7886135" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3572 ; @@ -310765,7 +323051,7 @@ Welcome to moiety_modeling’s documentation!¶. sc:url "http://sourceforge.net/projects/moirai/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -310781,7 +323067,7 @@ Welcome to moiety_modeling’s documentation!¶. biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0781, edam:topic_2275, @@ -310795,8 +323081,31 @@ Welcome to moiety_modeling’s documentation!¶. sc:url "http://ai.stanford.edu/~mitul/motifEM/" ; biotools:primaryContact "Mitul Saha" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_3173, + edam:topic_3303, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC9235504", + "pubmed:35758807" ; + sc:description "A fast and universal method for integration of multimodal single-cell data." ; + sc:featureList edam:operation_3435, + edam:operation_3891, + edam:operation_3907 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MOJITOO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/CostaLab/MOJITOO" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -310815,7 +323124,7 @@ Welcome to moiety_modeling’s documentation!¶. sc:url "https://github.com/wfondrie/mokapot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -310837,7 +323146,7 @@ Welcome to moiety_modeling’s documentation!¶. sc:url "https://github.com/lol88/Mol2Context-vec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -310857,7 +323166,7 @@ MolAICal is a drug design software combined by artificial intelligence and class sc:url "https://molaical.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0166, @@ -310880,7 +323189,7 @@ MolAICal is a drug design software combined by artificial intelligence and class biotools:primaryContact "Eitan Yaffe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0154, @@ -310897,8 +323206,30 @@ Visual Molecular Dynamics (VMD) is one of the most widely used molecular graphic sc:name "Molcontroller" ; sc:url "https://github.com/ChenchenWu-hub/Molcontroller" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3324, + edam:topic_3336, + edam:topic_3407, + edam:topic_3474 ; + sc:citation ; + sc:description "Molecular Benchmark for Disease and Target Based Machine Learning." ; + sc:featureList edam:operation_3216, + edam:operation_3359, + edam:operation_3937, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MolData" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Transilico/MolData" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0154, @@ -310916,7 +323247,7 @@ Visual Molecular Dynamics (VMD) is one of the most widely used molecular graphic biotools:primaryContact "G.Schaftenaar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -310937,22 +323268,22 @@ MolDiscovery is a mass spectral database search method that improves both effici a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_2878" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein structural motif" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2878" ; - sc:name "Protein structural motif" ; - sc:sameAs "http://edamontology.org/data_2878" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Web application" ; @@ -310991,22 +323322,22 @@ MolDiscovery is a mass spectral database search method that improves both effici a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1475" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1539" ; - sc:name "Protein structural quality report" ; - sc:sameAs "http://edamontology.org/data_1539" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1539" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein structural quality report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0128, @@ -311039,7 +323370,7 @@ MolDiscovery is a mass spectral database search method that improves both effici "Primary Contact" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0209, edam:topic_0602, @@ -311062,7 +323393,7 @@ MolDiscovery is a mass spectral database search method that improves both effici sc:url "https://ma.exscalate.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -311075,7 +323406,7 @@ MolDiscovery is a mass spectral database search method that improves both effici sc:url "http://omics.pnl.gov/software/molecular-weight-calculator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3318, @@ -311094,22 +323425,22 @@ MolDiscovery is a mass spectral database search method that improves both effici a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1539" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein structural quality report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1539" ; - sc:name "Protein structural quality report" ; - sc:sameAs "http://edamontology.org/data_1539" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1475" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0128, @@ -311163,7 +323494,7 @@ MolDiscovery is a mass spectral database search method that improves both effici "Primary contact" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0128, @@ -311177,7 +323508,7 @@ MolDiscovery is a mass spectral database search method that improves both effici sc:url "http://www.weizmann.ac.il/Chemical_Research_Support/molfit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3071, @@ -311202,7 +323533,7 @@ MolDiscovery is a mass spectral database search method that improves both effici biotools:primaryContact "Morris Swertz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0654, @@ -311220,7 +323551,7 @@ MolDiscovery is a mass spectral database search method that improves both effici biotools:primaryContact "Alexandros Kanterakis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -311238,7 +323569,7 @@ MolDiscovery is a mass spectral database search method that improves both effici biotools:primaryContact "Morris Swertz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, @@ -311259,8 +323590,26 @@ MolDiscovery is a mass spectral database search method that improves both effici ; sc:url "https://xundrug.cn/molgpka" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_0154, + edam:topic_0209 ; + sc:citation , + "pubmed:35695435" ; + sc:description "A Web Server for Structure-Based Drug Design by Molecular Hybridization." ; + sc:featureList edam:operation_0482, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "MolHyb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://molhyb.xundrug.cn/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0797, edam:topic_3301 ; @@ -311280,13 +323629,14 @@ MolDiscovery is a mass spectral database search method that improves both effici "Windows" ; sc:provider "Centre de Bioinformatique de Bordeaux (CBiB)", "u-bordeaux.fr" ; - sc:softwareHelp , - ; - sc:url "http://services.cbib.u-bordeaux2.fr/molligen/" ; + sc:softwareHelp , + ; + sc:softwareVersion "4" ; + sc:url "https://services.cbib.u-bordeaux.fr/molligen4/" ; biotools:primaryContact "Aurélien Barré" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -311303,7 +323653,7 @@ MolDiscovery is a mass spectral database search method that improves both effici sc:url "http://bcb.dei.unipd.it/MolLoc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Plug-in" ; sc:applicationSubCategory edam:topic_0084, @@ -311326,14 +323676,12 @@ MolDiscovery is a mass spectral database search method that improves both effici a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2337" ; - sc:name "Resource metadata" ; - sc:sameAs "http://edamontology.org/data_2337" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2337" ; + sc:name "Resource metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3361 ; sc:citation ; @@ -311348,7 +323696,7 @@ MolDiscovery is a mass spectral database search method that improves both effici sc:url "http://www.molmeth.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -311369,8 +323717,29 @@ MolDiscovery is a mass spectral database search method that improves both effici sc:url "http://molmovdb.org/" ; biotools:primaryContact "Bo Wang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0605, + edam:topic_3336, + edam:topic_3375, + edam:topic_3474 ; + sc:citation , + "pubmed:35849817" ; + sc:description "A lightweight self-attention-based method focused on spatial structure of molecular graph for drug-drug interactions prediction." ; + sc:featureList edam:operation_3927, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Molormer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/IsXudongZhang/Molormer" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2275, @@ -311384,17 +323753,45 @@ MolDiscovery is a mass spectral database search method that improves both effici sc:softwareVersion "2.1.0" ; sc:url "https://richardson.chem.ufl.edu/software/molpov-molecular-images/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:name "Small molecule structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3047, + edam:topic_3373, + edam:topic_3474 ; + sc:citation , + "pubmed:35961924" ; + sc:description "MolPredictX is a web tool that allows the scientific community to obtain biological activities predictions of molecules. MolPredictX manages predictive models already published in indexed scientific articles and makes predictions of molecules the researcher wishes to investigate. It informs the qualitative prediction of the molecules, as well as a probability quantitative value of activity. MolPredictX also provides the possibility for the researcher to download predictions in the .csv format" ; + sc:featureList edam:operation_0224, + edam:operation_3461, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "MolPredictX" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.molpredictx.ufpb.br/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, edam:topic_0097, edam:topic_0157, edam:topic_0166 ; - sc:citation "pubmed:12557186", + sc:citation , + "pmcid:PMC2803126", + "pubmed:12557186", "pubmed:15215462", - "pubmed:17452350" ; + "pubmed:17452350", + "pubmed:20057044" ; sc:description "MolProbity is a structure validation web service for diagnosing problems in 3D models of proteins, nucleic acids or complexes. It adds and optimizes H atoms (correcting 180° flipped Asn/Gln/His sidechains), and then calculates global and local validation for all-atom contacts (steric clashes, H-bonds & vdW), covalent geometry, and conformation (Ramachandran & rotamers for protein, ribose puckers & suite conformers for RNA). Results are displayed online as 3D graphics and sortable charts." ; sc:featureList edam:operation_0249, edam:operation_0321, @@ -311410,7 +323807,7 @@ MolDiscovery is a mass spectral database search method that improves both effici biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0154, @@ -311431,7 +323828,7 @@ CCTBX, which powers this version of MolProbity (4.2), requires stricter adherenc sc:url "http://molprobity.manchester.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_1317, @@ -311452,7 +323849,7 @@ CCTBX, which powers this version of MolProbity (4.2), requires stricter adherenc sc:url "http://www.ccp4.ac.uk/html/molrep.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3314, @@ -311470,14 +323867,14 @@ MolRep is a Python package for fairly measuring algorithmic progress on chemical a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation ; @@ -311493,7 +323890,7 @@ MolRep is a Python package for fairly measuring algorithmic progress on chemical sc:url "https://molstar.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0593, @@ -311513,7 +323910,7 @@ MolRep is a Python package for fairly measuring algorithmic progress on chemical biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2275, @@ -311532,7 +323929,7 @@ MolRep is a Python package for fairly measuring algorithmic progress on chemical "Rebecca Wade" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -311551,7 +323948,7 @@ Drug target interaction (DTI) prediction is a foundational task for in-silico dr sc:url "https://github.com/kexinhuang12345/moltrans" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """molUP is a free VMD extension that allows you to open and save Gaussian files. This tool can be used to analyze results from Gaussian output files and prepare Gaussian input files. molUP provides also a set of tools to adjust bond lengths, rotate angles and dihedral angles directly on VMD. With molUP, it is possible to add and remove atoms or molecules using VMD.""" ; @@ -311560,7 +323957,7 @@ molUP provides also a set of tools to adjust bond lengths, rotate angles and dih sc:url "https://biosim.pt/molup/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0769, @@ -311582,7 +323979,7 @@ Specifically, molywood automatizes the most tedious steps in generation of these sc:url "http://gitlab.com/KomBioMol/molywood" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:19228804" ; @@ -311597,7 +323994,7 @@ Specifically, molywood automatizes the most tedious steps in generation of these biotools:primaryContact "H. L. Eaves" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Plug-in" ; sc:applicationSubCategory edam:topic_0204, @@ -311616,7 +324013,7 @@ Specifically, molywood automatizes the most tedious steps in generation of these biotools:primaryContact "Florian Jug" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0166, @@ -311638,10 +324035,10 @@ Specifically, molywood automatizes the most tedious steps in generation of these a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2085" ; - sc:name "Structure report" ; - sc:sameAs "http://edamontology.org/data_2085" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2085" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0176, @@ -311660,7 +324057,7 @@ Specifically, molywood automatizes the most tedious steps in generation of these sc:url "https://moma.laas.fr/applications/LoopSampler/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3372, @@ -311678,7 +324075,7 @@ Specifically, molywood automatizes the most tedious steps in generation of these biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3382 ; @@ -311694,7 +324091,7 @@ Bilinear pooling achieves great success in fine-grained visual recognition (FGVC sc:url "https://github.com/mboboGO/MOMN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0102, @@ -311709,7 +324106,7 @@ Bilinear pooling achieves great success in fine-grained visual recognition (FGVC sc:url "https://github.com/bjyoontamu/MONACO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -311726,7 +324123,7 @@ Bilinear pooling achieves great success in fine-grained visual recognition (FGVC sc:url "http://monago.erc.monash.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_0632, @@ -311746,7 +324143,7 @@ Bilinear pooling achieves great success in fine-grained visual recognition (FGVC sc:url "https://github.com/ItokawaK/MoNaS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -311766,8 +324163,31 @@ Monet is an open-source Python package for analyzing and integrating scRNA-Seq d sc:name "Monet-RNA" ; sc:url "https://github.com/flo-compbio/monet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0602, + edam:topic_2885, + edam:topic_3172, + edam:topic_3360 ; + sc:citation , + "pubmed:34694378" ; + sc:description "MoNET is an R package providing network analysis of -omics findings. It is built on top of an integrated network, including metabolite-protein interactions, protein interactions and relationships between genetic variations and transcription factor binding sites." ; + sc:featureList edam:operation_0276, + edam:operation_2437, + edam:operation_3660 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MoNET" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/JW-Yan/MONET" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -311785,7 +324205,7 @@ Monet is an open-source Python package for analyzing and integrating scRNA-Seq d biotools:primaryContact "Chun-Yu Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -311804,8 +324224,17 @@ Monet is an open-source Python package for analyzing and integrating scRNA-Seq d sc:url "http://yjjang.github.io/mongkie/" ; biotools:primaryContact "Yeongjun Jang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "MONGOOSE (MetabOlic Network GrOwth Optimization Solved Exactly) is a package for structural analysis and refinement of constraint-based metabolic networks. Unlike other existing software, MONGOOSE uses exact rational arithmetic, which makes its results certifiably accurate" ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "MONGOOSE" ; + sc:softwareHelp ; + sc:url "http://cb.csail.mit.edu/cb/mongoose/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654 ; @@ -311824,7 +324253,7 @@ Monet is an open-source Python package for analyzing and integrating scRNA-Seq d sc:url "https://github.com/maxrossi91/moni" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -311843,7 +324272,7 @@ Monet is an open-source Python package for analyzing and integrating scRNA-Seq d biotools:primaryContact "Michael B Eisen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3384, @@ -311862,7 +324291,7 @@ MonkeyCBP (A toolbox for connectivity-based parcellation of monkey brain).""" ; sc:url "https://github.com/bheAI/MonkeyCBP_CLI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -311883,7 +324312,7 @@ The benchmark dataset described in this paper can be found in ./data/, and the c sc:url "https://github.com/lishuya17/MONN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3053 ; @@ -311900,14 +324329,14 @@ The benchmark dataset described in this paper can be found in ./data/, and the c a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_1213" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1713" ; - sc:name "Fate map" ; - sc:sameAs "http://edamontology.org/data_1713" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1713" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Fate map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -311935,14 +324364,14 @@ The benchmark dataset described in this paper can be found in ./data/, and the c a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3424" ; - sc:name "Raw image" ; - sc:sameAs "http://edamontology.org/data_3424" ] ; + sc:additionalType "http://edamontology.org/data_3424" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Raw image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0154, @@ -311959,14 +324388,13 @@ The benchmark dataset described in this paper can be found in ./data/, and the c a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2746" ; - sc:name "MonosaccharideDB ID" ; - sc:sameAs "http://edamontology.org/data_2746" ] ; + sc:additionalType "http://edamontology.org/data_2746" ; + sc:name "MonosaccharideDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2313" ; - sc:name "Carbohydrate report" ; - sc:sameAs "http://edamontology.org/data_2313" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2313" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Carbohydrate report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0152 ; sc:citation ; @@ -311981,7 +324409,7 @@ The benchmark dataset described in this paper can be found in ./data/, and the c biotools:primaryContact "Thomas Lütteke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622 ; @@ -311995,7 +324423,7 @@ The benchmark dataset described in this paper can be found in ./data/, and the c sc:url "https://bitbucket.org/hamimzafar/monovar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -312015,7 +324443,7 @@ The benchmark dataset described in this paper can be found in ./data/, and the c biotools:primaryContact "Webmaster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -312034,7 +324462,7 @@ The benchmark dataset described in this paper can be found in ./data/, and the c sc:url "https://github.com/CAG-CNV/MONTAGE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0152, edam:topic_0209, edam:topic_0821, @@ -312051,7 +324479,7 @@ The benchmark dataset described in this paper can be found in ./data/, and the c biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -312075,7 +324503,7 @@ The benchmark dataset described in this paper can be found in ./data/, and the c sc:url "https://github.com/inukj/MONTI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0102, @@ -312092,7 +324520,7 @@ The benchmark dataset described in this paper can be found in ./data/, and the c sc:url "https://www.cs.helsinki.fi/group/pssmfind/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -312115,7 +324543,7 @@ The benchmark dataset described in this paper can be found in ./data/, and the c "Catharina Olsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -312131,7 +324559,7 @@ The benchmark dataset described in this paper can be found in ./data/, and the c biotools:primaryContact "Upinder S. Bhalla" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -312149,7 +324577,7 @@ Mathematical modeling of metabolic networks is a powerful approach to investigat sc:url "https://gitlab.com/marvin.vanaalst/moped" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -312168,7 +324596,7 @@ Mathematical modeling of metabolic networks is a powerful approach to investigat biotools:primaryContact "Philipp Eser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -312184,7 +324612,7 @@ Mathematical modeling of metabolic networks is a powerful approach to investigat sc:url "https://morbinet.org/shiny" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3366, edam:topic_3372, @@ -312207,7 +324635,7 @@ Mathematical modeling of metabolic networks is a powerful approach to investigat biotools:primaryContact "Esteban Pérez-Wohlfeil" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0154, @@ -312225,8 +324653,46 @@ Mathematical modeling of metabolic networks is a powerful approach to investigat sc:url "https://github.com/mordred-descriptor/mordred" ; biotools:primaryContact "Moriwaki H" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0092, + edam:topic_2269, + edam:topic_3678 ; + sc:citation , + "pmcid:PMC9269871", + "pubmed:35802729" ; + sc:description "A user-friendly Shiny/R application for exploring and comparing data with interactive visualization." ; + sc:featureList edam:operation_0337, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "moreThanANOVA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://hanchen.shinyapps.io/moreThanANOVA/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_3474, + edam:topic_3538 ; + sc:citation , + "pmcid:PMC8957949", + "pubmed:35350759" ; + sc:description "A package for molecular recognition feature function prediction based on multi-label learning and ensemble learning" ; + sc:featureList edam:operation_0303, + edam:operation_0474, + edam:operation_1777, + edam:operation_3904 ; + sc:license "Not licensed" ; + sc:name "MoRF-FUNCpred" ; + sc:url "https://github.com/LiangYu-Xidian/MoRF-FUNCpred" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -312234,6 +324700,8 @@ Mathematical modeling of metabolic networks is a powerful approach to investigat sc:citation "pubmed:27174932" ; sc:description "New computational approach for a fast and accurate prediction of MoRFs(Molecular Recognition Features) in protein sequences." ; sc:featureList edam:operation_3092 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; sc:name "MoRFCHiBi" ; sc:operatingSystem "Linux" ; sc:softwareHelp ; @@ -312241,7 +324709,7 @@ Mathematical modeling of metabolic networks is a powerful approach to investigat biotools:primaryContact "Nawar Malhis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "MORFEE (Mutation on Open Reading FramE annotation) is a tool (R package) that, from a VCF file, detects and annotates single nucleotide variants creating premature ATG codons." ; sc:featureList edam:operation_3661 ; @@ -312251,7 +324719,7 @@ Mathematical modeling of metabolic networks is a powerful approach to investigat sc:url "https://daissi.github.io/MORFEE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3321 ; @@ -312270,7 +324738,7 @@ Mathematical modeling of metabolic networks is a powerful approach to investigat "M Volkmer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3064, @@ -312292,7 +324760,7 @@ Mathematical modeling of metabolic networks is a powerful approach to investigat sc:url "https://github.com/LabTrivedi/MOrgAna.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -312317,7 +324785,7 @@ MORLD is a molecule optimization method based on reinforcement learning and dock sc:url "http://morld.kaist.ac.kr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation , @@ -312333,7 +324801,7 @@ MORLD is a molecule optimization method based on reinforcement learning and dock sc:url "http://bioinformatics.psb.ugent.be/webtools/morph/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3304, @@ -312354,7 +324822,7 @@ MORLD is a molecule optimization method based on reinforcement learning and dock sc:url "http://github.com/anabelacampos/MorphData" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, edam:topic_0602, @@ -312386,7 +324854,7 @@ rdf Generate RDF graph (for MorphDB).""" ; sc:url "http://bioinformatics.psb.ugent.be/webtools/morphdb/morphDB/index/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -312400,34 +324868,34 @@ rdf Generate RDF graph (for MorphDB).""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ], + sc:additionalType "http://edamontology.org/data_3449" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Cell migration track image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3449" ; - sc:name "Cell migration track image" ; - sc:sameAs "http://edamontology.org/data_3449" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Trajectory data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3870" ; + sc:encodingFormat "http://edamontology.org/format_3877" ; + sc:name "Trajectory data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_2229, @@ -312465,7 +324933,7 @@ rdf Generate RDF graph (for MorphDB).""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0108, @@ -312484,7 +324952,7 @@ MORPHEUS is a Fiji ImageJ2 plugin for the automated evaluation of cell morphomet sc:url "https://sourceforge.net/projects/morpheus-for-fiji/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -312502,17 +324970,31 @@ MORPHEUS is a Fiji ImageJ2 plugin for the automated evaluation of cell morphomet sc:url "http://www.inetbio.org/morphin/" ; biotools:primaryContact "Sohyun Hwang" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3416, - edam:topic_3421 ; - sc:citation , - "pubmed:31389888" ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'morphine milligram', '30-day morphine milligram equivalents', 'milligram equivalents', '30-day morphine milligram equivalents 1288' | Has a Prescription-limiting Law in Rhode Island Helped to Reduce Opioid Use After Total Joint Arthroplasty? | BACKGROUND:In the United States, since 2016, at least 28 of 50 state legislatures have passed laws regarding mandatory prescribing limits for opioid medications. One of the earliest state laws (which was passed in Rhode Island in 2016) restricted the maximum morphine milligram equivalents provided in the first postoperative prescription for patients defined as opioid-naïve to 30 morphine milligram equivalents per day, 150 total morphine milligram equivalents, or 20 total doses. While such regulations are increasingly common in the United States, their effects on opioid use after total joint arthroplasty are unclear" ; - sc:name "morphine milligram equivalents" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31389888" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3474, + edam:topic_3500, + edam:topic_3954 ; + sc:citation , + "pmcid:PMC8800241", + "pubmed:35093113" ; + sc:description "An unsupervised machine learning workflow to detect the activation of microglia and astrocytes." ; + sc:featureList edam:operation_0337, + edam:operation_3432, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MORPHIOUS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/jsilburt/Morphious" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -312529,7 +325011,7 @@ MORPHEUS is a Fiji ImageJ2 plugin for the automated evaluation of cell morphomet biotools:primaryContact "Richard Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3382 ; @@ -312546,7 +325028,7 @@ MORPHEUS is a Fiji ImageJ2 plugin for the automated evaluation of cell morphomet biotools:primaryContact "Philippe Andrey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3315, @@ -312566,7 +325048,7 @@ Extract cross sections from long bone meshes at specified intervals along the di sc:url "https://github.com/AProfico/morphomap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0611 ; @@ -312579,8 +325061,27 @@ MorphOT is a plugin for ChimeraX, which allows users to directly interpolate mul sc:name "MorphOT" ; sc:url "https://github.com/kdd-ubc/MorphOT.git" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Workflow" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2269 ; + sc:citation , + "pubmed:35323864" ; + sc:description "The package MorphoTools2 is intended for multivariate analyses of morphological data." ; + sc:featureList edam:operation_2938, + edam:operation_2939, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MorphoTools2" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "https://cran.r-project.org/package=MorphoTools2" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -312597,7 +325098,7 @@ MorphOT is a plugin for ChimeraX, which allows users to directly interpolate mul biotools:primaryContact "Guan Wenye" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056, @@ -312614,7 +325115,7 @@ MorphOT is a plugin for ChimeraX, which allows users to directly interpolate mul biotools:primaryContact "Leithen K. M’Gonigle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0804, @@ -312630,7 +325131,7 @@ MorphOT is a plugin for ChimeraX, which allows users to directly interpolate mul sc:url "http://www.hiv.lanl.gov/content/sequence/MOSAIC/makeVaccine.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0780, @@ -312649,7 +325150,7 @@ MorphOT is a plugin for ChimeraX, which allows users to directly interpolate mul biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0621, @@ -312667,7 +325168,7 @@ MorphOT is a plugin for ChimeraX, which allows users to directly interpolate mul sc:url "https://github.com/SebastienTs/MosaicExplorerJ" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0204, @@ -312687,7 +325188,7 @@ MorphOT is a plugin for ChimeraX, which allows users to directly interpolate mul biotools:primaryContact "Dongjun Chung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196 ; @@ -312708,8 +325209,30 @@ MorphOT is a plugin for ChimeraX, which allows users to directly interpolate mul sc:url "https://github.com/wanpinglee/MOSAIK" ; biotools:primaryContact "Wan Ping Lee" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0602, + edam:topic_2640, + edam:topic_3172, + edam:topic_3474 ; + sc:citation ; + sc:description "Multi-algorithm Ensemble Biclustering Method MoSBi (Molecular Signature Identification using Biclustering)" ; + sc:featureList edam:operation_0337, + edam:operation_2422, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "MoSBi" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://gitlab.lrz.de/lipitum-projects/mosbi" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2275, @@ -312725,78 +325248,78 @@ MorphOT is a plugin for ChimeraX, which allows users to directly interpolate mul a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2019" ; - sc:name "Map data" ; - sc:sameAs "http://edamontology.org/data_2019" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ], + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_2019" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Map data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ], + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3914" ; - sc:name "Quality control report" ; - sc:sameAs "http://edamontology.org/data_3914" ], + sc:additionalType "http://edamontology.org/data_2711" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Genome report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2711" ; - sc:name "Genome report" ; - sc:sameAs "http://edamontology.org/data_2711" ], + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ], + sc:additionalType "http://edamontology.org/data_3914" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Quality control report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3174, @@ -312828,7 +325351,7 @@ MorphOT is a plugin for ChimeraX, which allows users to directly interpolate mul biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -312848,7 +325371,7 @@ MorphOT is a plugin for ChimeraX, which allows users to directly interpolate mul sc:url "https://github.com/lorinmil/MOSCATO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0769, @@ -312866,7 +325389,7 @@ MorphOT is a plugin for ChimeraX, which allows users to directly interpolate mul biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3572 ; @@ -312883,7 +325406,7 @@ MorphOT is a plugin for ChimeraX, which allows users to directly interpolate mul biotools:primaryContact "Brent Pedersen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -312901,7 +325424,7 @@ MorphOT is a plugin for ChimeraX, which allows users to directly interpolate mul biotools:primaryContact "Tobias Marschall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -312923,10 +325446,9 @@ Deep generative models are rapidly becoming popular for the discovery of new mol a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0937" ; - sc:name "Protein X-ray crystallographic data" ; - sc:sameAs "http://edamontology.org/data_0937" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0937" ; + sc:name "Protein X-ray crystallographic data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_1317, @@ -312947,7 +325469,7 @@ Deep generative models are rapidly becoming popular for the discovery of new mol biotools:primaryContact "Andrew G.W. Leslie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -312965,8 +325487,24 @@ The generation of high-quality assemblies, even for large eukaryotic genomes, ha sc:name "MOSGA" ; sc:url "https://gitlab.com/mosga/mosga" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0602 ; + sc:citation , + "pubmed:35325043" ; + sc:description "Multi-omic integration with Sparse Value Decomposition (MOSS), a free and open-source R package for integration and feature selection in multiple large omics datasets." ; + sc:featureList edam:operation_0314, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "MOSS" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "https://CRAN.R-project.org/package=MOSS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2269, @@ -312981,8 +325519,25 @@ The generation of high-quality assemblies, even for large eukaryotic genomes, ha sc:url "http://dlin.web.unc.edu/software/MOST/" ; biotools:primaryContact "DANYU LIN" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3444, + edam:topic_3474 ; + sc:citation , + "pubmed:35657830" ; + sc:description "Application in Single-shot T2 Mapping with Severe Head Motion Using Overlapping-echo Acquisition." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MOST-DL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/qinqinyang/MOST-DL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3169, @@ -312997,7 +325552,7 @@ The generation of high-quality assemblies, even for large eukaryotic genomes, ha sc:url "http://cbb.sjtu.edu.cn/~ccwei/pub/software/MOST/MOST.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -313015,7 +325570,7 @@ The generation of high-quality assemblies, even for large eukaryotic genomes, ha sc:url "https://bhattacharya-a-bt.github.io/MOSTWAS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0736, @@ -313032,7 +325587,7 @@ The generation of high-quality assemblies, even for large eukaryotic genomes, ha biotools:primaryContact "Eva Aksianov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3382, @@ -313052,7 +325607,7 @@ Mothe is a PYPI library to detect and track multiple animals in a heterogeneous sc:url "https://github.com/tee-lab/MOTHe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0194, edam:topic_3174 ; @@ -313064,18 +325619,19 @@ Mothe is a PYPI library to detect and track multiple animals in a heterogeneous sc:url "https://github.com/accaldwell/mothur_krona" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3697 ; sc:citation ; sc:description "\"Open-source, platform-independent, community-supported software for describing and comparing microbial communities\" Schloss PD et al. 2009" ; sc:license "GPL-3.0" ; sc:name "mothur" ; - sc:softwareHelp ; + sc:softwareHelp , + ; sc:url "http://mothur.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0749, @@ -313098,7 +325654,7 @@ Genome-wide association studies (GWAS) have identified thousands of common trait sc:url "https://github.com/pinellolab/MotifRaptor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -313115,7 +325671,7 @@ Genome-wide association studies (GWAS) have identified thousands of common trait biotools:primaryContact "Daniel Schwartz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -313134,18 +325690,17 @@ Genome-wide association studies (GWAS) have identified thousands of common trait a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091, @@ -313167,7 +325722,7 @@ Genome-wide association studies (GWAS) have identified thousands of common trait sc:url "https://github.com/DataIntellSystLab/motif_prob" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -313184,7 +325739,7 @@ Genome-wide association studies (GWAS) have identified thousands of common trait biotools:primaryContact "Elisha D O Roberson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -313206,7 +325761,7 @@ Genome-wide association studies (GWAS) have identified thousands of common trait biotools:primaryContact "Simon Gert Coetzee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091, @@ -313225,7 +325780,7 @@ Genome-wide association studies (GWAS) have identified thousands of common trait biotools:primaryContact "Phillip Seitzer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -313244,7 +325799,7 @@ Genome-wide association studies (GWAS) have identified thousands of common trait biotools:primaryContact "Wolfgang Kopp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -313261,7 +325816,7 @@ Genome-wide association studies (GWAS) have identified thousands of common trait biotools:primaryContact "Serafim Batzoglou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -313281,7 +325836,7 @@ Genome-wide association studies (GWAS) have identified thousands of common trait biotools:primaryContact "Paul Shannon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -313298,7 +325853,7 @@ Genome-wide association studies (GWAS) have identified thousands of common trait biotools:primaryContact "Lusheng Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -313321,7 +325876,7 @@ Shisheng Wang, Yue Cai, Jingqiu Cheng, Wenxue Li, Yansheng Liu and Hao Yang. "mo sc:url "https://www.omicsolution.org/wukong/motifeR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0749, @@ -313340,7 +325895,7 @@ Shisheng Wang, Yue Cai, Jingqiu Cheng, Wenxue Li, Yansheng Liu and Hao Yang. "mo biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Workbench" ; @@ -313370,7 +325925,7 @@ Shisheng Wang, Yue Cai, Jingqiu Cheng, Wenxue Li, Yansheng Liu and Hao Yang. "mo "Kjetil Klepper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "Quickly find motif matches for many motifs and many sequences. Wraps C++ code from the MOODS motif calling library, which was developed by Pasi Rastas, Janne Korhonen, and Petri Martinmäki." ; @@ -313387,7 +325942,7 @@ Shisheng Wang, Yue Cai, Jingqiu Cheng, Wenxue Li, Yansheng Liu and Hao Yang. "mo biotools:primaryContact "Alicia Schep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0654 ; @@ -313401,7 +325956,7 @@ Shisheng Wang, Yue Cai, Jingqiu Cheng, Wenxue Li, Yansheng Liu and Hao Yang. "mo sc:url "http://www.math.umass.edu/~conlon/mr.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -313421,7 +325976,7 @@ Shisheng Wang, Yue Cai, Jingqiu Cheng, Wenxue Li, Yansheng Liu and Hao Yang. "mo biotools:primaryContact "Zizhen Yao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654, @@ -313440,7 +325995,7 @@ Shisheng Wang, Yue Cai, Jingqiu Cheng, Wenxue Li, Yansheng Liu and Hao Yang. "mo sc:url "http://homes.esat.kuleuven.be/~sistawww/bioi/thijs/Work/MotifSampler.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -313453,7 +326008,7 @@ Shisheng Wang, Yue Cai, Jingqiu Cheng, Wenxue Li, Yansheng Liu and Hao Yang. "mo sc:url "http://motifscan.stanford.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3125 ; @@ -313469,7 +326024,7 @@ Shisheng Wang, Yue Cai, Jingqiu Cheng, Wenxue Li, Yansheng Liu and Hao Yang. "mo sc:url "http://compbio.cs.princeton.edu/bindsites/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -313489,14 +326044,14 @@ Shisheng Wang, Yue Cai, Jingqiu Cheng, Wenxue Li, Yansheng Liu and Hao Yang. "mo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1361" ; - sc:name "Position frequency matrix" ; - sc:sameAs "http://edamontology.org/data_1361" ] ; + sc:additionalType "http://edamontology.org/data_1361" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Position frequency matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -313521,14 +326076,12 @@ Shisheng Wang, Yue Cai, Jingqiu Cheng, Wenxue Li, Yansheng Liu and Hao Yang. "mo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation ; @@ -313544,7 +326097,7 @@ Shisheng Wang, Yue Cai, Jingqiu Cheng, Wenxue Li, Yansheng Liu and Hao Yang. "mo sc:url "http://bioinformatics.intec.ugent.be/MotifSuite/Index.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0166, @@ -313564,8 +326117,30 @@ Shisheng Wang, Yue Cai, Jingqiu Cheng, Wenxue Li, Yansheng Liu and Hao Yang. "mo sc:url "http://biowulf.bu.edu/MotifViz/" ; biotools:primaryContact "Yutao Fu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_3303, + edam:topic_3344, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9287611", + "pubmed:35856034" ; + sc:description "A machine learning framework for automatic prediction of human sperm motility." ; + sc:featureList edam:operation_3436, + edam:operation_3659, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "motilitAI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/EIHW/motilitAI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -313587,7 +326162,7 @@ Execute MotiMul without distinguishing a sequence and its complementary strand i sc:url "https://github.com/ko-ichimo-ri/MotiMul" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0611 ; sc:citation ; @@ -313603,7 +326178,7 @@ Execute MotiMul without distinguishing a sequence and its complementary strand i "Shawn Zheng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -313624,18 +326199,17 @@ Execute MotiMul without distinguishing a sequence and its complementary strand i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ], + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1539" ; - sc:name "Protein structural quality report" ; - sc:sameAs "http://edamontology.org/data_1539" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1539" ; + sc:name "Protein structural quality report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0081, @@ -313665,7 +326239,7 @@ residues.""" ; "Primacy Contact" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3068, @@ -313691,7 +326265,7 @@ The purpose of this document is to get you started using the motoRneuron package sc:url "https://github.com/tweedell/motoRneuron" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -313714,16 +326288,38 @@ git clone https://github.com/MichaelMW/motto.git.""" ; sc:name "Motto" ; sc:url "http://wanglab.ucsd.edu/star/motto" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3168, + edam:topic_3174, + edam:topic_3293, + edam:topic_3944 ; + sc:citation , + "pmcid:PMC9376867", + "pubmed:35979445" ; + sc:description "A robust Bayesian approach to leverage metagenome-assembled genomes for core-genome estimation." ; + sc:featureList edam:operation_0310, + edam:operation_3432, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "mOTUlizer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/moritzbuck/mOTUlizer" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1931" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation , @@ -313744,7 +326340,7 @@ git clone https://github.com/MichaelMW/motto.git.""" ; sc:url "https://motu-tool.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -313760,7 +326356,7 @@ git clone https://github.com/MichaelMW/motto.git.""" ; sc:url "http://github.com/gxiaolab/mountainClimber" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -313784,7 +326380,7 @@ git clone https://github.com/MichaelMW/motto.git.""" ; biotools:primaryContact "Marco A. Marra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0121, @@ -313806,7 +326402,7 @@ git clone https://github.com/MichaelMW/motto.git.""" ; biotools:primaryContact "Thomas Kislinger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0199, @@ -313826,7 +326422,7 @@ git clone https://github.com/MichaelMW/motto.git.""" ; sc:url "http://www.mousebook.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0625, @@ -313843,7 +326439,7 @@ git clone https://github.com/MichaelMW/motto.git.""" ; biotools:primaryContact "Jessica Seavey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -313862,7 +326458,7 @@ This repository contains the backend of the MouseFM tool including the scripts o sc:url "https://github.com/matmu/MouseFM-Backend" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -313879,7 +326475,7 @@ This repository contains the backend of the MouseFM tool including the scripts o sc:url "http://polybrowse.abcc.ncifcrf.gov/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0621, @@ -313895,7 +326491,7 @@ This repository contains the backend of the MouseFM tool including the scripts o sc:url "http://www.mousemine.org/mousemine/begin.do" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -313914,7 +326510,7 @@ This repository contains the backend of the MouseFM tool including the scripts o sc:url "https://mousr.qub.ac.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3170, @@ -313930,8 +326526,25 @@ Alternative polyadenylation (APA) has been widely recognized as a widespread mec sc:name "movAPA" ; sc:url "https://github.com/BMILAB/movAPA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Suite" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0769, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9290230", + "pubmed:35843990" ; + sc:description "MoveApps is a no-code analysis platform for animal tracking data hosted by the Max Planck Institute of Animal Behavior. The aim is to make sophisticated analytical tools accessible to a larger audience." ; + sc:isAccessibleForFree true ; + sc:name "MoveApps" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.moveapps.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, @@ -313948,7 +326561,7 @@ The goal of MOVICS is to provide a unified interface for 10 state-of-the-art mul sc:url "https://github.com/xlucpu/MOVICS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -313967,7 +326580,7 @@ The goal of MOVICS is to provide a unified interface for 10 state-of-the-art mul biotools:primaryContact "MovieMaker Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0081, @@ -313983,8 +326596,29 @@ The goal of MOVICS is to provide a unified interface for 10 state-of-the-art mul sc:name "MoViES" ; sc:url "http://ang.cz3.nus.edu.sg/cgi-bin/prog/norm.pl" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Web application", + "Workflow" ; + sc:applicationSubCategory edam:topic_3168, + edam:topic_3174, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC8886009", + "pubmed:35284047" ; + sc:description "A multi-omics software solution for multi-modal time-series clustering, embedding, and visualizing tasks." ; + sc:featureList edam:operation_0337, + edam:operation_3432, + edam:operation_3565 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MOVIS" ; + sc:operatingSystem "Linux" ; + sc:url "https://hub.docker.com/r/aanzel/movis" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3077, @@ -314010,7 +326644,7 @@ The goal of MOVICS is to provide a unified interface for 10 state-of-the-art mul "Esteban Pérez-Wohlfeil" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0196, @@ -314030,8 +326664,29 @@ The goal of MOVICS is to provide a unified interface for 10 state-of-the-art mul "Windows" ; sc:url "https://github.com/EleutherAI/mp_nerf" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3382, + edam:topic_3474, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9200300", + "pubmed:35704628" ; + sc:description "Deep learning-based segmentation for fluorescence microscopy images of microplastics isolated from clams." ; + sc:featureList edam:operation_0455, + edam:operation_3443, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MP-Net" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sanghyeonp/MP-Net" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0621, @@ -314047,7 +326702,7 @@ The goal of MOVICS is to provide a unified interface for 10 state-of-the-art mul biotools:primaryContact "Vineetk Sharma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -314065,7 +326720,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; sc:url "https://github.com/AlgoLab/mp3treesim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -314084,7 +326739,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -314106,7 +326761,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; sc:url "https://github.com/danielwalke/MPA_Pathway_Tool" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -314124,62 +326779,48 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ], + sc:additionalType "http://edamontology.org/data_3111" ; + sc:name "Processed microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ], + sc:additionalType "http://edamontology.org/data_3111" ; + sc:name "Processed microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3110" ; - sc:name "Raw microarray data" ; - sc:sameAs "http://edamontology.org/data_3110" ], + sc:additionalType "http://edamontology.org/data_3111" ; + sc:name "Processed microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ], + sc:additionalType "http://edamontology.org/data_2531" ; + sc:name "Experiment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ], + sc:additionalType "http://edamontology.org/data_3111" ; + sc:name "Processed microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ], + sc:additionalType "http://edamontology.org/data_3111" ; + sc:name "Processed microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; + sc:additionalType "http://edamontology.org/data_3110" ; + sc:name "Raw microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ], + sc:additionalType "http://edamontology.org/data_2531" ; + sc:name "Experiment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ], + sc:additionalType "http://edamontology.org/data_3111" ; + sc:name "Processed microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ], + sc:additionalType "http://edamontology.org/data_3111" ; + sc:name "Processed microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2535" ; - sc:name "Sequence tag profile" ; - sc:sameAs "http://edamontology.org/data_2535" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ], + sc:additionalType "http://edamontology.org/data_2531" ; + sc:name "Experiment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ], + sc:additionalType "http://edamontology.org/data_2535" ; + sc:name "Sequence tag profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3111" ; + sc:name "Processed microarray data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -314203,7 +326844,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; biotools:primaryContact "Samuel Blanck" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0654 ; @@ -314219,14 +326860,12 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0219 ; @@ -314243,7 +326882,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; biotools:primaryContact "Ian Korf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3895 ; @@ -314258,7 +326897,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; biotools:primaryContact "James Allison" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -314280,7 +326919,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3168, @@ -314299,7 +326938,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3518 ; @@ -314315,7 +326954,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; sc:url "http://www.stat.sinica.edu.tw/hsinchou/genetics/pooledDNA/mpda.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2259, @@ -314330,7 +326969,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; sc:url "http://ekhidna.biocenter.helsinki.fi/poxo/mpea" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -314347,7 +326986,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; biotools:primaryContact "Stephen H. White" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0160, @@ -314367,7 +327006,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; biotools:primaryContact "Conrad Burden" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099, @@ -314382,7 +327021,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; biotools:primaryContact "Bruce A. Shapiro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -314405,26 +327044,26 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3020" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3071, @@ -314443,26 +327082,26 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3168 ; @@ -314479,7 +327118,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3307 ; sc:description "Do you have thousands of files that you need to run the same program on? Are xargs, GNU parallel, and any of the million workflow management systems not working out for you? This package may be of assistance. It provides a command line tool for parallel execution of many command line tasks on any architecture that supports MPI. It also includes parallel implementations of the Python :func:`map` and :func:`imap` functions and a few handy bits and pieces for logging." ; @@ -314494,7 +327133,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -314512,7 +327151,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; sc:url "http://proteinformatics.charite.de/mplot/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -314526,7 +327165,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; sc:url "https://cran.r-project.org/src/contrib/Archive/mpMap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -314543,7 +327182,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; "Zongli Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -314560,7 +327199,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; sc:url "http://cbr.jic.ac.uk/dicks/software/mpp/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0219, @@ -314584,7 +327223,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; sc:url "http://bis.zju.edu.cn/mppi/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0204, @@ -314604,7 +327243,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; biotools:primaryContact "Leslie Myint" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -314624,7 +327263,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; biotools:primaryContact "Chad A Shaw" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, edam:topic_0769, @@ -314643,7 +327282,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; biotools:primaryContact "Alexey V. Pindyurin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0749, @@ -314665,7 +327304,7 @@ Supplementary repository for: https://github.com/AlgoLab/mp3treesim.""" ; biotools:primaryContact "Ramana V. Davuluri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -314689,7 +327328,7 @@ understand structural changes on alylsulfatase B (ASB) caused by Mucopolysacchar sc:url "http://mps6-database.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -314712,7 +327351,7 @@ understand structural changes on alylsulfatase B (ASB) caused by Mucopolysacchar sc:url "https://www.ufrgs.br/mpsbase/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -314728,7 +327367,7 @@ understand structural changes on alylsulfatase B (ASB) caused by Mucopolysacchar sc:url "http://www.manchesterproteome.manchester.ac.uk/#/MPSC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3308 ; @@ -314743,7 +327382,7 @@ understand structural changes on alylsulfatase B (ASB) caused by Mucopolysacchar biotools:primaryContact "Vincent Lefort" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0780, @@ -314759,7 +327398,7 @@ understand structural changes on alylsulfatase B (ASB) caused by Mucopolysacchar sc:url "https://github.com/QUST-AIBBDRC/MpsLDA-ProSVM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0605, edam:topic_0659, @@ -314784,8 +327423,29 @@ if you use data from this page.""" ; sc:name "mpss" ; sc:url "https://mpss.danforthcenter.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_2640, + edam:topic_3676 ; + sc:citation , + "pubmed:35598328" ; + sc:description "Deciphering clonal dynamics and metastatic routines in a rare patient of synchronous triple-primary tumors and multiple metastases with MPTevol." ; + sc:featureList edam:operation_0325, + edam:operation_3227, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MPTevol" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/qingjian1991/MPTevol" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3372, @@ -314802,7 +327462,7 @@ if you use data from this page.""" ; biotools:primaryContact "Vincenzo Manca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, @@ -314822,7 +327482,7 @@ MPTherm is a thermodynamic database of membrane proteins and their mutants, cont sc:url "http://www.iitm.ac.in/bioinfo/mptherm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, @@ -314841,10 +327501,10 @@ The stability of membrane proteins differs from globular proteins due to the pre a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2840, @@ -314861,7 +327521,7 @@ The stability of membrane proteins differs from globular proteins due to the pre sc:url "https://github.com/lassisg/mpthub" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0820 ; @@ -314878,7 +327538,7 @@ The stability of membrane proteins differs from globular proteins due to the pre biotools:primaryContact "Stephen H. White" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -314898,7 +327558,7 @@ The stability of membrane proteins differs from globular proteins due to the pre "Tomas Flouri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -314922,7 +327582,7 @@ Welcome to khmer: k-mer counting, filtering, and graph traversal FTW!. sc:url "https://github.com/dib-lab/2020-paper-mqf-benchmarks" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053, @@ -314939,7 +327599,7 @@ Welcome to khmer: k-mer counting, filtering, and graph traversal FTW!. biotools:primaryContact "Tatiana Axenovich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2229, @@ -314956,7 +327616,7 @@ Welcome to khmer: k-mer counting, filtering, and graph traversal FTW!. . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation , @@ -314971,8 +327631,31 @@ Welcome to khmer: k-mer counting, filtering, and graph traversal FTW!. "Windows" ; sc:url "https://github.com/QingCheng0218/MR.Corr2" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2269, + edam:topic_2885, + edam:topic_3517, + edam:topic_3974 ; + sc:citation , + "pmcid:PMC8489107", + "pubmed:34607566" ; + sc:description "Spatial rank-based multifactor dimensionality reduction to detect gene-gene interactions for multivariate phenotypes." ; + sc:featureList edam:operation_3192, + edam:operation_3196, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MR-MDR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/statpark/MR-MDR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204 ; sc:citation ; @@ -314987,22 +327670,22 @@ Welcome to khmer: k-mer counting, filtering, and graph traversal FTW!. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3652" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3652" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3652" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -315020,7 +327703,7 @@ Welcome to khmer: k-mer counting, filtering, and graph traversal FTW!. sc:url "http://compbio.eecs.wsu.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3384, @@ -315042,7 +327725,7 @@ Coronal oblique reconstruction of superior cerebellar peduncles.""" ; sc:url "https://mrpi.unicz.it" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3384, @@ -315060,13 +327743,61 @@ It performs automated segmentation of whole-head T1-weighted MR images in 12 tis sc:name "MR-TIM" ; sc:url "https://www.nitrc.org/projects/mr-tim" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2258, + edam:topic_2840, + edam:topic_3314, + edam:topic_3855 ; + sc:citation , + "pmcid:PMC9132927", + "pubmed:35614210" ; + sc:description "A web-based toolbox for predicting mixture toxicity of chemical substances in chemical products." ; + sc:featureList edam:operation_3799, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:name "MRA Toolbox" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "1.0" ; + sc:url "https://www.mratoolbox.org" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_2269, + edam:topic_2885, + edam:topic_3337, + edam:topic_3517 ; + sc:citation ; + sc:description "MRAID(Mendelian Randomization with Automated Instrument Determination),is an R package for efficient statistical inference of two-sample Mendelian Randomization. MRAID takes GWAS summary statistics as inputs to estimate causal effects of one trait on another." ; + sc:featureList edam:operation_0282, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MRAID" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/yuanzhongshang/MRAID" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293 ; sc:author "Fredrik Ronquist" ; sc:citation , - "pubmed:11524383" ; + , + , + "pmcid:PMC3329765", + "pubmed:11524383", + "pubmed:12912839", + "pubmed:22357727" ; sc:contributor "Bret Larget", "Chi Zhang", "Donald Simon", @@ -315094,18 +327825,8 @@ It performs automated segmentation of whole-head T1-weighted MR images in 12 tis sc:softwareVersion "3.2.6" ; sc:url "http://nbisweden.github.io/MrBayes/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3517, - edam:topic_3855 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > NAME (mrbayes) SIMILAR TO (PUB. DIFFERENT) bio.tools/mrbayes (MrBayes) | > CORRECT NAME OF TOOL COULD ALSO BE 'radial MR-Egger', 'Stan', 'MR-Egger', 'IVW MR-Egger' | Bayesian estimation of IVW and MR-Egger models for two-sample Mendelian randomization studies | Bayesian Summary Data Models for Mendelian Randomization Studies | Bayesian implementation of IVW and MR-Egger models | Install the CRAN version with following code: | remotes::install_github(\"okezie94/mrbayes\", build_opts = c(\"--no-resave-data\", \"--no-manual\"), build_vignettes = TRUE) | Or install the development version from GitHub with:" ; - sc:featureList edam:operation_3659 ; - sc:name "mrbayes_autogenerated" ; - sc:url "https://okezie94.github.io/mrbayes/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2814, @@ -315127,7 +327848,7 @@ It performs automated segmentation of whole-head T1-weighted MR images in 12 tis sc:url "http://www.ccp4.ac.uk/MrBUMP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -315142,7 +327863,7 @@ It performs automated segmentation of whole-head T1-weighted MR images in 12 tis sc:url "http://bioit.fleming.gr/mrb/data.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0769, edam:topic_1317, @@ -315163,7 +327884,7 @@ It performs automated segmentation of whole-head T1-weighted MR images in 12 tis sc:url "http://www2.mrc-lmb.cam.ac.uk/image2000.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3577 ; @@ -315178,7 +327899,7 @@ It performs automated segmentation of whole-head T1-weighted MR images in 12 tis biotools:primaryContact "Doscussion Forum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0611, edam:topic_1317 ; @@ -315198,7 +327919,7 @@ This library aims to allow users and developers to read and write standard-compl sc:url "https://mrcfile.readthedocs.io/en/latest/readme.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation , @@ -315213,7 +327934,7 @@ This library aims to allow users and developers to read and write standard-compl "Zhonghua Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2533, @@ -315228,7 +327949,7 @@ This library aims to allow users and developers to read and write standard-compl biotools:primaryContact "Lusheng Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0654, @@ -315248,7 +327969,7 @@ Will Kaufhold authored Jan 07, 2020""" ; sc:url "https://gitlab.engr.illinois.edu/tbgl/tools/mrdna" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3263, edam:topic_3316, @@ -315268,7 +327989,7 @@ ECMWF 20th Century Reanalysis (ERA-20C)""" ; biotools:primaryContact "Ian Foster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -315284,7 +328005,7 @@ ECMWF 20th Century Reanalysis (ERA-20C)""" ; sc:url "http://mredictor.hugef-research.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0199, @@ -315308,22 +328029,22 @@ ECMWF 20th Century Reanalysis (ERA-20C)""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3713" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3713" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3652" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3713" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -315338,7 +328059,7 @@ ECMWF 20th Century Reanalysis (ERA-20C)""" ; sc:url "https://sourceforge.net/projects/protms/files/mres2x/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:19718026" ; @@ -315352,7 +328073,7 @@ ECMWF 20th Century Reanalysis (ERA-20C)""" ; biotools:primaryContact "Can Alkan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -315368,7 +328089,7 @@ ECMWF 20th Century Reanalysis (ERA-20C)""" ; sc:url "http://www.cs.ucr.edu/~yyang027/mrfseq.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0602, @@ -315398,7 +328119,7 @@ This website contains (hopefully) helpful vignettes to help you learn and use mr sc:url "https://cran.r-project.org/web/packages/mrgsolve/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_2269 ; @@ -315415,7 +328136,7 @@ This website contains (hopefully) helpful vignettes to help you learn and use mr "Yu Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3304, @@ -315436,7 +328157,7 @@ This page hosts projectomes produced with NeuroData's MRI Graphs pipeline (m2g). sc:url "https://neurodata.io/mri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3304, @@ -315455,7 +328176,7 @@ This page hosts projectomes produced with NeuroData's MRI Graphs pipeline (m2g). biotools:primaryContact "Robert Bemis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3304, @@ -315474,7 +328195,7 @@ This page hosts projectomes produced with NeuroData's MRI Graphs pipeline (m2g). biotools:primaryContact "Shazid Mahmood" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -315494,7 +328215,7 @@ This page hosts projectomes produced with NeuroData's MRI Graphs pipeline (m2g). biotools:primaryContact "Yingying Wang, Ph.D." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3304, @@ -315512,7 +328233,7 @@ This page hosts projectomes produced with NeuroData's MRI Graphs pipeline (m2g). biotools:primaryContact "Chunming Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3384, @@ -315532,7 +328253,7 @@ This page hosts projectomes produced with NeuroData's MRI Graphs pipeline (m2g). sc:url "http://www.i-share.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3384, @@ -315554,7 +328275,7 @@ This page hosts projectomes produced with NeuroData's MRI Graphs pipeline (m2g). sc:url "https://github.com/SunKaijia0065/MRIES" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3474, @@ -315574,7 +328295,7 @@ This page hosts projectomes produced with NeuroData's MRI Graphs pipeline (m2g). sc:url "https://nfj1380.github.io/mrIML" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3372, @@ -315591,7 +328312,7 @@ This page hosts projectomes produced with NeuroData's MRI Graphs pipeline (m2g). biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -315612,7 +328333,7 @@ MRLocus is a statistical method providing Mendelian Randomization analysis per l sc:url "https://mikelove.github.io/mrlocus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -315630,7 +328351,7 @@ MRLocus is a statistical method providing Mendelian Randomization analysis per l sc:url "http://mrmassaydb.proteincentre.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -315650,7 +328371,7 @@ MRMkit: automated data processing for large-scale targeted mass spectrometry.""" sc:url "https://github.com/MRMkit/MRMkit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_3053, @@ -315669,8 +328390,23 @@ Conduct multi-locus genome-wide association study under the framework of multi-l sc:softwareVersion "4.0" ; sc:url "https://bigd.big.ac.cn/biocode/tools/BT007077" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199 ; + sc:citation , + "pubmed:14965900" ; + sc:description "C program for selecting DNA substitution models using PAUP*" ; + sc:featureList edam:operation_0550 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "mrmodeltest2" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "https://github.com/nylander/MrModeltest2" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2640 ; @@ -315685,7 +328421,7 @@ Conduct multi-locus genome-wide association study under the framework of multi-l sc:url "https://bitbucket.org/paiyetan/mrmplusgui" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3374 ; sc:citation ; @@ -315701,7 +328437,7 @@ Conduct multi-locus genome-wide association study under the framework of multi-l biotools:primaryContact "Hanchuan Peng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation "pubmed:23825369" ; @@ -315716,7 +328452,7 @@ Conduct multi-locus genome-wide association study under the framework of multi-l biotools:primaryContact "Benjamin Haibe-Kains" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -315733,7 +328469,7 @@ Conduct multi-locus genome-wide association study under the framework of multi-l biotools:primaryContact "Paulo Gaspar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0108, @@ -315753,7 +328489,7 @@ Conduct multi-locus genome-wide association study under the framework of multi-l sc:url "http://proteininformatics.org/mkumar/mrnaloc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2229, @@ -315769,7 +328505,7 @@ Conduct multi-locus genome-wide association study under the framework of multi-l biotools:primaryContact "Wei Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -315787,7 +328523,7 @@ This program streamlines the process of post-translationally modified residue pa sc:url "https://github.com/pgsahrmann/mrp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -315808,7 +328544,7 @@ This program streamlines the process of post-translationally modified residue pa "Md. Bahadur Badsha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Script" ; sc:applicationSubCategory edam:topic_0154, @@ -315828,7 +328564,7 @@ MrPIXEL is a program that enables the energetics of crystal packing to be analys sc:url "http://www.crystal.chem.ed.ac.uk/software/mrpixel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0632, @@ -315844,7 +328580,7 @@ MrPIXEL is a program that enables the energetics of crystal packing to be analys sc:url "http://mrprimerw.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3383, @@ -315866,7 +328602,7 @@ Two Python scripts (QC.py and QCF.py) are used to generate several tags and nois sc:url "http://github.com/ccipd/MRQy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3305, @@ -315881,7 +328617,7 @@ Two Python scripts (QC.py and QCF.py) are used to generate several tags and nois sc:url "https://github.com/remlapmot/mrrobust" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation "pubmed:15980580" ; @@ -315895,8 +328631,55 @@ Two Python scripts (QC.py and QCF.py) are used to generate several tags and nois sc:url "http://mrs.cmbi.ru.nl/" ; biotools:primaryContact "M.L. Hekkelman" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0593, + edam:topic_0602, + edam:topic_3172 ; + sc:citation , + "pmcid:PMC9420769", + "pubmed:35775808" ; + sc:description "A cloud-based spectral simulation tool “MRSCloud,” which allows MRS users to simulate a vendor-specific and sequence-specific basis set online in a convenient and time-efficient manner. This tool can simulate basis sets for GE, Philips, and Siemens MR scanners, including conventional acquisitions and spectral editing schemes with PRESS and semi-LASER localization at 3 T." ; + sc:featureList edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MRSCloud" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://braingps.mricloud.org" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3170, + edam:topic_3277, + edam:topic_3308, + edam:topic_3320, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8874219", + "pubmed:35065709" ; + sc:description "A quantitative approach for assessing suitability of RNA-seq in the investigation of mis-splicing in Mendelian disease." ; + sc:featureList edam:operation_0264, + edam:operation_0314, + edam:operation_0433, + edam:operation_3226, + edam:operation_3800 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MRSD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://mcgm-mrsd.github.io/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation , @@ -315917,7 +328700,7 @@ Two Python scripts (QC.py and QCF.py) are used to generate several tags and nois "Iman Sarrafi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -315933,7 +328716,7 @@ Two Python scripts (QC.py and QCF.py) are used to generate several tags and nois biotools:primaryContact "Faraz Hach" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -315946,7 +328729,7 @@ Two Python scripts (QC.py and QCF.py) are used to generate several tags and nois sc:url "http://www.davecurtis.net/dcurtis/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3056 ; @@ -315960,7 +328743,7 @@ Two Python scripts (QC.py and QCF.py) are used to generate several tags and nois sc:url "http://home.uchicago.edu/~rhudson1/source/mksamples.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080 ; @@ -315975,7 +328758,7 @@ Two Python scripts (QC.py and QCF.py) are used to generate several tags and nois sc:url "http://genetics.bwh.harvard.edu/msblast/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0780, @@ -315996,7 +328779,7 @@ MS-CleanR use as input MS-DIAL peak list processed in data dependent analysis (D sc:url "https://github.com/eMetaboHUB/MS-CleanR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0654, @@ -316020,46 +328803,46 @@ This repository contains the analytical code necessary to reproduce the results a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3247" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3681" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3827" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3827" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3827" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3681" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3827" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3827" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3827" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3004" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3372, @@ -316080,8 +328863,31 @@ This repository contains the analytical code necessary to reproduce the results sc:softwareVersion "2.0.31" ; sc:url "https://github.com/PRIDE-Utilities/ms-data-core-api" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0154, + edam:topic_0601, + edam:topic_3520 ; + sc:citation , + "pubmed:35020790" ; + sc:description "A user-friendly proteome database search software with an emphasis on deciphering the spectra of O-linked glycopeptides." ; + sc:featureList edam:operation_0417, + edam:operation_2421, + edam:operation_3645, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "MS-Decipher" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/DICP-1809/MS-Decipher" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -316097,18 +328903,18 @@ This repository contains the analytical code necessary to reproduce the results a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1056" ; - sc:name "Database name" ; - sc:sameAs "http://edamontology.org/data_1056" ], + sc:additionalType "http://edamontology.org/data_1056" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1238" ; - sc:name "Proteolytic digest" ; - sc:sameAs "http://edamontology.org/data_1238" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1238" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Proteolytic digest" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -316126,14 +328932,14 @@ This repository contains the analytical code necessary to reproduce the results a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide mass fingerprint" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -316155,38 +328961,38 @@ This repository contains the analytical code necessary to reproduce the results a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3483" ; - sc:name "Spectrum" ; - sc:sameAs "http://edamontology.org/data_3483" ], + sc:additionalType "http://edamontology.org/data_3483" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Spectrum" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1667" ; - sc:name "E-value" ; - sc:sameAs "http://edamontology.org/data_1667" ], + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ], + sc:additionalType "http://edamontology.org/data_1667" ; + sc:encodingFormat "http://edamontology.org/format_3247" ; + sc:name "E-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3247" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1667" ; - sc:name "E-value" ; - sc:sameAs "http://edamontology.org/data_1667" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3247" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_1667" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "E-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1667" ; - sc:name "E-value" ; - sc:sameAs "http://edamontology.org/data_1667" ], + sc:additionalType "http://edamontology.org/data_1667" ; + sc:encodingFormat "http://edamontology.org/format_3247" ; + sc:name "E-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -316210,22 +329016,22 @@ This repository contains the analytical code necessary to reproduce the results a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3483" ; - sc:name "Spectrum" ; - sc:sameAs "http://edamontology.org/data_3483" ], + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; + sc:additionalType "http://edamontology.org/data_3483" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -316246,7 +329052,7 @@ This repository contains the analytical code necessary to reproduce the results sc:url "http://proteomics.ucsd.edu/ProteoSAFe/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3304, @@ -316262,14 +329068,14 @@ This repository contains the analytical code necessary to reproduce the results a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -316286,10 +329092,9 @@ This repository contains the analytical code necessary to reproduce the results a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3071, @@ -316308,26 +329113,43 @@ This repository contains the analytical code necessary to reproduce the results sc:url "https://github.com/compomics/ms-lims" ; biotools:primaryContact "Lennart Martens" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3419, + edam:topic_3473 ; + sc:citation , + "pmcid:PMC8688841", + "pubmed:34949983" ; + sc:description "Multisource Marginal Distribution Adaptation for Cross-Subject and Cross-Session EEG Emotion Recognition." ; + sc:featureList edam:operation_0303, + edam:operation_3435, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MS-MDA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/VoiceBeer/MS-MDA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Desktop application", - "Web application", - "Workbench" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3172 ; - sc:description """Browser-based application for interactive processing of large-scale metabolomics (MS1) data. Developed by the Lewis Research Group at the University of Calgary in Alberta, Canada. - -The Metabolomics Integrator (MINT)) is a post-processing tool for liquid chromatography-mass spectrometry (LCMS) based metabolomics. Metabolomics is the study of all metabolites (small chemical compounds) in a biological sample e.g. from bacteria or a human blood sample. The metabolites can be used to define biomarkers used in medicine to find treatments for diseases or for the development of diagnostic tests or for the identification of pathogens such as methicillin resistant Staphylococcus aureus (MRSA).""" ; + sc:description "Python library for large-cohort metabolomics (MS1) processing." ; sc:isAccessibleForFree true ; - sc:license "MIT" ; + sc:license "Apache-2.0" ; sc:name "MINT (Metabolomics Integrator)" ; sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:softwareHelp ; - sc:url "https://github.com/sorenwacke/ms-mint" . + sc:softwareHelp ; + sc:url "https://github.com/LewisResearchGroup/ms-mint" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3314, @@ -316348,14 +329170,14 @@ The Metabolomics Integrator (MINT)) is a post-processing tool for liquid chromat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Peptide mass fingerprint" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -316373,7 +329195,7 @@ The Metabolomics Integrator (MINT)) is a post-processing tool for liquid chromat sc:url "http://sourceforge.net/projects/ms-spectre" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -316388,7 +329210,7 @@ The Metabolomics Integrator (MINT)) is a post-processing tool for liquid chromat sc:url "https://github.com/markmipt/ms1searchpy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -316407,7 +329229,7 @@ Liquid-chromatography mass-spectrometry (LC-MS) is the established standard for sc:url "https://gitlab.com/roettgerlab/ms2ai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3172, @@ -316422,7 +329244,7 @@ Liquid-chromatography mass-spectrometry (LC-MS) is the established standard for sc:url "https://github.com/beherasan/MS2Compound" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -316440,7 +329262,7 @@ Liquid-chromatography mass-spectrometry (LC-MS) is the established standard for biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, @@ -316464,7 +329286,7 @@ Liquid-chromatography mass-spectrometry (LC-MS) is the established standard for sc:url "https://github.com/mohimanilab/MS2Planner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -316476,8 +329298,31 @@ Liquid-chromatography mass-spectrometry (LC-MS) is the established standard for sc:softwareHelp ; sc:url "http://kirchnerlab.github.com/libmgf" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_2830, + edam:topic_3520, + edam:topic_3922 ; + sc:citation , + "pubmed:35803561" ; + sc:description "Sensitive PSM rescoring with predicted MS² peak intensities using MS²PIP, DeepLC, and Percolator." ; + sc:featureList edam:operation_0252, + edam:operation_3631, + edam:operation_3767 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "MS2Rescore" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/compomics/ms2rescore" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -316495,7 +329340,7 @@ Liquid-chromatography mass-spectrometry (LC-MS) is the established standard for "Sèverine Bérard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0153, edam:topic_3172, @@ -316517,7 +329362,7 @@ Liquid-chromatography mass-spectrometry (LC-MS) is the established standard for "Makoto Arita" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -316539,38 +329384,38 @@ Liquid-chromatography mass-spectrometry (LC-MS) is the established standard for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1984" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1948" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1948" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1711" ; - sc:name "Sequence alignment image" ; - sc:sameAs "http://edamontology.org/data_1711" ], + sc:additionalType "http://edamontology.org/data_0867" ; + sc:encodingFormat "http://edamontology.org/format_1997" ; + sc:name "Sequence alignment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Feature table" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1984" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1711" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Sequence alignment image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -316603,28 +329448,88 @@ Liquid-chromatography mass-spectrometry (LC-MS) is the established standard for sc:url "http://msa.biojs.net" ; biotools:primaryContact "Ulrich Bodenhofer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Library" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_3299, + edam:topic_3945 ; + sc:description "R/Bioconductor package MSA2dist calculates pairwise distances between all sequences of a DNAStringSet or a AAStringSet using a custom score matrix and conducts codon based analysis. It uses scoring matrices to be used in these pairwise distance calcualtions which can be adapted to any scoring for DNA or AA characters. E.g. by using literal distances MSA2dist calcualtes pairwise IUPAC distances." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MSA2dist" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "1.0.0", + "1.1.7" ; + sc:url "http://bioconductor.org/packages/release/bioc/html/MSA2dist.html" ; + biotools:primaryContact "Kristian Ullrich" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0769, + edam:topic_2640 ; + sc:citation , + "pmcid:PMC8567580", + "pubmed:34736398" ; + sc:description "Mutational signature attribution with confidence based on simulations" ; + sc:featureList edam:operation_3227, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MSA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.com/s.senkin/MSA" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3047, + edam:topic_3520 ; + sc:citation , + "pubmed:34842435" ; + sc:description "The Molecular Spectrometry Adduct Calculator (MSAC) calculates the m/z of potential adducts from given compound m/z." ; + sc:featureList edam:operation_3627, + edam:operation_3767, + edam:operation_3860 ; + sc:isAccessibleForFree true ; + sc:license "BSD-2-Clause" ; + sc:name "MSAC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/pnnl/MSAC" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0942" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "2D PAGE image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0942" ; - sc:name "2D PAGE image" ; - sc:sameAs "http://edamontology.org/data_0942" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3382, @@ -316642,7 +329547,7 @@ Liquid-chromatography mass-spectrometry (LC-MS) is the established standard for sc:url "http://proteowizard.sourceforge.net/tools/msaccess.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520, @@ -316659,18 +329564,18 @@ Liquid-chromatography mass-spectrometry (LC-MS) is the established standard for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_1921" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0083, edam:topic_0121, @@ -316687,14 +329592,14 @@ Liquid-chromatography mass-spectrometry (LC-MS) is the established standard for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3172, @@ -316710,7 +329615,7 @@ Liquid-chromatography mass-spectrometry (LC-MS) is the established standard for sc:url "http://www.ms-utils.org/msalign2/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0769, @@ -316727,7 +329632,7 @@ Mutational signature attribution with confidence based on simulations.""" ; sc:url "https://gitlab.com/s.senkin/MSA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -316742,7 +329647,7 @@ Mutational signature attribution with confidence based on simulations.""" ; sc:url "http://msaprobs.sourceforge.net/homepage.htm#latest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -316763,7 +329668,7 @@ MSAProbs-MPI is a parallelization of MSAProbs (v0.9.7) using MPI for distributed sc:url "http://msaprobs.sourceforge.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0654, @@ -316781,26 +329686,26 @@ MSAProbs-MPI is a parallelization of MSAProbs (v0.9.7) using MPI for distributed a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1984" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1984" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ], + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Feature table" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1711" ; - sc:name "Sequence alignment image" ; - sc:sameAs "http://edamontology.org/data_1711" ], + sc:additionalType "http://edamontology.org/data_1711" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Sequence alignment image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -316828,7 +329733,7 @@ MSAProbs-MPI is a parallelization of MSAProbs (v0.9.7) using MPI for distributed sc:url "http://msa.biojs.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -316846,18 +329751,15 @@ MSAProbs-MPI is a parallelization of MSAProbs (v0.9.7) using MPI for distributed a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -316887,7 +329789,7 @@ MSAProbs-MPI is a parallelization of MSAProbs (v0.9.7) using MPI for distributed sc:url "http://emboss.open-bio.org/rel/rel6/apps/msbar.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -316903,7 +329805,7 @@ MSAProbs-MPI is a parallelization of MSAProbs (v0.9.7) using MPI for distributed sc:url "http://darwin.informatics.indiana.edu/yonli/proteininfer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -316919,7 +329821,7 @@ MSAProbs-MPI is a parallelization of MSAProbs (v0.9.7) using MPI for distributed biotools:primaryContact "Lusheng Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -316940,7 +329842,7 @@ An international forum for researchers and educators in the life sciences, cover sc:url "https://github.com/BioinformaticsCSU/MSBMF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_2269, @@ -316959,7 +329861,7 @@ An international forum for researchers and educators in the life sciences, cover biotools:primaryContact "Daniel Sloan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3169 ; @@ -316973,7 +329875,7 @@ An international forum for researchers and educators in the life sciences, cover sc:url "http://121.5.71.120/mscDPB/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation ; @@ -316988,7 +329890,7 @@ An international forum for researchers and educators in the life sciences, cover sc:url "https://github.com/rajanil/msCentipede" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0659, @@ -317009,7 +329911,7 @@ An international forum for researchers and educators in the life sciences, cover sc:url "https://github.com/CJNabla/MultiSourcCFS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0140, edam:topic_2640, @@ -317026,7 +329928,7 @@ MSclassifier classifies instances using median-supplement machine learning metho sc:url "https://nweb.gimpa.edu.gh/schools/school-of-technology/software/MSclassifier/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3179 ; sc:description "MSCLtoolbox (The MSCL Analyst’s Toolbox) includes a set of scripts accessible as either a customized menu item (Windows) or as stand alone scripts (Mac) for the analysis of Affymetrix gene chip data. The scripts are run in the JMP statistical package, see below. Also available in the toolbox are GCOS database access scripts specific for Affymetrix." ; @@ -317041,7 +329943,7 @@ MSclassifier classifies instances using median-supplement machine learning metho sc:url "http://abs.cit.nih.gov/MSCLtoolbox/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0099, @@ -317058,7 +329960,7 @@ MSclassifier classifies instances using median-supplement machine learning metho sc:url "http://zhaocenter.org/software/#Genomic_Protein_Sequence_Analysis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -317077,14 +329979,14 @@ MSclassifier classifies instances using median-supplement machine learning metho a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrum" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -317106,7 +330008,7 @@ MSclassifier classifies instances using median-supplement machine learning metho biotools:primaryContact "Matt Chambers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_2269, @@ -317124,7 +330026,7 @@ Analyzing Gene Tree Quartets under the Multi-Species Coalescent.""" ; sc:url "https://CRAN.R-project.org/package=MSCquartets" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_2269, @@ -317142,10 +330044,10 @@ Analyzing Gene Tree Quartets under the Multi-Species Coalescent.""" ; a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -317160,7 +330062,7 @@ Analyzing Gene Tree Quartets under the Multi-Species Coalescent.""" ; sc:url "http://www.quadtechassociates.com/freeware.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -317179,7 +330081,7 @@ Analyzing Gene Tree Quartets under the Multi-Species Coalescent.""" ; biotools:primaryContact "Jeff Xia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0736, @@ -317197,10 +330099,10 @@ Analyzing Gene Tree Quartets under the Multi-Species Coalescent.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3712" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3520 ; sc:description "Python bindings for the (non-free) ThermoFisher Scientific MSFileReader." ; @@ -317214,14 +330116,13 @@ Analyzing Gene Tree Quartets under the Multi-Species Coalescent.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3483" ; - sc:name "Spectrum" ; - sc:sameAs "http://edamontology.org/data_3483" ] ; + sc:additionalType "http://edamontology.org/data_3483" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -317236,7 +330137,7 @@ Analyzing Gene Tree Quartets under the Multi-Species Coalescent.""" ; biotools:primaryContact "Alexey Nesvizhskii" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0625, @@ -317256,22 +330157,22 @@ Analyzing Gene Tree Quartets under the Multi-Species Coalescent.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -317287,7 +330188,7 @@ Analyzing Gene Tree Quartets under the Multi-Species Coalescent.""" ; sc:url "http://ms-utils.org/msgfdb2pepxml/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3365, @@ -317308,7 +330209,7 @@ Analyzing Gene Tree Quartets under the Multi-Species Coalescent.""" ; biotools:primaryContact "Thomas Lin Pedersen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0108, @@ -317328,7 +330229,7 @@ Analyzing Gene Tree Quartets under the Multi-Species Coalescent.""" ; biotools:primaryContact "Thomas Lin Pedersen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, @@ -317346,18 +330247,18 @@ Analyzing Gene Tree Quartets under the Multi-Species Coalescent.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3466" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -317375,7 +330276,7 @@ Analyzing Gene Tree Quartets under the Multi-Species Coalescent.""" ; sc:url "http://msgraph.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3056 ; @@ -317390,7 +330291,7 @@ Analyzing Gene Tree Quartets under the Multi-Species Coalescent.""" ; sc:url "https://uchicago.app.box.com/s/l3e5uf13tikfjm7e1il1eujitlsjdx13" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0804, edam:topic_2229, @@ -317405,7 +330306,7 @@ Analyzing Gene Tree Quartets under the Multi-Species Coalescent.""" ; biotools:primaryContact "Faheem Mitha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3172, @@ -317427,7 +330328,7 @@ This repository contains the python script performing the recalibration of mass sc:url "https://github.com/LaRoccaRaphael/MSI_recalibration" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0637, @@ -317451,7 +330352,7 @@ This repository contains the python script performing the recalibration of mass sc:url "https://msi.happy-dev.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2885, @@ -317471,7 +330372,7 @@ This repository contains the python script performing the recalibration of mass "Haijun Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3382, @@ -317490,14 +330391,14 @@ This repository contains the python script performing the recalibration of mass a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3710" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3383, @@ -317514,7 +330415,7 @@ This repository contains the python script performing the recalibration of mass sc:url "https://ms-imaging.org/wp/msimageview/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -317526,22 +330427,22 @@ This repository contains the python script performing the recalibration of mass a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3382, @@ -317564,7 +330465,7 @@ This repository contains the python script performing the recalibration of mass sc:url "http://www4.ncsu.edu/~dcmuddim/msireader.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -317580,7 +330481,7 @@ This repository contains the python script performing the recalibration of mass "Kai Ye" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2885, @@ -317600,7 +330501,7 @@ MSIsensor-ct is a novel method based machine learning, which can accurately dete sc:url "https://github.com/niu-lab/MSIsensor-ct" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0622, @@ -317617,7 +330518,7 @@ MSIsensor-pro is an updated version of msisensor. MSIsensor-pro evaluates Micros sc:url "https://github.com/xjtu-omics/msisensor-pro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -317632,7 +330533,7 @@ MSIsensor-pro is an updated version of msisensor. MSIsensor-pro evaluates Micros biotools:primaryContact "Wanda Sicinska" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3382, @@ -317653,7 +330554,7 @@ MSIWarp is a flexible tool to perform mass alignment of Mass Spectrometry Imagin sc:url "https://github.com/horvatovichlab/MSIWarp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0622, @@ -317675,7 +330576,7 @@ Metabolic Disorders Knowledge Portal. sc:url "http://mskkp.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0622, @@ -317693,7 +330594,7 @@ Metabolic Disorders Knowledge Portal. biotools:primaryContact "Erik Larsson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3068 ; sc:citation ; @@ -317707,7 +330608,7 @@ Metabolic Disorders Knowledge Portal. biotools:primaryContact "Zeeshan Ahmed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3336 ; @@ -317723,8 +330624,32 @@ Metabolic Disorders Knowledge Portal. sc:url "https://github.com/lcmeteor/MSLDOCK" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0154, + edam:topic_0769, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8822486", + "pubmed:35042333" ; + sc:description "Optimized Predicted Spectral Libraries for Data-Independent Acquisition Proteomics." ; + sc:featureList edam:operation_3630, + edam:operation_3633, + edam:operation_3801 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MSLibrarian" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/MarcIsak/MSLibrarian" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2269, @@ -317742,7 +330667,7 @@ Metabolic Disorders Knowledge Portal. biotools:primaryContact "Robert T. McGibbon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194 ; sc:citation ; @@ -317756,7 +330681,7 @@ Metabolic Disorders Knowledge Portal. sc:url "https://github.com/stschiff/msmc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3056 ; @@ -317772,22 +330697,22 @@ Metabolic Disorders Knowledge Portal. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -317813,18 +330738,18 @@ Metabolic Disorders Knowledge Portal. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -317848,7 +330773,7 @@ Metabolic Disorders Knowledge Portal. biotools:primaryContact "Josep Gregori i Font" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -317871,7 +330796,7 @@ Metabolic Disorders Knowledge Portal. biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -317890,8 +330815,33 @@ Metabolic Disorders Knowledge Portal. sc:url "http://bioconductor.org/packages/release/bioc/html/MSnID.html" ; biotools:primaryContact "Vlad Petyuk" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0153, + edam:topic_0154, + edam:topic_3172, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9262714", + "pubmed:35637304" ; + sc:description "De novo structure generation from mass spectra." ; + sc:featureList edam:operation_0476, + edam:operation_3431, + edam:operation_3454, + edam:operation_3860, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "MSNovelist" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/meowcat/MSNovelist" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3053 ; @@ -317906,7 +330856,7 @@ Metabolic Disorders Knowledge Portal. sc:url "http://msoar.cs.ucr.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3452, @@ -317921,7 +330871,7 @@ mSOUND is an open-source toolbox written in MATLAB.""" ; sc:url "https://m-sound.github.io/mSOUND/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0632, @@ -317939,7 +330889,7 @@ mSOUND is an open-source toolbox written in MATLAB.""" ; biotools:primaryContact "Ram Vinay Pandey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3172, @@ -317959,7 +330909,7 @@ mSOUND is an open-source toolbox written in MATLAB.""" ; sc:url "https://github.com/fhanau/mspack" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3070, @@ -317976,7 +330926,7 @@ mSOUND is an open-source toolbox written in MATLAB.""" ; biotools:primaryContact "Vahid Jalili" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2814, @@ -317994,7 +330944,7 @@ mSOUND is an open-source toolbox written in MATLAB.""" ; biotools:primaryContact "Richard D. Vierstra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3520 ; @@ -318008,7 +330958,7 @@ mSOUND is an open-source toolbox written in MATLAB.""" ; biotools:primaryContact "Dr. Dietmar Schomburg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_3172, @@ -318030,7 +330980,7 @@ MSpectraAI is a free, user-friendly and comprehensive software for mining and cl sc:url "https://github.com/wangshisheng/MSpectraAI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "MSPIKE performs neural spike pattern analysis on extracellular potentials acquired with TDT's System3." ; sc:featureList edam:operation_0380 ; @@ -318044,7 +330994,7 @@ MSpectraAI is a free, user-friendly and comprehensive software for mining and cl biotools:primaryContact "Hazem Baqaen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3473, @@ -318062,14 +331012,14 @@ MSpectraAI is a free, user-friendly and comprehensive software for mining and cl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520, @@ -318087,14 +331037,14 @@ MSpectraAI is a free, user-friendly and comprehensive software for mining and cl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -318107,7 +331057,7 @@ MSpectraAI is a free, user-friendly and comprehensive software for mining and cl sc:url "http://mspire.rubyforge.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154 ; @@ -318123,7 +331073,7 @@ MSpectraAI is a free, user-friendly and comprehensive software for mining and cl sc:url "http://proteomics.ucsd.edu/software-tools/msplit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -318143,7 +331093,7 @@ Simulation studies for sparse partial least squares path modeling.""" ; sc:url "http://uva.csala.me/mspls" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -318156,7 +331106,7 @@ Simulation studies for sparse partial least squares path modeling.""" ; sc:url "http://omics.pnl.gov/software/MSPolygraph.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3172 ; @@ -318171,7 +331121,7 @@ Simulation studies for sparse partial least squares path modeling.""" ; biotools:primaryContact "Grant Hughes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -318184,7 +331134,7 @@ Simulation studies for sparse partial least squares path modeling.""" ; sc:url "https://tskit.dev/msprime" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -318202,7 +331152,7 @@ Simulation studies for sparse partial least squares path modeling.""" ; biotools:primaryContact "Bernhard Y. Renard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -318223,22 +331173,21 @@ Simulation studies for sparse partial least squares path modeling.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ] ; + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Experiment report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; sc:author ; @@ -318264,7 +331213,7 @@ Simulation studies for sparse partial least squares path modeling.""" ; "Lieven Clement" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -318283,10 +331232,10 @@ Simulation studies for sparse partial least squares path modeling.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3713" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -318299,8 +331248,27 @@ Simulation studies for sparse partial least squares path modeling.""" ; sc:softwareHelp ; sc:url "http://msquant.sourceforge.net" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0196, + edam:topic_3168, + edam:topic_3474 ; + sc:citation , + "pubmed:35766808" ; + sc:description "A Multi-scale Deep Neural Network to Basecall Oxford Nanopore Sequences." ; + sc:featureList edam:operation_0525, + edam:operation_3185 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MSRCall" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/d05943006/MSRCall" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0140, @@ -318320,8 +331288,32 @@ Simulation studies for sparse partial least squares path modeling.""" ; , "Todd A. Gray" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0637, + edam:topic_0780, + edam:topic_3175, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8728181", + "pubmed:34850956" ; + sc:description "A comprehensive repetitive sequence database of over 80 000 species." ; + sc:featureList edam:operation_0368, + edam:operation_0379, + edam:operation_2421, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "msRepDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://msrepdb.cbrc.kaust.edu.sa/pages/msRepDB/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -318335,36 +331327,58 @@ Simulation studies for sparse partial least squares path modeling.""" ; sc:url "http://www.csjfann.ibms.sinica.edu.tw/eag/programlist/MSS/MSS.html" ; biotools:primaryContact "Cathy S. J. Fann" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0154, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pubmed:35231660" ; + sc:description "A deep learning classification tool of the peptide precursors quantified by OpenSWATH." ; + sc:featureList edam:operation_3767, + edam:operation_3799, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MSSort-DIA-XMBD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/jianweishuai/MSSort-DIA-XMBD" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3714" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Statistical estimate score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0769, @@ -318388,7 +331402,7 @@ Simulation studies for sparse partial least squares path modeling.""" ; sc:url "http://www.msstats.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -318406,7 +331420,7 @@ Simulation studies for sparse partial least squares path modeling.""" ; biotools:primaryContact "Eralp Dogu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -318423,7 +331437,7 @@ Simulation studies for sparse partial least squares path modeling.""" ; biotools:primaryContact "Eralp Dogu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_2269, @@ -318440,7 +331454,7 @@ Phylogeny inference via maximum likelihood is NP-hard. Current methods make simp sc:url "https://github.com/prabhavk/mst-backbone-sem-gm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053, @@ -318454,8 +331468,33 @@ Phylogeny inference via maximum likelihood is NP-hard. Current methods make simp sc:softwareHelp ; sc:url "http://alumni.cs.ucr.edu/~yonghui/mstmap.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Database portal" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0601, + edam:topic_3320, + edam:topic_3520 ; + sc:citation , + "pubmed:34818005" ; + sc:description "A Tool for the Visualization of Mass Shifts in Deconvoluted Top-Down Proteomics Data for the Database-Independent Detection of Protein Modifications." ; + sc:featureList edam:operation_0417, + edam:operation_3215, + edam:operation_3629, + edam:operation_3633, + edam:operation_3755 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "MSTopDiff" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/PhilippKaulich/MSTopDiff" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -318479,7 +331518,7 @@ Phylogeny inference via maximum likelihood is NP-hard. Current methods make simp sc:url "https://github.com/MetabolomicsSA/MStractor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3315, @@ -318498,7 +331537,7 @@ MStree is an open-source software for estimating ancestral population sizes and sc:url "https://github.com/liujunfengtop/MStree/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3056 ; @@ -318511,7 +331550,7 @@ MStree is an open-source software for estimating ancestral population sizes and sc:url "http://www.sailing.cs.cmu.edu/main/?page_id=399" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3384, @@ -318527,7 +331566,7 @@ MStree is an open-source software for estimating ancestral population sizes and biotools:primaryContact "Jinhuai Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0654, @@ -318551,8 +331590,30 @@ Msuite is written in Perl and R for Linux/Unix platform. To run Msuite you need sc:name "Msuite" ; sc:url "https://github.com/hellosunking/Msuite/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2885, + edam:topic_3474 ; + sc:citation , + "pubmed:34843978" ; + sc:description "A centralized online platform for predicting the m6A methylation degree of mRNA and the SNP-related traits in Maize." ; + sc:featureList edam:operation_0417 ; + sc:isAccessibleForFree true ; + sc:name "msup6 supA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.xjtlu.edu.cn/biologicalsciences/maize" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2814 ; @@ -318569,7 +331630,7 @@ Msuite is written in Perl and R for Linux/Unix platform. To run Msuite you need sc:url "http://decrypthon.igbmc.fr/msv3d/cgi-bin/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0121 ; @@ -318594,7 +331655,7 @@ Msuite is written in Perl and R for Linux/Unix platform. To run Msuite you need biotools:primaryContact "Roman Mylonas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3053, @@ -318611,7 +331672,7 @@ Msuite is written in Perl and R for Linux/Unix platform. To run Msuite you need "Sylvia Richardson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Script" ; @@ -318635,7 +331696,7 @@ Identifying diagnosis-specific genotype-phenotype associations via joint multi-t sc:url "https://github.com/dulei323/MTSCCALR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0128, @@ -318656,7 +331717,7 @@ Identifying diagnosis-specific genotype-phenotype associations via joint multi-t biotools:primaryContact "Konstantin Gunbin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0637, @@ -318679,8 +331740,30 @@ Identifying diagnosis-specific genotype-phenotype associations via joint multi-t "Windows" ; sc:url "https://github.com/chanw0/MTA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_0780, + edam:topic_3474, + edam:topic_3512, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC9275082", + "pubmed:35820798" ; + sc:description "Predicting miRNA-target associations in Camellia sinensis var. assamica through graph convolution neural network." ; + sc:featureList edam:operation_0463, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MTAGCN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/haisonF/MTAGCN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -318697,8 +331780,43 @@ Identifying diagnosis-specific genotype-phenotype associations via joint multi-t sc:name "MtbTnDB" ; sc:url "http://www.mtbtndb.app" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation ; + sc:description "MtbVeb is a web-based platform developed for designing vaccines against existing and emerging strains of mycobacterium tuberculosis. This includes drug resistant and extreme drug resistant M.Tb strains. It also allow users to design vaccines against M.tb using all three appraches (strain, antigen and epitope based vaccines)." ; + sc:featureList edam:operation_2945 ; + sc:name "mtbveb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/mtbveb/index.php" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_0634, + edam:topic_2229, + edam:topic_3053, + edam:topic_3673 ; + sc:citation , + "pubmed:34897451" ; + sc:description "A database of mitochondrial genome variants in chinese population" ; + sc:featureList edam:operation_3196, + edam:operation_3211, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:name "MTCards" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://genemed.tech/mtcards/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0208, @@ -318714,8 +331832,30 @@ Identifying diagnosis-specific genotype-phenotype associations via joint multi-t sc:softwareHelp ; sc:url "http://jjwanglab.org/mTCTScan" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0769, + edam:topic_3170, + edam:topic_3697, + edam:topic_3941 ; + sc:citation ; + sc:description "A unique pipeline for host and meta-transcriptome joint and integrative analyses of RNA-seq data." ; + sc:featureList edam:operation_3192, + edam:operation_3463, + edam:operation_3799, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-4.0" ; + sc:name "MTD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/FEI38750/MTD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation ; @@ -318728,7 +331868,7 @@ Identifying diagnosis-specific genotype-phenotype associations via joint multi-t sc:url "http://aipl.arsusda.gov/software/mtdfreml/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -318747,7 +331887,7 @@ Identifying diagnosis-specific genotype-phenotype associations via joint multi-t "Sebastian Schoenherr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0610, @@ -318767,7 +331907,7 @@ This vignette describes the mtDNAcombine package, an R library designed to suppo sc:url "https://github.com/EvolEcolGroup/mtDNAcombine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -318784,7 +331924,7 @@ This vignette describes the mtDNAcombine package, an R library designed to suppo sc:url "http://mtprofiler.yonsei.ac.kr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -318802,7 +331942,7 @@ This vignette describes the mtDNAcombine package, an R library designed to suppo biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -318819,8 +331959,30 @@ This vignette describes the mtDNAcombine package, an R library designed to suppo sc:url "https://sites.google.com/site/honglee0707/mtg2" ; biotools:primaryContact "Lee SH" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_2640, + edam:topic_3295, + edam:topic_3360, + edam:topic_3474 ; + sc:citation , + "pubmed:34643232" ; + sc:description "Improving cancer driver gene identification using multi-task learning on graph convolutional network." ; + sc:featureList edam:operation_0314, + edam:operation_2454, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MTGCN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/weiba/MTGCN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -318836,7 +331998,7 @@ This vignette describes the mtDNAcombine package, an R library designed to suppo "Zhejiang University" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3303, @@ -318852,7 +332014,7 @@ Named entity recognition is a critical and fundamental task for biomedical text sc:url "https://github.com/zmmzGitHub/MTL-BC-LBC-BioNER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0736 ; @@ -318866,7 +332028,7 @@ Named entity recognition is a critical and fundamental task for biomedical text sc:url "http://yanglab.nankai.edu.cn/mTM-align/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, @@ -318882,8 +332044,21 @@ Named entity recognition is a critical and fundamental task for biomedical text sc:url "http://www.ifm.liu.se/chemistry/molbiotech/maria_sunnerhagens_group/mtmdat/" ; biotools:primaryContact "Janosch Hennig" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "A webserver for the prediction of metastatic triple negative breast cancer (TNBC) patients. MTNBCPred is a service for the prediction of lymph-node metastatic and non-metastatic TNBC patients." ; + sc:featureList edam:operation_2945 ; + sc:name "mtnbcpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/mtnbcpred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -318896,7 +332071,7 @@ Named entity recognition is a critical and fundamental task for biomedical text sc:url "https://github.com/mitoNGS/MToolBox" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -318917,7 +332092,7 @@ The 'TOP' vignette will provide a good start point for using TOP package.""" ; sc:url "https://github.com/andrewhaoyu/TOP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Script" ; sc:applicationSubCategory edam:topic_0593, @@ -318937,7 +332112,7 @@ In the data analysis of functional near-infrared spectroscopy (fNIRS), linear mo sc:url "https://github.com/PsyChiLin/MTPAinR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation "pubmed:21127032" ; @@ -318948,7 +332123,7 @@ In the data analysis of functional near-infrared spectroscopy (fNIRS), linear mo biotools:primaryContact "Fabio Gori" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -318966,7 +332141,7 @@ In the data analysis of functional near-infrared spectroscopy (fNIRS), linear mo biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -318984,8 +332159,30 @@ In the data analysis of functional near-infrared spectroscopy (fNIRS), linear mo sc:name "MTSplice" ; sc:url "https://gitlab.cmm.in.tum.de/gagneurlab/mtsplice" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_3170, + edam:topic_3324, + edam:topic_3360, + edam:topic_3384 ; + sc:citation , + "pmcid:PMC8982078", + "pubmed:35392603" ; + sc:description "A Web-Based R/Shiny App for Pulmonary Tuberculosis Screening." ; + sc:featureList edam:operation_2428, + edam:operation_3223, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:name "mtTB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://tuberculosis.shinyapps.io/mtTB/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3444, @@ -319000,7 +332197,7 @@ Multi-task U-Net for the simultaneous segmentation and skull-stripping of mouse sc:url "https://github.com/Hierakonpolis/MU-Net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0602, @@ -319026,7 +332223,7 @@ Deep learning method for Pseudouridine site prediction.""" ; sc:url "https://github.com/smk5g5/MU-PseUDeep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation "pubmed:21149339" ; @@ -319041,7 +332238,7 @@ Deep learning method for Pseudouridine site prediction.""" ; biotools:primaryContact "Michael Krauthammer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3673, @@ -319058,7 +332255,7 @@ Deep learning method for Pseudouridine site prediction.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2269, @@ -319074,8 +332271,21 @@ Deep learning method for Pseudouridine site prediction.""" ; sc:url "https://github.com/blachlylab/mucor" ; biotools:primaryContact "James S. Blachly" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "Mucormydb is a web server that enables the scientific community to fight opportunistic fungal infections caused by a group of molds" ; + sc:featureList edam:operation_2945 ; + sc:name "mucormydb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/mucormydb/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_1317 ; @@ -319092,8 +332302,31 @@ Deep learning method for Pseudouridine site prediction.""" ; sc:softwareVersion "1" ; sc:url "http://mud.tau.ac.il/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Database portal" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0218, + edam:topic_0637, + edam:topic_3301, + edam:topic_3473 ; + sc:citation , + "pmcid:PMC8588855", + "pubmed:34820191" ; + sc:description "Biologically-oriented mud volcano database." ; + sc:featureList edam:operation_0337, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "muddy_db" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://muddy-db.shinyapps.io/muddy_db/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121 ; @@ -319110,7 +332343,7 @@ Deep learning method for Pseudouridine site prediction.""" ; "Fabio R. Cerqueira" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -319131,7 +332364,7 @@ MUFFIN is a hybrid assembly and differential binning workflow for metagenomics, sc:url "https://github.com/RVanDamme/MUFFIN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -319147,7 +332380,7 @@ MUFFIN is a hybrid assembly and differential binning workflow for metagenomics, "Xiangxiang Zeng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2814 ; @@ -319161,7 +332394,7 @@ MUFFIN is a hybrid assembly and differential binning workflow for metagenomics, biotools:primaryContact "Dong Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2275, @@ -319176,7 +332409,7 @@ MUFFIN is a hybrid assembly and differential binning workflow for metagenomics, biotools:primaryContact "Dong Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -319193,102 +332426,94 @@ MUFFIN is a hybrid assembly and differential binning workflow for metagenomics, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0905" ; - sc:name "Protein interaction raw data" ; - sc:sameAs "http://edamontology.org/data_0905" ], + sc:additionalType "http://edamontology.org/data_0905" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Protein interaction raw data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_1461" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein-ligand complex" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3210" ; - sc:name "Genome index" ; - sc:sameAs "http://edamontology.org/data_3210" ], + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1461" ; - sc:name "Protein-ligand complex" ; - sc:sameAs "http://edamontology.org/data_1461" ], + sc:additionalType "http://edamontology.org/data_3869" ; + sc:name "Simulation" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3210" ; + sc:name "Genome index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0905" ; - sc:name "Protein interaction raw data" ; - sc:sameAs "http://edamontology.org/data_0905" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_0905" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Protein interaction raw data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3869" ; - sc:name "Simulation" ; - sc:sameAs "http://edamontology.org/data_3869" ], + sc:additionalType "http://edamontology.org/data_0905" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Protein interaction raw data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0905" ; - sc:name "Protein interaction raw data" ; - sc:sameAs "http://edamontology.org/data_0905" ] ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:name "Structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ], + sc:additionalType "http://edamontology.org/data_3870" ; + sc:name "Trajectory data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3870" ; - sc:name "Trajectory data" ; - sc:sameAs "http://edamontology.org/data_3870" ], + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_4002" ; + sc:name "Protein interaction data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3872" ; - sc:name "Topology data" ; - sc:sameAs "http://edamontology.org/data_3872" ], + sc:additionalType "http://edamontology.org/data_3872" ; + sc:encodingFormat "http://edamontology.org/format_4002" ; + sc:name "Topology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2877" ; - sc:name "Protein complex" ; - sc:sameAs "http://edamontology.org/data_2877" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2084" ; - sc:name "Nucleic acid report" ; - sc:sameAs "http://edamontology.org/data_2084" ], + sc:additionalType "http://edamontology.org/data_2877" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein complex" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_3870" ; + sc:name "Trajectory data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2084" ; + sc:name "Nucleic acid report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workbench" ; sc:applicationSubCategory edam:topic_0097, @@ -319329,7 +332554,7 @@ MUFFIN is a hybrid assembly and differential binning workflow for metagenomics, biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -319348,7 +332573,7 @@ MUFFIN is a hybrid assembly and differential binning workflow for metagenomics, biotools:primaryContact "Ovcharenko I." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0804, edam:topic_3308, @@ -319363,7 +332588,7 @@ MUFFIN is a hybrid assembly and differential binning workflow for metagenomics, biotools:primaryContact "Roy S" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -319382,7 +332607,7 @@ MUFFIN is a hybrid assembly and differential binning workflow for metagenomics, biotools:primaryContact "Claudio Isella" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0140, @@ -319406,7 +332631,7 @@ MULocDeep: An Interpretable Deep Learning Model for Protein Localization Predict sc:url "http://www.mu-loc.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814 ; @@ -319423,7 +332648,7 @@ MULocDeep: An Interpretable Deep Learning Model for Protein Localization Predict "Sylvain Léonard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3293, @@ -319440,7 +332665,7 @@ MULocDeep: An Interpretable Deep Learning Model for Protein Localization Predict biotools:primaryContact "Chaudhary R" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3053 ; @@ -319455,7 +332680,7 @@ MULocDeep: An Interpretable Deep Learning Model for Protein Localization Predict sc:url "http://dceg.cancer.gov/tools/analysis/multassoc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0203, @@ -319472,8 +332697,28 @@ MULocDeep: An Interpretable Deep Learning Model for Protein Localization Predict sc:url "http://www.cs.utah.edu/~miriah/multeesum/" ; biotools:primaryContact "Tamara Munzner" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0202, + edam:topic_3335, + edam:topic_3474 ; + sc:citation ; + sc:description "Classification of ion channel interacting peptides using parallel convolutional neural networks." ; + sc:featureList edam:operation_3359, + edam:operation_3435, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Multi-Branch-CNN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/jieluyan/Multi-Branch-CNN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3125, @@ -319491,8 +332736,33 @@ MULocDeep: An Interpretable Deep Learning Model for Protein Localization Predict sc:url "http://140.114.85.168/Multi-CAR/index.php" ; biotools:primaryContact "Chin Lung Lu" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0196, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC9252826", + "pubmed:35524553" ; + sc:description "A web server for scaffolding contigs using multiple reference genomes." ; + sc:featureList edam:operation_0479, + edam:operation_0490, + edam:operation_0525, + edam:operation_3216 ; + sc:isAccessibleForFree true ; + sc:name "Multi-CSAR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://genome.cs.nthu.edu.tw/Multi-CSAR/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0797, edam:topic_3056, @@ -319513,7 +332783,7 @@ MULocDeep: An Interpretable Deep Learning Model for Protein Localization Predict biotools:primaryContact "Alexander Xue" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0593, edam:topic_2269, @@ -319532,7 +332802,7 @@ MULocDeep: An Interpretable Deep Learning Model for Protein Localization Predict biotools:primaryContact "David Snyder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0632, @@ -319555,7 +332825,7 @@ MULocDeep: An Interpretable Deep Learning Model for Protein Localization Predict biotools:primaryContact "Jean-Louis Reymond" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -319576,7 +332846,7 @@ MULocDeep: An Interpretable Deep Learning Model for Protein Localization Predict biotools:primaryContact "Bernd Brandt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3304, @@ -319596,26 +332866,26 @@ MULocDeep: An Interpretable Deep Learning Model for Protein Localization Predict a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3747" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3710" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -319632,8 +332902,31 @@ MULocDeep: An Interpretable Deep Learning Model for Protein Localization Predict sc:softwareHelp ; sc:url "http://ms.iis.sinica.edu.tw/Multi-Q/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_3474, + edam:topic_3512, + edam:topic_3518, + edam:topic_3794 ; + sc:citation , + "pmcid:PMC8594109", + "pubmed:34781902" ; + sc:description "A residual network-based multi-label classifier for in vivo RNA binding prediction and preference visualization." ; + sc:featureList edam:operation_0278, + edam:operation_3901, + edam:operation_3902 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Multi-resBind" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/tjustorm/Multi-resBind" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3318, @@ -319651,7 +332944,7 @@ Welcome to "Multi-Scattering" a freely accessible online software for the modeli sc:url "https://multi-scattering.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, @@ -319672,7 +332965,7 @@ Multi-Template Matching for object-detection.""" ; sc:url "https://github.com/multi-template-matching" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0160, @@ -319692,7 +332985,7 @@ Multi-Template Matching for object-detection.""" ; biotools:primaryContact "Carol L. Ecale Zhou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0121, @@ -319714,18 +333007,15 @@ multiSLIDE is an open-source tool for query-driven visualization of quantitative a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2109" ; - sc:name "Identifier (hybrid)" ; - sc:sameAs "http://edamontology.org/data_2109" ] ; + sc:additionalType "http://edamontology.org/data_2109" ; + sc:name "Identifier (hybrid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_3111" ; + sc:name "Processed microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0092, @@ -319746,7 +333036,7 @@ multiSLIDE is an open-source tool for query-driven visualization of quantitative biotools:primaryContact "Priit Adler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3170, @@ -319765,7 +333055,7 @@ Multi Locus View (MLV) is a web based tool for analysing and visualising Next Ge sc:url "https://github.com/Hughes-Genome-Group/mlv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -319783,8 +333073,30 @@ Multi Locus View (MLV) is a web based tool for analysing and visualising Next Ge sc:url "http://bioconductor.org/packages/release/bioc/html/MultiAssayExperiment.html" ; biotools:primaryContact "Marcel Ramos" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2269, + edam:topic_3077, + edam:topic_3361 ; + sc:citation , + "pmcid:PMC9048667", + "pubmed:35238331" ; + sc:description "An R package to remove batch effects in multi-omic experiments." ; + sc:featureList edam:operation_0337, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MultiBaC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://www.bioconductor.org/packages/release/bioc/html/MultiBaC.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -319801,7 +333113,7 @@ Multi Locus View (MLV) is a web based tool for analysing and visualising Next Ge biotools:primaryContact "John Williams" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -319823,7 +333135,7 @@ Multi Locus View (MLV) is a web based tool for analysing and visualising Next Ge biotools:primaryContact "MultiBind administrator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3168, @@ -319839,24 +333151,58 @@ Multi Locus View (MLV) is a web based tool for analysing and visualising Next Ge biotools:primaryContact "Anna Ritz", "Benjamin J. Raphael" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0203, + edam:topic_3170, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8652257", + "pubmed:34899854" ; + sc:description "A General Framework for Data Integration and Interpretable Classification." ; + sc:featureList edam:operation_3225, + edam:operation_3227, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MultiCapsNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/wanglf19/MultiCapsNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, - edam:topic_2640 ; + edam:topic_3170, + edam:topic_3277, + edam:topic_3308, + edam:topic_3518 ; sc:citation , "pubmed:33543757" ; - sc:description "An R package to train multiclass pairbased classifier." ; - sc:featureList edam:operation_0337, + sc:description "A comparison of rule-based and centroid single-sample multiclass predictors for transcriptomic classification." ; + sc:featureList edam:operation_0314, + edam:operation_0337, edam:operation_2454, + edam:operation_3435, + edam:operation_3800, edam:operation_3907 ; + sc:isAccessibleForFree true ; sc:license "GPL-2.0" ; sc:name "multiclassPairs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; sc:url "https://github.com/NourMarzouka/multiclassPairs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053, @@ -319875,7 +333221,7 @@ Multi Locus View (MLV) is a web based tool for analysing and visualising Next Ge biotools:primaryContact "Nathan Lawlor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -319889,7 +333235,7 @@ Multi Locus View (MLV) is a web based tool for analysing and visualising Next Ge sc:url "http://groups.csail.mit.edu/cb/multicoil" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082 ; sc:citation , @@ -319903,7 +333249,7 @@ Multi Locus View (MLV) is a web based tool for analysing and visualising Next Ge sc:url "http://sysbio.rnet.missouri.edu/multicom_cluster/human/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -319919,7 +333265,7 @@ Multi Locus View (MLV) is a web based tool for analysing and visualising Next Ge biotools:primaryContact "Jianlin Cheng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3168, @@ -319935,7 +333281,7 @@ Multi-locus multi-purpose Crispr/Cas design.""" ; sc:url "https://gitlab.gwdg.de/loosolab/software/multicrispr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0654, @@ -319956,7 +333302,7 @@ Multi-locus multi-purpose Crispr/Cas design.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -319971,7 +333317,7 @@ Multi-locus multi-purpose Crispr/Cas design.""" ; biotools:primaryContact "Herty Liany" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -319983,14 +333329,12 @@ Multi-locus multi-purpose Crispr/Cas design.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1354" ; - sc:name "Sequence profile" ; - sc:sameAs "http://edamontology.org/data_1354" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1354" ; + sc:name "Sequence profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -320006,7 +333350,7 @@ Multi-locus multi-purpose Crispr/Cas design.""" ; sc:url "http://structure.bmc.lu.se/MultiDisp/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -320029,14 +333373,14 @@ Multi-locus multi-purpose Crispr/Cas design.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -320052,7 +333396,7 @@ Multi-locus multi-purpose Crispr/Cas design.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0611, @@ -320074,8 +333418,28 @@ Multi-locus multi-purpose Crispr/Cas design.""" ; sc:url "http://modbase.compbio.ucsf.edu/multifit/" ; biotools:primaryContact "MultiFit Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0154, + edam:topic_0601, + edam:topic_3520 ; + sc:citation , + "pubmed:35086334" ; + sc:description "A Computational Approach to Quantify the Modification Stoichiometries in Label-Free Proteomics Data Sets." ; + sc:featureList edam:operation_0417, + edam:operation_3634, + edam:operation_3755 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "multiFLEX-LF" ; + sc:operatingSystem "Windows" ; + sc:url "https://gitlab.com/SteenOmicsLab/multiflex-lf" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -320094,7 +333458,7 @@ Multi-locus multi-purpose Crispr/Cas design.""" ; biotools:primaryContact "Kun Zhan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -320109,7 +333473,7 @@ Multi-locus multi-purpose Crispr/Cas design.""" ; biotools:primaryContact "Xinping Cui" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0601, @@ -320125,7 +333489,7 @@ Multi-locus multi-purpose Crispr/Cas design.""" ; "Haixu Tang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -320146,7 +333510,7 @@ Combining GSEA-based pathway enrichment with multi omics data integration.""" ; sc:url "https://github.com/yigbt/multiGSEA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -320167,7 +333531,7 @@ Combining GSEA-based pathway enrichment with multi omics data integration.""" ; sc:url "https://github.com/agrosavia-bioinformatics/multiGWAS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0102, @@ -320190,7 +333554,7 @@ Combining GSEA-based pathway enrichment with multi omics data integration.""" ; sc:url "https://github.com/siyao-liu/MultiK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -320206,7 +333570,7 @@ Combining GSEA-based pathway enrichment with multi omics data integration.""" ; biotools:primaryContact "milchsage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0089, @@ -320223,7 +333587,7 @@ Combining GSEA-based pathway enrichment with multi omics data integration.""" ; sc:url "http://abi.inf.uni-tuebingen.de/Services/MultiLoc2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -320240,8 +333604,31 @@ Combining GSEA-based pathway enrichment with multi omics data integration.""" ; biotools:primaryContact "Rasheeda Williams", "Tara C. Matise" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_2229, + edam:topic_3170, + edam:topic_3308, + edam:topic_3940 ; + sc:citation , + "pmcid:PMC8686224", + "pubmed:34930412" ; + sc:description "Dimensionality reduction and integration of multimodal data." ; + sc:featureList edam:operation_0314, + edam:operation_3891, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MultiMAP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/Teichlab/MultiMAP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3360, @@ -320261,18 +333648,18 @@ Combining GSEA-based pathway enrichment with multi omics data integration.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -320291,7 +333678,7 @@ Combining GSEA-based pathway enrichment with multi omics data integration.""" ; biotools:primaryContact "Simina M. Boca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -320308,7 +333695,7 @@ Combining GSEA-based pathway enrichment with multi omics data integration.""" ; biotools:primaryContact "Dragana Vuckovic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -320325,7 +333712,7 @@ Combining GSEA-based pathway enrichment with multi omics data integration.""" ; biotools:primaryContact "Dan Theodorescu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -320341,7 +333728,7 @@ Combining GSEA-based pathway enrichment with multi omics data integration.""" ; sc:url "https://comorbidity.comp-sysbio.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0196, @@ -320361,7 +333748,7 @@ We present an efficient implementation of Nanopolish, called MultiNanopolish. Mu sc:url "https://github.com/BioinformaticsCSU/MultiNanopolish" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3391 ; @@ -320380,7 +333767,7 @@ We present an efficient implementation of Nanopolish, called MultiNanopolish. Mu biotools:primaryContact "Jing Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -320405,7 +333792,7 @@ We present an efficient implementation of Nanopolish, called MultiNanopolish. Mu sc:url "https://www.multiomix.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -320427,7 +333814,7 @@ A Python package for network analysis through diffusion label propagation algori sc:url "https://github.com/multipaths" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -320444,7 +333831,7 @@ A Python package for network analysis through diffusion label propagation algori biotools:primaryContact "Lachlan Coin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293 ; @@ -320456,7 +333843,7 @@ A Python package for network analysis through diffusion label propagation algori sc:url "http://www.cs.nuim.ie/distributed/multiphyl.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053 ; @@ -320470,7 +333857,7 @@ A Python package for network analysis through diffusion label propagation algori biotools:primaryContact "Hongyu Zhao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -320495,30 +333882,30 @@ MeTeOR mines the PubMed literature, revealing knowledge previously hidden in a s a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:encodingFormat "http://edamontology.org/format_3621" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ], + sc:additionalType "http://edamontology.org/data_3786" ; + sc:encodingFormat "http://edamontology.org/format_3621" ; + sc:name "Query script" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0121, @@ -320559,14 +333946,12 @@ MeTeOR mines the PubMed literature, revealing knowledge previously hidden in a s a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1240" ; - sc:name "PCR primers" ; - sc:sameAs "http://edamontology.org/data_1240" ] ; + sc:additionalType "http://edamontology.org/data_1240" ; + sc:name "PCR primers" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:name "Sequence set (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3519 ; @@ -320584,7 +333969,7 @@ MeTeOR mines the PubMed literature, revealing knowledge previously hidden in a s biotools:primaryContact "Lauris Kaplinski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3517 ; @@ -320600,7 +333985,7 @@ MeTeOR mines the PubMed literature, revealing knowledge previously hidden in a s biotools:primaryContact "Peter Kraft" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0625, @@ -320618,7 +334003,7 @@ MeTeOR mines the PubMed literature, revealing knowledge previously hidden in a s biotools:primaryContact "Guang LanZhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -320634,7 +334019,7 @@ MeTeOR mines the PubMed literature, revealing knowledge previously hidden in a s sc:url "http://bioinfo3d.cs.tau.ac.il/MultiProt/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3301, @@ -320653,10 +334038,10 @@ MeTeOR mines the PubMed literature, revealing knowledge previously hidden in a s a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3750" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3168 ; @@ -320677,7 +334062,7 @@ MeTeOR mines the PubMed literature, revealing knowledge previously hidden in a s biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -320693,7 +334078,7 @@ MeTeOR mines the PubMed literature, revealing knowledge previously hidden in a s biotools:primaryContact "Mirela Andronescu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -320712,7 +334097,7 @@ MeTeOR mines the PubMed literature, revealing knowledge previously hidden in a s biotools:primaryContact "Mizanur Khondoker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -320729,7 +334114,7 @@ MeTeOR mines the PubMed literature, revealing knowledge previously hidden in a s biotools:primaryContact "Malvina Josephidou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_2269, @@ -320741,22 +334126,8 @@ MeTeOR mines the PubMed literature, revealing knowledge previously hidden in a s sc:name "multiSyncPy" ; sc:url "https://github.com/cslab-hub/multiSyncPy" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3174, - edam:topic_3304, - edam:topic_3697 ; - sc:citation , - "pmcid:PMC6724662", - "pubmed:31555316" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'multitable', 'domains-different' | Multitable Methods for Microbiome Data Integration | Code to accompany \"Multitable Methods for Microbiome Data Integration\" | This is code to accompany Multitable Methods for Microbiome Data Integration by Sankaran and Holmes | To rerun any particular method, edit the associated read_data() command into read_data(simulate=TRUE), and put simulated data sim.rda in a data/ subdirectory of the main repo. To run all methods, just use bash run_all.sh in the main repository" ; - sc:featureList edam:operation_2939, - edam:operation_3096, - edam:operation_3891 ; - sc:name "multitable_review" ; - sc:url "https://github.com/krisrs1128/multitable_review" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -320772,7 +334143,7 @@ We present multiTFA, a multivariate thermodynamics-based metabolic flux analysis sc:url "https://github.com/biosustain/multitfa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, edam:topic_3308 ; @@ -320786,7 +334157,7 @@ We present multiTFA, a multivariate thermodynamics-based metabolic flux analysis sc:url "https://github.com/jzbio/MultiTrans" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -320804,7 +334175,7 @@ We present multiTFA, a multivariate thermodynamics-based metabolic flux analysis biotools:primaryContact "Julien Chiquet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3473, @@ -320822,7 +334193,7 @@ We present multiTFA, a multivariate thermodynamics-based metabolic flux analysis biotools:primaryContact "Léo Pio-Lopez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -320843,7 +334214,7 @@ We present multiTFA, a multivariate thermodynamics-based metabolic flux analysis sc:url "https://docs.scvi-tools.org/en/stable/user_guide/models/multivi.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3473 ; @@ -320861,7 +334232,7 @@ We present multiTFA, a multivariate thermodynamics-based metabolic flux analysis biotools:primaryContact "Samir Kanaan-Izquierdo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -320876,14 +334247,14 @@ We present multiTFA, a multivariate thermodynamics-based metabolic flux analysis a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Sequence coordinates" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -320901,7 +334272,7 @@ We present multiTFA, a multivariate thermodynamics-based metabolic flux analysis biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293, @@ -320917,7 +334288,7 @@ We present multiTFA, a multivariate thermodynamics-based metabolic flux analysis biotools:primaryContact "Dan Gusfield" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269 ; @@ -320935,7 +334306,7 @@ We present multiTFA, a multivariate thermodynamics-based metabolic flux analysis biotools:primaryContact "Katherine S. Pollard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0196, @@ -320958,7 +334329,7 @@ Deletions (novel and mobile), insertions (novel and mobile) and tandem duplicati sc:url "https://github.com/SAMtoBAM/MUMandCo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3574 ; @@ -320976,13 +334347,19 @@ Deletions (novel and mobile), insertions (novel and mobile) and tandem duplicati "Guillaume Marçais" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, edam:topic_3168 ; - sc:citation , - "pubmed:10325427" ; + sc:citation , + , + , + "pmcid:PMC117189", + "pmcid:PMC395750", + "pubmed:10325427", + "pubmed:12034836", + "pubmed:14759262" ; sc:description "MUMmer is a modular system for the rapid whole genome alignment of finished or draft sequence. Basically it is a ultra-fast alignment of large-scale DNA and protein sequences" ; sc:featureList edam:operation_0292, edam:operation_3198 ; @@ -320996,7 +334373,7 @@ Deletions (novel and mobile), insertions (novel and mobile) and tandem duplicati biotools:primaryContact "Help list" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3308 ; @@ -321009,7 +334386,7 @@ Deletions (novel and mobile), insertions (novel and mobile) and tandem duplicati biotools:primaryContact "Michael C Schatz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -321031,7 +334408,7 @@ MuMoT (Multiscale Modelling Tool) is a tool designed to allow sophisticated math sc:url "http://github.com/DiODeProject/MuMoT/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3169 ; @@ -321048,7 +334425,7 @@ MuMoT (Multiscale Modelling Tool) is a tool designed to allow sophisticated math biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -321067,7 +334444,7 @@ MuMoT (Multiscale Modelling Tool) is a tool designed to allow sophisticated math sc:url "https://neurogenomics.github.io/MungeSumstats" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3338, @@ -321087,7 +334464,7 @@ MuMoT (Multiscale Modelling Tool) is a tool designed to allow sophisticated math biotools:primaryContact "Pat Levitt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0632, @@ -321104,7 +334481,7 @@ MuMoT (Multiscale Modelling Tool) is a tool designed to allow sophisticated math sc:url "http://apps.diatomsoftware.com/muplex/html/MuPlex.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0166, @@ -321121,7 +334498,7 @@ MuMoT (Multiscale Modelling Tool) is a tool designed to allow sophisticated math sc:url "http://digbio.missouri.edu/mupred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_2533, @@ -321140,8 +334517,28 @@ MuMoT (Multiscale Modelling Tool) is a tool designed to allow sophisticated math "Paul Rigor", "Pierre Baldi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0780, + edam:topic_3168, + edam:topic_3474 ; + sc:citation ; + sc:description "A deep learning-based framework for estimating fine-scale germline mutation rates." ; + sc:featureList edam:operation_3227, + edam:operation_3435, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MuRaL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/CaiLiLab/MuRaL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -321165,7 +334562,7 @@ MuMoT (Multiscale Modelling Tool) is a tool designed to allow sophisticated math sc:url "http://github.com/hippo-yf/MUREN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -321179,7 +334576,7 @@ MuMoT (Multiscale Modelling Tool) is a tool designed to allow sophisticated math sc:url "http://kdbio.inesc-id.pt/~ndm/software/musa.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Library" ; @@ -321200,23 +334597,24 @@ MuMoT (Multiscale Modelling Tool) is a tool designed to allow sophisticated math a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1948" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1948" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1997" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Robert Edgar" ; sc:citation , + , , , "pmcid:PMC390337", @@ -321233,12 +334631,12 @@ MuMoT (Multiscale Modelling Tool) is a tool designed to allow sophisticated math , , ; - sc:softwareVersion "3.16.0" ; + sc:softwareVersion "5" ; sc:url "https://www.drive5.com/muscle/" ; biotools:primaryContact "Robert Edgar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -321256,19 +334654,18 @@ MuMoT (Multiscale Modelling Tool) is a tool designed to allow sophisticated math a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; - sc:author "Robert Edgar", - "Web Production" ; - sc:citation ; + sc:author "Job Dispatcher", + "Robert Edgar" ; + sc:citation , + ; sc:description "Sequence alignment using the Multiple Sequence Comparison by Log-Expectation (MUSCLE) method" ; sc:featureList edam:operation_0492 ; sc:name "MUSCLE (EBI)" ; @@ -321280,18 +334677,16 @@ MuMoT (Multiscale Modelling Tool) is a tool designed to allow sophisticated math ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/msa/muscle/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -321307,7 +334702,7 @@ MuMoT (Multiscale Modelling Tool) is a tool designed to allow sophisticated math sc:url "http://www.compbio.dundee.ac.uk/jabaws" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -321328,10 +334723,9 @@ MuscleAtlasExplorer(BETA)2.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -321345,7 +334739,7 @@ MuscleAtlasExplorer(BETA)2.""" ; sc:url "http://brendelgroup.org/bioinformatics2go/MuSeqBox.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0654, @@ -321363,7 +334757,7 @@ MuscleAtlasExplorer(BETA)2.""" ; sc:url "http://gobics.de/ingo/musi/musi.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3125, @@ -321382,7 +334776,7 @@ MuscleAtlasExplorer(BETA)2.""" ; "TaeHyung Simon Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -321400,7 +334794,7 @@ MuscleAtlasExplorer(BETA)2.""" ; biotools:primaryContact "Sergi Castellví-Bel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation "pubmed:20479877" ; @@ -321416,8 +334810,32 @@ MuscleAtlasExplorer(BETA)2.""" ; "Shin-ichi Morishita", "Yutaka Suzuki" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0769, + edam:topic_2640, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC8639789", + "pubmed:34625425" ; + sc:description "The Mutational Signature Comprehensive Analysis Toolkit (musicatk) for the Discovery, Prediction, and Exploration of Mutational Signatures." ; + sc:featureList edam:operation_0337, + edam:operation_3227, + edam:operation_3629 ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "musicatk" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://camplab.net/musicatk" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -321441,7 +334859,7 @@ The MusiteDeep web server is available at http://www.musite.net. This repository sc:url "https://www.musite.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654 ; @@ -321455,8 +334873,28 @@ The MusiteDeep web server is available at http://www.musite.net. This repository sc:softwareVersion "1.1" ; sc:url "http://musket.sourceforge.net/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0769, + edam:topic_3384, + edam:topic_3444, + edam:topic_3452 ; + sc:citation ; + sc:description "Database of standardized mouse morphology data for morphometric meta-analyses." ; + sc:featureList edam:operation_0337, + edam:operation_3196, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MusMorph" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "http://www.facebase.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -321471,7 +334909,7 @@ The MusiteDeep web server is available at http://www.musite.net. This repository sc:url "http://www.healthinformaticslab.org/supp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -321490,7 +334928,7 @@ Mustache (Multi-scale Detection of Chromatin Loops from Hi-C and Micro-C Maps us sc:url "https://github.com/ay-lab/mustache" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814 ; @@ -321504,7 +334942,7 @@ Mustache (Multi-scale Detection of Chromatin Loops from Hi-C and Micro-C Maps us biotools:primaryContact "Arun Konagurthu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -321525,7 +334963,7 @@ MuStARD - autoMated SmAll Rna Detection.""" ; sc:url "http://gitlab.com/RBP_Bioinformatics/mustard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0623, @@ -321542,7 +334980,7 @@ MuStARD - autoMated SmAll Rna Detection.""" ; biotools:primaryContact "Vytas K Švedas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3400 ; sc:citation , @@ -321555,7 +334993,7 @@ MUST is a tool for online enumeration of minimal unsatisfiable subsets (MUSes) o sc:url "https://github.com/jar-ben/mustool" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168, @@ -321574,7 +335012,7 @@ MUST is a tool for online enumeration of minimal unsatisfiable subsets (MUSes) o biotools:primaryContact "Ram Vinay Pandey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3173 ; @@ -321593,7 +335031,7 @@ MUST is a tool for online enumeration of minimal unsatisfiable subsets (MUSes) o biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -321615,7 +335053,7 @@ MUST is a tool for online enumeration of minimal unsatisfiable subsets (MUSes) o biotools:primaryContact "Vis JK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0085 ; @@ -321630,7 +335068,7 @@ MUST is a tool for online enumeration of minimal unsatisfiable subsets (MUSes) o sc:url "https://mutalyzer.nl/soap-api" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2533, edam:topic_3519, @@ -321647,7 +335085,7 @@ MUST is a tool for online enumeration of minimal unsatisfiable subsets (MUSes) o biotools:primaryContact "Matteo P. Ferla" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -321671,7 +335109,7 @@ A pharmacogenomics database for prioritizing actionable mutations for personaliz sc:url "https://mutanome.lerner.ccf.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0199, @@ -321691,7 +335129,7 @@ A bioinformatics pipeline for identification and characterization of mutations i sc:url "https://github.com/mae92/MutantHuntWGS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -321712,7 +335150,7 @@ muTarget is a cancer biomarker / target discovery tool with two major functions. sc:url "http://www.mutarget.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -321732,7 +335170,7 @@ MutaRNA (Mutational Analysis of RNAs) predicts and visualizes the mutation-induc sc:url "http://rna.informatik.uni-freiburg.de/MutaRNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2640 ; @@ -321745,7 +335183,7 @@ MutaRNA (Mutational Analysis of RNAs) predicts and visualizes the mutation-induc biotools:primaryContact "Shawn Yost" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -321764,7 +335202,7 @@ MutaRNA (Mutational Analysis of RNAs) predicts and visualizes the mutation-induc biotools:primaryContact "Haiyuan Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2269, @@ -321784,7 +335222,7 @@ The code is compatible with tensorflow-gpu=1.10.0 and python=2.7""" ; sc:url "https://github.com/ha01994/mutationTCN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0632, @@ -321805,7 +335243,7 @@ Mutation Maker, An Open Source Oligo Design Software For Mutagenesis and De Novo sc:url "https://github.com/Merck/Mutation_Maker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0199, @@ -321838,7 +335276,7 @@ Mutation Maker, An Open Source Oligo Design Software For Mutagenesis and De Novo "Jana Marie Schwarz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0736, @@ -321859,7 +335297,7 @@ Mutation Maker, An Open Source Oligo Design Software For Mutagenesis and De Novo biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -321882,10 +335320,10 @@ Mutation Maker, An Open Source Oligo Design Software For Mutagenesis and De Novo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence set" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -321908,7 +335346,7 @@ Mutation Maker, An Open Source Oligo Design Software For Mutagenesis and De Novo sc:url "https://www.mutationdistiller.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -321931,14 +335369,12 @@ MutationExplorer is currently most usable for breast cancer samples, since the r a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2294" ; - sc:name "Sequence variation ID" ; - sc:sameAs "http://edamontology.org/data_2294" ] ; + sc:additionalType "http://edamontology.org/data_2294" ; + sc:name "Sequence variation ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0622 ; @@ -321956,7 +335392,7 @@ MutationExplorer is currently most usable for breast cancer samples, since the r biotools:primaryContact "Alexandros Kanterakis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation ; @@ -321972,7 +335408,7 @@ MutationExplorer is currently most usable for breast cancer samples, since the r biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199 ; sc:description "Identifying potential mutations across target gene sequences." ; @@ -321988,7 +335424,7 @@ MutationExplorer is currently most usable for breast cancer samples, since the r biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_1775 ; @@ -322004,7 +335440,7 @@ MutationExplorer is currently most usable for breast cancer samples, since the r sc:url "http://www.mutationtaster.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -322027,8 +335463,30 @@ MutCombinator enables us to practically identify mutated peptides from tandem ma sc:name "MutCombinator" ; sc:url "https://prix.hanyang.ac.kr/download/mutcombinator.jsp" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0769, + edam:topic_0821, + edam:topic_2830 ; + sc:citation , + "pmcid:PMC8993498", + "pubmed:35421792" ; + sc:description "A pipeline for evaluating the effect of mutations in spike protein on infectivity and antigenicity of SARS-CoV-2." ; + sc:featureList edam:operation_0252, + edam:operation_0478, + edam:operation_0480 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MutCov" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://jianglab.org.cn/MutCov" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0114, @@ -322052,14 +335510,14 @@ MutCombinator enables us to practically identify mutated peptides from tandem ma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1921" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -322078,7 +335536,7 @@ MutCombinator enables us to practically identify mutated peptides from tandem ma biotools:primaryContact "MuTect Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -322104,7 +335562,7 @@ License: MIT License, see License.""" ; sc:url "https://github.com/asoltis/MutEnricher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3307, edam:topic_3344 ; @@ -322123,7 +335581,7 @@ License: MIT License, see License.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0749, @@ -322143,7 +335601,7 @@ License: MIT License, see License.""" ; biotools:primaryContact "Zhongming Zha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634 ; sc:citation ; @@ -322158,7 +335616,7 @@ License: MIT License, see License.""" ; sc:url "http://mutpred.mutdb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0602, @@ -322180,7 +335638,7 @@ Transcriptomic data can uncover complex biological processes in part through the sc:url "https://github.com/eporetsky/MutRank" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2533, @@ -322198,8 +335656,31 @@ Transcriptomic data can uncover complex biological processes in part through the sc:url "https://github.com/bbglab/muts-needle-plot" ; biotools:primaryContact "Michael P Schroeder" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0632, + edam:topic_2640, + edam:topic_3360, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC8559159", + "pubmed:34734182" ; + sc:description "An analytical toolkit for probing the mutational landscape in cancer genomics." ; + sc:featureList edam:operation_0337, + edam:operation_3227, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MutScape" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/anitalu724/MutScape" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0632, @@ -322214,7 +335695,7 @@ Transcriptomic data can uncover complex biological processes in part through the sc:url "http://bioinfo.bsd.uchicago.edu/MutScreener.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -322231,7 +335712,7 @@ R package mutSigMapper aims to resolve a critical shortcoming of existing softwa sc:url "https://github.com/juliancandia/mutSigMapper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -322251,7 +335732,7 @@ Cancer cells accumulate DNA mutations as result of DNA damage and DNA repair pro sc:url "https://CRAN.R-project.org/package=mutSignatures" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -322272,7 +335753,7 @@ MutSpace is a method aiming to address the computational challenge to consider l sc:url "https://github.com/ma-compbio/MutSpace" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -322287,7 +335768,7 @@ MutSpace is a method aiming to address the computational challenge to consider l biotools:primaryContact "Cuncong Zhong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -322304,7 +335785,7 @@ MutSpace is a method aiming to address the computational challenge to consider l biotools:primaryContact "Vidya Niranjan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2533, edam:topic_2885, @@ -322331,7 +335812,7 @@ Ancestral k-mer mutation types for SNP data.""" ; sc:url "https://harrispopgen.github.io/mutyper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2269, @@ -322351,7 +335832,7 @@ muvis is a visualization and analysis toolkit for multivariate datasets. To use sc:url "https://github.com/bAIo-lab/muvis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -322373,18 +335854,18 @@ muvis is a visualization and analysis toolkit for multivariate datasets. To use a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -322402,7 +335883,7 @@ muvis is a visualization and analysis toolkit for multivariate datasets. To use sc:url "http://www.ms-utils.org/muxQuant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation , @@ -322417,7 +335898,7 @@ muvis is a visualization and analysis toolkit for multivariate datasets. To use sc:url "https://github.com/heejungshim/mvBIMBAM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation , @@ -322438,7 +335919,7 @@ muvis is a visualization and analysis toolkit for multivariate datasets. To use "Roberto Tagliaferri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -322456,7 +335937,7 @@ muvis is a visualization and analysis toolkit for multivariate datasets. To use biotools:primaryContact "Elizabeth Whalen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3070 ; sc:author "Angela Serra" ; @@ -322474,7 +335955,7 @@ muvis is a visualization and analysis toolkit for multivariate datasets. To use "Roberto Tagliaferri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -322493,7 +335974,7 @@ muvis is a visualization and analysis toolkit for multivariate datasets. To use sc:url "https://github.com/fuhaitao95/MVGCN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0085, @@ -322511,8 +335992,31 @@ muvis is a visualization and analysis toolkit for multivariate datasets. To use sc:url "http://bioconductor.org/packages/release/bioc/html/mvGST.html" ; biotools:primaryContact "John R. Stevens" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3174, + edam:topic_3474, + edam:topic_3520, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9022840", + "pubmed:35404958" ; + sc:description "Microbiome-based disease prediction with multimodal variational information bottlenecks." ; + sc:featureList edam:operation_3359, + edam:operation_3891, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "MVIB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/nec-research/microbiome-mvib" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Normalization tests for shoulder electromyographic signals" ; sc:featureList edam:operation_3435 ; @@ -322525,7 +336029,7 @@ muvis is a visualization and analysis toolkit for multivariate datasets. To use biotools:primaryContact "Fabien" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -322541,24 +336045,24 @@ muvis is a visualization and analysis toolkit for multivariate datasets. To use a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1948" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_1948" ; + sc:name "Sequence search results" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3071 ; - sc:author "Nigel Brown", - "Web Production" ; - sc:citation ; + sc:author "Job Dispatcher", + "Nigel Brown" ; + sc:citation , + ; sc:description "Reformat the results of a sequence database search (BLAST, FASTA) or a multiple alignment adding optional HTML markup to control colouring and web page layout." ; sc:featureList edam:operation_0335 ; sc:name "MView (EBI)" ; @@ -322570,10 +336074,33 @@ muvis is a visualization and analysis toolkit for multivariate datasets. To use ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/msa/mview/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_3169, + edam:topic_3170, + edam:topic_3320, + edam:topic_3794 ; + sc:citation , + "pmcid:PMC8689837", + "pubmed:34718748" ; + sc:description "MVIP provides a large number of available multi-omics data under viral infection in various species." ; + sc:featureList edam:operation_2422, + edam:operation_3208, + edam:operation_3223 ; + sc:isAccessibleForFree true ; + sc:name "MVIP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://mvip.whu.edu.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2275 ; @@ -322588,7 +336115,7 @@ muvis is a visualization and analysis toolkit for multivariate datasets. To use sc:url "http://zhanglab.ccmb.med.umich.edu/MVP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -322606,7 +336133,7 @@ The Galaxy MVP visualization plugin enables viewing of results produced from wor sc:url "https://github.com/galaxyproteomics/mvpapplication-git.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3384, @@ -322627,7 +336154,7 @@ This is the companion repository of the MVPA-Light paper.""" ; sc:url "http://github.com/treder/mvpa-light" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3361, @@ -322649,8 +336176,27 @@ This is the companion repository of the MVPA-Light paper.""" ; ; sc:url "https://github.com/dlopezg/mvpalab" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_3168, + edam:topic_3474 ; + sc:citation , + "pubmed:35940520" ; + sc:description "A highly efficient and sensitive pathogenicity prediction tool for missense variants." ; + sc:featureList edam:operation_3196, + edam:operation_3225, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:name "mvPPT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.mvppt.club" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, @@ -322668,7 +336214,7 @@ This is the companion repository of the MVPA-Light paper.""" ; "Fenxiang Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3315, @@ -322687,7 +336233,7 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi sc:url "http://sourceforge.net/projects/mvse/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:citation , "pmcid:PMC8351779", @@ -322705,7 +336251,7 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi sc:url "https://sarkarlab.github.io/MVsim/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0153, edam:topic_2258, @@ -322726,14 +336272,12 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1505" ; - sc:name "Amino acid index (molecular weight)" ; - sc:sameAs "http://edamontology.org/data_1505" ] ; + sc:additionalType "http://edamontology.org/data_1505" ; + sc:name "Amino acid index (molecular weight)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1505" ; - sc:name "Amino acid index (molecular weight)" ; - sc:sameAs "http://edamontology.org/data_1505" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1505" ; + sc:name "Amino acid index (molecular weight)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -322764,18 +336308,15 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_1505" ; + sc:name "Amino acid index (molecular weight)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1505" ; - sc:name "Amino acid index (molecular weight)" ; - sc:sameAs "http://edamontology.org/data_1505" ] ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:name "Peptide mass fingerprint" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1505" ; - sc:name "Amino acid index (molecular weight)" ; - sc:sameAs "http://edamontology.org/data_1505" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1505" ; + sc:name "Amino acid index (molecular weight)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -322805,7 +336346,7 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi sc:url "http://emboss.open-bio.org/rel/rel6/apps/mwfilter.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -322825,7 +336366,7 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi sc:url "https://github.com/b2slab/mWISE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, edam:topic_3512 ; @@ -322840,7 +336381,7 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi sc:url "https://github.com/BaiLab/MWMM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3277 ; sc:citation ; @@ -322854,7 +336395,7 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi sc:url "http://fafner.meb.ki.se/personal/yudpaw/?page_id=13" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -322878,7 +336419,7 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3474 ; @@ -322895,14 +336436,13 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:author "Giorgos Athineou", @@ -322926,7 +336466,7 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi biotools:primaryContact "Michail Tsagris" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0602, @@ -322943,7 +336483,7 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi biotools:primaryContact "Qiong Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0605, @@ -322968,18 +336508,16 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3511 ; @@ -322994,8 +336532,32 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi sc:softwareVersion "1.1" ; sc:url "https://github.com/beukueb/myflq" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0196, + edam:topic_0623, + edam:topic_0780, + edam:topic_3293 ; + sc:citation , + "pmcid:PMC8933966", + "pubmed:35305581" ; + sc:description "This tool performs an automatic identification, annotation, and analysis of the MYB gene family in plants. It can be applied to new transcriptome of genome assemblies." ; + sc:featureList edam:operation_0525, + edam:operation_3192, + edam:operation_3258, + edam:operation_3631 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "MYB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bpucker/MYB_annotator" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -323015,8 +336577,30 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi sc:url "http://bits.iis.sinica.edu.tw/~mybs/" ; biotools:primaryContact "MYBS team" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3768" ; + sc:name "Clustered expression profiles" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3837 ; + sc:description "MyCC is built and delivered as a tailored solution for metagenomics sequencesclassfication" ; + sc:featureList edam:operation_2995 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "mycc" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://sourceforge.net/projects/sb2nhri/files/MyCC/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3297, edam:topic_3382, @@ -323031,7 +336615,7 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi sc:url "https://github.com/modsim/mycelyso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0736, @@ -323051,7 +336635,7 @@ Understanding how climate dictates the timing and potential of mosquito-borne vi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3299, @@ -323070,7 +336654,7 @@ Douglas E. V. Pires & David B. Ascher.""" ; sc:url "http://biosig.unimelb.edu.au/myco_csm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0820, @@ -323086,8 +336670,43 @@ Douglas E. V. Pires & David B. Ascher.""" ; sc:url "http://lin.uestc.edu.cn/server/MycoMemSVM" ; biotools:primaryContact "Hao Lin" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "MycoPrint is a web interface for exploration of the interactome of Mycobacterium tuberculosis H37Rv (Mtb) predicted by \"Domain Interaction Mapping\" (DIM) method." ; + sc:featureList edam:operation_2945 ; + sc:name "mycoprint" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/mycoprint/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2885, + edam:topic_3305, + edam:topic_3316, + edam:topic_3673 ; + sc:citation , + "pubmed:35674957" ; + sc:description "A Portable Workflow for Performing Whole-Genome Sequencing Analysis of Candida auris." ; + sc:featureList edam:operation_0484, + edam:operation_3192, + edam:operation_3196, + edam:operation_3211 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "MycoSNP" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:url "https://github.com/CDCgov/mycosnp" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2229, @@ -323104,7 +336723,7 @@ Douglas E. V. Pires & David B. Ascher.""" ; biotools:primaryContact "Hao Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0637, @@ -323125,7 +336744,7 @@ The ‘MyCoV’ package will currently only work in a linux environment. Essenti sc:url "https://github.com/dw974/MyCoV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0625, @@ -323146,7 +336765,7 @@ The ‘MyCoV’ package will currently only work in a linux environment. Essenti sc:url "https://github.com/HarrisonAllen/MyelTracer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0091, @@ -323167,18 +336786,18 @@ The ‘MyCoV’ package will currently only work in a linux environment. Essenti a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1027" ; - sc:name "Gene ID (NCBI)" ; - sc:sameAs "http://edamontology.org/data_1027" ], + sc:additionalType "http://edamontology.org/data_1027" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Gene ID (NCBI)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1033" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Ensembl gene ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3321 ; @@ -323198,10 +336817,9 @@ The ‘MyCoV’ package will currently only work in a linux environment. Essenti a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091 ; sc:citation , @@ -323220,7 +336838,7 @@ The ‘MyCoV’ package will currently only work in a linux environment. Essenti biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0736 ; @@ -323238,7 +336856,7 @@ The ‘MyCoV’ package will currently only work in a linux environment. Essenti biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3473 ; @@ -323257,18 +336875,15 @@ The ‘MyCoV’ package will currently only work in a linux environment. Essenti a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2099" ; - sc:name "Name" ; - sc:sameAs "http://edamontology.org/data_2099" ], + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2099" ; + sc:name "Name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -323291,7 +336906,7 @@ The ‘MyCoV’ package will currently only work in a linux environment. Essenti sc:url "https://myodata.bio.unipd.it" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -323309,7 +336924,7 @@ This repository contains the companion code for recreating the single nucleus an sc:url "http://bimsbstatic.mdc-berlin.de/akalin/MyoExplorer/mm10.Seurat.RDS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -323331,7 +336946,7 @@ Co-expression analyses will help muscle researchers to delineate the tissue-, ce sc:url "https://www.sys-myo.com/myominer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -323353,7 +336968,7 @@ Defence Institute of Physiology and Allied Sciences,.""" ; sc:url "http://www.myomirdb.in/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3067, edam:topic_3382, @@ -323369,8 +336984,30 @@ automated muscle histology analysis using machine learning algorithm utilizing F sc:name "Myosoft" ; sc:url "https://github.com/Hyojung-Choo/Myosoft/tree/Myosoft-hub" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3340, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9185954", + "pubmed:35689270" ; + sc:description "The Myotube Analyzer is an open source app made specifically for the analysis of microscopic images taken of muscle stem cell cultures." ; + sc:featureList edam:operation_3096, + edam:operation_3443, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Myotube Analyzer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/SimonNoe/myotube-analyzer-app" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3361, @@ -323386,8 +337023,39 @@ automated muscle histology analysis using machine learning algorithm utilizing F sc:url "http://www.myphylodb.org/" ; biotools:primaryContact "Daniel Manter" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Gene expression matrix" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:name "Score" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:name "Matrix" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0804, + edam:topic_3308, + edam:topic_3379 ; + sc:description "MyPROSLE was developed with the aim of bringing molecular information from patients to clinical practice. For this, we have created a new methodology to summarize the transcriptome of individual patients in a series of biological functions or gene-modules, which were later used to predict up to a total of 111 different clinical outcomes, including clinical manifestations, laboratory measurements, cytokine levels, autoantibodies, cell percentages, nearby disease flares and response to drugs." ; + sc:featureList edam:operation_2437, + edam:operation_2495, + edam:operation_3928, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:name "MyPROSLE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://myprosle.genyo.es/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -323412,7 +337080,7 @@ automated muscle histology analysis using machine learning algorithm utilizing F biotools:primaryContact "Esti Yeger-Lotem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2269, @@ -323429,7 +337097,7 @@ automated muscle histology analysis using machine learning algorithm utilizing F biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:description """Software to align short reads produced by a short read genome sequencer to a reference genome. It performs brute force alignment using a variant on the "bitap" algorithm that aligns several thousand reads to a reference in parallel. It uses bit-parallelism, multiple processors, and Cell SPUs if available. @@ -323445,18 +337113,18 @@ It will find alignments with any number of errors up to a user specified cutoff. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -323474,7 +337142,7 @@ It will find alignments with any number of errors up to a user specified cutoff. sc:url "https://medschool.vanderbilt.edu/msrc-bioinformatics/myrimatch-source" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation "pubmed:20701754" ; @@ -323486,7 +337154,7 @@ It will find alignments with any number of errors up to a user specified cutoff. biotools:primaryContact "Ben Langmead" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0749, @@ -323504,7 +337172,7 @@ It will find alignments with any number of errors up to a user specified cutoff. sc:url "https://omics.sice.indiana.edu/myRT/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, @@ -323522,7 +337190,7 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" sc:url "https://symbiosis.iis.sinica.edu.tw/mySORT/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -323537,7 +337205,7 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" biotools:primaryContact "Michael S. Rosenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0797, @@ -323554,22 +337222,22 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0954" ; - sc:name "Database cross-mapping" ; - sc:sameAs "http://edamontology.org/data_0954" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_0954" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Database cross-mapping" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2872" ; - sc:name "ID list" ; - sc:sameAs "http://edamontology.org/data_2872" ], + sc:additionalType "http://edamontology.org/data_0954" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Database cross-mapping" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0954" ; - sc:name "Database cross-mapping" ; - sc:sameAs "http://edamontology.org/data_0954" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2872" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "ID list" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091, @@ -323590,7 +337258,7 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" biotools:primaryContact "Chunlei Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2533, @@ -323609,14 +337277,14 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3834" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -323631,14 +337299,14 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -323650,14 +337318,14 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3710" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -323670,14 +337338,14 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -323689,7 +337357,7 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" sc:url "http://tools.proteomecenter.org/wiki/index.php?title=Software:MzXML2Search" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3172 ; sc:citation ; @@ -323707,7 +337375,7 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" biotools:primaryContact "Christoph M. Becker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -323724,12 +337392,34 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" sc:url "http://bioconductor.org/packages/release/bioc/html/mzID.html" ; biotools:primaryContact "Thomas Lin Pedersen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_2269, + edam:topic_3174, + edam:topic_3697, + edam:topic_3941 ; + sc:citation , + "pubmed:34718406" ; + sc:description "Variational approximation for multilevel zero-inflated negative-binomial models for association analysis in microbiome surveys." ; + sc:featureList edam:operation_2238, + edam:operation_3454, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "MZINBVA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/liudoubletian/MZINBVA" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -323747,10 +337437,10 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3370, @@ -323768,7 +337458,7 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" sc:url "https://mzkit.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3365, @@ -323786,30 +337476,30 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3681" ; + sc:name "Peptide mass fingerprint" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -323839,7 +337529,7 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" sc:url "http://mzmine.sourceforge.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -323853,7 +337543,7 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" sc:url "http://www.psidev.info/mzquantml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -323878,7 +337568,7 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" "Steffen Neumann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3172, @@ -323897,18 +337587,18 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Mass spectrum" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3247" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Mass spectrum" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -323925,7 +337615,7 @@ Copyright © 2021 Institute of Information Science, Academia Sinica, TAIWAN.""" sc:url "https://github.com/524D/mzrecal/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3518, @@ -323944,7 +337634,7 @@ The goal of mzrtsim is to make batch effects simulation for LC/GC-MS based peaks sc:url "https://github.com/yufree/mzrtsim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -323964,14 +337654,14 @@ The goal of mzrtsim is to make batch effects simulation for LC/GC-MS based peaks a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3710" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3520 ; sc:citation ; @@ -323984,18 +337674,18 @@ The goal of mzrtsim is to make batch effects simulation for LC/GC-MS based peaks a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0622 ; @@ -324014,16 +337704,31 @@ The goal of mzrtsim is to make batch effects simulation for LC/GC-MS based peaks sc:url "https://bitbucket.org/sib-pig/mzvar-public/src/master/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0092, + edam:topic_3520 ; + sc:description "MZViewer is a lightweight viewer for mzData mass spec files. It is not designed to be a full analysis application, but rather to provide a quick view of mzData files." ; + sc:featureList edam:operation_3694 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "mzviewer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.bioinformatics.babraham.ac.uk/projects/mzviewer/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3382, @@ -324039,14 +337744,14 @@ The goal of mzrtsim is to make batch effects simulation for LC/GC-MS based peaks a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3520 ; @@ -324061,7 +337766,7 @@ The goal of mzrtsim is to make batch effects simulation for LC/GC-MS based peaks sc:url "http://www.ms-utils.org/mzXMLplot/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3382, @@ -324076,7 +337781,7 @@ This implementation supports cifar10/cifar100/imagenet.""" ; sc:url "http://github.com/papcjy/n-BQ-NN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3382 ; @@ -324092,7 +337797,7 @@ This implementation supports cifar10/cifar100/imagenet.""" ; biotools:primaryContact "Mohammed Sadeq Al-Rawi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -324114,27 +337819,8 @@ This implementation supports cifar10/cifar100/imagenet.""" ; sc:softwareHelp ; sc:url "http://hivtools.publichealth.uga.edu/N-Glyco/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0611, - edam:topic_2269 ; - sc:citation , - "pmcid:PMC6777070", - "pubmed:31621695" ; - sc:description """Using n-Level Structural Equation Models for Causal Modeling in Fully Nested, Partially Nested, and Cross-Classified Randomized Controlled Trials. - -Complex data structures are ubiquitous in psychological research, especially in educational settings. In the context of randomized controlled trials, students are nested in classrooms but may be cross-classified by other units, such as small groups. Furthermore, in many cases only some students may be nested within a unit while other students may not. Such instances of partial nesting requires a more flexible framework for estimating treatment effects so that the model coefficients are correctly estimated. - -||| HOMEPAGE BROKEN!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'SEM' (bio.tools/sem), 'xxm', 'n-level', 'cross-classified'""" ; - sc:featureList edam:operation_3432, - edam:operation_3435, - edam:operation_3659 ; - sc:name "n-level SEM" ; - sc:url "https://qmi-fcrr.shinyapps.io/nSEM" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, @@ -324152,14 +337838,14 @@ Complex data structures are ubiquitous in psychological research, especially in a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2545" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3914" ; - sc:name "Quality control report" ; - sc:sameAs "http://edamontology.org/data_3914" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3914" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Quality control report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "A script to calculate N50 from one or multiple FASTA/FASTQ files available via BioConda" ; sc:featureList edam:operation_2238 ; sc:name "n50 calculator" ; @@ -324168,10 +337854,9 @@ Complex data structures are ubiquitous in psychological research, especially in a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:name "Experimental measurement" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -324197,7 +337882,7 @@ Complex data structures are ubiquitous in psychological research, especially in sc:url "http://nabe.denglab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2229, @@ -324216,7 +337901,7 @@ Nabo is a flexible Python package that allows projections of cells from one popu sc:url "http://github.com/parashardhapola/nabo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3068, @@ -324236,7 +337921,7 @@ NAChRDB is particularly useful for identifying gaps in knowledge and for guiding sc:url "https://crocodile.ncbr.muni.cz/Apps/NAChRDB/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -324249,10 +337934,10 @@ NAChRDB is particularly useful for identifying gaps in knowledge and for guiding "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/nadbinder/" . + sc:url "http://webs.iiitd.edu.in/raghava/nadbinder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_3168 ; @@ -324271,16 +337956,36 @@ NAChRDB is particularly useful for identifying gaps in knowledge and for guiding biotools:primaryContact "Jianhong Ou", "Lihua Julie Zhu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0659, + edam:topic_3315 ; + sc:citation , + "pubmed:35976846" ; + sc:description "Evaluating gene regulatory network activity from dynamic expression data by regularized constraint programming." ; + sc:featureList edam:operation_1781, + edam:operation_2437, + edam:operation_2476 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "NAE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/zpliulab/NAE" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2086" ; - sc:name "Nucleic acid structure data" ; - sc:sameAs "http://edamontology.org/data_2086" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2086" ; + sc:name "Nucleic acid structure data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0097 ; sc:author ; @@ -324302,7 +338007,7 @@ NAChRDB is particularly useful for identifying gaps in knowledge and for guiding biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -324327,7 +338032,7 @@ NAguideR is a web-based tool, which integrates 23 common missing value imputatio sc:url "http://www.omicsolution.org/wukong/NAguideR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -324343,7 +338048,7 @@ NAguideR is a web-based tool, which integrates 23 common missing value imputatio biotools:primaryContact "Daniel G. Hurley" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3056, @@ -324360,7 +338065,7 @@ NAguideR is a web-based tool, which integrates 23 common missing value imputatio biotools:primaryContact "Alencar Xavier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3382, @@ -324378,7 +338083,7 @@ NAguideR is a web-based tool, which integrates 23 common missing value imputatio sc:url "https://github.com/AFM-Analysis/nanite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation , @@ -324395,7 +338100,7 @@ NAguideR is a web-based tool, which integrates 23 common missing value imputatio biotools:primaryContact "Andrea Telatin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3047, @@ -324414,27 +338119,120 @@ Bespoke script collection for nanopore sequencing-based Isoform Dynamics (nano-I sc:name "nano-ID" ; sc:url "https://github.com/birdumbrella/nano-ID" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0749, + edam:topic_3168, + edam:topic_3174, + edam:topic_3519 ; + sc:citation , + "pmcid:PMC9022462", + "pubmed:35464239" ; + sc:description "A framework for converting nanopore sequencing data to NGS-liked sequencing data for hotspot mutation detection." ; + sc:featureList edam:operation_0310, + edam:operation_3195, + edam:operation_3227, + edam:operation_3228 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Nano2NGS-Muta" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/langjidong/Nano2NGS" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0654, + edam:topic_3068, + edam:topic_3168, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8728195", + "pubmed:34747480" ; + sc:description "A repository for DNA and RNA nanostructures." ; + sc:featureList edam:operation_0244, + edam:operation_2421, + edam:operation_3216, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Nanobase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://nanobase.org/" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3671" ; + sc:name "Text" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_2830, + edam:topic_3168, + edam:topic_3374, + edam:topic_3948 ; + sc:citation , + "pmcid:PMC8728276", + "pubmed:34747487" ; + sc:description "INDI-integrated nanobody database for immunoinformatics." ; + sc:featureList edam:operation_2422, + edam:operation_3216, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:name "nanobodies" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://naturalantibody.com/nanobodies" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence set (nucleic acid)" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Taxonomy" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1246" ; + sc:name "Sequence cluster (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; - sc:applicationSubCategory edam:topic_0659, + sc:applicationSubCategory edam:topic_0637, edam:topic_0769, - edam:topic_3168 ; + edam:topic_3168, + edam:topic_3174 ; + sc:author ; sc:citation ; - sc:description """A species-level analysis of 16S rRNA nanopore sequencing data. - -De novo clustering and consensus building for ONT 16S sequencing data. - -iii. Clone the NanoCLUST repository and test the pipeline on a minimal dataset with a single command and docker/conda profiles.""" ; + sc:contributor , + "Laura Ciuffreda" ; + sc:description "A species-level analysis of 16S rRNA nanopore sequencing data based on de novo clustering and consensus building." ; sc:featureList edam:operation_3432, edam:operation_3460, edam:operation_3644 ; + sc:isAccessibleForFree true ; sc:license "MIT" ; sc:name "NanoCLUST" ; - sc:url "https://github.com/genomicsITER/NanoCLUST" . + sc:softwareHelp ; + sc:url "https://github.com/genomicsITER/NanoCLUST" ; + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3174, @@ -324456,7 +338254,7 @@ iii. Clone the NanoCLUST repository and test the pipeline on a minimal dataset w biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0601, @@ -324475,14 +338273,39 @@ This software requires In vitro unmodified RNA raw read and Native RNA raw read sc:name "nanoDoc" ; sc:url "https://github.com/uedaLabR/nanoDoc" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0196, + edam:topic_0621, + edam:topic_3168, + edam:topic_3174 ; + sc:citation , + "pmcid:PMC8973472", + "pubmed:35368340" ; + sc:description "An integrated server for processing, analysis and assembly of raw sequencing data of microbial genomes, from Oxford Nanopore technology." ; + sc:featureList edam:operation_0310, + edam:operation_3185, + edam:operation_3192, + edam:operation_3196, + edam:operation_3933 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "NanoForms" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://nanoforms.tech" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "A collection of best practice and popular ONT-oriented tools are integrated (and are expanding) in this custom Galaxy instance." ; sc:name "NanoGalaxy" ; sc:url "https://nanopore.usegalaxy.eu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0804, edam:topic_3382, @@ -324506,14 +338329,14 @@ Super-Resolution Radial Fluctuations (SRRF) - ImageJ Plugin.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3385, edam:topic_3572 ; @@ -324529,7 +338352,7 @@ Super-Resolution Radial Fluctuations (SRRF) - ImageJ Plugin.""" ; biotools:primaryContact "Sian Culley" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, @@ -324543,8 +338366,30 @@ Super-Resolution Radial Fluctuations (SRRF) - ImageJ Plugin.""" ; sc:url "https://github.com/kkrizanovic/NanoMark" ; biotools:primaryContact "Ivan Sović" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0176, + edam:topic_2275, + edam:topic_3368, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8752518", + "pubmed:34871001" ; + sc:description "CHARMM-GUI Nanomaterial Modeler for Modeling and Simulation of Nanomaterial Systems." ; + sc:featureList edam:operation_0337, + edam:operation_0480, + edam:operation_2476 ; + sc:isAccessibleForFree true ; + sc:name "Nanomaterial Modeler" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.charmm-gui.org/demo/nanomaterial" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -324566,8 +338411,25 @@ NanoMethViz is a toolkit for visualising methylation data from Oxford Nanopore s sc:name "NanoMethViz" ; sc:url "https://bioconductor.org/packages/NanoMethViz" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_2258, + edam:topic_2840, + edam:topic_3500 ; + sc:citation , + "pubmed:35713578" ; + sc:description "A web-based tool for predicting cytotoxicity of TiO2-based multicomponent nanomaterials toward Chinese hamster ovary (CHO-K1) cells." ; + sc:isAccessibleForFree true ; + sc:name "NanoMixHamster" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://nanomixhamster.cloud.nanosolveit.eu/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -324585,8 +338447,31 @@ Accurate multilocus sequence typing using Oxford Nanopore MinION with dual-barco sc:name "nanoMLST" ; sc:url "https://github.com/jade-nhri/nanoMLST" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0736, + edam:topic_2830, + edam:topic_3168, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9411858", + "pubmed:36032123" ; + sc:description "Rapid and accurate end-to-end nanobody modeling by deep learning." ; + sc:featureList edam:operation_0416, + edam:operation_0479, + edam:operation_0480, + edam:operation_0481 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "NanoNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/dina-lab3D/NanoNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -324605,7 +338490,7 @@ Accurate multilocus sequence typing using Oxford Nanopore MinION with dual-barco biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -324624,7 +338509,7 @@ Accurate multilocus sequence typing using Oxford Nanopore MinION with dual-barco biotools:primaryContact "Wouter De Coster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -324649,7 +338534,7 @@ Accurate multilocus sequence typing using Oxford Nanopore MinION with dual-barco sc:url "https://github.com/popitsch/nanopanel2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0769, edam:topic_3384, @@ -324666,7 +338551,7 @@ A persistent challenge in materials science is the characterization of a large e sc:url "https://github.com/hugadams/imgproc_supplemental" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3374, @@ -324686,7 +338571,7 @@ A persistent challenge in materials science is the characterization of a large e biotools:primaryContact "Baojian Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229 ; sc:citation , @@ -324700,10 +338585,10 @@ The Nano Particle Administration Sedimentation Simulator (NanoPASS) is a package a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1207" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:author ; @@ -324724,18 +338609,17 @@ The Nano Particle Administration Sedimentation Simulator (NanoPASS) is a package a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0867" ; + sc:name "Sequence alignment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -324756,7 +338640,7 @@ The Nano Particle Administration Sedimentation Simulator (NanoPASS) is a package biotools:primaryContact "Jared Simpson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0632, @@ -324775,19 +338659,8 @@ In many of the scripts, you need to set the path for the corresponding data dire sc:name "nanopore" ; sc:url "https://github.com/shubhamchandak94/nanopore_dna_storage" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0611, - edam:topic_2828 ; - sc:citation , - "pmcid:PMC6737298", - "pubmed:31516954" ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'nanoporous GaN photoelectrode', 'nanoporous GaN photoelectrode patterned', 'GaN photoelectrode patterned sapphire', 'GaN photoelectrode' | Experimental dataset of nanoporous GaN photoelectrode supported on patterned sapphire substrates for photoelectrochemical water splitting | GaN is one of the most promising materials for high PEC efficiency to produce clean, renewable hydrogen in an ecofriendly manner (Ebaid et al., 2015; Kamimura et al., 2017; Yang et al., 2018; Ohkawa et al., 2013). Trough assays of nanoporous gallium nitride (GaN) photoelectrode, we recently demonstrated an improved PEC efficiency and photocurrent density of nanoporous GaN photoelectrode by 470% times with respect to planar counterpart (Li et al., 2019)" ; - sc:featureList edam:operation_3359 ; - sc:name "nanoporous GaN photoelectrode patterned sapphire" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31516954" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3474, @@ -324802,8 +338675,40 @@ Nanopore sequencing is regarded as one of the most promising third-generation se sc:name "NanoReviser" ; sc:url "https://github.com/pkubioinformatics/NanoReviser" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:name "Sequence set (nucleic acid)" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3174 ; + sc:author , + "Laura Ciuffreda" ; + sc:contributor , + "Laura Ciuffreda" ; + sc:description """NanoRTax is a taxonomic and diversity analysis pipeline built originally for Nanopore 16S rRNA data with real-time analysis support in mind. It combines state-of-the-art classifiers such as Kraken2, Centrifuge and BLAST with downstream analysis steps to provide a framework for the analysis of in-progress sequencing runs. NanoRTax retrieves the final output files in the same structure/format for every classifier which enables more comprehensive tool/database comparison and better benchmarking capabilities. Additionally, NanoRTax includes a web application (./viz_webapp/) for visualizing complete or partial pipeline outputs. + +The NanoRTax pipeline is built using Nextflow, a workflow tool to run tasks across multiple compute infrastructures in a very portable manner. It comes with conda environments and docker containers making installation trivial and results highly reproducible.""" ; + sc:featureList edam:operation_2478, + edam:operation_3460, + edam:operation_3731, + edam:operation_3744 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "NanoRtax" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:url "https://github.com/genomicsITER/NanoRtax" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0611, edam:topic_2229, @@ -324825,7 +338730,7 @@ Nanopore sequencing is regarded as one of the most promising third-generation se sc:url "https://store.steampowered.com/app/1654050/Nanoscape" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3168, @@ -324842,7 +338747,7 @@ Nanopore sequencing is regarded as one of the most promising third-generation se biotools:primaryContact "Inanç Birol" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_3174, @@ -324864,8 +338769,28 @@ NanoSPC is a scalable, portable and cloud compatible pipeline for analyzing Nano sc:name "NanoSPC" ; sc:url "https://nanospc.mmmoxford.uk" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3320, + edam:topic_3512 ; + sc:citation ; + sc:description "Accurate identification of splice junctions using Oxford Nanopore sequencing." ; + sc:featureList edam:operation_0232, + edam:operation_0433, + edam:operation_3185 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "NanoSplicer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/shimlab/NanoSplicer" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0780, @@ -324882,7 +338807,7 @@ NanoSPC is a scalable, portable and cloud compatible pipeline for analyzing Nano sc:url "https://github.com/qm2/NanoSpring" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269 ; @@ -324900,7 +338825,7 @@ NanoSPC is a scalable, portable and cloud compatible pipeline for analyzing Nano biotools:primaryContact "hong wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0099, @@ -324916,7 +338841,7 @@ NanoSPC is a scalable, portable and cloud compatible pipeline for analyzing Nano biotools:primaryContact "Paul Boutros" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3175, @@ -324934,7 +338859,7 @@ NanoSPC is a scalable, portable and cloud compatible pipeline for analyzing Nano biotools:primaryContact "Paul C Boutros" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -324955,7 +338880,7 @@ NanoSPC is a scalable, portable and cloud compatible pipeline for analyzing Nano biotools:primaryContact "Robert Ziman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -324979,7 +338904,7 @@ Short-read sequencing (SRS) is the predominant technique of DNA sequencing used sc:url "https://github.com/VilainLab/nanotatoRexternalDB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0099 ; @@ -324997,7 +338922,7 @@ Short-read sequencing (SRS) is the predominant technique of DNA sequencing used biotools:primaryContact "Bruce A. Shapiro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, @@ -325013,8 +338938,35 @@ Computational hazard assessment of MeOx nanoparticle toxicity using machine lear sc:name "NanoTox" ; sc:url "https://github.com/NanoTox" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0621, + edam:topic_0769, + edam:topic_0780, + edam:topic_3959 ; + sc:citation , + "pmcid:PMC9413040", + "pubmed:36015406" ; + sc:description "A software tool to de novo search high-copy tandem repeats in Oxford Nanopore Technologies (ONT) plant DNA sequencing data" ; + sc:featureList edam:operation_0523, + edam:operation_0525, + edam:operation_3192 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "NanoTRF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Kirovez/NanoTRF" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0621, @@ -325035,7 +338987,7 @@ Statistically processed image end result.""" ; sc:url "http://enaloscloud.novamechanics.com/EnalosWebApps/NanoXtract/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3324, @@ -325057,7 +339009,7 @@ Statistically processed image end result.""" ; sc:url "https://github.com/jeffeaton/naomi-model-paper/tree/master/naomi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -325073,7 +339025,7 @@ Statistically processed image end result.""" ; sc:url "http://athena.bioc.uvic.ca/virology-ca-tools/nap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0769, @@ -325090,8 +339042,39 @@ NeoAntigens Prediction @ CNB (NAP-CNB) is a tool for the prediction of neoantige sc:name "NAP-CNB" ; sc:url "http://biocomp.cnb.csic.es/NeoantigensApp/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Image" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Report" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0196 ; + sc:author , + "Alexandr Dibrov" ; + sc:contributor ; + sc:description "A plugin to estimate chromosome sizes from karyotype images." ; + sc:featureList edam:operation_3180, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "napari-kics" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareVersion "0.0.3.rc2" ; + sc:url "https://github.com/mpicbg-csbd/napari-kics" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -325114,7 +339097,7 @@ NeoAntigens Prediction @ CNB (NAP-CNB) is a tool for the prediction of neoantige biotools:primaryContact "NAPP Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -325132,7 +339115,7 @@ NeoAntigens Prediction @ CNB (NAP-CNB) is a tool for the prediction of neoantige sc:url "http://proteomics.bioengr.uic.edu/NAPS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -325154,7 +339137,7 @@ NeoAntigens Prediction @ CNB (NAP-CNB) is a tool for the prediction of neoantige biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_2814 ; @@ -325169,7 +339152,7 @@ NeoAntigens Prediction @ CNB (NAP-CNB) is a tool for the prediction of neoantige sc:url "http://www.cs.duke.edu/donaldlab/software/nasca/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -325185,7 +339168,7 @@ NeoAntigens Prediction @ CNB (NAP-CNB) is a tool for the prediction of neoantige sc:url "http://nascent.pitgroup.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_3170, @@ -325211,7 +339194,7 @@ https://github.com/nasqar/nasqar.""" ; sc:url "http://nasqar.abudhabi.nyu.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -325233,7 +339216,7 @@ https://github.com/nasqar/nasqar.""" ; biotools:primaryContact "NASSAM Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0621, @@ -325250,7 +339233,7 @@ https://github.com/nasqar/nasqar.""" ; sc:url "http://greengenes.lbl.gov/cgi-bin/nph-NAST_align.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3168 ; @@ -325264,14 +339247,14 @@ https://github.com/nasqar/nasqar.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2535" ; - sc:name "Sequence tag profile" ; - sc:sameAs "http://edamontology.org/data_2535" ] ; + sc:additionalType "http://edamontology.org/data_2535" ; + sc:encodingFormat "http://edamontology.org/format_2548" ; + sc:name "Sequence tag profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2548" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308 ; sc:citation ; @@ -325286,10 +339269,10 @@ https://github.com/nasqar/nasqar.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3301 ; sc:citation ; @@ -325303,7 +339286,7 @@ https://github.com/nasqar/nasqar.""" ; "Steve Tsang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -325322,7 +339305,7 @@ https://github.com/nasqar/nasqar.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -325339,8 +339322,24 @@ https://github.com/nasqar/nasqar.""" ; sc:name "NatDRAP" ; sc:url "https://github.com/lixt314/NatDRAP1" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3053, + edam:topic_3372 ; + sc:citation ; + sc:description "A relatedness-pruning method to minimize the loss of dataset size in genetic and omics analyses" ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "NAToRA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ldgh/NAToRA_Public" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3050, @@ -325355,7 +339354,7 @@ naturaList package for R. version 0.2.0.""" ; sc:url "https://github.com/avrodrigues/naturaList" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0091, @@ -325377,7 +339376,7 @@ naturaList package for R. version 0.2.0.""" ; sc:url "https://navia.ms" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0128, @@ -325395,7 +339394,7 @@ naturaList package for R. version 0.2.0.""" ; biotools:primaryContact "Thanet Praneenararat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -325416,7 +339415,7 @@ naturaList package for R. version 0.2.0.""" ; biotools:primaryContact "Jurisica Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:author "Jan-Simon Baasner" ; sc:citation ; sc:contributor "Boas Pucker" ; @@ -325427,7 +339426,7 @@ naturaList package for R. version 0.2.0.""" ; "Jan-Simon Baasner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3173, @@ -325447,7 +339446,7 @@ naturaList package for R. version 0.2.0.""" ; biotools:primaryContact "Ander Izeta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -325470,8 +339469,32 @@ High-throughput sequencing experiments followed by differential expression analy sc:name "NBAMSeq" ; sc:url "http://bioconductor.org/packages/release/bioc/html/NBAMSeq.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_3170, + edam:topic_3308, + edam:topic_3320, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9329447", + "pubmed:35896555" ; + sc:description "A versatile method for differential analysis of multiple types of RNA-seq data." ; + sc:featureList edam:operation_0264, + edam:operation_3223, + edam:operation_3680 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "NBBt-test" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://CRAN.R-project.org/package=NBBttest" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053 ; @@ -325484,7 +339507,7 @@ High-throughput sequencing experiments followed by differential expression analy sc:url "https://github.com/EESI/nbc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -325504,7 +339527,7 @@ With the explosion of high-throughput data, effective integrative analyses are n sc:url "http://bioconductor.org/packages/release/bioc/html/BLMA.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2229, @@ -325524,7 +339547,7 @@ Welcome to NBIGV, a database dedicated to organizing and characterizing non-B ce sc:url "http://nbigv.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3174 ; sc:description "A snakemake workflow for metagenomics" ; @@ -325537,7 +339560,7 @@ Welcome to NBIGV, a database dedicated to organizing and characterizing non-B ce sc:url "https://github.com/NBISweden/nbis-meta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, @@ -325559,7 +339582,7 @@ Network-Based R-Statistics using Mixed Effects Models.""" ; sc:url "https://CRAN.R-project.org/package=NBR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0102, @@ -325581,8 +339604,27 @@ Network-Based R-Statistics using Mixed Effects Models.""" ; sc:url "http://www.nbrp.jp/index.jsp" ; biotools:primaryContact "Contact form" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3360, + edam:topic_3444, + edam:topic_3474, + edam:topic_3577 ; + sc:citation , + "pubmed:34610435" ; + sc:description "NBS-Predict aims to provide a fast way to identify neuroimaging-based biomarkers with high generalizability by combining machine learning with graph theory in a cross-validation structure." ; + sc:featureList edam:operation_3658 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "NBS-Predict" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/eminSerin/NBS-Predict" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0780, @@ -325600,7 +339642,7 @@ Network-Based R-Statistics using Mixed Effects Models.""" ; biotools:primaryContact "Sandeep Kushwaha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2269, @@ -325619,7 +339661,7 @@ NBZIMM: Negative Binomial and Zero-Inflated Mixed Models, with Applications to M sc:url "http://github.com//nyiuab//NBZIMM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -325641,7 +339683,7 @@ Eye diseases (EDs) represent the disorders affecting visual system, such as reti sc:url "http://nc2eye.bio-data.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2885, @@ -325656,29 +339698,32 @@ Eye diseases (EDs) represent the disorders affecting visual system, such as reti sc:softwareHelp ; sc:url "http://ibi.hzau.edu.cn/ncRNA-eQTL" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0219, - edam:topic_0602, - edam:topic_0659, - edam:topic_3068, - edam:topic_3407 ; - sc:citation , - "pmcid:PMC6798904", - "pubmed:31637139" ; - sc:description """a manually curated database for non-coding RNAs associated with metabolic syndrome. - -Metabolic syndrome is a cluster of the most dangerous heart attack risk factors (diabetes and raised fasting plasma glucose, abdominal obesity, high cholesterol and high blood pressure), and has become a major global threat to human health. A number of studies have demonstrated that hundreds of non-coding RNAs, including miRNAs and lncRNAs, are involved in metabolic syndrome-related diseases such as obesity, type 2 diabetes mellitus, hypertension, etc. However, these research results are distributed in a large number of literature, which is not conducive to analysis and use. There is an urgent need to integrate these relationship data between metabolic syndrome and non-coding RNA into a specialized database. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'biomed-bigdata'""" ; - sc:featureList edam:operation_2421, - edam:operation_3792 ; - sc:name "ncRNA2MetS" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31637139" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0202, + edam:topic_3373, + edam:topic_3375, + edam:topic_3379 ; + sc:citation , + "pmcid:PMC8728186", + "pubmed:34648031" ; + sc:description "A comprehensive and curated portal for translational research." ; + sc:featureList edam:operation_0224, + edam:operation_3436, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:name "NCATS Inxight Drugs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://drugs.ncats.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0769, @@ -325702,7 +339747,7 @@ Toolbox to manage NCBI taxonomical data.""" ; sc:url "https://cloud.sylabs.io/library/jpb/ncbi-taxonomist" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -325723,7 +339768,7 @@ Toolbox to manage NCBI taxonomical data.""" ; sc:url "http://www.ncbi.nlm.nih.gov/projects/assembly/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3297, edam:topic_3303, @@ -325744,16 +339789,28 @@ Toolbox to manage NCBI taxonomical data.""" ; sc:url "http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=Books" ; biotools:primaryContact "Marilu A. Hoeppner" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Bioinformatics portal", + "Command-line tool" ; + sc:applicationSubCategory edam:topic_3071 ; + sc:description "NCBI Datasets is a new resource that lets you easily gather data from across NCBI databases. Find and download sequence, annotation, and metadata for genes and genomes using our command-line tools or web interface." ; + sc:featureList edam:operation_0338, + edam:operation_2409, + edam:operation_2422 ; + sc:name "NCBI Datasets" ; + sc:softwareVersion "13.29.1" ; + sc:url "https://www.ncbi.nlm.nih.gov/datasets/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2719" ; - sc:name "dbProbe ID" ; - sc:sameAs "http://edamontology.org/data_2719" ] ; + sc:additionalType "http://edamontology.org/data_2719" ; + sc:name "dbProbe ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2717" ; - sc:name "Oligonucleotide probe annotation" ; - sc:sameAs "http://edamontology.org/data_2717" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2717" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Oligonucleotide probe annotation" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0607 ; sc:citation ; @@ -325767,7 +339824,7 @@ Toolbox to manage NCBI taxonomical data.""" ; sc:url "http://www.ncbi.nlm.nih.gov/probe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -325787,84 +339844,87 @@ Toolbox to manage NCBI taxonomical data.""" ; sc:url "http://www.ncbi.nlm.nih.gov/epigenomics" ; biotools:primaryContact "Gregory D. Schuler" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0196 ; + sc:description "The NCBI Foreign Contamination Screen (FCS) is a tool suite for identifying and removing contaminant sequences in genome assemblies. Contaminants are defined as sequences in a dataset that do not originate from the biological source organism and can arise from a variety of environmental and laboratory sources. FCS will help you remove contaminants from genomes before submission to GenBank." ; + sc:featureList edam:operation_3180, + edam:operation_3187, + edam:operation_3192 ; + sc:name "NCBI fcs" ; + sc:softwareVersion "0.2.2" ; + sc:url "https://github.com/ncbi/fcs" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_1187" ; + sc:name "PubMed ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1176" ; - sc:name "GO concept ID" ; - sc:sameAs "http://edamontology.org/data_1176" ], + sc:additionalType "http://edamontology.org/data_1176" ; + sc:name "GO concept ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_1097" ; + sc:name "Sequence accession (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1097" ; - sc:name "Sequence accession (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1097" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0987" ; - sc:name "Chromosome name" ; - sc:sameAs "http://edamontology.org/data_0987" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0966" ; - sc:name "Ontology term" ; - sc:sameAs "http://edamontology.org/data_0966" ], + sc:additionalType "http://edamontology.org/data_0966" ; + sc:name "Ontology term" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1011" ; - sc:name "EC number" ; - sc:sameAs "http://edamontology.org/data_1011" ], + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1187" ; - sc:name "PubMed ID" ; - sc:sameAs "http://edamontology.org/data_1187" ], + sc:additionalType "http://edamontology.org/data_0987" ; + sc:name "Chromosome name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_1011" ; + sc:name "EC number" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0623 ; @@ -325879,7 +339939,7 @@ Toolbox to manage NCBI taxonomical data.""" ; sc:url "http://www.ncbi.nlm.nih.gov/sites/entrez?db=gene" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -325896,7 +339956,7 @@ Toolbox to manage NCBI taxonomical data.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0625, @@ -325919,7 +339979,7 @@ Toolbox to manage NCBI taxonomical data.""" ; sc:url "https://www.ncbi.nlm.nih.gov/projects/genotyping/formpage.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, @@ -325943,7 +340003,7 @@ Toolbox to manage NCBI taxonomical data.""" ; biotools:primaryContact "Tanya Barrett" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -325966,10 +340026,10 @@ Toolbox to manage NCBI taxonomical data.""" ; a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence set" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3307 ; @@ -325988,7 +340048,7 @@ Toolbox to manage NCBI taxonomical data.""" ; biotools:primaryContact "Francisco Pina Martins" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -325996,9 +340056,42 @@ Toolbox to manage NCBI taxonomical data.""" ; edam:topic_3366, edam:topic_3473, edam:topic_3489 ; - sc:citation "pubmed:19910364", + sc:citation , + , + , + , + , + , + , + , + , + , + , + , + , + , + "pmcid:PMC2808881", + "pmcid:PMC3013733", + "pmcid:PMC3245031", + "pmcid:PMC4383943", + "pmcid:PMC4702911", + "pmcid:PMC5753372", + "pmcid:PMC7778943", + "pmcid:PMC8728269", + "pubmed:15608222", + "pubmed:17170002", + "pubmed:18045790", + "pubmed:19910364", "pubmed:21097890", - "pubmed:22140104" ; + "pubmed:22140104", + "pubmed:25398906", + "pubmed:26615191", + "pubmed:27899561", + "pubmed:29140470", + "pubmed:30395293", + "pubmed:31602479", + "pubmed:33095870", + "pubmed:34850941" ; sc:description "The National Center for Biotechnology Information (NCBI) provides analysis and retrieval resources for the data in GenBank and other biological data made available through the NCBI web site." ; sc:featureList edam:operation_0224, edam:operation_0308, @@ -326015,14 +340108,13 @@ Toolbox to manage NCBI taxonomical data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1179" ; - sc:name "NCBI taxonomy ID" ; - sc:sameAs "http://edamontology.org/data_1179" ] ; + sc:additionalType "http://edamontology.org/data_1179" ; + sc:name "NCBI taxonomy ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -326047,7 +340139,7 @@ Toolbox to manage NCBI taxonomical data.""" ; sc:url "http://www.ncbi.nlm.nih.gov/Taxonomy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -326070,7 +340162,7 @@ NCBRPred is a new sequence-based computational predictor for identifying DNA-bin sc:url "http://bliulab.net/NCBRPred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "nccmp compares two NetCDF files bitwise, semantically or with a user defined tolerance (absolute or relative percentage). Parallel comparisons are done in local memory without requiring temporary files. Highly recommended for regression testing scientific models or datasets in a test-driven development environment." ; sc:isAccessibleForFree true ; sc:license "GPL-2.0" ; @@ -326081,7 +340173,7 @@ NCBRPred is a new sequence-based computational predictor for identifying DNA-bin biotools:primaryContact "Remik Ziemlinski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -326101,7 +340193,7 @@ NCBRPred is a new sequence-based computational predictor for identifying DNA-bin biotools:primaryContact "Mike Jiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0203, @@ -326124,7 +340216,7 @@ NCBRPred is a new sequence-based computational predictor for identifying DNA-bin sc:url "https://github.com/linyuwangPHD/ncDLRES" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -326144,7 +340236,7 @@ ncDRMarker is an integrated bioinformatic platform that enable users to prioriti sc:url "http://bio-bigdata.hrbmu.edu.cn/ncDRMarker/index" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0154, @@ -326162,7 +340254,7 @@ More and more evidences have shown that non-coding RNAs (ncRNAs), such as lncRNA sc:url "http://www.jianglab.cn/ncEP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0659, @@ -326183,7 +340275,7 @@ More and more evidences have shown that non-coding RNAs (ncRNAs), such as lncRNA "Qi Liao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -326203,7 +340295,7 @@ The purpose of ncGTW is to detect and fix the bad alignments in the LC-MS data. sc:url "https://github.com/ChiungTingWu/ncGTW" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -326223,7 +340315,7 @@ The purpose of ncGTW is to detect and fix the bad alignments in the LC-MS data. sc:url "http://www.lecb.ncifcrf.gov/flicker/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -326242,7 +340334,7 @@ The purpose of ncGTW is to detect and fix the bad alignments in the LC-MS data. biotools:primaryContact "Laurent Jacob" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640 ; @@ -326256,7 +340348,7 @@ The purpose of ncGTW is to detect and fix the bad alignments in the LC-MS data. sc:url "http://bioen-compbio.bioen.illinois.edu/NCIS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0196, @@ -326275,7 +340367,7 @@ This code is related to our recently proposed method called NCMHap. This method sc:url "https://github.com/Fatemeh-Zamani/NCMHap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:description "The NCO toolkit manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5." ; sc:license "BSD-3-Clause" ; @@ -326285,7 +340377,7 @@ This code is related to our recently proposed method called NCMHap. This method sc:url "http://nco.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0081, @@ -326308,14 +340400,14 @@ NCodR : A multi-class SVM classifier using single sequence repeat signatures to a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3542 ; sc:citation , @@ -326332,7 +340424,7 @@ NCodR : A multi-class SVM classifier using single sequence repeat signatures to sc:url "http://www.predictprotein.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3168, @@ -326351,7 +340443,7 @@ Information on COVID-19, the infectious disease caused by the most recently disc sc:url "https://www.who.int/emergencies/diseases/novel-coronavirus-2019" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3305, @@ -326373,14 +340465,14 @@ Information on COVID-19, the infectious disease caused by the most recently disc a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation ; @@ -326395,7 +340487,7 @@ Information on COVID-19, the infectious disease caused by the most recently disc sc:url "http://ncrna-pred.com/HLRF.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0659, @@ -326413,7 +340505,7 @@ The promoter is located near the transcription start sites and regulates transcr sc:url "http://www.bio-bigdata.cn/ncPro-ML/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3474, @@ -326429,7 +340521,7 @@ ncRDeep: Non coding RNA classification with convolutional neural network.""" ; sc:url "http://home.jbnu.ac.kr/NSCL/ncRDeep.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -326447,7 +340539,7 @@ ncRDeep: Non coding RNA classification with convolutional neural network.""" ; sc:url "http://nsclbio.jbnu.ac.kr/tools/ncRDense/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0659, @@ -326469,7 +340561,7 @@ A deep learning-based method to predict noncoding RNAs of RNA sequences.""" ; sc:url "https://github.com/abcair/NCResNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -326488,7 +340580,7 @@ ncRNAs family classification.""" ; sc:url "https://github.com/linyuwangPHD/ncRFP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0219, @@ -326508,7 +340600,7 @@ Non-coding RNAs in Inflammation (ncRI) provides a manually curated database for sc:url "http://www.jianglab.cn/ncRI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -326531,7 +340623,7 @@ Non-coding RNAs in Inflammation (ncRI) provides a manually curated database for biotools:primaryContact "Non-Coding RNA database team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0102, @@ -326553,7 +340645,7 @@ Sep 10, 2019: The variant mapping was developed...""" ; sc:url "http://www.liwzlab.cn/ncrnavar/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -326569,7 +340661,7 @@ Sep 10, 2019: The variant mapping was developed...""" ; biotools:primaryContact "Runsheng Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -326594,7 +340686,7 @@ ncRPheno is a comprehensive database that provides experimentally supported asso sc:url "http://lilab2.sysu.edu.cn/ncrpheno" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3053, @@ -326612,7 +340704,7 @@ ncRPheno is a comprehensive database that provides experimentally supported asso sc:url "https://github.com/gangwug/nCV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:description "Ncview is a netCDF visual browser." ; sc:featureList edam:operation_0337 ; @@ -326624,8 +340716,34 @@ ncRPheno is a comprehensive database that provides experimentally supported asso sc:url "https://cirrus.ucsd.edu/ncview/" ; biotools:primaryContact "Robert W. McMullen" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0621, + edam:topic_0659, + edam:topic_3170, + edam:topic_3360 ; + sc:citation , + "pubmed:34826297" ; + sc:description "A Bidirectional LSTM Network with Attention for Y RNA and short non-coding RNA classification." ; + sc:featureList edam:operation_0335, + edam:operation_3663 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "NCYPred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.gpea.uem.br/ncypred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -326648,7 +340766,7 @@ ncRPheno is a comprehensive database that provides experimentally supported asso biotools:primaryContact "NDB Admin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -326672,7 +340790,7 @@ ncRPheno is a comprehensive database that provides experimentally supported asso biotools:primaryContact "NDB Admin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -326692,8 +340810,30 @@ ncRPheno is a comprehensive database that provides experimentally supported asso "Windows" ; sc:url "https://www.ndexbio.org" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0602, + edam:topic_3382 ; + sc:citation ; + sc:description "Data-dependent visualization of biological networks in the web-browser with NDExEdit." ; + sc:featureList edam:operation_2429, + edam:operation_3096, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "NDExEdit" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://frankkramer-lab.github.io/NDExEdit" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0602, @@ -326714,7 +340854,7 @@ ncRPheno is a comprehensive database that provides experimentally supported asso "Frank Kramer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3300, @@ -326734,7 +340874,7 @@ It is assumed that the function ndi_Init.m is run at startup. Please add this to sc:url "http://github.com/VH-Lab/NDI-matlab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2229, @@ -326755,14 +340895,14 @@ A R package for selecting the best way for RNA-Seq data pretreatment.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation , @@ -326783,31 +340923,30 @@ A R package for selecting the best way for RNA-Seq data pretreatment.""" ; sc:url "http://cge.cbs.dtu.dk/services/NDtree/" ; biotools:primaryContact "Ole Lund" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0121, - edam:topic_0154, - edam:topic_0601, - edam:topic_3520 ; - sc:citation , - "pubmed:31724716" ; - sc:description """data, tools and usability improvements. - -{{Search.result.error}} {{message}}. - -The neXtProt knowledgebase in 2020: data, tools and usability improvements. Nucleic Acids Research, Database Issue (2020). - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/nextprot (NEXTPROT.ORG). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'neXtProt' (bio.tools/nextprot), 'neXtProt knowledgebase', 'SPARQL'""" ; - sc:featureList edam:operation_0224, - edam:operation_3643, - edam:operation_3755 ; - sc:name "neXtProt knowledgebase 2020" ; - sc:url "https://www.nextprot.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3304, + edam:topic_3384, + edam:topic_3418 ; + sc:citation , + "pmcid:PMC8800139", + "pubmed:35085870" ; + sc:description "Neonatal EEG Artifact Removal, an automated pipeline for pre-processing." ; + sc:featureList edam:operation_0321, + edam:operation_3237, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "NEAR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/vpKumaravel/NEAR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0097, edam:topic_3308, @@ -326828,7 +340967,7 @@ nearBynding is an R package that discerns RNA structure at and proximal to the s sc:url "https://bioconductor.org/packages/nearBynding/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -326847,7 +340986,7 @@ nearBynding is an R package that discerns RNA structure at and proximal to the s biotools:primaryContact "Ashwini Jeggari" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2828, edam:topic_3569 ; @@ -326864,8 +341003,33 @@ nearBynding is an R package that discerns RNA structure at and proximal to the s sc:url "https://sourceforge.net/projects/neartree/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0634, + edam:topic_3320, + edam:topic_3360, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8638120", + "pubmed:34857024" ; + sc:description "Functional enrichment of alternative splicing events with NEASE reveals insights into tissue identity and diseases." ; + sc:featureList edam:operation_0264, + edam:operation_0436, + edam:operation_3501, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "NEASE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/louadi/NEASE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0602 ; @@ -326886,7 +341050,7 @@ nearBynding is an R package that discerns RNA structure at and proximal to the s biotools:primaryContact "Sylvain Brohée" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -326906,7 +341070,7 @@ nearBynding is an R package that discerns RNA structure at and proximal to the s biotools:primaryContact "Mirko Signorelli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3524 ; @@ -326921,7 +341085,7 @@ nearBynding is an R package that discerns RNA structure at and proximal to the s sc:url "https://github.com/zstephens/neat-genreads" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3169, @@ -326938,8 +341102,30 @@ nearBynding is an R package that discerns RNA structure at and proximal to the s sc:url "https://github.com/pschorderet/NEAT" ; biotools:primaryContact "Admin" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0203, + edam:topic_2885, + edam:topic_3173, + edam:topic_3940 ; + sc:citation , + "pubmed:35501385" ; + sc:description "Simultaneous profiling of intra-nuclear proteins, chromatin accessibility and gene expression in single cells." ; + sc:featureList edam:operation_0314, + edam:operation_3196, + edam:operation_3800 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "NEAT-seq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/GreenleafLab/NEAT-seq_reproducibility" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -326963,8 +341149,31 @@ NeAT (Neuroimaging Analysis Toolbox) is a command-line toolbox written in Python sc:name "NeATB" ; sc:url "https://imatge-upc.github.io/neat-tool/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3172, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8969107", + "pubmed:35290737" ; + sc:description "NeatMS is an open source python package for untargeted LCMS signal labelling and filtering. NeatMS enables automated filtering of false positive MS peaks reported by commonly used LCMS data processing pipelines. NeatMS relies on neural network based classification." ; + sc:featureList edam:operation_3215, + edam:operation_3695, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "NeatMS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://anaconda.org/bioconda/neatms" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -326987,7 +341196,7 @@ NeAT (Neuroimaging Analysis Toolbox) is a command-line toolbox written in Python biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3125, edam:topic_3169, @@ -327003,7 +341212,7 @@ NeAT (Neuroimaging Analysis Toolbox) is a command-line toolbox written in Python sc:url "https://nebula.curie.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -327025,7 +341234,7 @@ Nebula is a mapping-free approach for accurate and efficient genotyping of SVs. sc:url "https://github.com/Parsoa/Nebula" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -327040,7 +341249,7 @@ Due to the sparsity observed in single-cell data (e.g. RNA-seq, ATAC-seq), the v sc:url "http://www.github.com/powellgenomicslab/Nebulosa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -327063,7 +341272,7 @@ The feature NECARE used include:1) knowledge-based feature OPA2Vec; 2)cancer spe sc:url "https://github.com/JiajunQiu/NECARE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -327076,7 +341285,7 @@ The feature NECARE used include:1) knowledge-based feature OPA2Vec; 2)cancer spe biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3314, edam:topic_3315, @@ -327091,7 +341300,7 @@ FCIQMC code developed by George Booth and Ali Alavi, 2013.""" ; sc:url "https://github.com/ghb24/NECI_STABLE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, @@ -327108,7 +341317,7 @@ FCIQMC code developed by George Booth and Ali Alavi, 2013.""" ; "Nadia M Davidson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Script" ; sc:applicationSubCategory edam:topic_0203, @@ -327127,7 +341336,7 @@ NECo is a node embedding tool that utilizes multiplex heterogeneous gene phenoty sc:url "https://github.com/bozdaglab/NECo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -327144,7 +341353,7 @@ NECo is a node embedding tool that utilizes multiplex heterogeneous gene phenoty sc:url "https://github.com/Jingyi-Cai/NECom.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0634, @@ -327163,7 +341372,7 @@ NEDD is an novel computational method, which utilizes heterogeneous information sc:url "http://bioinformatics.csu.edu.cn/resources/softs/DrugRepositioning/n_Web/NEDD.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0601, edam:topic_0634, @@ -327181,24 +341390,45 @@ As the detection of the lysine neddylation sites by the traditional experimental sc:name "NeddPred" ; sc:url "http://123.206.31.171/NeddPred/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0602, + edam:topic_0634, + edam:topic_3336, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC8617287", + "pubmed:34824199" ; + sc:description "Network medicine for disease module identification and drug repurposing with the NeDRex platform." ; + sc:featureList edam:operation_3431, + edam:operation_3927, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "NeDRex" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://apps.cytoscape.org/apps/nedrex" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -327228,7 +341458,7 @@ As the detection of the lysine neddylation sites by the traditional experimental sc:url "http://emboss.open-bio.org/rel/rel6/apps/needle.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -327244,19 +341474,18 @@ As the detection of the lysine neddylation sites by the traditional experimental a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "EMBOSS", - "Web Production" ; - sc:citation ; + "Job Dispatcher" ; + sc:citation , + ; sc:description "Needleman-Wunsch global alignment of two sequences." ; sc:featureList edam:operation_0491, edam:operation_0496 ; @@ -327269,10 +341498,10 @@ As the detection of the lysine neddylation sites by the traditional experimental ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/psa/emboss_needle/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -327288,22 +341517,18 @@ As the detection of the lysine neddylation sites by the traditional experimental a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -327334,14 +341559,12 @@ As the detection of the lysine neddylation sites by the traditional experimental a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2127" ; - sc:name "Genetic code identifier" ; - sc:sameAs "http://edamontology.org/data_2127" ] ; + sc:additionalType "http://edamontology.org/data_2127" ; + sc:name "Genetic code identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -327357,7 +341580,7 @@ As the detection of the lysine neddylation sites by the traditional experimental sc:url "https://github.com/arnedc/Needles" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168, @@ -327381,7 +341604,7 @@ As the detection of the lysine neddylation sites by the traditional experimental "Tiffany Delhomme" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081 ; sc:citation ; @@ -327399,61 +341622,58 @@ As the detection of the lysine neddylation sites by the traditional experimental a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_3814" ; + sc:name "Small molecule structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1917" ; - sc:name "Atomic property" ; - sc:sameAs "http://edamontology.org/data_1917" ], + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_3814" ; + sc:name "Small molecule structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_1917" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Atomic property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_3814" ; + sc:name "Small molecule structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1917" ; - sc:name "Atomic property" ; - sc:sameAs "http://edamontology.org/data_1917" ], + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_3814" ; + sc:name "Small molecule structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1917" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Atomic property" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1917" ; - sc:name "Atomic property" ; - sc:sameAs "http://edamontology.org/data_1917" ], + sc:additionalType "http://edamontology.org/data_1917" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Atomic property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3332 ; - sc:author "Tomáš Raček" ; + sc:author ; sc:citation , "pmcid:PMC5067907", "pubmed:27803746" ; @@ -327467,15 +341687,14 @@ As the detection of the lysine neddylation sites by the traditional experimental "Windows" ; sc:provider "Central European Institute of Technology, Brno", "ELIXIR-CZ", - "National Centre for Biomolecular Research, Masaryk University, Brno", - "mail.muni.cz" ; + "National Centre for Biomolecular Research, Masaryk University, Brno" ; sc:softwareHelp ; sc:softwareVersion "1" ; sc:url "http://ncbr.muni.cz/neemp" ; - biotools:primaryContact "Tomáš Raček" . + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -327498,7 +341717,7 @@ As the detection of the lysine neddylation sites by the traditional experimental biotools:primaryContact "Dmitrij Frishman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -327513,7 +341732,7 @@ This is the repository containing the source code for research, namely NegStacki sc:url "https://github.com/Open-ss/NegStacking" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0625, @@ -327533,8 +341752,48 @@ R source codes, accession list, and phenotype data used in "Neighbor GWAS: incor sc:name "neighbor GWAS" ; sc:url "https://cran.r-project.org/package=rNeighborGWAS" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_2229, + edam:topic_2830, + edam:topic_3308, + edam:topic_3318 ; + sc:citation , + "pubmed:35536255" ; + sc:description "Reconstructing physical cell interaction networks from single-cell data using Neighbor-seq." ; + sc:featureList edam:operation_3200, + edam:operation_3435, + edam:operation_3436, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Neighbor-seq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sjdlabgroup/Neighborseq" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:35679376" ; + sc:description "A Self-Supervised Framework for Deep Image Denoising." ; + sc:featureList edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "Neighbor2Neighbor" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/TaoHuang2018/Neighbor2Neighbor" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -327556,7 +341815,7 @@ To enable quantitative trait loci mapping of neighbor effects, this package exte sc:url "https://cran.r-project.org/package=rNeighborQTL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0749, @@ -327576,7 +341835,7 @@ To enable quantitative trait loci mapping of neighbor effects, this package exte sc:url "https://github.com/YaleTHz/nelly" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API", "Web service", @@ -327604,7 +341863,7 @@ It can be accessed via a web application, web API, and SSH. Online analysis of d biotools:primaryContact "Help (Support)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -327624,7 +341883,7 @@ It can be accessed via a web application, web API, and SSH. Online analysis of d biotools:primaryContact "Holger Froehlich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0623, @@ -327648,7 +341907,7 @@ It can be accessed via a web application, web API, and SSH. Online analysis of d biotools:primaryContact "John Parkinson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0089, @@ -327668,7 +341927,7 @@ It can be accessed via a web application, web API, and SSH. Online analysis of d biotools:primaryContact "Yutaka Sasaki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3300, @@ -327685,7 +341944,7 @@ Neuron Modeling for TMS (NeMo-TMS) toolbox is for multi-scale modeling of the ef sc:url "https://github.com/OpitzLab/NeMo-TMS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -327708,7 +341967,7 @@ Network analysis for therapeutic insights.""" ; sc:url "https://neo4covid19.ncats.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0769, @@ -327730,7 +341989,7 @@ neoANT-HILL is a python toolkit that integrates several pipelines for fully auto sc:url "https://github.com/neoanthill/neoANT-HILL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -327748,7 +342007,7 @@ Abstract It is known that some mutated peptides, such as those resulting from mi sc:url "https://github.com/hase62/Neoantimon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -327768,7 +342027,7 @@ It is known that some mutant peptides, such as those resulting from missense mut sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=33123738" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3307, @@ -327786,14 +342045,14 @@ It is known that some mutant peptides, such as those resulting from missense mut a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2087" ; - sc:name "Molecular property" ; - sc:sameAs "http://edamontology.org/data_2087" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2087" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Molecular property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, @@ -327816,7 +342075,7 @@ It is known that some mutant peptides, such as those resulting from missense mut sc:url "https://github.com/zhangjbig/neoDL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0199, @@ -327836,7 +342095,7 @@ It is known that some mutant peptides, such as those resulting from missense mut sc:url "https://github.com/TRON-Bioinformatics/neofox" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -327855,8 +342114,55 @@ It is known that some mutant peptides, such as those resulting from missense mut sc:url "https://github.com/PGB-LIV/neo-pep-tool/releases/" ; biotools:primaryContact "Mandy Peffers" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3360, + edam:topic_3384, + edam:topic_3444 ; + sc:citation , + "pmcid:PMC9247272", + "pubmed:35784189" ; + sc:description "A Neonatal Resting State fMRI Data Preprocessing Pipeline." ; + sc:featureList edam:operation_3435, + edam:operation_3443, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "NeoRS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/venguix/NeoRS" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2830, + edam:topic_3170, + edam:topic_3320, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9154024", + "pubmed:35669345" ; + sc:description "A bioinformatics method for prediction of splice variant neoantigens." ; + sc:featureList edam:operation_0252, + edam:operation_0264, + edam:operation_0433, + edam:operation_0526, + edam:operation_3800 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "NeoSplice" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Benjamin-Vincent-Lab/NeoSplice" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3297, @@ -327876,7 +342182,7 @@ It is known that some mutant peptides, such as those resulting from missense mut biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -327897,7 +342203,7 @@ It is known that some mutant peptides, such as those resulting from missense mut "Yu Zhou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_1775, edam:topic_3174, @@ -327914,7 +342220,7 @@ It is known that some mutant peptides, such as those resulting from missense mut biotools:primaryContact "Nephele Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -327932,7 +342238,7 @@ It is known that some mutant peptides, such as those resulting from missense mut biotools:primaryContact "Eric Marinier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0769, @@ -327951,7 +342257,7 @@ Genomic medicine holds great promise for improving healthcare, but integrating s sc:url "https://gitlab.com/bcm-hgsc/neptune" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0208, edam:topic_3063, @@ -327974,7 +342280,7 @@ Genomic medicine holds great promise for improving healthcare, but integrating s sc:url "https://gitlab.com/bcm-hgsc/neptune" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -327997,18 +342303,17 @@ Regioselectivity prediction for phase 1 and phase 2 metabolism.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "Sequence assembly" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_1196" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0893" ; - sc:name "Sequence-structure alignment" ; - sc:sameAs "http://edamontology.org/data_0893" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0893" ; + sc:name "Sequence-structure alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0154, @@ -328029,8 +342334,31 @@ Regioselectivity prediction for phase 1 and phase 2 metabolism.""" ; sc:url "https://cab.spbu.ru/software/nerpa/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0219, + edam:topic_0749, + edam:topic_3300, + edam:topic_3304, + edam:topic_3361 ; + sc:citation , + "pmcid:PMC8777234", + "pubmed:35069167" ; + sc:description "Software Tool to Manage Experimental Data and Its Provenance." ; + sc:featureList edam:operation_2426, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MPL-2.0" ; + sc:name "NES" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/neuromat/nes" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3293 ; @@ -328043,7 +342371,7 @@ Regioselectivity prediction for phase 1 and phase 2 metabolism.""" ; biotools:primaryContact "GitHub Issues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -328064,7 +342392,7 @@ NESS aggregates and harmonizes heterogeneous graph types including ontologies an sc:url "https://github.com/treynr/ness" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3174, @@ -328081,7 +342409,7 @@ NESS aggregates and harmonizes heterogeneous graph types including ontologies an biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3304, @@ -328099,7 +342427,7 @@ NESS aggregates and harmonizes heterogeneous graph types including ontologies an sc:url "http://www.nest-simulator.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -328115,8 +342443,30 @@ NESS aggregates and harmonizes heterogeneous graph types including ontologies an sc:url "http://nest.dfci.harvard.edu/" ; biotools:primaryContact "Peng Jiang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Web application" ; + sc:applicationSubCategory edam:topic_3068, + edam:topic_3304, + edam:topic_3524 ; + sc:citation , + "pmcid:PMC8638679", + "pubmed:34764188" ; + sc:description "Construct neuronal networks and explore network dynamics" ; + sc:featureList edam:operation_0337, + edam:operation_2426, + edam:operation_3927 ; + sc:license "MIT" ; + sc:name "NEST Desktop" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://ebrains.eu/service/nest-desktop" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, edam:topic_0621, @@ -328136,30 +342486,30 @@ Software to recursively identify TEs or other inserted sequences and cut them ou a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1155" ; - sc:name "Pathway ID (reactome)" ; - sc:sameAs "http://edamontology.org/data_1155" ], + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Taxonomy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1176" ; - sc:name "GO concept ID" ; - sc:sameAs "http://edamontology.org/data_1176" ], + sc:additionalType "http://edamontology.org/data_1155" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway ID (reactome)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_1176" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "GO concept ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2343" ; - sc:name "Pathway ID (KEGG)" ; - sc:sameAs "http://edamontology.org/data_2343" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2343" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway ID (KEGG)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1775 ; sc:citation , @@ -328182,7 +342532,7 @@ Software to recursively identify TEs or other inserted sequences and cut them ou "Samuele Bovo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, @@ -328199,7 +342549,7 @@ Software to recursively identify TEs or other inserted sequences and cut them ou biotools:primaryContact "Rui Kuang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080 ; sc:description """".NET Bio is an open source library of common bioinformatics functions, intended to simplify the creation of life science applications. @@ -328215,14 +342565,14 @@ The core library implements a range of file parsers and formatters for common fi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -328240,7 +342590,7 @@ The core library implements a range of file parsers and formatters for common fi biotools:primaryContact "Henrik Nielsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0769, @@ -328261,7 +342611,7 @@ Network-enhanced autoencoder (netAE) is a semi-supervised dimensionality reducti sc:url "https://github.com/LeoZDong/netAE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -328279,18 +342629,18 @@ Network-enhanced autoencoder (netAE) is a semi-supervised dimensionality reducti a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3512 ; @@ -328310,7 +342660,7 @@ Network-enhanced autoencoder (netAE) is a semi-supervised dimensionality reducti sc:url "http://cbs.dtu.dk/services/NetAspGene/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_1775, @@ -328327,7 +342677,7 @@ Network-enhanced autoencoder (netAE) is a semi-supervised dimensionality reducti biotools:primaryContact "Eric D. Kolaczyk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -328350,18 +342700,18 @@ Network-enhanced autoencoder (netAE) is a semi-supervised dimensionality reducti a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -328383,7 +342733,7 @@ Network-enhanced autoencoder (netAE) is a semi-supervised dimensionality reducti biotools:primaryContact "Shailesh tripathi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -328400,7 +342750,7 @@ Network-enhanced autoencoder (netAE) is a semi-supervised dimensionality reducti sc:url "http://cbio.mskcc.org/tools/netbox/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0199, @@ -328421,7 +342771,7 @@ GeneSetEnrichment, GraphAndNetwork, KEGG, Network, NetworkEnrichment, Pathways, sc:url "https://www.bioconductor.org/packages/release/bioc/html/netboxr.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:description "NetCDF (Network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data." ; @@ -328430,14 +342780,14 @@ GeneSetEnrichment, GraphAndNetwork, KEGG, Network, NetworkEnrichment, Pathways, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0160 ; @@ -328458,14 +342808,14 @@ GeneSetEnrichment, GraphAndNetwork, KEGG, Network, NetworkEnrichment, Pathways, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -328486,14 +342836,12 @@ GeneSetEnrichment, GraphAndNetwork, KEGG, Network, NetworkEnrichment, Pathways, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2392" ; - sc:name "UniParc accession" ; - sc:sameAs "http://edamontology.org/data_2392" ], + sc:additionalType "http://edamontology.org/data_2392" ; + sc:name "UniParc accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -328517,7 +342865,7 @@ GeneSetEnrichment, GraphAndNetwork, KEGG, Network, NetworkEnrichment, Pathways, sc:url "https://github.com/pepamengual/NetCleave" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -328531,7 +342879,7 @@ GeneSetEnrichment, GraphAndNetwork, KEGG, Network, NetworkEnrichment, Pathways, sc:url "https://github.com/screamer/netcoffee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -328556,7 +342904,7 @@ GeneSetEnrichment, GraphAndNetwork, KEGG, Network, NetworkEnrichment, Pathways, sc:url "https://freilich-lab-tools.com/netcom/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2269, @@ -328575,7 +342923,7 @@ NetCoMi (Network Comparison for Microbiome data) provides functions for construc sc:url "https://github.com/stefpeschel/NetCoMi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -328591,7 +342939,7 @@ NetCoMi (Network Comparison for Microbiome data) provides functions for construc sc:url "http://www.shawlab.org/NetComm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640 ; @@ -328609,7 +342957,7 @@ NetCoMi (Network Comparison for Microbiome data) provides functions for construc biotools:primaryContact "Ion Petre" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Web application" ; @@ -328635,7 +342983,7 @@ NetCoMi (Network Comparison for Microbiome data) provides functions for construc "Shiri Freilich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -328658,18 +343006,18 @@ NetCore is a network propagation approach based on node coreness, for phenotype- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ], + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3510 ; sc:citation , @@ -328689,7 +343037,7 @@ NetCore is a network propagation approach based on node coreness, for phenotype- biotools:primaryContact "Ole Lund" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2814, @@ -328710,14 +343058,14 @@ NetCore is a network propagation approach based on node coreness, for phenotype- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -328740,14 +343088,14 @@ NetCore is a network propagation approach based on node coreness, for phenotype- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3534 ; sc:citation , @@ -328769,7 +343117,7 @@ NetCore is a network propagation approach based on node coreness, for phenotype- biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_1775, @@ -328787,14 +343135,14 @@ NetCore is a network propagation approach based on node coreness, for phenotype- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1775 ; sc:citation , @@ -328815,7 +343163,7 @@ NetCore is a network propagation approach based on node coreness, for phenotype- biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -328836,7 +343184,7 @@ netDx is a general-purpose algorithm to build a patient classifier from heteroge sc:url "https://bioconductor.org/packages/release/bioc/html/netDx.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3293, @@ -328854,30 +343202,30 @@ The R package NetFrac is used to calculate various distances and indices between a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1155" ; - sc:name "Pathway ID (reactome)" ; - sc:sameAs "http://edamontology.org/data_1155" ], + sc:additionalType "http://edamontology.org/data_1155" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway ID (reactome)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1176" ; - sc:name "GO concept ID" ; - sc:sameAs "http://edamontology.org/data_1176" ], + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Taxonomy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2343" ; - sc:name "Pathway ID (KEGG)" ; - sc:sameAs "http://edamontology.org/data_2343" ], + sc:additionalType "http://edamontology.org/data_1176" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "GO concept ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2343" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway ID (KEGG)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1775 ; sc:author "Samuele Bovo" ; @@ -328901,18 +343249,18 @@ The R package NetFrac is used to calculate various distances and indices between a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0160, @@ -328933,20 +343281,47 @@ The R package NetFrac is used to calculate various distances and indices between sc:softwareVersion "1.0" ; sc:url "http://cbs.dtu.dk/services/NetGene2/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2909" ; + sc:name "Organism name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0621, + edam:topic_3053, + edam:topic_3293, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8495214", + "pubmed:34630517" ; + sc:description "A Database of Essential Genes Predicted Using Features From Interaction Networks." ; + sc:featureList edam:operation_2421, + edam:operation_2437, + edam:operation_2454, + edam:operation_3094 ; + sc:isAccessibleForFree true ; + sc:name "NetGenes" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://rbc-dsai-iitm.github.io/NetGenes/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_3467" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0080 ; @@ -328965,7 +343340,7 @@ The R package NetFrac is used to calculate various distances and indices between biotools:primaryContact "Morten Bo Johansen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -328989,7 +343364,7 @@ and returns a data frame of gene-sets, their p-values, q-values derived from net sc:url "https://github.com/unistbig/netGO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -329011,7 +343386,7 @@ and returns a data frame of gene-sets, their p-values, q-values derived from net sc:url "https://cran.r-project.org/web/packages/netgsa/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602 ; @@ -329030,7 +343405,7 @@ and returns a data frame of gene-sets, their p-values, q-values derived from net "Nicolas Staedler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -329049,7 +343424,7 @@ and returns a data frame of gene-sets, their p-values, q-values derived from net sc:url "http://lmmd.ecust.edu.cn/netinfer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3304, @@ -329070,7 +343445,7 @@ Tools for managing large sets of network data and performing whole network analy sc:url "https://cran.r-project.org/package=netjack" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -329090,7 +343465,7 @@ Tools for managing large sets of network data and performing whole network analy biotools:primaryContact "Lluís Barceló-Coblijn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -329107,7 +343482,7 @@ Tools for managing large sets of network data and performing whole network analy biotools:primaryContact "Matt Biggs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -329127,7 +343502,7 @@ Given genetic associations from a Phenome-Wide Association Study (PheWAS), a dis sc:url "https://hdpm.biomedinfolab.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -329146,7 +343521,7 @@ Given genetic associations from a Phenome-Wide Association Study (PheWAS), a dis "G. Bader" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749 ; @@ -329166,8 +343541,32 @@ Given genetic associations from a Phenome-Wide Association Study (PheWAS), a dis sc:url "https://alpha.dmi.unict.it/netmatchstar/netmatchstar.html" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0218, + edam:topic_0602, + edam:topic_0769, + edam:topic_3473 ; + sc:citation , + "pmcid:PMC8733431", + "pubmed:35013714" ; + sc:description "On-the-fly knowledge network construction from biomedical literature." ; + sc:featureList edam:operation_3349, + edam:operation_3625, + edam:operation_3907, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "NETME" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://netme.click/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -329192,14 +343591,14 @@ Environment files include lists of metabolites in their KEGG accessions.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3534 ; @@ -329224,14 +343623,14 @@ Environment files include lists of metabolites in their KEGG accessions.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3534 ; sc:citation , @@ -329253,14 +343652,14 @@ Environment files include lists of metabolites in their KEGG accessions.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3534 ; @@ -329283,14 +343682,14 @@ Environment files include lists of metabolites in their KEGG accessions.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3534 ; @@ -329314,14 +343713,14 @@ Environment files include lists of metabolites in their KEGG accessions.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3534 ; @@ -329345,14 +343744,14 @@ Environment files include lists of metabolites in their KEGG accessions.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3534 ; sc:citation , @@ -329373,7 +343772,7 @@ Environment files include lists of metabolites in their KEGG accessions.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -329393,14 +343792,14 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0160 ; @@ -329421,18 +343820,18 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0601 ; @@ -329451,7 +343850,7 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that biotools:primaryContact "Ramneek Gupta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -329474,14 +343873,14 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_1974" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0601 ; @@ -329504,7 +343903,7 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -329528,14 +343927,14 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0160 ; @@ -329557,18 +343956,18 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -329590,14 +343989,14 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0601 ; sc:author ; @@ -329618,18 +344017,18 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0601 ; sc:citation , @@ -329650,18 +344049,18 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0601 ; sc:author ; @@ -329682,18 +344081,18 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3510 ; @@ -329711,18 +344110,18 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3511, edam:topic_3512 ; @@ -329744,7 +344143,7 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that sc:url "http://www.cbs.dtu.dk/services/NetPGene/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "The NET Prediction Utility can be used to compute predicted normalized elution time (NET) values for a list of peptide sequences." ; @@ -329756,7 +344155,7 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that sc:url "http://omics.pnl.gov/software/normalized-elution-time-net-prediction-utility" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0154 ; @@ -329776,7 +344175,7 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that biotools:primaryContact "David J. Wild" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -329796,7 +344195,7 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that biotools:primaryContact "Fabian Schmich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -329811,7 +344210,7 @@ NetMix is an algorithm for identifying altered subnetworks with node scores that biotools:primaryContact "Michael R Brent" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -329831,7 +344230,7 @@ This is the repository for NetQuilt, a multispecies network-based protein functi sc:url "https://github.com/nowittynamesleft/NetQuilt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3293 ; @@ -329849,7 +344248,7 @@ This is the repository for NetQuilt, a multispecies network-based protein functi sc:url "https://github.com/lutteropp/NetRAX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -329872,7 +344271,7 @@ This is the repository for NetQuilt, a multispecies network-based protein functi biotools:primaryContact "Simon Dirmeier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -329891,8 +344290,36 @@ This is the repository for NetQuilt, a multispecies network-based protein functi sc:url "http://bioconductor.org/packages/release/bioc/html/netresponse.html" ; biotools:primaryContact "Leo Lahti" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2295" ; + sc:name "Gene ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0780, + edam:topic_3170, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC9356536", + "pubmed:35932239" ; + sc:description "Network-based Rice Expression Analysis Server for abiotic stress conditions." ; + sc:featureList edam:operation_0224, + edam:operation_0314, + edam:operation_3463, + edam:operation_3501, + edam:operation_3766 ; + sc:isAccessibleForFree true ; + sc:name "NetREx" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://bioinf.iiit.ac.in/netrex/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -329910,8 +344337,33 @@ This is the repository for NetQuilt, a multispecies network-based protein functi sc:url "http://bioconductor.org/packages/release/bioc/html/NetSAM.html" ; biotools:primaryContact "Bing Zhang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0203, + edam:topic_0602, + edam:topic_0769, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8796424", + "pubmed:35090393" ; + sc:description "A network analysis pipeline for RNA-Seq time series data." ; + sc:featureList edam:operation_1781, + edam:operation_3223, + edam:operation_3463, + edam:operation_3565, + edam:operation_3766 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "NetSeekR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/igbb-popescu-lab/NetSeekR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0128, @@ -329930,7 +344382,7 @@ An edge-list and the corresponding generated network are however composed of two sc:url "http://web.rniapps.net/netsets" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2640 ; @@ -329943,7 +344395,7 @@ An edge-list and the corresponding generated network are however composed of two sc:url "http://www.lagelab.org/resources/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0602 ; @@ -329962,7 +344414,7 @@ An edge-list and the corresponding generated network are however composed of two biotools:primaryContact "Barbara Di Camillo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -329983,8 +344435,29 @@ An edge-list and the corresponding generated network are however composed of two sc:url "http://bioconductor.org/packages/release/bioc/html/netSmooth.html" ; biotools:primaryContact "Jonathan Ronen" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0203, + edam:topic_3068 ; + sc:citation , + "pubmed:34849581" ; + sc:description "Prediction of solubility and usability of proteins expressed in E. coli" ; + sc:featureList edam:operation_0409 ; + sc:isAccessibleForFree true ; + sc:name "NetSolP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://services.healthtech.dtu.dk/service.php?NetSolP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -330001,14 +344474,14 @@ An edge-list and the corresponding generated network are however composed of two a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3511 ; @@ -330028,7 +344501,7 @@ An edge-list and the corresponding generated network are however composed of two biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation "pubmed:26805938" ; @@ -330041,14 +344514,14 @@ An edge-list and the corresponding generated network are however composed of two a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2085" ; - sc:name "Structure report" ; - sc:sameAs "http://edamontology.org/data_2085" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2085" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0082 ; @@ -330069,14 +344542,12 @@ An edge-list and the corresponding generated network are however composed of two a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0602 ; @@ -330093,7 +344564,7 @@ An edge-list and the corresponding generated network are however composed of two sc:url "http://bioinformatics.intec.ugent.be/netter/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3293, @@ -330110,7 +344581,7 @@ An edge-list and the corresponding generated network are however composed of two biotools:primaryContact "Miguel Arenas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168, @@ -330130,14 +344601,14 @@ An edge-list and the corresponding generated network are however composed of two a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2085" ; - sc:name "Structure report" ; - sc:sameAs "http://edamontology.org/data_2085" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2085" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082 ; sc:citation ; @@ -330155,14 +344626,14 @@ An edge-list and the corresponding generated network are however composed of two a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3320 ; sc:citation , @@ -330182,7 +344653,7 @@ An edge-list and the corresponding generated network are however composed of two sc:url "http://cbs.dtu.dk/services/NetUTR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -330205,7 +344676,7 @@ An edge-list and the corresponding generated network are however composed of two biotools:primaryContact "Yi Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -330223,7 +344694,7 @@ An edge-list and the corresponding generated network are however composed of two sc:url "http://netview.tigem.it/netview_project/netview_tools.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -330240,7 +344711,7 @@ An edge-list and the corresponding generated network are however composed of two biotools:primaryContact "Avi Ma’ayan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation "pmcid:PMC5513407", @@ -330254,7 +344725,7 @@ An edge-list and the corresponding generated network are however composed of two sc:url "http://bib.fleming.gr:3838/NAP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -330272,7 +344743,7 @@ An edge-list and the corresponding generated network are however composed of two biotools:primaryContact "Saket Navlakha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2885, edam:topic_3974 ; @@ -330289,14 +344760,12 @@ An edge-list and the corresponding generated network are however composed of two a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -330312,7 +344781,7 @@ An edge-list and the corresponding generated network are however composed of two sc:url "http://bioinformatics.psb.ugent.be/software/details/Network-Motif-Clustering-Toolbox" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0199, @@ -330335,7 +344804,7 @@ An edge-list and the corresponding generated network are however composed of two biotools:primaryContact "Thanos Mourikis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0128, @@ -330359,7 +344828,7 @@ An edge-list and the corresponding generated network are however composed of two biotools:primaryContact "Jianguo Xia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0203, @@ -330378,18 +344847,18 @@ An edge-list and the corresponding generated network are however composed of two a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -330410,7 +344879,7 @@ An edge-list and the corresponding generated network are however composed of two biotools:primaryContact "Ka Yee Yeung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3050, @@ -330428,20 +344897,41 @@ The NetworkExtinction package contains the following man pages: chilean_intertid sc:name "NetworkExtinction" ; sc:url "https://rdrr.io/cran/NetworkExtinction/man/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0602, + edam:topic_0625, + edam:topic_2885, + edam:topic_3517 ; + sc:citation ; + sc:description "A network-based approach for genome-wide association studies in structured populations." ; + sc:featureList edam:operation_3196, + edam:operation_3436, + edam:operation_3791 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "networkGWAS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BorgwardtLab/networkGWAS.git" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ], + sc:additionalType "http://edamontology.org/data_2299" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2775" ; - sc:name "Kinase name" ; - sc:sameAs "http://edamontology.org/data_2775" ] ; + sc:additionalType "http://edamontology.org/data_2775" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Kinase name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -330460,7 +344950,7 @@ The NetworkExtinction package contains the following man pages: chilean_intertid sc:url "http://www.networkin.info/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -330475,7 +344965,7 @@ The NetworkExtinction package contains the following man pages: chilean_intertid sc:url "http://apps.cytoscape.org/apps/networkrandomizer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -330495,7 +344985,7 @@ netZoo{R,Py,M,C} is a network biology package for the reconstruction and analysi sc:url "http://netzoo.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -330517,8 +345007,53 @@ netZoo{R,Py,M,C} is a network biology package for the reconstruction and analysi sc:softwareHelp ; sc:url "https://github.com/haoharryfeng/NeuCA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3304, + edam:topic_3315, + edam:topic_3384, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9207992", + "pubmed:35733428" ; + sc:description "A scalable computational framework for multiscale exploration of the brain's dynamical organization." ; + sc:featureList edam:operation_1812, + edam:operation_3891, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause-Clear" ; + sc:name "NeuMapper" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/braindynamicslab/neumapper" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_2885, + edam:topic_3168, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC8963326", + "pubmed:35020805" ; + sc:description "A data-adaptive Bayesian regression approach for polygenic risk prediction." ; + sc:featureList edam:operation_3196, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "NeuPred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/shuangsong0110/NeuPred" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0769, @@ -330545,10 +345080,10 @@ Query plugins generate a form to take user input and query the neuPrint cypher a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -330568,30 +345103,8 @@ Query plugins generate a form to take user input and query the neuPrint cypher a "Windows" ; sc:url "https://github.com/ai-sandbox/neural-admixture" . - a sc:SoftwareApplication ; - sc:additionalType "Command-line tool" ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0634, - edam:topic_2640, - edam:topic_3360, - edam:topic_3474 ; - sc:citation ; - sc:description """Prediction of breast cancer proteins using molecular descriptors and artificial neural networks. - -neural-networks-for-breast-cancer-proteins. - -Machine Learning for breast cancer protein screening. - -This project is a collaboration from different institutions:.""" ; - sc:featureList edam:operation_2436, - edam:operation_3439, - edam:operation_3901 ; - sc:license "MIT" ; - sc:name "neural networks breast cancer proteins" ; - sc:url "https://github.com/muntisa/neural-networks-for-breast-cancer-proteins" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0081, @@ -330612,7 +345125,7 @@ This project is a collaboration from different institutions:.""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2640, @@ -330634,7 +345147,7 @@ CaPTk is a software platform, written in C++, for analysis of radiographic image sc:url "http://www.cbica.upenn.edu/captk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -330657,8 +345170,30 @@ This documentation contains everything you need to know about NEURO-LEARN, inclu sc:softwareHelp ; sc:url "https://www.github.com/Raniac/NEURO-LEARN" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_3063, + edam:topic_3263, + edam:topic_3305, + edam:topic_3419 ; + sc:citation , + "pmcid:PMC9036423", + "pubmed:35459671" ; + sc:description "Electronic health record (EHR) trusted research environment (TRE) to support mental healthcare analytics with real-world data." ; + sc:featureList edam:operation_0337, + edam:operation_3283, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:name "NeuroBlu" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.neuroblu.ai" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Workflow" ; sc:applicationSubCategory edam:topic_0203, @@ -330676,8 +345211,31 @@ This documentation contains everything you need to know about NEURO-LEARN, inclu sc:url "https://voineagulab.github.io/NeuroCirc/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3304, + edam:topic_3334, + edam:topic_3421, + edam:topic_3444, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8528833", + "pubmed:34671076" ; + sc:description "Software for microscale brain network dynamics." ; + sc:featureList edam:operation_3435, + edam:operation_3891, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "CC0-1.0" ; + sc:name "Neurocraft" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.neurocraft.co.uk/#download" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3384 ; @@ -330692,7 +345250,7 @@ This documentation contains everything you need to know about NEURO-LEARN, inclu "Yaroslav O Halchenko" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3071 ; @@ -330709,7 +345267,7 @@ This documentation contains everything you need to know about NEURO-LEARN, inclu sc:url "http://neuroelectro.org/api/docs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3304, @@ -330729,7 +345287,7 @@ This documentation contains everything you need to know about NEURO-LEARN, inclu biotools:primaryContact "Brad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3299, @@ -330748,8 +345306,28 @@ Read the gentle introduction to neurolib for an overview of the basic functional sc:name "neurolib" ; sc:url "https://neurolib-dev.github.io/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3304, + edam:topic_3384, + edam:topic_3407 ; + sc:citation ; + sc:description "Structural and functional interpretation of brain maps." ; + sc:featureList edam:operation_2429, + edam:operation_2436, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "neuromaps" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://netneurolab.github.io/neuromaps" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3300, @@ -330769,8 +345347,32 @@ Read the gentle introduction to neurolib for an overview of the basic functional sc:url "http://www.neuromatic.thinkrandom.com/" ; biotools:primaryContact "Jason S. Rothman" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3304, + edam:topic_3318, + edam:topic_3382, + edam:topic_3474, + edam:topic_3500 ; + sc:citation , + , + "pubmed:35545713", + "pubmed:35545716" ; + sc:description "Neuromechanical model of adult Drosophila melanogaster." ; + sc:featureList edam:operation_2426, + edam:operation_3891, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "NeuroMechFly" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/NeLy-EPFL/NeuroMechFly" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0108, @@ -330789,7 +345391,7 @@ Read the gentle introduction to neurolib for an overview of the basic functional sc:url "http://NeuroML-DB.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3304, @@ -330805,7 +345407,7 @@ Read the gentle introduction to neurolib for an overview of the basic functional sc:url "http://phet.colorado.edu/en/simulation/neuron" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3304, @@ -330824,7 +345426,7 @@ Read the gentle introduction to neurolib for an overview of the basic functional "Robert Blum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3334, @@ -330842,7 +345444,7 @@ Read the gentle introduction to neurolib for an overview of the basic functional sc:url "https://sites.google.com/site/neuroncyto/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3300, @@ -330862,7 +345464,7 @@ Read the gentle introduction to neurolib for an overview of the basic functional sc:url "https://github.com/50-Cent/NeuroPath2Path.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3382 ; @@ -330879,7 +345481,7 @@ Read the gentle introduction to neurolib for an overview of the basic functional biotools:primaryContact "Jacob T. Robinson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3308, @@ -330901,8 +345503,24 @@ Read the gentle introduction to neurolib for an overview of the basic functional biotools:primaryContact "For scientific enquiries and technical enquiries", "Solange Karsenty (For web issues)" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC6435694", + "pubmed:30914676" ; + sc:description "NeuroPIpred is an in silico method, which is developed to predict and design insect neuropeptides with better efficacy for controlling pest from infesting various crops." ; + sc:featureList edam:operation_2945 ; + sc:name "neuropipred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/neuropipred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Suite" ; sc:applicationSubCategory edam:topic_0121, @@ -330921,7 +345539,7 @@ Read the gentle introduction to neurolib for an overview of the basic functional biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -330939,7 +345557,7 @@ Read the gentle introduction to neurolib for an overview of the basic functional biotools:primaryContact "Jonathan V. Sweedler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2269, @@ -330960,7 +345578,7 @@ Read the gentle introduction to neurolib for an overview of the basic functional "Hiroyuki Kurata" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3315, @@ -330979,7 +345597,7 @@ NeuroRA is an easy-to-use toolbox based on Python, which can do some works about sc:url "https://neurora.github.io/NeuroRA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -331001,7 +345619,7 @@ NeuroRA is an easy-to-use toolbox based on Python, which can do some works about biotools:primaryContact "NIF Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3334 ; @@ -331017,7 +345635,7 @@ NeuroRA is an easy-to-use toolbox based on Python, which can do some works about biotools:primaryContact "Juan Camilo Vasquez-Correa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -331033,8 +345651,28 @@ Neurotoxicants are an important class of hazardous chemicals.""" ; sc:name "NeurotoxKb" ; sc:url "https://cb.imsc.res.in/neurotoxkb/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3384, + edam:topic_3444, + edam:topic_3474 ; + sc:citation , + "pubmed:35460019" ; + sc:description "Explainability of deep neural networks for MRI analysis of brain tumors." ; + sc:featureList edam:operation_0337, + edam:operation_3443, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "NeuroXAI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/razeineldin/NeuroXAI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0632, @@ -331055,7 +345693,7 @@ mega353.fasta A target file for use with target enrichment datasets captured usi sc:url "https://github.com/chrisjackson-pellicle/NewTargets" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0602, @@ -331079,7 +345717,7 @@ mega353.fasta A target file for use with target enrichment datasets captured usi sc:url "http://pauling.mbu.iisc.ac.in/NOD/NOD/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -331094,14 +345732,12 @@ mega353.fasta A target file for use with target enrichment datasets captured usi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -331132,14 +345768,12 @@ mega353.fasta A target file for use with target enrichment datasets captured usi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_3512 ; @@ -331161,14 +345795,12 @@ mega353.fasta A target file for use with target enrichment datasets captured usi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -331198,7 +345830,7 @@ mega353.fasta A target file for use with target enrichment datasets captured usi sc:url "http://emboss.open-bio.org/rel/rel6/apps/newcpgseek.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0654 ; @@ -331212,7 +345844,7 @@ mega353.fasta A target file for use with target enrichment datasets captured usi biotools:primaryContact "Wei Zheng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0622, @@ -331230,10 +345862,9 @@ mega353.fasta A target file for use with target enrichment datasets captured usi a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -331263,7 +345894,7 @@ mega353.fasta A target file for use with target enrichment datasets captured usi sc:url "http://emboss.open-bio.org/rel/rel6/apps/newseq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0637 ; @@ -331274,7 +345905,7 @@ mega353.fasta A target file for use with target enrichment datasets captured usi sc:url "http://www.ebi.ac.uk/newt/display" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -331296,7 +345927,7 @@ mega353.fasta A target file for use with target enrichment datasets captured usi biotools:primaryContact "Newt-Omics Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -331316,7 +345947,7 @@ Newt is a free, web based, open source viewer and editor for pathways in Systems sc:url "http://newteditor.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -331336,7 +345967,7 @@ Newt is a free, web based, open source viewer and editor for pathways in Systems sc:url "https://bioconductor.org/packages/NewWave/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Nexalign is a program to align millions of short reads from next-generation sequencing data sets to reference genomes" ; @@ -331349,14 +345980,13 @@ Newt is a free, web based, open source viewer and editor for pathways in Systems a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0797 ; @@ -331372,8 +346002,32 @@ Newt is a free, web based, open source viewer and editor for pathways in Systems sc:softwareHelp ; sc:url "http://www.nextbio.com/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Suite" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_0769, + edam:topic_2258, + edam:topic_2840, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC8956870", + "pubmed:35386103" ; + sc:description "A software suite to analyse and model toxicogenomics data." ; + sc:featureList edam:operation_3223, + edam:operation_3463, + edam:operation_3501, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Nextcast" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/fhaive/nextcast" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -331387,7 +346041,7 @@ Newt is a free, web based, open source viewer and editor for pathways in Systems sc:url "http://www.tgac.ac.uk/nextclip/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:description "NextDenovo is a string graph-based de novo assembler for long reads (CLR, HiFi and ONT). It uses a \"correct-then-assemble\" strategy similar to canu (no correction step for PacBio Hifi reads), but requires significantly less computing resources and storages." ; @@ -331399,7 +346053,7 @@ Newt is a free, web based, open source viewer and editor for pathways in Systems biotools:primaryContact "Nextomics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0622, edam:topic_0769, @@ -331430,7 +346084,7 @@ Newt is a free, web based, open source viewer and editor for pathways in Systems . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3299, edam:topic_3301 ; @@ -331444,7 +346098,7 @@ Newt is a free, web based, open source viewer and editor for pathways in Systems biotools:primaryContact "Bedford T" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "A collection of links to scripts available for working with data generated by new sequencing technologies." ; @@ -331457,7 +346111,7 @@ Newt is a free, web based, open source viewer and editor for pathways in Systems biotools:primaryContact "Electronic helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -331481,7 +346135,7 @@ A desktop application for analyzing next generation sequencing data. It does not "Technical Service" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0102, @@ -331500,8 +346154,35 @@ A desktop application for analyzing next generation sequencing data. It does not sc:url "http://cibiv.github.io/NextGenMap/" ; biotools:primaryContact "Fritz J. Sedlazeck" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3170, + edam:topic_3316, + edam:topic_3673, + edam:topic_3930 ; + sc:citation , + "pmcid:PMC8796378", + "pubmed:34788790" ; + sc:description "A comprehensive pipeline for computational neoantigen prediction." ; + sc:featureList edam:operation_0252, + edam:operation_3227, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause-Clear" ; + sc:name "nextNEOpi" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/icbi-lab/nextNEOpi" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3314, @@ -331524,7 +346205,7 @@ A desktop application for analyzing next generation sequencing data. It does not sc:url "https://github.com/VlachosGroup/nextorch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -331557,7 +346238,7 @@ A desktop application for analyzing next generation sequencing data. It does not biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "SPARQL endpoint", @@ -331577,7 +346258,7 @@ A desktop application for analyzing next generation sequencing data. It does not sc:url "https://www.npmjs.com/package/nextprot-cli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -331595,7 +346276,7 @@ A desktop application for analyzing next generation sequencing data. It does not biotools:primaryContact "Kai Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0607, edam:topic_0611, @@ -331614,20 +346295,41 @@ A desktop application for analyzing next generation sequencing data. It does not sc:url "http://www.informatics.abbott/us/en/offerings/lims" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0102, + edam:topic_0602, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9191205", + "pubmed:35552638" ; + sc:description "An interactive and programmable visualization of biological networks in Python." ; + sc:featureList edam:operation_2429, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Nezzle" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/dwgoon/nezzle" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3006" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0097, @@ -331663,14 +346365,14 @@ A desktop application for analyzing next generation sequencing data. It does not a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0203, @@ -331703,18 +346405,18 @@ A desktop application for analyzing next generation sequencing data. It does not a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3006" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0622, @@ -331750,18 +346452,18 @@ A desktop application for analyzing next generation sequencing data. It does not a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0858" ; - sc:name "Sequence signature matches" ; - sc:sameAs "http://edamontology.org/data_0858" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0858" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence signature matches" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -331799,10 +346501,10 @@ A desktop application for analyzing next generation sequencing data. It does not a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0622, @@ -331832,14 +346534,14 @@ A desktop application for analyzing next generation sequencing data. It does not a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0622, @@ -331877,18 +346579,18 @@ A desktop application for analyzing next generation sequencing data. It does not a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene transcript report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0622, @@ -331930,18 +346632,18 @@ A desktop application for analyzing next generation sequencing data. It does not a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ], + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0622, @@ -331974,29 +346676,32 @@ It's built using Nextflow, a workflow tool to run tasks across multiple compute "2.5.2", "2.6", "2.6.1", - "2.7" ; + "2.7", + "2.7.1", + "2.7.2", + "3.0" ; sc:url "https://nf-co.re/sarek" ; biotools:primaryContact , "Szilvester Juhos" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ], + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_3864" ; + sc:name "RNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0622, @@ -332032,26 +346737,26 @@ It's built using Nextflow, a workflow tool to run tasks across multiple compute a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3914" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Quality control report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3914" ; - sc:name "Quality control report" ; - sc:sameAs "http://edamontology.org/data_3914" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_3975" ; + sc:name "Sequence assembly" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0102, @@ -332063,7 +346768,6 @@ It's built using Nextflow, a workflow tool to run tasks across multiple compute edam:topic_3796 ; sc:author , , - , ; sc:citation , "pubmed:32055031" ; @@ -332082,18 +346786,24 @@ It's built using Nextflow, a workflow tool to run tasks across multiple compute , ; sc:softwareVersion "1.0.0", - "1.1.0" ; + "1.1.0", + "2.0", + "2.1", + "2.2", + "2.3", + "2.3.1", + "2.4", + "2.4.1" ; sc:url "https://nf-co.re/viralrecon" ; biotools:primaryContact , , , - , , , . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -332117,14 +346827,14 @@ It's built using Nextflow, a workflow tool to run tasks across multiple compute a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0203, @@ -332145,14 +346855,14 @@ It's built using Nextflow, a workflow tool to run tasks across multiple compute a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_3174, @@ -332172,7 +346882,7 @@ It's built using Nextflow, a workflow tool to run tasks across multiple compute biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -332190,7 +346900,7 @@ It's built using Nextflow, a workflow tool to run tasks across multiple compute biotools:primaryContact "A. Pascual-Montano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, @@ -332213,7 +346923,7 @@ It's built using Nextflow, a workflow tool to run tasks across multiple compute sc:url "https://github.com/VartikaBisht6197/NFnetFu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0610, @@ -332234,7 +346944,7 @@ It's built using Nextflow, a workflow tool to run tasks across multiple compute biotools:primaryContact "Yang Cao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0092, @@ -332252,7 +346962,7 @@ Circos plots are widely used to display multi-dimensional next-generation genomi sc:url "https://wlcb.oit.uci.edu/NG-Circos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -332270,7 +346980,7 @@ Circos plots are widely used to display multi-dimensional next-generation genomi sc:url "https://ngstar.canada.ca/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, @@ -332288,14 +346998,14 @@ Circos plots are widely used to display multi-dimensional next-generation genomi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1710" ; - sc:name "Structure image" ; - sc:sameAs "http://edamontology.org/data_1710" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1710" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Structure image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Web application" ; @@ -332316,7 +347026,7 @@ Circos plots are widely used to display multi-dimensional next-generation genomi biotools:primaryContact "Alexander Rose" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0621 ; @@ -332337,7 +347047,7 @@ Circos plots are widely used to display multi-dimensional next-generation genomi "Babu Guda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0092, @@ -332356,7 +347066,7 @@ Circos plots are widely used to display multi-dimensional next-generation genomi biotools:primaryContact "Alexander S Rose" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0121, @@ -332378,7 +347088,7 @@ Circos plots are widely used to display multi-dimensional next-generation genomi sc:url "https://apps.embl.de/ngly1browser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -332403,18 +347113,18 @@ NGlyAlignApp_v1.exe -MCRInstaller.exe Note: if end users are unable to download a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Data reference" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168, @@ -332435,7 +347145,7 @@ NGlyAlignApp_v1.exe -MCRInstaller.exe Note: if end users are unable to download biotools:primaryContact "Philipp Rescheneder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -332456,7 +347166,7 @@ Prediction of spontaneous asparagine deamidation at a proteomic scale.""" ; sc:url "https://ngome.proteinphysiologylab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0749, @@ -332478,7 +347188,7 @@ We collected all the proteins from UniProt with GO molecular function annotation sc:url "https://github.com/ngphubinh/adaptors" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -332501,7 +347211,7 @@ NGS-Integrator is a Java-based commandline tool that integrates multiple genome- sc:url "https://hpcwebapps.cit.nih.gov/ESBL/NGS-Integrator/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3173, edam:topic_3175, @@ -332519,7 +347229,7 @@ NGS-Integrator is a Java-based commandline tool that integrates multiple genome- sc:url "http://code.google.com/p/ngs-pipeline/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0632, @@ -332545,7 +347255,7 @@ NGS-PrimerPlex can be run as a Docker image. In this way you only need to instal sc:url "https://github.com/aakechin/NGS-PrimerPlex/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3572 ; @@ -332561,7 +347271,7 @@ NGS-PrimerPlex can be run as a Docker image. In this way you only need to instal sc:url "http://www.ngs-qc.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3120 ; @@ -332578,7 +347288,7 @@ NGS-PrimerPlex can be run as a Docker image. In this way you only need to instal sc:url "https://sites.ualberta.ca/~stothard/downloads/NGS-SNP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168, @@ -332598,7 +347308,7 @@ NGS-PrimerPlex can be run as a Docker image. In this way you only need to instal biotools:primaryContact "Flavio Mignone" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3056, @@ -332622,7 +347332,7 @@ NGS-PrimerPlex can be run as a Docker image. In this way you only need to instal "Ida Moltke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3168, @@ -332637,7 +347347,7 @@ The shiny app that accompanies the ngsReports R package""" ; sc:url "https://github.com/UofABioinformaticsHub/shinyNgsreports" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -332650,25 +347360,20 @@ The shiny app that accompanies the ngsReports R package""" ; sc:url "http://bioinf.comav.upv.es/ngs_backbone/index.html" ; biotools:primaryContact "Ngs backbone team" . - a sc:SoftwareApplication ; - sc:description "CD Genomics provides CRISPR-Cas9 knockout validation and potential off-target detection in a high-throughput and cost-effective manner by harnessing advanced next generation sequencing (NGS). Our team members have experience in both genome editing and NGS, enabling extensive support to your research. CD Genomics is able to help you to detect the potential off-target effects via targets enrichment and deep sequencing at fairly inexpensive prices." ; - sc:name "NGS for CRISPR knockout validation" ; - sc:url "https://www.cd-genomics.com/crispr-mutation-sequencing.html" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0607, edam:topic_3168, @@ -332689,7 +347394,7 @@ The shiny app that accompanies the ngsReports R package""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -332707,7 +347412,7 @@ The shiny app that accompanies the ngsReports R package""" ; sc:url "http://ngscat.clinbioinfosspa.es/ngscat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3170, @@ -332728,7 +347433,7 @@ The shiny app that accompanies the ngsReports R package""" ; biotools:primaryContact "Peter J. Parkcorresponding author3,5" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0659, @@ -332745,7 +347450,7 @@ The shiny app that accompanies the ngsReports R package""" ; biotools:primaryContact "Unai López de Heredia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0769, @@ -332764,7 +347469,7 @@ The shiny app that accompanies the ngsReports R package""" ; biotools:primaryContact "Bode A Olukolu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -332783,7 +347488,7 @@ The shiny app that accompanies the ngsReports R package""" ; biotools:primaryContact "Xiaobei Zhao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0769, @@ -332804,7 +347509,7 @@ The shiny app that accompanies the ngsReports R package""" ; "Dr Stephen J Newhouse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0749, @@ -332824,8 +347529,25 @@ The shiny app that accompanies the ngsReports R package""" ; sc:url "http://bioinfo2.ugr.es/NGSmethDB/gbrowse/" ; biotools:primaryContact "Michael Hackenberg" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3168, + edam:topic_3307 ; + sc:citation , + "pubmed:35085089" ; + sc:description "A medium for the representation and exchange of NGS data." ; + sc:featureList edam:operation_3096 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "NGSML" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:url "http://www.sysbio.org.cn/NGSML" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -332841,7 +347563,7 @@ The shiny app that accompanies the ngsReports R package""" ; biotools:primaryContact "Arief Gusnanto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0654, @@ -332857,7 +347579,7 @@ The shiny app that accompanies the ngsReports R package""" ; biotools:primaryContact "Ida Moltke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, @@ -332875,7 +347597,7 @@ The method is implemented in an R package and as a commandline based C++ program sc:url "https://github.com/KHanghoj/NGSremix" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053, @@ -332891,7 +347613,7 @@ The method is implemented in an R package and as a commandline based C++ program biotools:primaryContact "Dr. Peter Frommolt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056, edam:topic_3168 ; @@ -332905,7 +347627,7 @@ The method is implemented in an R package and as a commandline based C++ program biotools:primaryContact "Matteo Fumagalli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3308 ; @@ -332926,7 +347648,7 @@ The method is implemented in an R package and as a commandline based C++ program "Yunlong Liu (PI)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:19855106" ; @@ -332939,15 +347661,37 @@ The method is implemented in an R package and as a commandline based C++ program sc:url "http://ngsview.sourceforge.net/" ; biotools:primaryContact "Erik Arner" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_0632, + edam:topic_0749, + edam:topic_3068, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC9029197", + "pubmed:35448733" ; + sc:description "An Open-Access Platform for the Genomics of Brassica campestris (syn. Brassica rapa) ssp. chinensis." ; + sc:featureList edam:operation_0308, + edam:operation_2421, + edam:operation_3216, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:name "NHCCDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://tbir.njau.edu.cn/NhCCDbHubs/index.jsp" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, edam:topic_0602, edam:topic_2640, edam:topic_3512 ; - sc:citation "pubmed:14612509" ; sc:description "Protocols, analysis and resources; BLAST against the 15K set cDNA library clones (from 15,000 human UniGene clusters; clones are available)." ; sc:featureList edam:operation_0313, edam:operation_0314, @@ -332959,30 +347703,8 @@ The method is implemented in an R package and as a commandline based C++ program biotools:primaryContact "Javed Khan", "Paul S. Meltzer" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3335, - edam:topic_3489 ; - sc:citation , - "pmcid:PMC6928464", - "pubmed:31679329" ; - sc:description """Family tree database of the National Health Information Database in Korea. - -h-well 국민건강보험 National health insurance sharing service. - -안녕하세요, 국민건강보험공단 자료공유서비스(NHISS) 입니다. - -건강보험자료 공유서비스 근거중심의 보건의료 정책 및 학술연구 지원을 선도합니다. - -[맞춤형DB] [맞춤형 DB] 데이터셋 홈페이지 추출 ... 20-01-08. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'NHID', 'DB'""" ; - sc:featureList edam:operation_0483 ; - sc:name "nhiss" ; - sc:url "http://nhiss.nhis.or.kr" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0121, @@ -333004,11 +347726,10 @@ h-well 국민건강보험 National health insurance sharing service. "Zhen Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0804, - edam:topic_2830, edam:topic_3510 ; sc:citation "pubmed:17426378" ; sc:description "Allows to predict binding peptide for 67 MHC Class I alleles. This also allow to predict the proteasome cleavage site and binding peptide that have cleavage site at C terminus (potential T cell epitopes)." ; @@ -333019,11 +347740,11 @@ h-well 국민건강보험 National health insurance sharing service. "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/nhlapred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/nhlapred/" ; biotools:primaryContact "Dr G P S Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3384, @@ -333042,7 +347763,7 @@ This is a pre-release of skull-stripped brian masks of T1w images for 136 macaqu sc:url "https://github.com/HumanBrainED/NHP-BrainExtraction" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3293, @@ -333058,7 +347779,7 @@ This is a pre-release of skull-stripped brian masks of T1w images for 136 macaqu biotools:primaryContact "Bastien Boussau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -333075,7 +347796,7 @@ This is a pre-release of skull-stripped brian masks of T1w images for 136 macaqu biotools:primaryContact "Nigel J. Burroughs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814, @@ -333091,7 +347812,7 @@ This is a pre-release of skull-stripped brian masks of T1w images for 136 macaqu sc:url "http://sbcb.inf.ufrgs.br/npas/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -333110,7 +347831,7 @@ This is a pre-release of skull-stripped brian masks of T1w images for 136 macaqu biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -333130,14 +347851,13 @@ This is a pre-release of skull-stripped brian masks of T1w images for 136 macaqu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1096" ; - sc:name "Sequence accession (protein)" ; - sc:sameAs "http://edamontology.org/data_1096" ] ; + sc:additionalType "http://edamontology.org/data_1096" ; + sc:name "Sequence accession (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Experiment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -333152,8 +347872,28 @@ This is a pre-release of skull-stripped brian masks of T1w images for 136 macaqu sc:url "http://www.expasy.org/world-2dpage/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3170, + edam:topic_3308 ; + sc:citation ; + sc:description "Comprehensive visualization of cell-cell interactions in single-cell and spatial transcriptomics with NICHES." ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "NICHES" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://github.com/msraredon/NICHES" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -333172,7 +347912,7 @@ This is a pre-release of skull-stripped brian masks of T1w images for 136 macaqu biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0804, @@ -333189,7 +347929,7 @@ This is a pre-release of skull-stripped brian masks of T1w images for 136 macaqu sc:url "http://immunet.cn/nie/cgi-bin/nieluter.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3473 ; @@ -333203,7 +347943,7 @@ This is a pre-release of skull-stripped brian masks of T1w images for 136 macaqu sc:url "http://nif-services.neuinfo.org/servicesv1/application.wadl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -333219,8 +347959,34 @@ The main function is NIFA() and there is a simulated example under the directory sc:name "NIFA" ; sc:url "https://github.com/wgmao/NIFA" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0154, + edam:topic_0605, + edam:topic_0821, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8956849", + "pubmed:35360826" ; + sc:description "An informatics program for identification of NifH proteins using deep neural networks." ; + sc:featureList edam:operation_3472, + edam:operation_3767, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "CC0-1.0" ; + sc:name "NIFtHool" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://nifthool.anvil.app/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3444 ; @@ -333239,7 +348005,7 @@ The main function is NIFA() and there is a simulated example under the directory biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3300, edam:topic_3334, @@ -333257,7 +348023,7 @@ The main function is NIFA() and there is a simulated example under the directory biotools:primaryContact "Pawel J. Markiewicz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3474 ; @@ -333270,7 +348036,7 @@ The main function is NIFA() and there is a simulated example under the directory biotools:primaryContact "Farshid Sepehrband" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3382 ; @@ -333283,8 +348049,28 @@ The main function is NIFA() and there is a simulated example under the directory sc:name "NIID-Net" ; sc:url "https://github.com/zju3dv/NIID-Net" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3473, + edam:topic_3474 ; + sc:citation ; + sc:description "An R/CRAN package to accomplish NomInal data Mining Analysis." ; + sc:featureList edam:operation_3432, + edam:operation_3557, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "NIMAA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://CRAN.R-project.org/package=NIMAA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0749, @@ -333302,7 +348088,7 @@ Identifying highly mutated regions is a key way that scientists can use on popul sc:url "http://github.gersteinlab.org/nimbus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -333319,14 +348105,13 @@ NIMCE is a network inference method based on information-theoretic to reconstruc a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -333342,7 +348127,7 @@ NIMCE is a network inference method based on information-theoretic to reconstruc sc:url "http://bioinformatics.intec.ugent.be/nimefi/nimefi/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3474, @@ -333355,8 +348140,22 @@ NIMCE is a network inference method based on information-theoretic to reconstruc sc:name "NinimHMDA" ; sc:url "https://github.com/yuanjing-ma/NinimHMDA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0084 ; + sc:description "Nearly Infinite Neighbor Joining Application" ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ninja" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/TravisWheelerLab/NINJA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0166, @@ -333372,7 +348171,7 @@ NIMCE is a network inference method based on information-theoretic to reconstruc biotools:primaryContact "Debnath Pal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, @@ -333390,7 +348189,7 @@ NIMCE is a network inference method based on information-theoretic to reconstruc "Jianjun Hu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0634, @@ -333404,8 +348203,30 @@ NIMCE is a network inference method based on information-theoretic to reconstruc sc:url "http://bioinfo.ut.ee/NIPTMer/" ; biotools:primaryContact "Lauris Kaplinski" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_3070 ; + sc:citation ; + sc:description "Toward optimal fingerprint indexing for large scale genomics." ; + sc:featureList edam:operation_0224, + edam:operation_1812, + edam:operation_3211 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "NIQKI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Malfoy/NIQKI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0602, @@ -333422,7 +348243,7 @@ NIMCE is a network inference method based on information-theoretic to reconstruc biotools:primaryContact "Diego di Bernardo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -333444,8 +348265,28 @@ NIMCE is a network inference method based on information-theoretic to reconstruc sc:url "http://pbil.univ-lyon1.fr/software/njplot.html" ; biotools:primaryContact "Guy Perriere" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0194, + edam:topic_2269 ; + sc:citation , + "pubmed:35196115" ; + sc:description "Scalable Species Tree Inference with External Constraints." ; + sc:featureList edam:operation_0546, + edam:operation_0553, + edam:operation_3478 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "NJst-J" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/RuneBlaze/FASTRAL-constrained" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0218, @@ -333463,7 +348304,7 @@ NL4DV is a Python toolkit that takes a natural language (NL) query about a given sc:url "https://nl4dv.github.io/nl4dv/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -333480,7 +348321,7 @@ NL4DV is a Python toolkit that takes a natural language (NL) query about a given biotools:primaryContact "Xuejun Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "MATLAB script for estimating parameters in NLME growth models" ; @@ -333494,7 +348335,7 @@ NL4DV is a Python toolkit that takes a natural language (NL) query about a given biotools:primaryContact "Mark Damen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2259, @@ -333514,7 +348355,7 @@ NL4DV is a Python toolkit that takes a natural language (NL) query about a given sc:url "https://pypi.org/project/nloed/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3384, @@ -333528,8 +348369,26 @@ This application predicts likelihood of home discharge following craniotomy for sc:name "NLP" ; sc:url "http://nlp-home.insds.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_3416, + edam:topic_3421, + edam:topic_3474 ; + sc:citation , + "pubmed:35412473" ; + sc:description "Natural Language Processing Algorithm for Detection of Incidental Durotomy in Operative Notes." ; + sc:featureList edam:operation_2428 ; + sc:isAccessibleForFree true ; + sc:name "NLP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://sorg-apps.shinyapps.io/nlp_incidental_durotomy/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3077, @@ -333545,7 +348404,7 @@ Understanding the current research trends, problems, and their innovative soluti sc:url "http://nlpexplorer.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0089, @@ -333562,7 +348421,7 @@ Understanding the current research trends, problems, and their innovative soluti biotools:primaryContact "Sven Mika" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0634, @@ -333580,7 +348439,7 @@ Understanding the current research trends, problems, and their innovative soluti biotools:primaryContact "Steuernagel B" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0602, @@ -333601,7 +348460,7 @@ Understanding the current research trends, problems, and their innovative soluti biotools:primaryContact "Alan M Moses" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3382 ; @@ -333613,8 +348472,29 @@ PyTorch implementations of the paper: "Neuron Linear Transformation: Modeling th sc:name "NLT" ; sc:url "https://github.com/taohan10200/NLT" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0659, + edam:topic_3170, + edam:topic_3474, + edam:topic_3512 ; + sc:citation ; + sc:description "Predicting 2’-O-Methylation (Nm) Sites in Nanopore RNA Sequencing Data." ; + sc:featureList edam:operation_2436, + edam:operation_3185, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Nm-Nano" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Janga-Lab/Nm-Nano" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3512 ; @@ -333627,8 +348507,29 @@ PyTorch implementations of the paper: "Neuron Linear Transformation: Modeling th sc:url "https://sourceforge.net/projects/transcriptome-analysis/" ; biotools:primaryContact "Feng-Chi Chen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0208, + edam:topic_0634, + edam:topic_3336, + edam:topic_3374, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8825773", + "pubmed:34875000" ; + sc:description "A Network-Based Drug Repurposing Method Via Non-Negative Matrix Factorization." ; + sc:featureList edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "NMF-DR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sshaghayeghs/NMF-DR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3071, @@ -333643,7 +348544,7 @@ PyTorch implementations of the paper: "Neuron Linear Transformation: Modeling th biotools:primaryContact "Alberto Pascual-Montano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3345, edam:topic_3382, @@ -333659,7 +348560,7 @@ PyTorch implementations of the paper: "Neuron Linear Transformation: Modeling th biotools:primaryContact "Charles Brooks" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -333677,7 +348578,7 @@ we have provided demo data and Pancreatic Cancer data for NMFNA, if you want to sc:url "https://github.com/CDMB-lab/NMFNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -333696,22 +348597,20 @@ NMJ-Analyser requires NMJs to be separated by at least 20um. Images which contai a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2737" ; - sc:name "FIG ID" ; - sc:sameAs "http://edamontology.org/data_2737" ], + sc:additionalType "http://edamontology.org/data_1179" ; + sc:name "NCBI taxonomy ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1179" ; - sc:name "NCBI taxonomy ID" ; - sc:sameAs "http://edamontology.org/data_1179" ] ; + sc:additionalType "http://edamontology.org/data_2737" ; + sc:name "FIG ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0797 ; @@ -333726,7 +348625,7 @@ NMJ-Analyser requires NMJs to be separated by at least 20um. Images which contai sc:url "http://www.nmpdr.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, @@ -333746,7 +348645,7 @@ This code is for reference only as it requires MPI and Gaussian environment whic sc:url "https://github.com/tsudalab/NMR-TS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3444 ; @@ -333762,7 +348661,7 @@ This code is for reference only as it requires MPI and Gaussian environment whic biotools:primaryContact "Alejandro Giorgetti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_1317, @@ -333779,7 +348678,7 @@ This code is for reference only as it requires MPI and Gaussian environment whic biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_2275, @@ -333794,8 +348693,35 @@ This code is for reference only as it requires MPI and Gaussian environment whic sc:softwareHelp ; sc:url "http://psb.kobic.re.kr/nmre/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_3170, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pubmed:34850821" ; + sc:description "Identification of multispecies RNA 2'-O-methylation modification sites from RNA sequences." ; + sc:featureList edam:operation_0250, + edam:operation_3936, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:name "NmRF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://lab.malab.cn/~acy/NmRF" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0593, @@ -333813,14 +348739,13 @@ This code is for reference only as it requires MPI and Gaussian environment whic a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3488" ; - sc:name "NMR spectrum" ; - sc:sameAs "http://edamontology.org/data_3488" ] ; + sc:additionalType "http://edamontology.org/data_3488" ; + sc:name "NMR spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3488" ; - sc:name "NMR spectrum" ; - sc:sameAs "http://edamontology.org/data_3488" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3488" ; + sc:encodingFormat "http://edamontology.org/format_3825" ; + sc:name "NMR spectrum" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0593, @@ -333838,7 +348763,7 @@ This code is for reference only as it requires MPI and Gaussian environment whic "Daniel Schober" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0593, @@ -333859,14 +348784,12 @@ This code is for reference only as it requires MPI and Gaussian environment whic a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3488" ; - sc:name "NMR spectrum" ; - sc:sameAs "http://edamontology.org/data_3488" ] ; + sc:additionalType "http://edamontology.org/data_3488" ; + sc:name "NMR spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_3172 ; @@ -333889,7 +348812,7 @@ This code is for reference only as it requires MPI and Gaussian environment whic biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0593, @@ -333908,7 +348831,7 @@ This code is for reference only as it requires MPI and Gaussian environment whic biotools:primaryContact "Andrey Smelter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0176, @@ -333931,7 +348854,7 @@ This code is for reference only as it requires MPI and Gaussian environment whic biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -333953,16 +348876,37 @@ This project is a collaboration from different institutions:.""" ; sc:name "NN-breastcancerproteins" ; sc:url "https://github.com/muntisa/neural-networks-for-breast-cancer-proteins" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0203, + edam:topic_2640, + edam:topic_3474, + edam:topic_3512 ; + sc:citation ; + sc:description "Neural network-based model for prediction of mRNA sub-cellular localization using distance-based sub-sequence profiles." ; + sc:featureList edam:operation_0314, + edam:operation_2489, + edam:operation_3092 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "NN-RNALoc" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/NeginBabaiha/NN-RNALoc" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0804, edam:topic_2830 ; @@ -333981,7 +348925,7 @@ This project is a collaboration from different institutions:.""" ; "Morten Nielsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0102, @@ -333999,7 +348943,7 @@ This project is a collaboration from different institutions:.""" ; sc:url "http://casp.rnet.missouri.edu/nncon.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -334019,8 +348963,31 @@ This project is a collaboration from different institutions:.""" ; sc:url "http://rna.urmc.rochester.edu/NNDB" ; biotools:primaryContact "David Mathews" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0769, + edam:topic_3304, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9196133", + "pubmed:35712677" ; + sc:description "Mean-Field Based Analysis Tools for Neuronal Network Models." ; + sc:featureList edam:operation_3454, + edam:operation_3860, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "NNMT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/INM-6/nnmt" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -334035,7 +349002,7 @@ This project is a collaboration from different institutions:.""" ; sc:url "http://genomics-pubs.princeton.edu/nnn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518, @@ -334055,7 +349022,7 @@ This project is a collaboration from different institutions:.""" ; biotools:primaryContact "Adi Laurentiu Tarca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -334070,7 +349037,7 @@ This project is a collaboration from different institutions:.""" ; sc:url "http://www.davecurtis.net/bvnorth/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -334091,7 +349058,7 @@ This project is a collaboration from different institutions:.""" ; sc:url "https://github.com/raziyehmasumshah/NNPS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0769, @@ -334112,7 +349079,7 @@ In current research practice, segmentation pipelines are designed manually and w sc:url "https://github.com/MIC-DKFZ/nnUNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3382, @@ -334127,7 +349094,7 @@ This paper presents the Neural Network Verification (NNV) software tool, a set-b sc:url "https://github.com/verivital/nnv/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0089, edam:topic_2259 ; @@ -334143,8 +349110,31 @@ This paper presents the Neural Network Verification (NNV) software tool, a set-b sc:softwareVersion "1.1" ; sc:url "http://nrnb.org/tools/noa/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_0091, + edam:topic_0621, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC8521201", + "pubmed:34704076" ; + sc:description "Protocol for using NoBadWordsCombiner to merge and minimize \"bad words\" from BLAST hits against multiple eukaryotic gene annotation databases." ; + sc:featureList edam:operation_2421, + edam:operation_3092, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "NoBadWordsCombiner" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://hsdfinder.com/combiner/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -334166,7 +349156,7 @@ This paper presents the Neural Network Verification (NNV) software tool, a set-b biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080 ; @@ -334184,7 +349174,7 @@ This paper presents the Neural Network Verification (NNV) software tool, a set-b sc:url "http://www.compbio.dundee.ac.uk/www-nod/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -334198,7 +349188,7 @@ This paper presents the Neural Network Verification (NNV) software tool, a set-b sc:url "https://github.com/xypan1232/node2loc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0602, @@ -334217,14 +349207,12 @@ Rapid development of high-throughput technologies has permitted the identificati a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -334254,7 +349242,7 @@ Rapid development of high-throughput technologies has permitted the identificati sc:url "http://emboss.open-bio.org/rel/rel6/apps/nohtml.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -334271,7 +349259,7 @@ Abstract Motivation Inconsistent, analytical noise introduced either by the sequ sc:url "https://github.com/yry/noiseAnalysis/tree/master/noiseDetection_mRNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -334293,26 +349281,26 @@ Abstract Motivation Inconsistent, analytical noise introduced either by the sequ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3466" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -334330,7 +349318,7 @@ Abstract Motivation Inconsistent, analytical noise introduced either by the sequ biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3382, @@ -334352,30 +349340,30 @@ Training and test for Set12 at the same time.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3466" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -334389,14 +349377,14 @@ Training and test for Set12 at the same time.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -334423,14 +349411,12 @@ Training and test for Set12 at the same time.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -334443,29 +349429,30 @@ Training and test for Set12 at the same time.""" ; sc:softwareVersion "1" ; sc:url "http://genesis.ugent.be/files/costore/Nokoi_utilities.zip" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_3360, - edam:topic_3382, - edam:topic_3407 ; - sc:citation , - "pmcid:PMC6842138", - "pubmed:31706309" ; - sc:description """Quantitative lung morphology: semi-automated measurement of mean linear intercept. - -Our studies focus on predictors of lung function loss in never smoking firefighters from the World Trade Center exposed Fire Department of New York cohort. This group has pre-9/11/01 clinical/spirometric data and continues to have serial post-9/11 assessments. In preliminary data, we demonstrate that elevated serum levels of one such LDL byproduct soon after intense WTC dust exposure is a risk factor for developing abnormal forced expiratory volume in one second (FEV1) years later. This development of lung injury is what we call World Trade Center Lung Injury (WTC-LI). - -Our group has demonstrated that mediators of Metabolic Syndrome, inflammation and vascular injury in serum sampled within 6 months of 9 11 are predictive of eventual abnormal lung function. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'MLI', 'MLI PM-exposed', 'chords', 'MLIactual'""" ; - sc:featureList edam:operation_3435, - edam:operation_3443, - edam:operation_3799 ; - sc:name "nolanlab" ; - sc:url "https://med.nyu.edu/nolanlab" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_3304, + edam:topic_3315, + edam:topic_3318, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9263366", + "pubmed:35811996" ; + sc:description "NoLiTiA is a free, open-source Matlab toolbox for nonlinear time series analysis. It incorporates methods from dynamical systems theory, recurrence quantification analysis and information theory." ; + sc:featureList edam:operation_0337, + edam:operation_3799, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "NoLiTiA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://nolitia.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0176, @@ -334490,7 +349477,7 @@ Our group has demonstrated that mediators of Metabolic Syndrome, inflammation an biotools:primaryContact "Marc Delarue" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -334505,7 +349492,7 @@ Our group has demonstrated that mediators of Metabolic Syndrome, inflammation an sc:url "http://www.miru-vntrplus.org/MIRU/help/helpSOAP.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0196, @@ -334520,7 +349507,7 @@ Our group has demonstrated that mediators of Metabolic Syndrome, inflammation an biotools:primaryContact "Prof. Jürgen Cox" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3384, @@ -334538,7 +349525,7 @@ NOMIS is a free tool to compute normative morphometric values for FreeSurfer 6 d sc:url "https://github.com/medicslab/NOMIS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3399, edam:topic_3421, @@ -334552,22 +349539,8 @@ NOMIS is a free tool to compute normative morphometric values for FreeSurfer 6 d sc:name "nomogram" ; sc:url "https://linjuli1991.shinyapps.io/dynnomapp/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3303 ; - sc:citation , - "pmcid:PMC6921283", - "pubmed:31879551" ; - sc:description """Smartphone Use and Addiction Among University Students. - -Background:Nomophobia, a state of socio-psychological illness, refers to a fear of lack of access to mobile phone, which is thought to be a modern age disorder that causes negative health risks and harmful psychological effects. This study aimed to determine the relationship between the smartphone use and nomophobia disorder among university students. Methods:The study utilized a cross-sectional method in which 320 students were selected via cluster sampling. Data collection tools included a nomophobia and smartphones use questionnaires. Data were analyzed using SPSS 22 software in two sections: descriptive statistics and inferential statistics. Results:The incidence rate of nomophobia among the students was moderate (3.1), and 73% of the students were moderate smartphone users. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_3435 ; - sc:name "nomophobia" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31879551" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0082, @@ -334590,7 +349563,7 @@ Background:Nomophobia, a state of socio-psychological illness, refers to a fear biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3304, @@ -334609,7 +349582,7 @@ Background:Nomophobia, a state of socio-psychological illness, refers to a fear biotools:primaryContact "Massimiliano Versace" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "A statistical non-parametric multivariable test based on the Fisher's method for combination of partial tests." ; @@ -334622,19 +349595,8 @@ Background:Nomophobia, a state of socio-psychological illness, refers to a fear sc:url "https://www.mathworks.com/matlabcentral/fileexchange/69764-non-parametric-multivariate-permutation-test" ; biotools:primaryContact "Juliano Pierezan" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_0202, - edam:topic_2640 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'response-specific', 'irreproducibility', 'Translational', 'medication' | Methodological Challenges in Translational Drug Response Modeling in Cancer | Abstract Translational models directly relating drug response-specific processes observed in vitro to their in vivo role in cancer patients constitute a crucial part of the development of personalized medication. Unfortunately, ongoing research is often confined by the irreproducibility of the results in other contexts. While the inconsistency of pharmacological data has received great attention recently, the computational aspect of this crisis still deserves closer examination. Notably, studies often focus only on isolated model characteristics instead of examining the overall workflow and the interplay of individual model components. Here, we present a systematic investigation of translational models using the R-package FORESEE" ; - sc:featureList edam:operation_3501, - edam:operation_3891 ; - sc:name "non-transferability" ; - sc:url "https://doi.org/10.1101/731836" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -334648,7 +349610,7 @@ Imuputed absolute number of lymphocytes data:.""" ; sc:url "https://hradskyo.shinyapps.io/Non_adherence/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3474, @@ -334665,7 +349627,7 @@ Prediction of non-classically secreted proteins of Gram-positive bacteria.""" ; sc:url "http://lab.malab.cn/~wangchao/softwares/NonClasGP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -334686,7 +349648,7 @@ Prediction of non-classically secreted proteins of Gram-positive bacteria.""" ; biotools:primaryContact "Runsheng Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -334705,7 +349667,7 @@ Prediction of non-classically secreted proteins of Gram-positive bacteria.""" ; biotools:primaryContact "Thomas Braun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal" ; sc:applicationSubCategory edam:topic_0154, @@ -334726,14 +349688,14 @@ NoncoRNA (http: www.ncdtcdb.cn:8080 NoncoRNA ) is a manually curated database of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -334756,7 +349718,7 @@ NoncoRNA (http: www.ncdtcdb.cn:8080 NoncoRNA ) is a manually curated database of biotools:primaryContact "Valeriia Sherina" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3070, @@ -334776,7 +349738,7 @@ NoncoRNA (http: www.ncdtcdb.cn:8080 NoncoRNA ) is a manually curated database of biotools:primaryContact "Colin Ophus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3374 ; sc:description "Computes Michaelis-Menten model parameters" ; @@ -334790,7 +349752,7 @@ NoncoRNA (http: www.ncdtcdb.cn:8080 NoncoRNA ) is a manually curated database of biotools:primaryContact "Housam Binous" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2258, @@ -334808,30 +349770,30 @@ NoncoRNA (http: www.ncdtcdb.cn:8080 NoncoRNA ) is a manually curated database of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -334848,7 +349810,7 @@ NoncoRNA (http: www.ncdtcdb.cn:8080 NoncoRNA ) is a manually curated database of sc:url "http://cran.r-project.org/web/packages/nontarget/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0160, @@ -334872,7 +349834,7 @@ The NoPeak Software uses the integration profile of k-mers based on mapped reads sc:url "https://github.com/menzel/nopeak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -334898,7 +349860,7 @@ The NoPeak Software uses the integration profile of k-mers based on mapped reads sc:url "https://rpubs.com/golgun/649085" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -334920,14 +349882,12 @@ The NoPeak Software uses the integration profile of k-mers based on mapped reads a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -334957,7 +349917,7 @@ The NoPeak Software uses the integration profile of k-mers based on mapped reads sc:url "http://emboss.open-bio.org/rel/rel6/apps/noreturn.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3172 ; sc:citation , @@ -334973,7 +349933,7 @@ The NoPeak Software uses the integration profile of k-mers based on mapped reads biotools:primaryContact "Dr. Bo Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602 ; @@ -334987,7 +349947,7 @@ The NoPeak Software uses the integration profile of k-mers based on mapped reads biotools:primaryContact "Georgios Pavlopoulos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2269, @@ -335002,7 +349962,7 @@ The NoPeak Software uses the integration profile of k-mers based on mapped reads sc:url "http://www.cs.ucr.edu/~polishka/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3306, @@ -335019,7 +349979,7 @@ The NoPeak Software uses the integration profile of k-mers based on mapped reads biotools:primaryContact "Rex Cheung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -335043,18 +350003,17 @@ The NoPeak Software uses the integration profile of k-mers based on mapped reads a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3071 ; @@ -335069,7 +350028,7 @@ The NoPeak Software uses the integration profile of k-mers based on mapped reads sc:url "http://quantitativeproteomics.org/normalyzer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203 ; @@ -335090,7 +350049,7 @@ The NoPeak Software uses the integration profile of k-mers based on mapped reads biotools:primaryContact "Jakob Willforss" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -335106,7 +350065,7 @@ normGAM is an R package for normalizing genome architecture mapping (GAM) data. sc:url "http://dna.cs.miami.edu/normGAM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -335126,7 +350085,7 @@ GitLab is a single application for the entire software development lifecycle. Fr sc:url "http://norm.btm.umed.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053, @@ -335148,7 +350107,7 @@ GitLab is a single application for the entire software development lifecycle. Fr biotools:primaryContact "James Perkins" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3125, @@ -335170,14 +350129,13 @@ GitLab is a single application for the entire software development lifecycle. Fr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_2814 ; @@ -335202,7 +350160,7 @@ GitLab is a single application for the entire software development lifecycle. Fr sc:url "http://ppopen.informatik.tu-muenchen.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -335223,7 +350181,7 @@ GitLab is a single application for the entire software development lifecycle. Fr biotools:primaryContact "Burkhard Rost" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3305, @@ -335242,14 +350200,12 @@ The aim of nosoi (pronounced no.si) is to provide a flexible agent-based stochas a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -335280,14 +350236,12 @@ The aim of nosoi (pronounced no.si) is to provide a flexible agent-based stochas a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -335318,14 +350272,12 @@ The aim of nosoi (pronounced no.si) is to provide a flexible agent-based stochas a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -335355,7 +350307,7 @@ The aim of nosoi (pronounced no.si) is to provide a flexible agent-based stochas sc:url "http://emboss.open-bio.org/rel/rel6/apps/notseq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0199, @@ -335371,7 +350323,7 @@ The aim of nosoi (pronounced no.si) is to provide a flexible agent-based stochas sc:url "http://www.cs.cmu.edu/~durand/Notung/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602 ; @@ -335388,7 +350340,7 @@ The aim of nosoi (pronounced no.si) is to provide a flexible agent-based stochas "Ina Koch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3303, @@ -335407,7 +350359,7 @@ The aim of nosoi (pronounced no.si) is to provide a flexible agent-based stochas biotools:primaryContact "Tyler Coye" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation "pubmed:20385726" ; @@ -335423,7 +350375,7 @@ The aim of nosoi (pronounced no.si) is to provide a flexible agent-based stochas biotools:primaryContact "IMAN HAJIRASOULIHA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3070, @@ -335445,7 +350397,7 @@ The aim of nosoi (pronounced no.si) is to provide a flexible agent-based stochas biotools:primaryContact "Gabriel Ramos Llordén" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3170, @@ -335473,7 +350425,7 @@ The aim of nosoi (pronounced no.si) is to provide a flexible agent-based stochas sc:url "http://www.novocraft.com/products/novoalign/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3170, @@ -335490,7 +350442,7 @@ The aim of nosoi (pronounced no.si) is to provide a flexible agent-based stochas sc:url "http://www.novocraft.com/products/novoalign/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -335509,7 +350461,7 @@ novoCaller is a Bayesian de novo variant calling algorithm that uses information sc:url "https://github.com/bgm-cwg/novoCaller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0659, @@ -335527,7 +350479,7 @@ novoCaller is a Bayesian de novo variant calling algorithm that uses information biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -335543,14 +350495,14 @@ novoCaller is a Bayesian de novo variant calling algorithm that uses information a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3474, @@ -335567,7 +350519,7 @@ novoCaller is a Bayesian de novo variant calling algorithm that uses information sc:url "https://www.rapidnovor.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -335591,7 +350543,7 @@ novoCaller is a Bayesian de novo variant calling algorithm that uses information sc:url "https://pypi.org/project/novosparc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0102, @@ -335613,8 +350565,83 @@ novoCaller is a Bayesian de novo variant calling algorithm that uses information sc:url "https://github.com/wpwupingwp/novowrap" ; biotools:primaryContact "Shiliang Zhou" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3067, + edam:topic_3304, + edam:topic_3384, + edam:topic_3444, + edam:topic_3452 ; + sc:citation , + "pmcid:PMC8921370", + "pubmed:35013825" ; + sc:description "A Large, Systematic, and Extendable Repository of 3D Reconstructed Images of a Living Human Brain Cum Head and Neck." ; + sc:featureList edam:operation_3431, + edam:operation_3443, + edam:operation_3553 ; + sc:isAccessibleForFree true ; + sc:name "NOWinBRAIN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.nowinbrain.org" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0938" ; + sc:name "Raw NMR data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0209, + edam:topic_0593, + edam:topic_3172, + edam:topic_3292 ; + sc:citation , + "pmcid:PMC8728158", + "pubmed:34791429" ; + sc:description "The NP-MRD is a freely available cloud-based, user-friendly, FAIR electronic database. NP-MRD accepts NMR data and associated metadata from newly undertaken NP studies." ; + sc:featureList edam:operation_0335, + edam:operation_2421, + edam:operation_2422, + edam:operation_3431, + edam:operation_3803 ; + sc:isAccessibleForFree true ; + sc:name "NP-MRD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://np-mrd.org" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0769, + edam:topic_3172, + edam:topic_3343, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8874762", + "pubmed:35233454" ; + sc:description "NP Analyst is a platform-independent tool for integrating bio-activity data with metabolomics data." ; + sc:featureList edam:operation_0335, + edam:operation_2429, + edam:operation_3860 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "NP Analyst" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://www.npanalyst.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654, @@ -335631,8 +350658,24 @@ novoCaller is a Bayesian de novo variant calling algorithm that uses information sc:url "http://genome.ufl.edu/npact/" ; biotools:primaryContact "Brocchieri L" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC3531140", + "pubmed:23203877" ; + sc:description "NPACT is a curated database of Plant derived natural compounds that exhibit anti-cancerous activity." ; + sc:featureList edam:operation_2945 ; + sc:name "npact : Naturally occuring Plant based Anticancerous Compound-Activity-Target DataBase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/npact/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3419 ; @@ -335650,8 +350693,31 @@ novoCaller is a Bayesian de novo variant calling algorithm that uses information sc:url "https://cran.r-project.org/web/packages/nparACT/index.html" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0114, + edam:topic_0203, + edam:topic_0622, + edam:topic_3168, + edam:topic_3344 ; + sc:citation , + "pmcid:PMC8503682", + "pubmed:34647017" ; + sc:description "Novel Approach to Address Accuracy and Reproducibility in Genomic Data Science." ; + sc:featureList edam:operation_2939, + edam:operation_3799, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "NPARS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.com/erichpeterson/npars-analysis" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -335676,7 +350742,7 @@ The Natural Products Atlas Network views of chemical space.""" ; sc:url "https://tm.gdb.tools/map4/npatlas_map_tmap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0780, @@ -335696,7 +350762,7 @@ NPBS Database of Shanghai Institute of Organic Chemistry.""" ; sc:url "http://www.organchem.csdb.cn/scdb/NPBS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168 ; @@ -335712,7 +350778,7 @@ NPBS Database of Shanghai Institute of Organic Chemistry.""" ; biotools:primaryContact "Shao-Wu Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2258, edam:topic_2640, @@ -335728,8 +350794,31 @@ NPBS Database of Shanghai Institute of Organic Chemistry.""" ; sc:url "http://silver.sejong.ac.kr/npcare" ; biotools:primaryContact "Hwangseo Park" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0202, + edam:topic_0209, + edam:topic_0634, + edam:topic_3292, + edam:topic_3375 ; + sc:citation , + "pmcid:PMC8728151", + "pubmed:34664659" ; + sc:description "Natural product-based drug combination and its disease-specific molecular regulation." ; + sc:featureList edam:operation_0337, + edam:operation_0533, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "NPCDR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://npcdr.idrblab.net/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0154, @@ -335755,7 +350844,7 @@ You can also provide cached flag to the params to get the cached version so make sc:url "https://npclassifier.ucsd.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -335770,7 +350859,7 @@ You can also provide cached flag to the params to get the cached version so make sc:url "http://npd.hgu.mrc.ac.uk/user/services" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0099, @@ -335790,7 +350879,7 @@ You can also provide cached flag to the params to get the cached version so make biotools:primaryContact "Janusz Bujnicki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -335811,7 +350900,7 @@ Nearest-neighbor Projected-Distance Regression (NPDR).""" ; sc:url "https://insilico.github.io/npdr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -335832,7 +350921,7 @@ Nearest-neighbor Projected-Distance Regression (NPDR).""" ; biotools:primaryContact "Jessica Larson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -335855,7 +350944,7 @@ nPhase is a ploidy agnostic tool developed in python which predicts the haplotyp sc:url "https://github.com/nPhasePipeline/nPhase" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0769, @@ -335870,8 +350959,28 @@ nPhase is a ploidy agnostic tool developed in python which predicts the haplotyp sc:name "NPI-GNN" ; sc:url "https://github.com/AshuiRUA/NPI-GNN" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0659, + edam:topic_3063 ; + sc:citation , + "pubmed:34699377" ; + sc:description "Fast predicting ncRNA-protein interactions using the Relational Graph Convolutional Network Auto-Encoder." ; + sc:featureList edam:operation_3431, + edam:operation_3901, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "NPI-RGCNAE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Angelia0hh/NPI-RGCNAE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3382, @@ -335887,7 +350996,7 @@ FlyCircuit is a public database for online archiving, cell type inventory, brows sc:url "https://npin-for-drosophila.herokuapp.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -335904,7 +351013,7 @@ FlyCircuit is a public database for online archiving, cell type inventory, brows sc:url "http://nplb.ncl.res.in/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation , @@ -335917,11 +351026,11 @@ FlyCircuit is a public database for online archiving, cell type inventory, brows sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:url "http://www.imtech.res.in/raghava/nppred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/nppred/" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3173 ; @@ -335936,7 +351045,7 @@ FlyCircuit is a public database for online archiving, cell type inventory, brows biotools:primaryContact "Chenfei Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080 ; @@ -335953,20 +351062,43 @@ FlyCircuit is a public database for online archiving, cell type inventory, brows biotools:primaryContact "Gilbert DELEAGE", "Raphael TERREUX" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0621, + edam:topic_0780, + edam:topic_2258, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8524952", + "pubmed:34663470" ; + sc:description "Classifying natural products from plants, fungi or bacteria using the COCONUT database and machine learning." ; + sc:featureList edam:operation_0224, + edam:operation_0394, + edam:operation_2942, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:name "NPs (Natural products)" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://np-svm-map4.gdb.tools/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168 ; @@ -335983,7 +351115,7 @@ FlyCircuit is a public database for online archiving, cell type inventory, brows biotools:primaryContact "Minh Duc Cao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2269, @@ -336001,13 +351133,37 @@ FlyCircuit is a public database for online archiving, cell type inventory, brows biotools:primaryContact "Jun Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "NPSV is Python-based tool for stand-alone genotyping of deletion and insertion structural variants (SVs) in short-read whole genome sequencing (WGS) data. NPSV implements a machine learning-based approach for SV genotyping that employs NGS simulation to model the combined effects of the genomic region, sequencer and alignment pipeline." ; sc:name "NPSV" ; sc:url "https://github.com/mlinderm/npsv" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0153, + edam:topic_0154, + edam:topic_3172, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9415073", + "pubmed:36005578" ; + sc:description "An Interactive Visualizer of Peptidic Natural Product-MS/MS Matches." ; + sc:featureList edam:operation_3644, + edam:operation_3646, + edam:operation_3694, + edam:operation_3860 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "NPvis" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ablab/NPvis" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -336032,7 +351188,7 @@ FlyCircuit is a public database for online archiving, cell type inventory, brows biotools:primaryContact "Chris Weichenberger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3372, edam:topic_3512, @@ -336046,8 +351202,29 @@ In this paper, we present NQontrol, a digital feedback-control solution based on sc:name "NQontrol" ; sc:url "https://gitlab.com/las-nq/nqontrol" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2275, + edam:topic_3047, + edam:topic_3343, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9116378", + "pubmed:35383362" ; + sc:description "Predicting the binding of small molecules to nuclear receptors using machine learning." ; + sc:featureList edam:operation_0478, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "NR-ToxPred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://nr-toxpred.cchem.berkeley.edu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -336067,7 +351244,7 @@ In this paper, we present NQontrol, a digital feedback-control solution based on "Jurgen F. Doreleijers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0154, @@ -336088,7 +351265,7 @@ In this paper, we present NQontrol, a digital feedback-control solution based on biotools:primaryContact "Rafael Najmanovich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0204, @@ -336102,11 +351279,11 @@ In this paper, we present NQontrol, a digital feedback-control solution based on "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/nrpred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/nrpred/" ; biotools:primaryContact "G.P.S Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_1775 ; @@ -336126,7 +351303,7 @@ In this paper, we present NQontrol, a digital feedback-control solution based on sc:url "http://jjwanglab.org:8080/hkubioinfo/NRProF/NRProF.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -336145,7 +351322,7 @@ In this paper, we present NQontrol, a digital feedback-control solution based on biotools:primaryContact "Jacques Ravel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -336170,7 +351347,7 @@ In this paper, we present NQontrol, a digital feedback-control solution based on biotools:primaryContact "Marc Röttig" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_1317, @@ -336188,7 +351365,7 @@ In this paper, we present NQontrol, a digital feedback-control solution based on sc:url "http://www.receptors.org/NR/servers/html/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0140, @@ -336206,7 +351383,7 @@ In this paper, we present NQontrol, a digital feedback-control solution based on biotools:primaryContact "Xing Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0659, @@ -336225,7 +351402,7 @@ Necessary and Sufficient Forest (NS-Forest) for Cell Type Marker Determination f sc:url "https://github.com/JCVenterInstitute/NSForest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0153, @@ -336241,7 +351418,7 @@ Necessary and Sufficient Forest (NS-Forest) for Cell Type Marker Determination f sc:url "http://atome.cbs.cnrs.fr/AT2B/SERVER/LTP.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -336261,7 +351438,7 @@ Necessary and Sufficient Forest (NS-Forest) for Cell Type Marker Determination f biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_2269, @@ -336277,7 +351454,7 @@ Necessary and Sufficient Forest (NS-Forest) for Cell Type Marker Determination f biotools:primaryContact "Solovyev VV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320 ; @@ -336294,7 +351471,7 @@ Necessary and Sufficient Forest (NS-Forest) for Cell Type Marker Determination f sc:url "https://sites.google.com/site/nsmapforrnaseq/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -336312,7 +351489,7 @@ Necessary and Sufficient Forest (NS-Forest) for Cell Type Marker Determination f biotools:primaryContact "Giovanni Montana" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -336333,8 +351510,33 @@ Necessary and Sufficient Forest (NS-Forest) for Cell Type Marker Determination f sc:url "http://snpanalyzer.uthsc.edu/" ; biotools:primaryContact "nsSNPAnalyzer Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_0654, + edam:topic_3295, + edam:topic_3673, + edam:topic_3674 ; + sc:citation , + "pmcid:PMC9150344", + "pubmed:35637459" ; + sc:description "A chemical-based sequencing method for genomic methylome profiling." ; + sc:featureList edam:operation_0238, + edam:operation_0239, + edam:operation_3186, + edam:operation_3207, + edam:operation_3919 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "NT-seq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/TaoLabBCM/NT-seq" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation , @@ -336353,7 +351555,7 @@ Necessary and Sufficient Forest (NS-Forest) for Cell Type Marker Determination f biotools:primaryContact "René L. Warren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -336370,8 +351572,45 @@ Necessary and Sufficient Forest (NS-Forest) for Cell Type Marker Determination f biotools:primaryContact "Hamid Mohamadi", "Inanc Birol" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0077, + edam:topic_0196, + edam:topic_0622 ; + sc:citation , + "pmcid:PMC9196995", + "pubmed:35567771" ; + sc:description "Efficient Targeted Error Resolution and Automated Finishing of Long-Read Genome Assemblies." ; + sc:featureList edam:operation_0525, + edam:operation_3195, + edam:operation_3198 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ntEdit+Sealer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bcgsc/ntedit_sealer_protocol" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_3168 ; + sc:citation , + "pubmed:36000872" ; + sc:description "Recursive spaced seed hashing for nucleotide sequences." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ntHash2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/bcgsc/ntHash" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -336394,14 +351633,12 @@ ntHits uses OpenMP for parallelization, which requires a modern compiler such as a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -336432,14 +351669,12 @@ ntHits uses OpenMP for parallelization, which requires a modern compiler such as a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -336469,7 +351704,7 @@ ntHits uses OpenMP for parallelization, which requires a modern compiler such as sc:url "http://emboss.open-bio.org/rel/rel6/apps/nthseqset.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0632, @@ -336483,8 +351718,26 @@ ntHits uses OpenMP for parallelization, which requires a modern compiler such as sc:name "NTMG" ; sc:url "http://oblab.cs.nchu.edu.tw:8080/WebSDL/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3067, + edam:topic_3304, + edam:topic_3322, + edam:topic_3334 ; + sc:citation , + "pmcid:PMC9064542", + "pubmed:35505291" ; + sc:description "Benefits of a bilingual web-based anatomy atlas for nursing students in learning anatomy." ; + sc:isAccessibleForFree true ; + sc:name "NTU-WAA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://140.112.120.113/~mfc/NTU_WAA/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0659, @@ -336500,7 +351753,7 @@ ntHits uses OpenMP for parallelization, which requires a modern compiler such as sc:url "http://bioclues.org/NtUE/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -336519,27 +351772,22 @@ ntHits uses OpenMP for parallelization, which requires a modern compiler such as sc:url "http://bioconductor.org/packages/release/bioc/html/NTW.html" ; biotools:primaryContact "Yuanhua Liu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0749, - edam:topic_3176, - edam:topic_3295, - edam:topic_3306 ; - sc:citation ; - sc:description """Chemical map–based prediction of nucleosome positioning using the Bioconductor package nuCpos. - -Abstract Background Methods for predicting nucleosome positioning include bioinformatics, biophysical, and combined approaches. An advantage of bioinformatics methods, which are based on in vivo nucleosome maps, is the use of natural sequences that may contain previously unknown elements involved in nucleosome positioning in vivo. The accuracy of such prediction attempts reflects the genomic coordinate resolution of the nucleosome maps applied. Thus, nucleosome maps constructed using Micrococcus nuclease (MNase), which has a strong preference for A T-rich sequences, may not be appropriate for this purpose. In addition to MNase seq based maps, base pair resolution chemical maps of in vivo nucleosomes from three different species (budding and fission yeasts, and mouse) are currently available. - -||| HOMEPAGE MISSING!""" ; - sc:featureList edam:operation_0432, - edam:operation_0440, - edam:operation_2429 ; - sc:license "GPL-2.0" ; - sc:name "nuCpos" ; - sc:url "https://doi.org/10.1101/2019.12.25.888305" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation "pubmed:18391230" ; + sc:description "The aim of NTXpred server is to predict Neurotoxins and its source and probable function from primary amino acid sequence using SVM based on composition and PSI-Blast." ; + sc:featureList edam:operation_2945 ; + sc:name "ntxpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/ntxpred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2269, @@ -336559,7 +351807,7 @@ nubeam-dedup is a fast and easy-to-use bioinformatics tool removing exact PCR du sc:url "https://haplotype.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -336578,7 +351826,7 @@ NucBreak detects structural errors in assemblies and structural variants between sc:url "https://github.com/uio-bmi/NucBreak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -336593,7 +351841,7 @@ NucBreak detects structural errors in assemblies and structural variants between sc:url "http://nucleix.mbu.iisc.ernet.in/nucgen/index.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3306, @@ -336610,7 +351858,7 @@ NucBreak detects structural errors in assemblies and structural variants between biotools:primaryContact "Omer Demirkaya" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -336631,7 +351879,7 @@ NucBreak detects structural errors in assemblies and structural variants between biotools:primaryContact "Gert Vriend" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -336648,7 +351896,7 @@ NucBreak detects structural errors in assemblies and structural variants between biotools:primaryContact "naive" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3053, @@ -336663,8 +351911,32 @@ NucBreak detects structural errors in assemblies and structural variants between sc:softwareVersion "1.0" ; sc:url "https://sites.google.com/site/beckerjeremie/home/nucleofinder" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0749, + edam:topic_3169, + edam:topic_3176, + edam:topic_3295 ; + sc:citation , + "pmcid:PMC9321407", + "pubmed:35834552" ; + sc:description "A computational tool for identifying nucleosomes in ultra-high resolution contact maps." ; + sc:featureList edam:operation_0272, + edam:operation_0432, + edam:operation_2429, + edam:operation_3222 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "NucleoMap" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/liu-bioinfo-lab/NucleoMap" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077 ; sc:citation ; @@ -336680,7 +351952,7 @@ NucBreak detects structural errors in assemblies and structural variants between sc:url "http://nucleos.bio.uniroma2.it/nucleos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0077, @@ -336701,7 +351973,7 @@ NucBreak detects structural errors in assemblies and structural variants between biotools:primaryContact "Astrid Deschenes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -336722,7 +351994,7 @@ NucBreak detects structural errors in assemblies and structural variants between biotools:primaryContact "Ricard Illa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_2229, @@ -336739,7 +352011,7 @@ NucBreak detects structural errors in assemblies and structural variants between biotools:primaryContact "Axel Poulet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382 ; @@ -336755,7 +352027,7 @@ NucBreak detects structural errors in assemblies and structural variants between biotools:primaryContact "Sam Cooper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3070, @@ -336773,7 +352045,7 @@ NucBreak detects structural errors in assemblies and structural variants between biotools:primaryContact "Sam Cooper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0611, @@ -336790,7 +352062,7 @@ NucBreak detects structural errors in assemblies and structural variants between sc:url "http://www.nucloc.org/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """Repository containing the codebase corresponding to the following two papers: @@ -336802,7 +352074,7 @@ NucBreak detects structural errors in assemblies and structural variants between sc:url "https://github.com/PathologyDataScience/NuCLS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0621, @@ -336825,16 +352097,38 @@ NucBreak detects structural errors in assemblies and structural variants between "Windows" ; sc:url "http://compbio-zhanglab.org/NUCOME" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_2229, + edam:topic_3169, + edam:topic_3176, + edam:topic_3295 ; + sc:citation , + "pmcid:PMC8776978", + "pubmed:35061087" ; + sc:description "A database of nucleosome positioning in vivo and nucleosomics of cell-free DNA." ; + sc:featureList edam:operation_0432, + edam:operation_2520, + edam:operation_3196, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:name "NucPosDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://generegulation.org/nucposdb/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -336851,8 +352145,35 @@ NucBreak detects structural errors in assemblies and structural variants between sc:url "https://nucpred.bioinfo.se/nucpred/" ; biotools:primaryContact "Robert M. MacCallum" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0128, + edam:topic_0749, + edam:topic_3170, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9249596", + "pubmed:35832617" ; + sc:description "A comparative analysis of machine learning classifiers for predicting protein-binding nucleotides in RNA sequences." ; + sc:featureList edam:operation_0267, + edam:operation_3901, + edam:operation_3902 ; + sc:isAccessibleForFree true ; + sc:name "Nucpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://www.csb.iitkgp.ac.in/applications/Nucpred/index" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -336867,7 +352188,7 @@ NucBreak detects structural errors in assemblies and structural variants between biotools:primaryContact "Mathieu Lemire" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0654, @@ -336882,7 +352203,7 @@ NucBreak detects structural errors in assemblies and structural variants between sc:url "http://nucleosome.usal.es/nucwave/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -336901,7 +352222,7 @@ NucBreak detects structural errors in assemblies and structural variants between biotools:primaryContact "N. Dean" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -336920,7 +352241,7 @@ NucBreak detects structural errors in assemblies and structural variants between biotools:primaryContact "Cheng Lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622 ; @@ -336955,7 +352276,7 @@ NucBreak detects structural errors in assemblies and structural variants between "Torsten Seemann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -336965,7 +352286,7 @@ NucBreak detects structural errors in assemblies and structural variants between sc:url "https://github.com/amarallab/NullSeq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -336981,7 +352302,7 @@ NucBreak detects structural errors in assemblies and structural variants between sc:url "http://nucleix.mbu.iisc.ernet.in/nuparm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3125, @@ -337001,7 +352322,7 @@ NucBreak detects structural errors in assemblies and structural variants between biotools:primaryContact "Ji-Ping Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -337019,7 +352340,7 @@ Nuclear receptors (NRs) are key regulators of human health and constitute a rele sc:url "https://doi.org/10.5281/zenodo.3991561" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3170, @@ -337034,7 +352355,7 @@ Nuclear receptors (NRs) are key regulators of human health and constitute a rele biotools:primaryContact "Xuegong Zhan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation , @@ -337050,7 +352371,7 @@ Nuclear receptors (NRs) are key regulators of human health and constitute a rele sc:url "http://www.lcqb.upmc.fr/nust/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0769, @@ -337072,7 +352393,7 @@ Nutil simplifies and streamlines the pre-and-post processing of 2D brain image d sc:url "https://www.nitrc.org/projects/nutil/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2269, @@ -337090,7 +352411,7 @@ NUTMEG (Neurodynamic Utility Toolbox for Magnetoencephalography) is an open-sour sc:url "http://nitrc.org/projects/nutmeg/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3305, @@ -337113,18 +352434,18 @@ Statistical tool for learning the structure of direct associations among variabl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0990" ; - sc:name "Compound name" ; - sc:sameAs "http://edamontology.org/data_0990" ], + sc:additionalType "http://edamontology.org/data_1150" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Disease ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1150" ; - sc:name "Disease ID" ; - sc:sameAs "http://edamontology.org/data_1150" ] ; + sc:additionalType "http://edamontology.org/data_0990" ; + sc:encodingFormat "http://edamontology.org/format_1196" ; + sc:name "Compound name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1082" ; - sc:name "Pathway or network identifier" ; - sc:sameAs "http://edamontology.org/data_1082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1082" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Pathway or network identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3390 ; sc:citation , @@ -337143,7 +352464,7 @@ Statistical tool for learning the structure of direct associations among variabl biotools:primaryContact "Irene Kouskoumvekaki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3316 ; @@ -337158,14 +352479,12 @@ Statistical tool for learning the structure of direct associations among variabl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:name "Feature table" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2259 ; @@ -337184,14 +352503,14 @@ Statistical tool for learning the structure of direct associations among variabl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation , @@ -337210,7 +352529,7 @@ Statistical tool for learning the structure of direct associations among variabl biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0654, @@ -337232,7 +352551,7 @@ Statistical tool for learning the structure of direct associations among variabl "Peter Luykx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3572 ; @@ -337247,7 +352566,7 @@ Statistical tool for learning the structure of direct associations among variabl biotools:primaryContact "Anthony J. Cox" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -337265,7 +352584,7 @@ Statistical tool for learning the structure of direct associations among variabl biotools:primaryContact "Ti Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0769, @@ -337283,7 +352602,7 @@ Statistical tool for learning the structure of direct associations among variabl sc:url "https://github.com/flee598/nzffdr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -337299,7 +352618,7 @@ Statistical tool for learning the structure of direct associations among variabl sc:url "https://oglcnac.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0601, @@ -337316,8 +352635,30 @@ Statistical tool for learning the structure of direct associations among variabl sc:url "http://121.42.167.206/OGlcPred/" ; biotools:primaryContact "Cangzhi Jia" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0152, + edam:topic_0749, + edam:topic_0804, + edam:topic_0821, + edam:topic_3292 ; + sc:citation , + "pubmed:34611872" ; + sc:description "A Formal-Language-Based Generator of O-Glycosylation Networks." ; + sc:featureList edam:operation_0416, + edam:operation_0417, + edam:operation_3896 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "O-Glycologue" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://glycologue.org/o/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0602, @@ -337337,8 +352678,27 @@ Statistical tool for learning the structure of direct associations among variabl sc:url "http://www.o-miner.org" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3384, + edam:topic_3452, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9201625", + "pubmed:35720715" ; + sc:description "A Novel Framework With Deep Fusion of CNN and Transformer for Simultaneous Segmentation and Classification." ; + sc:featureList edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "O-Net" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ortonwang/O-Net" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -337359,7 +352719,7 @@ o2geosocial was developed to infer probabilistic transmission trees from routine sc:url "https://CRAN.R-project.org/package=o2geosocial" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0659, @@ -337382,28 +352742,98 @@ Here, we developed a computational tool to enable the global mapping of putative sc:name "oRNAment" ; sc:url "http://rnabiology.ircm.qc.ca/oRNAment/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Library", + "Web API", + "Web application" ; + sc:applicationSubCategory edam:topic_0092, + edam:topic_0102, + edam:topic_0199, + edam:topic_0622 ; + sc:description "OakVar is a Python-based genomic variant analysis platform. It is a fork of OpenCRAVAT and further developed with newer visions." ; + sc:featureList edam:operation_0362, + edam:operation_3661, + edam:operation_3672 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "OakVar" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://oakvar.com" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_3170, + edam:topic_3295, + edam:topic_3360, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9254640", + "pubmed:35788653" ; + sc:description "Multi-omics molecular biomarkers and database of osteoarthritis." ; + sc:featureList edam:operation_2422, + edam:operation_3207, + edam:operation_3223 ; + sc:isAccessibleForFree true ; + sc:name "OAOB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://ibi.zju.edu.cn/oaobdb/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_2830, + edam:topic_3374, + edam:topic_3500, + edam:topic_3930 ; + sc:citation , + "pmcid:PMC8740823", + "pubmed:34655133" ; + sc:description "A diverse database of cleaned, annotated, and translated unpaired and paired antibody sequences." ; + sc:featureList edam:operation_2421 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-4.0" ; + sc:name "OAS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://opig.stats.ox.ac.uk/webapps/oas/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ], + sc:additionalType "http://edamontology.org/data_0925" ; + sc:name "Sequence assembly" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:name "Sequence assembly" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3181" ; - sc:name "Sequence assembly report" ; - sc:sameAs "http://edamontology.org/data_3181" ], + sc:additionalType "http://edamontology.org/data_0925" ; + sc:name "Sequence assembly" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ], + sc:additionalType "http://edamontology.org/data_3181" ; + sc:name "Sequence assembly report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, @@ -337425,7 +352855,7 @@ Here, we developed a computational tool to enable the global mapping of putative "Marcel Schulz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099 ; sc:citation ; @@ -337440,7 +352870,7 @@ Here, we developed a computational tool to enable the global mapping of putative biotools:primaryContact "Oasis Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -337458,7 +352888,7 @@ Here, we developed a computational tool to enable the global mapping of putative biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -337475,7 +352905,7 @@ Here, we developed a computational tool to enable the global mapping of putative biotools:primaryContact "Jongsik Chun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0122, edam:topic_2275 ; @@ -337489,7 +352919,7 @@ Here, we developed a computational tool to enable the global mapping of putative biotools:primaryContact "Geoffrey J. Barton" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -337507,7 +352937,7 @@ obaDIA takes a FASTA fromat protein sequence file and a fragment-level, peptide- sc:url "https://github.com/yjthu/obaDIA.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2269, @@ -337526,7 +352956,7 @@ A BEAST2 package for amino acid/protein site model averaging.""" ; sc:url "https://github.com/rbouckaert/obama" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0140, edam:topic_2229, @@ -337545,7 +352975,7 @@ A BEAST2 package for amino acid/protein site model averaging.""" ; biotools:primaryContact "Nicholas A. Hamilton" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -337564,16 +352994,39 @@ obelisc is a command line tool to perform two effective nonparametric linkage an sc:name "Obelisc" ; sc:url "https://github.com/qsonehara/Obelisc" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0194, + edam:topic_0769, + edam:topic_3299, + edam:topic_3966 ; + sc:citation , + "pmcid:PMC9334345", + "pubmed:35910305" ; + sc:description "A computational tool for the analysis and systematization of the positive selection in proteins." ; + sc:featureList edam:operation_0324, + edam:operation_2422, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "OBI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://anaconda.org/jcalvento/obi" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -337586,7 +353039,7 @@ obelisc is a command line tool to perform two effective nonparametric linkage an sc:url "http://obi-warp.sourceforge.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -337604,7 +353057,7 @@ OBIF Package in R includes the analytical components of the Omics-Based Interact sc:url "http://www.github.com/evanslaboratory/OBIF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -337620,16 +353073,34 @@ OBIF Package in R includes the analytical components of the Omics-Based Interact sc:url "https://git.metabarcoding.org/obitools/obitools/wikis/home" ; biotools:primaryContact "Eric Coissac" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3383, + edam:topic_3489 ; + sc:citation ; + sc:description "OMERO-based integrated workflow for annotating microbes in the cloud." ; + sc:featureList edam:operation_3443, + edam:operation_3553 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ObiWan-Microbi" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/hip-satomi/ObiWan-Microbi" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Web API", @@ -337664,8 +353135,49 @@ ObjTables is ideal for supplementary materials of journal article, as well as fo sc:softwareVersion "1.0.0" ; sc:url "https://www.objtables.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_3071 ; + sc:citation , + "pmcid:PMC8546234", + "pubmed:34697637" ; + sc:description "Community development of interoperable ontologies for the biological sciences" ; + sc:featureList edam:operation_2422, + edam:operation_3352 ; + sc:isAccessibleForFree true ; + sc:license "CC0-1.0" ; + sc:name "OBO Foundry" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://obofoundry.org/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2229, + edam:topic_3170, + edam:topic_3474, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9019955", + "pubmed:35443717" ; + sc:description "A unified framework to integrate and analyze single-cell RNA-seq data." ; + sc:featureList edam:operation_3223, + edam:operation_3436, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "OCAT" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/bowang-lab/OCAT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3068, @@ -337682,18 +353194,18 @@ ObjTables is ideal for supplementary materials of journal article, as well as fo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2794" ; - sc:name "ORF ID" ; - sc:sameAs "http://edamontology.org/data_2794" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2794" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "ORF ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0621, @@ -337713,7 +353225,7 @@ ObjTables is ideal for supplementary materials of journal article, as well as fo biotools:primaryContact "Oliver Will" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -337731,7 +353243,7 @@ ObjTables is ideal for supplementary materials of journal article, as well as fo biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0736, @@ -337747,7 +353259,7 @@ ObjTables is ideal for supplementary materials of journal article, as well as fo biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0610, @@ -337771,7 +353283,7 @@ ecological analyses (alpha and beta diversity) using graphical representations ( sc:url "http://oba.mio.osupytheas.fr/ocean-atlas/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0204, @@ -337786,7 +353298,7 @@ ecological analyses (alpha and beta diversity) using graphical representations ( biotools:primaryContact "Cheng Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3308, @@ -337799,7 +353311,7 @@ ecological analyses (alpha and beta diversity) using graphical representations ( sc:url "https://github.com/rcuadrat/ocean_resistome" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0621, @@ -337820,7 +353332,7 @@ ecological analyses (alpha and beta diversity) using graphical representations ( sc:url "https://oscar.as.uky.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_0203, @@ -337839,7 +353351,7 @@ ecological analyses (alpha and beta diversity) using graphical representations ( biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -337857,14 +353369,13 @@ ecological analyses (alpha and beta diversity) using graphical representations ( a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2851" ; - sc:name "Drug structure" ; - sc:sameAs "http://edamontology.org/data_2851" ] ; + sc:additionalType "http://edamontology.org/data_2851" ; + sc:encodingFormat "http://edamontology.org/format_1196" ; + sc:name "Drug structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3332 ; sc:citation , @@ -337881,7 +353392,7 @@ ecological analyses (alpha and beta diversity) using graphical representations ( sc:url "http://www.ochem.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -337905,7 +353416,7 @@ ecological analyses (alpha and beta diversity) using graphical representations ( sc:url "https://github.com/sap218/ocimido" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3299, @@ -337922,7 +353433,7 @@ Generate and analyze Optimal Channel Networks (OCNs): oriented spanning trees re sc:url "https://CRAN.R-project.org/package=OCNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -337942,7 +353453,7 @@ Generate and analyze Optimal Channel Networks (OCNs): oriented spanning trees re biotools:primaryContact "Alexander Ploner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Performs OCR on regions of interest specified in an openDS object, and updates the openDS regions with transcriptions" ; sc:featureList edam:operation_1812, edam:operation_3443 ; @@ -337952,7 +353463,7 @@ Generate and analyze Optimal Channel Networks (OCNs): oriented spanning trees re sc:url "http://sdr.nhm.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2259 ; sc:citation , @@ -337968,7 +353479,7 @@ Generate and analyze Optimal Channel Networks (OCNs): oriented spanning trees re biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0780 ; @@ -337988,7 +353499,7 @@ Generate and analyze Optimal Channel Networks (OCNs): oriented spanning trees re sc:url "http://ocri-genomics.org/ocsESTdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2828, edam:topic_3068, @@ -338007,14 +353518,12 @@ Generate and analyze Optimal Channel Networks (OCNs): oriented spanning trees re a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1507" ; - sc:name "Amino acid index (White-Wimley data)" ; - sc:sameAs "http://edamontology.org/data_1507" ] ; + sc:additionalType "http://edamontology.org/data_1507" ; + sc:name "Amino acid index (White-Wimley data)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1522" ; - sc:name "Protein sequence hydropathy plot" ; - sc:sameAs "http://edamontology.org/data_1522" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1522" ; + sc:name "Protein sequence hydropathy plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0123 ; sc:citation , @@ -338044,7 +353553,7 @@ Generate and analyze Optimal Channel Networks (OCNs): oriented spanning trees re sc:url "http://emboss.open-bio.org/rel/rel6/apps/octanol.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3382, @@ -338064,14 +353573,12 @@ Generate and analyze Optimal Channel Networks (OCNs): oriented spanning trees re a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -338087,7 +353594,7 @@ Generate and analyze Optimal Channel Networks (OCNs): oriented spanning trees re sc:url "http://octopus.cbr.su.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -338109,7 +353616,7 @@ Generate and analyze Optimal Channel Networks (OCNs): oriented spanning trees re sc:url "http://octopus-toolkit2.readthedocs.io/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2533 ; sc:citation ; @@ -338120,7 +353627,7 @@ Generate and analyze Optimal Channel Networks (OCNs): oriented spanning trees re sc:url "https://github.com/luntergroup/octopus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -338137,7 +353644,7 @@ Generate and analyze Optimal Channel Networks (OCNs): oriented spanning trees re biotools:primaryContact "Markus Mayer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0166, @@ -338151,7 +353658,7 @@ Generate and analyze Optimal Channel Networks (OCNs): oriented spanning trees re biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3304, @@ -338183,7 +353690,7 @@ An interface to convert odML structures to and from table-like representations, sc:url "http://www.g-node.org/odml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0203, @@ -338206,7 +353713,7 @@ An interface to convert odML structures to and from table-like representations, biotools:primaryContact "Shujiro Okuda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, @@ -338226,14 +353733,12 @@ An interface to convert odML structures to and from table-like representations, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1261" ; - sc:name "Sequence composition report" ; - sc:sameAs "http://edamontology.org/data_1261" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1261" ; + sc:name "Sequence composition report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -338263,7 +353768,7 @@ An interface to convert odML structures to and from table-like representations, sc:url "http://emboss.open-bio.org/rel/rel6/apps/oddcomp.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2229, @@ -338280,8 +353785,16 @@ An interface to convert odML structures to and from table-like representations, sc:url "https://www.mathworks.com/matlabcentral/fileexchange/25486-application-of-method-ode45-matlab-for-model-pacemaker-vi1-of-cardiac-cells" ; biotools:primaryContact "Dit Papa Lamine ndao" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation , + ; + sc:description "MATLAB- and Octave-compatible toolbox for the automated transformation of Boolean models into systems of ordinary differential equations. Models can be created from sets of Boolean equations or graph representations of Boolean networks." ; + sc:name "Odefy" ; + sc:url "https://www.helmholtz-munich.de/icb/software/odefy/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0797, edam:topic_3366 ; @@ -338296,8 +353809,30 @@ An interface to convert odML structures to and from table-like representations, sc:url "https://github.com/jguhlin/odg" ; biotools:primaryContact "Joseph Guhlin" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0621, + edam:topic_0622, + edam:topic_0654, + edam:topic_0780 ; + sc:citation ; + sc:description "Optimized dynamic genome graph implementation: a toolkit for understanding pangenome graphs" ; + sc:featureList edam:operation_0337, + edam:operation_3745, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ODGI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/pangenome/odgi" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0622 ; @@ -338308,8 +353843,27 @@ An interface to convert odML structures to and from table-like representations, sc:url "http://costalab.org/publications-2/odin/" ; biotools:primaryContact "Ivan G Costa" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0625, + edam:topic_0634 ; + sc:citation , + "pubmed:35504357" ; + sc:description "The Organ-Disease Annotations (ODiseA) Database of Hereditary Diseases and Inflicted Tissues." ; + sc:featureList edam:operation_0224, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:name "ODiseA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://netbio.bgu.ac.il/odisea" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3263, edam:topic_3303, @@ -338324,7 +353878,7 @@ An interface to convert odML structures to and from table-like representations, sc:url "https://cdgen.uni-muenster.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, @@ -338348,7 +353902,7 @@ An interface to convert odML structures to and from table-like representations, sc:url "https://odorify.ahujalab.iiitd.edu.in/olfy/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0077, @@ -338368,33 +353922,32 @@ An interface to convert odML structures to and from table-like representations, biotools:primaryContact "José Jiménez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "it is a simple OA." ; sc:name "odysseyOA" ; sc:url "https://github.com/Yu606/odyssey" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ], + sc:additionalType "http://edamontology.org/data_3108" ; + sc:name "Experimental measurement" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ], + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_3000" ; + sc:name "Alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3707" ; - sc:name "Biodiversity data" ; - sc:sameAs "http://edamontology.org/data_3707" ], + sc:additionalType "http://edamontology.org/data_0914" ; + sc:encodingFormat "http://edamontology.org/format_2350" ; + sc:name "Codon usage data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0914" ; - sc:name "Codon usage data" ; - sc:sameAs "http://edamontology.org/data_0914" ] ; + sc:additionalType "http://edamontology.org/data_3707" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Biodiversity data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "3128391233213" ; sc:featureList edam:operation_0302, edam:operation_0303, @@ -338403,7 +353956,7 @@ An interface to convert odML structures to and from table-like representations, sc:url "https://github.com/Yu606/odyssey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0099, @@ -338420,7 +353973,7 @@ An interface to convert odML structures to and from table-like representations, "Stewart R" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -338437,7 +353990,7 @@ An interface to convert odML structures to and from table-like representations, biotools:primaryContact "Isidore Rigoutsos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3314, @@ -338451,7 +354004,7 @@ An interface to convert odML structures to and from table-like representations, sc:url "https://sites.google.com/site/offtargetpipeline/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3382, @@ -338471,7 +354024,7 @@ Recognizing off-sample mass spectrometry images with machine and deep learning." sc:url "https://github.com/metaspace2020/offsample" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, @@ -338491,7 +354044,7 @@ Algae is the earliest evolutionary biological group on the earth, are thought to sc:url "http://ogda.ytu.edu.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -338509,7 +354062,7 @@ Algae is the earliest evolutionary biological group on the earth, are thought to biotools:primaryContact "Ralph Bock" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0203, @@ -338531,7 +354084,7 @@ Algae is the earliest evolutionary biological group on the earth, are thought to biotools:primaryContact "Wei-Hua Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, @@ -338554,7 +354107,7 @@ Algae is the earliest evolutionary biological group on the earth, are thought to sc:url "http://bioinfor.imu.edu.cn/ogferaac" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0176, @@ -338575,7 +354128,7 @@ Algae is the earliest evolutionary biological group on the earth, are thought to biotools:primaryContact "Hongchun Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0102, @@ -338591,7 +354144,7 @@ Numerous studies on cancer, biopharmaceuticals, and clinical trials have necessi sc:url "http://www.oglyp.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0204, @@ -338611,7 +354164,7 @@ Numerous studies on cancer, biopharmaceuticals, and clinical trials have necessi biotools:primaryContact "Michael F. Ochs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0108, @@ -338634,7 +354187,7 @@ Numerous studies on cancer, biopharmaceuticals, and clinical trials have necessi sc:url "https://oglcnac.org/ogt-pin/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -338655,7 +354208,7 @@ Numerous studies on cancer, biopharmaceuticals, and clinical trials have necessi biotools:primaryContact "Dr. Chin Lung Lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0152, edam:topic_3360, @@ -338669,7 +354222,7 @@ Numerous studies on cancer, biopharmaceuticals, and clinical trials have necessi biotools:primaryContact "VJ Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2885, @@ -338685,7 +354238,7 @@ Numerous studies on cancer, biopharmaceuticals, and clinical trials have necessi biotools:primaryContact "Jade Cheng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3063, @@ -338705,7 +354258,7 @@ We need a standardized approach that enables efficient access to information in sc:url "https://github.com/oral-health-and-disease-ontologies/ohd-ontology" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3303, @@ -338722,7 +354275,7 @@ We need a standardized approach that enables efficient access to information in sc:url "https://github.com/OHDSI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0154, @@ -338747,14 +354300,13 @@ To map allosteric communications, we use percolation theory to identify connecti a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634 ; sc:citation , @@ -338771,7 +354323,7 @@ To map allosteric communications, we use percolation theory to identify connecti biotools:primaryContact "Raymond Dalgleish" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -338785,26 +354337,29 @@ OIPCQ requires the functions of cmi and Compare, and OIPCQ2 requires the functio sc:name "OIPCQ" ; sc:url "https://github.com/haammim/OIPCQ-and-OIPCQ2" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0202, - edam:topic_3068, - edam:topic_3375, - edam:topic_3379, - edam:topic_3407 ; - sc:citation , - "pubmed:31813311" ; - sc:description """a review of recent olanzapine research. - -Objective: Based on a substantial literature, olanzapine appears to be one of the most efficacious antipsychotics marketed in the United States, with only clozapine clearly more advantageous. However, olanzapine is marred by an equally substantial literature demonstrating a metabolic burden of olanzapine, particularly for weight gain. With the publication of successful strategies to limit olanzapine induced weight gain, a reassessment of the clinical utility of olanzapine appears warranted. The purpose of this paper is to review recent evidence for olanzapine, highlighting use in both schizophrenia and other conditions, safety and supporting the use of olanzapine above 20 mg day, focusing on studies published since our previous reviews in 2008 and 2009. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'New discoveries old drug'""" ; - sc:name "olanzapine" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31813311" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0749, + edam:topic_3127, + edam:topic_3170, + edam:topic_3512 ; + sc:citation ; + sc:description "A R package for profiling OK-Seq data to study the genome-wide DNA Replication Fork Directionality (RFD)." ; + sc:featureList edam:operation_0314, + edam:operation_3359, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "OKseqHMM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/CL-CHEN-Lab/OK-Seq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3382 ; @@ -338815,7 +354370,7 @@ Objective: Based on a substantial literature, olanzapine appears to be one of th sc:url "https://github.com/MathLee/OLBPNet4PFOS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -338834,7 +354389,7 @@ Post-database search is a key procedure in peptide identification with tandem ma sc:url "http://161.6.5.181:8000/olcs-ranker/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3170 ; @@ -338856,7 +354411,7 @@ Post-database search is a key procedure in peptide identification with tandem ma biotools:primaryContact "Chaolin Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Desktop application" ; sc:applicationSubCategory edam:topic_0154, @@ -338875,18 +354430,18 @@ Post-database search is a key procedure in peptide identification with tandem ma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ] ; + sc:additionalType "http://edamontology.org/data_3671" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Text" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ], + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3673 ; @@ -338901,7 +354456,7 @@ Post-database search is a key procedure in peptide identification with tandem ma sc:url "http://oli2go.ait.ac.at/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0621, @@ -338913,8 +354468,29 @@ Post-database search is a key procedure in peptide identification with tandem ma sc:operatingSystem "Windows" ; sc:url "http://www.genomic.ch/software.php" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0219, + edam:topic_0634, + edam:topic_3068, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC9216476", + "pubmed:35411390" ; + sc:description "Scaling up oligogenic diseases research with OLIDA." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:name "OLIDA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://olida.ibsquare.be" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0121, @@ -338932,7 +354508,7 @@ Post-database search is a key procedure in peptide identification with tandem ma biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -338953,14 +354529,14 @@ Post-database search is a key procedure in peptide identification with tandem ma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence motif" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -338988,7 +354564,7 @@ Post-database search is a key procedure in peptide identification with tandem ma biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -339009,7 +354585,7 @@ Post-database search is a key procedure in peptide identification with tandem ma biotools:primaryContact "Jean-Marie Rouillard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "OligoArrayAux is an auxilliary package designed for use with the OligoArray software.  The package consists of several C programs and Perl scripts for performing energy minimization calculations on nucleic acid sequences.  OligoArrayAux is a subset of the UNAFold package, which calculates partition functions as well as minimum energies for a full ensemble of species for one or two nucleic acid sequences." ; @@ -339023,7 +354599,7 @@ Post-database search is a key procedure in peptide identification with tandem ma sc:url "http://mfold.rna.albany.edu/?q=DINAMelt/OligoArrayAux" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -339043,7 +354619,7 @@ Post-database search is a key procedure in peptide identification with tandem ma biotools:primaryContact "Warren A. Kibbe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -339064,7 +354640,7 @@ Post-database search is a key procedure in peptide identification with tandem ma "Robert Scharpf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -339082,7 +354658,7 @@ Post-database search is a key procedure in peptide identification with tandem ma biotools:primaryContact "Davenport, C. F" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -339101,7 +354677,7 @@ Post-database search is a key procedure in peptide identification with tandem ma sc:url "http://www.bioinfomed.fr/__Tools/ohm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168 ; @@ -339115,7 +354691,7 @@ Post-database search is a key procedure in peptide identification with tandem ma biotools:primaryContact "Mihaela Zavolan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0099, @@ -339135,7 +354711,7 @@ Post-database search is a key procedure in peptide identification with tandem ma sc:url "http://oligominerapp.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -339150,7 +354726,7 @@ Post-database search is a key procedure in peptide identification with tandem ma sc:url "http://compbio.med.wayne.edu/software/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0607, edam:topic_0632, @@ -339172,7 +354748,7 @@ Post-database search is a key procedure in peptide identification with tandem ma sc:url "https://github.com/OligoPrime" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -339193,14 +354769,14 @@ Post-database search is a key procedure in peptide identification with tandem ma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3365 ; @@ -339219,7 +354795,7 @@ Post-database search is a key procedure in peptide identification with tandem ma biotools:primaryContact "Henrik Bjorn Nielsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -339241,7 +354817,7 @@ Post-database search is a key procedure in peptide identification with tandem ma biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -339261,7 +354837,7 @@ Post-database search is a key procedure in peptide identification with tandem ma biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0089 ; @@ -339293,14 +354869,12 @@ Post-database search is a key procedure in peptide identification with tandem ma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3344 ; @@ -339317,7 +354891,7 @@ Post-database search is a key procedure in peptide identification with tandem ma sc:url "http://compomics.github.io/projects/ols-dialog.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0219, @@ -339333,7 +354907,7 @@ Post-database search is a key procedure in peptide identification with tandem ma biotools:primaryContact "Harald Barsnes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3301, @@ -339352,22 +354926,18 @@ Post-database search is a key procedure in peptide identification with tandem ma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_3671" ; + sc:name "Text" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Desktop application", "Web application" ; @@ -339388,7 +354958,7 @@ Post-database search is a key procedure in peptide identification with tandem ma biotools:primaryContact "Christophe Dessimoz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0797, @@ -339409,7 +354979,7 @@ Post-database search is a key procedure in peptide identification with tandem ma "Klara Kaleb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -339427,8 +354997,75 @@ OMAmer is a novel alignment-free protein family assignment method, which limits sc:name "OMAmer" ; sc:url "https://github.com/DessimozLab/omamer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0621, + edam:topic_2259, + edam:topic_3068, + edam:topic_3500 ; + sc:citation ; + sc:description "OMAMO is a tool that suggests the best model organism to study a biological process based on orthologous relationship between a species and human." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "OMAMO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/DessimozLab/omamo" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3174, + edam:topic_3293, + edam:topic_3517, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC8900191", + "pubmed:35265838" ; + sc:description "OMARU (Omnibus metagenome-wide association study with robustness) is a new end-to-end analysis workflow that covers a wide range of microbiome analysis from phylogenetic and functional profiling to case-control metagenome-wide association studies (MWAS)." ; + sc:featureList edam:operation_0324, + edam:operation_2436, + edam:operation_3216, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "OMARU" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/toshi-kishikawa/OMARU" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3372, + edam:topic_3383, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8648559", + "pubmed:34845388" ; + sc:description "A next-generation file format for expanding bioimaging data-access strategies." ; + sc:featureList edam:operation_0335, + edam:operation_0337, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "OME-NGFF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ngff.openmicroscopy.org/latest/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -339447,7 +355084,7 @@ OMAmer is a novel alignment-free protein family assignment method, which limits . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174 ; @@ -339461,7 +355098,7 @@ OMAmer is a novel alignment-free protein family assignment method, which limits biotools:primaryContact "Chongle Pan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0749, @@ -339484,7 +355121,7 @@ The purpose of OMEGA is twofold. First it is designed to allow easy, fast and ef sc:url "https://github.com/villekf/OMEGA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0203, @@ -339502,8 +355139,29 @@ myPresto/omegagene is a Molecular Dynamics package (more description here).""" ; sc:name "omegagene" ; sc:url "https://github.com/kotakasahara/omegagene" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0203, + edam:topic_2269, + edam:topic_3474 ; + sc:citation , + "pubmed:35552634" ; + sc:description "Network-based Driver Gene Identification using Mutual Exclusivity." ; + sc:featureList edam:operation_3435, + edam:operation_3695, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "OMEN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.github.com/DriesVanDaele/OMEN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3382 ; @@ -339518,7 +355176,7 @@ myPresto/omegagene is a Molecular Dynamics package (more description here).""" ; sc:url "http://www.openmicroscopy.org/omero/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3071, @@ -339535,8 +355193,30 @@ Abstract As technical developments in omics and biomedical imaging drive the inc sc:name "OMERO-lib" ; sc:url "https://github.com/qbicsoftware/omero-lib" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3277, + edam:topic_3382, + edam:topic_3489 ; + sc:citation , + "pmcid:PMC9171289", + "pubmed:35685190" ; + sc:description "Easing batch image processing from OMERO." ; + sc:featureList edam:operation_1812, + edam:operation_3443, + edam:operation_3552 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "OMERO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/GReD-Clermont/omero_batch-plugin" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625 ; sc:citation , @@ -339554,7 +355234,7 @@ Abstract As technical developments in omics and biomedical imaging drive the inc biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation , @@ -339571,18 +355251,18 @@ Abstract As technical developments in omics and biomedical imaging drive the inc a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091, @@ -339607,7 +355287,7 @@ Abstract As technical developments in omics and biomedical imaging drive the inc biotools:primaryContact "Chen Meng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:19528066" ; @@ -339623,38 +355303,38 @@ Abstract As technical developments in omics and biomedical imaging drive the inc a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2019" ; - sc:name "Map data" ; - sc:sameAs "http://edamontology.org/data_2019" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_2019" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Map data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -339675,7 +355355,7 @@ Abstract As technical developments in omics and biomedical imaging drive the inc biotools:primaryContact "Ying Hu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -339691,7 +355371,7 @@ Abstract As technical developments in omics and biomedical imaging drive the inc biotools:primaryContact "Hae Kyung Im" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -339711,7 +355391,7 @@ Abstract As technical developments in omics and biomedical imaging drive the inc biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -339734,7 +355414,7 @@ Abstract As technical developments in omics and biomedical imaging drive the inc biotools:primaryContact "Daniel Giguere" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -339760,7 +355440,7 @@ Abstract As technical developments in omics and biomedical imaging drive the inc biotools:primaryContact "Carles Hernandez-Ferrer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0769, @@ -339781,7 +355461,7 @@ In addition to running this tool to use the workflow, it can be used via a web a biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -339805,7 +355485,7 @@ Omics Playground is a comprehensive self-service analytics platform for the visu sc:url "https://github.com/bigomics/omicsplayground" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0602, @@ -339823,7 +355503,7 @@ Omics BioAnalytics is a Shiny app that perform common bioinformatics analyses su sc:url "https://amritsingh.shinyapps.io/omicsBioAnalytics/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -339838,7 +355518,7 @@ Omics BioAnalytics is a Shiny app that perform common bioinformatics analyses su sc:url "http://fraenkel-nsf.csbi.mit.edu/omicsintegrator/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0769, @@ -339855,7 +355535,7 @@ Omics BioAnalytics is a Shiny app that perform common bioinformatics analyses su sc:url "http://sulab.org/tools/omics-pipe/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -339876,7 +355556,7 @@ Omics BioAnalytics is a Shiny app that perform common bioinformatics analyses su biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0780, @@ -339897,7 +355577,7 @@ Accelerating in-silico gene discovery in plants, animals and microbes.""" ; sc:url "http://pathogens.omicsdb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0121, @@ -339915,8 +355595,30 @@ Accelerating in-silico gene discovery in plants, animals and microbes.""" ; sc:softwareHelp ; sc:url "http://www.omicsdi.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0153, + edam:topic_3172, + edam:topic_3360, + edam:topic_3697 ; + sc:citation ; + sc:description "Statistical method that provides robust identification of time intervals where omics features (such as proteomics, lipidomics, metabolomics, transcriptomics, microbiome, as well as physiological parameters captured by wearable sensors such as heart rhythm, body temperature, and activity level) are significantly different between groups." ; + sc:featureList edam:operation_3432, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "OmicsLonDA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://bioconductor.org/packages/OmicsLonDA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -339939,7 +355641,7 @@ Accelerating in-silico gene discovery in plants, animals and microbes.""" ; biotools:primaryContact "Charles E. Determan Jr." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation , @@ -339957,7 +355659,7 @@ Accelerating in-silico gene discovery in plants, animals and microbes.""" ; sc:url "http://www.omicsnet.ca/OmicsNet/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0153, @@ -339975,7 +355677,7 @@ Accelerating in-silico gene discovery in plants, animals and microbes.""" ; sc:url "https://github.com/cmujzbit/OmicsON" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3308, @@ -339995,7 +355697,7 @@ Accelerating in-silico gene discovery in plants, animals and microbes.""" ; biotools:primaryContact "Davy Cats" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -340021,7 +355723,7 @@ Analysis pipelines for high throughput transcriptome data often produce long lis sc:url "http://tuevis.informatik.uni-tuebingen.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -340041,7 +355743,7 @@ Analysis pipelines for high throughput transcriptome data often produce long lis sc:url "http://omicsview.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -340061,7 +355763,7 @@ Analysis pipelines for high throughput transcriptome data often produce long lis biotools:primaryContact "XiaoLin Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -340081,7 +355783,7 @@ Description: OmicsVolcano is the R software for intuitive visualization and inte sc:url "https://github.com/IrinaVKuznetsova/OmicsVolcano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -340091,8 +355793,17 @@ Description: OmicsVolcano is the R software for intuitive visualization and inte edam:topic_3325, edam:topic_3574 ; sc:citation , + , + , + , + "pmcid:PMC2686440", + "pmcid:PMC4383985", "pmcid:PMC539987", - "pubmed:15608251" ; + "pmcid:PMC6323937", + "pubmed:15608251", + "pubmed:18842627", + "pubmed:25428349", + "pubmed:30445645" ; sc:description "Online Mendelian inheritance in Man (OMIM) - catalog of human genes and genetic disorders with descriptive text, references, and links to many NCBI resources including GenBank and PubMed." ; sc:featureList edam:operation_0224, edam:operation_0282, @@ -340110,7 +355821,7 @@ Description: OmicsVolcano is the R software for intuitive visualization and inte biotools:primaryContact "Ada Hamosh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -340135,7 +355846,7 @@ Description: OmicsVolcano is the R software for intuitive visualization and inte biotools:primaryContact "Chad A. Shaw" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -340152,7 +355863,7 @@ Description: OmicsVolcano is the R software for intuitive visualization and inte biotools:primaryContact "Björn Rotter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3277, edam:topic_3382, @@ -340168,7 +355879,7 @@ Description: OmicsVolcano is the R software for intuitive visualization and inte biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -340189,7 +355900,7 @@ OmixLitMiner is a new tool that aims to help researchers reduce time spent on li sc:url "https://github.com/Sydney-Informatics-Hub/OmixLitMiner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -340204,8 +355915,33 @@ OmixLitMiner is a new tool that aims to help researchers reduce time spent on li sc:url "http://www.omixon.com" ; biotools:primaryContact "Contact form" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_3170, + edam:topic_3308, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC8588854", + "pubmed:34820180" ; + sc:description "An integrated web application to explore quantitative differential omics data" ; + sc:featureList edam:operation_2436, + edam:operation_2939, + edam:operation_3799, + edam:operation_3891, + edam:operation_3926 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "OMnalysis" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://lbmi.uvlf.sk/omnalysis.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -340222,8 +355958,30 @@ OmixLitMiner is a new tool that aims to help researchers reduce time spent on li biotools:primaryContact "John H. Phan", "May D. Wang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0621, + edam:topic_2229, + edam:topic_3297, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC9176753", + "pubmed:35617352" ; + sc:description "Analysing and meta-analysing time-series data of microbial growth and gene expression from plate readers." ; + sc:featureList edam:operation_3435, + edam:operation_3565 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "omniplate" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://swainlab.bio.ed.ac.uk/software/omniplate" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2814 ; @@ -340239,7 +355997,7 @@ OmixLitMiner is a new tool that aims to help researchers reduce time spent on li biotools:primaryContact "Hirofumi Suzuki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081 ; @@ -340258,18 +356016,15 @@ OmixLitMiner is a new tool that aims to help researchers reduce time spent on li a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; @@ -340287,10 +356042,10 @@ OmixLitMiner is a new tool that aims to help researchers reduce time spent on li a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -340305,7 +356060,7 @@ OmixLitMiner is a new tool that aims to help researchers reduce time spent on li biotools:primaryContact "David Graham" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -340325,7 +356080,7 @@ OmixLitMiner is a new tool that aims to help researchers reduce time spent on li "Ting-Fung Chan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -340341,7 +356096,7 @@ OmixLitMiner is a new tool that aims to help researchers reduce time spent on li biotools:primaryContact "Aaron R. Sharp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -340354,7 +356109,7 @@ OmixLitMiner is a new tool that aims to help researchers reduce time spent on li sc:url "http://www.hy8.com/bioinformatics.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089 ; sc:description "A package that allows the annotation of text with ontology terms (mainly from OBO ontologies) and the computation of semantic similarity measures based on the structure of the ontology between different annotated samples." ; @@ -340371,8 +356126,59 @@ OmixLitMiner is a new tool that aims to help researchers reduce time spent on li sc:url "http://bioconductor.org/packages/release/bioc/html/Onassis.html" ; biotools:primaryContact "Eugenia Galeota" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:name "Ensembl ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0622, + edam:topic_2640, + edam:topic_3337, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9417173", + "pubmed:36026442" ; + sc:description "OncMTR stands for missense tolerance ratio specific for cancer-driving mutations. It is designed to predict cancer-causing somatic mutations. The lower the OncMTR score, the less tolerant the region for cancer-causing somatic mutations. Positions with scores below -0.05 are considered missense intolerant regions." ; + sc:featureList edam:operation_3196, + edam:operation_3226, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:name "OncMTR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://astrazeneca-cgr-publications.github.io/OncMTR-Viewer/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0203, + edam:topic_0602, + edam:topic_3172, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC9120235", + "pubmed:35615022" ; + sc:description "Human 51 672 molecular pathways database with tools for activity calculating and visualization." ; + sc:featureList edam:operation_0533, + edam:operation_3926, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:name "OncoboxPD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://open.oncobox.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -340388,8 +356194,32 @@ OmixLitMiner is a new tool that aims to help researchers reduce time spent on li sc:url "https://oncocnv.curie.fr/" ; biotools:primaryContact "Valentina Boeva" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0654, + edam:topic_2640, + edam:topic_3170, + edam:topic_3295 ; + sc:citation , + "pmcid:PMC8728272", + "pubmed:34718715" ; + sc:description "An interactive online database for analysis of gene expression and viral infection in cancer." ; + sc:featureList edam:operation_3207, + edam:operation_3223, + edam:operation_3463 ; + sc:isAccessibleForFree true ; + sc:name "OncoDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://oncodb.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Script" ; sc:applicationSubCategory edam:topic_0199, @@ -340407,7 +356237,7 @@ OmixLitMiner is a new tool that aims to help researchers reduce time spent on li biotools:primaryContact "David Tamborero" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2533, @@ -340423,8 +356253,72 @@ OmixLitMiner is a new tool that aims to help researchers reduce time spent on li sc:softwareHelp ; sc:url "http://bg.upf.edu/group/projects/oncodrive-fm.php" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2725" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ensembl transcript ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1098" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "RefSeq accession" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ensembl ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1027" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene ID (NCBI)" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "UniProt accession" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0085, + edam:topic_0091, + edam:topic_0092, + edam:topic_0208, + edam:topic_2533, + edam:topic_2640, + edam:topic_3345, + edam:topic_3366, + edam:topic_3958 ; + sc:author ; + sc:citation ; + sc:description """oncoEnrichR is an R package for functional interrogation of human genesets in the context of cancer. The package leverages an extensive amount of prior molecular knowledge for geneset interpretation along multiple dimensions. + +oncoEnrichR is primarily intended for exploratory analysis and prioritization of a gene list from high-throughput cancer biology experiments, e.g. genetic screens (siRNA/CRISPR), protein proximity labeling, or transcriptomics (differential expression). The tool queries a number of high-quality data resources in order to assemble useful gene annotations and analyses in an interactive report.""" ; + sc:featureList edam:operation_0276, + edam:operation_0531, + edam:operation_2436, + edam:operation_2437, + edam:operation_3282, + edam:operation_3463, + edam:operation_3672, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "oncoEnrichR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + , + , + ; + sc:softwareVersion "1.0.9" ; + sc:url "https://github.com/sigven/oncoEnrichR" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640 ; sc:description "Oncofuse is a framework designed to estimate the oncogenic potential of de-novo discovered gene fusions. It uses several hallmark features and employs a bayesian classifier to provide the probability of a given gene fusion being a driver mutation." ; sc:featureList edam:operation_0253, @@ -340433,7 +356327,7 @@ OmixLitMiner is a new tool that aims to help researchers reduce time spent on li sc:url "https://github.com/mikessh/oncofuse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -340452,7 +356346,7 @@ OncoGEMINI is an adaptation of GEMINI intended for the improved identification o sc:url "https://github.com/fakedrtom/oncogemini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:30071882" ; sc:description "The widespread incorporation of next-generation sequencing into clinical oncology has yielded an unprecedented amount of molecular data from thousands of patients. A main current challenge is to find out reliable ways to extrapolate results from one group of patients to another and to bring rationale to individual cases in the light of what is known from the cohorts. We present OncoGenomic Landscapes, a framework to analyze and display thousands of cancer genomic profiles in a 2D space. Our tool allows users to rapidly assess the heterogeneity of large cohorts, enabling the comparison to other groups of patients, and using driver genes as landmarks to aid in the interpretation of the landscapes. In our web-server, we also offer the possibility of mapping new samples and cohorts onto 22 predefined landscapes related to cancer cell line panels, organoids, patient-derived xenografts, and clinical tumor samples." ; @@ -340460,7 +356354,7 @@ OncoGEMINI is an adaptation of GEMINI intended for the improved identification o sc:url "https://oglandscapes.irbbarcelona.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168 ; @@ -340478,8 +356372,37 @@ OncoGEMINI is an adaptation of GEMINI intended for the improved identification o sc:url "http://bioconductor.org/packages/release/bioc/html/oncomix.html" ; biotools:primaryContact "Daniel Pique" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0208, + edam:topic_0622, + edam:topic_2640, + edam:topic_3345, + edam:topic_3366, + edam:topic_3473 ; + sc:author ; + sc:description """oncoPharmaDB - Targeted and non-targeted anticancer drugs and drug regimens. + +This R package provides a dataset and method to query targeted and non-targeted cancer drugs, including comprehensive annotations per target, drug mechanism-of-action, approval dates, clinical trial phases for various indications etc.""" ; + sc:featureList edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "oncoPharmaDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + , + , + ; + sc:softwareVersion "0.7.2" ; + sc:url "https://github.com/sigven/oncoPharmaDB" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640, @@ -340501,7 +356424,7 @@ OncoGEMINI is an adaptation of GEMINI intended for the improved identification o biotools:primaryContact "Daniele Ramazzotti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -340526,18 +356449,18 @@ OncoGEMINI is an adaptation of GEMINI intended for the improved identification o a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3722" ; - sc:name "Physiology parameter" ; - sc:sameAs "http://edamontology.org/data_3722" ] ; + sc:additionalType "http://edamontology.org/data_3722" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Physiology parameter" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640, @@ -340559,7 +356482,7 @@ OncoGEMINI is an adaptation of GEMINI intended for the improved identification o biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_2640, @@ -340581,7 +356504,7 @@ OncoGEMINI is an adaptation of GEMINI intended for the improved identification o sc:url "http://www.oncosplicing.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2533, @@ -340599,7 +356522,7 @@ OncoGEMINI is an adaptation of GEMINI intended for the improved identification o sc:url "http://www.broadinstitute.org/oncotator/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -340622,7 +356545,7 @@ OncoGEMINI is an adaptation of GEMINI intended for the improved identification o sc:url "http://oncothreads.gehlenborglab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0659, @@ -340645,7 +356568,7 @@ OncotRF provides an integrated view of dysregulated tRFs among cancers. It serve sc:url "http://bioinformatics.zju.edu.cn/OncotRF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -340667,7 +356590,7 @@ OncoVar is a platform to systematically prioritize the oncogenic ability of soma sc:url "https://oncovar.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2640 ; @@ -340681,14 +356604,12 @@ OncoVar is a platform to systematically prioritize the oncogenic ability of soma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -340704,7 +356625,7 @@ OncoVar is a platform to systematically prioritize the oncogenic ability of soma sc:url "http://babel.ucmp.umu.se/ond-crf/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3068, @@ -340722,7 +356643,7 @@ OncoVar is a platform to systematically prioritize the oncogenic ability of soma sc:url "http://z.umn.edu/ondb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0160, @@ -340742,7 +356663,7 @@ OncoVar is a platform to systematically prioritize the oncogenic ability of soma sc:url "http://bioinformatics.weizmann.ac.il/~milana/OneCYRCA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -340758,7 +356679,7 @@ OncoVar is a platform to systematically prioritize the oncogenic ability of soma biotools:primaryContact "Christopher Stokely" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -340774,7 +356695,7 @@ OncoVar is a platform to systematically prioritize the oncogenic ability of soma biotools:primaryContact "One to Three Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0659, @@ -340794,7 +356715,7 @@ OncoVar is a platform to systematically prioritize the oncogenic ability of soma biotools:primaryContact "Raffaele A Calogero" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; sc:citation ; @@ -340808,7 +356729,7 @@ OncoVar is a platform to systematically prioritize the oncogenic ability of soma sc:url "https://onepetri.ai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation ; @@ -340827,7 +356748,7 @@ OncoVar is a platform to systematically prioritize the oncogenic ability of soma biotools:primaryContact "Yong Kee Tan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -340848,7 +356769,7 @@ OncoVar is a platform to systematically prioritize the oncogenic ability of soma sc:url "https://mccb.umassmed.edu/OneStopRNAseq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3053, @@ -340865,7 +356786,7 @@ OncoVar is a platform to systematically prioritize the oncogenic ability of soma "Sungho Won" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0218, @@ -340884,7 +356805,7 @@ Peptide - HLA-A*02:01 binding prediction using structure and sequence feature se sc:url "https://github.com/shikhar249/OnionMHC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0209, @@ -340905,7 +356826,7 @@ OpenBabel for converting to PDBQT file format http://openbabel.org/wiki/Main_Pag sc:url "https://github.com/bigchem/online-chem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625 ; sc:citation , @@ -340925,7 +356846,7 @@ OpenBabel for converting to PDBQT file format http://openbabel.org/wiki/Main_Pag biotools:primaryContact "David Robertson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3071 ; @@ -340940,7 +356861,7 @@ OpenBabel for converting to PDBQT file format http://openbabel.org/wiki/Main_Pag sc:url "http://sbml.org/Facilities/Documentation/Validator_Web_API" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -340961,7 +356882,7 @@ OpenBabel for converting to PDBQT file format http://openbabel.org/wiki/Main_Pag sc:url "https://github.com/xfcui/onn4arg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3174, @@ -340979,7 +356900,7 @@ This program is designed to perform fast and accurate biome source tracking amon sc:url "https://github.com/HUST-NingKang-Lab/ONN4MST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3361, edam:topic_3678 ; @@ -340990,8 +356911,35 @@ This program is designed to perform fast and accurate biome source tracking amon sc:url "https://github.com/alan-s-lee/OnPoint" ; biotools:primaryContact "Jonathan Tsay" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0077, + edam:topic_0082, + edam:topic_2814, + edam:topic_3047, + edam:topic_3067 ; + sc:citation , + "pmcid:PMC8728301", + "pubmed:34986600" ; + sc:description "A database that collects tetrads, quadruplexes, and G4-helices found in PDB-deposited structures of nucleic acids. It stores their sequences, secondary and tertiary structures, and motif-specific description including planarity, rise and twist parameters, ONZ classification, Webba da Silva geometric formalism, dot-bracket encoding, arc diagrams, etc. Graphical 2D and 3D views complement their characteristics." ; + sc:featureList edam:operation_1831, + edam:operation_2486, + edam:operation_2488, + edam:operation_2518, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:name "ONQUADRO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://onquadro.cs.put.poznan.pl/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:description "OnTheFly2.0 is a web application to aid users collecting biological information from documents. With OnTheFly2.0 one is able to extract bioentities from individual articles in formats such as plain text, Microsoft Word, Excel and PDF files ad scan images and identify terms by using Optical Character Recognition (OCR)." ; sc:name "OnTheFly" ; @@ -340999,7 +356947,7 @@ This program is designed to perform fast and accurate biome source tracking amon sc:url "http://bib.fleming.gr:3838/OnTheFly" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -341030,18 +356978,17 @@ This program is designed to perform fast and accurate biome source tracking amon a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0966" ; - sc:name "Ontology term" ; - sc:sameAs "http://edamontology.org/data_0966" ], + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_2549" ; + sc:name "Taxonomy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; + sc:additionalType "http://edamontology.org/data_0966" ; + sc:name "Ontology term" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2254" ; - sc:name "OBO file format name" ; - sc:sameAs "http://edamontology.org/data_2254" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2254" ; + sc:encodingFormat "http://edamontology.org/format_3255" ; + sc:name "OBO file format name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -341071,7 +357018,7 @@ This program is designed to perform fast and accurate biome source tracking amon biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0089, @@ -341090,7 +357037,7 @@ This program is designed to perform fast and accurate biome source tracking amon biotools:primaryContact "Natalja Kurbatova" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0769, @@ -341109,10 +357056,9 @@ This program is designed to perform fast and accurate biome source tracking amon a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2223" ; - sc:name "Ontology metadata" ; - sc:sameAs "http://edamontology.org/data_2223" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2223" ; + sc:name "Ontology metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -341142,7 +357088,7 @@ This program is designed to perform fast and accurate biome source tracking amon sc:url "http://emboss.open-bio.org/rel/rel6/apps/ontocount.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -341163,10 +357109,9 @@ This program is designed to perform fast and accurate biome source tracking amon a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0966" ; - sc:name "Ontology term" ; - sc:sameAs "http://edamontology.org/data_0966" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0966" ; + sc:name "Ontology term" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -341197,10 +357142,9 @@ This program is designed to perform fast and accurate biome source tracking amon a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0966" ; - sc:name "Ontology term" ; - sc:sameAs "http://edamontology.org/data_0966" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0966" ; + sc:name "Ontology term" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -341231,10 +357175,9 @@ This program is designed to perform fast and accurate biome source tracking amon a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0966" ; - sc:name "Ontology term" ; - sc:sameAs "http://edamontology.org/data_0966" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0966" ; + sc:name "Ontology term" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -341265,10 +357208,9 @@ This program is designed to perform fast and accurate biome source tracking amon a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0966" ; - sc:name "Ontology term" ; - sc:sameAs "http://edamontology.org/data_0966" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0966" ; + sc:name "Ontology term" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -341299,10 +357241,9 @@ This program is designed to perform fast and accurate biome source tracking amon a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0966" ; - sc:name "Ontology term" ; - sc:sameAs "http://edamontology.org/data_0966" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0966" ; + sc:name "Ontology term" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -341333,10 +357274,9 @@ This program is designed to perform fast and accurate biome source tracking amon a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0966" ; - sc:name "Ontology term" ; - sc:sameAs "http://edamontology.org/data_0966" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0966" ; + sc:name "Ontology term" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -341367,10 +357307,9 @@ This program is designed to perform fast and accurate biome source tracking amon a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0966" ; - sc:name "Ontology term" ; - sc:sameAs "http://edamontology.org/data_0966" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0966" ; + sc:name "Ontology term" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -341401,10 +357340,9 @@ This program is designed to perform fast and accurate biome source tracking amon a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2223" ; - sc:name "Ontology metadata" ; - sc:sameAs "http://edamontology.org/data_2223" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2223" ; + sc:name "Ontology metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -341434,7 +357372,7 @@ This program is designed to perform fast and accurate biome source tracking amon sc:url "http://emboss.open-bio.org/rel/rel6/apps/ontoisobsolete.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Web application" ; @@ -341450,7 +357388,7 @@ This program is designed to perform fast and accurate biome source tracking amon sc:url "http://ontologizer.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0769, @@ -341471,7 +357409,7 @@ This repository contains script which were used to build and train the predictio sc:url "https://github.com/bio-ontology-research-group/ontology-extension" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089 ; sc:description "Support harvesting of diverse bioinformatic ontologies, making particular use of the ontologyIndex package on CRAN. We provide snapshots of key ontologies for terms about cells, cell lines, chemical compounds, and anatomy, to help analyze genome-scale experiments, particularly cell x compound screens. Another purpose is to strengthen development of compelling use cases for richer interfaces to emerging ontologies." ; @@ -341489,7 +357427,7 @@ This repository contains script which were used to build and train the predictio biotools:primaryContact "VJ Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3071 ; @@ -341504,7 +357442,7 @@ This repository contains script which were used to build and train the predictio sc:url "https://confluence.crbs.ucsd.edu/display/NIF/OntoQuestMain" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3071, @@ -341521,10 +357459,9 @@ This repository contains script which were used to build and train the predictio a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0966" ; - sc:name "Ontology term" ; - sc:sameAs "http://edamontology.org/data_0966" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0966" ; + sc:name "Ontology term" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation , @@ -341553,8 +357490,50 @@ This repository contains script which were used to build and train the predictio sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/ontotext.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0203, + edam:topic_2229, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9148541", + "pubmed:35579517" ; + sc:description "A dashboard to visualize gene expression during Drosophila oogenesis suggests meiotic entry is regulated post-transcriptionally." ; + sc:featureList edam:operation_0313, + edam:operation_0571, + edam:operation_3223 ; + sc:isAccessibleForFree true ; + sc:name "Oo-site" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.ranganlab.com/Oo-site" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2815, + edam:topic_3318, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9159682", + "pubmed:35669063" ; + sc:description "Generative model-enhanced human motion prediction." ; + sc:featureList edam:operation_0244, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "OoD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bouracha/OoDMotion" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -341572,7 +357551,7 @@ This repository contains script which were used to build and train the predictio biotools:primaryContact "Anthony Bradley" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3518 ; @@ -341588,7 +357567,7 @@ This repository contains script which were used to build and train the predictio biotools:primaryContact "Kevin R. Coombes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -341611,7 +357590,7 @@ OPA2Vec is a tool that can be used to produce feature vectors for biological ent sc:url "https://github.com/bio-ontology-research-group/opa2vec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -341628,7 +357607,7 @@ OPA2Vec is a tool that can be used to produce feature vectors for biological ent sc:url "http://opaas.ibms.sinica.edu.tw/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -341637,6 +357616,7 @@ OPA2Vec is a tool that can be used to produce feature vectors for biological ent sc:citation ; sc:description "Prediction of MoRF regions in intrinsically disordered protein sequences." ; sc:featureList edam:operation_0245 ; + sc:isAccessibleForFree true ; sc:name "OPAL" ; sc:operatingSystem "Linux", "Mac", @@ -341647,7 +357627,7 @@ OPA2Vec is a tool that can be used to produce feature vectors for biological ent "Ashwini Patil" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3068, @@ -341669,7 +357649,7 @@ OPA2Vec is a tool that can be used to produce feature vectors for biological ent "Wilfred Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3263, edam:topic_3337, edam:topic_3384 ; @@ -341690,29 +357670,13 @@ Flexibility in the interpretation of original regulations established in the pas sc:url "https://open-brain-consent.readthedocs.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "OpenCRAVAT is a new open source, scalable decision support system to support variant and gene prioritization. It offers a dynamic GUI, allowing users to easily, download tools from an extensive resource catalog, create customized pipelines, run jobs at speeds that exceed current variant annotation API services, and explore results in a richly detailed viewing environment. OpenCRAVAT is distinguished from similar tools by the amount and diversity of data resources and computational prediction methods available, which span germline, somatic, common, rare, coding and non-coding variants. We have designed the OpenCRAVAT resource catalog to be open and modular to maximize community and developer involvement, and as a result the catalog is being actively developed and growing larger every month." ; sc:name "open-cravat" ; sc:url "https://opencravat.org/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3473, - edam:topic_3474 ; - sc:citation ; - sc:description """On Car Sharing Usage Prediction with Open Socio-Demographic Data. - -Home — City of Vancouver Open Data Portal. - -View datasets from the City of Vancouver, BC, Canada. Download data in various formats, explore with charts and maps, and access via API. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Car', 'FFCS', 'socio-demographic', 'FFCS rides'""" ; - sc:featureList edam:operation_3282 ; - sc:name "open-data" ; - sc:url "https://opendata.vancouver.ca/pages/home/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0769 ; @@ -341728,7 +357692,7 @@ View datasets from the City of Vancouver, BC, Canada. Download data in various f biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -341741,7 +357705,7 @@ View datasets from the City of Vancouver, BC, Canada. Download data in various f sc:url "https://github.com/pavlin-policar/openTSNE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Web application" ; @@ -341761,21 +357725,25 @@ View datasets from the City of Vancouver, BC, Canada. Download data in various f sc:softwareHelp ; sc:url "http://openbabel.org/wiki/Main_Page" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3334, - edam:topic_3393, - edam:topic_3855 ; - sc:citation , - "pmcid:PMC6694453", - "pubmed:31448096" ; - sc:description "good for science, good for society, good for scientists | openlabnotebooks.org – A growing team of groundbreaking scientists around the world are now sharing their lab notebooks online | An Extreme Open Science Initiative | In a groundbreaking initiative, scientists around the world from Universities in Canada, France, Sweden, the UK, and the USA are now sharing their lab notebooks | Open Lab Notebooks: An Extreme Open Science Initiative 19th January 2018 | A growing team of groundbreaking scientists around the world are now sharing their lab notebooks online | In a groundbreaking initiative, scientists around the world from Universities in Canada, France, Sweden, the UK, and the USA are starting to share their laboratory notebooks live, online | CIHR Boardroom 9-101, 160 Elgin st, Ottawa, Canada" ; - sc:featureList edam:operation_3216, - edam:operation_3431 ; - sc:name "open laboratory notebooks" ; - sc:url "http://openlabnotebooks.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3263, + edam:topic_3361, + edam:topic_3678 ; + sc:citation , + "pubmed:35233751" ; + sc:description "A web application for running and sharing online experiments." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Open Lab" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://open-lab.online" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0202, @@ -341798,7 +357766,7 @@ View datasets from the City of Vancouver, BC, Canada. Download data in various f biotools:primaryContact "Open PHACTS foundation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3332, edam:topic_3336, @@ -341828,7 +357796,7 @@ View datasets from the City of Vancouver, BC, Canada. Download data in various f "Open PHACTS support portal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0202, edam:topic_2258, @@ -341850,7 +357818,7 @@ View datasets from the City of Vancouver, BC, Canada. Download data in various f sc:url "http://ops.rsc.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_2258, @@ -341881,7 +357849,7 @@ View datasets from the City of Vancouver, BC, Canada. Download data in various f "Open PHACTS support portal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application", @@ -341909,22 +357877,18 @@ The portal aggregates and merges genetic associations curated from both literatu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0622 ; @@ -341940,7 +357904,7 @@ The portal aggregates and merges genetic associations curated from both literatu biotools:primaryContact "Hiroshi Yamada" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3305, @@ -341957,7 +357921,7 @@ OpenABM-Covid19: Agent-based model for modelling the Covid-19 epidemic.""" ; sc:url "https://github.com/BDI-pathogens/OpenABM-Covid19" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0780, @@ -341975,7 +357939,7 @@ OpenABM-Covid19: Agent-based model for modelling the Covid-19 epidemic.""" ; biotools:primaryContact "guillaume.garin@itkweb.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3277, @@ -341994,7 +357958,7 @@ OpenABM-Covid19: Agent-based model for modelling the Covid-19 epidemic.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3336, @@ -342010,7 +357974,7 @@ OpenABM-Covid19: Agent-based model for modelling the Covid-19 epidemic.""" ; sc:url "http://openastexviewer.net/web/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -342035,7 +357999,7 @@ The OpenAWSEM code is currently being tested. Use at your own risk. And let us k sc:url "https://github.com/npschafer/openawsem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0769, @@ -342052,7 +358016,7 @@ OpenBioLink is a resource and evaluation framework for evaluating link predictio sc:url "https://github.com/OpenBioLink/OpenBioLink" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -342070,7 +358034,7 @@ OpenBioLink is a resource and evaluation framework for evaluating link predictio biotools:primaryContact "Said Pertuz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_3344 ; @@ -342087,7 +358051,7 @@ OpenBioLink is a resource and evaluation framework for evaluating link predictio sc:url "https://www.openCARP.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, edam:topic_0621, @@ -342103,7 +358067,7 @@ OpenBioLink is a resource and evaluation framework for evaluating link predictio biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -342123,18 +358087,18 @@ OpenChem is a deep learning toolkit for Computational Chemistry with PyTorch bac a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Peptide mass fingerprint" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0121, @@ -342158,7 +358122,7 @@ OpenChem is a deep learning toolkit for Computational Chemistry with PyTorch bac sc:url "https://www.openchrom.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3398, @@ -342173,7 +358137,7 @@ OpenChem is a deep learning toolkit for Computational Chemistry with PyTorch bac biotools:primaryContact "ChrisBradley" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_2229, @@ -342191,7 +358155,7 @@ OpenChem is a deep learning toolkit for Computational Chemistry with PyTorch bac sc:url "https://openlooper.hgc.jp/opencontami/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -342211,28 +358175,8 @@ OpenChem is a deep learning toolkit for Computational Chemistry with PyTorch bac sc:url "http://bioconductor.org/packages/release/bioc/html/openCyto.html" ; biotools:primaryContact "Mike Jiang" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3302, - edam:topic_3324, - edam:topic_3325 ; - sc:citation , - "pmcid:PMC6879140", - "pubmed:31770393" ; - sc:description """Parasitic infections and medical expenses according to Health Insurance Review Assessment claims data in South Korea, 2011-2018. - -1월 15일부터 SAS Studio는 windows10 환경에 internet Explorer 브라우져에서만 사용이 가능합니다. - -의료빅데이터 연구과제 이용 관련 변경사항 안내 2019-07-05. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'anisakiasis', 'anisakiasis pinworm', 'cysticercosis anisakiasis pinworm', 'claims cysticercosis anisakiasis pinworm'""" ; - sc:featureList edam:operation_0531, - edam:operation_2939, - edam:operation_3891 ; - sc:name "opendata" ; - sc:url "http://opendata.hira.or.kr" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3315, @@ -342249,10 +358193,10 @@ If you wish to receive the OpenDose newsletter, send an email to this link. You a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0958" ; - sc:name "Tool metadata" ; - sc:sameAs "http://edamontology.org/data_0958" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0958" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Tool metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Web API", "Web application" ; @@ -342273,8 +358217,26 @@ If you wish to receive the OpenDose newsletter, send an email to this link. You sc:softwareVersion "v3" ; sc:url "https://openebench.bsc.es/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_2815, + edam:topic_3063 ; + sc:citation , + "pubmed:35062196" ; + sc:description "Converting openEHR Compositions to Fast Healthcare Interoperability Resources (FHIR) for the German Corona Consensus Dataset (GECCO)." ; + sc:featureList edam:operation_0335, + edam:operation_3762 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "openEHR-to-FHIR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.plri.de/NektariosLadas/openehr-to-fhir" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3297, edam:topic_3303, @@ -342292,7 +358254,7 @@ The application of short electric pulses to biological tissues have spread acros sc:url "https://github.com/LSC-UBA/OpenEP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622 ; sc:description "The OpenFlu database (OpenFluDB) is part of a collaborative effort to share observations on the evolution of Influenza virus in both animals and humans. It contains genomic and protein sequences as well as epidemiological data from more than 25'000 isolates." ; @@ -342306,7 +358268,7 @@ The application of short electric pulses to biological tissues have spread acros biotools:primaryContact "Robin Liechti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3318, @@ -342322,7 +358284,7 @@ The application of short electric pulses to biological tissues have spread acros biotools:primaryContact "Fabienne Dupuy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3474 ; @@ -342336,7 +358298,7 @@ This is the code published for the paper "OpenGraphGym: A Parallel Reinforcement sc:url "https://github.com/zwj3652011/OpenGraphGym.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -342351,7 +358313,7 @@ This is the code published for the paper "OpenGraphGym: A Parallel Reinforcement sc:url "http://faculty.chemistry.harvard.edu/shakhnovich/software/opengrowth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal" ; sc:applicationSubCategory edam:topic_0102, @@ -342371,7 +358333,7 @@ The OpenGWAS database is constantly growing, but there may be studies that users sc:url "https://gwas.mrcieu.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3383, @@ -342389,7 +358351,7 @@ The OpenGWAS database is constantly growing, but there may be studies that users biotools:primaryContact "Erwin Frise" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3067, edam:topic_3300, @@ -342414,7 +358376,7 @@ The OpenGWAS database is constantly growing, but there may be studies that users sc:url "https://github.com/anki-xyz/openhsv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -342433,7 +358395,7 @@ The OpenGWAS database is constantly growing, but there may be studies that users biotools:primaryContact "HUSAR Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3300, edam:topic_3405, @@ -342448,16 +358410,51 @@ Computer simulations enhanced the development of many medical devices and have b sc:name "OpenMandible" ; sc:url "https://github.com/ArsoVukicevic/OpenMandible" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0176, + edam:topic_3316 ; + sc:citation , + "pubmed:35512391" ; + sc:description "Parallel, open-source tools for general protein structure modeling and refinement from pairwise distances." ; + sc:featureList edam:operation_0244, + edam:operation_0322, + edam:operation_2476 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "OpenMDlr" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BSDExabio/OpenMDlr-amber" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3372 ; + sc:citation , + "pmcid:PMC9022875", + "pubmed:35465173" ; + sc:description "Open community platform for hearing aid algorithm research." ; + sc:featureList edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:name "openMHA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.openmha.org" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0602 ; @@ -342476,28 +358473,37 @@ Computer simulations enhanced the development of many medical devices and have b sc:url "http://openmm.org/" ; biotools:primaryContact "Peter Eastman" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "OpenMOLE has been developed since 2008 as a free and open-source platform. It offers tools to run, explore, diagnose and optimize your numerical model, taking advantage of distributed computing environments. With OpenMOLE you can explore your already developed model, in any language (Java, Binary exe, NetLogo, R, SciLab, Python, C++, etc.)" ; + sc:isAccessibleForFree true ; + sc:name "OpenMole" ; + sc:softwareHelp ; + sc:url "https://openmole.org/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3683" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_3683" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3683" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3683" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3683" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workbench" ; sc:applicationSubCategory edam:topic_0121, @@ -342549,14 +358555,14 @@ Computer simulations enhanced the development of many medical devices and have b a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3682" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0153, @@ -342573,7 +358579,7 @@ Computer simulations enhanced the development of many medical devices and have b sc:url "http://lababi.bioprocess.org/index.php/lababi-software/79-openmzxy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -342595,7 +358601,7 @@ OpenPepXL is a protein-protein cross-link identification tool implemented in C++ sc:url "https://openms.org/openpepxl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3336 ; sc:citation ; @@ -342611,7 +358617,7 @@ OpenPepXL is a protein-protein cross-link identification tool implemented in C++ biotools:primaryContact "Openphacts" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3382, @@ -342629,8 +358635,29 @@ OpenPepXL is a protein-protein cross-link identification tool implemented in C++ "Windows" ; sc:url "https://gitlab.com/BioimageInformaticsGroup/openphi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0128, + edam:topic_3957 ; + sc:citation , + "pubmed:35662469" ; + sc:description "An Open-source Platform for Hosting, Visualizing and Analyzing Protein Interaction Data." ; + sc:featureList edam:operation_3431, + edam:operation_3435, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "openPIP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://openpip.baderlab.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3372 ; sc:author , @@ -342650,7 +358677,7 @@ OpenPepXL is a protein-protein cross-link identification tool implemented in C++ . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0632 ; sc:description "An implementation of methods for designing, evaluating, and comparing primer sets for multiplex PCR. Primers are designed by solving a set cover problem such that the number of covered template sequences is maximized with the smallest possible set of primers. To guarantee that high-quality primers are generated, only primers fulfilling constraints on their physicochemical properties are selected." ; @@ -342668,7 +358695,7 @@ OpenPepXL is a protein-protein cross-link identification tool implemented in C++ biotools:primaryContact "Matthias Döring" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0632 ; sc:description "A Shiny application providing methods for designing, evaluating, and comparing primer sets for multiplex polymerase chain reaction. Primers are designed by solving a set cover problem such that the number of covered template sequences is maximized with the smallest possible set of primers. To guarantee that high-quality primers are generated, only primers fulfilling constraints on their physicochemical properties are selected." ; @@ -342686,7 +358713,7 @@ OpenPepXL is a protein-protein cross-link identification tool implemented in C++ biotools:primaryContact "Matthias Döring" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0659, @@ -342706,7 +358733,7 @@ OpenProt is the first database that enforces a polycistronic model of eukaryotic sc:url "https://openprot.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3263, edam:topic_3305, @@ -342721,8 +358748,22 @@ OpenProt is the first database that enforces a polycistronic model of eukaryotic sc:url "https://opensafely.org/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_2815, + edam:topic_3068 ; + sc:citation , + "pubmed:35500997" ; + sc:description "A model for estimating lower back kinetics in gait." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "OpenSim" ; + sc:url "https://simtk.org/projects/emg_opt_tool" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2229, @@ -342745,10 +358786,9 @@ OpenProt is the first database that enforces a polycistronic model of eukaryotic a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3574 ; sc:citation , @@ -342762,7 +358802,7 @@ OpenProt is the first database that enforces a polycistronic model of eukaryotic sc:url "https://www.opensnp.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3385 ; @@ -342777,7 +358817,7 @@ OpenProt is the first database that enforces a polycistronic model of eukaryotic sc:url "http://openspim.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, @@ -342795,10 +358835,10 @@ A Robust and Scalable Software Package for Reproducible Analysis of High-Through a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "Mass spectrum" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -342813,7 +358853,7 @@ A Robust and Scalable Software Package for Reproducible Analysis of High-Through sc:url "http://www.github.com/michalsta/opentims" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web API", "Web application" ; @@ -342840,14 +358880,12 @@ A Robust and Scalable Software Package for Reproducible Analysis of High-Through a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_3379 ; @@ -342862,8 +358900,29 @@ A Robust and Scalable Software Package for Reproducible Analysis of High-Through sc:url "https://opentrials.net/" ; biotools:primaryContact "Ben Goldacre" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_0780, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC8741824", + "pubmed:34996963" ; + sc:description "An open-source, low-cost device for fallow weed detection." ; + sc:featureList edam:operation_2428, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "OpenWeedLocator OWL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/geezacoleman/OpenWeedLocator" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -342877,7 +358936,7 @@ A Robust and Scalable Software Package for Reproducible Analysis of High-Through sc:url "http://sourceforge.net/projects/operasf/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -342890,7 +358949,7 @@ A Robust and Scalable Software Package for Reproducible Analysis of High-Through sc:url "https://sourceforge.net/projects/operasf/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0154, @@ -342910,22 +358969,22 @@ A Robust and Scalable Software Package for Reproducible Analysis of High-Through a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_1632" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_1775, @@ -342947,7 +359006,7 @@ A Robust and Scalable Software Package for Reproducible Analysis of High-Through biotools:primaryContact "Chenglin Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0780, @@ -342968,8 +359027,32 @@ A Robust and Scalable Software Package for Reproducible Analysis of High-Through "Windows" ; sc:url "https://github.com/sandialabs/OperonSEQer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_3174, + edam:topic_3297, + edam:topic_3837 ; + sc:citation , + "pmcid:PMC9017871", + "pubmed:35445164" ; + sc:description "A Python package for identifying gene clusters in large genomics and metagenomics data sets." ; + sc:featureList edam:operation_0310, + edam:operation_0337, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Opfi" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://github.com/wilkelab/Opfi" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3489 ; @@ -342986,8 +359069,26 @@ tissue specific PPI networks across species.""" ; sc:name "ophid" ; sc:url "http://ophid.utoronto.ca/iid" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_2269 ; + sc:citation ; + sc:description "Open Perimetry Interface (OPI) for simulating and controlling visual field machines using R" ; + sc:featureList edam:operation_0337, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "OPI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://CRAN.R-project.org/package=OPI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -343008,7 +359109,7 @@ tissue specific PPI networks across species.""" ; biotools:primaryContact "Andrei Lomize" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -343028,7 +359129,7 @@ tissue specific PPI networks across species.""" ; biotools:primaryContact "Henry Loeffler-Wirth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -343050,7 +359151,7 @@ oposSOM is a comprehensive data analysis software combining diversity analyses, sc:url "http://www.izbi.uni-leipzig.de/opossom-browser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -343073,7 +359174,7 @@ oposSOM is a comprehensive data analysis software combining diversity analyses, biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640, @@ -343094,7 +359195,7 @@ oposSOM is a comprehensive data analysis software combining diversity analyses, biotools:primaryContact "Soroor Hediyeh zadeh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293, @@ -343108,8 +359209,31 @@ oposSOM is a comprehensive data analysis software combining diversity analyses, sc:url "http://vlsi.cs.ucf.edu/nsf/software/opph/" ; biotools:primaryContact "Ravi VijayaSatya" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0659, + edam:topic_3170, + edam:topic_3512, + edam:topic_3518 ; + sc:citation , + "pubmed:35802238" ; + sc:description "A MATLAB Package for Comprehensive Pathway Analysis of lncRNA-miRNA-mRNA in Humans." ; + sc:featureList edam:operation_0314, + edam:operation_3792, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "opplncRNA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/HangZhouSheep/opplncRNA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3383, @@ -343129,7 +359253,7 @@ Here, we present OpSeF, a Python framework for deep-learning based semantic segm sc:url "https://github.com/trasse/OpSeF-IV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0749, @@ -343156,7 +359280,7 @@ opt-SNE was developed to solve two fundamental problems with t-SNE. The first is sc:url "http://www.omiq.ai/opt-SNE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168, @@ -343174,7 +359298,7 @@ The CRISPR Cas9 system is currently considered as the most advanced tool used fo sc:url "https://github.com/Jie-lan/OPT-sgRNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3307, @@ -343196,7 +359320,7 @@ The CRISPR Cas9 system is currently considered as the most advanced tool used fo "Susmita Datta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3384, @@ -343214,7 +359338,7 @@ OptCoNet: An Optimized Convolutional Neural Network for an Automatic Diagnosis o sc:url "https://github.com/biomedicallabecenitsilchar/optconet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -343233,7 +359357,7 @@ OptCoNet: An Optimized Convolutional Neural Network for an Automatic Diagnosis o biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3056 ; @@ -343254,7 +359378,7 @@ OptCoNet: An Optimized Convolutional Neural Network for an Automatic Diagnosis o biotools:primaryContact "Robin Wellmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3071, @@ -343277,7 +359401,7 @@ OptCoNet: An Optimized Convolutional Neural Network for an Automatic Diagnosis o sc:url "https://jarvis.nist.gov/optimade" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -343295,7 +359419,7 @@ OptCoNet: An Optimized Convolutional Neural Network for an Automatic Diagnosis o biotools:primaryContact "Abhishek Gupta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3474, @@ -343315,7 +359439,7 @@ optimalFlow: optimal-transport approach to Flow Cytometry analysis.""" ; sc:url "https://bioconductor.org/packages/optimalFlow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -343331,7 +359455,7 @@ optimalFlow: optimal-transport approach to Flow Cytometry analysis.""" ; biotools:primaryContact "Sulav Duwal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3325, @@ -343344,7 +359468,7 @@ optimalFlow: optimal-transport approach to Flow Cytometry analysis.""" ; sc:url "https://github.com/wxwx1993/Bayesian_IA_Timing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0623, @@ -343367,7 +359491,7 @@ optimalFlow: optimal-transport approach to Flow Cytometry analysis.""" ; biotools:primaryContact "Santiago Garcia-Vallvé" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -343387,8 +359511,27 @@ A new Variational Auto-Encoder (VAE) architecture that goes from a molecular gra sc:name "OptiMol" ; sc:url "http://csb.cs.mcgill.ca/optimol" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3070, + edam:topic_3307, + edam:topic_3315 ; + sc:citation ; + sc:description "A general purpose adaptive optimisation engine in R." ; + sc:featureList edam:operation_2476, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Optimus" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://github.com/SahakyanLab/Optimus" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -343402,8 +359545,16 @@ A new Variational Auto-Encoder (VAE) architecture that goes from a molecular gra sc:url "http://op.pgx.ca" ; biotools:primaryContact "Guillaume Lettre" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "Boolean regulatory network reconstruction using literature based knowledge." ; + sc:name "optimusQual" ; + sc:softwareHelp ; + sc:url "https://www.vital-it.ch/software/optimusqual" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -343426,14 +359577,33 @@ A new Variational Auto-Encoder (VAE) architecture that goes from a molecular gra biotools:primaryContact "Toussaint N.C." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "OptiType is a novel HLA genotyping algorithm based on integer linear programming, capable of producing accurate 4-digit HLA genotyping predictions from NGS data by simultaneously selecting all major and minor HLA Class I alleles." ; sc:name "OptiType" ; sc:softwareVersion "v1.3.5" ; sc:url "https://github.com/FRED-2/OptiType" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2885, + edam:topic_3056, + edam:topic_3796 ; + sc:citation , + "pmcid:PMC8476930", + "pubmed:34595352" ; + sc:description "Estimating the optimal number of migration edges from 'Treemix'." ; + sc:featureList edam:operation_3196, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:name "OptM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://rfitak.shinyapps.io/OptM/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0602, @@ -343447,8 +359617,30 @@ A new Variational Auto-Encoder (VAE) architecture that goes from a molecular gra sc:url "https://github.com/crclark/optnetaligncpp" ; biotools:primaryContact "Connor Clark" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3168, + edam:topic_3308, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9172073", + "pubmed:35685220" ; + sc:description "Optocoder is a computational framework that processes microscopy images to decode bead barcodes in space. It efficiently aligns images, detects beads, and corrects for confounding factors of the fluorescence signal, such as crosstalk and phasing. Furthermore, Optocoder employs supervised machine learning to strongly increase the number of matches between optically decoded and sequenced barcodes." ; + sc:featureList edam:operation_3185, + edam:operation_3443, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Optocoder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/rajewsky-lab/optocoder" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, @@ -343465,8 +359657,15 @@ A new Variational Auto-Encoder (VAE) architecture that goes from a molecular gra sc:url "https://www.mathworks.com/matlabcentral/fileexchange/45355-optometrika" ; biotools:primaryContact "Yury" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "Probabilistic Boolean Networks simulator" ; + sc:isAccessibleForFree true ; + sc:name "optPBN" ; + sc:url "https://sourceforge.net/projects/optpbn/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2885, @@ -343482,7 +359681,7 @@ A new Variational Auto-Encoder (VAE) architecture that goes from a molecular gra biotools:primaryContact "Ren-Hua Chung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -343502,7 +359701,7 @@ We propose a protein folding framework, named OPUS-Fold, which can integrate var sc:url "https://github.com/thuxugang/opus_fold" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -343521,7 +359720,7 @@ Protein backbone torsion angles (Phi and Psi) are crucial for protein local conf sc:url "https://github.com/thuxugang/opus_refine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0121, @@ -343539,7 +359738,7 @@ Side-chain modeling is critical for protein structure prediction since the uniqu sc:url "https://github.com/thuxugang/opus_rota3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -343560,7 +359759,7 @@ Side-chain modeling is critical for protein structure prediction since the uniqu sc:url "https://github.com/OPUS-MaLab/opus_rota4" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3303, @@ -343578,7 +359777,7 @@ Side-chain modeling is critical for protein structure prediction since the uniqu sc:url "https://github.com/alncat/cryoem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_3474, @@ -343596,7 +359795,7 @@ Predictions of protein backbone torsion angles (ϕ and ψ) and secondary structu sc:url "https://github.com/thuxugang/opus_tass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -343614,7 +359813,7 @@ Predictions of protein backbone torsion angles (ϕ and ψ) and secondary structu biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3063, @@ -343633,7 +359832,7 @@ Predictions of protein backbone torsion angles (ϕ and ψ) and secondary structu biotools:primaryContact "Mohamad Hasan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -343653,7 +359852,7 @@ Predictions of protein backbone torsion angles (ϕ and ψ) and secondary structu "Vipin T. Sreedharan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2814 ; @@ -343670,22 +359869,19 @@ Predictions of protein backbone torsion angles (ϕ and ψ) and secondary structu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ], + sc:additionalType "http://edamontology.org/data_0582" ; + sc:name "Ontology" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ], + sc:additionalType "http://edamontology.org/data_0582" ; + sc:name "Ontology" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0091, @@ -343743,7 +359939,7 @@ Predictions of protein backbone torsion angles (ϕ and ψ) and secondary structu "Janez Demsar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3473 ; @@ -343762,22 +359958,20 @@ Predictions of protein backbone torsion angles (ϕ and ψ) and secondary structu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0092, @@ -343801,7 +359995,7 @@ Predictions of protein backbone torsion angles (ϕ and ψ) and secondary structu biotools:primaryContact "Blaž Zupan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3303, @@ -343815,14 +360009,12 @@ Predictions of protein backbone torsion angles (ϕ and ψ) and secondary structu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0085 ; sc:citation ; @@ -343839,7 +360031,7 @@ Predictions of protein backbone torsion angles (ϕ and ψ) and secondary structu biotools:primaryContact "Yves Van de Peer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0199, @@ -343858,14 +360050,13 @@ Predictions of protein backbone torsion angles (ϕ and ψ) and secondary structu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3345 ; sc:citation ; @@ -343880,7 +360071,7 @@ Predictions of protein backbone torsion angles (ϕ and ψ) and secondary structu biotools:primaryContact "Laurel L. HAAK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -343893,7 +360084,7 @@ Predictions of protein backbone torsion angles (ϕ and ψ) and secondary structu sc:url "http://sun.aei.polsl.pl/REFRESH/index.php?page=projects&project=orcom&subpage=about" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -343913,7 +360104,7 @@ In this repository is located the R package ORdensity that implements the statis sc:url "https://github.com/rsait/ORdensity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -343934,14 +360125,13 @@ In this repository is located the R package ORdensity that implements the statis a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2800" ; - sc:name "Orpha number" ; - sc:sameAs "http://edamontology.org/data_2800" ] ; + sc:additionalType "http://edamontology.org/data_2800" ; + sc:name "Orpha number" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0967" ; - sc:name "Ontology concept data" ; - sc:sameAs "http://edamontology.org/data_0967" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0967" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Ontology concept data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Ontology", "Web application" ; @@ -343967,7 +360157,7 @@ In this repository is located the R package ORdensity that implements the statis biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3068, @@ -343988,7 +360178,7 @@ In this repository is located the R package ORdensity that implements the statis sc:url "http://github.com/arthurpessa/ordpy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -344008,7 +360198,7 @@ In this repository is located the R package ORdensity that implements the statis biotools:primaryContact "S. J. M. Jones" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0769, @@ -344022,7 +360212,7 @@ In this repository is located the R package ORdensity that implements the statis sc:url "http://mips.gsf.de/genre/proj/orest/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0108, @@ -344039,7 +360229,7 @@ In this repository is located the R package ORdensity that implements the statis biotools:primaryContact "Turner Conrad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080 ; @@ -344056,7 +360246,7 @@ In this repository is located the R package ORdensity that implements the statis sc:url "http://www.proteinstrukturfabrik.de/orfer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3047, @@ -344075,7 +360265,7 @@ The ORFhunteR package is a R and C++ library for an automatic identification and sc:url "http://orfhunter.bsu.by" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085, edam:topic_3168, @@ -344093,7 +360283,7 @@ The ORFhunteR package is a R and C++ library for an automatic identification and biotools:primaryContact "Kornel Labun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3170, @@ -344112,7 +360302,7 @@ orfipy is a tool written in python/cython to extract ORFs in extremely an fast a sc:url "https://anaconda.org/bioconda/orfipy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, @@ -344129,8 +360319,29 @@ orfipy is a tool written in python/cython to extract ORFs in extremely an fast a sc:name "ORFLine" ; sc:url "https://github.com/boboppie/ORFLine" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3174 ; + sc:citation , + "pmcid:PMC5013905", + "pubmed:27153669" ; + sc:description "A simple and not slow open reading frame (ORF) caller. No bells or whistles like frameshift detection, just a straightforward goal of returning a FASTA file of open reading frames over a certain length from a FASTA/Q file of nucleotide sequences." ; + sc:featureList edam:operation_0436 ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "orfm" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/wwood/OrfM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -344148,7 +360359,7 @@ orfipy is a tool written in python/cython to extract ORFs in extremely an fast a biotools:primaryContact "Nicholas J. Dimonaco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3512 ; @@ -344166,7 +360377,7 @@ orfipy is a tool written in python/cython to extract ORFs in extremely an fast a biotools:primaryContact "X. (Jack) Min" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -344188,49 +360399,28 @@ ORFquant is an R package that aims at detecting and quantifiying ORF translation sc:name "ORFquant" ; sc:url "https://github.com/lcalviell/ORFquant" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0602, - edam:topic_0625, - edam:topic_2229 ; - sc:citation , - "pmcid:PMC6803196", - "pubmed:31700863" ; - sc:description """Genome-wide mutation profiling and related risk signature for prognosis of papillary renal cell carcinoma. - -Background:The papillary renal cell carcinoma (pRCC) is a rare subtype of renal cell carcinoma with limited investigation. Our study aimed to explore a robust signature to predict the prognosis of pRCC from the perspective of mutation profiles. Methods:In this study, we downloaded the simple nucleotide variation data of 288 pRCC samples from The Cancer Genome Atlas (TCGA) database. "GenVisR" package was utilized to visualize gene mutation profiles in pRCC. The PPI network was conducted based on the STRING database and the modification was performed via Cytoscape software (Version 3.7.1). Top 50 mutant genes were selected and Cox regression method was conducted to identify the hub prognostic mutant signature in pRCC using "survival" package. - -||| HOMEPAGE BROKEN!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'pRCC', 'GenVisR' (bio.tools/genvisr)""" ; - sc:featureList edam:operation_2436, - edam:operation_3463, - edam:operation_3659 ; - sc:name "org" ; - sc:url "http://org.Hs.eg.db" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2909" ; - sc:name "Organism name" ; - sc:sameAs "http://edamontology.org/data_2909" ], + sc:additionalType "http://edamontology.org/data_1025" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1056" ; - sc:name "Database name" ; - sc:sameAs "http://edamontology.org/data_1056" ], + sc:additionalType "http://edamontology.org/data_0989" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ], + sc:additionalType "http://edamontology.org/data_2909" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Organism name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ] ; + sc:additionalType "http://edamontology.org/data_1056" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3473, @@ -344253,14 +360443,13 @@ Background:The papillary renal cell carcinoma (pRCC) is a rare subtype of renal a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1869" ; - sc:name "Organism identifier" ; - sc:sameAs "http://edamontology.org/data_1869" ] ; + sc:additionalType "http://edamontology.org/data_1869" ; + sc:name "Organism identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1187" ; - sc:name "PubMed ID" ; - sc:sameAs "http://edamontology.org/data_1187" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1187" ; + sc:encodingFormat "http://edamontology.org/format_2020" ; + sc:name "PubMed ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0218 ; sc:citation , @@ -344278,7 +360467,7 @@ Background:The papillary renal cell carcinoma (pRCC) is a rare subtype of renal biotools:primaryContact "Lars Juhl Jensen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0625, @@ -344298,8 +360487,33 @@ Toolset for analyzing time series of 2D organoid contours. Developed by Dr. Zaki sc:name "OrgDyn" ; sc:url "https://github.com/zakih/organoidDynamics" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0749, + edam:topic_3127, + edam:topic_3318, + edam:topic_3474 ; + sc:citation , + "pubmed:35048955" ; + sc:description "Improving the accuracy for predicting origin of replication sites by using a blend of features and long short-term memory network." ; + sc:featureList edam:operation_2454, + edam:operation_3927, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:name "ORI-Deep" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://share.streamlit.io/waqarhusain/orideep/main/app.py" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654, @@ -344317,7 +360531,7 @@ Ori-Finder prokaryotic suite identification of replication origins in prokaryoti sc:url "http://tubic.tju.edu.cn/Ori-Finder3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation , @@ -344330,7 +360544,7 @@ Ori-Finder prokaryotic suite identification of replication origins in prokaryoti biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -344352,7 +360566,7 @@ Ori-Finder prokaryotic suite identification of replication origins in prokaryoti biotools:primaryContact "Conrad A. Nieduszynski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3056, @@ -344368,8 +360582,30 @@ OrientAGraph enables Maximum Likelihood Network Orientation (MNLO) to be utilize sc:name "OrientAGraph" ; sc:url "https://github.com/ekmolloy/OrientAGraph" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2229, + edam:topic_3382, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8584784", + "pubmed:34723957" ; + sc:description "Single-cell 3D shape dynamics oriented along the apico-basal axis of folding epithelia from fluorescence microscopy data." ; + sc:featureList edam:operation_0337, + edam:operation_3443, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Origami" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/cistib/origami" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3169, @@ -344389,7 +360625,7 @@ OrientAGraph enables Maximum Likelihood Network Orientation (MNLO) to be utilize biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3678 ; @@ -344405,7 +360641,7 @@ OrientAGraph enables Maximum Likelihood Network Orientation (MNLO) to be utilize sc:url "http://www.niehs.nih.gov/research/resources/software/biostatistics/oriogen/index.cfm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0080, @@ -344424,7 +360660,7 @@ OrientAGraph enables Maximum Likelihood Network Orientation (MNLO) to be utilize biotools:primaryContact "Jean-Christophe Gelly" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091, @@ -344444,7 +360680,7 @@ OrientAGraph enables Maximum Likelihood Network Orientation (MNLO) to be utilize biotools:primaryContact "Gianmauro Cuccuru" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0749, @@ -344463,7 +360699,7 @@ OrientAGraph enables Maximum Likelihood Network Orientation (MNLO) to be utilize biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0632 ; @@ -344480,7 +360716,7 @@ OrientAGraph enables Maximum Likelihood Network Orientation (MNLO) to be utilize biotools:primaryContact "Marco Severgnini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -344495,7 +360731,7 @@ OrientAGraph enables Maximum Likelihood Network Orientation (MNLO) to be utilize biotools:primaryContact "S. Cenk Sahinalp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -344510,28 +360746,52 @@ OrientAGraph enables Maximum Likelihood Network Orientation (MNLO) to be utilize sc:url "https://github.com/SchulzLab/ORNA" ; biotools:primaryContact "Marcel H Schulz" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workflow" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0194, + edam:topic_0659, + edam:topic_0769, + edam:topic_3316 ; + sc:citation , + "pmcid:PMC8623055", + "pubmed:34828348" ; + sc:description "A Workflow for Constrained SSU rRNA Phylogenies." ; + sc:featureList edam:operation_0323, + edam:operation_0552, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ORPER" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Lcornet/ORPER" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2099" ; - sc:name "Name" ; - sc:sameAs "http://edamontology.org/data_2099" ], + sc:additionalType "http://edamontology.org/data_2299" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Gene name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ] ; + sc:additionalType "http://edamontology.org/data_2099" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2800" ; - sc:name "Orpha number" ; - sc:sameAs "http://edamontology.org/data_2800" ], + sc:additionalType "http://edamontology.org/data_2800" ; + sc:encodingFormat "http://edamontology.org/format_3255" ; + sc:name "Orpha number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2800" ; - sc:name "Orpha number" ; - sc:sameAs "http://edamontology.org/data_2800" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2800" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Orpha number" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "SPARQL endpoint", "Web API" ; @@ -344559,14 +360819,13 @@ OrientAGraph enables Maximum Likelihood Network Orientation (MNLO) to be utilize a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2800" ; - sc:name "Orpha number" ; - sc:sameAs "http://edamontology.org/data_2800" ] ; + sc:additionalType "http://edamontology.org/data_2800" ; + sc:name "Orpha number" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1622" ; - sc:name "Disease report" ; - sc:sameAs "http://edamontology.org/data_1622" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1622" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Disease report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -344585,7 +360844,7 @@ OrientAGraph enables Maximum Likelihood Network Orientation (MNLO) to be utilize sc:url "http://www.orpha.net/consor/cgi-bin/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -344605,7 +360864,7 @@ Orphanet is a unique resource, gathering and improving knowledge on rare disease sc:url "http://www.orpha.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, @@ -344624,7 +360883,7 @@ Orphanet is a unique resource, gathering and improving knowledge on rare disease biotools:primaryContact "Orphelia Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0622, @@ -344644,8 +360903,29 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us sc:name "ORSO" ; sc:url "https://orso.niehs.nih.gov" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0634, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC9308244", + "pubmed:35870894" ; + sc:description "A Python package for filtering and comparing enrichment analyses using a simple principle." ; + sc:featureList edam:operation_2436, + edam:operation_3432, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "orsum" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://anaconda.org/bioconda/orsum" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -344663,7 +360943,7 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -344681,7 +360961,7 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us biotools:primaryContact "Nadia El-Mabrouk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, @@ -344703,14 +360983,12 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1150" ; - sc:name "Disease ID" ; - sc:sameAs "http://edamontology.org/data_1150" ] ; + sc:additionalType "http://edamontology.org/data_1150" ; + sc:name "Disease ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1622" ; - sc:name "Disease report" ; - sc:sameAs "http://edamontology.org/data_1622" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1622" ; + sc:name "Disease report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634 ; sc:citation ; @@ -344725,7 +361003,7 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us sc:url "http://orthodisease.sbc.su.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0160, @@ -344750,7 +361028,7 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us sc:url "https://github.com/JLSteenwyk/orthofisher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0102, @@ -344770,7 +361048,7 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us "Oliver Niehuis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3299 ; @@ -344786,7 +361064,7 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us biotools:primaryContact "Odile Lecompte" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3293 ; @@ -344804,7 +361082,7 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us biotools:primaryContact "Brinkman lab at Simon Fraser University" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -344817,8 +361095,32 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us sc:name "OrthoSelect" ; sc:url "http://orthoselect.gobics.de" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0194, + edam:topic_0196, + edam:topic_0780, + edam:topic_3293, + edam:topic_3308 ; + sc:citation , + "pubmed:35015377" ; + sc:description "In silico sequence capture from genomic and transcriptomic libraries for phylogenomic and barcoding applications." ; + sc:featureList edam:operation_0323, + edam:operation_0523, + edam:operation_3192, + edam:operation_3216, + edam:operation_3258 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ORTHOSKIM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/cpouchon/ORTHOSKIM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0797, @@ -344838,7 +361140,7 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -344860,7 +361162,7 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us sc:url "https://github.com/csbio/Orthrus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -344879,7 +361181,7 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us sc:url "http://dove.embl-heidelberg.de/Blast2e/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_0780, @@ -344900,8 +361202,29 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us sc:softwareHelp ; sc:url "https://github.com/mdsufz/OrtSuite" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0593, + edam:topic_3172, + edam:topic_3384, + edam:topic_3444 ; + sc:citation ; + sc:description "A Fully-Automated Open-Source Software for Three-Dimensional Proton Magnetic Resonance Spectroscopic Imaging Data Analysis." ; + sc:featureList edam:operation_1812, + edam:operation_2429, + edam:operation_3214 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Oryx-MRSI" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareHelp ; + sc:url "https://github.com/sevimcengiz/Oryx-MRSI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -344920,7 +361243,7 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us sc:url "https://shigen.nig.ac.jp/rice/oryzabase/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0208, edam:topic_2640, @@ -344942,7 +361265,7 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us biotools:primaryContact "Giuseppe Agapito" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3361, @@ -344961,7 +361284,7 @@ ORSO (Online Resource for Social Omics) is a web application designed to help us biotools:primaryContact "Li Yan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3360, @@ -344980,7 +361303,7 @@ Potential prognostic mRNA biomarkers are exploited to assist in the clinical man sc:url "http://bioinfo.henu.edu.cn/BRCA/BRCAList.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -344995,7 +361318,7 @@ Potential prognostic mRNA biomarkers are exploited to assist in the clinical man sc:url "http://biocomp.bioen.uiuc.edu/oscar/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -345018,7 +361341,7 @@ This software reproduces the approach presented in 'OscoNet: inferring oscillato sc:url "https://github.com/alexisboukouvalas/OscoNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -345040,102 +361363,85 @@ This software reproduces the approach presented in 'OscoNet: inferring oscillato a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3314 ; sc:citation ; @@ -345150,7 +361456,7 @@ This software reproduces the approach presented in 'OscoNet: inferring oscillato biotools:primaryContact "Stuart J. Chalk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -345166,8 +361472,33 @@ This software reproduces the approach presented in 'OscoNet: inferring oscillato sc:name "OSeac" ; sc:url "http://bioinfo.henu.edu.cn/EAC/EACList.jsp" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0203, + edam:topic_2640, + edam:topic_3170, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC8965707", + "pubmed:35371973" ; + sc:description "A Web Portal to Assess the Performance of Prognostic Biomarkers in Gastric Cancer." ; + sc:featureList edam:operation_0314, + edam:operation_2422, + edam:operation_3503 ; + sc:isAccessibleForFree true ; + sc:name "OSgc" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinfo.henu.edu.cn/GC/GCList.jsp" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3444 ; @@ -345183,7 +361514,7 @@ This software reproduces the approach presented in 'OscoNet: inferring oscillato sc:url "http://www.osirix-viewer.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -345201,7 +361532,7 @@ Glioma is the most frequent primary brain tumor that causes high mortality and m sc:url "http://bioinfo.henu.edu.cn/LGG/LGGList.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -345218,7 +361549,7 @@ Liver hepatocellular carcinoma (LIHC) is one of the most common malignant tumors sc:url "http://bioinfo.henu.edu.cn/LIHC/LIHCList.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3473, @@ -345233,7 +361564,7 @@ Code release for OSLNet: Deep Small-Sample Classification with an Orthogonal Sof sc:url "https://github.com/dongliangchang/OSLNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -345254,7 +361585,7 @@ OSluca ( Online consensus Survival for Lung Cancer) encompasses 35 expression da sc:url "http://bioinfo.henu.edu.cn/LUCA/LUCAList.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3474, edam:topic_3534 ; @@ -345269,8 +361600,27 @@ OSluca ( Online consensus Survival for Lung Cancer) encompasses 35 expression da sc:url "http://www.csbio.sjtu.edu.cn:8080/OSML/" ; biotools:primaryContact "Dong-Jun" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2640, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC8773055", + "pubmed:35053021" ; + sc:description "An Interactive Web Server to Evaluate Prognostic Biomarkers for Ovarian Cancer." ; + sc:featureList edam:operation_0224, + edam:operation_0314, + edam:operation_3503 ; + sc:name "OSov" ; + sc:url "https://bioinfo.henu.edu.cn/OV/OVList.jsp" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -345286,7 +361636,7 @@ OSluca ( Online consensus Survival for Lung Cancer) encompasses 35 expression da sc:url "http://bioinfo.henu.edu.cn/PAAD/PAADList.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3421, @@ -345299,8 +361649,29 @@ OSluca ( Online consensus Survival for Lung Cancer) encompasses 35 expression da sc:name "OSPAM-C" ; sc:url "https://ashis-das.shinyapps.io/ospam/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3373, + edam:topic_3379 ; + sc:citation , + "pmcid:PMC9067362", + "pubmed:35467964" ; + sc:description "A Digital Health Aid for Rapid Predictive Analysis of Correlations Between Early End Points and Overall Survival in Non-Small-Cell Lung Cancer Clinical Trials." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "OSPred tool" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/AstraZeneca/OSPred" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0199, @@ -345314,7 +361685,7 @@ OSluca ( Online consensus Survival for Lung Cancer) encompasses 35 expression da sc:url "http://www.cs.duke.edu/donaldlab/osprey.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0593, @@ -345336,7 +361707,7 @@ Download the latest Osprey code from its GitHub repository, then extract and add sc:url "https://github.com/schorschinho/osprey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -345359,7 +361730,7 @@ Download the latest Osprey code from its GitHub repository, then extract and add biotools:primaryContact "Biogrid Admin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3277, @@ -345379,7 +361750,7 @@ Download the latest Osprey code from its GitHub repository, then extract and add "Zhuo Shaowei (IT enquiries)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3063, @@ -345397,7 +361768,7 @@ Download the latest Osprey code from its GitHub repository, then extract and add sc:url "http://bioinfo.henu.edu.cn/Melanoma/MelanomaList.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769 ; @@ -345415,7 +361786,7 @@ Download the latest Osprey code from its GitHub repository, then extract and add "Yannick Wurm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0121, edam:topic_2229, @@ -345431,7 +361802,7 @@ Download the latest Osprey code from its GitHub repository, then extract and add "Geert-Jan Huizing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0080, @@ -345453,7 +361824,7 @@ Download the latest Osprey code from its GitHub repository, then extract and add sc:url "https://otp.dkfz.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_2229, @@ -345475,7 +361846,7 @@ OTSun is a python package that uses the Monte Carlo Forward Ray Tracing for the sc:url "http://otsun.uib.es" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0637, @@ -345494,7 +361865,7 @@ OTSun is a python package that uses the Monte Carlo Forward Ray Tracing for the biotools:primaryContact "Daniel Beck" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0659, @@ -345511,17 +361882,17 @@ OTSun is a python package that uses the Monte Carlo Forward Ray Tracing for the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3917" ; - sc:name "Count matrix" ; - sc:sameAs "http://edamontology.org/data_3917" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3917" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Count matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "A set of tools to work with OTU tables (and feature tables) generated by amplicon sequencing experiments" ; sc:featureList edam:operation_0336 ; sc:name "otusfocus" ; sc:url "https://github.com/quadram-institute-bioscience/otusfocus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3385 ; @@ -345540,14 +361911,14 @@ OTSun is a python package that uses the Monte Carlo Forward Ray Tracing for the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3758" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -345560,7 +361931,7 @@ OTSun is a python package that uses the Monte Carlo Forward Ray Tracing for the sc:url "http://tools.proteomecenter.org/out2summary.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3305, @@ -345578,7 +361949,7 @@ OTSun is a python package that uses the Monte Carlo Forward Ray Tracing for the sc:url "https://outbreak.sysbio.tools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3324 ; sc:citation ; @@ -345591,7 +361962,7 @@ OTSun is a python package that uses the Monte Carlo Forward Ray Tracing for the biotools:primaryContact "Eric Jorge Nelson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0077, @@ -345610,7 +361981,7 @@ OTSun is a python package that uses the Monte Carlo Forward Ray Tracing for the biotools:primaryContact "Sukwoo Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3382 ; @@ -345628,7 +361999,7 @@ OTSun is a python package that uses the Monte Carlo Forward Ray Tracing for the biotools:primaryContact "Laurent Castéra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -345649,7 +362020,7 @@ We will use BiocManager to install the package and its dependencies. If you want sc:url "https://i12g-gagneurweb.in.tum.de/public/paper/OUTRIDER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -345665,7 +362036,7 @@ We will use BiocManager to install the package and its dependencies. If you want sc:url "http://dna2.leeds.ac.uk:8080/OVA/index.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053, @@ -345680,7 +362051,7 @@ We will use BiocManager to install the package and its dependencies. If you want biotools:primaryContact "Hongyu Zhao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_3305 ; @@ -345698,7 +362069,7 @@ Various layers of interactions among the viruses and human hosts.""" ; sc:url "http://bis.zju.edu.cn/overcovid/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077 ; sc:author "Sarah Djebali" ; @@ -345715,15 +362086,51 @@ Various layers of interactions among the viruses and human hosts.""" ; biotools:primaryContact "Sarah Djebali" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1742" ; + sc:name "PDB residue number" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2700" ; + sc:name "CATH identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0623, + edam:topic_0736, + edam:topic_3542 ; + sc:citation , + "pubmed:35674374" ; sc:description """OverProt creates an overview of secondary structure elements in protein families. For each protein family from the CATH database, a secondary structure consensus is available, showing the characteristic helices and β-sheets of the family. A consensus for an arbitrary subset of a family can be computed using User-defined queries.""" ; + sc:featureList edam:operation_0468, + edam:operation_0570, + edam:operation_2488 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; sc:name "OverProt" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; sc:url "https://overprot.ncbr.muni.cz/home" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:32838931" ; + sc:description "OvirusTdb is a resource to explore the therapeutic potential of oncolytic viruses." ; + sc:featureList edam:operation_2945 ; + sc:name "ovirustdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/ovirustdb/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -345749,7 +362156,7 @@ Oviz is a component-based data visualization framework written in TypeScript tha sc:url "https://bio.oviz.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3168, @@ -345766,7 +362173,7 @@ Oviz is a component-based data visualization framework written in TypeScript tha biotools:primaryContact "Dominique Tessier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053, @@ -345781,7 +362188,7 @@ Oviz is a component-based data visualization framework written in TypeScript tha biotools:primaryContact "Ren-Hua Chung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -345805,7 +362212,7 @@ Oviz is a component-based data visualization framework written in TypeScript tha sc:url "https://github.com/shuangsong0110/OWAS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -345818,8 +362225,24 @@ Oviz is a component-based data visualization framework written in TypeScript tha sc:softwareVersion "1.3" ; sc:url "http://www.compbio.dundee.ac.uk/software.html#msa" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC2683861", + "pubmed:19405962" ; + sc:description "OxDBase: A Database of Biodegradative Oxygenases" ; + sc:featureList edam:operation_2945 ; + sc:name "oxdbase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/oxdbase/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0176, @@ -345838,7 +362261,7 @@ Oviz is a component-based data visualization framework written in TypeScript tha biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814 ; @@ -345850,11 +362273,11 @@ Oviz is a component-based data visualization framework written in TypeScript tha "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/oxypred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/oxypred/" ; biotools:primaryContact "Dr Gajendra P.S. Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3534 ; @@ -345869,7 +362292,7 @@ Oviz is a component-based data visualization framework written in TypeScript tha sc:url "https://sites.google.com/site/guofeics/p-binder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0621, @@ -345889,7 +362312,7 @@ P Finder is a GUI software application for the fast identification of RNase P RN sc:url "https://github.com/JChristopherEllis/P-Finder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -345910,7 +362333,7 @@ P Finder is a GUI software application for the fast identification of RNase P RN biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -345926,7 +362349,7 @@ P Finder is a GUI software application for the fast identification of RNase P RN sc:url "http://p-sams.carringtonlab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -345945,8 +362368,30 @@ P Finder is a GUI software application for the fast identification of RNase P RN "P. J. Munson", "V. V. Prabhu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0625, + edam:topic_3168, + edam:topic_3337 ; + sc:citation , + "pmcid:PMC9245627", + "pubmed:35785021" ; + sc:description "P-smoother is an efficient method to correct recent mutations and genotyping errors in biobank-scale haplotype panels. Utilizing P-smoother to \"smooth\" a panel allows for downstream haplotype matching tasks to be error tolerant and more accurate. The input data for P-smoother is phased genotype data (in VCF format)." ; + sc:featureList edam:operation_0487, + edam:operation_3196, + edam:operation_3211 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "P-smoother" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/ZhiGroup/P-smoother" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3300, @@ -345964,7 +362409,7 @@ P Finder is a GUI software application for the fast identification of RNase P RN biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -345983,7 +362428,7 @@ Construct the single-sample network based on partial correlation(P-SSN).""" ; sc:url "https://github.com/hyhRise/P-SSN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053 ; @@ -345997,22 +362442,8 @@ Construct the single-sample network based on partial correlation(P-SSN).""" ; sc:softwareHelp ; sc:url "http://bioinfo.mpl.ird.fr/index.php?option=com_content&view=article&id=102&Itemid=2" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_3172, - edam:topic_3407 ; - sc:citation , - "pmcid:PMC6750616", - "pubmed:31490922" ; - sc:description "> HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'Iso2Flux' (bio.tools/iso2flux) | Parsimonious 13C metabolic flux analysis | Deciphering the mechanisms of regulation of metabolic networks subjected to perturbations, including disease states and drug-induced stress, relies on tracing metabolic fluxes. One of the most informative data to predict metabolic fluxes are 13C based metabolomics, which provide information about how carbons are redistributed along central carbon metabolism. Such data can be integrated using 13C Metabolic Flux Analysis (13C MFA) to provide quantitative metabolic maps of flux distributions. However, 13C MFA might be unable to reduce the solution space towards a unique solution either in large metabolic networks or when small sets of measurements are integrated. Here we present parsimonious 13C MFA (p13CMFA), an approach that runs a secondary optimization in the 13C MFA solution space to identify the solution that minimizes the total reaction flux" ; - sc:featureList edam:operation_2495, - edam:operation_3660, - edam:operation_3715 ; - sc:name "p13CMFA" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31490922" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -346033,7 +362464,7 @@ Construct the single-sample network based on partial correlation(P-SSN).""" ; sc:url "http://www.p2cs.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_1317, @@ -346052,7 +362483,7 @@ Construct the single-sample network based on partial correlation(P-SSN).""" ; biotools:primaryContact "David Hoksza" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0621, @@ -346071,7 +362502,7 @@ Construct the single-sample network based on partial correlation(P-SSN).""" ; biotools:primaryContact "P2RP Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885 ; @@ -346084,7 +362515,7 @@ Construct the single-sample network based on partial correlation(P-SSN).""" ; sc:url "http://www.jurgott.org/linkage/p2s.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0121, @@ -346102,14 +362533,12 @@ Construct the single-sample network based on partial correlation(P-SSN).""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3510 ; @@ -346126,7 +362555,7 @@ Construct the single-sample network based on partial correlation(P-SSN).""" ; sc:url "http://persson-group.scilifelab.se/p53/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_2229, @@ -346142,7 +362571,7 @@ Construct the single-sample network based on partial correlation(P-SSN).""" ; sc:url "http://www.chemoprofiling.org/cgi-bin/GEO/tp53/web_run_tp53.V1.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0160, @@ -346162,7 +362591,7 @@ p6mA is a N^6-methyladenine predictor which is trained by multiple species' data sc:url "https://github.com/Konglab404/p6mA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0622 ; @@ -346177,21 +362606,8 @@ p6mA is a N^6-methyladenine predictor which is trained by multiple species' data sc:softwareVersion "1" ; sc:url "http://cab.unina.it/athparalog/main2.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0199, - edam:topic_0736 ; - sc:citation , - "pubmed:31504173" ; - sc:description "database of predicted CRM1-dependent Nuclear Export Signal (NES) motifs in cancer-related genes | Database of predicted CRM1-dependent NES motifs | pCRM1exportome is a comprehensive database containing possible NES motifs of the cancer-related sequences in human reference proteome. You can easily check the NES consensus-matching sequence segments in relation to protein domains, secondary structures, binding energies at the CRM1's NES-binding groove, and also the cancer-related mutation positions" ; - sc:featureList edam:operation_0239, - edam:operation_0267, - edam:operation_0303 ; - sc:name "pCRM1exportome" ; - sc:url "http://prodata.swmed.edu/pCRM1exportome" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -346206,7 +362622,7 @@ p6mA is a N^6-methyladenine predictor which is trained by multiple species' data sc:url "https://github.com/AimeeD90/pClean_release" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_3520 ; @@ -346219,21 +362635,8 @@ p6mA is a N^6-methyladenine predictor which is trained by multiple species' data sc:name "pLink" ; sc:url "http://pfind.ict.ac.cn/software/pLink/index.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0154, - edam:topic_3520 ; - sc:citation , - "pmcid:PMC6667459", - "pubmed:31363125" ; - sc:description "> LOW CONFIDENCE! | > NAME (pLink) SIMILAR TO (PUB. DIFFERENT) bio.tools/plink (PLINK) | A high-speed search engine pLink 2 with systematic evaluation for proteome-scale identification of cross-linked peptides | pFind Studio: a computational solution for mass spectrometry-based proteomics | pLink® 2 is developed as an upgrade of pLink 1. Compared with pLink 1, pLink 2 provides a graphical user interface, and is ~40 times faster with a newly designed index structure. There are also some improvements in the precision | Introduction - Cite us - Downloads - Version history" ; - sc:featureList edam:operation_2929, - edam:operation_3649 ; - sc:name "pLink_autogenerated" ; - sc:url "http://pfind.ict.ac.cn/software/pLink/index.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3399, @@ -346253,27 +362656,8 @@ p6mA is a N^6-methyladenine predictor which is trained by multiple species' data sc:url "http://www.jci-bioinfo.cn/pLoc_bal-mEuk/" ; biotools:primaryContact "Xuan Xiao" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_0622, - edam:topic_3673 ; - sc:citation , - "pubmed:31584170" ; - sc:description """Identification and Typing of Plasmid Replicons in Whole-Genome Sequencing (WGS). - -PlasmidFinder and in silico plasmid multiLocus sequence typing (pMLST) are two easy-to-use web tools for detection and characterization of plasmid sequences in whole-genome sequencing (WGS) data from Enterobacteriaceae. These tools have been adopted worldwide and facilitate plasmid detection and typing based on draft genomes of multi-drug-resistant Enterobacteriaceae. The PlasmidFinder database currently includes 133 unique plasmid replicon sequences. It was built starting with 126 sequences devised on fully sequenced plasmids available at the NCBI nucleotide database in 2014 and has been continuously updated to include novel replicons detected in more recently sequenced plasmids associated with the family Enterobacteriaceae. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'silico pMLST', 'pubmlst'""" ; - sc:featureList edam:operation_0310, - edam:operation_3431, - edam:operation_3840 ; - sc:name "pMLST" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31584170" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_3673 ; @@ -346288,7 +362672,7 @@ PlasmidFinder and in silico plasmid multiLocus sequence typing (pMLST) are two e sc:url "http://pfind.ict.ac.cn/software/pNovo/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3416, edam:topic_3452 ; sc:citation , @@ -346301,7 +362685,7 @@ PlasmidFinder and in silico plasmid multiLocus sequence typing (pMLST) are two e sc:url "https://github.com/tjrantal/pQCT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -346323,7 +362707,7 @@ PlasmidFinder and in silico plasmid multiLocus sequence typing (pMLST) are two e "M Pérez-Enciso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -346344,7 +362728,7 @@ PlasmidFinder and in silico plasmid multiLocus sequence typing (pMLST) are two e biotools:primaryContact "Todd A. Castoe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3306, edam:topic_3314, @@ -346370,18 +362754,8 @@ Parallel version of Spatiocyte (pSpatiocyte): Github""" ; sc:name "pSpatiocyte" ; sc:url "https://spatiocyte.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0593, - edam:topic_0602, - edam:topic_3368 ; - sc:citation , - "pubmed:31381318" ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'pTMAEMA pSBVI', 'pTMAEMA pSBVI hydrogel', 'reusability pTMAEMA pSBVI hydrogels', 'pSBVI hydrogels' | Polyelectrolyte and Antipolyelectrolyte Effects for Dual Salt-Responsive Interpenetrating Network Hydrogels | This work presents a salt-responsive interpenetrating network (IPN) hydrogel with effective antimicrobial properties and surface regeneration. The hydrogels were engineered using the double network strategy to form loosely cross-linked zwitterionic poly(sulfobetaine vinylimidazole) (pSBVI) networks into the highly cross-linked cationic poly((trimethylamino)ethyl methacrylate chloride) (pTMAEMA) framework via photopolymerization. The pTMAEMA pSBVI hydrogel has strong mechanical properties, with a fracture stress 120× higher than single network pTMAEMA hydrogel" ; - sc:name "pTMAEMA pSBVI hydrogels" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31381318" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0632, @@ -346404,7 +362778,7 @@ Parallel version of Spatiocyte (pSpatiocyte): Github""" ; "Zhiguang Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2830, edam:topic_3170, @@ -346426,7 +362800,7 @@ pTuneos is the state-of-the-art computational pipeline for identifying personali sc:url "https://github.com/bm2-lab/pTuneos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3295, edam:topic_3674 ; @@ -346440,7 +362814,7 @@ pTuneos is the state-of-the-art computational pipeline for identifying personali sc:url "https://omicssimla.sourceforge.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0621, @@ -346463,22 +362837,21 @@ pTuneos is the state-of-the-art computational pipeline for identifying personali a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3110" ; - sc:name "Raw microarray data" ; - sc:sameAs "http://edamontology.org/data_3110" ], + sc:additionalType "http://edamontology.org/data_3671" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Text" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ] ; + sc:additionalType "http://edamontology.org/data_3110" ; + sc:name "Raw microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2872" ; - sc:name "ID list" ; - sc:sameAs "http://edamontology.org/data_2872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2872" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "ID list" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -346505,8 +362878,21 @@ pTuneos is the state-of-the-art computational pipeline for identifying personali sc:softwareVersion "1.1" ; sc:url "http://bioconductor.org/packages/PAA/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "This server allows you to predict the residue-residue contact in proteins from its amino acid sequence." ; + sc:featureList edam:operation_2945 ; + sc:name "paaint" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/paaint/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3299, @@ -346521,7 +362907,7 @@ pTuneos is the state-of-the-art computational pipeline for identifying personali sc:url "https://github.com/GabrielaJurkiewicz/ePAC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -346537,13 +362923,8 @@ PACAS consists of three files: Pacas.py, Pacas_FB.pl, and Pacas_CP.pl. In the cu sc:name "PACAS" ; sc:url "https://github.com/BlabOaklandU/PACAS" . - a sc:SoftwareApplication ; - sc:description "CD Genomics is providing PacBio SMRT sequencing to complement our NGS facility. By taking advantage of the long-read and single molecular sequencing capability developed by PacBio, we are proud to offer advanced genome de novo assembly solutions and full-length gene/transcript sequencing strategy to suit your project needs. Supported by our experienced scientists and advanced platforms, CD genomics can assist you in the studies on genomics, transcriptomics, epigenomics, microbial genomics, and single-cell sequencing. with unmatched read lengths, uniform coverage, and high accuracy. If you have additional requirements or questions, please feel free to contact us." ; - sc:name "PacBio SMRT Sequencing" ; - sc:url "https://www.cd-genomics.com/PacBio-SMRT-Sequencing.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "Python scripts for Exploratory Data Analysis of Pacific Biosciences sequence data" ; @@ -346555,7 +362936,7 @@ PACAS consists of three files: Pacas.py, Pacas_FB.pl, and Pacas_CP.pl. In the cu sc:url "https://github.com/TomSkelly/PacBioEDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -346573,7 +362954,7 @@ PACAS consists of three files: Pacas.py, Pacas_FB.pl, and Pacas_CP.pl. In the cu sc:url "https://ibm.biz/paccmann-aas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0749, @@ -346592,7 +362973,7 @@ PACIFIC: A lightweight deep-learning classifier of SARS-CoV-2 and co-infecting v sc:url "https://github.com/pacific-2020/pacific" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0176 ; @@ -346611,18 +362992,18 @@ PACIFIC: A lightweight deep-learning classifier of SARS-CoV-2 and co-infecting v a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_2084" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Nucleic acid report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2084" ; - sc:name "Nucleic acid report" ; - sc:sameAs "http://edamontology.org/data_2084" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -346637,7 +363018,7 @@ PACIFIC: A lightweight deep-learning classifier of SARS-CoV-2 and co-infecting v sc:url "http://www.unifr.ch/bugfri/pacman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3303, @@ -346655,7 +363036,7 @@ PACIFIC: A lightweight deep-learning classifier of SARS-CoV-2 and co-infecting v sc:url "http://112.74.48.115:9000/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2830 ; @@ -346673,8 +363054,29 @@ PACIFIC: A lightweight deep-learning classifier of SARS-CoV-2 and co-infecting v biotools:primaryContact "Jinn-Moon Yang", "Yu-Shu Lo" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0081, + edam:topic_0102, + edam:topic_0199 ; + sc:citation , + "pubmed:35311953" ; + sc:description "A program to improve barcode-variant mapping from PacBio long reads using multiple sequence alignment." ; + sc:featureList edam:operation_0292, + edam:operation_3198, + edam:operation_3200, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PacRAT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/dunhamlab/PacRAT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0593, @@ -346690,7 +363092,7 @@ PACIFIC: A lightweight deep-learning classifier of SARS-CoV-2 and co-infecting v biotools:primaryContact "Woonghee Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -346712,7 +363114,7 @@ Visualizes the coverage depth of a complete plastid genome as well as the equali sc:url "https://cran.r-project.org/package=PACVr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -346729,21 +363131,30 @@ Visualizes the coverage depth of a complete plastid genome as well as the equali sc:name "Padhoc" ; sc:url "https://github.com/ConesaLab/padhoc" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0089, - edam:topic_0218, - edam:topic_3324 ; - sc:citation , - "pmcid:PMC6751637", - "pubmed:31533864" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'patho', 'pathogen-disease', 'pathogen-disease associations', '3420 pathogen-disease' | Ontology based mining of pathogen-disease associations from literature | Ontology based mined Pathogen-Disease associations | expanded.InfDis.Pairs.pathogen-disease+NPMI.txt contains all the pathogen-disease pairs extracted from literature. Our association extraction is based on sentence level co-occurrence of pathogen and disease and applying a filter for NMPI>=0.2 and number of co-occurrences>=10 | The data format of this file is as follows: | NCBI_TaxonomyID##Disease_Ontology_ID #co-occurrences NPMI_value" ; - sc:featureList edam:operation_0306, - edam:operation_3461 ; - sc:name "padimi" ; - sc:url "https://github.com/bio-ontology-research-group/padimi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_3305, + edam:topic_3324, + edam:topic_3474, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8671119", + "pubmed:34950760" ; + sc:description "A new framework for extracting and disseminating fine-grained information from the news for animal disease surveillance." ; + sc:featureList edam:operation_2422, + edam:operation_3096, + edam:operation_3280 ; + sc:isAccessibleForFree true ; + sc:name "PADI-web" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://padi-web.cirad.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:author , @@ -346762,7 +363173,7 @@ Visualizes the coverage depth of a complete plastid genome as well as the equali biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -346782,7 +363193,7 @@ Visualizes the coverage depth of a complete plastid genome as well as the equali biotools:primaryContact "Adi Laurentiu Tarca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3293, @@ -346800,18 +363211,18 @@ Visualizes the coverage depth of a complete plastid genome as well as the equali a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ] ; + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Experiment report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0121 ; @@ -346830,7 +363241,7 @@ Visualizes the coverage depth of a complete plastid genome as well as the equali biotools:primaryContact "Martin Fitzpatrick" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0634, @@ -346846,7 +363257,7 @@ Visualizes the coverage depth of a complete plastid genome as well as the equali sc:url "http://www.mobioinfor.cn/pafig/index.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0602, @@ -346864,7 +363275,7 @@ Visualizes the coverage depth of a complete plastid genome as well as the equali sc:url "https://github.com/ezer/PAFway" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_2814 ; @@ -346879,7 +363290,7 @@ Visualizes the coverage depth of a complete plastid genome as well as the equali sc:url "https://github.com/sanchak/pagal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -346900,7 +363311,7 @@ Visualizes the coverage depth of a complete plastid genome as well as the equali "valerio.napolioni@unicam.it" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0621 ; @@ -346917,7 +363328,7 @@ Visualizes the coverage depth of a complete plastid genome as well as the equali sc:url "http://mapman.gabipd.org/web/guest/pageman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3053, @@ -346937,7 +363348,7 @@ Visualizes the coverage depth of a complete plastid genome as well as the equali biotools:primaryContact "Zongliang Yue" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0605, @@ -346955,8 +363366,29 @@ A Pathways, Annotated-lists and Gene signatures Electronic Repository Related to sc:name "PAGER-CoV" ; sc:url "http://discovery.informatics.uab.edu/PAGER-CoV/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0085, + edam:topic_0203, + edam:topic_0602, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC9039620", + "pubmed:35495152" ; + sc:description "An Interactive, Online Gene Set and Network Interpretation Tool for Functional Genomics." ; + sc:featureList edam:operation_2436, + edam:operation_3223, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:name "PAGER Web APP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://aimed-lab.shinyapps.io/PAGERwebapp/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation , @@ -346970,8 +363402,34 @@ A Pathways, Annotated-lists and Gene signatures Electronic Repository Related to sc:url "http://www.sanger.ac.uk/science/tools/pagit" ; biotools:primaryContact "Thomas Otto" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0194, + edam:topic_0196, + edam:topic_3382, + edam:topic_3945 ; + sc:citation , + "pmcid:PMC9017228", + "pubmed:35474671" ; + sc:description "An object-oriented framework for evolutionary pangenome analysis." ; + sc:featureList edam:operation_0224, + edam:operation_0337, + edam:operation_3431, + edam:operation_3478, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Pagoo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://cran.r-project.org/package=pagoo" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -346987,7 +363445,7 @@ A Pathways, Annotated-lists and Gene signatures Electronic Repository Related to sc:url "http://www.paiwsit.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -347004,7 +363462,7 @@ A Pathways, Annotated-lists and Gene signatures Electronic Repository Related to sc:url "http://sourceforge.net/projects/paice/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -347023,7 +363481,7 @@ A generic knowledgebase computation platform integrated with our established che sc:url "https://www.cbligand.org/g/pain-ckb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3391 ; @@ -347040,7 +363498,7 @@ A generic knowledgebase computation platform integrated with our established che sc:url "http://www.paintomics.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0121, @@ -347057,8 +363515,31 @@ A generic knowledgebase computation platform integrated with our established che sc:name "PaIntDB" ; sc:url "https://www.paintdb.ca" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0602, + edam:topic_0659, + edam:topic_0780, + edam:topic_3172 ; + sc:citation , + "pmcid:PMC9252773", + "pubmed:35609982" ; + sc:description "New tools for the integrative analysis of multi-omics datasets supported by multiple pathway databases." ; + sc:featureList edam:operation_0533, + edam:operation_3926, + edam:operation_3927, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:name "PaintOmics" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://paintomics.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0632, @@ -347078,7 +363559,7 @@ PaintSHOP is a technology that enables the interactive design of oligonucleotide sc:url "http://paintshop.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -347102,7 +363583,7 @@ PaintSHOP is a technology that enables the interactive design of oligonucleotide "Xiaoxuan Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2885, @@ -347124,7 +363605,7 @@ PaintSHOP is a technology that enables the interactive design of oligonucleotide sc:url "https://github.com/Xinglab/PAIRADISE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3512 ; sc:citation ; @@ -347136,7 +363617,7 @@ PaintSHOP is a technology that enables the interactive design of oligonucleotide sc:url "http://mblab.wustl.edu/software.html#pairagonLink" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -347148,7 +363629,7 @@ PaintSHOP is a technology that enables the interactive design of oligonucleotide sc:url "http://groups.csail.mit.edu/cb/paircoil2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -347167,7 +363648,7 @@ PaintSHOP is a technology that enables the interactive design of oligonucleotide biotools:primaryContact "Michal Burda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -347183,7 +363664,7 @@ PairGP, a non-stationary Gaussian process method to compare gene expression time sc:url "https://github.com/michelevantini/PairGP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0203, @@ -347201,7 +363682,7 @@ PairGP, a non-stationary Gaussian process method to compare gene expression time biotools:primaryContact "Xiaoyong Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation , @@ -347218,7 +363699,7 @@ PairGP, a non-stationary Gaussian process method to compare gene expression time sc:url "https://github.com/4dn-dcic/pairix" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -347233,7 +363714,7 @@ PairGP, a non-stationary Gaussian process method to compare gene expression time biotools:primaryContact "Asa Ben-Hur" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation , @@ -347250,7 +363731,7 @@ PairGP, a non-stationary Gaussian process method to compare gene expression time sc:url "https://github.com/4dn-dcic/pairsqc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -347266,7 +363747,7 @@ Pairtree infers the phylogeny underlying a cancer using genomic mutation data. P sc:url "https://www.github.com/morrislab/pairtree" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -347278,8 +363759,30 @@ Pairtree infers the phylogeny underlying a cancer using genomic mutation data. P sc:softwareVersion "20110801" ; sc:url "http://brendelgroup.org/bioinformatics2go/PairwiseStatSig.php" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0659, + edam:topic_3170, + edam:topic_3308, + edam:topic_3512 ; + sc:citation , + "pubmed:35831615" ; + sc:description "Transcriptome-wide measurement of poly(A) tail length and composition at subnanogram total RNA sensitivity by PAIso-seq." ; + sc:featureList edam:operation_0428, + edam:operation_3192, + edam:operation_3200 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PAIso-seq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Lulab-IGDB/PAIso-seq_scripts" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -347299,7 +363802,7 @@ In order to support the pre-processing of NGS data and its interpretation, we de sc:url "http://ircgp.com/paivs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659 ; @@ -347313,7 +363816,7 @@ In order to support the pre-processing of NGS data and its interpretation, we de biotools:primaryContact "Shaojie Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -347334,7 +363837,7 @@ In order to support the pre-processing of NGS data and its interpretation, we de biotools:primaryContact "Mikita Suyama" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0097, @@ -347350,7 +363853,7 @@ In order to support the pre-processing of NGS data and its interpretation, we de biotools:primaryContact "Anthony Westbrook" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -347369,7 +363872,7 @@ In order to support the pre-processing of NGS data and its interpretation, we de biotools:primaryContact "Tamer Kahveci" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080 ; @@ -347383,7 +363886,7 @@ In order to support the pre-processing of NGS data and its interpretation, we de sc:url "http://toc.yonsei.ac.kr/OMPPM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2885, @@ -347402,7 +363905,7 @@ In order to support the pre-processing of NGS data and its interpretation, we de "Mikkel Schubert" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -347418,7 +363921,7 @@ In order to support the pre-processing of NGS data and its interpretation, we de sc:url "http://www3.mpibpc.mpg.de/groups/zweckstetter/_links/software_pales.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099 ; @@ -347432,14 +363935,12 @@ In order to support the pre-processing of NGS data and its interpretation, we de a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -347470,7 +363971,7 @@ In order to support the pre-processing of NGS data and its interpretation, we de sc:url "http://emboss.open-bio.org/rel/rel6/apps/palindrome.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -347488,7 +363989,7 @@ A Python package for inference of gene regulatory networks from noisy gene expre sc:url "https://github.com/yukuntan92/PALLAS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation "pubmed:17537755" ; @@ -347501,7 +364002,7 @@ A Python package for inference of gene regulatory networks from noisy gene expre biotools:primaryContact "Uta Schulze" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170, @@ -347522,7 +364023,7 @@ A Python package for inference of gene regulatory networks from noisy gene expre "Gunnar Rätsch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -347543,7 +364044,7 @@ PALMER: A Constrained Biclustering Algorithm to Improve Pathway Annotation Based sc:url "https://dongjunchung.github.io/palmer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0219, @@ -347560,7 +364061,7 @@ PALMER: A Constrained Biclustering Algorithm to Improve Pathway Annotation Based sc:url "https://github.com/PALMS-gui/PALMS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_1317, edam:topic_3382 ; @@ -347576,7 +364077,7 @@ PALMER: A Constrained Biclustering Algorithm to Improve Pathway Annotation Based biotools:primaryContact "Thomas Pengo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0623, @@ -347598,7 +364099,7 @@ PALMER: A Constrained Biclustering Algorithm to Improve Pathway Annotation Based biotools:primaryContact "A. Alibés" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -347619,7 +364120,7 @@ PALMER: A Constrained Biclustering Algorithm to Improve Pathway Annotation Based biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -347638,7 +364139,7 @@ Pathway analysis is an important task in understanding complex metabolomic data. sc:url "https://pals.glasgowcompbio.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation ; @@ -347651,7 +364152,7 @@ Pathway analysis is an important task in understanding complex metabolomic data. sc:url "http://prodata.swmed.edu/palsse/palsse.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -347671,7 +364172,7 @@ Pair Matcher (PaM): a computer model to optimise pairings using demographic and sc:url "https://github.com/eelhaik/PAM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0601, @@ -347688,7 +364189,7 @@ Pair Matcher (PaM): a computer model to optimise pairings using demographic and sc:url "https://github.com/amelbek/pamgeneAnalyzeR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0080, @@ -347708,7 +364209,7 @@ Pair Matcher (PaM): a computer model to optimise pairings using demographic and sc:url "http://abacus.gene.ucl.ac.uk/software/paml.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3500, @@ -347725,7 +364226,7 @@ Pair Matcher (PaM): a computer model to optimise pairings using demographic and sc:url "https://kiranlda.github.io/PAMLrManual/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2229, edam:topic_3308, @@ -347741,7 +364242,7 @@ Pair Matcher (PaM): a computer model to optimise pairings using demographic and sc:url "https://github.com/caokai1073/Pamona" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654 ; sc:description "Pan-Tetris is our interactive software tool that enables the visual inspection of gene occurrences in a pan-genome table. It allows the user to modify the composition of such pan gene groups with an aggregation technique that is inspired by the famous Tetris game." ; @@ -347755,7 +364256,7 @@ Pair Matcher (PaM): a computer model to optimise pairings using demographic and sc:url "http://it.inf.uni-tuebingen.de/?page_id=920" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -347773,7 +364274,7 @@ Pair Matcher (PaM): a computer model to optimise pairings using demographic and biotools:primaryContact "Rommel Ramos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -347794,7 +364295,7 @@ Pair Matcher (PaM): a computer model to optimise pairings using demographic and biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654 ; @@ -347809,7 +364310,7 @@ Pair Matcher (PaM): a computer model to optimise pairings using demographic and . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0637, edam:topic_0797, @@ -347823,7 +364324,7 @@ Pair Matcher (PaM): a computer model to optimise pairings using demographic and sc:url "https://github.com/gem-pasteur/PanACoTA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -347840,7 +364341,7 @@ Pair Matcher (PaM): a computer model to optimise pairings using demographic and biotools:primaryContact "Silvio C.E. Tosatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, @@ -347858,14 +364359,14 @@ Pair Matcher (PaM): a computer model to optimise pairings using demographic and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3247" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_3247" ; + sc:name "Protein family report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -347882,8 +364383,29 @@ Pair Matcher (PaM): a computer model to optimise pairings using demographic and sc:softwareHelp ; sc:url "https://code.google.com/archive/p/ehu-bio/wikis/PAnalyzer.wiki" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3300, + edam:topic_3304, + edam:topic_3306, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8959878", + "pubmed:35356446" ; + sc:description "An Open-Source Educational App for Ion Channel Biophysics Simulation." ; + sc:featureList edam:operation_0337, + edam:operation_2426 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Panama" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://tiger.hpc.okstate.edu/sites/shiny/anuj1/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0623, edam:topic_0769, @@ -347898,34 +364420,8 @@ Pair Matcher (PaM): a computer model to optimise pairings using demographic and sc:name "Panaroo" ; sc:url "https://github.com/gtonkinhill/panaroo" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_0634, - edam:topic_2640, - edam:topic_3360 ; - sc:citation , - "pmcid:PMC6923916", - "pubmed:31856825" ; - sc:description """Finding prognostic gene pairs for cancer from patient-specific gene networks. - -Dynamically constructing patient-specific gene networks. - -Breast invasive carcinoma (BRCA) patient-specific gene networks. - -Colon adenocarcinoma (COAD) patient-specific gene networks. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/webinterviewer (INHA.AC.KR), bio.tools/pseudoviewer (INHA.AC.KR). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'patient-specific', 'prognostic'""" ; - sc:featureList edam:operation_2454, - edam:operation_2495, - edam:operation_2940 ; - sc:name "pancancer" ; - sc:url "http://bclab.inha.ac.kr/pancancer" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, edam:topic_3170, @@ -347943,7 +364439,7 @@ Colon adenocarcinoma (COAD) patient-specific gene networks. sc:url "https://github.com/Cheng-Lab-GitHub/PanCancer_Signature" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -347962,7 +364458,7 @@ Colon adenocarcinoma (COAD) patient-specific gene networks. biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_3063, @@ -347977,7 +364473,7 @@ Colon adenocarcinoma (COAD) patient-specific gene networks. sc:url "https://www.pancreatlas.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -347994,7 +364490,7 @@ Colon adenocarcinoma (COAD) patient-specific gene networks. biotools:primaryContact "Guo-Cheng Yuan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0749, @@ -348011,7 +364507,7 @@ Colon adenocarcinoma (COAD) patient-specific gene networks. biotools:primaryContact "Gian Gaetano Tartaglia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -348029,7 +364525,7 @@ Colon adenocarcinoma (COAD) patient-specific gene networks. biotools:primaryContact "Jean-Pierre A. Koche" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602 ; @@ -348050,7 +364546,7 @@ Colon adenocarcinoma (COAD) patient-specific gene networks. "Joseph N. Paulson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0632, @@ -348070,8 +364566,30 @@ Colon adenocarcinoma (COAD) patient-specific gene networks. sc:url "https://github.com/neufeld/pandaseq" ; biotools:primaryContact "Josh D Neufeld" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3299, + edam:topic_3305, + edam:topic_3324 ; + sc:citation , + "pmcid:PMC9029369", + "pubmed:35457649" ; + sc:description "Monitoring the COVID-19 Pandemic in Catalonia, Spain." ; + sc:featureList edam:operation_2429, + edam:operation_2940, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PandemonCAT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.udg.edu/pandemoncat" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0654, edam:topic_2640, @@ -348090,7 +364608,7 @@ Pan-cancer differential methylation (DM) analysis investigates aberrant DNA meth sc:url "http://www.sta.cuhk.edu.hk/YWei/PanDM.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -348112,8 +364630,33 @@ Pan-cancer differential methylation (DM) analysis investigates aberrant DNA meth sc:url "http://www.pandora.cs.huji.ac.il" ; biotools:primaryContact "Webmaster" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_0804, + edam:topic_2275, + edam:topic_3966 ; + sc:citation , + "pmcid:PMC9127323", + "pubmed:35619705" ; + sc:description "A Fast, Anchor-Restrained Modelling Protocol for Peptide." ; + sc:featureList edam:operation_0224, + edam:operation_0478, + edam:operation_0481, + edam:operation_1812 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "PANDORA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/X-lab-3D/PANDORA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -348132,38 +364675,42 @@ Antiviral peptide predictions using GAN.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ] ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Gene name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1621" ; - sc:name "Pharmacogenomic test report" ; - sc:sameAs "http://edamontology.org/data_1621" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1621" ; + sc:name "Pharmacogenomic test report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; - sc:applicationSubCategory edam:topic_0622, + sc:applicationSubCategory edam:topic_0208, + edam:topic_0622, edam:topic_2533, edam:topic_2640 ; + sc:author "SING Research Group. Informatics Department. University of Vigo" ; sc:citation "pmcid:PMC5977747", "pubmed:29848362" ; sc:description "PanDrugs is a method to prioritize anticancer drug treatments according to individual genomic data. PanDrugs current version integrates data from 24 primary sources and supports 56297 drug-target associations obtained from 4804 genes and 9092 unique compounds." ; - sc:featureList edam:operation_3226 ; + sc:featureList edam:operation_2945 ; sc:isAccessibleForFree true ; sc:license "GPL-3.0" ; sc:name "PanDrugs" ; sc:operatingSystem "Linux", "Mac", "Windows" ; + sc:provider "BU_CNIO", + "CNIO" ; sc:softwareHelp , ; - sc:softwareVersion "2018.06.18" ; + sc:softwareVersion "2018.06.18", + "2021.04.27" ; sc:url "https://www.pandrugs.org/" ; biotools:primaryContact , "Fatima Al-Shahrour" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application", @@ -348181,7 +364728,7 @@ Antiviral peptide predictions using GAN.""" ; sc:url "https://panelapp.genomicsengland.co.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3053, @@ -348202,7 +364749,7 @@ Antiviral peptide predictions using GAN.""" ; sc:url "https://projects.iq.harvard.edu/bayesmendel/panelpro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, edam:topic_3308, @@ -348220,7 +364767,7 @@ Antiviral peptide predictions using GAN.""" ; sc:url "https://github.com/vpalombo/PANEV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -348237,7 +364784,7 @@ Antiviral peptide predictions using GAN.""" ; biotools:primaryContact "Andrey A. Gorin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3071, @@ -348254,7 +364801,7 @@ Antiviral peptide predictions using GAN.""" ; sc:url "https://www.pangaea.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, edam:topic_0769 ; @@ -348270,7 +364817,7 @@ The tool extracts gene relations from PubMed abstracts and outputs the results i sc:url "https://github.com/ss-lab-cancerunit/pangaea" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2885, @@ -348292,26 +364839,26 @@ The tool extracts gene relations from PubMed abstracts and outputs the results i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_3975" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1211" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_3975" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_1333" ; + sc:name "Nucleic acid sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0797 ; @@ -348334,7 +364881,7 @@ The tool extracts gene relations from PubMed abstracts and outputs the results i sc:url "https://github.com/tischulz1/plast" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0769, edam:topic_3168, @@ -348352,8 +364899,37 @@ The bioinformatics pipeline leverages BWA/Minimap2 to identify ‘where’ reads sc:name "PanGIA" ; sc:url "https://github.com/LANL-Bioinformatics/PanGIA" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_3170, + edam:topic_3320, + edam:topic_3512, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9022248", + "pubmed:35449021" ; + sc:description "Pangolin is a deep-learning based method for predicting splice site strengths (for details, see Zeng and Li, Genome Biology 2022). It is available as a command-line tool that can be run on a VCF or CSV file containing variants of interest; Pangolin will predict changes in splice site strength due to each variant, and return a file of the same format. Pangolin's models can also be used with custom sequences." ; + sc:featureList edam:operation_0232, + edam:operation_0264, + edam:operation_0433, + edam:operation_3196, + edam:operation_3225 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Pangolin" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/tkzeng/Pangolin" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3168, edam:topic_3299, @@ -348377,18 +364953,18 @@ The panISa software searches for Insertion Sequences on NGS data ab initio (i.e. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ], + sc:additionalType "http://edamontology.org/data_1084" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data resource definition ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1084" ; - sc:name "Data resource definition ID" ; - sc:sameAs "http://edamontology.org/data_1084" ] ; + sc:additionalType "http://edamontology.org/data_1045" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Species name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_3621" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -348409,7 +364985,7 @@ The panISa software searches for Insertion Sequences on NGS data ab initio (i.e. biotools:primaryContact "Li Hong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -348426,7 +365002,7 @@ The panISa software searches for Insertion Sequences on NGS data ab initio (i.e. sc:url "http://bnet.egr.vcu.edu/pannotator/pannotator.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -348443,10 +365019,10 @@ The panISa software searches for Insertion Sequences on NGS data ab initio (i.e. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3671" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Text" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -348461,7 +365037,7 @@ The panISa software searches for Insertion Sequences on NGS data ab initio (i.e. sc:url "http://ekhidna2.biocenter.helsinki.fi/sanspanz/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, edam:topic_0634, @@ -348480,7 +365056,7 @@ Abstract The identification of the variants that explain familial risk of a spec sc:url "http://akademik.bahcesehir.edu.tr/~bbgungor/panoga_protocol.zip" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0659, @@ -348499,7 +365075,7 @@ Abstract The identification of the variants that explain familial risk of a spec sc:url "https://toxygates.nibiohn.go.jp/panomicon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_2640, @@ -348517,14 +365093,14 @@ Abstract The identification of the variants that explain familial risk of a spec sc:url "https://app.terra.bio/#workspaces/broad-firecloud-cptac/PANOPLY_Production_Pipelines_v1_0" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Monitor computational workflows in real-time" ; sc:name "panoptes" ; sc:softwareVersion "0.1.1" ; sc:url "https://github.com/panoptes-organization/panoptes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -348543,7 +365119,7 @@ Abstract The identification of the variants that explain familial risk of a spec biotools:primaryContact "Brendan MacLean" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:28453651" ; sc:description "The massive molecular profiling of thousands of cancer patients has led to the identification of many tumor type specific driver genes. However, only a few (or none) of them are present in each individual tumor and, to enable precision oncology, we need to interpret the alterations found in a single patient. Cancer PanorOmics (http://panoromics.irbbarcelona.org) is a web-based resource to contextualize genomic variations detected in a personal cancer genome within the body of clinical and scientific evidence available
for 26 tumor types, offering complementary cohort and patient-centric views. Additionally, it explores the cellular environment of mutations by mapping them on the human interactome and providing quasiatomic structural details, whenever available. This ‘PanorOmic’ molecular view of individual tumors should contribute to the identification of actionable alterations ultimately guiding the clinical decision-making process." ; @@ -348551,7 +365127,7 @@ Abstract The identification of the variants that explain familial risk of a spec sc:url "https://panoromics.irbbarcelona.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -348565,7 +365141,7 @@ Abstract The identification of the variants that explain familial risk of a spec sc:url "http://www.math-evry.cnrs.fr/logiciels/panow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -348584,32 +365160,51 @@ Abstract The identification of the variants that explain familial risk of a spec sc:url "http://bioconductor.org/packages/release/bioc/html/panp.html" ; biotools:primaryContact "Peter Warren" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0194, + edam:topic_0196, + edam:topic_3299 ; + sc:citation , + "pubmed:35289871" ; + sc:description "PANPROVA is a computational tool for simulating pangenomic evolution by evolving the complete genomic sequence of an ancestral isolate. In this way, the possibility of operating at the pre-assembly stage is enabled. Gene set variations, sequence variation and horizontal acquisition from a pool of external genomes are the evolutionary features of the tool." ; + sc:featureList edam:operation_0310, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PANPROVA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/InfOmics/PANPROVA" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ], + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Processed microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -348631,7 +365226,7 @@ Abstract The identification of the variants that explain familial risk of a spec biotools:primaryContact "Xin Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0196, edam:topic_0623, @@ -348644,8 +365239,26 @@ Abstract The identification of the variants that explain familial risk of a spec sc:name "panRGP" ; sc:url "https://github.com/axbazin/panrgp_supdata" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0622 ; + sc:citation , + "pmcid:PMC2949892", + "pubmed:20843356" ; + sc:description "Panseq determines the core and accessory regions among a collection of genomic sequences based on user-defined parameters. It readily extracts regions unique to a genome or group of genomes, identifies SNPs within shared core genomic regions, constructs files for use in phylogeny programs based on both the presence/absence of accessory regions and SNPs within core regions." ; + sc:featureList edam:operation_2403, + edam:operation_3209 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "panseq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/chadlaing/Panseq" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -348668,7 +365281,7 @@ Abstract The identification of the variants that explain familial risk of a spec sc:url "https://github.com/hitbc/panSVR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0199, @@ -348692,7 +365305,7 @@ Abstract The identification of the variants that explain familial risk of a spec biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Score protein sequences against the entire PANTHER HMM library and analyze your sequences." ; @@ -348704,7 +365317,7 @@ Abstract The identification of the variants that explain familial risk of a spec sc:url "http://www.pantherdb.org/downloads/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0219, @@ -348723,7 +365336,7 @@ Abstract The identification of the variants that explain familial risk of a spec biotools:primaryContact "Thomas Lin Pedersen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -348740,7 +365353,7 @@ Abstract The identification of the variants that explain familial risk of a spec sc:url "http://bioinformatics.wustl.edu/webTools/portalModule/PromoterSearch.do" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053, @@ -348755,8 +365368,29 @@ Abstract The identification of the variants that explain familial risk of a spec sc:softwareHelp ; sc:url "http://sourceforge.net/projects/papav1/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0749, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9222883", + "pubmed:35741852" ; + sc:description "An Improved Computational Tool to Explore Selection Pressure on Protein-Coding Sequences." ; + sc:featureList edam:operation_0326, + edam:operation_0327, + edam:operation_3478 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "paPAML" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/RetroWWU/paPAML" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3387 ; sc:citation ; @@ -348773,7 +365407,7 @@ Abstract The identification of the variants that explain familial risk of a spec biotools:primaryContact "Yann Marcon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0634 ; @@ -348787,7 +365421,7 @@ Abstract The identification of the variants that explain familial risk of a spec sc:url "https://github.com/fmansoori/PAPET" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -348806,7 +365440,7 @@ Abstract The identification of the variants that explain familial risk of a spec biotools:primaryContact "Raphael Aggio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3120, @@ -348823,7 +365457,7 @@ Abstract The identification of the variants that explain familial risk of a spec biotools:primaryContact "Riccardo Bellazzi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0749, @@ -348842,10 +365476,10 @@ Abstract The identification of the variants that explain familial risk of a spec a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -348857,8 +365491,21 @@ Abstract The identification of the variants that explain familial risk of a spec sc:operatingSystem "Linux" ; sc:url "http://pappso.inra.fr/bioinfo/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_3474 ; + sc:description "Paradiseo is an open-source full-featured evolutionary computation framework which main purpose is to help you write your own stochastic optimization algorithms, insanely fast." ; + sc:license "Other" ; + sc:name "Paradiseo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://nojhan.github.io/paradiseo/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3315 ; @@ -348873,7 +365520,7 @@ Abstract The identification of the variants that explain familial risk of a spec biotools:primaryContact "Manish" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:description "GNU parallel is a shell tool for executing jobs in parallel using one or more computers. A job can be a single command or a small script that has to be run for each of the lines in the input. The typical input is a list of files, a list of hosts, a list of users, a list of URLs, or a list of tables. A job can also be a command that reads from a pipe. GNU parallel can then split the input and pipe it into commands in parallel." ; sc:isAccessibleForFree true ; @@ -348884,7 +365531,7 @@ Abstract The identification of the variants that explain familial risk of a spec sc:url "https://www.gnu.org/software/parallel/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -348901,7 +365548,7 @@ Abstract The identification of the variants that explain familial risk of a spec biotools:primaryContact "Kazuharu Misawa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056, @@ -348919,7 +365566,7 @@ Abstract The identification of the variants that explain familial risk of a spec biotools:primaryContact "Brendan Wringe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -348937,30 +365584,30 @@ Abstract The identification of the variants that explain familial risk of a spec a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_1333" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0089, @@ -348985,7 +365632,7 @@ Abstract The identification of the variants that explain familial risk of a spec biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0218, @@ -349005,7 +365652,7 @@ Abstract The identification of the variants that explain familial risk of a spec sc:url "https://github.com/boxiangliu/ParaMed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3360 ; @@ -349022,7 +365669,7 @@ Abstract The identification of the variants that explain familial risk of a spec biotools:primaryContact "Leonidas Bantis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3047, @@ -349041,8 +365688,21 @@ Abstract The identification of the variants that explain familial risk of a spec biotools:primaryContact , . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "ParaPep: It is a manually curated repository of experimentally validated anti-parasitic peptides and their structures. Data have been collected from research papers, published patents and other databases." ; + sc:featureList edam:operation_2945 ; + sc:name "parapep" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/parapep/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3518 ; sc:description "ParaSAM is a high performance parallel processing implementation of the SAM (Significance Analysis of Microarrays) algorithm. The permutations are divided across the multiple nodes. The computational workload is divided among multiple CPUs and the main memory of all participating computers is utilized to avoid caching operations to the disk, which significantly decrease algorithm execution time." ; @@ -349052,8 +365712,30 @@ Abstract The identification of the variants that explain familial risk of a spec sc:operatingSystem "Windows" ; sc:url "http://www.diacomp.org/shared/showBioSoftware.aspx?id=3" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3053, + edam:topic_3398, + edam:topic_3895 ; + sc:citation , + "pmcid:PMC8546602", + "pubmed:34712845" ; + sc:description "A lightweight Python library designed to simplify the development of tools that render SBOL Visual diagrams." ; + sc:featureList edam:operation_0337, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "paraSBOLv" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/BiocomputeLab/paraSBOLv" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -349074,8 +365756,29 @@ Abstract The identification of the variants that explain familial risk of a spec sc:url "http://www.ofranlab.org/paratome/" ; biotools:primaryContact "Vered Kunik" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0625, + edam:topic_3305, + edam:topic_3324, + edam:topic_3673 ; + sc:citation ; + sc:description "Assigns genotypes to Salmonella Paratyphi A isolates using whole-genome sequencing data." ; + sc:featureList edam:operation_3196, + edam:operation_3227, + edam:operation_3482 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Paratype" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/CHRF-Genomics/Paratype" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3382 ; @@ -349093,7 +365796,7 @@ Abstract The identification of the variants that explain familial risk of a spec biotools:primaryContact "Kitware Inc." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3053 ; @@ -349108,7 +365811,7 @@ Abstract The identification of the variants that explain familial risk of a spec biotools:primaryContact "Jorge González-Domínguez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -349121,8 +365824,36 @@ Abstract The identification of the variants that explain familial risk of a spec sc:url "http://sourceforge.net/projects/pardre/" ; biotools:primaryContact "Jorge González-Domínguez" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2856" ; + sc:encodingFormat "http://edamontology.org/format_3590" ; + sc:name "Structural distance matrix" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Library" ; + sc:applicationSubCategory edam:topic_0654, + edam:topic_3173, + edam:topic_3473 ; + sc:author ; + sc:description "Detection of intensity changes in Hi-C patterns (chromatin loops, domain borders, ...) two groups of samples." ; + sc:featureList edam:operation_3731 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "pareidolia" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareHelp , + ; + sc:softwareVersion "1.2.0" ; + sc:url "https://github.com/koszullab/pareidolia" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -349135,7 +365866,7 @@ Abstract The identification of the variants that explain familial risk of a spec sc:url "http://statgen.ucr.edu/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation ; @@ -349149,7 +365880,7 @@ Abstract The identification of the variants that explain familial risk of a spec sc:url "http://www.mobioinfor.cn/parepro/index.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3474, @@ -349167,7 +365898,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu sc:url "https://github.com/ghar1821/ParetoBench" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3334, @@ -349185,7 +365916,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu biotools:primaryContact "Giovanni Montana" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315 ; sc:description "support for parallelized estimation of GLMs/GEEs, catering for dispersed data" ; @@ -349202,7 +365933,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu biotools:primaryContact "VJ Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3301, edam:topic_3474 ; @@ -349217,7 +365948,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu sc:url "https://github.com/abu034004/PARGT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -349232,7 +365963,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu "Massimiliano Orsini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -349247,7 +365978,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu biotools:primaryContact "Jonathan L. Haines" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3277, edam:topic_3407 ; @@ -349261,15 +365992,49 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu sc:url "https://www.mathworks.com/matlabcentral/fileexchange/59671-4oh4-parkes_ega_matlab" ; biotools:primaryContact "Rupert Thomas" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2878" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structural motif" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Plug-in" ; + sc:applicationSubCategory edam:topic_0081, + edam:topic_0166, + edam:topic_1317, + edam:topic_3332 ; + sc:author ; + sc:citation ; + sc:description "Parallel KVFinder (parKVFinder) is an open-source software designed for the detection and spatial characterization (shape, volume, area and surrounding residues) of any type of biomolecular cavity. parKVFinder is available alongside an easy-to-use PyMOL plugin (PyMOL2 parKVFinder Tools) with an intuitive graphical user interface that allows users to explore customizable parameters for cavity detection and characterization." ; + sc:featureList edam:operation_0250, + edam:operation_2575, + edam:operation_3351 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "parKVFinder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:provider ; + sc:softwareHelp ; + sc:url "https://github.com/LBC-LNBio/parKVFinder" ; + biotools:primaryContact , + . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:description "Ensemble structural variant caller on short-read data" ; sc:name "Parliament2" ; sc:url "https://github.com/slzarate/parliament2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081 ; sc:citation ; @@ -349283,7 +366048,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu sc:url "https://biokinet.belozersky.msu.ru/parmatt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -349302,7 +366067,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu biotools:primaryContact "Chiara Romualdi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -349320,8 +366085,27 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu sc:url "http://bioconductor.org/packages/release/bioc/html/parody.html" ; biotools:primaryContact "VJ Carey" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_2828, + edam:topic_3384, + edam:topic_3452 ; + sc:citation , + "pubmed:35039098" ; + sc:description "A Pilot Study on the Open Access Provision of Particle-Discrete Tomographic Datasets." ; + sc:featureList edam:operation_2422, + edam:operation_3457, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:name "PARROT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://parrot.tu-freiberg.de" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0176, @@ -349338,7 +366122,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu biotools:primaryContact "Xavier Daura" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0091, @@ -349355,7 +366139,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu biotools:primaryContact "Maya Galili" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3170, @@ -349372,7 +366156,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu "Pierre Nicolas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -349389,7 +366173,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu sc:url "http://www.proweb.org/parsesnp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3372, edam:topic_3474, @@ -349407,7 +366191,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu sc:url "https://github.com/AnacletoLAB/parSMURF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0123, @@ -349425,7 +366209,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu biotools:primaryContact "Gwo-Yu Chuang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2885, @@ -349444,7 +366228,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu biotools:primaryContact "Maryland Bioinformatics Labs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0085, edam:topic_3169, @@ -349463,7 +366247,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu biotools:primaryContact "Partek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3070, @@ -349479,7 +366263,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu biotools:primaryContact "Giuseppe Cardillo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0654, @@ -349494,7 +366278,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu sc:url "https://github.com/OluwadareLab/ParticleChromo3D" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2269 ; @@ -349511,7 +366295,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu biotools:primaryContact "Russell Hamilton" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0621, @@ -349528,7 +366312,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu biotools:primaryContact "Linda Sperling" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -349545,7 +366329,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu sc:url "http://partifold.csail.mit.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -349566,7 +366350,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu biotools:primaryContact "Dr. John Parkinson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2269, @@ -349582,7 +366366,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu biotools:primaryContact "K.J. Dawson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:citation , "pubmed:31504178" ; @@ -349592,7 +366376,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu sc:url "https://cran.r-project.org/package=partition" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269 ; sc:citation ; @@ -349603,7 +366387,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu sc:url "https://github.com/mastoffel/partR2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0611, edam:topic_0625, @@ -349620,7 +366404,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu sc:url "https://4dnucleome.cent.uw.edu.pl/PartSeg/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3125, @@ -349638,7 +366422,7 @@ A framework for benchmarking clustering algorithms, using Pareto fronts to captu biotools:primaryContact "Neil Swainston" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -349665,7 +366449,7 @@ Proteomics Analysis of Serum Antibodies web server. sc:url "https://pasa.tau.ac.il" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, edam:topic_0602, @@ -349684,7 +366468,7 @@ BACKGROUND:Attention-Deficit Hyperactivity Disorder (ADHD) is a complex neurodev sc:url "https://www2.unil.ch/cbg/index.php?title=Pascal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -349704,7 +366488,7 @@ BACKGROUND:Attention-Deficit Hyperactivity Disorder (ADHD) is a complex neurodev "Peter Park" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3173, edam:topic_3295 ; @@ -349718,7 +366502,7 @@ BACKGROUND:Attention-Deficit Hyperactivity Disorder (ADHD) is a complex neurodev "Elke Norwig-Eastaugh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -349732,7 +366516,7 @@ BACKGROUND:Attention-Deficit Hyperactivity Disorder (ADHD) is a complex neurodev sc:url "http://pasha.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -349750,7 +366534,7 @@ BACKGROUND:Attention-Deficit Hyperactivity Disorder (ADHD) is a complex neurodev sc:url "http://pasmet.riken.jp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -349771,7 +366555,7 @@ BACKGROUND:Attention-Deficit Hyperactivity Disorder (ADHD) is a complex neurodev biotools:primaryContact "Davide Campagna" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -349789,7 +366573,7 @@ BACKGROUND:Attention-Deficit Hyperactivity Disorder (ADHD) is a complex neurodev biotools:primaryContact "Prof. R. Sowdhamini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3336, edam:topic_3373, @@ -349811,7 +366595,7 @@ Allostery is the process by which proteins transmit perturbations caused by the sc:url "https://passer.smu.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3678 ; @@ -349827,7 +366611,7 @@ The PASSIM consists of the two parts:""" ; sc:url "http://passim.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, edam:topic_3474, @@ -349842,7 +366626,7 @@ The PASSIM consists of the two parts:""" ; sc:url "http://flagship.erc.monash.edu/PASSION/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -349866,14 +366650,14 @@ The PASSIM consists of the two parts:""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_3556" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -349895,7 +366679,7 @@ The PASSIM consists of the two parts:""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_0121, @@ -349916,18 +366700,15 @@ The PASSIM consists of the two parts:""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -349957,7 +366738,7 @@ The PASSIM consists of the two parts:""" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/pasteseq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -349979,7 +366760,7 @@ An automated pipeline for protein active site validation.""" ; sc:url "https://github.com/mooreryan/pasv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3297, @@ -349996,7 +366777,7 @@ An automated pipeline for protein active site validation.""" ; biotools:primaryContact "Philip M. Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -350011,7 +366792,7 @@ An automated pipeline for protein active site validation.""" ; biotools:primaryContact "M.Boccara" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -350028,7 +366809,7 @@ An automated pipeline for protein active site validation.""" ; biotools:primaryContact "Dan Søndergaard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0632, edam:topic_2229, @@ -350043,7 +366824,7 @@ An automated pipeline for protein active site validation.""" ; sc:url "https://github.com/AllenInstitute/patchseqtools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -350060,7 +366841,7 @@ An automated pipeline for protein active site validation.""" ; biotools:primaryContact "Daisuke Kihara" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -350078,7 +366859,7 @@ An automated pipeline for protein active site validation.""" ; biotools:primaryContact "Elisabeth R. M. Tillier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0081, @@ -350105,7 +366886,7 @@ An automated pipeline for protein active site validation.""" ; biotools:primaryContact "PatchDock Administrator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2275 ; @@ -350122,8 +366903,29 @@ An automated pipeline for protein active site validation.""" ; sc:softwareVersion "1" ; sc:url "http://patchfinder.tau.ac.il/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0166, + edam:topic_0820, + edam:topic_2275, + edam:topic_3306 ; + sc:citation , + "pubmed:35482919" ; + sc:description "Matching protein surface structural patches for high-resolution blind peptide docking." ; + sc:featureList edam:operation_0479, + edam:operation_3216, + edam:operation_3899 ; + sc:isAccessibleForFree true ; + sc:name "PatchMAN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://furmanlab.cs.huji.ac.il/patchman/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -350143,14 +366945,12 @@ An automated pipeline for protein active site validation.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -350167,8 +366967,37 @@ An automated pipeline for protein active site validation.""" ; sc:url "http://patchwork.r-forge.r-project.org/" ; biotools:primaryContact "Sebastian Dilorenzo" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0130, + edam:topic_0154, + edam:topic_0601 ; + sc:citation , + "pubmed:35438792" ; + sc:description "patcHwork is a user-friendly web-server that identifies amino acids of proteins that undergo a charge-shift when the pH assumes two user-defined values. For sequence functionality, users may submit a FASTA file with up to ten thousand amino acid sequences (max 20MB). For structure functionality, users may submit a single 3D structure (PDB) file or a zip file with multiple PDB files (max 20MB) for batch processing." ; + sc:featureList edam:operation_0272, + edam:operation_0337, + edam:operation_0394, + edam:operation_1839 ; + sc:isAccessibleForFree true ; + sc:name "patcHwork" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://patchwork.biologie.uni-freiburg.de/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -350191,7 +367020,7 @@ An automated pipeline for protein active site validation.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071 ; @@ -350204,39 +367033,8 @@ An automated pipeline for protein active site validation.""" ; sc:softwareVersion "3.5.1" ; sc:url "http://www.uspto.gov/patents-getting-started/patent-basics/types-patent-applications/utility-patent/checker/patentin" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_0780, - edam:topic_3400, - edam:topic_3421 ; - sc:citation , - "pubmed:31814546" ; - sc:description """Recent Patents and Discovery of Anti-inflammatory Agents from Marine Source. - -Google er tilgængelig på: Føroyskt. - -Complete Patent Searching Database and Patent Data Analytics Services. - -Discover the latest inventions. Find the future. - -New US patent applications weekly - BEFORE the USPTO decision to grant/deny. - -Learn more about our industry leading patent landscaping and analytics tool, AcclaimIP. - -Distillation of data, trends, news, and top thoughts of the week in the world of Intellectual Property. - -Recent documents: US Patents US Applications US Design Patents. - -Full Directory of Top Organizations Login for PDFs & Patent Monitoring INVENTOR'S EDGE - Marketing for Inventors. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'uspto', 'searchsimp', 'freshpatents', 'freepatentsonline'""" ; - sc:featureList edam:operation_0306, - edam:operation_2421 ; - sc:name "patents" ; - sc:url "http://www.google.com/patents" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -350251,7 +367049,7 @@ Full Directory of Top Organizations Login for PDFs & Patent Monitoring INVENTOR' biotools:primaryContact "Michael Krawczak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3063, @@ -350272,7 +367070,7 @@ Full Directory of Top Organizations Login for PDFs & Patent Monitoring INVENTOR' sc:url "https://ouyanglab.shinyapps.io/PATH/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -350290,7 +367088,7 @@ Full Directory of Top Organizations Login for PDFs & Patent Monitoring INVENTOR' biotools:primaryContact "Nicolas Le Novère" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0128, @@ -350308,7 +367106,7 @@ Full Directory of Top Organizations Login for PDFs & Patent Monitoring INVENTOR' biotools:primaryContact "Oliver Philipp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -350330,31 +367128,8 @@ pathDIP is an annotated database of signaling cascades in human and non-human or sc:name "pathDIP" ; sc:url "http://ophid.utoronto.ca/pathDIP" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0121, - edam:topic_0602, - edam:topic_0659, - edam:topic_3500 ; - sc:citation , - "pubmed:31733064" ; - sc:description """an extended pathway annotations and enrichment analysis resource for human, model organisms and domesticated species. - -Search Genes Search miRNAs Search Pathways API Download Statistics Documentation Publications Team Contact. - -pathDIP is an annotated database of signaling cascades in human and non-human organisms, comprising core pathways from major curated pathways databases, and pathways predicted based on orthology, and by using physical protein interactions. Data integration and predictions increase coverage of pathway annotations for human proteome to 92%. pathDIP annotates 122,131 unique proteins in 6,401 pathways in 17 organisms (including 18,454 human proteins), annotates 36,216 pathway orphans (including 5,366 human proteins), and provides multiple query, analysis and output options. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'pathDIP'""" ; - sc:featureList edam:operation_0277, - edam:operation_2421, - edam:operation_3083, - edam:operation_3439, - edam:operation_3501 ; - sc:name "pathDIP 4" ; - sc:url "http://ophid.utoronto.ca/pathDIP" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3382, edam:topic_3474 ; @@ -350367,7 +367142,7 @@ pathDIP is an annotated database of signaling cascades in human and non-human or sc:url "https://gitlab.com/Digipathology/Pathadin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -350382,7 +367157,7 @@ pathDIP is an annotated database of signaling cascades in human and non-human or sc:url "http://www.pathbase.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0780, @@ -350399,7 +367174,7 @@ pathDIP is an annotated database of signaling cascades in human and non-human or biotools:primaryContact "Lifeng Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -350420,7 +367195,7 @@ pathDIP is an annotated database of signaling cascades in human and non-human or biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -350437,7 +367212,7 @@ pathDIP is an annotated database of signaling cascades in human and non-human or biotools:primaryContact "Agus Salim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, edam:topic_0602, @@ -350454,7 +367229,7 @@ Predict the drug sensitivity to cancer cells.""" ; sc:url "http://pathdnn.denglab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -350475,7 +367250,7 @@ Predict the drug sensitivity to cancer cells.""" ; biotools:primaryContact "Lauren Brinkac" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -350501,7 +367276,7 @@ Predict the drug sensitivity to cancer cells.""" ; sc:url "https://bioinformatics.cing.ac.cy/PathExNET" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -350514,10 +367289,11 @@ Predict the drug sensitivity to cancer cells.""" ; "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.pathexpand.org/" . + sc:url "http://www.pathexpand.org/" ; + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -350535,7 +367311,7 @@ Predict the drug sensitivity to cancer cells.""" ; sc:url "http://bioinfoserver.rsbs.anu.edu.au/utils/PathExpress/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, edam:topic_3172, @@ -350553,7 +367329,7 @@ We provide a computational tool - PathExt, which identifies differentially activ sc:url "https://github.com/NarmadaSambaturu/PathExt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0114, @@ -350578,38 +367354,31 @@ We provide a computational tool - PathExt, which identifies differentially activ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ] ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:name "P-value" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_3753" ; + sc:encodingFormat "http://edamontology.org/format_3166" ; + sc:name "Over-representation data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3753" ; - sc:name "Over-representation data" ; - sc:sameAs "http://edamontology.org/data_3753" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -350637,7 +367406,7 @@ We provide a computational tool - PathExt, which identifies differentially activ biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, edam:topic_2269, @@ -350655,14 +367424,13 @@ PathFinder is a python script developed in a Windows 64-bit architecture, and do a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3477" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -350678,7 +367446,7 @@ PathFinder is a python script developed in a Windows 64-bit architecture, and do sc:url "http://bioinformatics.psb.ugent.be/software/details/Pathicular" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -350697,7 +367465,7 @@ PathFinder is a python script developed in a Windows 64-bit architecture, and do biotools:primaryContact "Assif Yitzhaky" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -350720,7 +367488,7 @@ PathFinder is a python script developed in a Windows 64-bit architecture, and do biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3071 ; @@ -350736,7 +367504,7 @@ PathFinder is a python script developed in a Windows 64-bit architecture, and do sc:url "http://www.pathjam.org/server/api/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, edam:topic_0659, @@ -350753,7 +367521,7 @@ PathFinder is a python script developed in a Windows 64-bit architecture, and do sc:url "https://github.com/AminaLEM/PathME" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3382, @@ -350769,7 +367537,7 @@ PathFinder is a python script developed in a Windows 64-bit architecture, and do biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3172 ; @@ -350785,7 +367553,7 @@ PathFinder is a python script developed in a Windows 64-bit architecture, and do biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -350806,7 +367574,7 @@ PathFinder is a python script developed in a Windows 64-bit architecture, and do biotools:primaryContact "Jason B. Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, edam:topic_0769, @@ -350821,7 +367589,7 @@ PathFinder is a python script developed in a Windows 64-bit architecture, and do sc:url "https://git-r3lab.uni.lu/laura.denies/PathoFact" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0769, @@ -350842,14 +367610,14 @@ A deep learning based framework for recognition and fusion of multimodal histopa a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3324 ; sc:citation ; @@ -350866,7 +367634,7 @@ A deep learning based framework for recognition and fusion of multimodal histopa biotools:primaryContact "Mette Voldby Larsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -350888,7 +367656,7 @@ A deep learning based framework for recognition and fusion of multimodal histopa sc:url "http://statgen.snu.ac.kr/software/pathome" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3315, edam:topic_3382, @@ -350906,8 +367674,29 @@ A deep learning based framework for recognition and fusion of multimodal histopa sc:url "https://github.com/SHIDCenter/PathoNet" ; biotools:primaryContact "Amirreza Dehghanian" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0203, + edam:topic_3170, + edam:topic_3174, + edam:topic_3837 ; + sc:citation ; + sc:description "Pathogen Detection in RNA-Seq Data with Pathonoia." ; + sc:featureList edam:operation_3436, + edam:operation_3460, + edam:operation_3463 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Pathonoia" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/kepsi/Pathonoia" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "PATHOQC is a quality control and preprocessing standalone program for a high-throughput dataset. PATHOQC combines three commonly-used quality control programs (FastQC, cutadapt, and prinseq-lite) into one package that can handle a variety type of NGS dataset in a parallel computation." ; @@ -350918,7 +367707,7 @@ A deep learning based framework for recognition and fusion of multimodal histopa sc:url "http://jlab.bu.edu/software/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -350936,7 +367725,7 @@ A deep learning based framework for recognition and fusion of multimodal histopa "William Evan Johnson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3300, @@ -350954,7 +367743,7 @@ A deep learning based framework for recognition and fusion of multimodal histopa biotools:primaryContact "George Oliveira Barros" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -350975,7 +367764,7 @@ A deep learning based framework for recognition and fusion of multimodal histopa biotools:primaryContact "Solaiappan Manimaran" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -350997,7 +367786,7 @@ A deep learning based framework for recognition and fusion of multimodal histopa biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -351016,7 +367805,7 @@ A deep learning based framework for recognition and fusion of multimodal histopa biotools:primaryContact "Sokratis Kariotis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -351035,7 +367824,7 @@ A deep learning based framework for recognition and fusion of multimodal histopa biotools:primaryContact "Vince Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602 ; @@ -351053,7 +367842,7 @@ A deep learning based framework for recognition and fusion of multimodal histopa biotools:primaryContact "Admin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -351074,7 +367863,7 @@ A deep learning based framework for recognition and fusion of multimodal histopa "yufei.huang@utsa.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2533, @@ -351091,7 +367880,7 @@ A deep learning based framework for recognition and fusion of multimodal histopa biotools:primaryContact "Gaffney SG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_0821, @@ -351109,7 +367898,7 @@ PATHcre8 is an open-access online tool for heterologous biosynthesis pathway sea sc:url "https://www.cbrc.kaust.edu.sa/pathcre8/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -351127,8 +367916,20 @@ PATHcre8 is an open-access online tool for heterologous biosynthesis pathway sea sc:url "http://bioconductor.org/packages/release/bioc/html/pathVar.html" ; biotools:primaryContact "Samuel Zimmerman" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0085 ; + sc:citation , + "pmcid:PMC3268235", + "pubmed:22123829" ; + sc:description "PathVar, a web-application to study how the variance of expression levels across genes/proteins in cellular pathways changes under different experimental conditions, and to extract patterns for sample clustering and classification." ; + sc:name "PathVar" ; + sc:softwareHelp ; + sc:url "http://pathvar.embl.de/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -351151,7 +367952,7 @@ PATHcre8 is an open-access online tool for heterologous biosynthesis pathway sea biotools:primaryContact "Weijun Luo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602 ; @@ -351166,7 +367967,7 @@ PATHcre8 is an open-access online tool for heterologous biosynthesis pathway sea biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -351193,7 +367994,7 @@ PATHcre8 is an open-access online tool for heterologous biosynthesis pathway sea "Martina Kutmon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -351212,7 +368013,7 @@ PATHcre8 is an open-access online tool for heterologous biosynthesis pathway sea biotools:primaryContact "Anwesha Bohler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, edam:topic_0634, @@ -351229,7 +368030,7 @@ PATHcre8 is an open-access online tool for heterologous biosynthesis pathway sea sc:url "https://github.com/vagkaratzas/PathWalks" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -351250,7 +368051,7 @@ Pathway Tools is a comprehensive systems biology software system that is associa sc:url "http://pathwaytools.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053, @@ -351264,7 +368065,7 @@ Pathway Tools is a comprehensive systems biology software system that is associa sc:url "http://sourceforge.net/projects/pathway-pdt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0154, edam:topic_0602, @@ -351280,7 +368081,7 @@ Pathway Tools is a comprehensive systems biology software system that is associa sc:url "https://github.com/hallamlab/pathway2vec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -351296,7 +368097,7 @@ Pathway Tools is a comprehensive systems biology software system that is associa sc:url "http://www.pathwaycommons.org/pc/webservice.do?cmd=help" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -351311,7 +368112,7 @@ Pathway Tools is a comprehensive systems biology software system that is associa sc:url "https://pathwayexplorer.genome.tugraz.at/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3407 ; @@ -351328,7 +368129,7 @@ Pathway Tools is a comprehensive systems biology software system that is associa sc:url "http://rsat.bigre.ulb.ac.be/rsat/index_neat.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -351350,7 +368151,7 @@ Pathway Tools is a comprehensive systems biology software system that is associa biotools:primaryContact "Syed Asad Rahman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203 ; sc:description "Web application helping researchers to find patterns of expression in complex RNAseq experiments." ; @@ -351367,7 +368168,7 @@ Pathway Tools is a comprehensive systems biology software system that is associa biotools:primaryContact "Stefano Toppo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -351389,7 +368190,7 @@ Pathway Tools is a comprehensive systems biology software system that is associa biotools:primaryContact "Ritu Pandey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -351412,7 +368213,7 @@ Pathway parameter advising was written and tested using Python 3.6 and requires sc:url "https://github.com/gitter-lab/pathway-parameter-advising" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -351428,7 +368229,7 @@ Pathway parameter advising was written and tested using Python 3.6 and requires biotools:primaryContact "Nobuaki Kono" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -351445,7 +368246,7 @@ Pathway parameter advising was written and tested using Python 3.6 and requires sc:url "http://bioinformatics.ai.sri.com/ptools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0602, @@ -351460,7 +368261,7 @@ Pathway parameter advising was written and tested using Python 3.6 and requires sc:url "http://www.garuda-alliance.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -351477,7 +368278,7 @@ Pathway parameter advising was written and tested using Python 3.6 and requires biotools:primaryContact "Angus Graeme Forbes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, edam:topic_0602, @@ -351498,7 +368299,7 @@ With the advance in high-throughput technology for molecular assays, multi-omics sc:url "https://gabrielodom.github.io/pathwayPCA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3168, @@ -351521,7 +368322,7 @@ With the advance in high-throughput technology for molecular assays, multi-omics biotools:primaryContact "Aimin Yan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -351536,7 +368337,7 @@ With the advance in high-throughput technology for molecular assays, multi-omics biotools:primaryContact "Melott JM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workbench" ; sc:applicationSubCategory edam:topic_0625, @@ -351564,7 +368365,7 @@ With the advance in high-throughput technology for molecular assays, multi-omics sc:url "http://patientarchive.org/#/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web API" ; sc:applicationSubCategory edam:topic_0625, @@ -351578,7 +368379,7 @@ With the advance in high-throughput technology for molecular assays, multi-omics sc:url "https://github.com/Clinical-Genomics/patientMatcher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622 ; @@ -351598,7 +368399,7 @@ With the advance in high-throughput technology for molecular assays, multi-omics "Udo Stenzel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0654, @@ -351617,10 +368418,9 @@ With the advance in high-throughput technology for molecular assays, multi-omics a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -351652,14 +368452,12 @@ With the advance in high-throughput technology for molecular assays, multi-omics a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -351689,7 +368487,7 @@ With the advance in high-throughput technology for molecular assays, multi-omics sc:url "http://emboss.open-bio.org/rel/rel6/apps/patmatmotifs.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0622, @@ -351707,7 +368505,7 @@ PATO is a R package designed to analyze pangenomes (set of genomes) intra or int sc:url "https://github.com/irycisBioinfo/PATO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3293, @@ -351724,7 +368522,7 @@ PATO is a R package designed to analyze pangenomes (set of genomes) intra or int biotools:primaryContact "Fourment Mathieu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0204, @@ -351748,7 +368546,7 @@ PATO is a R package designed to analyze pangenomes (set of genomes) intra or int "Denis Baurain" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_0780, edam:topic_3343, @@ -351770,7 +368568,7 @@ This R package contains example to test and demonstrate the patRoon R package. T sc:url "https://rickhelmus.github.io/patRoon/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3473 ; @@ -351784,7 +368582,7 @@ This R package contains example to test and demonstrate the patRoon R package. T sc:url "https://patscan.secondarymetabolites.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -351806,7 +368604,7 @@ This R package contains example to test and demonstrate the patRoon R package. T sc:url "http://itbtools.ba.itb.cnr.it/patsearch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:description "Pattern clustering is a tool to cluster a set of DNA patterns onto smaller and more representative set of DNA patterns.Most pattern enumeration tools, such as POCO, report patterns overlapping. Therefore after discovering a set of statistically significant nucleotide patterns, it is useful to cluster the overlapping patterns into representative patterns." ; @@ -351818,14 +368616,14 @@ This R package contains example to test and demonstrate the patRoon R package. T a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_2033" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0154, @@ -351838,7 +368636,7 @@ This R package contains example to test and demonstrate the patRoon R package. T edam:operation_0250, edam:operation_0570 ; sc:isAccessibleForFree true ; - sc:name "PatternExplorer" ; + sc:name "PatternQuery" ; sc:operatingSystem "Linux", "Mac", "Windows" ; @@ -351855,10 +368653,10 @@ This R package contains example to test and demonstrate the patRoon R package. T a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Suite" ; sc:applicationSubCategory edam:topic_0121, @@ -351879,18 +368677,18 @@ This R package contains example to test and demonstrate the patRoon R package. T a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_2033" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0081, @@ -351923,8 +368721,26 @@ This R package contains example to test and demonstrate the patRoon R package. T "Lukáš Pravda", "Primary Contact" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0084 ; + sc:citation , + "pubmed:18428704" ; + sc:description "PAUP* (Phylogenetic Analysis Using Parsimony *and other methods) is a program for phylogenetic analysis using parsimony, maximum likelihood, and distance methods" ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "paup" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + , + ; + sc:url "https://paup.phylosolutions.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3361, edam:topic_3474, @@ -351940,7 +368756,7 @@ Pattern Attention Model with Value Embedding (PAVE).""" ; sc:url "https://github.com/yinchangchang/PAVE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3174 ; @@ -351957,7 +368773,7 @@ Pattern Attention Model with Value Embedding (PAVE).""" ; sc:url "https://ccb.jhu.edu/software/pavian/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, edam:topic_0632, @@ -351974,7 +368790,7 @@ Pattern Attention Model with Value Embedding (PAVE).""" ; sc:url "https://biit.cs.ut.ee/pawer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0204, @@ -351998,7 +368814,7 @@ Pattern Attention Model with Value Embedding (PAVE).""" ; sc:url "https://pax2graphml.genouest.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:description "PaxDb contains estimated abundance values for a large number of proteins in several different species. Furthermore, it contains information about inter-species variation of protein abundances." ; @@ -352012,7 +368828,7 @@ Pattern Attention Model with Value Embedding (PAVE).""" ; biotools:primaryContact "Milan Simonovic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2229 ; @@ -352028,7 +368844,7 @@ Pattern Attention Model with Value Embedding (PAVE).""" ; biotools:primaryContact "Maya Galili" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -352045,14 +368861,14 @@ Pattern Attention Model with Value Embedding (PAVE).""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3156" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3619" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -352077,7 +368893,7 @@ Pattern Attention Model with Value Embedding (PAVE).""" ; biotools:primaryContact "Augustin Luna" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -352096,7 +368912,7 @@ Pattern Attention Model with Value Embedding (PAVE).""" ; sc:url "http://www.pazar.info/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_3292, @@ -352118,7 +368934,7 @@ The data used for test is stored in test_input.pkl as a list of peak instances, sc:url "https://github.com/miaecle/PB-net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -352132,7 +368948,7 @@ The data used for test is stored in test_input.pkl as a list of peak instances, sc:url "http://faculty.washington.edu/wijsman/software.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0078, @@ -352153,7 +368969,7 @@ The data used for test is stored in test_input.pkl as a list of peak instances, "Sebastian Gibb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation "pmcid:PMC3525120", @@ -352169,7 +368985,7 @@ The data used for test is stored in test_input.pkl as a list of peak instances, sc:url "https://www.hsph.harvard.edu/pbat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -352190,7 +369006,7 @@ The data used for test is stored in test_input.pkl as a list of peak instances, biotools:primaryContact "Cristobal Fresno" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -352209,7 +369025,7 @@ The data used for test is stored in test_input.pkl as a list of peak instances, sc:url "http://bioinformatics.univ-reunion.fr/PBE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0166, @@ -352232,14 +369048,14 @@ The data used for test is stored in test_input.pkl as a list of peak instances, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2376" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "SPARQL endpoint", "Web API", "Web application" ; @@ -352268,7 +369084,7 @@ The data used for test is stored in test_input.pkl as a list of peak instances, biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -352285,7 +369101,7 @@ The data used for test is stored in test_input.pkl as a list of peak instances, sc:url "https://github.com/lyotvincent/PBGI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -352306,8 +369122,29 @@ The data used for test is stored in test_input.pkl as a list of peak instances, biotools:primaryContact "Gilbert DELEAGE", "Raphael TERREUX" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_2885, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9283883", + "pubmed:35860413" ; + sc:description "Evaluating statistical significance in a meta analysis by using numerical integration." ; + sc:featureList edam:operation_3196, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Pbine" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Yinchun-Lin/Pbine" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170, @@ -352327,7 +369164,7 @@ The data used for test is stored in test_input.pkl as a list of peak instances, biotools:primaryContact "M. Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3518 ; sc:citation , @@ -352342,14 +369179,14 @@ The data used for test is stored in test_input.pkl as a list of peak instances, sc:url "http://thebrain.bwh.harvard.edu/PBMAnalysisSuite/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "pbmm2 is a SMRT C++ wrapper for minimap2's C API. Its purpose is to support native PacBio in- and output, provide sets of recommended parameters, generate sorted output on-the-fly, and postprocess alignments. Sorted output can be used directly for polishing using GenomicConsensus, if BAM has been used as input to pbmm2. Benchmarks show that pbmm2 outperforms BLASR in sequence identity, number of mapped bases, and especially runtime. pbmm2 is the official replacement for BLASR." ; sc:name "pbmm2" ; sc:softwareVersion "1.4.0" ; sc:url "https://github.com/PacificBiosciences/pbmm2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0602, @@ -352367,7 +369204,7 @@ The data used for test is stored in test_input.pkl as a list of peak instances, "Weichuan Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3375 ; sc:description "Provides a PBPK and a Renin-Angiotensin system model for SimBiology" ; @@ -352381,7 +369218,7 @@ The data used for test is stored in test_input.pkl as a list of peak instances, biotools:primaryContact "Sven Mesecke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -352406,7 +369243,7 @@ pBRIT stands for priortization of candidate genes using Bayesian Ridge Regressio sc:url "http://biomina.be/apps/pbrit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -352426,7 +369263,7 @@ pBRIT stands for priortization of candidate genes using Bayesian Ridge Regressio biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -352441,7 +369278,7 @@ pBRIT stands for priortization of candidate genes using Bayesian Ridge Regressio sc:url "https://code.google.com/p/pbsim/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3168, edam:topic_3314 ; @@ -352459,7 +369296,7 @@ When a coverage depth is 100x and a length of reference sequence is about 10M, P sc:url "https://github.com/yukiteruono/pbsim2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -352481,7 +369318,7 @@ When a coverage depth is 100x and a length of reference sequence is about 10M, P sc:url "http://web.pkusz.edu.cn/wu/PBSP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3125, @@ -352498,7 +369335,7 @@ When a coverage depth is 100x and a length of reference sequence is about 10M, P sc:url "http://pbs.rnet.missouri.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -352513,14 +369350,14 @@ When a coverage depth is 100x and a length of reference sequence is about 10M, P a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0736, @@ -352544,7 +369381,7 @@ Protein Blocks are structural prototypes defined by de Brevern et al. (Proteins, sc:url "https://github.com/pierrepo/PBxplore" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -352560,7 +369397,7 @@ Protein Blocks are structural prototypes defined by de Brevern et al. (Proteins, biotools:primaryContact "Bonnie Berger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -352578,8 +369415,31 @@ There is an implementation with Jupiter, in which I put some examples. In these sc:name "PC2P" ; sc:url "https://github.com/SaraOmranian/PC2P" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0152, + edam:topic_0154, + edam:topic_0199 ; + sc:citation , + "pubmed:35662456" ; + sc:description "Prediction of Binding Free Energy Change Upon Missense Mutation in Protein-carbohydrate Complexes." ; + sc:featureList edam:operation_0475, + edam:operation_2488, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:name "PCA-MutPred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://web.iitm.ac.in/bioinfo2/pcamutpred" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, @@ -352596,7 +369456,7 @@ There is an implementation with Jupiter, in which I put some examples. In these biotools:primaryContact "Vicky M. Avery" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -352613,7 +369473,7 @@ There is an implementation with Jupiter, in which I put some examples. In these biotools:primaryContact "Michael Blum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_3299 ; @@ -352634,7 +369494,7 @@ pcadapt has been developed to detect genetic markers involved in biological adap sc:url "https://bcm-uga.github.io/pcadapt/articles/pcadapt.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -352659,7 +369519,7 @@ pcadapt has been developed to detect genetic markers involved in biological adap sc:url "http://bioinfo.jialab-ucr.org/PCaDB/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_2269, @@ -352676,7 +369536,7 @@ pcadapt has been developed to detect genetic markers involved in biological adap sc:url "https://sites.google.com/site/pcadmix/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -352697,7 +369557,7 @@ pcadapt has been developed to detect genetic markers involved in biological adap biotools:primaryContact "Federico Marini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0654, @@ -352719,7 +369579,7 @@ pcadapt has been developed to detect genetic markers involved in biological adap biotools:primaryContact "Morten Hansen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2885, @@ -352737,7 +369597,7 @@ pcadapt has been developed to detect genetic markers involved in biological adap sc:url "http://kumasakanatsuhiko.jp/projects/pcaj/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0749, edam:topic_2640, @@ -352754,7 +369614,7 @@ The ultimate goal is to accelerate the translation of LWAS discoveries into resu sc:url "http://www.sysbio.org.cn/pcalistdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_3517, @@ -352775,22 +369635,22 @@ Matches cases to controls based on genotype principal components (PC). In order a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -352811,7 +369671,7 @@ Matches cases to controls based on genotype principal components (PC). In order biotools:primaryContact "Henning Redestig" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -352835,7 +369695,7 @@ Matches cases to controls based on genotype principal components (PC). In order . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0152, edam:topic_0154, edam:topic_0749, @@ -352854,7 +369714,7 @@ Protein-Carbohydrate complex binding Affinity Prediction.""" ; sc:url "https://web.iitm.ac.in/bioinfo2/pcapred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -352872,18 +369732,15 @@ Protein-Carbohydrate complex binding Affinity Prediction.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:name "Structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2269 ; @@ -352902,7 +369759,7 @@ Protein-Carbohydrate complex binding Affinity Prediction.""" ; "Y. Sharma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, edam:topic_3360, @@ -352914,7 +369771,7 @@ Protein-Carbohydrate complex binding Affinity Prediction.""" ; sc:url "http://pcat.zhenglab.info" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -352932,7 +369789,7 @@ Protein-Carbohydrate complex binding Affinity Prediction.""" ; sc:url "http://www-genepi.med.utah.edu/PCAtag/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -352954,7 +369811,7 @@ Protein-Carbohydrate complex binding Affinity Prediction.""" ; biotools:primaryContact "Gustavo D. Parisi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0736, @@ -352975,7 +369832,7 @@ Protein-Carbohydrate complex binding Affinity Prediction.""" ; biotools:primaryContact "PCDDB Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166 ; @@ -352989,7 +369846,7 @@ Protein-Carbohydrate complex binding Affinity Prediction.""" ; sc:url "http://bioserv.rpbs.jussieu.fr/Help/PCE.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0123, edam:topic_2814 ; @@ -353006,7 +369863,7 @@ Protein-Carbohydrate complex binding Affinity Prediction.""" ; biotools:primaryContact "Mikolaj Feliks" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0157, @@ -353028,7 +369885,7 @@ Protein-Carbohydrate complex binding Affinity Prediction.""" ; biotools:primaryContact "PCFamily Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0121, @@ -353046,28 +369903,89 @@ Fast and accurate tool for the functional annotation of protein complex queries sc:name "PCfun" ; sc:url "https://github.com/sharmavaruns/PCfun" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_3170, + edam:topic_3295, + edam:topic_3308, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9252750", + "pubmed:35639771" ; + sc:description "A comprehensive web server for phenotype-cell-gene association analysis." ; + sc:featureList edam:operation_0314, + edam:operation_2421, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:name "PCGA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://pmglab.top/pcga" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Text data" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Report" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; - sc:applicationSubCategory edam:topic_0199, + sc:applicationSubCategory edam:topic_0085, + edam:topic_0092, + edam:topic_0199, edam:topic_0622, edam:topic_2640, edam:topic_3175, - edam:topic_3374 ; - sc:citation ; - sc:description "Stand-alone software package for functional annotation and translation of individual cancer genomes for precision oncology. It interprets both somatic SNVs/InDels and copy number aberrations." ; - sc:featureList edam:operation_0362, - edam:operation_3197 ; + edam:topic_3374, + edam:topic_3577 ; + sc:author ; + sc:citation , + "pmcid:PMC5946881", + "pubmed:29272339" ; + sc:contributor ; + sc:description "The Personal Cancer Genome Reporter (PCGR) is a stand-alone software package for translation of individual tumor genomes for precision cancer medicine. PCGR interprets primarily somatic SNVs/InDels and copy number aberrations. The software extends basic gene and variant annotations from the Ensembl's Variant Effect Predictor (VEP) with oncology-relevant, up-to-date annotations, and produces interactive HTML reports intended for clinical interpretation." ; + sc:featureList edam:operation_0331, + edam:operation_3225, + edam:operation_3226, + edam:operation_3672 ; + sc:isAccessibleForFree true ; sc:license "MIT" ; - sc:name "PCGR" ; + sc:name "PCGR - Personal Cancer Genome Reporter" ; sc:operatingSystem "Linux", "Mac" ; - sc:softwareHelp ; + sc:softwareHelp , + , + , + , + ; + sc:softwareVersion "1.0.2" ; sc:url "https://github.com/sigven/pcgr" ; - biotools:primaryContact "Sigve Nakken" . + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -353085,14 +370003,14 @@ Fast and accurate tool for the functional annotation of protein complex queries a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -353102,7 +370020,7 @@ Fast and accurate tool for the functional annotation of protein complex queries sc:url "http://pchopper.lifesci.dundee.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0654, @@ -353121,7 +370039,7 @@ Fast and accurate tool for the functional annotation of protein complex queries biotools:primaryContact "John L. Spouge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3542 ; sc:citation ; @@ -353136,7 +370054,7 @@ Fast and accurate tool for the functional annotation of protein complex queries sc:url "http://bioinf.sce.carleton.ca/PCISS/start.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0749, edam:topic_0781, @@ -353157,7 +370075,7 @@ Fast and accurate tool for the functional annotation of protein complex queries "Keith Durkin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_0659, @@ -353177,7 +370095,7 @@ Fast and accurate tool for the functional annotation of protein complex queries sc:url "https://github.com/Lilab-SNNU/Pcirc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -353194,7 +370112,7 @@ Fast and accurate tool for the functional annotation of protein complex queries "Longjiang Fan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602 ; sc:author "Nathan S. Watson-Haigh" ; @@ -353213,10 +370131,9 @@ Fast and accurate tool for the functional annotation of protein complex queries biotools:primaryContact "Nathan S. Watson-Haigh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, - edam:topic_2830, edam:topic_3474, edam:topic_3510, edam:topic_3534 ; @@ -353231,11 +370148,11 @@ Fast and accurate tool for the functional annotation of protein complex queries "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/pcleavage/" ; + sc:url "http://webs.iiitd.edu.in/raghava/pcleavage/" ; biotools:primaryContact "GPS Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053 ; sc:description "R package for penalized conditional/unconditional logistic regression using a network-based peanlty for matched/unmatched case-control data with grouped or graph-constrained variables. The algorithm is efficient for fitting the regularization path and for providing selection probabilities of each predictor for the anaylsis of high-dimensional matched/unmatched case-control data. It uses cyclical coordinate descent in a pathwise fashion." ; @@ -353248,8 +370165,28 @@ Fast and accurate tool for the functional annotation of protein complex queries sc:softwareVersion "0.1" ; sc:url "http://www.columbia.edu/~sw2206/softwares.htm" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0157 ; + sc:citation , + , + "pmcid:PMC2533575", + "pmcid:PMC3228813", + "pubmed:18541131", + "pubmed:22144907" ; + sc:description "The P-clouds package is designed to identify repeat structure in large eukaryotic genomes using oligonucleotide counts." ; + sc:featureList edam:operation_0237 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "pclouds" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareHelp ; + sc:url "http://www.evolutionarygenomics.com/ProgramsData/PClouds/PClouds.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0092, @@ -353267,8 +370204,67 @@ Fast and accurate tool for the functional annotation of protein complex queries sc:url "http://prodata.swmed.edu/pclust/server.cgi" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0780, + edam:topic_2229, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC8728192", + "pubmed:34718712" ; + sc:description "A curated and comprehensive resource of plant cell markers." ; + sc:featureList edam:operation_0337, + edam:operation_2421, + edam:operation_3663 ; + sc:isAccessibleForFree true ; + sc:name "PCMDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.tobaccodb.org/pcmdb/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC3935225", + "pubmed:24569397" ; + sc:description "PCMdb is a database of methylated genes found in pancreatic cancer cell lines and tissues." ; + sc:featureList edam:operation_2945 ; + sc:name "pcmdb : Pancreatic Cancer Methylation Database" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/pcmdb/index.php" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_2814 ; + sc:citation , + "pubmed:35799364" ; + sc:description "An open-source extensible tool for the Analysis of Protein Contact Networks." ; + sc:featureList edam:operation_0272, + edam:operation_0474, + edam:operation_3092 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-1.0" ; + sc:name "PCN-Miner" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/hguzzi/ProteinContactNetworks" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, @@ -353286,7 +370282,7 @@ Fast and accurate tool for the functional annotation of protein complex queries sc:url "https://github.com/chan-labsite/PCNAdeep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3305, @@ -353307,7 +370303,7 @@ Fast and accurate tool for the functional annotation of protein complex queries sc:url "http://www.pcnsl-survivalprediction.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation "pubmed:16870472" ; @@ -353320,7 +370316,7 @@ Fast and accurate tool for the functional annotation of protein complex queries sc:url "https://toolkit.tuebingen.mpg.de/#/tools/pcoils" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -353345,7 +370341,7 @@ Fast and accurate tool for the functional annotation of protein complex queries biotools:primaryContact "Elofsson Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -353362,7 +370358,7 @@ Fast and accurate tool for the functional annotation of protein complex queries sc:url "https://github.com/ElofssonLab/pcons-fold" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, edam:topic_2885, @@ -353389,7 +370385,7 @@ The Help page provides information on how to navigate the database and use its v sc:url "http://www.pcoskb.bicnirrh.res.in/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0204, @@ -353409,7 +370405,7 @@ The Help page provides information on how to navigate the database and use its v biotools:primaryContact "Sarah Song" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation "pubmed:25913176" ; @@ -353424,7 +370420,7 @@ The Help page provides information on how to navigate the database and use its v sc:url "https://sites.google.com/site/proteincomplexprediction/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0078, @@ -353443,8 +370439,22 @@ The Help page provides information on how to navigate the database and use its v sc:url "http://bioconductor.org/packages/release/bioc/html/PCpheno.html" ; biotools:primaryContact "Nolwenn Le Meur" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description """PCPred: Pneumonia and Covid-19 Radiography Lung Image +Multi-Class Classification""" ; + sc:featureList edam:operation_2945 ; + sc:name "pcpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/pcpred/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -353462,7 +370472,7 @@ The Help page provides information on how to navigate the database and use its v sc:url "https://github.com/anfoss/PCprophet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0804, @@ -353481,7 +370491,7 @@ Sequence Manipulation & Analysis.""" ; sc:url "http://imed.med.ucm.es/Tools/pcps/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170 ; @@ -353502,7 +370512,7 @@ The pcqc package was developed using,.""" ; sc:url "http://github.com/RoussosLab/pcqc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3512 ; sc:description """PCR Essentials @@ -353514,14 +370524,14 @@ Find product information on Taq polymerases, dNTP, gels and stains, RT-PCR produ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ] ; + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "File name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "File name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3519 ; @@ -353544,7 +370554,7 @@ Find product information on Taq polymerases, dNTP, gels and stains, RT-PCR produ biotools:primaryContact "Pierre Lindenbaum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_0077, @@ -353564,7 +370574,7 @@ Find product information on Taq polymerases, dNTP, gels and stains, RT-PCR produ biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3314, @@ -353582,7 +370592,7 @@ Find product information on Taq polymerases, dNTP, gels and stains, RT-PCR produ biotools:primaryContact "Giuseppe Cardillo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -353602,7 +370612,7 @@ Find product information on Taq polymerases, dNTP, gels and stains, RT-PCR produ biotools:primaryContact "Narcis Fernandez-Fuentes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0821 ; @@ -353616,7 +370626,7 @@ Find product information on Taq polymerases, dNTP, gels and stains, RT-PCR produ sc:url "http://primerdigital.com/tools/ReactionMixture.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0077, @@ -353643,7 +370653,7 @@ Find product information on Taq polymerases, dNTP, gels and stains, RT-PCR produ "alain.gervais@USherbrooke.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0659 ; @@ -353659,7 +370669,7 @@ Find product information on Taq polymerases, dNTP, gels and stains, RT-PCR produ biotools:primaryContact "Jin Gu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -353679,14 +370689,14 @@ Find product information on Taq polymerases, dNTP, gels and stains, RT-PCR produ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_1775 ; @@ -353706,7 +370716,7 @@ Find product information on Taq polymerases, dNTP, gels and stains, RT-PCR produ biotools:primaryContact "Murodzhon Akhmedov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -353724,7 +370734,7 @@ Find product information on Taq polymerases, dNTP, gels and stains, RT-PCR produ biotools:primaryContact "Winston Hide" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3361 ; sc:description "Discover the correlated pathways/gene sets of a single pathway/gene set or discover correlation relationships among multiple pathways/gene sets. Draw a heatmap or create a network of your query and extract members of each pathway/gene set found in the available collections." ; @@ -353741,7 +370751,7 @@ Find product information on Taq polymerases, dNTP, gels and stains, RT-PCR produ biotools:primaryContact "Sokratis Kariotis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0601, @@ -353764,7 +370774,7 @@ Find product information on Taq polymerases, dNTP, gels and stains, RT-PCR produ "Xinjiao Gao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -353782,7 +370792,7 @@ Here we provide a python code for the "Primal-Dual for Classification with Rejec sc:url "https://github.com/tirolab/PD-CR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0632, @@ -353805,7 +370815,7 @@ Here we provide a python code for the "Primal-Dual for Classification with Rejec "Sonia Casillas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, edam:topic_3474, @@ -353827,7 +370837,7 @@ The script runs a deep learning model (PDAC-ANN) to classify samples in normal o sc:url "https://github.com/freitasleandro/PDAC-ANN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -353842,7 +370852,7 @@ The script runs a deep learning model (PDAC-ANN) to classify samples in normal o sc:url "http://cmb.bnu.edu.cn/pdart/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0593, @@ -353863,7 +370873,7 @@ The script runs a deep learning model (PDAC-ANN) to classify samples in normal o sc:url "http://www.pdb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, edam:topic_0154 ; @@ -353877,7 +370887,7 @@ The script runs a deep learning model (PDAC-ANN) to classify samples in normal o sc:url "http://bioinfo.bdu.ac.in/pb3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081 ; sc:citation ; @@ -353894,7 +370904,7 @@ The script runs a deep learning model (PDAC-ANN) to classify samples in normal o biotools:primaryContact "Silvio C.E. Tosatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2814, @@ -353909,12 +370919,39 @@ The script runs a deep learning model (PDAC-ANN) to classify samples in normal o sc:softwareHelp ; sc:url "http://www.cheminfo.org/pdbexplorer/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2877" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein complex" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1470" ; + sc:encodingFormat "http://edamontology.org/format_3877" ; + sc:name "C-alpha trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_1317, + edam:topic_2814, + edam:topic_3332 ; + sc:author ; + sc:citation ; + sc:description "Rapidly perform normal mode analysis on PDB files using Tirion's simplified model." ; + sc:featureList edam:operation_2415, + edam:operation_3890 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "pdb-nma-analysis" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/haschka/pdb-nma-analysis" ; + biotools:primaryContact . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3070, @@ -353932,26 +370969,24 @@ The script runs a deep learning model (PDAC-ANN) to classify samples in normal o a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0937" ; - sc:name "Electron density map" ; - sc:sameAs "http://edamontology.org/data_0937" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1454" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1539" ; - sc:name "Protein structural quality report" ; - sc:sameAs "http://edamontology.org/data_1539" ], + sc:additionalType "http://edamontology.org/data_1539" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structural quality report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_0937" ; + sc:name "Electron density map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081 ; sc:author , @@ -353985,7 +371020,7 @@ The script runs a deep learning model (PDAC-ANN) to classify samples in normal o . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_2275 ; @@ -354000,7 +371035,7 @@ The script runs a deep learning model (PDAC-ANN) to classify samples in normal o sc:url "https://code.google.com/p/pdb-tools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, edam:topic_1317, @@ -354019,7 +371054,7 @@ A swiss army knife for manipulating and editing PDB files.""" ; sc:url "https://wenmr.science.uu.nl/pdbtools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2814 ; sc:description "PDB2CLE is a program that can turn a PDB file to a sequence of structural alphabets. In paricular, each structural alphabet is a discretized set of representatives of the local protein structure." ; @@ -354030,7 +371065,7 @@ A swiss army knife for manipulating and editing PDB files.""" ; sc:url "http://ttic.uchicago.edu/~majianzhu/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1317, edam:topic_3307 ; @@ -354047,7 +371082,7 @@ A swiss army knife for manipulating and editing PDB files.""" ; biotools:primaryContact "Steve Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2275 ; @@ -354061,7 +371096,7 @@ A swiss army knife for manipulating and editing PDB files.""" ; sc:url "http://sw-tools.pdb.org/apps/PDB_EXTRACT/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0091, @@ -354077,7 +371112,7 @@ A swiss army knife for manipulating and editing PDB files.""" ; sc:url "https://gitlab.ebi.ac.uk/pdbe-kb/services/pdbe-graph-api" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -354096,7 +371131,7 @@ A swiss army knife for manipulating and editing PDB files.""" ; biotools:primaryContact "Marc Delarue" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_1317, @@ -354129,8 +371164,32 @@ As the models are consistently treated, they are more suited for large-scale ana sc:url "http://www.cmbi.ru.nl/pdb_redo" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0108, + edam:topic_0154, + edam:topic_0623, + edam:topic_0821 ; + sc:citation , + "pmcid:PMC9178723", + "pubmed:35694511" ; + sc:description "Public Data Set of Protein-Ligand Dissociation Kinetic Constants for Quantitative Structure-Kinetics Relationship Studies." ; + sc:featureList edam:operation_0477, + edam:operation_0482, + edam:operation_3431, + edam:operation_3799, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "PDBbind" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.pdbbind.org.cn/download.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0593, @@ -354149,8 +371208,36 @@ As the models are consistently treated, they are more suited for large-scale ana sc:url "http://www.ebi.ac.uk/pdbe/" ; biotools:primaryContact "Contact form" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0199, + edam:topic_2814, + edam:topic_3047, + edam:topic_3306 ; + sc:citation , + "pmcid:PMC8728252", + "pubmed:34755867" ; + sc:description "Protein Data Bank in Europe - Knowledge Base" ; + sc:featureList edam:operation_0417, + edam:operation_1812, + edam:operation_3431, + edam:operation_3436, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "PDBe-KB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + , + ; + sc:url "https://pdbe-kb.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2814, @@ -354174,22 +371261,19 @@ As the models are consistently treated, they are more suited for large-scale ana a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ], + sc:additionalType "http://edamontology.org/data_1481" ; + sc:name "Structure alignment (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_1537" ; + sc:name "Protein structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1481" ; - sc:name "Structure alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1481" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2814 ; @@ -354213,14 +371297,12 @@ As the models are consistently treated, they are more suited for large-scale ana a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1566" ; - sc:name "Protein-ligand interaction report" ; - sc:sameAs "http://edamontology.org/data_1566" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1566" ; + sc:name "Protein-ligand interaction report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0166 ; @@ -354240,18 +371322,16 @@ As the models are consistently treated, they are more suited for large-scale ana a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ], + sc:additionalType "http://edamontology.org/data_0906" ; + sc:name "Protein interaction data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0166 ; @@ -354273,7 +371353,7 @@ As the models are consistently treated, they are more suited for large-scale ana biotools:primaryContact "Michael Wainwright" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2814, @@ -354295,22 +371375,18 @@ As the models are consistently treated, they are more suited for large-scale ana a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1384" ; + sc:name "Sequence alignment (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Jose Dana", @@ -354329,7 +371405,7 @@ As the models are consistently treated, they are more suited for large-scale ana biotools:primaryContact "Jose Dana" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2814 ; @@ -354346,14 +371422,13 @@ As the models are consistently treated, they are more suited for large-scale ana a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2085" ; - sc:name "Structure report" ; - sc:sameAs "http://edamontology.org/data_2085" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2085" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -354367,7 +371442,7 @@ As the models are consistently treated, they are more suited for large-scale ana sc:url "http://swift.cmbi.ru.nl/gv/pdbfinder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0166 ; sc:citation ; @@ -354379,7 +371454,7 @@ As the models are consistently treated, they are more suited for large-scale ana sc:url "http://pdbfun.uniroma2.it" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pmcid:PMC3434446", "pubmed:22536963" ; @@ -354388,7 +371463,7 @@ As the models are consistently treated, they are more suited for large-scale ana sc:url "http://cbm.bio.uniroma2.it/pdbinder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2814, @@ -354405,7 +371480,7 @@ As the models are consistently treated, they are more suited for large-scale ana biotools:primaryContact "Adamiak RW" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -354427,8 +371502,25 @@ As the models are consistently treated, they are more suited for large-scale ana sc:url "http://pdbj.org/" ; biotools:primaryContact "Contact form" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3382 ; + sc:citation , + "pubmed:35320093" ; + sc:description "Improving Histopathological Tissue Classification with Plug-and-Play Pyramidal Deep-Broad Learning." ; + sc:featureList edam:operation_0479, + edam:operation_3553 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PDBL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/linjiatai/PDBL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0593, edam:topic_2814, @@ -354446,7 +371538,7 @@ As the models are consistently treated, they are more suited for large-scale ana sc:url "https://pdbmd2cd.cryst.bbk.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Web API" ; sc:applicationSubCategory edam:topic_0154, @@ -354465,7 +371557,7 @@ PDBrenum provides PDB files in mmCIF and legacy-PDB format in which residues in sc:url "http://dunbrack3.fccc.edu/PDBrenum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0157, @@ -354483,7 +371575,7 @@ PDBrenum provides PDB files in mmCIF and legacy-PDB format in which residues in sc:url "http://bioinfo.tg.fh-giessen.de/pdbselect/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3534 ; @@ -354500,14 +371592,13 @@ PDBrenum provides PDB files in mmCIF and legacy-PDB format in which residues in a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2085" ; - sc:name "Structure report" ; - sc:sameAs "http://edamontology.org/data_2085" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2085" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation , @@ -354525,14 +371616,13 @@ PDBrenum provides PDB files in mmCIF and legacy-PDB format in which residues in a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2814 ; sc:author "Roman Laskowski", @@ -354553,7 +371643,7 @@ PDBrenum provides PDB files in mmCIF and legacy-PDB format in which residues in biotools:primaryContact "Roman Laskowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2640, @@ -354576,8 +371666,53 @@ PDBrenum provides PDB files in mmCIF and legacy-PDB format in which residues in sc:softwareHelp ; sc:url "http://biosig.unimelb.edu.au/pdcsm_cancer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0820, + edam:topic_3343, + edam:topic_3375, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8651072", + "pubmed:34901870" ; + sc:description "Predicting potent GPCR ligands with graph-based signatures." ; + sc:featureList edam:operation_0269, + edam:operation_2995, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:name "pdCSM-GPCR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://biosig.unimelb.edu.au/pdcsm_gpcr/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_0209, + edam:topic_3047, + edam:topic_3474 ; + sc:citation , + "pubmed:34719929" ; + sc:description "Using Graph-Based Signatures to Identify Protein-Protein Interaction Inhibitors." ; + sc:featureList edam:operation_2422, + edam:operation_2492, + edam:operation_3659, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "pdCSM-PPI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://biosig.unimelb.edu.au/pdcsm_ppi" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3068, @@ -354596,8 +371731,30 @@ PDBrenum provides PDB files in mmCIF and legacy-PDB format in which residues in sc:softwareHelp ; sc:url "https://CRAN.R-project.org/package=PDE" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_2269, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9199075", + "pubmed:35756878" ; + sc:description "Stability selection enables robust learning of differential equations from limited noisy data." ; + sc:featureList edam:operation_2426, + edam:operation_2949, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PDE-STRIDE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://git.mpi-cbg.de/mosaic/software/machine-learning/pde-stride" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation ; sc:description "pFind Studio: a computational solution for mass spectrometry-based proteomics" ; @@ -354608,7 +371765,7 @@ PDBrenum provides PDB files in mmCIF and legacy-PDB format in which residues in sc:url "http://pfind.ict.ac.cn/software/pdeep3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170 ; @@ -354624,90 +371781,71 @@ PDBrenum provides PDB files in mmCIF and legacy-PDB format in which residues in a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_2554" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0982" ; - sc:name "Molecule identifier" ; - sc:sameAs "http://edamontology.org/data_0982" ], + sc:additionalType "http://edamontology.org/data_1461" ; + sc:name "Protein-ligand complex" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0889" ; - sc:name "Structural profile" ; - sc:sameAs "http://edamontology.org/data_0889" ], + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2050" ; - sc:name "Molecular property (general)" ; - sc:sameAs "http://edamontology.org/data_2050" ], + sc:additionalType "http://edamontology.org/data_0897" ; + sc:name "Protein property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0954" ; - sc:name "Database cross-mapping" ; - sc:sameAs "http://edamontology.org/data_0954" ], + sc:additionalType "http://edamontology.org/data_1498" ; + sc:name "Tanimoto similarity score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_0889" ; + sc:name "Structural profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0984" ; - sc:name "Molecule name" ; - sc:sameAs "http://edamontology.org/data_0984" ], + sc:additionalType "http://edamontology.org/data_0982" ; + sc:name "Molecule identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_2992" ; + sc:name "Protein structure image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ], + sc:additionalType "http://edamontology.org/data_0906" ; + sc:name "Protein interaction data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0897" ; - sc:name "Protein property" ; - sc:sameAs "http://edamontology.org/data_0897" ], + sc:additionalType "http://edamontology.org/data_0954" ; + sc:name "Database cross-mapping" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2992" ; - sc:name "Protein structure image" ; - sc:sameAs "http://edamontology.org/data_2992" ], + sc:additionalType "http://edamontology.org/data_2050" ; + sc:name "Molecular property (general)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1461" ; - sc:name "Protein-ligand complex" ; - sc:sameAs "http://edamontology.org/data_1461" ], + sc:additionalType "http://edamontology.org/data_1712" ; + sc:name "Chemical structure image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0888" ; - sc:name "Structure similarity score" ; - sc:sameAs "http://edamontology.org/data_0888" ], + sc:additionalType "http://edamontology.org/data_0893" ; + sc:name "Sequence-structure alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0893" ; - sc:name "Sequence-structure alignment" ; - sc:sameAs "http://edamontology.org/data_0893" ], + sc:additionalType "http://edamontology.org/data_1537" ; + sc:name "Protein structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0890" ; - sc:name "Structural (3D) profile alignment" ; - sc:sameAs "http://edamontology.org/data_0890" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1481" ; - sc:name "Structure alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1481" ], + sc:additionalType "http://edamontology.org/data_0888" ; + sc:name "Structure similarity score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1498" ; - sc:name "Tanimoto similarity score" ; - sc:sameAs "http://edamontology.org/data_1498" ], + sc:additionalType "http://edamontology.org/data_1481" ; + sc:name "Structure alignment (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ], + sc:additionalType "http://edamontology.org/data_0890" ; + sc:name "Structural (3D) profile alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1712" ; - sc:name "Chemical structure image" ; - sc:sameAs "http://edamontology.org/data_1712" ], + sc:additionalType "http://edamontology.org/data_1463" ; + sc:name "Small molecule structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0984" ; + sc:name "Molecule name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal", "Web API", @@ -354769,8 +371907,57 @@ PDBrenum provides PDB files in mmCIF and legacy-PDB format in which residues in biotools:primaryContact "Dr. Albert J. Kooistra", "Dr. Chris de Graaf" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_3314, + edam:topic_3318, + edam:topic_3473 ; + sc:citation , + "pmcid:PMC9049592", + "pubmed:35349259" ; + sc:description "A Tool for Reading Scientific Text and Interpreting Metadata from the Typeset Literature in the Portable Document Format." ; + sc:featureList edam:operation_2422, + edam:operation_3625, + edam:operation_3907 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PDFDataExtractor" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/cat-lemonade/PDFDataExtractor" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:name "Gene expression profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0634, + edam:topic_2640, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC9380343", + "pubmed:35974311" ; + sc:description "PDGPCS is a driver genes prediction method; PDGPCS uesd gene expression data, gene mutation data and pathway data to predict driver genes." ; + sc:featureList edam:operation_2437, + edam:operation_2454, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PDGPCS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/NWPU-903PR/PDGPCS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -354794,14 +371981,14 @@ PDBrenum provides PDB files in mmCIF and legacy-PDB format in which residues in a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3110" ; - sc:name "Raw microarray data" ; - sc:sameAs "http://edamontology.org/data_3110" ] ; + sc:additionalType "http://edamontology.org/data_3110" ; + sc:encodingFormat "http://edamontology.org/format_1638" ; + sc:name "Raw microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3621" ; + sc:name "Processed microarray data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2885, @@ -354822,7 +372009,7 @@ PDBrenum provides PDB files in mmCIF and legacy-PDB format in which residues in biotools:primaryContact "Benilton Carvalho" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0654, @@ -354839,7 +372026,7 @@ PDBrenum provides PDB files in mmCIF and legacy-PDB format in which residues in biotools:primaryContact "Andreas Schüller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0622, edam:topic_3489, @@ -354857,7 +372044,7 @@ The pdm_utils repository provides the source code for pdm_utils Python package, sc:url "https://pypi.org/project/pdm-utils/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -354877,7 +372064,7 @@ The pdm_utils repository provides the source code for pdm_utils Python package, biotools:primaryContact "James W. MacDonald" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0634, edam:topic_0654, @@ -354896,7 +372083,7 @@ Parkinson's disease (PD) is the second most common neurodegenerative disease, of sc:url "https://ageing.shinyapps.io/pdmethdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0102, edam:topic_2814, @@ -354913,7 +372100,7 @@ As deep learning algorithms drive the progress in protein structure prediction, sc:url "https://github.com/ba-lab/pdnet/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3053 ; sc:citation , @@ -354927,7 +372114,7 @@ As deep learning algorithms drive the progress in protein structure prediction, sc:url "https://github.com/XLuyu/PDR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, edam:topic_0659, @@ -354942,22 +372129,8 @@ pDriver: A novel method for unravelling personalised coding and miNRA cancer dri sc:name "pDriver" ; sc:url "https://github.com/pvvhoang/pDriver" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0128, - edam:topic_0154, - edam:topic_3336 ; - sc:citation , - "pubmed:31734254" ; - sc:description """Prediction of drug-target interaction based on protein features using undersampling and feature selection techniques with boosting. - -Prediction of Drug-Target Interaction Based on Protein Features using Under-sampling and Feature Selection Techniques with Boosting""" ; - sc:featureList edam:operation_2492, - edam:operation_3092 ; - sc:name "pdti-EssB" ; - sc:url "http://pdtiessb-uestc.com/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "PDV: an integrated proteomics data viewer" ; @@ -354972,7 +372145,7 @@ Prediction of Drug-Target Interaction Based on Protein Features using Under-samp sc:url "http://pdv.zhang-lab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0208, edam:topic_2640, @@ -354994,8 +372167,27 @@ PDXGEM is a statistical bioinformatics and pharmacognomics pipeline to build a m sc:name "PDXGEM" ; sc:url "http://pdxgem.moffitt.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2640, + edam:topic_3170, + edam:topic_3676 ; + sc:citation ; + sc:description "The PDXNet Portal provides a way for researchers to learn about the PDX models, sequencing data (DNA and RNA), and PDX Minimum Information metadata tools generated by the network for public use." ; + sc:featureList edam:operation_0224, + edam:operation_3431, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:name "PDXNet Portal" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://portal.pdxnetwork.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -355015,7 +372207,7 @@ PDXGEM is a statistical bioinformatics and pharmacognomics pipeline to build a m sc:url "http://modpepint.informatik.uni-freiburg.de/PDZPepInt/Input.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0199, @@ -355035,7 +372227,7 @@ It is a JavaScript-based instant assessment tool for high-throughput sequencing biotools:primaryContact "Sangsu Bae" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation "pubmed:21149345" ; @@ -355050,7 +372242,7 @@ It is a JavaScript-based instant assessment tool for high-throughput sequencing sc:url "http://www.comp.nus.edu.sg/%7Ebioinfo/peasm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0199, @@ -355072,22 +372264,22 @@ It is a JavaScript-based instant assessment tool for high-throughput sequencing a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -355103,7 +372295,7 @@ It is a JavaScript-based instant assessment tool for high-throughput sequencing biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -355117,7 +372309,7 @@ It is a JavaScript-based instant assessment tool for high-throughput sequencing sc:url "https://peako.hoffmanlab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -355135,7 +372327,7 @@ It is a JavaScript-based instant assessment tool for high-throughput sequencing sc:url "http://www.peace-tools.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3934 ; sc:citation , @@ -355148,14 +372340,14 @@ It is a JavaScript-based instant assessment tool for high-throughput sequencing a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3168 ; @@ -355172,7 +372364,7 @@ It is a JavaScript-based instant assessment tool for high-throughput sequencing biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3295 ; @@ -355191,7 +372383,7 @@ It is a JavaScript-based instant assessment tool for high-throughput sequencing biotools:primaryContact "Elzo de Wit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3169, @@ -355207,22 +372399,21 @@ It is a JavaScript-based instant assessment tool for high-throughput sequencing a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2530" ; - sc:name "Organism report" ; - sc:sameAs "http://edamontology.org/data_2530" ], + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_3005" ; + sc:name "Experiment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ] ; + sc:additionalType "http://edamontology.org/data_2530" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Organism report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ], + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Mathematical model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0085, edam:topic_3517, @@ -355241,24 +372432,42 @@ It is a JavaScript-based instant assessment tool for high-throughput sequencing sc:url "http://www.bioinformatics.org/peakanalyzer/wiki/" ; biotools:primaryContact "Mali Salmon-Divon" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3172, + edam:topic_3474 ; + sc:citation ; + sc:description "PeakBot is a python package for peak-picking in LC-HRMS profile mode data. It uses local-maxima in the LC-HRMS dataset each of which is then exported as a standarized two-dimensional area (rt x mz), which is used as the input for a machine-learning CNN model that reports whether the local-maxima is a chromatographic peak with left/right isomeric compounds or a signal of the background." ; + sc:featureList edam:operation_3215, + edam:operation_3799, + edam:operation_3803 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "PeakBot" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:url "https://github.com/christophuv/PeakBot_example" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3169 ; sc:citation , @@ -355275,7 +372484,7 @@ It is a JavaScript-based instant assessment tool for high-throughput sequencing biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3179, @@ -355289,8 +372498,33 @@ It is a JavaScript-based instant assessment tool for high-throughput sequencing sc:softwareVersion "1.0" ; sc:url "http://research.stowers-institute.org/gertonlab/peakfinder/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0219, + edam:topic_0593, + edam:topic_3172, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9197906", + "pubmed:35699774" ; + sc:description "A multi-platform digital infrastructure for interoperable metabolite spectral data and metadata management." ; + sc:featureList edam:operation_2422, + edam:operation_3431, + edam:operation_3801, + edam:operation_3803 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "PeakForest" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://peakforest.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3277 ; sc:description "PeakHeights is a powerful tool for measuring signal intensities of selected peaks within ABI electropherograms and exporting the data into spreadsheets for easy manipulation. Large batches of samples can be processed at once." ; @@ -355301,8 +372535,31 @@ It is a JavaScript-based instant assessment tool for high-throughput sequencing sc:softwareVersion "20130408" ; sc:url "http://dna.leeds.ac.uk/peakheights/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3170, + edam:topic_3320, + edam:topic_3512, + edam:topic_3534, + edam:topic_3794 ; + sc:citation , + "pmcid:PMC8796379", + "pubmed:34734974" ; + sc:description "Peakhood is a tool that takes a set of CLIP-seq peak regions, and for each region individually extracts the most likely site context (transcript or genomic)." ; + sc:featureList edam:operation_3215, + edam:operation_3222, + edam:operation_3902 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Peakhood" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BackofenLab/Peakhood" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3473, @@ -355318,7 +372575,7 @@ It is a JavaScript-based instant assessment tool for high-throughput sequencing sc:url "http://compgenomics.utsa.edu/zgroup/PeakLink/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3172, @@ -355336,7 +372593,7 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d sc:url "https://github.com/arseha/peakonly" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0769, @@ -355359,7 +372616,7 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d sc:url "https://phenomecentre.github.io/peakPantheR.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -355376,7 +372633,7 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d biotools:primaryContact "Martin Eisenacher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3169 ; sc:citation "pubmed:21554709" ; @@ -355392,34 +372649,34 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein family report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -355445,22 +372702,22 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -355480,30 +372737,30 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2165" ; - sc:name "Protein ionisation curve" ; - sc:sameAs "http://edamontology.org/data_2165" ], + sc:additionalType "http://edamontology.org/data_2165" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Protein ionisation curve" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -355525,7 +372782,7 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d sc:url "http://www.bioinfor.com/peaks/products/peaks-q-solution.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169 ; sc:citation ; @@ -355540,7 +372797,7 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d "Joel Rozowsky" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -355555,14 +372812,14 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence coordinates" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation ; @@ -355578,7 +372835,7 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d biotools:primaryContact "Anaïs Bardet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0780 ; @@ -355594,7 +372851,7 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d biotools:primaryContact "Inês Chaves" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation , @@ -355609,7 +372866,7 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d sc:url "http://sco.h-its.org/exelixis/web/software/pear/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -355625,7 +372882,7 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d "Shuhua Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0804, @@ -355645,18 +372902,18 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3110" ; - sc:name "Raw microarray data" ; - sc:sameAs "http://edamontology.org/data_3110" ] ; + sc:additionalType "http://edamontology.org/data_3110" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Raw microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ], + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Processed microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -355678,7 +372935,7 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d biotools:primaryContact "Tomi Suomi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622 ; @@ -355692,22 +372949,22 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3621" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -355726,7 +372983,7 @@ peakonly is a novel approach written in Python (v3.5) for peaks (aka features) d biotools:primaryContact "Michael MacCoss" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3168, edam:topic_3474 ; @@ -355741,7 +372998,7 @@ Learning low-dimensional representations (embeddings) of nodes in large graphs i sc:url "https://github.com/krishnanlab/pecanpy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -355761,7 +373018,7 @@ Learning low-dimensional representations (embeddings) of nodes in large graphs i sc:url "https://github.com/KohlbacherLab/PeCaX-docker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0623, @@ -355779,7 +373036,7 @@ Learning low-dimensional representations (embeddings) of nodes in large graphs i biotools:primaryContact "Friedberg I" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -355803,7 +373060,7 @@ Peptide correlation analysis (PeCorA). Detection of Discordant Peptide Quantitie sc:url "https://github.com/jessegmeyerlab/PeCorA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -355825,7 +373082,7 @@ Peptide correlation analysis (PeCorA). Detection of Discordant Peptide Quantitie sc:url "http://www.pancreasexpression.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3053, edam:topic_3382 ; @@ -355844,7 +373101,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene sc:url "https://peddraw.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3056, @@ -355859,7 +373116,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene biotools:primaryContact "Jason Coombs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -355874,7 +373131,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene sc:url "http://watson.hgen.pitt.edu/register/docs/pedcheck.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056, @@ -355890,7 +373147,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene biotools:primaryContact "Tatyana I. Axenovich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056, @@ -355906,7 +373163,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene "Richa Agarwala" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056, @@ -355922,7 +373179,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene biotools:primaryContact "Jing Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2815, @@ -355942,7 +373199,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3055, edam:topic_3056 ; @@ -355955,7 +373212,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene sc:url "https://qgsp.jouy.inra.fr/index.php?option=com_content&view=article&id=53&Itemid=57" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3500 ; @@ -355967,7 +373224,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene sc:url "http://animalgene.umn.edu/pedigraph/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3053 ; sc:description "It is a software that provides for creation, editing and drawing of pedigrees, or family trees, of human or non-human extended family lineages. It was developed originally for use in analyzing population data gathered for biomedical and genetic research. The program can be used to collect and edit biographical data found in the course of family history research, as well as pictures of family members, and display or print those data in hierarchical diagrams suitable for publication." ; @@ -355979,7 +373236,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene sc:url "http://www.pedigree-draw.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -355997,7 +373254,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene biotools:primaryContact "Tim Carver" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0102, @@ -356016,7 +373273,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene sc:url "http://www.ig.zju.edu.cn/PedigreeOnline/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056, @@ -356032,7 +373289,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene biotools:primaryContact "Kirichenko AV." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -356049,7 +373306,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene biotools:primaryContact "Roeland E Voorrips" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -356064,7 +373321,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene biotools:primaryContact "Roeland E. Voorrips" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -356079,7 +373336,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene biotools:primaryContact "E.L.Nicolazzi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -356097,7 +373354,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene biotools:primaryContact "Jonathan Pevsner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -356112,7 +373369,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene biotools:primaryContact "ralph.vanberloo@wur.nl." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0218, edam:topic_0602, @@ -356128,7 +373385,7 @@ ped_draw reads in a ped file (from a specified file or from /dev/stdin) and gene sc:url "https://github.com/leonweber/pedl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, edam:topic_2885, @@ -356151,7 +373408,7 @@ Inheritance Pattern: Autosomal recessive.""" ; sc:url "https://mcg.ustc.edu.cn/bsc/pedminer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, @@ -356169,7 +373426,7 @@ Inheritance Pattern: Autosomal recessive.""" ; biotools:primaryContact "Nadezhda Belonogova" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -356184,7 +373441,7 @@ Inheritance Pattern: Autosomal recessive.""" ; biotools:primaryContact "Jing Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0621, @@ -356207,7 +373464,7 @@ Inheritance Pattern: Autosomal recessive.""" ; biotools:primaryContact "Kevin Garwood (Support)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2269, @@ -356224,7 +373481,7 @@ Inheritance Pattern: Autosomal recessive.""" ; sc:url "http://www.sph.umich.edu/csg/abecasis/PedStats/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3071, @@ -356239,14 +373496,14 @@ Inheritance Pattern: Autosomal recessive.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3510 ; @@ -356272,7 +373529,7 @@ Inheritance Pattern: Autosomal recessive.""" ; sc:url "https://rostlab.org/services/peffect/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -356292,7 +373549,7 @@ Inheritance Pattern: Autosomal recessive.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, edam:topic_0821, @@ -356309,14 +373566,13 @@ Inheritance Pattern: Autosomal recessive.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2909" ; + sc:name "Organism name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2909" ; - sc:name "Organism name" ; - sc:sameAs "http://edamontology.org/data_2909" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2554" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -356343,7 +373599,7 @@ Inheritance Pattern: Autosomal recessive.""" ; sc:url "https://pegit.giehmlab.dk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0769, @@ -356364,26 +373620,23 @@ Inheritance Pattern: Autosomal recessive.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1235" ; - sc:name "Sequence cluster" ; - sc:sameAs "http://edamontology.org/data_1235" ], + sc:additionalType "http://edamontology.org/data_2085" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3917" ; - sc:name "Count matrix" ; - sc:sameAs "http://edamontology.org/data_3917" ], + sc:additionalType "http://edamontology.org/data_1235" ; + sc:name "Sequence cluster" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2085" ; - sc:name "Structure report" ; - sc:sameAs "http://edamontology.org/data_2085" ] ; + sc:additionalType "http://edamontology.org/data_3917" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Count matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_0951" ; + sc:name "Statistical estimate score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -356406,7 +373659,7 @@ Inheritance Pattern: Autosomal recessive.""" ; sc:url "https://pegs.readthedocs.io/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -356429,7 +373682,7 @@ Inheritance Pattern: Autosomal recessive.""" ; biotools:primaryContact "Joan Gilabert" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation "pubmed:19236709" ; @@ -356441,7 +373694,7 @@ Inheritance Pattern: Autosomal recessive.""" ; biotools:primaryContact "Mark Gerstein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0128, @@ -356463,10 +373716,9 @@ Inheritance Pattern: Autosomal recessive.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2099" ; - sc:name "Name" ; - sc:sameAs "http://edamontology.org/data_2099" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2099" ; + sc:name "Name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -356490,7 +373742,7 @@ Inheritance Pattern: Autosomal recessive.""" ; sc:url "http://combio.snu.ac.kr/pen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, edam:topic_3170, @@ -356507,7 +373759,7 @@ Inheritance Pattern: Autosomal recessive.""" ; sc:url "https://github.com/bcm-uga/penda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, @@ -356524,7 +373776,7 @@ Inheritance Pattern: Autosomal recessive.""" ; biotools:primaryContact "Sarath Chandra Janga" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -356539,7 +373791,7 @@ Inheritance Pattern: Autosomal recessive.""" ; sc:url "http://penncnv.openbioinformatics.org/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3063, @@ -356556,7 +373808,7 @@ Inheritance Pattern: Autosomal recessive.""" ; sc:url "https://github.com/WGLab/PennCNV2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -356571,7 +373823,7 @@ Inheritance Pattern: Autosomal recessive.""" ; sc:url "http://sourceforge.net/projects/pennseq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2275, @@ -356585,8 +373837,54 @@ Inheritance Pattern: Autosomal recessive.""" ; sc:url "http://www.moldiscovery.com/login.php" ; biotools:primaryContact "Manuel Pastor" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0654, + edam:topic_3295, + edam:topic_3940 ; + sc:citation , + "pmcid:PMC8976968", + "pubmed:35366792" ; + sc:description "A tool for distance-dependent analysis of Hi-C interactions within and between chromatin compartments." ; + sc:featureList edam:operation_2939, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Pentad" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/magnitov/pentad" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0130, + edam:topic_0154, + edam:topic_3520, + edam:topic_3538, + edam:topic_3542 ; + sc:citation , + "pmcid:PMC8924573", + "pubmed:35294674" ; + sc:description "The PentUnFOLD algorithm as a tool to distinguish the dark and the light sides of the structural instability of proteins." ; + sc:featureList edam:operation_0272, + edam:operation_0468, + edam:operation_0469, + edam:operation_0470, + edam:operation_3904 ; + sc:isAccessibleForFree true ; + sc:name "PentUnFOLD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://3.17.12.213/pent-un-fold" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0621, edam:topic_0769, @@ -356613,14 +373911,14 @@ A PEP is written using a familiar yaml + csv format that can be read by our R an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275 ; sc:citation "pubmed:19433514", @@ -356638,20 +373936,44 @@ A PEP is written using a familiar yaml + csv format that can be read by our R an sc:url "https://mobyle.rpbs.univ-paris-diderot.fr/cgi-bin/portal.py#forms::PEP-FOLD3" ; biotools:primaryContact . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_3322, + edam:topic_3335, + edam:topic_3474 ; + sc:citation , + "pubmed:35358751" ; + sc:description "A web server for prediction of highly specific peptides targeting voltage-gated Na+ channels using machine learning techniques." ; + sc:featureList edam:operation_3454, + edam:operation_3631 ; + sc:isAccessibleForFree true ; + sc:name "PEP-PRED Na+" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://peppredna.herokuapp.com" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1461" ; - sc:name "Protein-ligand complex" ; - sc:sameAs "http://edamontology.org/data_1461" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1461" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein-ligand complex" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3534 ; @@ -356668,8 +373990,62 @@ A PEP is written using a familiar yaml + csv format that can be read by our R an sc:url "https://mobyle.rpbs.univ-paris-diderot.fr/cgi-bin/portal.py#forms::PEP-SiteFinder" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0128, + edam:topic_0154, + edam:topic_2275, + edam:topic_3299 ; + sc:citation , + "pubmed:35598299" ; + sc:description "Evolution Guided Design of Inhibitory Peptides" ; + sc:featureList edam:operation_0482, + edam:operation_2492, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "Pep-Whisperer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinfo3d.cs.tau.ac.il/PepWhisperer/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation ; + sc:description "Peptide Secondary Structure Prediction server that allows users to predict regular secondary structure in their peptides." ; + sc:featureList edam:operation_2945 ; + sc:name "pep2d" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/pep2d/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0154, + edam:topic_0634, + edam:topic_3520 ; + sc:citation , + "pubmed:35924633" ; + sc:description "A standalone tool to analyse proteolytic cleavages by proteases from gel-based mass spectrometry data." ; + sc:featureList edam:operation_0372 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Pep2Graph" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "http://www.mathivananlab.org/Pep2Graph" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Suite" ; sc:applicationSubCategory edam:topic_0121, @@ -356694,22 +374070,22 @@ A PEP is written using a familiar yaml + csv format that can be read by our R an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0942" ; - sc:name "2D PAGE image" ; - sc:sameAs "http://edamontology.org/data_0942" ], + sc:additionalType "http://edamontology.org/data_0942" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "2D PAGE image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -356725,7 +374101,7 @@ A PEP is written using a familiar yaml + csv format that can be read by our R an sc:url "http://tools.proteomecenter.org/Pep3D.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0602, @@ -356742,7 +374118,7 @@ pepFunk allows you to complete a peptide-focused functional enrichment workflow sc:url "https://shiny.imetalab.ca/pepFunk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -356753,7 +374129,7 @@ pepFunk allows you to complete a peptide-focused functional enrichment workflow biotools:primaryContact "Nathan J. Edwards" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0769 ; @@ -356775,12 +374151,38 @@ PEP, or Portable Encapsulated Projects, is a community effort to make sample met sc:name "PEPATAC" ; sc:url "https://pepatac.databio.org" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_3336, + edam:topic_3474 ; + sc:citation , + "pubmed:35604077" ; + sc:description "Predicting protein-peptide binding residues via interpretable deep learning." ; + sc:featureList edam:operation_0272, + edam:operation_0482, + edam:operation_3092, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PepBCL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://server.wei-group.net/PepBCL/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -356801,10 +374203,10 @@ PEP, or Portable Encapsulated Projects, is a community effort to make sample met a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -356824,7 +374226,7 @@ PEP, or Portable Encapsulated Projects, is a community effort to make sample met sc:url "http://bioware.ucd.ie/~compass/biowareweb/Server_pages/pepbindpred.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -356840,7 +374242,7 @@ PEP, or Portable Encapsulated Projects, is a community effort to make sample met sc:url "http://www.imtech.res.in/bvs/pepbuild/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0121, edam:topic_0123, @@ -356861,14 +374263,12 @@ A tool for generating all the possible combinations that a particular peptide se a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation , @@ -356899,18 +374299,15 @@ A tool for generating all the possible combinations that a particular peptide se a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1505" ; - sc:name "Amino acid index (molecular weight)" ; - sc:sameAs "http://edamontology.org/data_1505" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_1505" ; + sc:name "Amino acid index (molecular weight)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3510 ; sc:citation , @@ -356940,7 +374337,7 @@ A tool for generating all the possible combinations that a particular peptide se sc:url "http://emboss.open-bio.org/rel/rel6/apps/pepdigest.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -356957,7 +374354,7 @@ A tool for generating all the possible combinations that a particular peptide se "Yunping Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -356975,7 +374372,7 @@ A tool for generating all the possible combinations that a particular peptide se sc:url "http://proteomics.fiocruz.br/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -356993,7 +374390,7 @@ A tool for generating all the possible combinations that a particular peptide se sc:url "https://github.com/WLYLab/PepFormer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0121, @@ -357016,26 +374413,21 @@ A tool for generating all the possible combinations that a particular peptide se a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_1502" ; + sc:name "Amino acid index (chemical classes)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1502" ; - sc:name "Amino acid index (chemical classes)" ; - sc:sameAs "http://edamontology.org/data_1502" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1506" ; - sc:name "Amino acid index (hydropathy)" ; - sc:sameAs "http://edamontology.org/data_1506" ] ; + sc:additionalType "http://edamontology.org/data_1506" ; + sc:name "Amino acid index (hydropathy)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1522" ; - sc:name "Protein sequence hydropathy plot" ; - sc:sameAs "http://edamontology.org/data_1522" ], + sc:additionalType "http://edamontology.org/data_0897" ; + sc:name "Protein property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0897" ; - sc:name "Protein property" ; - sc:sameAs "http://edamontology.org/data_0897" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1522" ; + sc:name "Protein sequence hydropathy plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0123 ; sc:citation , @@ -357066,14 +374458,12 @@ A tool for generating all the possible combinations that a particular peptide se a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0897" ; - sc:name "Protein property" ; - sc:sameAs "http://edamontology.org/data_0897" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0897" ; + sc:name "Protein property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123 ; sc:author "EMBOSS", @@ -357093,7 +374483,7 @@ A tool for generating all the possible combinations that a particular peptide se biotools:primaryContact "Web Production" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053, @@ -357110,8 +374500,24 @@ A tool for generating all the possible combinations that a particular peptide se biotools:primaryContact "Patrick X. Zhao", "Shizhong Xu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC5098197", + "pubmed:27819351" ; + sc:description "PEPlife is a manually curated database of experimentally validated therapeutic peptides and their half-lives." ; + sc:featureList edam:operation_2945 ; + sc:name "peplife" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/peplife/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0154, @@ -357129,7 +374535,7 @@ A tool for generating all the possible combinations that a particular peptide se sc:url "http://informatics.nenu.edu.cn/PepMapper/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2258 ; sc:citation ; @@ -357147,14 +374553,12 @@ A tool for generating all the possible combinations that a particular peptide se a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2163" ; - sc:name "Helical net" ; - sc:sameAs "http://edamontology.org/data_2163" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2163" ; + sc:name "Helical net" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0123 ; sc:citation , @@ -357186,14 +374590,14 @@ A tool for generating all the possible combinations that a particular peptide se a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -357210,7 +374614,7 @@ A tool for generating all the possible combinations that a particular peptide se sc:url "http://proteomics.ucsd.edu/ProteoSAFe/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0196, edam:topic_0621, @@ -357236,7 +374640,7 @@ This file includes all pan-genes predicted by PEPPAN in GFF3 format. Intact CDSs sc:url "https://github.com/zheminzhou/PEPPAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -357252,7 +374656,7 @@ This file includes all pan-genes predicted by PEPPAN in GFF3 format. Intact CDSs sc:url "http://www.issb.genopole.fr/Technology/pepper-cytoscape-app" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -357271,8 +374675,35 @@ This file includes all pan-genes predicted by PEPPAN in GFF3 format. Intact CDSs sc:url "https://github.com/kishwarshafin/pepper" ; biotools:primaryContact "Kishwar Shafin" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0128, + edam:topic_0769, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8897833", + "pubmed:35662463" ; + sc:description "Whole-proteome Protein-protein Interaction Prediction through Structure and Sequence Similarity, Functional Association, and Machine Learning." ; + sc:featureList edam:operation_2464, + edam:operation_2492, + edam:operation_3094 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "PEPPI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://zhanggroup.org/PEPPI/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, edam:topic_3170, @@ -357292,14 +374723,13 @@ PEPPRO is a pipeline for nascent RNA sequencing data. It can process PRO-seq, GR a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2872" ; - sc:name "ID list" ; - sc:sameAs "http://edamontology.org/data_2872" ] ; + sc:additionalType "http://edamontology.org/data_2872" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "ID list" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2042" ; - sc:name "Evidence" ; - sc:sameAs "http://edamontology.org/data_2042" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2042" ; + sc:name "Evidence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3308 ; @@ -357321,26 +374751,26 @@ PEPPRO is a pipeline for nascent RNA sequencing data. It can process PRO-seq, GR a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ], + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -357364,14 +374794,14 @@ PEPPRO is a pipeline for nascent RNA sequencing data. It can process PRO-seq, GR sc:url "http://www.geneffects.com/peppy/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "peppy is the official python package for reading Portable Encapsulated Projects or PEPs in python." ; sc:name "peppy" ; sc:softwareVersion "0.31.1" ; sc:url "http://peppy.databio.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3125, edam:topic_3169, @@ -357388,14 +374818,37 @@ PEPPRO is a pipeline for nascent RNA sequencing data. It can process PRO-seq, GR biotools:primaryContact "Maureen A. Sartor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "pepr is the official R package for reading Portable Encapsulated Projects or PEPs in R." ; sc:name "pepr" ; sc:softwareVersion "0.4.0" ; sc:url "http://code.databio.org/pepr/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0154, + edam:topic_0209, + edam:topic_2258, + edam:topic_3168 ; + sc:citation , + "pubmed:35192366" ; + sc:description "Peptide Sequence Alignment and Visualization Tools to Enable Lead Optimization." ; + sc:featureList edam:operation_0292, + edam:operation_0564, + edam:operation_3096, + edam:operation_3644 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "PepSeA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Merck/PepSeA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154 ; @@ -357412,7 +374865,7 @@ PEPPRO is a pipeline for nascent RNA sequencing data. It can process PRO-seq, GR biotools:primaryContact "George M. Spyrou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0166, @@ -357431,14 +374884,12 @@ A benchmark consisting of 185 protein-peptide complexes with peptide length rang a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2992" ; - sc:name "Protein structure image" ; - sc:sameAs "http://edamontology.org/data_2992" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2992" ; + sc:name "Protein structure image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121 ; @@ -357456,10 +374907,10 @@ A benchmark consisting of 185 protein-peptide complexes with peptide length rang a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -357481,7 +374932,7 @@ A benchmark consisting of 185 protein-peptide complexes with peptide length rang sc:url "https://github.com/pdxgx/pepsickle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -357504,7 +374955,7 @@ A benchmark consisting of 185 protein-peptide complexes with peptide length rang biotools:primaryContact "PepSite Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -357518,7 +374969,7 @@ A benchmark consisting of 185 protein-peptide complexes with peptide length rang sc:url "https://github.com/buotex/BICEPS/tree/master/libs/pepsplice" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0078, @@ -357539,22 +374990,18 @@ A benchmark consisting of 185 protein-peptide complexes with peptide length rang a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1505" ; - sc:name "Amino acid index (molecular weight)" ; - sc:sameAs "http://edamontology.org/data_1505" ], + sc:additionalType "http://edamontology.org/data_1502" ; + sc:name "Amino acid index (chemical classes)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1502" ; - sc:name "Amino acid index (chemical classes)" ; - sc:sameAs "http://edamontology.org/data_1502" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_1505" ; + sc:name "Amino acid index (molecular weight)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0897" ; - sc:name "Protein property" ; - sc:sameAs "http://edamontology.org/data_0897" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0897" ; + sc:name "Protein property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0123 ; sc:citation , @@ -357585,14 +375032,12 @@ A benchmark consisting of 185 protein-peptide complexes with peptide length rang a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0897" ; - sc:name "Protein property" ; - sc:sameAs "http://edamontology.org/data_0897" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0897" ; + sc:name "Protein property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123 ; sc:author "EMBOSS", @@ -357612,7 +375057,7 @@ A benchmark consisting of 185 protein-peptide complexes with peptide length rang biotools:primaryContact "Web Production" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -357631,10 +375076,37 @@ A benchmark consisting of 185 protein-peptide complexes with peptide length rang "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/pepstr/" . + sc:url "http://webs.iiitd.edu.in/raghava/pepstr/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "This server allows you to predict the 3D structure of peptides from its amino acid sequence." ; + sc:featureList edam:operation_2945 ; + sc:name "pepstr2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/pepstr2/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation ; + sc:description "The PEPstrMOD server predicts the tertiary structure of small peptides with sequence length varying between 7 to 25 residues." ; + sc:featureList edam:operation_2945 ; + sc:name "pepstrmod" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/pepstrmod/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0122, @@ -357651,7 +375123,7 @@ A benchmark consisting of 185 protein-peptide complexes with peptide length rang biotools:primaryContact "ExPASy helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -357666,14 +375138,13 @@ A benchmark consisting of 185 protein-peptide complexes with peptide length rang a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -357689,29 +375160,8 @@ A benchmark consisting of 185 protein-peptide complexes with peptide length rang sc:url "http://compomics.github.io/projects/peptide-shaker.html" ; biotools:primaryContact "Lennart Martens" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_3047, - edam:topic_3053, - edam:topic_3315, - edam:topic_3336 ; - sc:citation , - "pubmed:31868369" ; - sc:description """Populating Chemical Space with Peptides using a Genetic Algorithm. - -Peptide Design Genetic Algorithm (PDGA). - -run python run_PDGA.py population-size mutation-rate generation-gap query similarity-threshold topology. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'faerun', 'PDGA'""" ; - sc:featureList edam:operation_0224, - edam:operation_0394, - edam:operation_2939 ; - sc:name "peptide design genetic algorithm" ; - sc:url "https://github.com/reymond-group/PeptideDesignGA" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157 ; @@ -357729,54 +375179,48 @@ run python run_PDGA.py population-size mutation-rate generation-gap query simila a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2384" ; - sc:name "IPI protein ID" ; - sc:sameAs "http://edamontology.org/data_2384" ], + sc:additionalType "http://edamontology.org/data_2398" ; + sc:name "Ensembl protein ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2398" ; - sc:name "Ensembl protein ID" ; - sc:sameAs "http://edamontology.org/data_2398" ], + sc:additionalType "http://edamontology.org/data_2398" ; + sc:name "Ensembl protein ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ], + sc:additionalType "http://edamontology.org/data_0989" ; + sc:name "Protein identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2398" ; - sc:name "Ensembl protein ID" ; - sc:sameAs "http://edamontology.org/data_2398" ], + sc:additionalType "http://edamontology.org/data_2398" ; + sc:name "Ensembl protein ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2398" ; - sc:name "Ensembl protein ID" ; - sc:sameAs "http://edamontology.org/data_2398" ], + sc:additionalType "http://edamontology.org/data_2398" ; + sc:name "Ensembl protein ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2398" ; - sc:name "Ensembl protein ID" ; - sc:sameAs "http://edamontology.org/data_2398" ] ; + sc:additionalType "http://edamontology.org/data_2384" ; + sc:name "IPI protein ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154 ; @@ -357792,26 +375236,26 @@ run python run_PDGA.py population-size mutation-rate generation-gap query simila a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2291" ; - sc:name "UniProt ID" ; - sc:sameAs "http://edamontology.org/data_2291" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1056" ; - sc:name "Database name" ; - sc:sameAs "http://edamontology.org/data_1056" ], + sc:additionalType "http://edamontology.org/data_1056" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_2291" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "UniProt ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1238" ; - sc:name "Proteolytic digest" ; - sc:sameAs "http://edamontology.org/data_1238" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1238" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Proteolytic digest" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0123, @@ -357823,7 +375267,7 @@ run python run_PDGA.py population-size mutation-rate generation-gap query simila sc:url "http://www.expasy.ch/tools/peptidecutter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -357840,7 +375284,7 @@ run python run_PDGA.py population-size mutation-rate generation-gap query simila biotools:primaryContact "Denis C. Shields" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -357864,14 +375308,14 @@ run python run_PDGA.py population-size mutation-rate generation-gap query simila a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -357889,7 +375333,7 @@ run python run_PDGA.py population-size mutation-rate generation-gap query simila sc:url "http://peptideprophet.sourceforge.net/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154 ; @@ -357905,7 +375349,7 @@ run python run_PDGA.py population-size mutation-rate generation-gap query simila biotools:primaryContact "Weichuan Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -357922,34 +375366,34 @@ run python run_PDGA.py population-size mutation-rate generation-gap query simila a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3247" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2992" ; - sc:name "Protein structure image" ; - sc:sameAs "http://edamontology.org/data_2992" ], + sc:additionalType "http://edamontology.org/data_2992" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Protein structure image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3754" ; - sc:name "GO-term enrichment data" ; - sc:sameAs "http://edamontology.org/data_3754" ], + sc:additionalType "http://edamontology.org/data_2969" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Sequence image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2969" ; - sc:name "Sequence image" ; - sc:sameAs "http://edamontology.org/data_2969" ], + sc:additionalType "http://edamontology.org/data_3754" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "GO-term enrichment data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -357974,8 +375418,32 @@ run python run_PDGA.py population-size mutation-rate generation-gap query simila sc:url "http://compomics.github.io/projects/peptide-shaker.html" ; biotools:primaryContact "Dominik Kopczynsk" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web service" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0154, + edam:topic_0601, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8650087", + "pubmed:34709836" ; + sc:description "A User-Friendly Web-Based Framework for the Identification of Mass Spectrometry-Based Proteomics Data." ; + sc:featureList edam:operation_0337, + edam:operation_3644, + edam:operation_3767 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "PeptideShaker Online" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/barsnes-group/peptide-shaker-online" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154 ; @@ -357993,7 +375461,7 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str sc:url "http://peptidewitch.online" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -358011,7 +375479,7 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str sc:url "https://peptimetric.herokuapp.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0196, @@ -358035,14 +375503,12 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; @@ -358060,7 +375526,7 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str sc:url "https://github.com/compomics/peptizer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2830 ; @@ -358079,14 +375545,12 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2162" ; - sc:name "Helical wheel" ; - sc:sameAs "http://edamontology.org/data_2162" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2162" ; + sc:name "Helical wheel" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation , @@ -358117,18 +375581,15 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1501" ; - sc:name "Amino acid index" ; - sc:sameAs "http://edamontology.org/data_1501" ] ; + sc:additionalType "http://edamontology.org/data_1501" ; + sc:name "Amino acid index" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1522" ; - sc:name "Protein sequence hydropathy plot" ; - sc:sameAs "http://edamontology.org/data_1522" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1522" ; + sc:name "Protein sequence hydropathy plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0123 ; sc:citation , @@ -358159,14 +375620,12 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1522" ; - sc:name "Protein sequence hydropathy plot" ; - sc:sameAs "http://edamontology.org/data_1522" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1522" ; + sc:name "Protein sequence hydropathy plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123 ; sc:author "EMBOSS", @@ -358187,18 +375646,15 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_1501" ; + sc:name "Amino acid index" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1501" ; - sc:name "Amino acid index" ; - sc:sameAs "http://edamontology.org/data_1501" ] ; + sc:additionalType "http://edamontology.org/data_1384" ; + sc:name "Sequence alignment (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1522" ; - sc:name "Protein sequence hydropathy plot" ; - sc:sameAs "http://edamontology.org/data_1522" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1522" ; + sc:name "Protein sequence hydropathy plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0123 ; sc:citation , @@ -358228,7 +375684,7 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str sc:url "http://emboss.open-bio.org/rel/rel6/apps/pepwindowall.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -358245,14 +375701,14 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -358269,7 +375725,7 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str sc:url "http://www.ms-utils.org/pepXML2Excel.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -358288,7 +375744,7 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str biotools:primaryContact "Xiaojing Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308 ; @@ -358304,7 +375760,7 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str biotools:primaryContact "Authors" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_0080, @@ -358325,14 +375781,14 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -358353,7 +375809,7 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str sc:url "http://noble.gs.washington.edu/proj/percolator/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3068, @@ -358374,7 +375830,7 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str biotools:primaryContact "Raghotham Murthy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3518 ; sc:description "PerfectMatch is a tool to quantify Affymetric microarrays. Quantifications are based on the “Position Dependent Nearest Neighbor” model, which makes explicit use of probe sequence information." ; @@ -358386,7 +375842,7 @@ PeptideWitch is designed to take raw spectral counting data and produce high-str sc:url "http://bioinformatics.mdanderson.org/main/PerfectMatch:Overview" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, edam:topic_0654 ; @@ -358404,7 +375860,7 @@ The package reconstructs perfect phylogenies underlying a sample of DNA sequence sc:url "https://github.com/cbhagya/perfectphyloR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0196, @@ -358420,10 +375876,10 @@ The package reconstructs perfect phylogenies underlying a sample of DNA sequence a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3554" ; + sc:name "Processed microarray data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053 ; @@ -358444,7 +375900,7 @@ The package reconstructs perfect phylogenies underlying a sample of DNA sequence biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0621, @@ -358464,7 +375920,7 @@ Welcome to Pergola’s documentation! — Pergola documentation.""" ; sc:url "http://cbcrg.github.io/pergola/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0659, @@ -358485,7 +375941,7 @@ All code used in the RNAseq and MPRA analysis for "Enhancers in the Peril lincRN sc:url "https://github.com/agroff11/PerilPaperAnalysis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0654 ; sc:description "Periodic power spectrum with applications in detection of latent periodicities in DNA sequences" ; @@ -358499,7 +375955,7 @@ All code used in the RNAseq and MPRA analysis for "Enhancers in the Peril lincRN biotools:primaryContact "Changchuan Yin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0196, @@ -358525,7 +375981,7 @@ This R package helps the user identify k-mers (e.g. di- or tri-nucleotides) pres sc:url "https://js2264.github.io/periodicDNA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -358541,7 +375997,7 @@ This R package helps the user identify k-mers (e.g. di- or tri-nucleotides) pres biotools:primaryContact "Dr.D.K. Ravish" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2229, @@ -358557,8 +376013,30 @@ This R package helps the user identify k-mers (e.g. di- or tri-nucleotides) pres sc:softwareHelp ; sc:url "http://lightning.med.monash.edu/periscope/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0736, + edam:topic_0749, + edam:topic_3474, + edam:topic_3510 ; + sc:citation , + "pmcid:PMC9201004", + "pubmed:35765650" ; + sc:description "PERISCOPE-Opt predicts the optimal fermentation conditions and expression yields of recombinant protein in the periplasm of Escherichia coli (E. coli) based on the user-specified amino acid sequence of the protein and an N-terminal signal peptide." ; + sc:featureList edam:operation_0409, + edam:operation_0418, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:name "PERISCOPE-Opt" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://periscope-opt.erc.monash.edu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3360, edam:topic_3452 ; @@ -358571,21 +376049,8 @@ This R package helps the user identify k-mers (e.g. di- or tri-nucleotides) pres sc:name "peritumoral regions" ; sc:url "https://github.com/TunaliIlke/peritumoral_regions/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3360, - edam:topic_3452 ; - sc:citation , - "pmcid:PMC6842054", - "pubmed:31494946" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'peritumoral', 'radiomic', 'Peritumoral radiomic', 'CT radiomic' | Stability and reproducibility of computed tomography radiomic features extracted from peritumoral regions of lung cancer lesions | Identifying peritumoral regions of lung lesions" ; - sc:featureList edam:operation_3435, - edam:operation_3798 ; - sc:name "peritumoral region-of-interests" ; - sc:url "https://github.com/TunaliIlke/peritumoral_regions/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:19675096" ; @@ -358598,7 +376063,7 @@ This R package helps the user identify k-mers (e.g. di- or tri-nucleotides) pres biotools:primaryContact "Yangho Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0634, @@ -358617,7 +376082,7 @@ This R package helps the user identify k-mers (e.g. di- or tri-nucleotides) pres biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0780, @@ -358635,14 +376100,13 @@ This R package helps the user identify k-mers (e.g. di- or tri-nucleotides) pres a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2792" ; - sc:name "Protein ID (PeroxiBase)" ; - sc:sameAs "http://edamontology.org/data_2792" ] ; + sc:additionalType "http://edamontology.org/data_2792" ; + sc:name "Protein ID (PeroxiBase)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623 ; sc:citation , @@ -358658,7 +376122,7 @@ This R package helps the user identify k-mers (e.g. di- or tri-nucleotides) pres sc:url "http://peroxibase.toulouse.inra.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -358685,7 +376149,7 @@ This R package helps the user identify k-mers (e.g. di- or tri-nucleotides) pres "Aurora Pujol" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -358699,8 +376163,71 @@ This R package helps the user identify k-mers (e.g. di- or tri-nucleotides) pres sc:url "http://www.biochem.mpg.de/en/rg/cox" ; biotools:primaryContact "Jürgen Cox" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0602, + edam:topic_2640 ; + sc:citation ; + sc:description "A Method for the Identification and Prioritization of Personalized Cancer Drivers." ; + sc:featureList edam:operation_2422, + edam:operation_3435, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PersonaDrive" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/abu-compbio/PersonaDrive" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workflow" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0091, + edam:topic_0092, + edam:topic_0622, + edam:topic_2640, + edam:topic_3473, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC5946881", + "pubmed:29272339" ; + sc:contributor ; + sc:description "The Personal Cancer Genome Reporter (PCGR) is a stand-alone software package for translation of individual tumor genomes for precision cancer medicine. PCGR interprets primarily somatic SNVs/InDels and copy number aberrations. The software extends basic gene and variant annotations from the Ensembl's Variant Effect Predictor (VEP) with oncology-relevant, up-to-date annotations, and produces interactive HTML reports intended for clinical interpretation" ; + sc:featureList edam:operation_0331, + edam:operation_2422, + edam:operation_3225, + edam:operation_3226, + edam:operation_3672 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Personal Cancer Genome Reporter (PCGR)" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareHelp , + , + , + , + , + ; + sc:softwareVersion "1.0.2" ; + sc:url "https://github.com/sigven/pcgr" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -358723,7 +376250,7 @@ This R package helps the user identify k-mers (e.g. di- or tri-nucleotides) pres biotools:primaryContact "Yadong Wang*" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3384, edam:topic_3444 ; @@ -358740,8 +376267,33 @@ Personode is a user-friendly, open-source MatLab toolbox that semi-automatically sc:name "Personode" ; sc:url "http://www.nitrc.org/projects/personode" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0625, + edam:topic_2885, + edam:topic_3175, + edam:topic_3673 ; + sc:citation , + , + "pmcid:PMC9380391", + "pubmed:35974382" ; + sc:description "perSVade runs structural variation (SV), small variant (SNPs and IN/DELs) and read depth-based Copy Number Variation (CNV) calling and annotation for WGS datasets." ; + sc:featureList edam:operation_3192, + edam:operation_3216, + edam:operation_3227, + edam:operation_3228 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "perSVade" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Gabaldonlab/perSVade" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053 ; sc:description "perturbatr does stage-wise analysis of large-scale genetic perturbation screens for integrated data sets consisting of multiple screens. For multiple integrated perturbation screens a hierarchical model that considers the variance between different biological conditions is fitted. The resulting list of gene effects is then further extended using a network propagation algorithm to correct for false negatives." ; @@ -358758,7 +376310,7 @@ Personode is a user-friendly, open-source MatLab toolbox that semi-automatically biotools:primaryContact "Simon Dirmeier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0625, @@ -358783,7 +376335,7 @@ Depending on the MacOSX version and default compiler, the location of some of th sc:url "https://github.com/SeyoungKimLab/PerturbNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3068, edam:topic_3335, @@ -358799,7 +376351,7 @@ Peryton constitutes a novel resource of experimentally supported microbe-disease sc:url "https://dianalab.e-ce.uth.gr/peryton/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -358814,7 +376366,7 @@ Peryton constitutes a novel resource of experimentally supported microbe-disease sc:url "http://www.eu-nomen.eu/portal/webservices.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0769, edam:topic_3489 ; @@ -358828,7 +376380,7 @@ PESKAAS: fisheries automated analytics system.""" ; sc:url "https://worldfish.shinyapps.io/PeskAAS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0659, edam:topic_3474, @@ -358845,7 +376397,7 @@ PESKAAS: fisheries automated analytics system.""" ; sc:url "https://github.com/bioinfomaticsCSU/PESM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128 ; @@ -358866,7 +376418,7 @@ PESKAAS: fisheries automated analytics system.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259 ; sc:citation ; @@ -358881,7 +376433,7 @@ PESKAAS: fisheries automated analytics system.""" ; sc:url "http://www.pesthomepage.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3375, edam:topic_3409, edam:topic_3421 ; @@ -358896,7 +376448,7 @@ PESKAAS: fisheries automated analytics system.""" ; sc:url "https://pesuca.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3168, @@ -358912,7 +376464,7 @@ PESKAAS: fisheries automated analytics system.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3384, @@ -358932,7 +376484,7 @@ PESKAAS: fisheries automated analytics system.""" ; sc:url "https://openneuro.org/search/modality/pet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -358945,7 +376497,7 @@ PESKAAS: fisheries automated analytics system.""" ; sc:url "http://www.gis.a-star.edu.sg/PET_Tool/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3360, edam:topic_3372 ; @@ -358961,7 +376513,7 @@ PETAL software is written in the Python 3 programming language. It contains a se sc:url "https://github.com/Pex2892/PETAL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -358978,7 +376530,7 @@ PETAL software is written in the Python 3 programming language. It contains a se biotools:primaryContact "Juli Petereit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -359000,7 +376552,7 @@ PETAL software is written in the Python 3 programming language. It contains a se biotools:primaryContact "Center for non-coding RNA in Technology and Health" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -359013,7 +376565,7 @@ PETAL software is written in the Python 3 programming language. It contains a se sc:url "http://microbiology.se/software/petkit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, edam:topic_0602, @@ -359027,7 +376579,7 @@ PETAL software is written in the Python 3 programming language. It contains a se sc:url "https://github.com/ivanovaos/PetriNetExhaustiveSimulator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -359042,7 +376594,7 @@ PETAL software is written in the Python 3 programming language. It contains a se biotools:primaryContact "Qianmu Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -359064,7 +376616,7 @@ PETAL software is written in the Python 3 programming language. It contains a se biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0769, edam:topic_3293 ; @@ -359082,7 +376634,7 @@ PEWO compiles a set of workflows dedicated to the evaluation of phylogenetic pla sc:url "https://github.com/phylo42/PEWO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3293 ; @@ -359098,8 +376650,30 @@ PEWO compiles a set of workflows dedicated to the evaluation of phylogenetic pla sc:url "https://github.com/willpearse/pez" ; biotools:primaryContact "Pearse WD" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0128, + edam:topic_0601, + edam:topic_3068, + edam:topic_3474 ; + sc:citation , + "pubmed:35753700" ; + sc:description "A machine learning-based phosphorylation sites prediction tool for Plasmodium proteins." ; + sc:featureList edam:operation_0417, + edam:operation_2492, + edam:operation_3904 ; + sc:isAccessibleForFree true ; + sc:name "Pf-Phospho" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.nii.ac.in/pfphospho.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Scripts for sequence file handling." ; @@ -359108,54 +376682,47 @@ PEWO compiles a set of workflows dedicated to the evaluation of phylogenetic pla a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1138" ; - sc:name "Pfam accession number" ; - sc:sameAs "http://edamontology.org/data_1138" ], + sc:additionalType "http://edamontology.org/data_1138" ; + sc:name "Pfam accession number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2758" ; - sc:name "Pfam clan ID" ; - sc:sameAs "http://edamontology.org/data_2758" ], + sc:additionalType "http://edamontology.org/data_1179" ; + sc:name "NCBI taxonomy ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1179" ; - sc:name "NCBI taxonomy ID" ; - sc:sameAs "http://edamontology.org/data_1179" ], + sc:additionalType "http://edamontology.org/data_1138" ; + sc:name "Pfam accession number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1138" ; - sc:name "Pfam accession number" ; - sc:sameAs "http://edamontology.org/data_1138" ], + sc:additionalType "http://edamontology.org/data_1096" ; + sc:name "Sequence accession (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1096" ; - sc:name "Sequence accession (protein)" ; - sc:sameAs "http://edamontology.org/data_1096" ] ; + sc:additionalType "http://edamontology.org/data_2758" ; + sc:name "Pfam clan ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ], + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein family report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ], + sc:additionalType "http://edamontology.org/data_0858" ; + sc:name "Sequence signature matches" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ], + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein family report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ], + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein family report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0858" ; - sc:name "Sequence signature matches" ; - sc:sameAs "http://edamontology.org/data_0858" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein family report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -359165,7 +376732,15 @@ PEWO compiles a set of workflows dedicated to the evaluation of phylogenetic pla edam:topic_0160, edam:topic_0623, edam:topic_0736 ; - sc:citation , + sc:citation , + , + , + "pmcid:PMC3965110", + "pmcid:PMC4702930", + "pmcid:PMC7779014", + "pubmed:24288371", + "pubmed:26673716", + "pubmed:33125078", "pubmed:9223186" ; sc:description "Database which contains information about protein domains and families. For each entry a protein sequence alignment and a Hidden Markov Model is stored." ; sc:featureList edam:operation_0224, @@ -359184,7 +376759,7 @@ PEWO compiles a set of workflows dedicated to the evaluation of phylogenetic pla "Pfam central helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0623, @@ -359201,8 +376776,27 @@ PEWO compiles a set of workflows dedicated to the evaluation of phylogenetic pla sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/webservices/services/pfa/pfamscan_rest" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_2840, + edam:topic_3068, + edam:topic_3071, + edam:topic_3500 ; + sc:citation , + "pubmed:35908389" ; + sc:description "A systematic evidence map of health studies on 29 per- and polyfluoroalkyl substances." ; + sc:featureList edam:operation_0305, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:name "PFAS-Tox Database" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://pfastoxdatabase.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_3170, @@ -359221,7 +376815,7 @@ we present a novel method, namely prior fused boosting network inference method sc:url "https://github.com/ddche/PFBNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3316 ; sc:citation ; @@ -359232,8 +376826,25 @@ we present a novel method, namely prior fused boosting network inference method sc:softwareHelp ; sc:url "http://chemistry.st-andrews.ac.uk/staff/jbom/group/PFClust.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application", + "Web service" ; + sc:applicationSubCategory edam:topic_0605, + edam:topic_3307 ; + sc:description "Pfeature is a web server for computing wide range of protein and peptides features from their amino acid sequence. Following are main menus for computing features; i) Composition-based features, ii) Binary profile of sequences, iii) evolutionary information based features, iv) structural descriptors, v) pattern based descriptors, and vi) model building, for a group of protein/peptide sequences. Additionally, users will also be able to generate these features for sub-parts of protein/peptide sequences. Pfeature be helpful to annotate structure, function and therapeutic properties of proteins/peptides." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Pfeature" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/pfeature/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation , @@ -359248,7 +376859,7 @@ we present a novel method, namely prior fused boosting network inference method sc:url "http://bioinfadmin.cs.ucl.ac.uk/downloads/pfilt/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -359267,7 +376878,7 @@ we present a novel method, namely prior fused boosting network inference method sc:url "http://pfind.ict.ac.cn/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -359289,7 +376900,7 @@ we present a novel method, namely prior fused boosting network inference method biotools:primaryContact "David Hsu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3324, @@ -359302,11 +376913,31 @@ we present a novel method, namely prior fused boosting network inference method "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/pfmpred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/pfmpred/" ; biotools:primaryContact "Dr.G.P.S.Raghava" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0623, + edam:topic_1775, + edam:topic_3474 ; + sc:citation , + "pubmed:35366467" ; + sc:description "A novel strategy enabling multi-class and multi-label protein function annotation by integrating diverse deep learning methods." ; + sc:featureList edam:operation_0477, + edam:operation_1777 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PFmulDL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/idrblab/PFmulDL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099 ; @@ -359324,7 +376955,7 @@ we present a novel method, namely prior fused boosting network inference method biotools:primaryContact "Zsuzsanna Sukosd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0166, edam:topic_1317, @@ -359341,7 +376972,7 @@ we present a novel method, namely prior fused boosting network inference method biotools:primaryContact "Inbal Paz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0736, edam:topic_1317, @@ -359358,7 +376989,7 @@ we present a novel method, namely prior fused boosting network inference method biotools:primaryContact "Hong-Bin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -359375,7 +377006,7 @@ we present a novel method, namely prior fused boosting network inference method biotools:primaryContact "Daisuke Kihara" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3473 ; sc:citation ; @@ -359392,7 +377023,7 @@ we present a novel method, namely prior fused boosting network inference method sc:url "http://www.csbio.sjtu.edu.cn/bioinf/PFP-Pred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0659, edam:topic_3382 ; @@ -359414,7 +377045,7 @@ Note that this process will setup the pfredservice environment and install all n sc:url "https://github.com/pfred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -359428,7 +377059,7 @@ Note that this process will setup the pfredservice environment and install all n sc:url "http://web.expasy.org/pftools/#pfsearchV3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623, edam:topic_2269 ; @@ -359443,7 +377074,7 @@ Note that this process will setup the pfredservice environment and install all n sc:url "http://www.biocomp.icb.ufmg.br/biocomp/?page_id=119" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -359465,7 +377096,7 @@ Note that this process will setup the pfredservice environment and install all n biotools:primaryContact "pftools team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3407, @@ -359479,14 +377110,14 @@ Note that this process will setup the pfredservice environment and install all n a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -359514,7 +377145,7 @@ Note that this process will setup the pfredservice environment and install all n "Shaohang Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3055, @@ -359530,7 +377161,7 @@ Note that this process will setup the pfredservice environment and install all n biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654 ; @@ -359544,7 +377175,7 @@ Note that this process will setup the pfredservice environment and install all n sc:url "http://sourceforge.net/projects/pgap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -359565,7 +377196,7 @@ Note that this process will setup the pfredservice environment and install all n biotools:primaryContact "Gabriela Cohen-Freue" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -359582,7 +377213,7 @@ Note that this process will setup the pfredservice environment and install all n sc:url "https://github.com/liaochenlanruo/pgcgap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, edam:topic_3168 ; @@ -359600,7 +377231,7 @@ This tool is for gap-closing in the genome using long-reads or contigs. PGcloser sc:url "http://software.tobaccodb.org/software/pgcloser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -359627,7 +377258,7 @@ This tool is for gap-closing in the genome using long-reads or contigs. PGcloser biotools:primaryContact "Dale Tronrud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0780, @@ -359644,7 +377275,7 @@ This tool is for gap-closing in the genome using long-reads or contigs. PGcloser biotools:primaryContact "BioNLP and Text Mining Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -359665,7 +377296,7 @@ This tool is for gap-closing in the genome using long-reads or contigs. PGcloser sc:url "https://github.com/Mesnage-Org/PGFinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -359685,7 +377316,7 @@ This tool is for gap-closing in the genome using long-reads or contigs. PGcloser biotools:primaryContact "William W. Greenwald" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3176, @@ -359704,7 +377335,7 @@ This tool is for gap-closing in the genome using long-reads or contigs. PGcloser biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0621, @@ -359717,8 +377348,25 @@ This tool is for gap-closing in the genome using long-reads or contigs. PGcloser sc:name "pGlyco3" ; sc:url "https://github.com/pFindStudio/pGlyco3" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_3360, + edam:topic_3520 ; + sc:citation ; + sc:description "pGlycoQuant with a deep residual network for precise and minuscule-missing-value quantitative glycoproteomics enabling the functional exploration of site-specific glycosylation." ; + sc:featureList edam:operation_3223, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "pGlycoQuant" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/expellir-arma/pGlycoQuant" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0121, @@ -359736,7 +377384,7 @@ This tool is for gap-closing in the genome using long-reads or contigs. PGcloser sc:url "http://www.agbase.msstate.edu/tools/pgm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3168, edam:topic_3474 ; @@ -359754,7 +377402,7 @@ Linux operation system with python3.x.""" ; sc:url "https://github.com/BDanalysis/PGMicroD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -359777,7 +377425,7 @@ Linux operation system with python3.x.""" ; "Javier Arnedo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -359807,7 +377455,7 @@ Linux operation system with python3.x.""" ; "Matthias Lange" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3474 ; @@ -359824,7 +377472,7 @@ Linux operation system with python3.x.""" ; biotools:primaryContact "Schliep lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0654, edam:topic_3168 ; @@ -359840,7 +377488,7 @@ Pseudogenome-based Read Compressor (PgRC) is an in-memory algorithm for compress sc:url "https://github.com/kowallus/PgRC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -359857,7 +377505,7 @@ Pseudogenome-based Read Compressor (PgRC) is an in-memory algorithm for compress "Zhou Songyang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2269 ; @@ -359873,7 +377521,7 @@ Pseudogenome-based Read Compressor (PgRC) is an in-memory algorithm for compress sc:url "https://github.com/feizhe/PGS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3334, @@ -359894,7 +377542,7 @@ The Polygenic Score (PGS) Catalog is an open database of published PGS and the r sc:url "http://www.PGSCatalog.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3360, @@ -359911,7 +377559,7 @@ The Polygenic Score (PGS) Catalog is an open database of published PGS and the r biotools:primaryContact "Federica Martina" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168 ; @@ -359925,7 +377573,7 @@ The Polygenic Score (PGS) Catalog is an open database of published PGS and the r sc:url "http://sun.aei.polsl.pl/REFRESH/index.php?page=projects&project=pgsa&subpage=about" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -359944,7 +377592,7 @@ The Polygenic Score (PGS) Catalog is an open database of published PGS and the r biotools:primaryContact "Karl Dykema" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -359957,8 +377605,56 @@ The Polygenic Score (PGS) Catalog is an open database of published PGS and the r sc:softwareHelp ; sc:url "http://www1.cse.wustl.edu/~jbuhler/pgt/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0153, + edam:topic_0202, + edam:topic_0769, + edam:topic_3375, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8592507", + "pubmed:34598320" ; + sc:description "Reproducible cleaning of bio-medical laboratory data using methods of visualization,error correction and transformation implemented as interactive R-notebooks." ; + sc:featureList edam:operation_2939, + edam:operation_3435, + edam:operation_3557, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "pguIMP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://cran.r-project.org/web/packages/pguIMP/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0769, + edam:topic_0780, + edam:topic_0797, + edam:topic_3175 ; + sc:citation , + "pmcid:PMC8520301", + "pubmed:34656081" ; + sc:description "Reference-agnostic representation and visualization of pan-genomes." ; + sc:featureList edam:operation_0490, + edam:operation_3208, + edam:operation_3216 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PGV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ucrbioinfo/PGV" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0121, @@ -359974,7 +377670,7 @@ The Polygenic Score (PGS) Catalog is an open database of published PGS and the r sc:url "http://pgx.fenyolab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3293, @@ -359994,7 +377690,7 @@ The Polygenic Score (PGS) Catalog is an open database of published PGS and the r biotools:primaryContact "Yonggang Lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation ; @@ -360007,8 +377703,32 @@ Contains metadata collection template based on data standard designed to harmoni sc:name "PHA4GE SARS-CoV-2 Contextual Data Specification" ; sc:url "https://github.com/pha4ge/SARS-CoV-2-Contextual-Data-Specification" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0199, + edam:topic_0769, + edam:topic_3293, + edam:topic_3316 ; + sc:citation , + "pmcid:PMC9178230", + "pubmed:35639618" ; + sc:description "Phylogeny-Aware Computing of Tolerance for Missense Mutations." ; + sc:featureList edam:operation_3226, + edam:operation_3461, + edam:operation_3478, + edam:operation_3745 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PHACT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/CompGenomeLab/PHACT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0209, edam:topic_0218, @@ -360027,7 +377747,7 @@ Contains metadata collection template based on data standard designed to harmoni biotools:primaryContact "Paul Thompson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0634, edam:topic_3520 ; @@ -360045,7 +377765,7 @@ Phage Commander provides utilities to query various gene-encoding prediction too sc:url "https://github.com/mlazeroff/PhageCommander" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3168, edam:topic_3474 ; @@ -360059,8 +377779,25 @@ PhageAI is an application that simultaneously represents a repository of knowled sc:name "PhageAI" ; sc:url "https://phage.ai/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0798, + edam:topic_3303 ; + sc:citation , + "pubmed:35576688" ; + sc:description "An R package to design phage cocktails from experimental phage-bacteria infection networks." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "PhageCocktail" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://cran.r-project.org/web/packages/PhageCocktail/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0154, @@ -360078,7 +377815,7 @@ The goal of this project is to provide an open-sourced, standardized and automat sc:url "http://phage-finder.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -360098,8 +377835,41 @@ PMID: doi: 10.11843/j.issn.0366-6964.2018.11.018 D01083026.""" ; sc:name "phageReceptor" ; sc:url "http://www.computationalbiology.cn/phageReceptor/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0622, + edam:topic_0798, + edam:topic_3299, + edam:topic_3301 ; + sc:citation , + "pmcid:PMC9262239", + "pubmed:35797343" ; + sc:description "The Actinobacteriophage Database." ; + sc:featureList edam:operation_0252 ; + sc:isAccessibleForFree true ; + sc:name "phagesdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://phagesdb.org" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "PhageTB is a multilevel prediction method for predicting interactions between bacteriophages and pathogenic bacterial hosts." ; + sc:featureList edam:operation_2945 ; + sc:name "phagetb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/phagetb/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168, @@ -360118,7 +377888,7 @@ PMID: doi: 10.11843/j.issn.0366-6964.2018.11.018 D01083026.""" ; "Marc Monot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0081 ; sc:citation ; @@ -360135,7 +377905,7 @@ PMID: doi: 10.11843/j.issn.0366-6964.2018.11.018 D01083026.""" ; biotools:primaryContact "Wouter Boomsma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0621, edam:topic_3174, @@ -360152,7 +377922,7 @@ PhANNs predicts the structural class of a phage ORF by running an artificial neu sc:url "http://edwards.sdsu.edu/phanns" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -360175,7 +377945,7 @@ PhANNs predicts the structural class of a phage ORF by running an artificial neu biotools:primaryContact "Alexey Sergushichev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -360193,24 +377963,30 @@ PhANNs predicts the structural class of a phage ORF by running an artificial neu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_3585" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_3585" ; + sc:name "Protein interaction data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0867" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence alignment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, edam:topic_3179 ; - sc:citation , + sc:citation , + , + , + "pmcid:PMC2597701", + "pmcid:PMC3431496", "pmcid:PMC3931556", + "pubmed:19029915", + "pubmed:22955991", "pubmed:3931556" ; sc:description "This package computes quick but highly informative enrichment and quality measures for ChIP-seq/DNase-seq/FAIRE-seq/MNase-seq data. It can also be used to obtain robust estimates of the predominant fragment length or characteristic tag shift values in these assays." ; sc:featureList edam:operation_3218, @@ -360224,7 +378000,7 @@ PhANNs predicts the structural class of a phage ORF by running an artificial neu biotools:primaryContact "Anshul Kundaje" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3168 ; @@ -360239,7 +378015,7 @@ PhANNs predicts the structural class of a phage ORF by running an artificial neu biotools:primaryContact "Sungyoung Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Library", "Web application" ; @@ -360269,7 +378045,7 @@ PhANNs predicts the structural class of a phage ORF by running an artificial neu sc:url "https://pharmacodb.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0202, @@ -360290,7 +378066,7 @@ PhANNs predicts the structural class of a phage ORF by running an artificial neu biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -360309,8 +378085,30 @@ PhANNs predicts the structural class of a phage ORF by running an artificial neu sc:url "http://bioinfo3d.cs.tau.ac.il/PharmaGist" ; biotools:primaryContact "PharmaGist Administrator" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Alignment" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_3577 ; + sc:citation ; + sc:description "A tool to extract all CPIC guideline gene variants from a genetic dataset (represented as a VCF file), interpret the variant alleles, and generate a report." ; + sc:featureList edam:operation_0004 ; + sc:isAccessibleForFree true ; + sc:license "MPL-2.0" ; + sc:name "PharmCAT" ; + sc:softwareHelp ; + sc:softwareVersion "1.6.0" ; + sc:url "https://pharmcat.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2275, edam:topic_3343 ; @@ -360328,10 +378126,9 @@ PhANNs predicts the structural class of a phage ORF by running an artificial neu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2301" ; - sc:name "SMILES string" ; - sc:sameAs "http://edamontology.org/data_2301" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3068, @@ -360352,16 +378149,40 @@ PhANNs predicts the structural class of a phage ORF by running an artificial neu sc:softwareHelp ; sc:url "https://pharmde.computpharm.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0202, + edam:topic_0602, + edam:topic_0634, + edam:topic_3071, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9276653", + "pubmed:35821017" ; + sc:description "The heterogeneous pharmacological medical biochemical network PharMeBINet." ; + sc:featureList edam:operation_1812, + edam:operation_2429, + edam:operation_3196, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PharMeBINet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://pharmebi.net" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2649" ; - sc:name "PharmGKB ID" ; - sc:sameAs "http://edamontology.org/data_2649" ] ; + sc:additionalType "http://edamontology.org/data_2649" ; + sc:name "PharmGKB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0202, @@ -360384,7 +378205,7 @@ PhANNs predicts the structural class of a phage ORF by running an artificial neu sc:url "http://www.pharmgkb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -360398,7 +378219,7 @@ PhANNs predicts the structural class of a phage ORF by running an artificial neu sc:url "http://59.78.96.61/pharmmapper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -360416,7 +378237,7 @@ PhANNs predicts the structural class of a phage ORF by running an artificial neu sc:url "http://lilab.ecust.edu.cn/pharmmapper/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0632, edam:topic_0634, @@ -360434,8 +378255,28 @@ Today’s single nucleotide polymorphism (SNP) databases are limited to a narrow sc:name "Pharmosome" ; sc:url "https://github.com/peterhabib/Pharmosome_Web" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2275, + edam:topic_2830, + edam:topic_3474 ; + sc:citation , + "pubmed:35301752" ; + sc:description "A machine-learning scoring function to identify the best protein-ligand complexes for structure-based pharmacophore screening with high enrichments." ; + sc:featureList edam:operation_3501, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PharmRF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/Prasanth-Kumar87/PharmRF" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0209, edam:topic_3318, @@ -360449,8 +378290,33 @@ Today’s single nucleotide polymorphism (SNP) databases are limited to a narrow sc:url "http://pharmsd.computpharm.org" ; biotools:primaryContact "Defang Ouyang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0208, + edam:topic_0625, + edam:topic_3168, + edam:topic_3375 ; + sc:citation , + "pmcid:PMC8618518", + "pubmed:34834582" ; + sc:description "A Web-Based Tool for Pharmacogenomic Variant Analysis and Interpretation." ; + sc:featureList edam:operation_0331, + edam:operation_3196, + edam:operation_3226, + edam:operation_3227, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PharmVIP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://pharmvip.nbt.or.th" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0625, @@ -360470,10 +378336,10 @@ You are using an outdated browser. Please upgrade your browser to improve your e a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0919" ; - sc:name "Chromosome report" ; - sc:sameAs "http://edamontology.org/data_0919" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0919" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Chromosome report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -360497,7 +378363,7 @@ You are using an outdated browser. Please upgrade your browser to improve your e sc:url "http://alphaindex.zju.edu.cn/PHARP/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -360513,7 +378379,7 @@ You are using an outdated browser. Please upgrade your browser to improve your e sc:url "http://stephenslab.uchicago.edu/software.html#phase" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0625 ; sc:citation , @@ -360530,24 +378396,49 @@ You are using an outdated browser. Please upgrade your browser to improve your e sc:url "http://www.giga.ulg.ac.be/cms/c_20703/en/unit-of-animal-genomics-software" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0196, + edam:topic_2885, + edam:topic_3168, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC8549298", + "pubmed:34706745" ; + sc:description "Haplotype aware de novo assembly of diploid genome from long reads" ; + sc:featureList edam:operation_0484, + edam:operation_0487, + edam:operation_0524, + edam:operation_0525, + edam:operation_3192 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "phasebook" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/phasebook/phasebook" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0080, @@ -360563,7 +378454,7 @@ You are using an outdated browser. Please upgrade your browser to improve your e sc:url "https://github.com/smajidian/phaseme" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:32871019" ; sc:description """A Python based framework for fluid phase equilibria and interfacial properties computation. @@ -360574,7 +378465,7 @@ Phasepy is a Python based package for fluid phase equilibria and interfacial pro sc:url "https://github.com/gustavochm/phasepy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_1317 ; @@ -360592,7 +378483,7 @@ Phasepy is a Python based package for fluid phase equilibria and interfacial pro sc:url "http://www.phaser.cimr.cam.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -360606,22 +378497,8 @@ Phasepy is a Python based package for fluid phase equilibria and interfacial pro sc:softwareHelp ; sc:url "http://phasetank.sourceforge.net/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_3518, - edam:topic_3673 ; - sc:citation , - "pmcid:PMC6612846", - "pubmed:31510646" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'integrated phasing', 'IMPLEMENTATION:Code', '3-6-fold', 'Hi-C' | Integrating read-based and population-based phasing for dense and accurate haplotyping of individual genomes | This repository holds the source code and data files for the paper Integrating read-based and population-based phasing for dense and accurate haplotyping of individual genomes\", Bioinformatics 2019 (proceedings of ISMB/ECCB 2019) | Slides from the ISMB talk are available" ; - sc:featureList edam:operation_0487, - edam:operation_3196, - edam:operation_3454 ; - sc:name "phasing" ; - sc:url "https://github.com/vibansal/IntegratedPhasing" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Script", "Web application" ; @@ -360640,7 +378517,7 @@ Phasepy is a Python based package for fluid phase equilibria and interfacial pro sc:url "https://cbi.njau.edu.cn/PPSA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -360658,7 +378535,7 @@ Phasepy is a Python based package for fluid phase equilibria and interfacial pro biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -360678,7 +378555,7 @@ Phasepy is a Python based package for fluid phase equilibria and interfacial pro sc:url "http://phaster.ca/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -360696,14 +378573,14 @@ Phasepy is a Python based package for fluid phase equilibria and interfacial pro a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1622" ; - sc:name "Disease report" ; - sc:sameAs "http://edamontology.org/data_1622" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1622" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Disease report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation ; @@ -360721,7 +378598,7 @@ Phasepy is a Python based package for fluid phase equilibria and interfacial pro "Rita Casadio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0196, @@ -360739,7 +378616,7 @@ Phasepy is a Python based package for fluid phase equilibria and interfacial pro sc:url "http://snps.biofold.org/phd-snpg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659 ; @@ -360751,18 +378628,18 @@ Phasepy is a Python based package for fluid phase equilibria and interfacial pro "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/phdcleav/" . + sc:url "http://webs.iiitd.edu.in/raghava/phdcleav/" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -360785,8 +378662,27 @@ Phasepy is a Python based package for fluid phase equilibria and interfacial pro sc:softwareVersion "1.0.42" ; sc:url "http://ppopen.informatik.tu-muenchen.de/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_3071, + edam:topic_3473 ; + sc:citation , + "pmcid:PMC9043280", + "pubmed:35495148" ; + sc:description "A Flexible and Scalable Personal Health Data Management Framework Based on Blockchain Technology." ; + sc:featureList edam:operation_3436, + edam:operation_3760 ; + sc:isAccessibleForFree true ; + sc:name "PHDMF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://hvic.biosino.org/PHDMF" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_0821, @@ -360807,7 +378703,7 @@ Pheromone Directed Seeker (PhDSeeker) is a tool based on a bio-inspired algorith sc:url "https://sinc.unl.edu.ar/web-demo/phds/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, edam:topic_3063, @@ -360823,18 +378719,15 @@ Pheromone Directed Seeker (PhDSeeker) is a tool based on a bio-inspired algorith a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; + sc:additionalType "http://edamontology.org/data_3111" ; + sc:name "Processed microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3365 ; @@ -360850,7 +378743,7 @@ Pheromone Directed Seeker (PhDSeeker) is a tool based on a bio-inspired algorith sc:url "http://cran.r-project.org/web/packages/pheatmap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3047, @@ -360867,7 +378760,7 @@ Pheromone Directed Seeker (PhDSeeker) is a tool based on a bio-inspired algorith biotools:primaryContact "Feng-Biao Guo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3574 ; @@ -360883,7 +378776,7 @@ Pheromone Directed Seeker (PhDSeeker) is a tool based on a bio-inspired algorith sc:url "http://phegenex-umh.cs.umn.edu:8080/PheGenEx/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, edam:topic_0625, @@ -360901,7 +378794,7 @@ Genome-wide association studies have provided a vast array of publicly available sc:url "https://phelige.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2640, edam:topic_3170, @@ -360918,7 +378811,7 @@ Genome-wide association studies have provided a vast array of publicly available sc:url "https://github.com/wschen/phemd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -360932,7 +378825,7 @@ Genome-wide association studies have provided a vast array of publicly available sc:url "http://phemto.orgchm.bas.bg/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0218, @@ -360949,7 +378842,7 @@ Genome-wide association studies have provided a vast array of publicly available biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0625, @@ -360971,7 +378864,7 @@ Genome-wide association studies have provided a vast array of publicly available sc:url "https://github.com/jenwilson521/PhenClust_Supplemental" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -360992,26 +378885,21 @@ Genome-wide association studies have provided a vast array of publicly available a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2295" ; + sc:name "Gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602 ; @@ -361029,26 +378917,21 @@ Genome-wide association studies have provided a vast array of publicly available a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ], + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602 ; @@ -361066,8 +378949,29 @@ Genome-wide association studies have provided a vast array of publicly available sc:softwareVersion "1" ; sc:url "http://bioinformatics.intec.ugent.be/phenetic_eqtl/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0622, + edam:topic_0625, + edam:topic_3577, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9224645", + "pubmed:35743744" ; + sc:description "A User-Friendly Genetic Variant Detection and Visualization Tool for Precision Medicine." ; + sc:featureList edam:operation_3196, + edam:operation_3208, + edam:operation_3227, + edam:operation_3283 ; + sc:isAccessibleForFree true ; + sc:name "PhenGenVar" ; + sc:operatingSystem "Windows" ; + sc:url "http://dblab.hallym.ac.kr/PhenGenVar" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, @@ -361086,13 +378990,18 @@ Genome-wide association studies have provided a vast array of publicly available biotools:primaryContact "Kristin C. Gunsalus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0081, edam:topic_1317, edam:topic_3473, edam:topic_3569 ; - sc:citation ; + sc:citation , + , + , + "pmcid:PMC6778852", + "pubmed:12393927", + "pubmed:31588918" ; sc:description "Software suite for the automated determination of macromolecular structures using X-ray crystallography and other methods." ; sc:featureList edam:operation_2409, edam:operation_2480, @@ -361108,7 +379017,7 @@ Genome-wide association studies have provided a vast array of publicly available sc:url "http://www.phenix-online.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3077, edam:topic_3382 ; @@ -361121,7 +379030,7 @@ Genome-wide association studies have provided a vast array of publicly available sc:url "https://gitlab.com/usask-speclab/phenoseed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -361141,7 +379050,7 @@ It can be easily implemented in collaborative research and development projects biotools:primaryContact "Leonardo S. Vanzetti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, edam:topic_3170, @@ -361160,7 +379069,7 @@ PhenoComp is an algorithm to identify population-level differential genes in one sc:url "https://github.com/XJJ-student/PhenoComp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2815, @@ -361180,14 +379089,14 @@ PhenoComp is an algorithm to identify population-level differential genes in one a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3424" ; - sc:name "Raw image" ; - sc:sameAs "http://edamontology.org/data_3424" ] ; + sc:additionalType "http://edamontology.org/data_3424" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Raw image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2855" ; - sc:name "Distance matrix" ; - sc:sameAs "http://edamontology.org/data_2855" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2855" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Distance matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0085, @@ -361215,7 +379124,7 @@ PhenoComp is an algorithm to identify population-level differential genes in one biotools:primaryContact "Xian Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -361235,7 +379144,7 @@ PhenoComp is an algorithm to identify population-level differential genes in one sc:url "https://snca.atica.um.es/PhenoExamWeb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -361252,7 +379161,7 @@ PhenoComp is an algorithm to identify population-level differential genes in one sc:url "http://sourceforge.net/projects/phenofam/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3382 ; @@ -361267,7 +379176,7 @@ PhenoComp is an algorithm to identify population-level differential genes in one biotools:primaryContact "Annette Menzel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, edam:topic_3325, @@ -361294,7 +379203,7 @@ The vcf file should include all the samples that would be tested in Phenogenon. sc:url "https://phenogenon.phenopolis.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0621, @@ -361317,7 +379226,7 @@ The vcf file should include all the samples that would be tested in Phenogenon. biotools:primaryContact "Anil Jegga" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, edam:topic_3316, @@ -361336,7 +379245,7 @@ PhenoImage is an open-source GUI based cross-platform solution for high-throughp sc:url "http://wrchr.org/phenolib/phenoimage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0634, @@ -361352,7 +379261,7 @@ PhenoImage is an open-source GUI based cross-platform solution for high-throughp sc:url "http://phenolyzer.wglab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -361374,7 +379283,7 @@ PhenoImage is an open-source GUI based cross-platform solution for high-throughp biotools:primaryContact "Ke Jin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053 ; @@ -361390,7 +379299,7 @@ PhenoImage is an open-source GUI based cross-platform solution for high-throughp sc:url "https://code.google.com/p/phenoman/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -361416,7 +379325,7 @@ PhenoImage is an open-source GUI based cross-platform solution for high-throughp sc:url "https://phenomecentral.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, edam:topic_3382 ; @@ -361429,7 +379338,7 @@ PhenoImage is an open-source GUI based cross-platform solution for high-throughp sc:url "https://github.com/openalea/phenomenal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625 ; sc:citation , @@ -361446,7 +379355,7 @@ PhenoImage is an open-source GUI based cross-platform solution for high-throughp biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3325, @@ -361464,7 +379373,7 @@ PhenoImage is an open-source GUI based cross-platform solution for high-throughp sc:url "http://compbio.charite.de/phenomizer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170 ; @@ -361483,7 +379392,7 @@ PhenoImage is an open-source GUI based cross-platform solution for high-throughp biotools:primaryContact "Kieran Campbell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -361502,7 +379411,7 @@ PhenoImage is an open-source GUI based cross-platform solution for high-throughp biotools:primaryContact "Heba Sailem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2815, @@ -361520,7 +379429,7 @@ PhenoImage is an open-source GUI based cross-platform solution for high-throughp sc:url "http://www.phenopred.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_0625, @@ -361536,7 +379445,7 @@ PhenoImage is an open-source GUI based cross-platform solution for high-throughp biotools:primaryContact "Moritz D. Lürig" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053 ; @@ -361551,7 +379460,7 @@ PhenoImage is an open-source GUI based cross-platform solution for high-throughp sc:url "http://evoplant.uni-hohenheim.de/downloads/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0610, @@ -361573,7 +379482,7 @@ PhenoSpace is a Shiny application – built using the Shiny R package – that h sc:url "https://shiny.cefe.cnrs.fr/PhenoSpace/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API" ; sc:applicationSubCategory edam:topic_0089, @@ -361594,7 +379503,7 @@ PhenoTagger is a hybrid method that combines dictionary and deep learning-based sc:url "https://github.com/ncbi-nlp/PhenoTagger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3071 ; @@ -361614,7 +379523,7 @@ PhenoTagger is a hybrid method that combines dictionary and deep learning-based biotools:primaryContact "Simon Jupp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -361637,7 +379546,7 @@ PhenoTagger is a hybrid method that combines dictionary and deep learning-based biotools:primaryContact "Evarist Planet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3063, @@ -361658,7 +379567,7 @@ PhenoTagger is a hybrid method that combines dictionary and deep learning-based biotools:primaryContact "PhenoTips Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -361675,7 +379584,7 @@ PhenoTagger is a hybrid method that combines dictionary and deep learning-based biotools:primaryContact "Hannah Meyer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -361695,7 +379604,7 @@ Phenoxome is a web-based tool developed at the Children's Hospital of Philadelph sc:url "https://phenoxome.chop.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -361719,7 +379628,7 @@ PhenPath includes a database and a tool:. sc:url "http://phenpath.biocomp.unibo.it" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, edam:topic_3172, @@ -361735,7 +379644,7 @@ PhenPath includes a database and a tool:. sc:url "https://phensim.atlas.dmi.unict.it/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269 ; @@ -361756,7 +379665,7 @@ PhenPath includes a database and a tool:. biotools:primaryContact "Hamed Haselimashhadi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -361774,7 +379683,7 @@ PhenPath includes a database and a tool:. sc:url "http://pheps.orgchm.bas.bg/home.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3174, edam:topic_3324, @@ -361795,7 +379704,7 @@ To install this tool please use our docker image.""" ; sc:url "https://github.com/andynet/pheri_preprocessing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -361816,7 +379725,7 @@ To install this tool please use our docker image.""" ; biotools:primaryContact "Louise AC Millard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3298 ; sc:citation , @@ -361832,7 +379741,7 @@ To install this tool please use our docker image.""" ; biotools:primaryContact "Louise A. C. Millard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, @@ -361854,7 +379763,7 @@ To install this tool please use our docker image.""" ; biotools:primaryContact "Leonor Palmeira" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0654, @@ -361871,7 +379780,7 @@ To install this tool please use our docker image.""" ; sc:url "https://phewascatalog.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3298, edam:topic_3324, @@ -361893,7 +379802,7 @@ Supplied are snps that have been preloaded.""" ; sc:url "https://prod.tbilab.org/phewas_me/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3316, edam:topic_3334, @@ -361917,7 +379826,7 @@ The recent emergence of neuroimaging genomic databases of large healthy and dise sc:url "http://phewas.loni.usc.edu/phewas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3298, @@ -361934,7 +379843,7 @@ The recent emergence of neuroimaging genomic databases of large healthy and dise biotools:primaryContact "Leena Choi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0154, edam:topic_0602, @@ -361952,7 +379861,7 @@ Phexpo is an R package for enrichment analysis of phenotypes (from the Human Phe sc:url "https://github.com/GHLCLab/phexpo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3053 ; @@ -361970,7 +379879,7 @@ Phexpo is an R package for enrichment analysis of phenotypes (from the Human Phe biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654, @@ -361991,7 +379900,7 @@ PHi-C consists of Python3 codes for deciphering Hi-C data into polymer dynamics sc:url "https://github.com/soyashinkai/PHi-C" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0196, edam:topic_0798, @@ -362010,7 +379919,7 @@ Phigaro is a standalone command-line application that is able to detect prophage sc:url "https://github.com/bobeobibo/phigaro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation ; @@ -362021,8 +379930,30 @@ Phigaro is a standalone command-line application that is able to detect prophage sc:softwareHelp ; sc:url "http://noble.gs.washington.edu/proj/philius/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0218, + edam:topic_0219, + edam:topic_0602, + edam:topic_3324 ; + sc:citation , + "pmcid:PMC9248916", + "pubmed:35776535" ; + sc:description "A high-throughput database of macromolecular host-pathogen interactions on the Web." ; + sc:featureList edam:operation_0224, + edam:operation_0306, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:name "PHILM2Web" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://philm2web.live" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0084, @@ -362044,7 +379975,7 @@ Phigaro is a standalone command-line application that is able to detect prophage biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_3168, @@ -362066,7 +379997,7 @@ Phirbo estimates the phage-host relationship by comparing the content and order sc:url "https://github.com/aziele/phirbo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0204, @@ -362085,7 +380016,7 @@ Phirbo estimates the phage-host relationship by comparing the content and order biotools:primaryContact "Rob Lavigne" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, edam:topic_0622, @@ -362102,7 +380033,7 @@ PhISCS-BnB is a fast tool for reconstructing the perfect tumor phylogeny using s sc:url "https://github.com/algo-cancer/PhISCS-BnB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3299, edam:topic_3697, @@ -362124,7 +380055,7 @@ PHISDetector receives bacterial or virus genomic sequences in GenBank or FASTA f sc:url "http://www.microbiome-bigdata.com/PHISDetector/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -362144,10 +380075,10 @@ PHISDetector receives bacterial or virus genomic sequences in GenBank or FASTA f a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3174, @@ -362165,8 +380096,30 @@ PHISDetector receives bacterial or virus genomic sequences in GenBank or FASTA f "Windows" ; sc:url "https://github.com/refresh-bio/phist" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3300, + edam:topic_3308, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9048696", + "pubmed:35238346" ; + sc:description "Phitest for Analyzing the Homogeneity of Single-cell Populations." ; + sc:featureList edam:operation_3223, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "PhitestR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/Vivianstats/PhitestR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3047, edam:topic_3421 ; @@ -362189,7 +380142,7 @@ constructed by using homology modeling.""" ; sc:url "http://www.phla3d.com.br" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0196, @@ -362207,22 +380160,19 @@ constructed by using homology modeling.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ] ; + sc:additionalType "http://edamontology.org/data_3671" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Text" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ], + sc:additionalType "http://edamontology.org/data_2085" ; + sc:name "Structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2085" ; - sc:name "Structure report" ; - sc:sameAs "http://edamontology.org/data_2085" ], + sc:additionalType "http://edamontology.org/data_1394" ; + sc:name "Alignment score or penalty" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1394" ; - sc:name "Alignment score or penalty" ; - sc:sameAs "http://edamontology.org/data_1394" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0080, @@ -362248,14 +380198,12 @@ constructed by using homology modeling.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -362263,12 +380211,13 @@ constructed by using homology modeling.""" ; edam:topic_0820, edam:topic_3510 ; sc:author "Erik Sonnhammer", - "Web Production" ; - sc:citation ; + "Job Dispatcher" ; + sc:citation , + ; sc:description "Predict transmembrane topology and signal peptides from the amino acid sequence of a protein." ; sc:featureList edam:operation_0269, edam:operation_0418 ; - sc:name "Phobius" ; + sc:name "Phobius (EBI)" ; sc:operatingSystem "Linux", "Mac", "Windows" ; @@ -362278,10 +380227,10 @@ constructed by using homology modeling.""" ; ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/pfa/phobius/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0736, edam:topic_1775, @@ -362299,7 +380248,7 @@ constructed by using homology modeling.""" ; sc:url "http://www.ebi.ac.uk/Tools/webservices/services/pfa/phobius_rest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0654 ; @@ -362314,7 +380263,7 @@ constructed by using homology modeling.""" ; sc:url "http://www.ruhr-uni-bochum.de/spezzoo/cm/cm_phobos.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3293, @@ -362330,7 +380279,7 @@ constructed by using homology modeling.""" ; sc:url "http://phylofacts.berkeley.edu/orthologs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3510 ; @@ -362346,7 +380295,7 @@ constructed by using homology modeling.""" ; sc:url "http://app.aporc.org/Phogly-PseAAC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0121, edam:topic_0154, @@ -362365,7 +380314,7 @@ The codes in this repository are in two categories. One is based on commercial s sc:url "https://github.com/abelavit/PhoglyStruct" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3068, edam:topic_3071 ; @@ -362385,7 +380334,7 @@ Phon is a software program that supports the building of textual and phonologica sc:url "https://phonbank.talkbank.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -362402,7 +380351,7 @@ Phon is a software program that supports the building of textual and phonologica sc:url "https://github.com/saezlab/PHONEMeS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2269, @@ -362419,7 +380368,7 @@ Phon is a software program that supports the building of textual and phonologica sc:url "https://github.com/koeppl/phoni" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0123 ; @@ -362435,7 +380384,7 @@ Phon is a software program that supports the building of textual and phonologica sc:url "http://phos3d.mpimp-golm.mpg.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0123, edam:topic_2814 ; @@ -362450,7 +380399,7 @@ Phon is a software program that supports the building of textual and phonologica sc:url "https://github.com/danmaclean/phoscalc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0601, @@ -362467,7 +380416,7 @@ Phon is a software program that supports the building of textual and phonologica sc:url "http://bioinfo.au.tsinghua.edu.cn/phoscan/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0780 ; @@ -362481,7 +380430,7 @@ Phon is a software program that supports the building of textual and phonologica sc:url "http://saphire.usask.ca/saphire/phosfer/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0166 ; sc:citation ; @@ -362497,7 +380446,7 @@ Phon is a software program that supports the building of textual and phonologica sc:url "http://phosfinder.bio.uniroma2.it" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -362519,7 +380468,7 @@ Phon is a software program that supports the building of textual and phonologica biotools:primaryContact "Matthias Mann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0601, @@ -362537,7 +380486,7 @@ Phon is a software program that supports the building of textual and phonologica sc:url "https://github.com/ustchangyuanyang/PhosIDN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -362554,7 +380503,7 @@ Phon is a software program that supports the building of textual and phonologica sc:url "http://www.nii.ac.in/phosnetconstruct.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -362576,14 +380525,12 @@ Phon is a software program that supports the building of textual and phonologica a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0166 ; @@ -362602,30 +380549,27 @@ Phon is a software program that supports the building of textual and phonologica a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1096" ; - sc:name "Sequence accession (protein)" ; - sc:sameAs "http://edamontology.org/data_1096" ], + sc:additionalType "http://edamontology.org/data_1096" ; + sc:name "Sequence accession (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1009" ; - sc:name "Protein name" ; - sc:sameAs "http://edamontology.org/data_1009" ], + sc:additionalType "http://edamontology.org/data_2775" ; + sc:name "Kinase name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2775" ; - sc:name "Kinase name" ; - sc:sameAs "http://edamontology.org/data_2775" ] ; + sc:additionalType "http://edamontology.org/data_1009" ; + sc:name "Protein name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2071" ; - sc:name "Sequence motif (protein)" ; - sc:sameAs "http://edamontology.org/data_2071" ], + sc:additionalType "http://edamontology.org/data_2071" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence motif (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2071" ; - sc:name "Sequence motif (protein)" ; - sc:sameAs "http://edamontology.org/data_2071" ], + sc:additionalType "http://edamontology.org/data_2071" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence motif (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2071" ; - sc:name "Sequence motif (protein)" ; - sc:sameAs "http://edamontology.org/data_2071" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2071" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence motif (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0601 ; sc:citation , @@ -362642,7 +380586,7 @@ Phon is a software program that supports the building of textual and phonologica biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0601, edam:topic_0602, @@ -362663,7 +380607,7 @@ This may take a minute or two depending on the size of your input data and our s sc:url "https://phosphomatics.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269 ; @@ -362683,7 +380627,7 @@ This may take a minute or two depending on the size of your input data and our s biotools:primaryContact "Sohrab Saraei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0601 ; @@ -362699,7 +380643,7 @@ This may take a minute or two depending on the size of your input data and our s sc:url "http://bioinf.scmb.uq.edu.au/phosphopick/phosphopick" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -362718,7 +380662,7 @@ This may take a minute or two depending on the size of your input data and our s biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0123, @@ -362740,7 +380684,7 @@ This may take a minute or two depending on the size of your input data and our s biotools:primaryContact "Jean Yee Hwa Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -362754,7 +380698,7 @@ This may take a minute or two depending on the size of your input data and our s sc:url "http://sourceforge.net/projects/phosphosite/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0601, @@ -362774,7 +380718,7 @@ This may take a minute or two depending on the size of your input data and our s sc:url "https://www.phosphosite.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -362790,8 +380734,61 @@ This may take a minute or two depending on the size of your input data and our s sc:softwareHelp ; sc:url "http://sysbio.unl.edu/PhosphoSVM/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0601, + edam:topic_0769, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8787428", + "pubmed:34882763" ; + sc:description "An automated phosphoproteomic pipeline in R." ; + sc:featureList edam:operation_2939, + edam:operation_3223, + edam:operation_3501, + edam:operation_3557, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-4.0" ; + sc:name "PhosPiR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/TCB-yehong/PhosPiR" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2899" ; + sc:name "Drug name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0601, + edam:topic_0602, + edam:topic_0634, + edam:topic_2229 ; + sc:citation , + "pmcid:PMC9394491", + "pubmed:35994309" ; + sc:description "Pathway analysis database of drug response based on phosphorylation activity measurements." ; + sc:featureList edam:operation_0314, + edam:operation_0417, + edam:operation_0533, + edam:operation_3926, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "Phosprof" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://phosprof.medals.jp/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0602, @@ -362811,7 +380808,7 @@ PhosR is a package for the comprehensive analysis of phosphoproteomic data. Ther sc:url "https://github.com/PYangLab/PhosR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -362836,7 +380833,7 @@ PhosR is a package for the comprehensive analysis of phosphoproteomic data. Ther "Zhaolei Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation ; @@ -362851,8 +380848,33 @@ PhosR is a package for the comprehensive analysis of phosphoproteomic data. Ther sc:softwareVersion "1" ; sc:url "http://phostryp.bio.uniroma2.it" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_3063, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8929166", + "pubmed:35310161" ; + sc:description "Deep-learning based prediction of phospho-variants using sequence information." ; + sc:featureList edam:operation_0253, + edam:operation_0331, + edam:operation_3092 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PhosVarDeep" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/lisalikegaga/PhosVarDeep" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3068, edam:topic_3071 ; @@ -362870,7 +380892,7 @@ PhotochemCAD™ is a program of calculational modules and accompanying database sc:url "http://www.photochemcad.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3299, edam:topic_3474 ; @@ -362889,7 +380911,7 @@ PhotoModPlus is a genome neighborhood-based platform for exploring photosyntheti sc:url "http://bicep.kmutt.ac.th/photomod" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3314, @@ -362906,7 +380928,7 @@ PhotoModPlus is a genome neighborhood-based platform for exploring photosyntheti biotools:primaryContact "Rex Cheung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0769, @@ -362929,7 +380951,7 @@ PhotoModPlus is a genome neighborhood-based platform for exploring photosyntheti sc:url "http://www.photon-ai.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3382, edam:topic_3474 ; @@ -362943,7 +380965,7 @@ ATLAS Photon Labeler. Contribute to Oht0nger/PhoLabeler development by creating sc:url "https://github.com/Oht0nger/PhoLabeler/releases/tag/v1.0" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3489 ; sc:description "It is a web-driven database management system. Data-entry takes place in forms, which can be altered using phplabware’s plugin mechanism. Search results can be output in reports, which are generated based on simple HTML templates. The (php-based) plugin mechanism allows for easy and fast adaptation of phplabware to any specific needs." ; @@ -362957,7 +380979,7 @@ ATLAS Photon Labeler. Contribute to Oht0nger/PhoLabeler development by creating sc:url "http://phplabware.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121 ; @@ -362973,7 +380995,7 @@ ATLAS Photon Labeler. Contribute to Oht0nger/PhoLabeler development by creating sc:url "http://lin.uestc.edu.cn/server/PHPred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -362985,7 +381007,7 @@ ATLAS Photon Labeler. Contribute to Oht0nger/PhoLabeler development by creating sc:url "http://www.glue.umd.edu/~ALEKSEYZ/PhrapUMDV2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -363006,7 +381028,7 @@ ATLAS Photon Labeler. Contribute to Oht0nger/PhoLabeler development by creating biotools:primaryContact "D. Gordon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -363030,8 +381052,26 @@ ATLAS Photon Labeler. Contribute to Oht0nger/PhoLabeler development by creating ; sc:url "http://www.phrap.org/phredphrapconsed.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0798, + edam:topic_0821, + edam:topic_3315 ; + sc:citation , + "pubmed:35671831" ; + sc:description "Phage Resistance Emergence Prediction Web Tool to Foresee Encapsulated Bacterial Escape from Phage Cocktail Treatment." ; + sc:featureList edam:operation_2426, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:name "PhREEPred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://phartner.shinyapps.io/PhREEPred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0610, @@ -363055,18 +381095,18 @@ ATLAS Photon Labeler. Contribute to Oht0nger/PhoLabeler development by creating a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ] ; + sc:additionalType "http://edamontology.org/data_0962" ; + sc:encodingFormat "http://edamontology.org/format_1196" ; + sc:name "Small molecule report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2258 ; sc:citation , @@ -363084,7 +381124,7 @@ ATLAS Photon Labeler. Contribute to Oht0nger/PhoLabeler development by creating biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3168 ; @@ -363103,7 +381143,7 @@ ATLAS Photon Labeler. Contribute to Oht0nger/PhoLabeler development by creating biotools:primaryContact "Rasmus Wernersson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196 ; @@ -363119,7 +381159,7 @@ ATLAS Photon Labeler. Contribute to Oht0nger/PhoLabeler development by creating sc:url "http://www.sanger.ac.uk/science/tools/phusion" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053 ; @@ -363135,7 +381175,7 @@ ATLAS Photon Labeler. Contribute to Oht0nger/PhoLabeler development by creating biotools:primaryContact "Daniel Navarro-Gomez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation "pubmed:25577605" ; @@ -363150,10 +381190,9 @@ ATLAS Photon Labeler. Contribute to Oht0nger/PhoLabeler development by creating a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -363175,24 +381214,47 @@ ATLAS Photon Labeler. Contribute to Oht0nger/PhoLabeler development by creating "Windows" ; sc:url "https://phycomine.iq.usp.br" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3293, + edam:topic_3314 ; + sc:citation , + "pmcid:PMC8922167", + "pubmed:35295748" ; + sc:description "A tool for exploring covariates of pathogen spread." ; + sc:featureList edam:operation_0558, + edam:operation_2940, + edam:operation_3478, + edam:operation_3659, + edam:operation_3745 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PhyCovA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://evolcompvir-kuleuven.shinyapps.io/PhyCovA/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2337" ; - sc:name "Resource metadata" ; - sc:sameAs "http://edamontology.org/data_2337" ], + sc:additionalType "http://edamontology.org/data_2337" ; + sc:encodingFormat "http://edamontology.org/format_1920" ; + sc:name "Resource metadata" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_3159" ; + sc:name "Phylogenetic tree" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1707" ; - sc:name "Phylogenetic tree image" ; - sc:sameAs "http://edamontology.org/data_1707" ], + sc:additionalType "http://edamontology.org/data_1707" ; + sc:name "Phylogenetic tree image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_3159" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3293 ; sc:author "Lukasz Kreft" ; @@ -363216,7 +381278,7 @@ ATLAS Photon Labeler. Contribute to Oht0nger/PhoLabeler development by creating "VIB BITS Core Facility" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0194, @@ -363233,7 +381295,7 @@ ATLAS Photon Labeler. Contribute to Oht0nger/PhoLabeler development by creating sc:url "http://igs-server.cnrs-mrs.fr/phydbac/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, edam:topic_3168, @@ -363255,7 +381317,7 @@ phydoser is a package to aid in the design a single-cell sequencing follow-up ex sc:url "https://github.com/elkebir-group/phydoser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3293 ; @@ -363275,7 +381337,7 @@ phydoser is a package to aid in the design a single-cell sequencing follow-up ex biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0157, edam:topic_0194, @@ -363303,7 +381365,7 @@ This documentation covers downloading and installing PhyKIT. Details about each sc:url "https://jlsteenwyk.com/PhyKIT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0084, @@ -363325,7 +381387,7 @@ This documentation covers downloading and installing PhyKIT. Details about each biotools:primaryContact "PhyleasProg Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0797 ; @@ -363347,7 +381409,7 @@ This documentation covers downloading and installing PhyKIT. Details about each biotools:primaryContact "babelomics@cipf.es (Francisco García)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, @@ -363372,7 +381434,7 @@ This documentation covers downloading and installing PhyKIT. Details about each sc:url "https://github.com/bioinformatics-polito/PhyliCS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, @@ -363399,7 +381461,7 @@ This documentation covers downloading and installing PhyKIT. Details about each biotools:primaryContact "Joe Felsenstein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3374 ; @@ -363414,7 +381476,7 @@ This documentation covers downloading and installing PhyKIT. Details about each biotools:primaryContact "James J. Cai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -363431,7 +381493,7 @@ This documentation covers downloading and installing PhyKIT. Details about each sc:url "http://phylo.cs.mcgill.ca/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092 ; @@ -363447,7 +381509,7 @@ This documentation covers downloading and installing PhyKIT. Details about each sc:url "http://cg1.iis.sinica.edu.tw/new/phylomlogo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3293, @@ -363466,8 +381528,28 @@ This documentation covers downloading and installing PhyKIT. Details about each sc:url "https://github.com/dohalloran/phylo-node" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1997" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3293 ; + sc:citation , + "pubmed:23564032" ; + sc:description "A Bayesian software for phylogenetic reconstruction using mixture models" ; + sc:featureList edam:operation_3478 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "phylobayesmpi" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:url "https://github.com/bayesiancook/pbmpi" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3056, @@ -363488,7 +381570,7 @@ This documentation covers downloading and installing PhyKIT. Details about each "General Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3179 ; @@ -363501,8 +381583,31 @@ This documentation covers downloading and installing PhyKIT. Details about each sc:softwareVersion "1.0" ; sc:url "http://www.awi.de/en/science/special-groups/scientific-computing/bioinformatics/software.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0194, + edam:topic_0637, + edam:topic_0769 ; + sc:citation , + "pmcid:PMC9252743", + "pubmed:35544233" ; + sc:description "PhyloCloud is an online platform for the interactive analysis, annotation and visualization of large collections of phylogenetic trees and multiple sequence alignments. Users can browse the Featured Tree Collections or Upload Trees to your own workplace both registerially and anonymously." ; + sc:featureList edam:operation_0326, + edam:operation_0555, + edam:operation_0558, + edam:operation_0567, + edam:operation_3478 ; + sc:isAccessibleForFree true ; + sc:name "PhyloCloud" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://phylocloud.cgmlab.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0602, @@ -363525,7 +381630,7 @@ Phylocorrelate is a tool that detects pairs of gene/protein families with simila sc:url "http://phylocorrelate.uwaterloo.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -363542,7 +381647,7 @@ Phylocorrelate is a tool that detects pairs of gene/protein families with simila biotools:primaryContact "Martin Steinegger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0196, @@ -363561,8 +381666,32 @@ Phylocorrelate is a tool that detects pairs of gene/protein families with simila sc:url "https://github.com/morphos30/PhyloCTCFLooping" ; biotools:primaryContact "Raphaël Mourad" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Library" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_2269, + edam:topic_3305, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9258765", + "pubmed:35794110" ; + sc:description "Deep learning from phylogenies to uncover the epidemiological dynamics of outbreaks." ; + sc:featureList edam:operation_0323, + edam:operation_0326, + edam:operation_3891, + edam:operation_3942 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "PhyloDeep" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/evolbioinfo/phylodeep" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0602, @@ -363583,7 +381712,7 @@ Phylocorrelate is a tool that detects pairs of gene/protein families with simila biotools:primaryContact "Novatchkova M." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3293, @@ -363600,21 +381729,8 @@ Phylocorrelate is a tool that detects pairs of gene/protein families with simila sc:url "https://github.com/mdkarcher/phylodyn" ; biotools:primaryContact "Michael Karcher" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0084, - edam:topic_3305, - edam:topic_3315 ; - sc:citation , - "pmcid:PMC6827370", - "pubmed:31511299" ; - sc:description "> NAME EQUAL TO (PUB. DIFFERENT) bio.tools/phylodyn | Bayesian Estimation of Population Size Changes by Sampling Tajima's Trees | This is a branch forked from mdkarcher/phylodyn. The purpose of this branch of phylodyn is to incorporate the sampling of genealogies and facilitate phylodynamic inference and analysis from data directly. This branch includes some Python code and installation may be problematic. We are working to resolve this" ; - sc:featureList edam:operation_0487, - edam:operation_0547 ; - sc:name "phylodyn_autogenerated" ; - sc:url "https://github.com/JuliaPalacios/phylodyn" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3305, edam:topic_3315 ; @@ -363628,7 +381744,7 @@ Phylocorrelate is a tool that detects pairs of gene/protein families with simila sc:url "https://github.com/JuliaPalacios/phylodyn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0084, @@ -363643,7 +381759,7 @@ Phylocorrelate is a tool that detects pairs of gene/protein families with simila sc:url "http://phylogenomics.berkeley.edu/phylofacts/fatcat/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0194, @@ -363669,7 +381785,7 @@ Phylocorrelate is a tool that detects pairs of gene/protein families with simila sc:url "https://github.com/TheBrownLab/PhyloFisher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0659, edam:topic_3174, @@ -363695,7 +381811,7 @@ phyloFlash is a pipeline to rapidly reconstruct the SSU rRNAs and explore the ph sc:url "https://github.com/HRGV/phyloFlash" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0084, edam:topic_0097, @@ -363714,8 +381830,31 @@ This project has been written in mainly Rust, a systems programming language. Yo sc:name "PhyloFold" ; sc:url "https://github.com/heartsh/phylofold" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0769, + edam:topic_3056, + edam:topic_3299, + edam:topic_3500 ; + sc:citation ; + sc:description "Phylogeographic data aggregation and repurposing." ; + sc:featureList edam:operation_0492, + edam:operation_3192, + edam:operation_3431, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "phylogatR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "Beta test" ; + sc:url "https://phylogatr.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -363737,7 +381876,7 @@ This project has been written in mainly Rust, a systems programming language. Yo biotools:primaryContact "Changchuan Yin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3365 ; @@ -363753,7 +381892,7 @@ This project has been written in mainly Rust, a systems programming language. Yo sc:url "https://github.com/PasqualeInfn/JST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0602, edam:topic_0625, @@ -363771,7 +381910,7 @@ More specifically, given community composition data, phylogenize links genes in sc:url "https://phylogenize.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0780, @@ -363794,7 +381933,7 @@ More specifically, given community composition data, phylogenize links genes in biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3301, @@ -363809,7 +381948,7 @@ More specifically, given community composition data, phylogenize links genes in sc:url "http://zachcp.github.io/phylogeo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0092, @@ -363824,7 +381963,7 @@ More specifically, given community composition data, phylogenize links genes in sc:url "https://github.com/kdiverson/phyloGeoRef" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3053, @@ -363840,7 +381979,7 @@ More specifically, given community composition data, phylogenize links genes in sc:url "http://ebe.ulb.ac.be/ebe/PhyloGeoSim.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -363866,7 +382005,7 @@ More specifically, given community composition data, phylogenize links genes in biotools:primaryContact "Mikhail Pachkov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -363879,7 +382018,7 @@ More specifically, given community composition data, phylogenize links genes in sc:url "http://www.moseslab.csb.utoronto.ca/phylo_HMM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3050, @@ -363896,7 +382035,7 @@ More specifically, given community composition data, phylogenize links genes in sc:url "http://phylojive.ala.org.au/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -363913,7 +382052,7 @@ More specifically, given community composition data, phylogenize links genes in biotools:primaryContact "Ludovic Mallet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0194, edam:topic_2269, @@ -363931,16 +382070,71 @@ More specifically, given community composition data, phylogenize links genes in sc:url "https://github.com/duchene/phylomad" ; biotools:primaryContact "David A. Duchêne" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3168, + edam:topic_3293, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9169257", + "pubmed:35668363" ; + sc:description "An R package for phylogeny-aware microbiome data analysis." ; + sc:featureList edam:operation_0323, + edam:operation_3658, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "phyloMDA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/liudoubletian/phyloMDA" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0194, + edam:topic_0621, + edam:topic_0634 ; + sc:citation , + , + , + , + "pmcid:PMC2238872", + "pmcid:PMC3013701", + "pmcid:PMC3964985", + "pmcid:PMC8728271", + "pubmed:17962297", + "pubmed:21075798", + "pubmed:24275491", + "pubmed:34718760" ; + sc:description "PhylomeDB is a public database for complete catalogs of gene phylogenie. It allows users to interactively explore the evolutionary history of genes through the visualization of phylogenetic trees and multiple sequence alignments. Moreover, phylomeDB provides genome-wide orthology and paralogy predictions which are based on the analysis of the phylogenetic trees. The automated pipeline used to reconstruct trees aims at providing a high-quality phylogenetic analysis of different genomes, including Maximum Likelihood tree inference, alignment trimming and evolutionary model testing." ; + sc:featureList edam:operation_0499, + edam:operation_0544, + edam:operation_2423, + edam:operation_3478 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "PhylomeDB" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp , + , + ; + sc:softwareVersion "5.0" ; + sc:url "http://phylomeDB.org" ; + biotools:primaryContact "Toni Gabaldón" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2523" ; - sc:name "Phylogenetic data" ; - sc:sameAs "http://edamontology.org/data_2523" ] ; + sc:additionalType "http://edamontology.org/data_2523" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2523" ; - sc:name "Phylogenetic data" ; - sc:sameAs "http://edamontology.org/data_2523" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2523" ; + sc:name "Phylogenetic data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0084 ; @@ -363957,7 +382151,7 @@ More specifically, given community composition data, phylogenize links genes in sc:url "https://github.com/mr-y/phylommand" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0204, @@ -363971,7 +382165,7 @@ More specifically, given community composition data, phylogenize links genes in sc:url "http://stormo.wustl.edu/PhyloNet/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0196, edam:topic_3168, @@ -363986,7 +382180,7 @@ More specifically, given community composition data, phylogenize links genes in sc:url "http://github.com/evolbioinf/phylonium" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0625, @@ -364007,7 +382201,7 @@ More specifically, given community composition data, phylogenize links genes in biotools:primaryContact "Webmaster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, @@ -364027,7 +382221,7 @@ More specifically, given community composition data, phylogenize links genes in biotools:primaryContact "T. Hulsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0632, @@ -364043,8 +382237,33 @@ More specifically, given community composition data, phylogenize links genes in sc:softwareHelp ; sc:url "http://g2im.u-clermont1.fr/phylopdb/help.php" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0749, + edam:topic_3169, + edam:topic_3512, + edam:topic_3794 ; + sc:citation , + "pmcid:PMC9235490", + "pubmed:35758792" ; + sc:description "Boosting regulatory function prediction accuracy using evolutionary information." ; + sc:featureList edam:operation_0445, + edam:operation_2437, + edam:operation_3192, + edam:operation_3663, + edam:operation_3901 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PhyloPGM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BlanchetteLab/PhyloPGM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3168, @@ -364064,7 +382283,7 @@ More specifically, given community composition data, phylogenize links genes in biotools:primaryContact "Gilda Varliero" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0602, @@ -364085,7 +382304,7 @@ More specifically, given community composition data, phylogenize links genes in biotools:primaryContact "John Parkinson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0622, @@ -364105,7 +382324,7 @@ More specifically, given community composition data, phylogenize links genes in "Ngoc-Vinh Tran" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3053, @@ -364125,7 +382344,7 @@ More specifically, given community composition data, phylogenize links genes in biotools:primaryContact "Vinh Tran" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3056, @@ -364145,7 +382364,7 @@ More specifically, given community composition data, phylogenize links genes in biotools:primaryContact "Alice McHardy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3050, edam:topic_3293 ; @@ -364160,7 +382379,7 @@ An R package for biogeographic regionalization (the classification of geographic sc:url "https://github.com/darunabas/phyloregion" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099, @@ -364175,7 +382394,7 @@ An R package for biogeographic regionalization (the classification of geographic biotools:primaryContact "Shaojie Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -364194,7 +382413,7 @@ An R package for biogeographic regionalization (the classification of geographic sc:url "http://bayesweb.wadsworth.org/phyloscan/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -364218,7 +382437,7 @@ An R package for biogeographic regionalization (the classification of geographic biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0622, @@ -364233,7 +382452,7 @@ An R package for biogeographic regionalization (the classification of geographic sc:url "https://phylosift.wordpress.com/about-2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3524 ; @@ -364249,7 +382468,7 @@ An R package for biogeographic regionalization (the classification of geographic sc:url "http://www.ebi.ac.uk/goldman-srv/phylosim/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0637, @@ -364263,7 +382482,7 @@ An R package for biogeographic regionalization (the classification of geographic biotools:primaryContact "Lionel Guy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0749, edam:topic_3308, @@ -364283,8 +382502,33 @@ PhyloSofS (Phylogenies of Splicing isoforms Structures) is a fully automated com sc:name "PhyloSofS" ; sc:url "https://github.com/PhyloSofS-Team/PhyloSofS" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3175, + edam:topic_3293, + edam:topic_3944 ; + sc:citation , + "pmcid:PMC8733950", + "pubmed:35068947" ; + sc:description "A web-based tool to analyze paralogous clade divergence in phylogenetic trees." ; + sc:featureList edam:operation_0323, + edam:operation_0325, + edam:operation_0326, + edam:operation_0567 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Phylostat" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://phylo.io" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, edam:topic_0621, @@ -364305,7 +382549,7 @@ Select species from the list which follows the taxonomy. Then copy and paste or sc:url "http://vertlife.org/phylosubsets" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0654, @@ -364325,7 +382569,7 @@ Select species from the list which follows the taxonomy. Then copy and paste or biotools:primaryContact "Dominic J. Bennett" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3518 ; @@ -364340,7 +382584,7 @@ Select species from the list which follows the taxonomy. Then copy and paste or sc:url "http://www.phylotrac.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3277, @@ -364354,7 +382598,7 @@ Select species from the list which follows the taxonomy. Then copy and paste or sc:url "http://sourceforge.net/projects/phylotrack/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation "pubmed:20802801" ; @@ -364367,7 +382611,7 @@ Select species from the list which follows the taxonomy. Then copy and paste or sc:url "http://csurs.csr.uky.edu/phylotree/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3293, @@ -364382,7 +382626,7 @@ Select species from the list which follows the taxonomy. Then copy and paste or sc:url "https://github.com/sharpton/PhylOTU" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3293, @@ -364397,8 +382641,29 @@ Select species from the list which follows the taxonomy. Then copy and paste or sc:url "https://github.com/superphy/insilico-subtyping" ; biotools:primaryContact "Matthew Whiteside" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0199, + edam:topic_0625, + edam:topic_0749, + edam:topic_3676 ; + sc:citation ; + sc:description "Towards scalable phylogeny-aware inference of single-nucleotide variations from single-cell DNA sequencing data." ; + sc:featureList edam:operation_3196, + edam:operation_3227, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Phylovar" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/mae6/Phylovar.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0092 ; @@ -364416,7 +382681,7 @@ Select species from the list which follows the taxonomy. Then copy and paste or biotools:primaryContact "Michael Landis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0654 ; @@ -364432,18 +382697,18 @@ Select species from the list which follows the taxonomy. Then copy and paste or a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Protein sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_2924" ; + sc:name "Protein sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2924" ; + sc:name "Nucleic acid sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -364466,7 +382731,7 @@ Select species from the list which follows the taxonomy. Then copy and paste or biotools:primaryContact "Stephane Guindon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269, @@ -364486,14 +382751,14 @@ Select species from the list which follows the taxonomy. Then copy and paste or a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623 ; sc:citation ; @@ -364510,7 +382775,7 @@ Select species from the list which follows the taxonomy. Then copy and paste or biotools:primaryContact "GenOuest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_2269, edam:topic_3293 ; @@ -364528,11 +382793,15 @@ A collection of functions to do model-based phylogenetic analysis. It includes f sc:url "https://github.com/daijiang/phyr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2275 ; - sc:citation "pubmed:25950237" ; + sc:citation , + , + "pmcid:PMC5298202", + "pubmed:19247286", + "pubmed:25950237" ; sc:description "Major update to the original Phyre server. The new system is designed around the idea that you have a protein sequence/gene and want to predict its three-dimensional (3D) structure. It uses the alignment of hidden Markov models via HHsearch1 to significantly improve accuracy of alignment and detection rate." ; sc:featureList edam:operation_0300, edam:operation_0477, @@ -364545,7 +382814,7 @@ A collection of functions to do model-based phylogenetic analysis. It includes f sc:url "http://www.sbg.bio.ic.ac.uk/phyre2/html/page.cgi?id=index" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0194, edam:topic_0621, @@ -364562,7 +382831,7 @@ Protein repeats consisting of domains or motifs are involved in key biological p sc:url "https://github.com/ivanbelzen/PhyRepID/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -364580,14 +382849,12 @@ Protein repeats consisting of domains or motifs are involved in key biological p a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation , @@ -364605,7 +382872,7 @@ Protein repeats consisting of domains or motifs are involved in key biological p sc:url "http://bioit.dmbr.ugent.be/physbinder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3293, edam:topic_3944 ; @@ -364624,8 +382891,28 @@ To render the BMC Bioinformatics template version.""" ; sc:softwareHelp ; sc:url "https://github.com/McTavishLab/physcraper" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_2640, + edam:topic_3308 ; + sc:citation ; + sc:description "A sustainable integration of stochastic Boolean and agent-based modelling frameworks." ; + sc:featureList edam:operation_2426, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "PhysiBoSS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "2.0" ; + sc:url "https://github.com/PhysiBoSS/PhysiBoSS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, edam:topic_3315, @@ -364638,23 +382925,20 @@ To render the BMC Bioinformatics template version.""" ; sc:name "physical validation" ; sc:url "https://physical-validation.readthedocs.io" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3303, - edam:topic_3344 ; - sc:citation , - "pmcid:PMC6798687" ; - sc:description """A physician-scientist workforce dashboard for biomedical research institutions. - -OBJECTIVES SPECIFIC AIMS: A growing concern about the declining physician-scientist workforce prompted the 2014 National Institutes of Health (NIH) Physician Scientist Workforce to recommended that “tools for assessing the strength of the biomedical workforce” be developed. To aid strategic planning, the Oregon Clinical and Translational Research Institute convened key stakeholders at its home university, Oregon Health and Science University (OHSU), to survey the local landscape of physician scientists. Surprisingly, few consensus methods were available to measure and benchmark OHSU with respect to national comparators. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'OHSU', 'RGP-holding physician-scientists OHSU', 'physician-scientists', 'physician-scientist workforce'""" ; - sc:name "physician-scientists OHSU" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6798687/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description """PhysiCell-X is the distributed-shared parallel version of PhysiCell (http://physicell.org). PhysiCell is a open-source, +multi-physics, multi-scale, agent-based simulator for biological systems. It provides both the stage +(micro-environment) and actors (cells or agents) for simulation.""" ; + sc:license "BSD-3-Clause" ; + sc:name "PhysiCell-X" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.bsc.es/gsaxena/physicell_x" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0123 ; @@ -364667,7 +382951,7 @@ OBJECTIVES SPECIFIC AIMS: A growing concern about the declining physician-scient sc:url "http://sourceforge.net/projects/physico2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3303 ; sc:author "Marek Matejak" ; @@ -364689,7 +382973,7 @@ OBJECTIVES SPECIFIC AIMS: A growing concern about the declining physician-scient biotools:primaryContact "Marek Mateják" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0610, @@ -364709,7 +382993,7 @@ OBJECTIVES SPECIFIC AIMS: A growing concern about the declining physician-scient biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0634, @@ -364730,7 +383014,7 @@ OBJECTIVES SPECIFIC AIMS: A growing concern about the declining physician-scient "Coll F" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, edam:topic_3305, @@ -364748,7 +383032,7 @@ Phytebyte is an extensible software framework used to train machine learning mod sc:url "https://github.com/seanharr11/phytebyte" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, @@ -364770,8 +383054,38 @@ The program is based on the position specific scoring matrix (PSSM) algorithm an sc:name "Phyto-LRR" ; sc:url "https://phytolrr.com/findlrr" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2909" ; + sc:name "Organism name" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0846" ; + sc:name "Chemical formula" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0202, + edam:topic_0209, + edam:topic_0780, + edam:topic_2275, + edam:topic_3810 ; + sc:citation , + "pubmed:35234849" ; + sc:description "A platform for virtual screening and computer-aided drug designing." ; + sc:featureList edam:operation_0479, + edam:operation_2422, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:name "phytochemdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://phytochemdb.com/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -364793,7 +383107,7 @@ The program is based on the position specific scoring matrix (PSSM) algorithm an biotools:primaryContact "David M. Goodstein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3293, @@ -364810,7 +383124,7 @@ The program is based on the position specific scoring matrix (PSSM) algorithm an biotools:primaryContact "Stephen A. Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -364831,7 +383145,7 @@ The program is based on the position specific scoring matrix (PSSM) algorithm an biotools:primaryContact "Hai Fang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3318, edam:topic_3382, edam:topic_3474 ; @@ -364851,7 +383165,7 @@ Here we provide sample code to compute persistence images (PIs) using the propos sc:url "https://github.com/anirudhsom/PI-Net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -364879,18 +383193,18 @@ Here we provide sample code to compute persistence images (PIs) using the propos a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3247" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0989" ; + sc:encodingFormat "http://edamontology.org/format_3681" ; + sc:name "Protein identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3681" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Library", @@ -364918,7 +383232,7 @@ Here we provide sample code to compute persistence images (PIs) using the propos biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053 ; @@ -364932,7 +383246,7 @@ Here we provide sample code to compute persistence images (PIs) using the propos sc:url "http://www.dkfz.de/en/epidemiologie-krebserkrankungen/software/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2259 ; sc:author "Ramon Aragüés" ; @@ -364950,7 +383264,7 @@ Here we provide sample code to compute persistence images (PIs) using the propos sc:url "http://sbi.imim.es/piana/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0623, @@ -364971,7 +383285,7 @@ Here we provide sample code to compute persistence images (PIs) using the propos biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, edam:topic_3295, @@ -364993,7 +383307,7 @@ Retrieve the results by the job ID. sc:url "http://piano.rnamd.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0797, edam:topic_2885, @@ -365008,7 +383322,7 @@ Retrieve the results by the job ID. sc:url "http://www.ikmb.uni-kiel.de/pibase/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -365027,14 +383341,12 @@ Retrieve the results by the job ID. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2872" ; - sc:name "ID list" ; - sc:sameAs "http://edamontology.org/data_2872" ] ; + sc:additionalType "http://edamontology.org/data_2872" ; + sc:name "ID list" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:name "Genotype/phenotype report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0797, edam:topic_3174 ; @@ -365054,7 +383366,7 @@ Retrieve the results by the job ID. sc:url "https://github.com/univieCUBE/PICA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3056, @@ -365069,21 +383381,21 @@ Retrieve the results by the job ID. biotools:primaryContact "Vikas Bansal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Assigns all the reads in a file to a single new read-group. This tool accepts INPUT BAM and SAM files or URLs from the Global Alliance for Genomics and Health (GA4GH)." ; sc:name "picard_AddOrReplaceReadGroups" ; sc:url "https://gatk.broadinstitute.org/hc/en-us/articles/360037226472-AddOrReplaceReadGroups-Picard-" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -365100,14 +383412,14 @@ Retrieve the results by the job ID. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -365124,19 +383436,19 @@ Retrieve the results by the job ID. biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Converts a BED file to a Picard Interval List. This tool provides easy conversion from BED to the Picard interval_list format which is required by many Picard processing tools. Note that the coordinate system of BED files is such that the first base or position in a sequence is numbered \"0\", while in interval_list files it is numbered \"1\"." ; sc:name "picard_bedtointervallist" ; sc:url "https://gatk.broadinstitute.org/hc/en-us/articles/360036883931-BedToIntervalList-Picard-" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Produces a summary of alignment metrics from a SAM or BAM file. This tool takes a SAM/BAM file input and produces metrics detailing the quality of the read alignments as well as the proportion of the reads that passed machine signal-to-noise threshold quality filters. Note that these quality filters are specific to Illumina data; for additional information, please see the corresponding GATK Dictionary entry." ; sc:name "picard_collectalignmentsummarymetrics" ; sc:url "https://gatk.broadinstitute.org/hc/en-us/articles/360036883111-CollectAlignmentSummaryMetrics-Picard-" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """Collects hybrid-selection (HS) metrics for a SAM or BAM file. This tool takes a SAM/BAM file input and collects metrics that are specific for sequence datasets generated through hybrid-selection. Hybrid-selection (HS) is the most commonly used technique to capture exon-specific sequences for targeted sequencing experiments such as exome sequencing; for more information, please see the corresponding GATK Dictionary entry.""" ; @@ -365145,18 +383457,18 @@ This tool takes a SAM/BAM file input and collects metrics that are specific for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -365174,18 +383486,18 @@ This tool takes a SAM/BAM file input and collects metrics that are specific for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -365203,18 +383515,18 @@ This tool takes a SAM/BAM file input and collects metrics that are specific for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -365232,18 +383544,18 @@ This tool takes a SAM/BAM file input and collects metrics that are specific for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -365260,7 +383572,7 @@ This tool takes a SAM/BAM file input and collects metrics that are specific for biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3168 ; @@ -365276,18 +383588,18 @@ This tool takes a SAM/BAM file input and collects metrics that are specific for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -365305,18 +383617,18 @@ This tool takes a SAM/BAM file input and collects metrics that are specific for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -365334,22 +383646,22 @@ This tool takes a SAM/BAM file input and collects metrics that are specific for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -365367,14 +383679,14 @@ This tool takes a SAM/BAM file input and collects metrics that are specific for a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -365391,7 +383703,7 @@ This tool takes a SAM/BAM file input and collects metrics that are specific for biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -365407,7 +383719,7 @@ picCASO is a MATLAB package to simulate the dynamics of spatial patterning of a sc:url "https://github.com/RamanLab/picCASO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -365427,18 +383739,16 @@ picCASO is a MATLAB package to simulate the dynamics of spatial patterning of a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1009" ; - sc:name "Protein name" ; - sc:sameAs "http://edamontology.org/data_1009" ], + sc:additionalType "http://edamontology.org/data_1009" ; + sc:name "Protein name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ], + sc:additionalType "http://edamontology.org/data_1025" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2338" ; - sc:name "Ontology identifier" ; - sc:sameAs "http://edamontology.org/data_2338" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2338" ; + sc:name "Ontology identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -365470,7 +383780,7 @@ picCASO is a MATLAB package to simulate the dynamics of spatial patterning of a "Nicholas Moschonas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0736, edam:topic_3068, edam:topic_3474, @@ -365490,22 +383800,22 @@ Stable releases can be downloaded from.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Data reference" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -365526,7 +383836,7 @@ Stable releases can be downloaded from.""" ; biotools:primaryContact "Chia-Lin Wei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -365544,14 +383854,12 @@ Stable releases can be downloaded from.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1016" ; - sc:name "Sequence position" ; - sc:sameAs "http://edamontology.org/data_1016" ] ; + sc:additionalType "http://edamontology.org/data_1016" ; + sc:name "Sequence position" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102 ; @@ -365570,7 +383878,7 @@ Stable releases can be downloaded from.""" ; biotools:primaryContact "Loredana Le Pera" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640 ; sc:citation ; @@ -365581,7 +383889,7 @@ Stable releases can be downloaded from.""" ; sc:url "https://sites.google.com/site/troncopackage/picnic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3053 ; @@ -365594,7 +383902,7 @@ Stable releases can be downloaded from.""" ; sc:url "http://faculty.cs.niu.edu/~hou/PicoInversion.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168 ; @@ -365611,18 +383919,15 @@ Stable releases can be downloaded from.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2907" ; - sc:name "Protein accession" ; - sc:sameAs "http://edamontology.org/data_2907" ] ; + sc:additionalType "http://edamontology.org/data_2907" ; + sc:name "Protein accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2907" ; - sc:name "Protein accession" ; - sc:sameAs "http://edamontology.org/data_2907" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2907" ; + sc:name "Protein accession" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3345 ; @@ -365643,7 +383948,7 @@ Stable releases can be downloaded from.""" ; biotools:primaryContact "PRIDE support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3174, @@ -365661,7 +383966,7 @@ Stable releases can be downloaded from.""" ; biotools:primaryContact "Curtis Huttenhower" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_3174, @@ -365683,7 +383988,7 @@ Stable releases can be downloaded from.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0160, @@ -365706,7 +384011,7 @@ Stable releases can be downloaded from.""" ; biotools:primaryContact "Renan Sauteraud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -365728,14 +384033,14 @@ Original PICS functionality extended with batch processing; result file download a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2099" ; - sc:name "Name" ; - sc:sameAs "http://edamontology.org/data_2099" ] ; + sc:additionalType "http://edamontology.org/data_2099" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0204 ; sc:citation ; @@ -365748,8 +384053,31 @@ Original PICS functionality extended with batch processing; result file download sc:softwareHelp ; sc:url "http://pictar.mdc-berlin.de/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_2269, + edam:topic_2640, + edam:topic_3299, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9344857", + "pubmed:35642899" ; + sc:description "Estimation of cancer cell fractions and clone trees from multi-region sequencing of tumors." ; + sc:featureList edam:operation_0337, + edam:operation_3227, + edam:operation_3233 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PICTograph" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/KarchinLab/pictograph" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -365767,14 +384095,13 @@ Original PICS functionality extended with batch processing; result file download a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2344" ; - sc:name "Pathway ID (NCI-Nature)" ; - sc:sameAs "http://edamontology.org/data_2344" ] ; + sc:additionalType "http://edamontology.org/data_2344" ; + sc:name "Pathway ID (NCI-Nature)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2984" ; - sc:name "Pathway or network report" ; - sc:sameAs "http://edamontology.org/data_2984" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2984" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Pathway or network report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -365785,7 +384112,7 @@ Original PICS functionality extended with batch processing; result file download sc:url "http://pid.nci.nih.gov/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3071, @@ -365804,7 +384131,7 @@ Original PICS functionality extended with batch processing; result file download sc:url "http://www.gsi.de/bio-pide" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -365826,7 +384153,7 @@ Original PICS functionality extended with batch processing; result file download biotools:primaryContact "Center for Systems Biology, National Taiwan University" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, edam:topic_2885, @@ -365847,7 +384174,7 @@ The high variability and somatic stability of DNA fingerprints can be used to id sc:url "https://ssr.pids.online:8445/ssr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -365869,7 +384196,7 @@ The high variability and somatic stability of DNA fingerprints can be used to id sc:url "https://www.ncbi.nlm.nih.gov/CBBresearch/Wilbur/IRET/PIE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_2229, @@ -365884,8 +384211,30 @@ PieParty is a visualization tool allowing to represent every cell in single-cell sc:name "PieParty" ; sc:url "https://github.com/harbourlab/PieParty" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0634, + edam:topic_3053, + edam:topic_3336, + edam:topic_3342 ; + sc:citation , + "pmcid:PMC9252812", + "pubmed:35610036" ; + sc:description "Web-based facilities tailored for genetic target prioritisation harnessing human disease genetics, functional genomics and protein interactions." ; + sc:featureList edam:operation_0282, + edam:operation_3226, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "PiER" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.genetictargets.com/PiER" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -365902,7 +384251,7 @@ PieParty is a visualization tool allowing to represent every cell in single-cell biotools:primaryContact "Mathieu Gautier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -365925,18 +384274,16 @@ PieParty is a visualization tool allowing to represent every cell in single-cell a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2302" ; - sc:name "STRING ID" ; - sc:sameAs "http://edamontology.org/data_2302" ], + sc:additionalType "http://edamontology.org/data_2628" ; + sc:name "BioGRID interaction ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2628" ; - sc:name "BioGRID interaction ID" ; - sc:sameAs "http://edamontology.org/data_2628" ] ; + sc:additionalType "http://edamontology.org/data_2302" ; + sc:name "STRING ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3932" ; - sc:name "Q-value" ; - sc:sameAs "http://edamontology.org/data_3932" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3932" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Q-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -365961,14 +384308,12 @@ PieParty is a visualization tool allowing to represent every cell in single-cell a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082 ; sc:citation , @@ -365986,7 +384331,7 @@ PieParty is a visualization tool allowing to represent every cell in single-cell biotools:primaryContact "Paolo Marcatili" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_1317 ; sc:citation "pmcid:PMC5570210", @@ -365997,7 +384342,7 @@ PieParty is a visualization tool allowing to represent every cell in single-cell sc:url "https://cassandra.med.uniroma1.it/pigspro/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -366017,8 +384362,31 @@ Most biological processes involve multiple proteins interacting with each other. sc:name "PIIMS" ; sc:url "http://chemyang.ccnu.edu.cn/ccb/server/PIIMS/index.php" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2258, + edam:topic_3172, + edam:topic_3314 ; + sc:citation ; + sc:description "A Python-based Informatics Kit for Analysing Chemical Units." ; + sc:featureList edam:operation_0337, + edam:operation_1812 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PIKAChU" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/BTheDragonMaster/pikachu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0108, @@ -366044,7 +384412,7 @@ Most biological processes involve multiple proteins interacting with each other. sc:url "https://github.com/JieZheng-ShanghaiTech/PIKE-R2P" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -366073,7 +384441,7 @@ Most biological processes involve multiple proteins interacting with each other. biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0798, edam:topic_2885 ; @@ -366089,29 +384457,45 @@ Most biological processes involve multiple proteins interacting with each other. sc:url "https://www.drive5.com/piler/" ; biotools:primaryContact "Robert C. Edgar" . - a sc:SoftwareApplication ; - sc:description "PILER is a tool for identification and classification of genomic repeats." ; - sc:name "PILER" ; - sc:url "https://www.drive5.com/piler/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0157 ; + sc:citation , + "pmcid:PMC1790904", + "pubmed:17239253" ; + sc:description "software for finding CRISPR repeats" ; + sc:featureList edam:operation_0237 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "pilercr" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.drive5.com/pilercr/" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3168 ; @@ -366129,14 +384513,14 @@ Most biological processes involve multiple proteins interacting with each other. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -366152,7 +384536,7 @@ Most biological processes involve multiple proteins interacting with each other. biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -366169,7 +384553,7 @@ Most biological processes involve multiple proteins interacting with each other. biotools:primaryContact "Greene Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3382, edam:topic_3474 ; @@ -366189,9 +384573,12 @@ A JavaScript Library for Interactive Visual Piling.""" ; sc:url "https://piling.js.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; + sc:citation , + "pmcid:PMC4237348", + "pubmed:25409509" ; sc:description "Read alignment analysis to diagnose, report, and automatically improve de novo genome assemblies." ; sc:featureList edam:operation_0310, edam:operation_2945, @@ -366205,7 +384592,7 @@ A JavaScript Library for Interactive Visual Piling.""" ; sc:url "http://www.broadinstitute.org/software/pilon/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0769, @@ -366221,8 +384608,26 @@ A JavaScript Library for Interactive Visual Piling.""" ; sc:url "https://github.com/reinator/pimba" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0820, + edam:topic_3444 ; + sc:citation , + "pubmed:35730989" ; + sc:description "Voxel-wise intermodal coupling analysis of two or more modalities using local covariance decomposition." ; + sc:featureList edam:operation_0269, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "pIMCo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/hufengling/pIMCo" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0605, edam:topic_3336, @@ -366240,10 +384645,10 @@ Abstract:The accumulation of various types of drug informatics data and comput a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Experiment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0607 ; @@ -366262,8 +384667,31 @@ Abstract:The accumulation of various types of drug informatics data and comput sc:url "https://www.limswiki.org/index.php/PiMS" ; biotools:primaryContact "Chris Morris" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0621, + edam:topic_3168, + edam:topic_3175 ; + sc:citation , + "pmcid:PMC8627104", + "pubmed:34837944" ; + sc:description "Efficient iterative Hi-C scaffolder based on N-best neighbors." ; + sc:featureList edam:operation_0479, + edam:operation_0524, + edam:operation_3216, + edam:operation_3219 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "pin_hic" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/dfguan/pin_hic" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -366286,7 +384714,7 @@ Abstract:The accumulation of various types of drug informatics data and comput biotools:primaryContact "Jianmin Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -366301,7 +384729,7 @@ Abstract:The accumulation of various types of drug informatics data and comput sc:url "http://www.sbg.bio.ic.ac.uk/~pinalog/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0128, @@ -366317,7 +384745,7 @@ Abstract:The accumulation of various types of drug informatics data and comput biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -366336,7 +384764,7 @@ Abstract:The accumulation of various types of drug informatics data and comput sc:url "http://moma.ki.au.dk/prj/pincage/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, edam:topic_0749, @@ -366354,18 +384782,18 @@ Abstract:The accumulation of various types of drug informatics data and comput a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175, edam:topic_3325 ; @@ -366389,18 +384817,18 @@ Abstract:The accumulation of various types of drug informatics data and comput a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -366418,7 +384846,7 @@ Abstract:The accumulation of various types of drug informatics data and comput biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0128, @@ -366439,7 +384867,7 @@ Ontology and Pathway Term Status.""" ; sc:url "https://github.com/csmc-vaneykjlab/pine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2885, @@ -366459,7 +384887,7 @@ CRISPR-based technologies are paramount in genome engineering and synthetic biol sc:url "https://github.com/xiaowanglab/PINE-CONE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0204, @@ -366484,7 +384912,7 @@ Functional characterization of the noncoding genome is essential for the biologi sc:url "http://genetics.bwh.harvard.edu/pines/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -366503,7 +384931,7 @@ PiNET server is a server for mapping and annotaion of protein peptides.""" ; sc:url "http://www.pinet-server.org/pinet/peptideToProtein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0166, @@ -366523,7 +384951,7 @@ PiNET server is a server for mapping and annotaion of protein peptides.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3125, @@ -366548,22 +384976,18 @@ PiNET server is a server for mapping and annotaion of protein peptides.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1082" ; - sc:name "Pathway or network identifier" ; - sc:sameAs "http://edamontology.org/data_1082" ], + sc:additionalType "http://edamontology.org/data_1082" ; + sc:name "Pathway or network identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2338" ; - sc:name "Ontology identifier" ; - sc:sameAs "http://edamontology.org/data_2338" ] ; + sc:additionalType "http://edamontology.org/data_2338" ; + sc:name "Ontology identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0085 ; sc:citation ; @@ -366580,7 +385004,7 @@ PiNET server is a server for mapping and annotaion of protein peptides.""" ; biotools:primaryContact "Steven Maere" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0154, @@ -366602,7 +385026,7 @@ PiNET server is a server for mapping and annotaion of protein peptides.""" ; sc:url "https://pinir.ncl.res.in" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, edam:topic_3314, @@ -366623,7 +385047,7 @@ PiNN is a Python library built on top of TensorFlow for building atomic neural n sc:url "https://github.com/Teoroo-CMC/PiNN/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0601, edam:topic_2533, @@ -366643,26 +385067,26 @@ PiNN is a Python library built on top of TensorFlow for building atomic neural n a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3115" ; - sc:name "Microarray metadata" ; - sc:sameAs "http://edamontology.org/data_3115" ], + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Gene expression matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3115" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Microarray metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Processed microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0085, @@ -366686,7 +385110,7 @@ PiNN is a Python library built on top of TensorFlow for building atomic neural n biotools:primaryContact "Olli-Pekka Huovilainen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -366708,7 +385132,7 @@ PiNN is a Python library built on top of TensorFlow for building atomic neural n biotools:primaryContact "PINT Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -366729,7 +385153,7 @@ PiNN is a Python library built on top of TensorFlow for building atomic neural n biotools:primaryContact "Yves Moreau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099 ; @@ -366740,8 +385164,30 @@ PiNN is a Python library built on top of TensorFlow for building atomic neural n sc:softwareVersion "1.1" ; sc:url "http://www.softpedia.com/get/Science-CAD/Pintail.shtml" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3170, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC8796362", + "pubmed:34849583" ; + sc:description "Penalized Integrative Matrix Factorization method for Multi-omics data." ; + sc:featureList edam:operation_3432, + edam:operation_3435, + edam:operation_3659, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PIntMF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/mpierrejean/pintmf" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3320, @@ -366764,7 +385210,7 @@ PiNN is a Python library built on top of TensorFlow for building atomic neural n "Yuri Pirola" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, @@ -366780,7 +385226,7 @@ PiNN is a Python library built on top of TensorFlow for building atomic neural n "Yvonne Lara" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2259 ; @@ -366796,10 +385242,10 @@ PiNN is a Python library built on top of TensorFlow for building atomic neural n a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -366821,7 +385267,7 @@ PiNN is a Python library built on top of TensorFlow for building atomic neural n sc:url "https://vincentalcazer.shinyapps.io/Panel_informativity_optimizer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -366845,7 +385291,7 @@ PiNN is a Python library built on top of TensorFlow for building atomic neural n sc:url "https://github.com/noble-research-institute/PIP_SNP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation "pubmed:24931978" ; @@ -366860,7 +385306,7 @@ PiNN is a Python library built on top of TensorFlow for building atomic neural n sc:url "http://sourceforge.net/projects/pipasic/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -366888,7 +385334,7 @@ PiNN is a Python library built on top of TensorFlow for building atomic neural n sc:url "http://www.lbgi.fr/pipealign" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0769, edam:topic_3170 ; @@ -366902,60 +385348,30 @@ PiNN is a Python library built on top of TensorFlow for building atomic neural n sc:name "pipeComp" ; sc:url "https://github.com/plger/pipeComp" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0091, - edam:topic_0203, - edam:topic_0602, - edam:topic_0769, - edam:topic_3170 ; - sc:citation ; - sc:description """A comprehensive RNA-Seq pipeline includes meta-analysis, interactivity and automatic reporting. - -There are many methods available for each phase of the RNA-Seq analysis and each of them uses different algorithms. It is therefore useful to identify a pipeline that combines the best tools in terms of time and results. For this purpose, we compared five different pipelines, obtained by combining the most used tools in RNA-Seq analysis. Using RNA-Seq data on samples of different Acute Myeloid Leukemia (AML) cell lines, we compared five pipelines from the alignment to the differential expression analysis (DEA). For each one we evaluated the peak of RAM and time and then compared the differentially expressed genes identified by each pipeline. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'recurs', 'meta-analysis', 'DEA', 'HISAT2' (bio.tools/hisat2)""" ; - sc:featureList edam:operation_3223, - edam:operation_3454, - edam:operation_3680, - edam:operation_3800 ; - sc:name "pipeline" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.27317V2" . - - a sc:SoftwareApplication ; + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, - edam:topic_0625, - edam:topic_0632, - edam:topic_3168, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6886866", - "pubmed:31738756" ; - sc:description """High-throughput genotyping of a full voltage-gated sodium channel gene via genomic DNA using target capture sequencing and analytical pipeline MoNaS to discover novel insecticide resistance mutations. - -A pipeline to genotype mosquito's voltage-gated sodium channel genes using NGS data. - -(Mosquito Na+ channel mutation Search). - -A pipeline to genotype mosquito's voltage-gated sodium channel genes using NGS data See detailed description in the GitHub repository.(https://github.com/ItokawaK/MoNaS/blob/master/README.md). - -An automated pipeline to genotype mosquito's voltage-gated sodium channel genes using NGS data. - -MoNaS (Mosquito Na+ channel mutation Search) is an automated pipeline conducting genotyping of voltage-gated sodium channel (VGSC) in mosquitos from NGS reads. - -!!Upon starting your analysis, we will consider you have allowed the following condition!!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'MoNaS', 'VGSC', 'insecticide resistance VGSC', 'VGSC CDSs'""" ; - sc:featureList edam:operation_3185, - edam:operation_3192, - edam:operation_3196, - edam:operation_3216 ; - sc:name "pipeline-MoNaS" ; - sc:url "https://github.com/ItokawaK/MoNaS" . + edam:topic_0769, + edam:topic_2640, + edam:topic_3577, + edam:topic_3676 ; + sc:citation , + "pubmed:35751816" ; + sc:description "Somatic Variant Calling Workflow for Ion Torrent Sequencing Data." ; + sc:featureList edam:operation_3227, + edam:operation_3675, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PipeIT2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ckynlab/PipeIT2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -366978,7 +385394,7 @@ MoNaS (Mosquito Na+ channel mutation Search) is an automated pipeline conducting biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0607, @@ -366995,7 +385411,7 @@ MoNaS (Mosquito Na+ channel mutation Search) is an automated pipeline conducting "Yazhou Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3524 ; @@ -367011,7 +385427,7 @@ MoNaS (Mosquito Na+ channel mutation Search) is an automated pipeline conducting biotools:primaryContact "B. Nevado" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3299, edam:topic_3474 ; @@ -367027,10 +385443,9 @@ PipeMaster is an R-package to build demographic models and simulate data under t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0128, @@ -367050,8 +385465,26 @@ PipeMaster is an R-package to build demographic models and simulate data under t "Windows" ; sc:url "https://github.com/ibivu/pipenn/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3070 ; + sc:citation , + "pmcid:PMC8859850", + "pubmed:35021620" ; + sc:description "An Open Source Web Application to Support Pipetting into Microplates." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Pipette Show" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://pipette-show.de" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3174, @@ -367070,7 +385503,7 @@ PipeMaster is an R-package to build demographic models and simulate data under t biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -367087,7 +385520,7 @@ PipeMaster is an R-package to build demographic models and simulate data under t sc:url "http://bowhan.github.io/piPipes/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -367111,18 +385544,18 @@ PipeMaster is an R-package to build demographic models and simulate data under t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_3009" ; + sc:name "Sequence assembly" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_2206" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308 ; sc:citation ; @@ -367137,7 +385570,7 @@ PipeMaster is an R-package to build demographic models and simulate data under t sc:url "https://ohlerlab.mdc-berlin.de/software/Pipeline_for_the_Identification_of_Plant_miRNAs_84/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2640, @@ -367157,7 +385590,7 @@ PipeMaster is an R-package to build demographic models and simulate data under t sc:url "https://pipo.vhio.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "PIPprofileR is a tool to easily generate and explore Profiles of Percent Identical Positions from a fasta file (nucloetide or peptide sequences)." ; sc:isAccessibleForFree true ; sc:license "BSD-3-Clause" ; @@ -367168,7 +385601,7 @@ PipeMaster is an R-package to build demographic models and simulate data under t sc:url "https://github.com/IFB-ElixirFr/PIPprofileR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -367187,18 +385620,18 @@ PipeMaster is an R-package to build demographic models and simulate data under t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3483" ; - sc:name "Spectrum" ; - sc:sameAs "http://edamontology.org/data_3483" ] ; + sc:additionalType "http://edamontology.org/data_3483" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0601, edam:topic_3520 ; @@ -367217,18 +385650,18 @@ PipeMaster is an R-package to build demographic models and simulate data under t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3621" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0121, @@ -367255,7 +385688,7 @@ PipeMaster is an R-package to build demographic models and simulate data under t "Roland Kanaar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0114, @@ -367276,14 +385709,13 @@ The pique package is a high efficiency peak finder for ChIP-seq.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ] ; + sc:additionalType "http://edamontology.org/data_0989" ; + sc:name "Protein identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -367297,7 +385729,7 @@ The pique package is a high efficiency peak finder for ChIP-seq.""" ; sc:url "http://pir.georgetown.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0099, @@ -367316,7 +385748,7 @@ The pique package is a high efficiency peak finder for ChIP-seq.""" ; sc:url "http://www.bioinformatics.sussex.ac.uk/PIRANHA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0602, @@ -367329,8 +385761,31 @@ The pique package is a high efficiency peak finder for ChIP-seq.""" ; sc:softwareHelp ; sc:url "http://smithlabresearch.org/software/piranha/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_3168, + edam:topic_3295, + edam:topic_3320, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8728152", + "pubmed:34871445" ; + sc:description "piRBase is a manually curated resource of piRNAs, which focused on piRNA function analyses as well as piRNA annotation." ; + sc:featureList edam:operation_2422, + edam:operation_3208, + edam:operation_3432, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:name "piRBase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bigdata.ibp.ac.cn/piRBase" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_2640, @@ -367350,7 +385805,7 @@ piRBase is a manually curated resource of piRNAs, which focused on piRNA functio sc:url "http://www.regulatoryrna.org/database/piRNA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -367371,7 +385826,7 @@ piRBase is a manually curated resource of piRNAs, which focused on piRNA functio sc:url "https://www.pirnadb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -367385,7 +385840,7 @@ piRBase is a manually curated resource of piRNAs, which focused on piRNA functio sc:url "http://www.regulatoryrna.org/software/piRNA/piRNA_target_mRNA/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0203, edam:topic_0659, @@ -367403,8 +385858,31 @@ piRNAPred is an algorithm for the computational identification of piRNAs using f sc:name "piRNAPred" ; sc:url "https://github.com/IshaMonga/piRNAPred" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0621, + edam:topic_0634, + edam:topic_0659, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8786328", + "pubmed:34965192" ; + sc:description "An updated resource for searching through the piRNAome of multiple species." ; + sc:featureList edam:operation_0313, + edam:operation_2421, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:name "piRNAQuest" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "2" ; + sc:url "http://dibresources.jcbose.ac.in/zhumur/pirnaquest2" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3168, edam:topic_3293 ; @@ -367417,7 +385895,7 @@ piRNAPred is an algorithm for the computational identification of piRNAs using f sc:url "https://github.com/richelbilderbeek/pirouette_example_30/blob/master/README.md" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, edam:topic_3322, @@ -367431,12 +385909,30 @@ piRNAPred is an algorithm for the computational identification of piRNAs using f sc:name "piRPheno" ; sc:url "http://www.biomedical-web.com/pirpheno" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3511 ; + sc:citation , + "pubmed:22508794" ; + sc:description """pIRS is a program for simulating paired-end reads from a reference genome. It +is optimized for simulating reads similar to those generated from the Illumina +platform.""" ; + sc:featureList edam:operation_2426 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "pirs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/galaxy001/pirs" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "DNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659 ; sc:citation ; @@ -367454,14 +385950,13 @@ piRNAPred is an algorithm for the computational identification of piRNAs using f a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1136" ; - sc:name "PIRSF ID" ; - sc:sameAs "http://edamontology.org/data_1136" ] ; + sc:additionalType "http://edamontology.org/data_1136" ; + sc:name "PIRSF ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein family report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0623 ; @@ -367476,7 +385971,7 @@ piRNAPred is an algorithm for the computational identification of piRNAs using f sc:url "http://pir.georgetown.edu/pirwww/dbinfo/pirsf.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0092, @@ -367497,7 +385992,7 @@ piRNAPred is an algorithm for the computational identification of piRNAs using f sc:url "http://www.ebi.ac.uk/msd-srv/prot_int/pistart.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0593, edam:topic_0769, @@ -367526,7 +386021,7 @@ The mobile element that conveys methicillin resistance to staph includes a gene sc:url "https://sbgrid.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Script" ; @@ -367563,7 +386058,7 @@ In addition, two related R packages were developed: pisar -- R support for pISA- biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -367583,7 +386078,7 @@ In addition, two related R packages were developed: pisar -- R support for pISA- "Roland Dunbrack" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0621 ; sc:citation , @@ -367598,7 +386093,7 @@ In addition, two related R packages were developed: pisar -- R support for pISA- biotools:primaryContact "Mike Cyterski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2885, edam:topic_3055, @@ -367623,10 +386118,9 @@ PISCES: pipeline for rapid transcript quantitation, genetic fingerprinting, and a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2814 ; @@ -367645,7 +386139,7 @@ PISCES: pipeline for rapid transcript quantitation, genetic fingerprinting, and biotools:primaryContact "Roman Laskowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -367660,7 +386154,7 @@ PISCES: pipeline for rapid transcript quantitation, genetic fingerprinting, and sc:url "http://sites.google.com/site/pitufosoftware" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3520 ; @@ -367675,7 +386169,7 @@ PISCES: pipeline for rapid transcript quantitation, genetic fingerprinting, and sc:url "http://dtai.cs.kuleuven.be/ml/systems/pius/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -367693,7 +386187,7 @@ PISCES: pipeline for rapid transcript quantitation, genetic fingerprinting, and sc:url "http://acgt.cs.tau.ac.il/pivot/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0199, @@ -367715,7 +386209,7 @@ PIVOTAL is a computational tool for prioritizing variants of uncertain significa sc:url "http://pivotal.yulab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3517 ; @@ -367731,7 +386225,7 @@ PIVOTAL is a computational tool for prioritizing variants of uncertain significa sc:url "https://github.com/siqixu/mr.pivw" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3172, @@ -367748,7 +386242,7 @@ PIVOTAL is a computational tool for prioritizing variants of uncertain significa "Thomas Metz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_2269, @@ -367769,14 +386263,8 @@ Unbiased estimation of nucleotide diversity within and between populations.""" ; sc:softwareHelp ; sc:url "https://anaconda.org/conda-forge/pixy" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:description "Piya Sen Kolkata Escorts Our Elite Call Girls and VIP escort in Kolkata are waiting independent Female Model Housewife Girl Escorts Agency +917595811660" ; - sc:name "piya sen" ; - sc:url "https://www.piyasen.com" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3512 ; sc:description "Fast fusion detection using kallisto" ; sc:featureList edam:operation_0415 ; @@ -367784,7 +386272,7 @@ Unbiased estimation of nucleotide diversity within and between populations.""" ; sc:url "https://github.com/pmelsted/pizzly" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3170, @@ -367801,7 +386289,7 @@ Unbiased estimation of nucleotide diversity within and between populations.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3375, edam:topic_3407 ; @@ -367819,7 +386307,7 @@ Pharmacokinetics is the study of drug absorption, distribution, metabolism, and sc:url "https://ek-lee.shinyapps.io/PKconverter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -367836,7 +386324,7 @@ Pharmacokinetics is the study of drug absorption, distribution, metabolism, and sc:url "http://enzyme.ucd.ie/cgi-bin/pKD/server_start.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3316 ; @@ -367854,16 +386342,33 @@ Pharmacokinetics is the study of drug absorption, distribution, metabolism, and sc:url "http://bioconductor.org/packages/release/bioc/html/pkgDepTools.html" ; biotools:primaryContact "Seth Falcon" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0091 ; + sc:citation , + "pubmed:35801905" ; + sc:description "A tool for analyzing dependency heaviness of R packages." ; + sc:featureList edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "pkgndep" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://cran.r-project.org/package=pkgndep" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3366, @@ -367879,7 +386384,7 @@ Pharmacokinetics is the study of drug absorption, distribution, metabolism, and sc:url "http://www.uib.no/en/rg/probe/66698/pklfilemerger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -367897,7 +386402,7 @@ Pharmacokinetics is the study of drug absorption, distribution, metabolism, and sc:url "http://pknot.life.nctu.edu.tw/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0099 ; @@ -367910,7 +386415,7 @@ Pharmacokinetics is the study of drug absorption, distribution, metabolism, and sc:url "http://eddylab.org/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -367933,7 +386438,7 @@ Pharmacokinetics is the study of drug absorption, distribution, metabolism, and biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -367958,7 +386463,7 @@ Pharmacokinetics is the study of drug absorption, distribution, metabolism, and sc:url "https://pypka.org/pKPDB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0202, edam:topic_2269, @@ -367974,8 +386479,30 @@ Pharmacokinetics is the study of drug absorption, distribution, metabolism, and sc:softwareHelp ; sc:url "https://nanhung.rbind.io/pksensi/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0128, + edam:topic_0154, + edam:topic_0601, + edam:topic_0749 ; + sc:citation , + "pubmed:34661630" ; + sc:description "A novel method for predicting kinase of specific phosphorylation sites based on maximum weighted bipartite matching algorithm and phosphorylation sequence enrichment analysis." ; + sc:featureList edam:operation_0267, + edam:operation_0417, + edam:operation_2492 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PKSPS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/guoxinyunncu/PKSPS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, edam:topic_0160 ; @@ -367989,7 +386516,7 @@ Pharmacokinetics is the study of drug absorption, distribution, metabolism, and sc:url "http://bliulab.net/PL-search/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3365, @@ -368004,7 +386531,7 @@ Pharmacokinetics is the study of drug absorption, distribution, metabolism, and sc:url "http://bioinformatics.ust.hk/Software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3474, edam:topic_3510 ; @@ -368020,14 +386547,14 @@ Pharmacokinetics is the study of drug absorption, distribution, metabolism, and a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -368043,7 +386570,7 @@ Pharmacokinetics is the study of drug absorption, distribution, metabolism, and biotools:primaryContact "Björn Usadel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170 ; @@ -368058,7 +386585,7 @@ Single-cell RNA-Sequencing (scRNA-Seq) has improved our understanding of individ sc:url "https://placentacellenrich.gdcb.iastate.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -368076,7 +386603,7 @@ Single-cell RNA-Sequencing (scRNA-Seq) has improved our understanding of individ biotools:primaryContact "Lennart Martens" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780 ; sc:citation , "pmcid:PMC7438957", @@ -368086,7 +386613,7 @@ Single-cell RNA-Sequencing (scRNA-Seq) has improved our understanding of individ sc:url "http://119.81.164.251/plamom/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, @@ -368107,7 +386634,7 @@ Single-cell RNA-Sequencing (scRNA-Seq) has improved our understanding of individ biotools:primaryContact "M. Krallinger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Ontology", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -368131,7 +386658,7 @@ Single-cell RNA-Sequencing (scRNA-Seq) has improved our understanding of individ sc:url "https://www.ebi.ac.uk/ols/ontologies/plana" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, @@ -368153,7 +386680,7 @@ Single-cell RNA-Sequencing (scRNA-Seq) has improved our understanding of individ biotools:primaryContact "Jim Kent" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3172, edam:topic_3174, @@ -368176,7 +386703,7 @@ The Planet Microbe cyberinfrastructure system for marine microbiology brings tog sc:url "https://www.planetmicrobe.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, edam:topic_0621, @@ -368192,7 +386719,7 @@ The Planet Microbe cyberinfrastructure system for marine microbiology brings tog sc:url "https://lobolab.umbc.edu/plangexq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0654, edam:topic_0780, @@ -368213,7 +386740,7 @@ The ITS, ITS1 and ITS2 reference dataset for subkingdom Viridiplantae.""" ; sc:url "https://github.com/apallavicini/PLANiTS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3308, @@ -368230,7 +386757,7 @@ The ITS, ITS1 and ITS2 reference dataset for subkingdom Viridiplantae.""" ; biotools:primaryContact "J F Abril" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -368248,7 +386775,7 @@ The ITS, ITS1 and ITS2 reference dataset for subkingdom Viridiplantae.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, edam:topic_3474 ; @@ -368265,7 +386792,7 @@ Plant 3D (P3D) automatically extracts common phenotyping features of interest fr sc:url "https://github.com/iziamtso/P3D/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0780, @@ -368285,7 +386812,7 @@ Plant 3D (P3D) automatically extracts common phenotyping features of interest fr "Jian Cheng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0780, @@ -368303,7 +386830,7 @@ Plant 3D (P3D) automatically extracts common phenotyping features of interest fr biotools:primaryContact "Manu BN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0780, @@ -368319,20 +386846,8 @@ Plant 3D (P3D) automatically extracts common phenotyping features of interest fr sc:url "https://www.mathworks.com/matlabcentral/fileexchange/62609-plant-disease-detection" ; biotools:primaryContact "jagabandhu mallik" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_0780, - edam:topic_3810 ; - sc:citation , - "pmcid:PMC6713337", - "pubmed:31461491" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'plant disease relations', 'corpus' | A corpus of plant-disease relations in the biomedical domain | Corpus of plnat-disease relation | The corpus of plant-disease relation annotated plants and diseases and their relation to PubMed abstract. We annotated NCBI Taxonomy ID and MEDIC ID for plant and disease mention respectively. We annotated 1,307 relations from 199 abstracts, where the numbers of annotated plants and diseases were 1,403 and 1,758, respectively | Download : BioC format, Brat visualization" ; - sc:featureList edam:operation_3280 ; - sc:name "plant-disease relations" ; - sc:url "http://gcancer.org/pdr/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0140, edam:topic_0749, @@ -368351,7 +386866,7 @@ The subcellular localization of proteins is very important for characterizing it sc:url "http://bioinfo.usu.edu/Plant-mSubP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0084, @@ -368370,8 +386885,28 @@ The subcellular localization of proteins is very important for characterizing it sc:name "plant-rlk-rlp" ; sc:url "https://github.com/drestmont/plant_rlk_rlp/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0203, + edam:topic_0602, + edam:topic_0780, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9300056", + "pubmed:35875835" ; + sc:description "A repository and pathway browser for genes involved in signaling networks linked to the endoplasmic reticulum." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:name "Plant ER UPRome" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://uprome.tamu.edu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, edam:topic_3170, @@ -368387,7 +386922,7 @@ The subcellular localization of proteins is very important for characterizing it sc:url "http://physiospace.shinyapps.io/plant/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:author "Alison Horne", "Thomas Van Parys" ; @@ -368404,7 +386939,7 @@ The subcellular localization of proteins is very important for characterizing it biotools:primaryContact "Patrick Willems" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -368424,18 +386959,21 @@ The subcellular localization of proteins is very important for characterizing it a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3308 ; - sc:citation ; + sc:citation , + , + "pmcid:PMC148162", + "pmcid:PMC99092", + "pubmed:11752327", + "pubmed:9847207" ; sc:description "Database of plant cis-acting regulatory elements and a portal to tools for in silico analysis of promoter sequences." ; sc:featureList edam:operation_0438 ; sc:name "PlantCARE" ; @@ -368447,7 +386985,7 @@ The subcellular localization of proteins is very important for characterizing it sc:url "http://bioinformatics.psb.ugent.be/webtools/plantcare/html/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -368468,7 +387006,7 @@ The subcellular localization of proteins is very important for characterizing it "Noah Fahlgren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3168, @@ -368491,7 +387029,7 @@ The subcellular localization of proteins is very important for characterizing it biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -368512,7 +387050,7 @@ The subcellular localization of proteins is very important for characterizing it biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0160, @@ -368528,7 +387066,7 @@ The subcellular localization of proteins is very important for characterizing it sc:url "http://cal.tongji.edu.cn/PlantLoc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -368547,8 +387085,32 @@ The subcellular localization of proteins is very important for characterizing it sc:url "http://plantmetabolomics.vrac.iastate.edu/ver2/" ; biotools:primaryContact "Julie A. Dickerson" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_0080, + edam:topic_0121, + edam:topic_0780, + edam:topic_3297 ; + sc:citation , + "pmcid:PMC9076895", + "pubmed:35523906" ; + sc:description "A database for the molecular weight and isoelectric points of the plant proteomes." ; + sc:featureList edam:operation_0338, + edam:operation_0398, + edam:operation_0403, + edam:operation_0417, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:name "PlantMWpIDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://plantmwpidb.com/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -368570,7 +387132,7 @@ The subcellular localization of proteins is very important for characterizing it biotools:primaryContact "Dijun Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -368589,7 +387151,7 @@ The subcellular localization of proteins is very important for characterizing it biotools:primaryContact "Michael A. Held" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0780, @@ -368605,7 +387167,7 @@ The subcellular localization of proteins is very important for characterizing it sc:url "http://plantpan2.itps.ncku.edu.tw/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0219, @@ -368621,8 +387183,29 @@ The subcellular localization of proteins is very important for characterizing it sc:name "PlantPepDB" ; sc:url "http://www.nipgr.ac.in/PlantPepDB/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0780, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pubmed:35842742" ; + sc:description "A manually curated pan-plant database of ligand-receptor pairs infers cell-cell communication." ; + sc:featureList edam:operation_2421 ; + sc:isAccessibleForFree true ; + sc:name "PlantPhoneDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://jasonxu.shinyapps.io/PlantPhoneDB/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0601, @@ -368639,7 +387222,7 @@ The subcellular localization of proteins is very important for characterizing it sc:url "http://csb.cse.yzu.edu.tw/PlantPhos/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0780 ; @@ -368655,7 +387238,7 @@ The subcellular localization of proteins is very important for characterizing it sc:url "http://plantpis.ba.itb.cnr.it/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_0637, @@ -368674,7 +387257,7 @@ The subcellular localization of proteins is very important for characterizing it biotools:primaryContact "Renato A. F. de Lima" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0780, @@ -368694,7 +387277,7 @@ The subcellular localization of proteins is very important for characterizing it biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0780, @@ -368712,14 +387295,13 @@ The subcellular localization of proteins is very important for characterizing it a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -368736,7 +387318,7 @@ The subcellular localization of proteins is very important for characterizing it "Klaus Mayer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0780, edam:topic_3383, @@ -368754,7 +387336,7 @@ PlantSeg is a tool for cell instance aware segmentation in densely packed 3D vol sc:url "https://github.com/hci-unihd/plant-seg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0780, @@ -368773,7 +387355,7 @@ PlantSeg is a tool for cell instance aware segmentation in densely packed 3D vol biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0623, @@ -368798,7 +387380,7 @@ PlantSeg is a tool for cell instance aware segmentation in densely packed 3D vol biotools:primaryContact "PlnTFDB Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_0780, @@ -368816,8 +387398,30 @@ PlantSeg is a tool for cell instance aware segmentation in densely packed 3D vol sc:name "PlaPPISite" ; sc:url "http://zzdlab.com/plappisite/index.php" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0605, + edam:topic_2229, + edam:topic_3170, + edam:topic_3335, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC9393487", + "pubmed:36003902" ; + sc:description "A comprehensive web portal for cardiovascular single-cell genomics." ; + sc:featureList edam:operation_0224, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "PlaqView" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.plaqview.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, edam:topic_0798 ; @@ -368833,7 +387437,7 @@ A random forest classifier of contigs to identify contigs of plasmid origin in c sc:url "https://github.com/leaemiliepradier/PlasForest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0798, edam:topic_3174, edam:topic_3474 ; @@ -368849,7 +387453,7 @@ A random forest classifier of contigs to identify contigs of plasmid origin in c sc:url "https://github.com/zhenchengfang/PlasGUN/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -368868,13 +387472,8 @@ A random forest classifier of contigs to identify contigs of plasmid origin in c sc:url "http://wishart.biology.ualberta.ca/PlasMapper/index.html" ; biotools:primaryContact "Contact form" . - a sc:SoftwareApplication ; - sc:description "CD Genomics provides complete plasmid DNA sequencing service, and our improved bioinformatics pipelines are available to perform de novo assembly with no reference required. CD Genomics’s plasmid sequencing service utilizes the power of Illumina Platform for plasmid verification, and has developed a low-cost high-throughput approach for complete larger plasmid sequencing using PacBio SMRT technology. We are pleased to use our extensive experience and advanced platform to offer the best service and the most qualified products to satisfy each demand from our customers." ; - sc:name "Plasmid DNA Sequencing" ; - sc:url "https://www.cd-genomics.com/complete-plasmid-dna-sequencing.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3474, edam:topic_3895 ; @@ -368886,76 +387485,145 @@ A pan-genome based lab-of-origin prediction of engineered DNA.""" ; sc:name "PlasmidHawk" ; sc:url "https://gitlab.com/treangenlab/plasmidhawk.git" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_3299, + edam:topic_3305, + edam:topic_3474, + edam:topic_3500 ; + sc:citation ; + sc:description "Prediction of plasmid hosts using random forest." ; + sc:featureList edam:operation_0310, + edam:operation_0452, + edam:operation_3482 ; + sc:isAccessibleForFree true ; + sc:name "PlasmidHostFinder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cge.cbs.dtu.dk/services/PlasmidHostFinder/" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2084" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Nucleic acid report" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2969" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Sequence image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workflow" ; + sc:applicationSubCategory edam:topic_0798, + edam:topic_3301 ; + sc:author ; + sc:description "PlasmidID is a mapping-based, assembly-assisted plasmid identification tool that analyzes and gives graphic solution for plasmid identification." ; + sc:featureList edam:operation_0291, + edam:operation_0524, + edam:operation_0578, + edam:operation_2429, + edam:operation_3184, + edam:operation_3472 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "PlasmidID" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:softwareVersion "1.6.4", + "1.6.5", + "1.6.6" ; + sc:url "https://github.com/BU-ISCIII/plasmidID" ; + biotools:primaryContact . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622 ; @@ -368974,7 +387642,7 @@ A pan-genome based lab-of-origin prediction of engineered DNA.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, edam:topic_2830 ; @@ -368988,14 +387656,13 @@ A pan-genome based lab-of-origin prediction of engineered DNA.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ] ; + sc:additionalType "http://edamontology.org/data_2295" ; + sc:name "Gene ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation ; @@ -369009,7 +387676,7 @@ A pan-genome based lab-of-origin prediction of engineered DNA.""" ; sc:url "http://plasmodb.org/plasmo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3324 ; @@ -369024,7 +387691,7 @@ A pan-genome based lab-of-origin prediction of engineered DNA.""" ; sc:url "http://www.vicbioinformatics.com/software.autocount.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_2885, @@ -369042,7 +387709,7 @@ A pan-genome based lab-of-origin prediction of engineered DNA.""" ; biotools:primaryContact "Melanie Bahlo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -369058,18 +387725,18 @@ A pan-genome based lab-of-origin prediction of engineered DNA.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -369088,7 +387755,7 @@ A pan-genome based lab-of-origin prediction of engineered DNA.""" ; biotools:primaryContact "Dominique Lavenier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -369104,8 +387771,29 @@ A pan-genome based lab-of-origin prediction of engineered DNA.""" ; sc:url "http://plastrna.njit.edu" ; biotools:primaryContact "Satish Chikkagoudar" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0821, + edam:topic_3174, + edam:topic_3293, + edam:topic_3301, + edam:topic_3941 ; + sc:citation , + "pubmed:35266524" ; + sc:description "A database of microorganisms and proteins linked to plastic biodegradation." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:name "PlasticDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://plasticdb.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -369124,7 +387812,7 @@ A pan-genome based lab-of-origin prediction of engineered DNA.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, edam:topic_3474 ; @@ -369142,7 +387830,7 @@ PlasTrans is designed to distinguish the transmissible plasmid-derived sequences sc:url "https://github.com/zhenchengfang/PlasTrans" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -369158,7 +387846,7 @@ PlasTrans is designed to distinguish the transmissible plasmid-derived sequences sc:url "http://sandberg.cmb.ki.se/plata/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0196, edam:topic_3305, @@ -369181,22 +387869,22 @@ Platanus_B is a de novo assembler for isolated bacterial genomes. The features o a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -369219,7 +387907,7 @@ Platanus_B is a de novo assembler for isolated bacterial genomes. The features o biotools:primaryContact "Errol Strain" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0632, @@ -369242,8 +387930,29 @@ Platanus_B is a de novo assembler for isolated bacterial genomes. The features o sc:url "https://plateeditor.sourceforge.io/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_2229, + edam:topic_3306, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9123465", + "pubmed:35607664" ; + sc:description "A software-controllable plate-scale perfusion system for culture of adherent cells." ; + sc:featureList edam:operation_3431, + edam:operation_3968 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "PlateFlo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://plateflo.readthedocs.io" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -369261,7 +387970,7 @@ Platanus_B is a de novo assembler for isolated bacterial genomes. The features o biotools:primaryContact "Thomas Colace" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -369275,7 +387984,7 @@ Platanus_B is a de novo assembler for isolated bacterial genomes. The features o sc:url "http://kumasakanatsuhiko.jp/projects/platinumcnv/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -369292,7 +388001,7 @@ Platanus_B is a de novo assembler for isolated bacterial genomes. The features o sc:url "http://ritchielab.psu.edu/software/plato-download" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_2640, @@ -369315,7 +388024,7 @@ PLATO is a semi-supervised learning approach for somatic variant calling and pep sc:url "http://github.com/esherafat/PLATO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3071 ; @@ -369331,8 +388040,36 @@ PLATO is a semi-supervised learning approach for somatic variant calling and pep sc:url "http://wwwdev.ebi.ac.uk/fgpt/PLATOdemo/" ; biotools:primaryContact "Simon Jupp" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:name "Small molecule structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0621, + edam:topic_2275, + edam:topic_3047, + edam:topic_3336 ; + sc:citation , + "pmcid:PMC9103655", + "pubmed:35563636" ; + sc:description "A Predictive Drug Discovery Web Platform for Efficient Target Fishing and Bioactivity Profiling of Small Molecules." ; + sc:featureList edam:operation_0224, + edam:operation_2489, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:name "PLATO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://plato.uniba.it/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0157, @@ -369350,7 +388087,7 @@ PLATO is a semi-supervised learning approach for somatic variant calling and pep sc:url "http://platoloco.aei.polsl.pl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation ; @@ -369365,7 +388102,7 @@ PLATO is a semi-supervised learning approach for somatic variant calling and pep sc:url "http://www.well.ox.ac.uk/platypus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0804, edam:topic_3170, edam:topic_3308, @@ -369381,16 +388118,32 @@ R package for the analysis of single-cell immune repertoires. Platypus contains sc:name "Platypus" ; sc:url "http://github.com/alexyermanos/Platypus" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_3068, + edam:topic_3071 ; + sc:citation , + "pubmed:35441360" ; + sc:description "A new continuously assessed and collaborative 3D point-light display dataset." ; + sc:featureList edam:operation_2421, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:name "PLAViMoP database" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://plavimop.prd.fr/en/motions" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0797 ; sc:citation ; @@ -369408,14 +388161,12 @@ R package for the analysis of single-cell immune repertoires. Platypus contains a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0797 ; sc:citation ; @@ -369431,8 +388182,43 @@ R package for the analysis of single-cell immune repertoires. Platypus contains sc:url "http://bioinformatics.psb.ugent.be/plaza/versions/plaza_v3_monocots/" ; biotools:primaryContact "Klaas" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script", + "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2640, + edam:topic_3305, + edam:topic_3517 ; + sc:citation , + "pubmed:35900159" ; + sc:description "FAIR GWAS web SDK for the NCI Prostate, Lung, Colorectal, and Ovarian Cancer Genetic Atlas Project." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PLCOjs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://episphere.github.io/plco" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "Benchmarking of docking software on peptide-ligand complexes" ; + sc:featureList edam:operation_2945 ; + sc:name "pldbench" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/pldbench/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0736, edam:topic_0780, @@ -369450,7 +388236,7 @@ R package for the analysis of single-cell immune repertoires. Platypus contains biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, edam:topic_0625, @@ -369467,7 +388253,7 @@ Pleiotropic Locus Exploration and Interpretation using Optimal test.""" ; sc:url "https://github.com/hanlab-SNU/PLEIO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_2885, @@ -369486,7 +388272,7 @@ Pleiotropic Locus Exploration and Interpretation using Optimal test.""" ; sc:url "https://bitbucket.org/dudleylab/pvs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0659, @@ -369507,7 +388293,7 @@ Pleiotropic Locus Exploration and Interpretation using Optimal test.""" ; biotools:primaryContact "Junying Zhan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2815, @@ -369528,7 +388314,7 @@ Pleiotropic Locus Exploration and Interpretation using Optimal test.""" ; biotools:primaryContact "Daniel Bottomly" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -369555,14 +388341,14 @@ Pleiotropic Locus Exploration and Interpretation using Optimal test.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0880" ; - sc:name "RNA secondary structure" ; - sc:sameAs "http://edamontology.org/data_0880" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0880" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "RNA secondary structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082 ; sc:citation ; @@ -369572,8 +388358,31 @@ Pleiotropic Locus Exploration and Interpretation using Optimal test.""" ; sc:softwareHelp ; sc:url "http://www.bioinf.uni-leipzig.de/Software/PLEXY/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0601, + edam:topic_3295, + edam:topic_3315, + edam:topic_3500 ; + sc:citation , + "pubmed:34627982" ; + sc:description "Prediction of lysine formylation sites using support vector machine based on the sample selection from majority classes and synthetic minority over-sampling techniques." ; + sc:featureList edam:operation_0417, + edam:operation_2426, + edam:operation_3755 ; + sc:isAccessibleForFree true ; + sc:name "PLF_SVM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://plf-svm.herokuapp.com/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -369595,14 +388404,14 @@ Pleiotropic Locus Exploration and Interpretation using Optimal test.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3110" ; - sc:name "Raw microarray data" ; - sc:sameAs "http://edamontology.org/data_3110" ] ; + sc:additionalType "http://edamontology.org/data_3110" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Raw microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Processed microarray data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -369622,8 +388431,22 @@ Pleiotropic Locus Exploration and Interpretation using Optimal test.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/plier.html" ; biotools:primaryContact "Crispin Miller" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation ; + sc:description "Design half life of peptides in blood" ; + sc:featureList edam:operation_2945 ; + sc:name "plifepred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/plifepred/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation ; @@ -369637,7 +388460,7 @@ Pleiotropic Locus Exploration and Interpretation using Optimal test.""" ; sc:url "http://zzz.bwh.harvard.edu/plink/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3055, edam:topic_3056, @@ -369653,7 +388476,7 @@ Pleiotropic Locus Exploration and Interpretation using Optimal test.""" ; sc:url "https://atgu.mgh.harvard.edu/plinkseq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -369670,14 +388493,13 @@ Pleiotropic Locus Exploration and Interpretation using Optimal test.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1566" ; - sc:name "Protein-ligand interaction report" ; - sc:sameAs "http://edamontology.org/data_1566" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1566" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein-ligand interaction report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Web application" ; @@ -369696,7 +388518,7 @@ Pleiotropic Locus Exploration and Interpretation using Optimal test.""" ; sc:url "https://plip-tool.biotec.tu-dresden.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3315, @@ -369714,7 +388536,7 @@ PLMaddon expands SBToolbox with a set of functions for the analysis of power-law biotools:primaryContact "Julio Vera-Gonzalez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -369728,7 +388550,7 @@ PLMaddon expands SBToolbox with a set of functions for the analysis of power-law sc:url "http://bioinfo.ncu.edu.cn/inquiries_PLMLA.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_0780, @@ -369747,14 +388569,13 @@ PLncDB contains 1246372 lncRNAs and 13834 RNA-Seq datasets for 80 species.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099 ; sc:citation , @@ -369771,7 +388592,7 @@ PLncDB contains 1246372 lncRNAs and 13834 RNA-Seq datasets for 80 species.""" ; sc:url "https://github.com/urmi-21/PLncPRO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_0780, @@ -369789,7 +388610,7 @@ PLncDB contains 1246372 lncRNAs and 13834 RNA-Seq datasets for 80 species.""" ; sc:url "https://github.com/kangzhai/PlncRNA-HDeep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, @@ -369805,7 +388626,7 @@ PLncDB contains 1246372 lncRNAs and 13834 RNA-Seq datasets for 80 species.""" ; sc:url "http://homepage.fudan.edu.cn/zhangh/softwares/plnseq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -369827,7 +388648,7 @@ PLncDB contains 1246372 lncRNAs and 13834 RNA-Seq datasets for 80 species.""" ; biotools:primaryContact "PlnTFDB Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -369847,7 +388668,7 @@ PLncDB contains 1246372 lncRNAs and 13834 RNA-Seq datasets for 80 species.""" ; "Kang Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0622, @@ -369864,22 +388685,22 @@ PLncDB contains 1246372 lncRNAs and 13834 RNA-Seq datasets for 80 species.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3308, @@ -369898,7 +388719,7 @@ PLncDB contains 1246372 lncRNAs and 13834 RNA-Seq datasets for 80 species.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, edam:topic_3176, @@ -369918,7 +388739,7 @@ Micrococcal nuclease digestion followed by deep sequencing (MNase-seq) is the mo sc:url "https://github.com/rchereji/plot2DO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102 ; sc:description "pLOT is a plasmid mapping program for Windows-based PCs." ; @@ -369931,18 +388752,15 @@ Micrococcal nuclease digestion followed by deep sequencing (MNase-seq) is the mo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ], + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2161" ; - sc:name "Sequence similarity plot" ; - sc:sameAs "http://edamontology.org/data_2161" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2161" ; + sc:name "Sequence similarity plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -369973,62 +388791,62 @@ Micrococcal nuclease digestion followed by deep sequencing (MNase-seq) is the mo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0797, @@ -370045,7 +388863,7 @@ Micrococcal nuclease digestion followed by deep sequencing (MNase-seq) is the mo biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0654 ; @@ -370064,7 +388882,7 @@ Micrococcal nuclease digestion followed by deep sequencing (MNase-seq) is the mo biotools:primaryContact "Jesús P. Mena-Chalco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -370084,38 +388902,38 @@ Micrococcal nuclease digestion followed by deep sequencing (MNase-seq) is the mo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168 ; @@ -370133,7 +388951,7 @@ Micrococcal nuclease digestion followed by deep sequencing (MNase-seq) is the mo biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation , @@ -370148,7 +388966,7 @@ Micrococcal nuclease digestion followed by deep sequencing (MNase-seq) is the mo sc:url "http://faculty.washington.edu/wijsman/software.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168, @@ -370165,14 +388983,12 @@ Micrococcal nuclease digestion followed by deep sequencing (MNase-seq) is the mo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0114 ; sc:citation , @@ -370202,7 +389018,7 @@ Micrococcal nuclease digestion followed by deep sequencing (MNase-seq) is the mo sc:url "http://emboss.open-bio.org/rel/rel6/apps/plotorf.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3374 ; @@ -370220,7 +389036,7 @@ Micrococcal nuclease digestion followed by deep sequencing (MNase-seq) is the mo biotools:primaryContact "Bingley L" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation "pubmed:16845104" ; @@ -370229,8 +389045,28 @@ Micrococcal nuclease digestion followed by deep sequencing (MNase-seq) is the mo sc:name "PlotRep" ; sc:url "http://repeats.abc.hu/cgi-bin/plotrep.pl" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0196, + edam:topic_2885 ; + sc:citation , + "pubmed:35426899" ; + sc:description "Plotsr generates high-quality visualisation of synteny and structural rearrangements between multiple genomes. For this, it uses the genomic structural annotations between multiple chromosome-level assemblies." ; + sc:featureList edam:operation_0525, + edam:operation_0570, + edam:operation_3208 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "plotsr" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/schneebergerlab/plotsr" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -370248,7 +389084,7 @@ Micrococcal nuclease digestion followed by deep sequencing (MNase-seq) is the mo sc:url "https://huygens.science.uva.nl/PlotXpress/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -370267,7 +389103,7 @@ Micrococcal nuclease digestion followed by deep sequencing (MNase-seq) is the mo biotools:primaryContact "Soo-heang Eo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -370287,7 +389123,7 @@ Micrococcal nuclease digestion followed by deep sequencing (MNase-seq) is the mo biotools:primaryContact "Gwenael G.R. Leday to" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_2640, @@ -370303,8 +389139,76 @@ The aims of the Prospective Lynch Syndrome Database (PLSD) are to provide empiri sc:name "PLSD" ; sc:url "http://www.PLSD.eu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3174, + edam:topic_3277, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC8728149", + "pubmed:34850116" ; + sc:description "Advancing a comprehensive database of bacterial plasmids." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PLSDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.ccb.uni-saarland.de/plsdb" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_3170, + edam:topic_3512, + edam:topic_3518 ; + sc:citation , + "pubmed:35438150" ; + sc:description "A blood platelets-based gene expression database for disease investigation." ; + sc:featureList edam:operation_0314, + edam:operation_0315, + edam:operation_0571 ; + sc:isAccessibleForFree true ; + sc:name "PltDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.pltdb-hust.com" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0659, + edam:topic_0780, + edam:topic_2229, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9126412", + "pubmed:35605006" ; + sc:description "Plant transfer RNA database." ; + sc:featureList edam:operation_0464, + edam:operation_2421, + edam:operation_3216 ; + sc:isAccessibleForFree true ; + sc:name "PltRNAdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.nipgr.ac.in/PtRNAdb" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3301 ; sc:citation ; @@ -370318,7 +389222,7 @@ The aims of the Prospective Lynch Syndrome Database (PLSD) are to provide empiri biotools:primaryContact "Trevor Cickovski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_1317 ; sc:citation , @@ -370334,7 +389238,7 @@ The aims of the Prospective Lynch Syndrome Database (PLSD) are to provide empiri biotools:primaryContact "Carlo Camilloni" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3474 ; @@ -370349,7 +389253,7 @@ The aims of the Prospective Lynch Syndrome Database (PLSD) are to provide empiri sc:url "http://www.cibiv.at/software/plumist/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0804, edam:topic_2229 ; @@ -370366,7 +389270,7 @@ The aims of the Prospective Lynch Syndrome Database (PLSD) are to provide empiri sc:url "http://www.cnbc.pt/equipment/microscopyUnit.asp#divImageAnalysis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2229, @@ -370383,8 +389287,54 @@ The aims of the Prospective Lynch Syndrome Database (PLSD) are to provide empiri sc:url "http://bicresources.jcbose.ac.in/ssaha4/pluripred/" ; biotools:primaryContact "Sudipto Saha" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3707" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Biodiversity data" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence features" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid sequence record" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2337" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Resource metadata" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3707" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Biodiversity data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workbench" ; + sc:applicationSubCategory edam:topic_0219, + edam:topic_3050, + edam:topic_3489 ; + sc:citation ; + sc:description """PlutoF is an online data management platform and computing service provider for biology +and related disciplines. Registered users can enter and manage a wide range of data, e.g., +taxon occurrences, metabarcoding data, taxon classifications, traits, and lab data. It +features an annotation module where third-party annotations (on material source, +geolocation and habitat, taxonomic identifications, interacting taxa, etc.) can be added to +any collection specimen, living culture or DNA sequence record. It also features an analysis module by providing digital services for molecular sequence identification and species discovery from eDNA samples.""" ; + sc:featureList edam:operation_2403, + edam:operation_3431, + edam:operation_3778 ; + sc:isAccessibleForFree true ; + sc:name "PlutoF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + , + ; + sc:url "https://plutof.ut.ee" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0632, @@ -370405,7 +389355,7 @@ The aims of the Prospective Lynch Syndrome Database (PLSD) are to provide empiri biotools:primaryContact "Magnus Astrand" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622 ; sc:description "A dplyr-like interface for interacting with the common Bioconductor classes Ranges and GenomicRanges. By providing a grammatical and consistent way of manipulating these classes their accessiblity for new Bioconductor users is hopefully increased." ; @@ -370422,7 +389372,7 @@ The aims of the Prospective Lynch Syndrome Database (PLSD) are to provide empiri biotools:primaryContact "Stuart Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0634, edam:topic_3390, @@ -370443,7 +389393,7 @@ PM2RA is a method that uses Hoteling’s T2 statistics to project multiple-dimen sc:url "http://www.pm2ra-xingyinliulab.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "PM4NGS is designed to generate a standard organizational structure for Next Generation Sequencing (NGS) data analysis. It includes a directory structure for the project, several Jupyter notebooks for data management and CWL workflows for pipeline execution." ; sc:isAccessibleForFree true ; sc:license "CC0-1.0" ; @@ -370454,7 +389404,7 @@ PM2RA is a method that uses Hoteling’s T2 statistics to project multiple-dimen biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -370474,14 +389424,13 @@ PM2RA is a method that uses Hoteling’s T2 statistics to project multiple-dimen a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Data reference" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -370492,7 +389441,7 @@ PM2RA is a method that uses Hoteling’s T2 statistics to project multiple-dimen sc:url "http://www.proteolysis.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, edam:topic_3304, @@ -370507,7 +389456,7 @@ PM2RA is a method that uses Hoteling’s T2 statistics to project multiple-dimen sc:url "https://github.com/djamesbarker/pMAT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -370522,8 +389471,30 @@ PM2RA is a method that uses Hoteling’s T2 statistics to project multiple-dimen sc:softwareHelp ; sc:url "http://www.uhnresearch.ca/labs/tillier/software.htm#4" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0749, + edam:topic_2640, + edam:topic_3173, + edam:topic_3299 ; + sc:citation , + "pubmed:34647978" ; + sc:description "Efficient inference of expressive models of cancer evolution with high prognostic power." ; + sc:featureList edam:operation_0547, + edam:operation_2426, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "PMCE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BIMIB-DISCo/PMCE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2814 ; @@ -370540,7 +389511,7 @@ PM2RA is a method that uses Hoteling’s T2 statistics to project multiple-dimen biotools:primaryContact "Tiziana Castrignanò" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0736, edam:topic_0780, edam:topic_3168, @@ -370560,7 +389531,7 @@ Using NGS and Sanger sequencing, a 260-kbp Dscam genome draft from Black tiger s sc:url "http://pmdscam.dbbs.ncku.edu.tw/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099 ; @@ -370573,7 +389544,7 @@ Using NGS and Sanger sequencing, a 260-kbp Dscam genome draft from Black tiger s sc:url "http://genome.ucf.edu/PMFastR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0176, @@ -370589,8 +389560,28 @@ Using NGS and Sanger sequencing, a 260-kbp Dscam genome draft from Black tiger s sc:name "PMG" ; sc:url "http://bioserv.rpbs.jussieu.fr/~autin/cgi-bin/PMG" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3293, + edam:topic_3360, + edam:topic_3697 ; + sc:citation , + "pubmed:36007229" ; + sc:description "Compositional alternative to phylogenetic grouping of microbiome data." ; + sc:featureList edam:operation_0323, + edam:operation_3436, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PMGs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/asliboyraz/PMGs" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -370612,7 +389603,7 @@ Interactions between proteins and small molecule metabolites play a vital role i sc:url "http://easybioai.com/PMIDB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3314, edam:topic_3489 ; @@ -370635,7 +389626,7 @@ Command-line users can immediately augment their PubMed search results using the sc:url "https://github.com/dvklopfenstein/pmidcite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3305, edam:topic_3408, @@ -370657,7 +389648,7 @@ Trans-Omics for Precision Medicine (TOPMed) Program.""" ; sc:url "https://github.com/InduKhatri/pmIG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -370682,8 +389673,48 @@ Trans-Omics for Precision Medicine (TOPMed) Program.""" ; "Ming Chen", "Yijun Meng" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0659, + edam:topic_0749, + edam:topic_3068 ; + sc:citation , + "pubmed:35567946" ; + sc:description "A positive miRNA-target regulations database." ; + sc:featureList edam:operation_0306, + edam:operation_0463, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:name "PmiRtarbase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.lwb-lab.cn/PmiRtarbase" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8756190", + "pubmed:34677586" ; + sc:description "Penn Machine Learning Benchmarks (PMLB) is a large collection of curated benchmark datasets for evaluating and comparing supervised machine learning algorithms." ; + sc:featureList edam:operation_3435, + edam:operation_3436, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PMLB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/EpistasisLab/pmlb" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053 ; @@ -370697,7 +389728,7 @@ Trans-Omics for Precision Medicine (TOPMed) Program.""" ; sc:url "http://www.rannala.org/docs/pmle20.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0659, edam:topic_0780, @@ -370713,7 +389744,7 @@ We have proposed a new method for fulfilling plant miRNA-lncRNA interaction pred sc:url "http://bis.zju.edu.cn/PmliPred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0659, @@ -370734,7 +389765,7 @@ We have proposed a new method for fulfilling plant miRNA-lncRNA interaction pred biotools:primaryContact "Anna Drewek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0637, edam:topic_3388, @@ -370752,7 +389783,7 @@ The Precision Medicine Ontology (PMO) has been developed as a standardized ontol sc:url "http://www.phoc.org.cn/pmo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3302, edam:topic_3382, @@ -370769,7 +389800,7 @@ The Precision Medicine Ontology (PMO) has been developed as a standardized ontol biotools:primaryContact "Margaret Duff" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3071, edam:topic_3303 ; @@ -370784,7 +389815,7 @@ The tar file contains a compressed dump of PMDB, which was created in PostgreSQL sc:url "https://pmparser.hugheylab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -370806,7 +389837,7 @@ The tar file contains a compressed dump of PMDB, which was created in PostgreSQL biotools:primaryContact "Su Zhen Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0749 ; @@ -370821,7 +389852,7 @@ The tar file contains a compressed dump of PMDB, which was created in PostgreSQL sc:url "http://mcube.nju.edu.cn/jwang/lab/soft/PMS/home.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2830, edam:topic_3056, @@ -370843,14 +389874,14 @@ For more information on how we obtained our results please refer to the document a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API", "Web application" ; @@ -370873,7 +389904,7 @@ For more information on how we obtained our results please refer to the document biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -370893,10 +389924,10 @@ pmVAE leverages biological prior information in the form of pathway gene sets to a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_2275 ; @@ -370911,7 +389942,7 @@ pmVAE leverages biological prior information in the form of pathway gene sets to sc:url "http://pmx.mpibpc.mpg.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0099, @@ -370931,7 +389962,7 @@ The proto-Nucleic Acid Builder is a program for modeling the 3D strucutres of DN sc:url "https://github.com/GT-NucleicAcids/pnab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0199, @@ -370951,10 +389982,9 @@ The proto-Nucleic Acid Builder is a program for modeling the 3D strucutres of DN a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0976" ; - sc:name "Identifier (by type of data)" ; - sc:sameAs "http://edamontology.org/data_0976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0976" ; + sc:name "Identifier (by type of data)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -370972,7 +390002,7 @@ The proto-Nucleic Acid Builder is a program for modeling the 3D strucutres of DN sc:url "https://pncshub.erc.monash.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0659, edam:topic_0780, @@ -370990,7 +390020,7 @@ The proto-Nucleic Acid Builder is a program for modeling the 3D strucutres of DN sc:url "http://bis.zju.edu.cn/pncstress" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3316 ; sc:citation ; @@ -371006,8 +390036,32 @@ The proto-Nucleic Acid Builder is a program for modeling the 3D strucutres of DN ; sc:url "https://parallel-netcdf.github.io/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0102, + edam:topic_0203, + edam:topic_2885, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC9315718", + "pubmed:35890455" ; + sc:description "An R Package for Rapid Candidate Gene Selection through Pooled Next-Generation Sequencing." ; + sc:featureList edam:operation_0282, + edam:operation_0484, + edam:operation_3196, + edam:operation_3223 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PNGSeqR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/smilejeen/PNGseqR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0108, edam:topic_0128, @@ -371030,7 +390084,7 @@ As the chief actors within the cells, protein’s interaction with nucleic acid sc:url "http://server.malab.cn/PNIDB/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -371048,34 +390102,28 @@ As the chief actors within the cells, protein’s interaction with nucleic acid a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1868" ; - sc:name "Taxon" ; - sc:sameAs "http://edamontology.org/data_1868" ], + sc:additionalType "http://edamontology.org/data_1870" ; + sc:name "Genus name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2732" ; - sc:name "Family name" ; - sc:sameAs "http://edamontology.org/data_2732" ], + sc:additionalType "http://edamontology.org/data_2912" ; + sc:name "Strain accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1872" ; - sc:name "Taxonomic classification" ; - sc:sameAs "http://edamontology.org/data_1872" ], + sc:additionalType "http://edamontology.org/data_1868" ; + sc:name "Taxon" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1870" ; - sc:name "Genus name" ; - sc:sameAs "http://edamontology.org/data_1870" ], + sc:additionalType "http://edamontology.org/data_1872" ; + sc:name "Taxonomic classification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2912" ; - sc:name "Strain accession" ; - sc:sameAs "http://edamontology.org/data_2912" ], + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1045" ; - sc:name "Species name" ; - sc:sameAs "http://edamontology.org/data_1045" ] ; + sc:additionalType "http://edamontology.org/data_2732" ; + sc:name "Family name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1872" ; - sc:name "Taxonomic classification" ; - sc:sameAs "http://edamontology.org/data_1872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1872" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Taxonomic classification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal" ; sc:applicationSubCategory edam:topic_0637, @@ -371094,7 +390142,7 @@ As the chief actors within the cells, protein’s interaction with nucleic acid sc:url "http://bacdive.dsmz.de/api/pnu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -371114,7 +390162,7 @@ As the chief actors within the cells, protein’s interaction with nucleic acid biotools:primaryContact "POBO Webmaster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, @@ -371128,7 +390176,7 @@ As the chief actors within the cells, protein’s interaction with nucleic acid sc:url "http://sourceforge.net/projects/papca/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0749, @@ -371145,7 +390193,7 @@ As the chief actors within the cells, protein’s interaction with nucleic acid biotools:primaryContact "Nagasuma Chandra" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2814, edam:topic_3534 ; @@ -371161,7 +390209,7 @@ As the chief actors within the cells, protein’s interaction with nucleic acid sc:url "http://proline.physics.iisc.ernet.in/pocketdepth/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -371183,7 +390231,7 @@ As the chief actors within the cells, protein’s interaction with nucleic acid biotools:primaryContact "Irina Kufareva" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -371206,7 +390254,7 @@ As the chief actors within the cells, protein’s interaction with nucleic acid biotools:primaryContact "David Ryan Koes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0623, @@ -371229,7 +390277,7 @@ As the chief actors within the cells, protein’s interaction with nucleic acid biotools:primaryContact "Dmitry Suplatov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0203, @@ -371251,22 +390299,22 @@ As the chief actors within the cells, protein’s interaction with nucleic acid a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ], + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Experiment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0625, @@ -371289,7 +390337,7 @@ As the chief actors within the cells, protein’s interaction with nucleic acid biotools:primaryContact "Ulrich Bodenhofer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0780 ; @@ -371304,7 +390352,7 @@ As the chief actors within the cells, protein’s interaction with nucleic acid sc:url "http://caps.ncbs.res.in/poeas/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2269, edam:topic_2885, @@ -371322,7 +390370,7 @@ Implements POEMColoc colocalization method described in King et al. 2020. This m sc:url "https://github.com/AbbVie-ComputationalGenomics/POEMColoc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3524, @@ -371341,7 +390389,7 @@ Implements POEMColoc colocalization method described in King et al. 2020. This m biotools:primaryContact "David M. Bassen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0208 ; @@ -371360,7 +390408,7 @@ Implements POEMColoc colocalization method described in King et al. 2020. This m biotools:primaryContact "VJ Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0203 ; @@ -371376,7 +390424,7 @@ Implements POEMColoc colocalization method described in King et al. 2020. This m sc:url "http://bdtnp.lbl.gov/Fly-Net/bioimaging.jsp?w=pcx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0797, edam:topic_2269, @@ -371396,7 +390444,7 @@ Implements POEMColoc colocalization method described in King et al. 2020. This m biotools:primaryContact "Jun Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2229, edam:topic_3382 ; @@ -371411,7 +390459,7 @@ To use the macro, download 'Poji.ijm' and install it in Fiji or ImageJ. You may sc:url "https://github.com/roherzog/Poji" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -371432,7 +390480,7 @@ To use the macro, download 'Poji.ijm' and install it in Fiji or ImageJ. You may sc:url "https://github.com/bushlab-genomics/POKEMON" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0769, @@ -371447,8 +390495,31 @@ To use the macro, download 'Poji.ijm' and install it in Fiji or ImageJ. You may sc:url "https://poky.clas.ucdenver.edu" ; biotools:primaryContact "Woonghee Lee" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0659, + edam:topic_3299, + edam:topic_3794 ; + sc:citation , + "pmcid:PMC8728242", + "pubmed:34747466" ; + sc:description "A resource for decoding the interactome, expression, evolution, epitranscriptome and disease variations of Pol III-transcribed ncRNAs." ; + sc:featureList edam:operation_0314, + edam:operation_0443, + edam:operation_3901 ; + sc:isAccessibleForFree true ; + sc:name "Pol3Base" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://rna.sysu.edu.cn/pol3base/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation "pmcid:PMC523650", @@ -371465,7 +390536,7 @@ To use the macro, download 'Poji.ijm' and install it in Fiji or ImageJ. You may biotools:primaryContact "Prof. Riccardo Percudani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3360 ; @@ -371480,7 +390551,7 @@ In this work, we design the Polar Gini Curve (PGC) technique, which combines the sc:url "https://figshare.com/projects/Polar_Gini_Curve/76749" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3520 ; @@ -371491,8 +390562,30 @@ In this work, we design the Polar Gini Curve (PGC) technique, which combines the sc:name "PolarMask" ; sc:url "http://github.com/xieenze/PolarMask" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0625, + edam:topic_2885, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9235478", + "pubmed:35758773" ; + sc:description "PolarMorphism enables discovery of shared genetic variants across multiple traits from GWAS summary statistics." ; + sc:featureList edam:operation_0484, + edam:operation_3196, + edam:operation_3791 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PolarMorphism" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/UMCUGenetics/PolarMorphism" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0601, edam:topic_0621, @@ -371509,10 +390602,10 @@ In this work, we design the Polar Gini Curve (PGC) technique, which combines the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0140, @@ -371537,7 +390630,7 @@ In this work, we design the Polar Gini Curve (PGC) technique, which combines the sc:url "http://polarprotpred.ttk.hu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -371558,7 +390651,7 @@ In this work, we design the Polar Gini Curve (PGC) technique, which combines the biotools:primaryContact "Polbase Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3512 ; @@ -371574,7 +390667,7 @@ Polee is an alternative methodology for the analysis of RNA-Seq data. A lot of R sc:url "https://github.com/dcjones/polee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3452 ; sc:citation , @@ -371590,7 +390683,7 @@ Image enhancement in FIB-SEM (Focused Ion Beam Scanning Electron Microscopy).""" sc:url "http://www.cnb.csic.es/%7ejjfernandez/polishem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3408 ; sc:citation , @@ -371607,7 +390700,7 @@ Image enhancement in FIB-SEM (Focused Ion Beam Scanning Electron Microscopy).""" biotools:primaryContact "Miguel O. Bernabeu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0621 ; @@ -371628,7 +390721,7 @@ Code : The Python file PoLoBag.py can be run in Python 3.x (for Python 2.x just sc:url "https://github.com/gourabghoshroy/PoLoBag" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -371643,7 +390736,7 @@ Code : The Python file PoLoBag.py can be run in Python 3.x (for Python 2.x just sc:url "http://csg.sph.umich.edu/chen/public/software/poly/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0160, edam:topic_3407, @@ -371660,7 +390753,7 @@ Code : The Python file PoLoBag.py can be run in Python 3.x (for Python 2.x just sc:url "https://github.com/Szym29/PolyADG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_2640, @@ -371679,7 +390772,7 @@ More than half of human genes exercise alternative polyadenylation (APA) and gen sc:url "http://www.liuzlab.org/PolyA-miner/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -371695,7 +390788,7 @@ More than half of human genes exercise alternative polyadenylation (APA) and gen sc:url "http://cb.utdallas.edu/tools/polyadq/polyadq_form.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3511 ; @@ -371710,7 +390803,7 @@ More than half of human genes exercise alternative polyadenylation (APA) and gen sc:url "http://sfb.kaust.edu.sa/Pages/Software.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3169 ; @@ -371724,8 +390817,44 @@ More than half of human genes exercise alternative polyadenylation (APA) and gen sc:softwareHelp ; sc:url "http://web1.sph.emory.edu/users/hwu30/software/polyaPeak.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation "pubmed:19795571" ; + sc:description "PolyApred is a support vector machine (SVM) based method for the prediction of polyadenylation signal (PAS) in human DNA sequence." ; + sc:featureList edam:operation_2945 ; + sc:name "polyapred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/polyapred/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0621, + edam:topic_0780, + edam:topic_3168, + edam:topic_3512 ; + sc:citation , + "pubmed:35769001" ; + sc:description "A user-friendly R package for measuring poly(A) tail length from NGS-based short-read and PacBio-based long-read sequencing data." ; + sc:featureList edam:operation_0314, + edam:operation_0428, + edam:operation_3192 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PolyAtailor" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BMILAB/PolyAtailor" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -371743,7 +390872,7 @@ More than half of human genes exercise alternative polyadenylation (APA) and gen biotools:primaryContact "Gabor Marth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3474, @@ -371760,7 +390889,7 @@ PolyBoost is a post-analysis tool for the batch processing output of PolyPhen-2 sc:url "https://github.com/djparente/polyboost" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640 ; sc:citation ; @@ -371780,18 +390909,15 @@ PolyBoost is a post-analysis tool for the batch processing output of PolyPhen-2 a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0862" ; - sc:name "Dotplot" ; - sc:sameAs "http://edamontology.org/data_0862" ], + sc:additionalType "http://edamontology.org/data_0862" ; + sc:name "Dotplot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -371821,7 +390947,7 @@ PolyBoost is a post-analysis tool for the batch processing output of PolyPhen-2 sc:url "http://emboss.open-bio.org/rel/rel6/apps/polydot.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Displays all-against-all dotplots of a set of sequences." ; @@ -371832,7 +390958,7 @@ PolyBoost is a post-analysis tool for the batch processing output of PolyPhen-2 sc:url "http://genius.embnet.dkfz-heidelberg.de/menu/hobit/embdoc/polydot.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -371853,7 +390979,7 @@ PolyBoost is a post-analysis tool for the batch processing output of PolyPhen-2 "Jeff Leek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0607, @@ -371872,7 +390998,7 @@ PolyBoost is a post-analysis tool for the batch processing output of PolyPhen-2 biotools:primaryContact "Conrad Burden" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, edam:topic_0602, @@ -371893,7 +391019,7 @@ PolyFold is an interactive visual simulator for distance-based protein folding. sc:url "https://github.com/Bhattacharya-Lab/PolyFold" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, edam:topic_0610, @@ -371912,7 +391038,7 @@ This software uses the genotypic frequencies under double-reduction to estimate sc:url "https://github.com/huangkang1987/polygene" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -371935,7 +391061,7 @@ This software uses the genotypic frequencies under double-reduction to estimate biotools:primaryContact "C.J. Carter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -371950,7 +391076,7 @@ This software uses the genotypic frequencies under double-reduction to estimate sc:url "http://www.imperial.ac.uk/people/l.coin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -371967,7 +391093,7 @@ This software uses the genotypic frequencies under double-reduction to estimate biotools:primaryContact "Peter Bourke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0632, @@ -371985,7 +391111,7 @@ This software uses the genotypic frequencies under double-reduction to estimate sc:url "http://polymarker.tgac.ac.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -372007,8 +391133,56 @@ This software uses the genotypic frequencies under double-reduction to estimate sc:url "http://compbio.uthsc.edu/miRSNP/" ; biotools:primaryContact "Dr. Yan Cui" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_0749, + edam:topic_3512, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC8860573", + "pubmed:35061909" ; + sc:description "Exploring functional relations among common human genetic variants." ; + sc:featureList edam:operation_0487, + edam:operation_3196, + edam:operation_3226, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:name "Polympact" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bcglab.cibio.unitn.it/polympact" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0160, + edam:topic_0625, + edam:topic_2885, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC8633103", + "pubmed:34849879" ; + sc:description "A package for haplotype reconstruction in connected polyploid F1 populations." ; + sc:featureList edam:operation_0484, + edam:operation_0487, + edam:operation_2944, + edam:operation_3196, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "PolyOrigin" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/chaozhi/PolyOrigin.jl" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0199, @@ -372025,7 +391199,7 @@ This software uses the genotypic frequencies under double-reduction to estimate sc:url "http://genetics.bwh.harvard.edu/pph2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -372054,7 +391228,7 @@ This software uses the genotypic frequencies under double-reduction to estimate biotools:primaryContact "Ivan Adzhubey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -372077,7 +391251,7 @@ This software uses the genotypic frequencies under double-reduction to estimate "Phil Green" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -372092,8 +391266,30 @@ This software uses the genotypic frequencies under double-reduction to estimate sc:url "https://github.com/pblischak/polyploid-genotyping" ; biotools:primaryContact "Paul D Blischak" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0157, + edam:topic_0196 ; + sc:citation , + "pmcid:PMC8812927", + "pubmed:35073327" ; + sc:description "Polypolish is a tool for polishing genome assemblies with short reads. Unlike other tools in this category, Polypolish uses SAM files where each read has been aligned to all possible locations (not just a single best location). This allows it to repair errors in repeat regions that other alignment-based polishers cannot fix." ; + sc:featureList edam:operation_0523, + edam:operation_0525, + edam:operation_3195, + edam:operation_3198 ; + sc:name "Polypolish" ; + sc:softwareHelp ; + sc:url "https://github.com/rrwick/Polypolish" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0157, @@ -372116,7 +391312,7 @@ This software uses the genotypic frequencies under double-reduction to estimate biotools:primaryContact "Ashley M. Buckle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -372139,7 +391335,7 @@ This software uses the genotypic frequencies under double-reduction to estimate sc:url "http://cran.r-project.org/package=polyqtlR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3344, @@ -372157,7 +391353,7 @@ This software uses the genotypic frequencies under double-reduction to estimate biotools:primaryContact "Jonathan Mason" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3277, edam:topic_3407 ; @@ -372170,8 +391366,25 @@ This software uses the genotypic frequencies under double-reduction to estimate sc:name "PolyRound" ; sc:url "https://gitlab.com/csb.ethz/PolyRound" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC3324500", + "pubmed:22509333" ; + sc:description """A comprehensive database of microbial polysaccharide antigens and their antibodies. +PolysacDB database has been developed to facilitate easy retrieval of information pertaining to microbial surface polysaccharides.""" ; + sc:featureList edam:operation_2945 ; + sc:name "polysacdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/polysacdb/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -372193,7 +391406,7 @@ This software uses the genotypic frequencies under double-reduction to estimate biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0634, @@ -372214,7 +391427,7 @@ This software uses the genotypic frequencies under double-reduction to estimate biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3056, edam:topic_3293 ; @@ -372232,7 +391445,7 @@ This software uses the genotypic frequencies under double-reduction to estimate biotools:primaryContact "Alexandre Bureau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2814 ; @@ -372249,7 +391462,7 @@ This software uses the genotypic frequencies under double-reduction to estimate sc:url "http://polyview.cchmc.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -372273,7 +391486,7 @@ This software uses the genotypic frequencies under double-reduction to estimate biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -372300,22 +391513,20 @@ This software uses the genotypic frequencies under double-reduction to estimate a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3007" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3070, @@ -372339,10 +391550,10 @@ This software uses the genotypic frequencies under double-reduction to estimate a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3007" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102 ; sc:author "Ensembl team" ; @@ -372362,18 +391573,18 @@ This software uses the genotypic frequencies under double-reduction to estimate a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence coordinates" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:author "Ensembl Genomes team" ; @@ -372393,14 +391604,12 @@ This software uses the genotypic frequencies under double-reduction to estimate a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1352" ; - sc:name "Regular expression" ; - sc:sameAs "http://edamontology.org/data_1352" ] ; + sc:additionalType "http://edamontology.org/data_1352" ; + sc:name "Regular expression" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160 ; sc:author "Kim Rutherford" ; @@ -372421,14 +391630,14 @@ This software uses the genotypic frequencies under double-reduction to estimate a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885 ; sc:author "Ensembl team" ; @@ -372447,7 +391656,7 @@ This software uses the genotypic frequencies under double-reduction to estimate biotools:primaryContact "Ensembl Genomes webteam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -372460,7 +391669,7 @@ This software uses the genotypic frequencies under double-reduction to estimate sc:url "http://www.stat.purdue.edu/~yuzhu/pome.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0621, edam:topic_2229, @@ -372478,7 +391687,7 @@ See the Documentation folder for all user guides, tutorials and documentation. I sc:url "https://github.com/erodb/Pomegranate" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -372500,7 +391709,7 @@ See the Documentation folder for all user guides, tutorials and documentation. I biotools:primaryContact "Ramon Diaz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654, @@ -372517,7 +391726,7 @@ See the Documentation folder for all user guides, tutorials and documentation. I sc:url "http://pomo.cs.tut.fi/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -372539,14 +391748,12 @@ The Pompe disease GAA variant database represents an effort to collect all known a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -372563,14 +391770,12 @@ The Pompe disease GAA variant database represents an effort to collect all known a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -372586,7 +391791,7 @@ The Pompe disease GAA variant database represents an effort to collect all known sc:url "http://structure.bmc.lu.se/PON-P2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814, @@ -372601,7 +391806,7 @@ The Pompe disease GAA variant database represents an effort to collect all known biotools:primaryContact "Mauno Vihinen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2814 ; @@ -372617,7 +391822,7 @@ The Pompe disease GAA variant database represents an effort to collect all known sc:url "http://ponderosa.nmrfam.wisc.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056 ; @@ -372633,7 +391838,7 @@ The Pompe disease GAA variant database represents an effort to collect all known sc:url "http://brown.edu/Research/Ramachandran_Lab/projects/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0736, @@ -372654,7 +391859,7 @@ The Pompe disease GAA variant database represents an effort to collect all known biotools:primaryContact "Piero Fariselli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3168, @@ -372670,7 +391875,7 @@ The Pompe disease GAA variant database represents an effort to collect all known sc:url "https://qgsp.jouy.inra.fr/index.php?option=com_content&view=article&id=56&Itemid=63" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -372689,7 +391894,7 @@ The Pompe disease GAA variant database represents an effort to collect all known sc:url "https://cran.r-project.org/web/packages/poolfstat/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053 ; @@ -372706,7 +391911,7 @@ The Pompe disease GAA variant database represents an effort to collect all known biotools:primaryContact "Quan Long" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3053, @@ -372723,7 +391928,7 @@ The Pompe disease GAA variant database represents an effort to collect all known sc:url "https://code.google.com/p/poolhap2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0781, @@ -372740,7 +391945,7 @@ The Pompe disease GAA variant database represents an effort to collect all known sc:url "http://alan.cs.gsu.edu/NGS/?q=content/pooling" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -372754,8 +391959,27 @@ The Pompe disease GAA variant database represents an effort to collect all known sc:softwareHelp ; sc:url "http://www1.montpellier.inra.fr/CBGP/software/PoolSeqUtils/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0602, + edam:topic_3474 ; + sc:citation , + "pubmed:34982676" ; + sc:description "Exploring the Potential of Pooling for Salient Object Detection." ; + sc:featureList edam:operation_0479, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PoolNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/backseason/PoolNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0625, edam:topic_2885 ; @@ -372770,7 +391994,7 @@ The Pompe disease GAA variant database represents an effort to collect all known sc:url "https://github.com/DecodeGenetics/popSTR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053 ; @@ -372785,7 +392009,7 @@ The Pompe disease GAA variant database represents an effort to collect all known sc:url "http://code.google.com/p/popabc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, edam:topic_2885, @@ -372802,7 +392026,7 @@ The Pompe disease GAA variant database represents an effort to collect all known sc:url "http://amaranthgdb.org/popamaranth.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3305, @@ -372824,7 +392048,7 @@ The Pompe disease GAA variant database represents an effort to collect all known sc:url "https://github.com/BDI-pathogens/POPART-IBM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3056 ; @@ -372839,7 +392063,7 @@ The Pompe disease GAA variant database represents an effort to collect all known sc:url "http://popbam.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3053, @@ -372857,7 +392081,7 @@ The Pompe disease GAA variant database represents an effort to collect all known sc:url "http://genetics.agrsci.dk/~bernt/popgen/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3335, edam:topic_3421, edam:topic_3474, @@ -372873,7 +392097,7 @@ Risk Prediction Platform for Postoperative Pancreatic Fistula (POPF).""" ; sc:url "http://popfrisk.smchbp.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0654, @@ -372889,8 +392113,25 @@ Risk Prediction Platform for Postoperative Pancreatic Fistula (POPF).""" ; sc:softwareHelp ; sc:url "http://www.soyomics.com/popgev/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:citation , + "pmcid:PMC8668730", + "pubmed:34938457" ; + sc:description "An R package to assess the sustainability of harvesting regimes of bird populations." ; + sc:featureList edam:operation_3435, + edam:operation_3946 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "popharvest" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/popharvest/popharvest" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -372908,8 +392149,32 @@ Risk Prediction Platform for Postoperative Pancreatic Fistula (POPF).""" ; sc:url "http://pophelper.com/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0622, + edam:topic_0625, + edam:topic_2885, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC8728255", + "pubmed:34664660" ; + sc:description "An interactive application for the functional characterization and prioritization of adaptive genomic variants in humans." ; + sc:featureList edam:operation_0487, + edam:operation_3196, + edam:operation_3226, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "PopHumanVar" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://pophumanvar.uab.cat" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation ; @@ -372925,7 +392190,7 @@ Risk Prediction Platform for Postoperative Pancreatic Fistula (POPF).""" ; sc:url "http://iclab.life.nctu.edu.tw/POPI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3053 ; @@ -372938,7 +392203,7 @@ Risk Prediction Platform for Postoperative Pancreatic Fistula (POPF).""" ; sc:url "https://github.com/bkehr/popins" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -372957,7 +392222,7 @@ Risk Prediction Platform for Postoperative Pancreatic Fistula (POPF).""" ; sc:url "https://github.com/kehrlab/PopIns2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0804 ; @@ -372974,18 +392239,18 @@ Risk Prediction Platform for Postoperative Pancreatic Fistula (POPF).""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3652" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -373007,7 +392272,7 @@ Risk Prediction Platform for Postoperative Pancreatic Fistula (POPF).""" ; sc:url "https://github.com/chernan/popitam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0130, @@ -373033,7 +392298,7 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab biotools:primaryContact "Dezyme Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056 ; @@ -373048,7 +392313,7 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab biotools:primaryContact "Robert Kofler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2885, @@ -373064,7 +392329,7 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab biotools:primaryContact "Robert Kofler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3056 ; @@ -373080,7 +392345,7 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab biotools:primaryContact "John Lees" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0166 ; sc:citation "pubmed:12087181", @@ -373094,7 +392359,7 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab sc:url "http://mathbio.nimr.mrc.ac.uk/wiki/POPS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0128 ; @@ -373110,7 +392375,7 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab sc:url "http://pops.csse.monash.edu.au/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0602 ; @@ -373129,8 +392394,29 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab biotools:primaryContact "Franca Fraternali", "Jens Kleinjung" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0203, + edam:topic_2229, + edam:topic_3170 ; + sc:citation , + "pubmed:35662457" ; + sc:description "A R Package for Pre-processing and Quality Control Analysis of Single Cell RNA-seq Data." ; + sc:featureList edam:operation_2428, + edam:operation_3223, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "popsicleR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bicciatolab/popsicleR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3293 ; @@ -373144,7 +392430,7 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab sc:url "http://www.kms.ac.jp/~genomelb/takezaki/poptree2/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2269, @@ -373165,7 +392451,7 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab biotools:primaryContact "Damian J. Matuszewski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3384 ; sc:citation ; @@ -373180,7 +392466,7 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab biotools:primaryContact "GitHub Issues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0654, @@ -373196,7 +392482,7 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab sc:url "http://sourceforge.net/p/rpore/wiki/Home/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769 ; sc:citation ; sc:description "A Code for Deterministic and Systematic Analyses of Porosities." ; @@ -373205,7 +392491,7 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab sc:url "https://github.com/kaitrepte/porE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, @@ -373223,7 +392509,7 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab biotools:primaryContact "Arash Rabbani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0820 ; @@ -373243,7 +392529,7 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab biotools:primaryContact "Roman Laskowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -373258,7 +392544,7 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab sc:url "https://github.com/arq5x/poretools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0820, edam:topic_2814 ; @@ -373277,7 +392563,7 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab biotools:primaryContact "Roman Laskowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0621, @@ -373297,7 +392583,7 @@ SNPMuSiC predicts whether protein variants are deleterious or benign due to stab sc:url "http://web.unimelb-bioinfortools.cloud.edu.au/Porpoise/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0749, edam:topic_3179, @@ -373314,7 +392600,7 @@ PortaDrop is a portable digital microfluidic system.""" ; sc:url "https://github.com/ewodac/PortaDrop" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, edam:topic_3168 ; @@ -373331,8 +392617,48 @@ Parallel implementation of OrthoMCL.""" ; sc:name "PorthoMCL" ; sc:url "http://github.com/etabari/PorthoMCL" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0634, + edam:topic_3173 ; + sc:citation , + "pubmed:35325022" ; + sc:description "Fast and accurate inference of Gene Regulatory Networks through robust precision matrix estimation." ; + sc:featureList edam:operation_1781, + edam:operation_2437, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PORTIA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/AntoinePassemiers/PORTIA" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_3304, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9394839", + "pubmed:35994482" ; + sc:description "A deep learning-based open science tool for closed-loop brain stimulation." ; + sc:featureList edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Portiloop" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Portiloop" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0099, @@ -373349,7 +392675,7 @@ Parallel implementation of OrthoMCL.""" ; sc:url "http://www.bioinformatics.org/portrait/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3306, @@ -373367,7 +392693,7 @@ Parallel implementation of OrthoMCL.""" ; biotools:primaryContact "Larry Pierce" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation "pubmed:24838569" ; @@ -373383,7 +392709,7 @@ Parallel implementation of OrthoMCL.""" ; biotools:primaryContact "POSA Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Plug-in" ; sc:applicationSubCategory edam:topic_0128, @@ -373403,7 +392729,7 @@ Parallel implementation of OrthoMCL.""" ; biotools:primaryContact "Subha Kalyaanamoorthy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, edam:topic_0769 ; @@ -373420,14 +392746,14 @@ PoSeiDon, a pipeline to detect significantly positive selected sites and possibl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602 ; @@ -373445,7 +392771,7 @@ PoSeiDon, a pipeline to detect significantly positive selected sites and possibl sc:url "http://proteinsplus.zbh.uni-hamburg.de/#poseview" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -373463,7 +392789,7 @@ PoSeiDon, a pipeline to detect significantly positive selected sites and possibl sc:url "http://biolod.org/PosMed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0209, edam:topic_0749, @@ -373486,7 +392812,7 @@ PoSeiDon, a pipeline to detect significantly positive selected sites and possibl biotools:primaryContact "PoSSuM Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -373502,7 +392828,7 @@ PoSeiDon, a pipeline to detect significantly positive selected sites and possibl sc:url "http://zlab.bu.edu/~mfrith/possum/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_3510, @@ -373520,7 +392846,7 @@ PoSeiDon, a pipeline to detect significantly positive selected sites and possibl "Trevor Lithgow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Michael Beckstette", @@ -373539,7 +392865,7 @@ PoSeiDon, a pipeline to detect significantly positive selected sites and possibl sc:url "https://bibiserv.cebitec.uni-bielefeld.de/possumsearch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Michael Beckstette", @@ -373559,7 +392885,7 @@ PoSeiDon, a pipeline to detect significantly positive selected sites and possibl sc:url "https://bibiserv.cebitec.uni-bielefeld.de/possumsearch2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3518 ; @@ -373575,20 +392901,42 @@ PoSeiDon, a pipeline to detect significantly positive selected sites and possibl sc:url "http://bioconductor.org/packages/release/bioc/html/POST.html" ; biotools:primaryContact "Xueyuan Cao" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3293, + edam:topic_3360, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9171974", + "pubmed:35668471" ; + sc:description "Phylogeny-guided microbiome OTU-specific association test (POST)." ; + sc:featureList edam:operation_0323, + edam:operation_0326, + edam:operation_0567 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "POSTm" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://CRAN.R-project.org/package=POSTm" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Peptide mass fingerprint" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -373611,7 +392959,7 @@ PoSeiDon, a pipeline to detect significantly positive selected sites and possibl sc:url "http://www.uib.no/en/rg/probe/65847/postman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, edam:topic_3474 ; @@ -373626,7 +392974,7 @@ Many modern problems leverage machine learning methods to predict outcomes based sc:url "https://github.com/leekgroup/postpi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3308 ; sc:author "Nathan S. Watson-Haigh", @@ -373646,7 +392994,7 @@ Many modern problems leverage machine learning methods to predict outcomes based "Radoslaw Suchecki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0102, @@ -373666,14 +393014,13 @@ Many modern problems leverage machine learning methods to predict outcomes based a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation , @@ -373688,28 +393035,28 @@ Many modern problems leverage machine learning methods to predict outcomes based sc:softwareVersion "v2.0" ; sc:url "https://potamos.med.uoi.gr/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_0625, - edam:topic_2640, - edam:topic_3336 ; - sc:citation ; - sc:description """Gene-signatures predict biologically relevant dose-response potencies in phenotypic assays. - -Abstract Multiplexed gene-signature-based phenotypic assays are increasingly used for the identification and profiling of small molecule-tool compounds and drugs. Here we introduce a method (provided as R-package) for the quantification of the dose-response potency of a gene-signature as EC 50 and IC 50 values. Two signaling pathways were used as models to validate our methods: beta-adrenergic agonistic activity on cAMP generation (dedicated dataset generated for this study) and EGFR inhibitory effect on cancer cell viability. In both cases, potencies derived from multi-gene expression data were highly correlated with orthogonal potencies derived from cAMP and cell growth readouts, and superior to potencies derived from single individual genes. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'gene-signature potencies', 'gene-signature', 'readouts', 'gene-signature-based'""" ; - sc:featureList edam:operation_2428, - edam:operation_3463, - edam:operation_3799 ; - sc:name "potencies" ; - sc:url "https://doi.org/10.1101/799106" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0632, + edam:topic_0736, + edam:topic_0769, + edam:topic_3318 ; + sc:citation ; + sc:description "An automated pipeline for batch analysis of optical tweezers data." ; + sc:featureList edam:operation_0279, + edam:operation_0337, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "POTATO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/REMI-HIRI/POTATO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3569 ; @@ -373724,7 +393071,7 @@ Abstract Multiplexed gene-signature-based phenotypic assays are increasingly use sc:url "http://www.potterswheel.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -373744,7 +393091,7 @@ Abstract Multiplexed gene-signature-based phenotypic assays are increasingly use sc:url "https://pout2prot.ugent.be" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -373766,7 +393113,7 @@ Abstract Multiplexed gene-signature-based phenotypic assays are increasingly use sc:url "https://github.com/Peter-Two-Point-O/POUTINE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -373788,7 +393135,7 @@ Abstract Multiplexed gene-signature-based phenotypic assays are increasingly use biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3304, edam:topic_3379 ; @@ -373802,7 +393149,7 @@ Abstract Multiplexed gene-signature-based phenotypic assays are increasingly use sc:url "https://shiny.york.ac.uk/powercontours/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654, @@ -373823,7 +393170,7 @@ To use POWEREDBiSeq, you must first download the script POWEREDBiSeqFunctions.R sc:url "https://github.com/ds420/POWEREDBiSeq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_2885, @@ -373841,7 +393188,7 @@ Power and sample size calculation for eQTL analysis based on ANOVA or simple lin sc:url "https://bwhbioinfo.shinyapps.io/powerEQTL/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3168, @@ -373861,7 +393208,7 @@ Power and sample size calculation for eQTL analysis based on ANOVA or simple lin biotools:primaryContact "Xu Qiao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0611, edam:topic_1317 ; @@ -373905,7 +393252,7 @@ Power and sample size calculation for eQTL analysis based on ANOVA or simple lin biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053, @@ -373921,7 +393268,7 @@ Power and sample size calculation for eQTL analysis based on ANOVA or simple lin sc:url "http://kooperberg.fhcrc.org/soft.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053 ; @@ -373936,7 +393283,7 @@ Power and sample size calculation for eQTL analysis based on ANOVA or simple lin sc:url "http://www.hsph.harvard.edu/peter-kraft/software/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3063 ; sc:citation ; @@ -373954,7 +393301,7 @@ Power and sample size calculation for eQTL analysis based on ANOVA or simple lin biotools:primaryContact "Hillary Koch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3168, edam:topic_3342, @@ -373968,7 +393315,7 @@ Power and sample size calculation for eQTL analysis based on ANOVA or simple lin sc:url "https://joelarkman.shinyapps.io/PowerTools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3174, edam:topic_3697, @@ -373984,7 +393331,7 @@ Power analysis is essential to decide the sample size of metagenomic sequencing sc:url "https://github.com/lichen-lab/powmic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3518, @@ -374003,7 +393350,7 @@ POWSC is a R package designed for scRNA-seq with a wild range of usage. It can p sc:url "https://github.com/suke18/POWSC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -374025,7 +393372,7 @@ POWSC is a R package designed for scRNA-seq with a wild range of usage. It can p biotools:primaryContact "Webmaster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128 ; sc:citation "pubmed:25172924" ; @@ -374040,7 +393387,7 @@ POWSC is a R package designed for scRNA-seq with a wild range of usage. It can p sc:url "http://www.iitm.ac.in/bioinfo/PPA_Pred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_0659, @@ -374063,7 +393410,7 @@ PPAI is a novel web-server to predict aptamers and protein-aptamer interactions sc:url "http://39.96.85.9/PPAI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -374088,7 +393435,7 @@ PPAI is a novel web-server to predict aptamers and protein-aptamer interactions sc:url "https://www-dyliss.irisa.fr/ppalign" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -374106,7 +393453,7 @@ PPAI is a novel web-server to predict aptamers and protein-aptamer interactions biotools:primaryContact "Jean-Louis Reymond" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0602 ; @@ -374120,7 +393467,7 @@ PPAI is a novel web-server to predict aptamers and protein-aptamer interactions sc:url "http://www.bionut.ki.se/groups/tbu/software/#PPCMatrix" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0621, @@ -374135,7 +393482,7 @@ PPAI is a novel web-server to predict aptamers and protein-aptamer interactions sc:url "http://lin-group.cn/database/ppd/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0780, @@ -374153,8 +393500,24 @@ PPAI is a novel web-server to predict aptamers and protein-aptamer interactions "Windows" ; sc:url "http://sitem.herts.ac.uk/aeru/ppdb/en/index.htm" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC7394329", + "pubmed:30717654" ; + sc:description "This server is made in order to provide an easy webserver to calculate FNAT, L-RMSD and I-RMSD values of docked and original poses of protein-peptide complexes." ; + sc:featureList edam:operation_2945 ; + sc:name "ppdbench" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/ppdbench/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, edam:topic_0593, @@ -374177,7 +393540,7 @@ pPerturb provides a rapid and experimentally consistent measure of the extent to sc:url "http://pbl.biotech.iitm.ac.in/pPerturb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -374190,7 +393553,7 @@ pPerturb provides a rapid and experimentally consistent measure of the extent to sc:url "http://mblab.wustl.edu/software.html#ppfinderLink" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099 ; @@ -374209,7 +393572,7 @@ pPerturb provides a rapid and experimentally consistent measure of the extent to biotools:primaryContact "Zsuzsanna Sukosd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -374227,7 +393590,7 @@ pPerturb provides a rapid and experimentally consistent measure of the extent to sc:url "http://bioserv.rpbs.univ-paris-diderot.fr/services/PPG/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3335 ; sc:citation , @@ -374241,14 +393604,13 @@ Photoplethysmography (PPG) is increasingly used in digital health, exceptionally a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128 ; sc:citation ; @@ -374263,8 +393625,30 @@ Photoplethysmography (PPG) is increasingly used in digital health, exceptionally sc:softwareHelp ; sc:url "http://proteinsplus.zbh.uni-hamburg.de/#ppi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0128, + edam:topic_0154, + edam:topic_0199, + edam:topic_3474 ; + sc:citation , + "pubmed:35654412" ; + sc:description "A Web Tool for the Prediction and Optimization of Protein-Peptide and Protein-Protein Binding Affinity." ; + sc:featureList edam:operation_0337, + edam:operation_2464, + edam:operation_2492, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:name "PPI-Affinity" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://protdcal.zmb.uni-due.de/PPIAffinity" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -374288,7 +393672,7 @@ Photoplethysmography (PPG) is increasingly used in digital health, exceptionally sc:url "https://minicad.appsbio.utalca.cl/ppi-mass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154 ; @@ -374301,7 +393685,7 @@ Photoplethysmography (PPG) is increasingly used in digital health, exceptionally sc:url "http://faculty.uaeu.ac.ae/nzaki/PPI_PS.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_0176, @@ -374323,7 +393707,7 @@ Welcome to PPI3D − a web server for searching, analyzing and modeling protein sc:url "http://bioinformatics.lt/ppi3d" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0108 ; sc:citation "pubmed:17239823" ; @@ -374335,7 +393719,7 @@ Welcome to PPI3D − a web server for searching, analyzing and modeling protein sc:url "http://www.biosun.org.cn/ppic9/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0622, @@ -374353,7 +393737,7 @@ Welcome to PPI3D − a web server for searching, analyzing and modeling protein biotools:primaryContact "Volkhard HelmsEmail author" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -374374,18 +393758,18 @@ Welcome to PPI3D − a web server for searching, analyzing and modeling protein a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3768" ; - sc:name "Clustered expression profiles" ; - sc:sameAs "http://edamontology.org/data_3768" ], + sc:additionalType "http://edamontology.org/data_3768" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Clustered expression profiles" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128 ; @@ -374404,7 +393788,7 @@ Welcome to PPI3D − a web server for searching, analyzing and modeling protein sc:url "http://www.fgvis.com/expressvis/PPIExp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, edam:topic_0154, @@ -374427,7 +393811,7 @@ Background: Protein-protein interactions (PPIs) are fundamental in many biologic sc:url "https://ppigremlin.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, edam:topic_0736, @@ -374450,7 +393834,7 @@ This can generate an alignment for an existing UNIPROT sequence and then run it sc:url "http://bioware.ucd.ie/PPIIPRED" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128 ; sc:citation , @@ -374463,7 +393847,7 @@ This can generate an alignment for an existing UNIPROT sequence and then run it sc:url "http://comp-sysbio.org/ppim/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -374482,7 +393866,7 @@ This can generate an alignment for an existing UNIPROT sequence and then run it biotools:primaryContact "Dongmin Jung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_0202, @@ -374499,18 +393883,18 @@ This can generate an alignment for an existing UNIPROT sequence and then run it a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -374527,7 +393911,7 @@ This can generate an alignment for an existing UNIPROT sequence and then run it sc:url "https://github.com/Shawn-Xu/PPIP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -374544,7 +393928,7 @@ This can generate an alignment for an existing UNIPROT sequence and then run it biotools:primaryContact "Lin Gao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -374567,7 +393951,7 @@ This can generate an alignment for an existing UNIPROT sequence and then run it biotools:primaryContact "Dr. Jinn-Moon Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0078, @@ -374587,7 +393971,7 @@ This can generate an alignment for an existing UNIPROT sequence and then run it biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640 ; @@ -374602,7 +393986,7 @@ This can generate an alignment for an existing UNIPROT sequence and then run it sc:url "http://www.bioprofiling.de/GEO/PPISURV/ppisurv.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -374618,7 +394002,7 @@ This can generate an alignment for an existing UNIPROT sequence and then run it sc:url "http://sourceforge.net/projects/ppixpress/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0154, edam:topic_2275, @@ -374636,7 +394020,7 @@ Potassium channels play a key role in regulating the flow of ions through the pl sc:url "https://github.com/bio-coding/PPLKC-" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0780, edam:topic_3810 ; @@ -374650,8 +394034,31 @@ PPMaP is a software for plant phonological phase prediction and mapping. This wo sc:name "PPMaP" ; sc:url "https://github.com/Atoundem/PPMaP" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0602, + edam:topic_0632, + edam:topic_0780, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC8556342", + "pubmed:34716373" ; + sc:description "An interactive hub for pathways-based markers in plant genomes." ; + sc:featureList edam:operation_0533, + edam:operation_3282, + edam:operation_3926 ; + sc:isAccessibleForFree true ; + sc:name "PPMdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://ppmdb.easyomics.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081 ; @@ -374664,16 +394071,33 @@ PPMaP is a software for plant phonological phase prediction and mapping. This wo sc:softwareHelp ; sc:url "https://sites.google.com/site/guofeics/ppms-online-document" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_3315, + edam:topic_3379 ; + sc:citation ; + sc:description "Conditional power, predictive power and probability of success in clinical trials with continuous, binary and time-to-event endpoints." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "PPoS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ppos.herokuapp.com/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2749" ; - sc:name "Genome identifier" ; - sc:sameAs "http://edamontology.org/data_2749" ] ; + sc:additionalType "http://edamontology.org/data_2749" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Genome identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation , @@ -374692,7 +394116,7 @@ PPMaP is a software for plant phonological phase prediction and mapping. This wo biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0602 ; @@ -374705,10 +394129,23 @@ PPMaP is a software for plant phonological phase prediction and mapping. This wo "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/pprint/" . + sc:url "http://webs.iiitd.edu.in/raghava/pprint/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "A web server for predicting RNA interacting residues." ; + sc:featureList edam:operation_2945 ; + sc:name "pprint2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/pprint2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation , @@ -374725,16 +394162,36 @@ PPMaP is a software for plant phonological phase prediction and mapping. This wo sc:softwareVersion "1.0" ; sc:url "http://pps.biocuckoo.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0602, + edam:topic_3172, + edam:topic_3411 ; + sc:citation , + "pmcid:PMC8729005", + "pubmed:34986802" ; + sc:description "R package to perform PPS analysis on graphical models" ; + sc:featureList edam:operation_1812, + edam:operation_3659, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PPS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/nathan-gill/pps" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:name "Structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2085" ; - sc:name "Structure report" ; - sc:sameAs "http://edamontology.org/data_2085" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2085" ; + sc:name "Structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0081 ; sc:citation ; @@ -374751,14 +394208,13 @@ PPMaP is a software for plant phonological phase prediction and mapping. This wo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ] ; + sc:additionalType "http://edamontology.org/data_0989" ; + sc:name "Protein identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623 ; sc:description "Prokaryotic protein phosphatases." ; @@ -374767,7 +394223,7 @@ PPMaP is a software for plant phonological phase prediction and mapping. This wo sc:url "http://vigen.biochem.vt.edu/p3d/p3d.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0601, edam:topic_3068 ; @@ -374782,7 +394238,7 @@ PPMaP is a software for plant phonological phase prediction and mapping. This wo sc:url "http://bioinformatics.ustc.edu.cn/pptm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_3300, @@ -374804,7 +394260,7 @@ Your javac need to support the version 6, therefore, we recommend to use JDK 11 sc:url "https://github.com/YPZ858/PPTPP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659 ; @@ -374819,7 +394275,7 @@ Your javac need to support the version 6, therefore, we recommend to use JDK 11 sc:url "http://lyh.pkmu.cn/ppus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -374839,14 +394295,12 @@ Your javac need to support the version 6, therefore, we recommend to use JDK 11 a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:name "Sequence set (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -374862,7 +394316,7 @@ Your javac need to support the version 6, therefore, we recommend to use JDK 11 sc:url "http://forshed.se/jenny/index.php?n=Research.SoftwareAmpCode" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Web application" ; @@ -374884,32 +394338,8 @@ Your javac need to support the version 6, therefore, we recommend to use JDK 11 sc:url "https://pqsfinder.fi.muni.cz" ; biotools:primaryContact "Jiri Hon" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0099, - edam:topic_0654, - edam:topic_3170 ; - sc:citation , - "pubmed:31830256" ; - sc:description """G-quadruplex prediction using optimized pqsfinder algorithm. - -pqsfinder – imperfection-tolerant G-quadruplex prediction. - -Identification of potential quadruplex forming sequences. - -Pqsfinder detects DNA and RNA sequence patterns that are likely to fold into an intramolecular G-quadruplex (G4). Unlike many other approaches, pqsfinder is able to detect G4s folded from imperfect G-runs containing bulges or mismatches or G4s having long loops. Pqsfinder also assigns an integer score to each hit that was fitted on G4 sequencing data and corresponds to expected stability of the folded G4. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/pqsfinder. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/CytoPacq (FI.MUNI.CZ)""" ; - sc:featureList edam:operation_0429, - edam:operation_0432, - edam:operation_0475 ; - sc:license "BSD-2-Clause" ; - sc:name "pqsfinder_autogenerated" ; - sc:url "https://pqsfinder.fi.muni.cz" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0621, @@ -374930,7 +394360,7 @@ A database of eukaryotic rRNA primers and primer sets for metabarcoding studies sc:url "https://app.pr2-primers.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0621, @@ -374953,7 +394383,7 @@ A database of eukaryotic rRNA primers and primer sets for metabarcoding studies sc:url "https://app.pr2-primers.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080 ; @@ -374970,7 +394400,7 @@ A database of eukaryotic rRNA primers and primer sets for metabarcoding studies sc:url "http://pr2align.rit.albany.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3301, edam:topic_3305, edam:topic_3315, @@ -374985,16 +394415,42 @@ PRediction and Assesment of CoRona Infections and Transmission in India.""" ; sc:name "PRACRITI" ; sc:url "http://pracriti.iitd.ac.in" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0622, + edam:topic_0625, + edam:topic_3673, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9344836", + "pubmed:35748708" ; + sc:description "Platform for storing and using pangenomes for imputation." ; + sc:featureList edam:operation_0484, + edam:operation_0487, + edam:operation_3196, + edam:operation_3198, + edam:operation_3557 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Practical Haplotype Graph" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://bitbucket.org/bucklerlab/practicalhaplotypegraph/wiki/Home" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -375017,7 +394473,7 @@ PRediction and Assesment of CoRona Infections and Transmission in India.""" ; biotools:primaryContact "Florian Hahne" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -375033,7 +394489,7 @@ PRediction and Assesment of CoRona Infections and Transmission in India.""" ; sc:url "http://bioinformatics.mdanderson.org/main/PRADA:Overview" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -375061,7 +394517,7 @@ PRediction and Assesment of CoRona Infections and Transmission in India.""" ; biotools:primaryContact "Centre for Integrative Bioinformatics VU (IBIVU), Vrije Universiteit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769 ; @@ -375076,7 +394532,7 @@ PRediction and Assesment of CoRona Infections and Transmission in India.""" ; sc:url "https://github.com/ibivu/PRALINE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3063, @@ -375092,7 +394548,7 @@ PRediction and Assesment of CoRona Infections and Transmission in India.""" ; sc:url "http://pranaviz.bath.ac.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -375111,7 +394567,7 @@ can be used to compute the probabilities of ranked or unranked phylogenetic gene sc:url "http://github.com/anastasiiakim/PRANC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -375126,7 +394582,7 @@ can be used to compute the probabilities of ranked or unranked phylogenetic gene sc:url "http://wasabiapp.org/software/prank/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -375143,7 +394599,7 @@ can be used to compute the probabilities of ranked or unranked phylogenetic gene sc:url "http://www.ebi.ac.uk/Tools/webservices/services/msa/prank_rest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0625, edam:topic_0769, @@ -375163,7 +394619,7 @@ PRAP is a platform independent Python3 tool used to analyze pan-resistome charac sc:url "https://github.com/syyrjx-hyc/PRAP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0749, @@ -375181,7 +394637,7 @@ PRAP is a platform independent Python3 tool used to analyze pan-resistome charac biotools:primaryContact "Lianfeng Gu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2814 ; @@ -375195,8 +394651,31 @@ PRAP is a platform independent Python3 tool used to analyze pan-resistome charac sc:softwareHelp ; sc:url "http://raptorx2.uchicago.edu/StructurePropertyPred/predict/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_1317, + edam:topic_3542 ; + sc:citation , + "pubmed:36000562" ; + sc:description "A Web Server to Repair PDB Structures, Add Missing Heavy Atoms and Hydrogen Atoms, and Assign Secondary Structures by Amide Interactions." ; + sc:featureList edam:operation_0319, + edam:operation_0337, + edam:operation_2488 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PRAS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.protein-science.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128 ; @@ -375209,23 +394688,22 @@ PRAP is a platform independent Python3 tool used to analyze pan-resistome charac a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2762" ; - sc:name "Sequence signature report" ; - sc:sameAs "http://edamontology.org/data_2762" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2762" ; + sc:name "Sequence signature report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; sc:author "Inge Jonassen", - "Web Production" ; - sc:citation ; + "Job Dispatcher" ; + sc:citation , + ; sc:description "Discover patterns in unaligned protein sequences." ; sc:featureList edam:operation_0238 ; - sc:name "Pratt" ; + sc:name "Pratt (EBI)" ; sc:operatingSystem "Linux", "Mac", "Windows" ; @@ -375235,10 +394713,10 @@ PRAP is a platform independent Python3 tool used to analyze pan-resistome charac ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/pfa/pratt/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0099, @@ -375255,7 +394733,7 @@ PRAP is a platform independent Python3 tool used to analyze pan-resistome charac sc:url "http://www.cbi.seu.edu.cn/PRBP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0099, @@ -375273,7 +394751,7 @@ PRAP is a platform independent Python3 tool used to analyze pan-resistome charac sc:url "http://www.cbi.seu.edu.cn/PRBR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0607, edam:topic_2269, @@ -375299,7 +394777,7 @@ PRAP is a platform independent Python3 tool used to analyze pan-resistome charac biotools:primaryContact "Takaya Saito" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:author "Chong Wu", "Wei Pan" ; @@ -375316,7 +394794,7 @@ Clustering is unsupervised and exploratory in nature. Yet, it can be performed t sc:url "https://cran.r-project.org/web/packages/prclust/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -375338,7 +394816,7 @@ Clustering is unsupervised and exploratory in nature. Yet, it can be performed t biotools:primaryContact "PrDOS Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -375354,7 +394832,7 @@ Clustering is unsupervised and exploratory in nature. Yet, it can be performed t sc:url "https://github.com/poncey/PreAntiCoV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -375370,8 +394848,30 @@ Clustering is unsupervised and exploratory in nature. Yet, it can be performed t sc:name "PreBI" ; sc:url "http://pre-s.protein.osaka-u.ac.jp/prebi/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0202, + edam:topic_0209, + edam:topic_0623, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8685504", + "pubmed:34938773" ; + sc:description "An Interactive Web Tool to Create Appropriate Datasets for Predicting Compound-Protein Interactions." ; + sc:featureList edam:operation_2489, + edam:operation_3936, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "PreBINDS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://binds.lifematics.work/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -375394,7 +394894,7 @@ Clustering is unsupervised and exploratory in nature. Yet, it can be performed t biotools:primaryContact "Karolis Uziela" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -375408,7 +394908,7 @@ Clustering is unsupervised and exploratory in nature. Yet, it can be performed t sc:url "http://www.wageningenur.nl/en/show/PRECISE-Prediction-of-REgulatory-CISacting-Elements.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3379, edam:topic_3577 ; @@ -375423,7 +394923,7 @@ Clustering is unsupervised and exploratory in nature. Yet, it can be performed t sc:url "https://github.com/NKI-CCB/PRECISE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0654 ; @@ -375438,7 +394938,7 @@ Clustering is unsupervised and exploratory in nature. Yet, it can be performed t sc:url "https://absynth.issb.genopole.fr/Bioinformatics/tools/PrecisePrimer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0749, edam:topic_3169, @@ -375458,7 +394958,7 @@ preciseTAD provides functions to predict the location of boundaries of topologic sc:url "https://bioconductor.org/packages/preciseTAD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3474 ; @@ -375473,7 +394973,7 @@ preciseTAD provides functions to predict the location of boundaries of topologic biotools:primaryContact "Stefan Schroedl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workflow" ; sc:applicationSubCategory edam:topic_0080, @@ -375495,7 +394995,7 @@ preciseTAD provides functions to predict the location of boundaries of topologic biotools:primaryContact "Jinchuan Xing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3314, @@ -375515,7 +395015,7 @@ preciseTAD provides functions to predict the location of boundaries of topologic biotools:primaryContact "Peter Gennemark" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Script" ; sc:applicationSubCategory edam:topic_0602, @@ -375540,10 +395040,10 @@ PrecocityDB is the first manually curated online database on genes, SNPs, pathwa edam:operation_3928 ; sc:license "GPL-3.0" ; sc:name "PrecocityDB" ; - sc:url "https://github.com/bic-nirrh/precocity" . + sc:url "http://www.precocity.bicnirrh.res.in/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Web application" ; @@ -375566,8 +395066,42 @@ PrecocityDB is the first manually curated online database on genes, SNPs, pathwa sc:url "http://precog.lundberg.gu.se/" ; biotools:primaryContact "Luciano Fernandez" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0749, + edam:topic_0820, + edam:topic_3168, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9252787", + "pubmed:35639758" ; + sc:description "Exploring GPCR signaling mechanisms with deep protein representations." ; + sc:featureList edam:operation_0269, + edam:operation_2939, + edam:operation_2995, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "PRECOGx" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://precogx.bioinfolab.sns.it/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0607, @@ -375591,7 +395125,7 @@ PrecocityDB is the first manually curated online database on genes, SNPs, pathwa biotools:primaryContact "Takaya Saito" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -375613,14 +395147,14 @@ PrecocityDB is the first manually curated online database on genes, SNPs, pathwa a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0820 ; @@ -375639,10 +395173,10 @@ PrecocityDB is the first manually curated online database on genes, SNPs, pathwa a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation "pubmed:18988691" ; @@ -375660,7 +395194,7 @@ PrecocityDB is the first manually curated online database on genes, SNPs, pathwa biotools:primaryContact "Pantelis Bagos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_2258, @@ -375679,14 +395213,14 @@ The Pred-Skin application is based on externally predictive QSAR models of skin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation "pubmed:20847219" ; @@ -375705,7 +395239,7 @@ The Pred-Skin application is based on externally predictive QSAR models of skin biotools:primaryContact "Pantelis Bagos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0736, @@ -375729,14 +395263,14 @@ The Pred-Skin application is based on externally predictive QSAR models of skin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0820 ; @@ -375756,30 +395290,30 @@ The Pred-Skin application is based on externally predictive QSAR models of skin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Gene expression matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2166" ; - sc:name "Sequence composition plot" ; - sc:sameAs "http://edamontology.org/data_2166" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_2166" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Sequence composition plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1288" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Genome map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1288" ; - sc:name "Genome map" ; - sc:sameAs "http://edamontology.org/data_1288" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0085, @@ -375798,8 +395332,30 @@ The Pred-Skin application is based on externally predictive QSAR models of skin sc:url "http://bioconductor.org/packages/release/bioc/html/PREDA.html" ; biotools:primaryContact "Francesco Ferrari" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0634, + edam:topic_3474 ; + sc:citation , + "pubmed:34608613" ; + sc:description "PredAPP is a web server providing users an effective identification of antiparasitic peptides (APPs) ." ; + sc:featureList edam:operation_3432, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:name "PredAPP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://predapp.xialab.info" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, edam:topic_2640, @@ -375817,7 +395373,7 @@ The discrimination of driver from passenger mutations has been a hot topic in th sc:url "http://bioinfo.ahu.edu.cn:8080/PredCID" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3053, @@ -375838,7 +395394,7 @@ The discrimination of driver from passenger mutations has been a hot topic in th biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation , @@ -375853,7 +395409,7 @@ The discrimination of driver from passenger mutations has been a hot topic in th sc:url "http://www.csbio.sjtu.edu.cn/bioinf/PredCSF/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -375869,7 +395425,7 @@ The discrimination of driver from passenger mutations has been a hot topic in th sc:url "http://model.nmr.ru/preddimer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0749, @@ -375885,7 +395441,7 @@ The discrimination of driver from passenger mutations has been a hot topic in th sc:url "http://www.montefiore.ulg.ac.be/~hiard/PreDetector/PreDetector.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -375905,14 +395461,14 @@ The discrimination of driver from passenger mutations has been a hot topic in th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_3542 ; @@ -375932,7 +395488,7 @@ The discrimination of driver from passenger mutations has been a hot topic in th "Rita Casadio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, edam:topic_3068, @@ -375953,7 +395509,7 @@ The International Molecular Exchange Consortium (IMEX) had the initiative to clu sc:url "http://bioinfo.usu.edu/PredHPI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -375975,7 +395531,7 @@ The International Molecular Exchange Consortium (IMEX) had the initiative to clu biotools:primaryContact "Lei Deng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0601, edam:topic_3510 ; @@ -375991,7 +395547,7 @@ The International Molecular Exchange Consortium (IMEX) had the initiative to clu sc:url "http://bioinfo.ncu.edu.cn/PredHydroxy.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -376013,7 +395569,7 @@ The International Molecular Exchange Consortium (IMEX) had the initiative to clu sc:url "https://pandaaffinity.pythonanywhere.com/welcome/default/index#" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0749, @@ -376034,10 +395590,10 @@ Transcription Factors (TFs) are proteins controlling the rate of genetic informa a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence set (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -376052,7 +395608,7 @@ Transcription Factors (TFs) are proteins controlling the rate of genetic informa sc:url "https://github.com/cbg-ethz/PredictHaplo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -376076,7 +395632,7 @@ Transcription Factors (TFs) are proteins controlling the rate of genetic informa "Catharina Olsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -376096,14 +395652,14 @@ Transcription Factors (TFs) are proteins controlling the rate of genetic informa a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2062" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -376128,7 +395684,7 @@ Transcription Factors (TFs) are proteins controlling the rate of genetic informa sc:url "https://www.rostlab.org/owiki/index.php/PredictNLS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, edam:topic_3068, @@ -376146,7 +395702,7 @@ Advances in the development of high-throughput screening and automated chemistry sc:url "https://predictor.ncats.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -376164,7 +395720,7 @@ Advances in the development of high-throughput screening and automated chemistry sc:url "http://bioinf.scmb.uq.edu.au:8080/proteinabundance/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -376189,14 +395745,14 @@ Advances in the development of high-throughput screening and automated chemistry a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -376262,7 +395818,7 @@ Advances in the development of high-throughput screening and automated chemistry biotools:primaryContact "PredictProtein Help Desk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0749, @@ -376281,18 +395837,17 @@ Advances in the development of high-throughput screening and automated chemistry a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2291" ; - sc:name "UniProt ID" ; - sc:sameAs "http://edamontology.org/data_2291" ], + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -376339,21 +395894,21 @@ Advances in the development of high-throughput screening and automated chemistry biotools:primaryContact "PredictSNP team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "PredictSNP Onco is the web tool for fully automated and fast analysis of the effect of mutations on stability and function in known cancer targets applying in silico methods of molecular modelling and bioinformatics." ; sc:name "PredictSNP-ONCO" ; sc:url "https://loschmidt.chemi.muni.cz/predictsnp-onco/" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2533, @@ -376398,7 +395953,7 @@ Advances in the development of high-throughput screening and automated chemistry biotools:primaryContact "PredictSNP team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -376418,7 +395973,7 @@ Advances in the development of high-throughput screening and automated chemistry biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0140, @@ -376436,8 +395991,20 @@ Advances in the development of high-throughput screening and automated chemistry sc:url "http://www.predisi.de/" ; biotools:primaryContact "Karsten Hiller" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:citation , + "pmcid:PMC3087350", + "pubmed:20025768" ; + sc:description "PreDisorder server is a valuable and accurate tool for protein structure prediction, protein determination and protein engineering." ; + sc:name "PreDisorder" ; + sc:operatingSystem "Linux" ; + sc:softwareVersion "1.1" ; + sc:url "http://casp.rnet.missouri.edu/predisorder.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -376459,10 +396026,10 @@ Advances in the development of high-throughput screening and automated chemistry a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -376481,14 +396048,12 @@ Advances in the development of high-throughput screening and automated chemistry a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2301" ; - sc:name "SMILES string" ; - sc:sameAs "http://edamontology.org/data_2301" ], + sc:additionalType "http://edamontology.org/data_1712" ; + sc:name "Chemical structure image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1712" ; - sc:name "Chemical structure image" ; - sc:sameAs "http://edamontology.org/data_1712" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -376509,7 +396074,7 @@ Advances in the development of high-throughput screening and automated chemistry sc:url "https://predms.netlify.app" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3400, edam:topic_3407, @@ -376524,7 +396089,7 @@ Advances in the development of high-throughput screening and automated chemistry sc:url "https://github.com/xialab-ahu/PredNeuroP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0160, @@ -376545,7 +396110,7 @@ Advances in the development of high-throughput screening and automated chemistry biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -376569,7 +396134,7 @@ Advances in the development of high-throughput screening and automated chemistry biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0128 ; @@ -376583,7 +396148,7 @@ Advances in the development of high-throughput screening and automated chemistry biotools:primaryContact "Lei Deng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0749, @@ -376604,14 +396169,14 @@ Advances in the development of high-throughput screening and automated chemistry a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082 ; sc:citation , @@ -376629,7 +396194,7 @@ Advances in the development of high-throughput screening and automated chemistry biotools:primaryContact "Marjana Novič" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -376651,7 +396216,7 @@ Advances in the development of high-throughput screening and automated chemistry biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0123 ; @@ -376669,14 +396234,12 @@ Advances in the development of high-throughput screening and automated chemistry a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1352" ; - sc:name "Regular expression" ; - sc:sameAs "http://edamontology.org/data_1352" ], + sc:additionalType "http://edamontology.org/data_1352" ; + sc:name "Regular expression" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -376707,7 +396270,7 @@ Advances in the development of high-throughput screening and automated chemistry sc:url "http://emboss.open-bio.org/rel/rel6/apps/preg.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0593, edam:topic_0736, @@ -376728,7 +396291,7 @@ PreHots, a computational method that can effectively identify hot spots on prote sc:url "https://dmb.tongji.edu.cn/tools/PreHots/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation "pubmed:16682423" ; @@ -376743,7 +396306,7 @@ PreHots, a computational method that can effectively identify hot spots on prote sc:url "http://babylone.ulb.ac.be/Prelude_and_Fugue/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0208, edam:topic_0634, @@ -376764,7 +396327,7 @@ One important aspect of precision medicine aims to deliver the right medicine to sc:url "http://www.fudan-pgx.org/premedkb/index.html#/home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3511 ; @@ -376779,7 +396342,7 @@ One important aspect of precision medicine aims to deliver the right medicine to sc:url "http://bioserv.mps.ohio-state.edu/premer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3174, @@ -376798,7 +396361,7 @@ One important aspect of precision medicine aims to deliver the right medicine to biotools:primaryContact "Zheng-Zheng Tang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, edam:topic_2275, @@ -376820,8 +396383,24 @@ CYP 3A4, 1A2, 2C9, 2D6 Site of Metabolism (SOM) prediction.""" ; sc:name "PreMetabo" ; sc:url "https://premetabo.bmdrc.kr/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC3172211", + "pubmed:21931639" ; + sc:description "PreMieR is a web-server specially trained for the identification of mannose interacting residues (MIRs)." ; + sc:featureList edam:operation_2945 ; + sc:name "premier" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/premier/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -376841,7 +396420,7 @@ CYP 3A4, 1A2, 2C9, 2D6 Site of Metabolism (SOM) prediction.""" ; sc:url "https://github.com/jhhung/Premnas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -376860,7 +396439,7 @@ CYP 3A4, 1A2, 2C9, 2D6 Site of Metabolism (SOM) prediction.""" ; biotools:primaryContact "Minghui Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0128, edam:topic_0130, @@ -376879,7 +396458,7 @@ PremPRI predicts the effects of single muta-tions occurring in RNA binding prote sc:url "http://lilab.jysw.suda.edu.cn/research/PremPRI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, edam:topic_0736 ; @@ -376892,7 +396471,7 @@ PremPRI predicts the effects of single muta-tions occurring in RNA binding prote sc:url "https://lilab.jysw.suda.edu.cn/research/PremPS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0602, @@ -376915,7 +396494,7 @@ PremPRI predicts the effects of single muta-tions occurring in RNA binding prote "Enrique Merino" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -376929,7 +396508,7 @@ PremPRI predicts the effects of single muta-tions occurring in RNA binding prote sc:url "http://chirimoyo.ac.uma.es/prep/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -376952,14 +396531,14 @@ PremPRI predicts the effects of single muta-tions occurring in RNA binding prote a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622 ; @@ -376979,7 +396558,7 @@ PremPRI predicts the effects of single muta-tions occurring in RNA binding prote biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:description "Prephappy is a tool to help prepare input files for the haplotype reconstruction program HAPPY." ; @@ -376993,7 +396572,7 @@ PremPRI predicts the effects of single muta-tions occurring in RNA binding prote sc:url "http://valdarlab.unc.edu/prephappy.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -377009,7 +396588,7 @@ PremPRI predicts the effects of single muta-tions occurring in RNA binding prote sc:url "http://bhapp.c2b2.columbia.edu/PrePPI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -377024,47 +396603,8 @@ PremPRI predicts the effects of single muta-tions occurring in RNA binding prote sc:softwareHelp ; sc:url "http://doc.aporc.org/wiki/PrePPItar" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_2229, - edam:topic_3172, - edam:topic_3301, - edam:topic_3407 ; - sc:citation ; - sc:description """Development of a semi-defined medium for high cell density cultivation of Escherichia coli in shake flasks. - -Sufficient quantities of cells of consistent characteristics are needed for studying biologicalprocesses (at the population level ) in many areas of applied microbiology. - -We've disabled social media & analytics cookies unless you decide to allow them or signup. - -Get ready. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Development semi-defined medium high cell density cultivation Escherichia coli shake flasks', 'cultivation', '600nm', 'diauxic'""" ; - sc:featureList edam:operation_3431, - edam:operation_3454 ; - sc:name "preprint reports improvements" ; - sc:url "https://peerj.com/preprints/115/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_2229, - edam:topic_3168, - edam:topic_3292, - edam:topic_3301 ; - sc:citation ; - sc:description """Development of a semi-defined medium for high cell density cultivation of Escherichia coli in shake flasks. - -The characteristics of the culture vessel determine, to a large extent, the type of growth medium suitable for use. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Development semi-defined medium high cell density cultivation Escherichia coli shake flasks', '600nm', 'FM', 'TSB'""" ; - sc:featureList edam:operation_0399, - edam:operation_3283, - edam:operation_3454 ; - sc:name "preprints" ; - sc:url "https://peerj.com/preprints/117/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -377083,7 +396623,7 @@ The characteristics of the culture vessel determine, to a large extent, the type biotools:primaryContact "Benjamin Milo Bolstad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0128, edam:topic_0203, @@ -377101,8 +396641,53 @@ Alterations in protein and gene expression levels are often used as features to sc:name "PRER" ; sc:url "https://github.com/hikuru/PRER" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0659, + edam:topic_3170, + edam:topic_3320, + edam:topic_3512 ; + sc:citation , + "pubmed:35722704" ; + sc:description "A webserver for decoding the functional perturbations of RNA editing sites." ; + sc:featureList edam:operation_0278, + edam:operation_0314, + edam:operation_0463, + edam:operation_3096 ; + sc:isAccessibleForFree true ; + sc:name "PRES" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bio-bigdata.hrbmu.edu.cn/PRES/" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:name "Small molecule structure" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3474, + edam:topic_3500 ; + sc:citation , + "pubmed:35916740" ; + sc:description "Predictor of Sensitization hazard for chemical substances released from Medical Devices." ; + sc:featureList edam:operation_2423 ; + sc:isAccessibleForFree true ; + sc:name "PreS MD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://presmd.mml.unc.edu/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0160, edam:topic_3170 ; @@ -377127,22 +396712,22 @@ Insert RNA string of any length.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3071, @@ -377161,7 +396746,7 @@ Insert RNA string of any length.""" ; biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0621, @@ -377182,7 +396767,7 @@ Insert RNA string of any length.""" ; sc:url "https://github.com/gifford-lab/prescient" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0821, @@ -377201,7 +396786,7 @@ Insert RNA string of any length.""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -377217,7 +396802,7 @@ Insert RNA string of any length.""" ; sc:url "http://smithlabresearch.org/software/preseq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_3125, @@ -377241,7 +396826,7 @@ Bacterial small-RNAs (sRNA) are RNAs of varied length (40 to 500 nucleotide long sc:url "http://www.hpppi.iicb.res.in/presrat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation ; @@ -377257,7 +396842,7 @@ Bacterial small-RNAs (sRNA) are RNAs of varied length (40 to 500 nucleotide long sc:url "http://orion.math.iastate.edu/press/presspage/P.R.E.S.S..html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0804, @@ -377274,7 +396859,7 @@ Bacterial small-RNAs (sRNA) are RNAs of varied length (40 to 500 nucleotide long sc:url "http://presto.readthedocs.io/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102 ; sc:description "Pretext is an OpenGL-powered pretext contact map viewer." ; @@ -377290,7 +396875,7 @@ Bacterial small-RNAs (sRNA) are RNAs of varied length (40 to 500 nucleotide long biotools:primaryContact "Ed Harry" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, edam:topic_3295, @@ -377309,10 +396894,10 @@ Bacterial small-RNAs (sRNA) are RNAs of varied length (40 to 500 nucleotide long a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3374, @@ -377331,20 +396916,33 @@ Bacterial small-RNAs (sRNA) are RNAs of varied length (40 to 500 nucleotide long "Windows" ; sc:url "http://bliulab.net/PreTP-EL" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3373, + edam:topic_3474 ; + sc:citation , + "pubmed:35700248" ; + sc:description "Prediction of therapeutic peptide based on the stacked ensemble learning." ; + sc:isAccessibleForFree true ; + sc:name "PreTP-Stack" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bliulab.net/PreTP-Stack" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1711" ; - sc:name "Sequence alignment image" ; - sc:sameAs "http://edamontology.org/data_1711" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1711" ; + sc:name "Sequence alignment image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -377375,7 +396973,7 @@ Bacterial small-RNAs (sRNA) are RNAs of varied length (40 to 500 nucleotide long sc:url "http://emboss.open-bio.org/rel/rel6/apps/prettyplot.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Reads in a set of aligned DNA or protein sequences. It displays them graphically, with conserved regions highlighted in various ways." ; @@ -377390,14 +396988,12 @@ Bacterial small-RNAs (sRNA) are RNAs of varied length (40 to 500 nucleotide long a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -377428,7 +397024,7 @@ Bacterial small-RNAs (sRNA) are RNAs of varied length (40 to 500 nucleotide long sc:url "http://emboss.open-bio.org/rel/rel6/apps/prettyseq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_2640 ; @@ -377448,38 +397044,8 @@ Select which updates you would like to receive""" ; sc:name "Prevalence tool" ; sc:url "https://www.ambrygen.com/prevalence-tool" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0199, - edam:topic_0625, - edam:topic_2640 ; - sc:citation ; - sc:description """Mutation prevalence tables for hereditary cancer derived from multi-gene panel testing. - -Interactive Prevalence Tables From Multi-Gene Panel Testing. - -This website describes basic, aggregated and deidentified clinical and genotype data from patients referred for hereditary cancer multigene panel testing to Ambry Genetics from March 2012 through December 2016. Data were compiled, normalized, and visualized in collaboration from researchers at the Mayo Clinic. The collaborations between Mayo Clinic And Ambry Genetics should not be seen as an endorsement of any company or product. - -Please Enter Your Information to Continue. - -Select which updates you would like to receive""" ; - sc:featureList edam:operation_3196, - edam:operation_3202, - edam:operation_3436 ; - sc:name "prevalence tool" ; - sc:url "https://www.ambrygen.com/prevalence-tool" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3399, - edam:topic_3407, - edam:topic_3411 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'menstrual HbA1c', 'HbA1c', 'menstrual', 'prediabetes' | Population-scale prediabetic assessment using HbA1c from menstrual blood | CDC-recommended diabetes prevention programs aim to detect and reverse disease in the one-third of Americans with prediabetes, but high-compliance serial assessment of percent hemoglobin A1c (HbA1c) remains a barrier to delivering this vision at population scale. Venous phlebotomy is challenging for busy or resource-constrained patients. In this paper, we introduce the first-ever quantitative diagnostic test based on menstrual fluid, which allows HbA1c quantification from self-collected mailed tampons. We demonstrate that menstrual HbA1c is comparable to venous HbA1c in the diagnosis of prediabetes with the standard threshold of 5.7. We also demonstrate accuracy, precision, stability, and interference testing" ; - sc:featureList edam:operation_3799 ; - sc:name "prevention" ; - sc:url "https://www.cdc.gov/diabetes/prevention/pdf/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3068, edam:topic_3293, @@ -377499,7 +397065,7 @@ The prewas R package allows users to create a binary SNP matrix from a whole gen sc:url "https://github.com/Snitkin-Lab-Umich/prewas_manuscript_analysis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0621, @@ -377517,7 +397083,7 @@ The prewas R package allows users to create a binary SNP matrix from a whole gen biotools:primaryContact "Poole Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0634, @@ -377539,7 +397105,7 @@ The prewas R package allows users to create a binary SNP matrix from a whole gen biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, edam:topic_3047 ; @@ -377555,7 +397121,7 @@ Description: Identifying disease-related genes is of importance for understandin sc:url "http://bioinformatics.csu.edu.cn/prgefne/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0780, @@ -377570,7 +397136,7 @@ Description: Identifying disease-related genes is of importance for understandin biotools:primaryContact "Jens Allmer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal", "Web application" ; @@ -377592,7 +397158,7 @@ Description: Identifying disease-related genes is of importance for understandin sc:url "http://priam.prabi.fr/REL_MAR15/index_mar15.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196 ; @@ -377608,14 +397174,14 @@ Description: Identifying disease-related genes is of importance for understandin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3125, @@ -377633,7 +397199,7 @@ Description: Identifying disease-related genes is of importance for understandin biotools:primaryContact "Florian Erhard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -377654,22 +397220,20 @@ Description: Identifying disease-related genes is of importance for understandin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1145" ; - sc:name "PRIDE experiment accession number" ; - sc:sameAs "http://edamontology.org/data_1145" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_1145" ; + sc:name "PRIDE experiment accession number" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -377691,14 +397255,12 @@ Description: Identifying disease-related genes is of importance for understandin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121 ; @@ -377714,7 +397276,7 @@ Description: Identifying disease-related genes is of importance for understandin sc:url "https://github.com/compomics/pride-asa-pipeline" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3520 ; @@ -377731,14 +397293,14 @@ Description: Identifying disease-related genes is of importance for understandin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Suite" ; sc:applicationSubCategory edam:topic_0121, @@ -377754,7 +397316,7 @@ Description: Identifying disease-related genes is of importance for understandin sc:url "https://github.com/PRIDE-Toolsuite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0632, @@ -377773,8 +397335,32 @@ Description: Identifying disease-related genes is of importance for understandin "Windows" ; sc:url "https://github.com/manutamminen/prider" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0097, + edam:topic_0099, + edam:topic_0160, + edam:topic_0166, + edam:topic_3542 ; + sc:citation , + "pubmed:36018788" ; + sc:description "Interpretable, high-performing models of the sequence and structure preferences of RNA-binding proteins." ; + sc:featureList edam:operation_0239, + edam:operation_0502, + edam:operation_0570, + edam:operation_2488, + edam:operation_3901 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PRIESSTESS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/kaitlin309/PRIESSTESS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0632, @@ -377795,7 +397381,7 @@ Description: Identifying disease-related genes is of importance for understandin biotools:primaryContact "Jakob Fredslund" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0632, @@ -377817,19 +397403,7 @@ Description: Identifying disease-related genes is of importance for understandin biotools:primaryContact "Michael D. Gadberry" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:applicationSubCategory edam:topic_0602, - edam:topic_0749, - edam:topic_3512 ; - sc:citation ; - sc:description "Defining data-driven primary transcript annotations with primaryTranscriptAnnotation in R | This package was developed for two purposes: (1) to generate data-driven transcript annotations based on nascent transcript sequencing data, and (2) to annotate de novo identified transcriptional units (e.g., genes and enhancers) based on existing annotations such as those from (1). The code for this package was employed in analyses underlying our manuscript in preparation: Transcriptional mechanisms and gene regulatory networks underlying early adipogenesis (this note will be updated upon publication) | primaryTranscriptAnnotation-vignette.pdf | See the vignette and user manual:" ; - sc:featureList edam:operation_0441, - edam:operation_2495, - edam:operation_3644 ; - sc:name "primaryTranscriptAnnotation" ; - sc:url "https://github.com/WarrenDavidAnderson/genomicsRpackage/tree/master/primaryTranscriptAnnotation" . - - a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, edam:topic_3512 ; @@ -377842,7 +397416,7 @@ Description: Identifying disease-related genes is of importance for understandin sc:url "https://github.com/WarrenDavidAnderson/genomicsRpackage/tree/master/primaryTranscriptAnnotation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3293 ; @@ -377856,7 +397430,7 @@ Description: Identifying disease-related genes is of importance for understandin sc:url "http://prime.scilifelab.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2229, edam:topic_3170, @@ -377874,7 +397448,7 @@ Single cell RNA sequencing enables to obtain a transcriptome profiles for an ind sc:url "https://github.com/hyundoo/PRIME" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0199, edam:topic_0632, @@ -377888,8 +397462,29 @@ Single cell RNA sequencing enables to obtain a transcriptome profiles for an ind sc:name "PrimeDesign" ; sc:url "http://primedesign.pinellolab.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0625, + edam:topic_0634, + edam:topic_3423, + edam:topic_3577 ; + sc:citation ; + sc:description "Building a knowledge graph to enable precision medicine." ; + sc:featureList edam:operation_2422, + edam:operation_3196, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PrimeKG" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://zitniklab.hms.harvard.edu/projects/PrimeKG" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0099, @@ -377906,7 +397501,7 @@ Single cell RNA sequencing enables to obtain a transcriptome profiles for an ind sc:url "http://bclab.inha.ac.kr/primer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0632 ; @@ -377923,14 +397518,12 @@ Single cell RNA sequencing enables to obtain a transcriptome profiles for an ind a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1240" ; - sc:name "PCR primers" ; - sc:sameAs "http://edamontology.org/data_1240" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1240" ; + sc:name "PCR primers" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632 ; sc:citation ; @@ -377947,7 +397540,7 @@ Single cell RNA sequencing enables to obtain a transcriptome profiles for an ind biotools:primaryContact "Triinu Kõressaar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0632, @@ -377963,7 +397556,7 @@ Single cell RNA sequencing enables to obtain a transcriptome profiles for an ind biotools:primaryContact "Maido Remm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0749, @@ -377984,7 +397577,7 @@ Single cell RNA sequencing enables to obtain a transcriptome profiles for an ind biotools:primaryContact "Untergasser A." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0749, @@ -378001,7 +397594,7 @@ Single cell RNA sequencing enables to obtain a transcriptome profiles for an ind sc:url "http://grch37.genepipe.ncgm.sinica.edu.tw/primerz/beginDesign.do" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, @@ -378024,13 +397617,13 @@ Single cell RNA sequencing enables to obtain a transcriptome profiles for an ind biotools:primaryContact "PrimerBank Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Primerclip™ is an alignment-based primer trimming tool designed to trim primer sequences for Swift Biosciences Accel-Amplicon™ panels. The motivation for designing an alignment-based primer trimming tool to increase speed. Primerclip uses an algorithm based on genomic intervals of the aligned reads rather than the sequence matching approach necessarily used by most trimming tools to trim adapter sequences. Trimming based on alignment position allows primerclip to run in significantly less time than sequence-based trim tools, particularly as the size of the targeted panel increases." ; sc:name "primerclip" ; sc:url "https://github.com/swiftbiosciences/primerclip" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0632, @@ -378048,7 +397641,7 @@ Single cell RNA sequencing enables to obtain a transcriptome profiles for an ind sc:url "http://www.hiv.lanl.gov/content/sequence/PRIMER_DESIGN/primer_design.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -378068,7 +397661,7 @@ Single cell RNA sequencing enables to obtain a transcriptome profiles for an ind sc:url "http://primerize.stanford.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0102, @@ -378084,29 +397677,8 @@ Single cell RNA sequencing enables to obtain a transcriptome profiles for an ind sc:url "https://primerize.stanford.edu/primerize2d/" ; biotools:primaryContact "Rhiju Das" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0632, - edam:topic_3050, - edam:topic_3168, - edam:topic_3573 ; - sc:citation ; - sc:description """Validation and development of freshwater invertebrate metabarcoding COI primers for Environmental Impact Assessment. - -To assess and manage human impacts on freshwater ecosystems is a central challenge in the present era of biodiversity loss. Macroinvertebrates are an ideal group for Environmental Impacts Assessment (EIA). However, generating accurate macroinvertebrate inventories is difficult and error-prone based on larval morphology. Here, DNA metabarcoding provides new opportunities. Its potential to accurately identify bulk invertebrates on species level has been demonstrated in several case studies. However, DNA based identification is often limited by primer bias, potentially leading to taxa in the sample remaining undetected. Thus, the success of DNA metabarcoding as an emerging technique for EIA critically relies on carefully evaluated primers. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'metabarcoding', 'PrimerMiner', 'mock'""" ; - sc:featureList edam:operation_0308, - edam:operation_3192, - edam:operation_3200, - edam:operation_3237 ; - sc:name "primers" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.2044V3" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0632, @@ -378129,18 +397701,15 @@ To assess and manage human impacts on freshwater ecosystems is a central challen a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ], + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -378170,7 +397739,7 @@ To assess and manage human impacts on freshwater ecosystems is a central challen sc:url "http://emboss.open-bio.org/rel/rel6/apps/primersearch.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0634, @@ -378186,7 +397755,7 @@ To assess and manage human impacts on freshwater ecosystems is a central challen sc:url "http://www.gis.a-star.edu.sg/pathchip/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0632, @@ -378205,7 +397774,7 @@ To assess and manage human impacts on freshwater ecosystems is a central challen sc:url "http://primerseq.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0632, @@ -378227,7 +397796,7 @@ To assess and manage human impacts on freshwater ecosystems is a central challen biotools:primaryContact "Tomoyuki Yamada" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3511, @@ -378246,7 +397815,7 @@ To assess and manage human impacts on freshwater ecosystems is a central challen biotools:primaryContact "Jennifer Lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3168 ; @@ -378265,14 +397834,12 @@ To assess and manage human impacts on freshwater ecosystems is a central challen a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -378288,7 +397855,7 @@ To assess and manage human impacts on freshwater ecosystems is a central challen sc:url "http://prime.sbc.su.se/primetv/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_3169, @@ -378316,7 +397883,7 @@ GeneRegulation, Genetics, ImmunoOncology, Preprocessing, RNASeq, Sequencing, Sof sc:url "http://bioconductor.org/packages/primirTSS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -378335,7 +397902,7 @@ GeneRegulation, Genetics, ImmunoOncology, Preprocessing, RNASeq, Sequencing, Sof biotools:primaryContact "Özlem Tastan Bishop" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_2885, @@ -378356,7 +397923,7 @@ The goal of Primo is to provide computationally efficient tools to integrate dat sc:url "https://github.com/kjgleason/Primo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -378375,7 +397942,7 @@ The goal of Primo is to provide computationally efficient tools to integrate dat biotools:primaryContact "Juan Felipe Pérez Juste Abascal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, edam:topic_3314, @@ -378392,7 +397959,7 @@ PRIMoRDiA ( PRIMoRDiA Macromolecular Reactivity Descriptors Access ) is a shared sc:url "https://github.com/igorChem/PRIMoRDiA1.0v" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053 ; @@ -378405,7 +397972,7 @@ PRIMoRDiA ( PRIMoRDiA Macromolecular Reactivity Descriptors Access ) is a shared sc:url "https://primus.gs.washington.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0078, @@ -378422,7 +397989,7 @@ PRIMoRDiA ( PRIMoRDiA Macromolecular Reactivity Descriptors Access ) is a shared sc:url "http://scholar.semmelweis.hu/czirjakgabor/s/princces/#t1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0099, @@ -378440,7 +398007,7 @@ PRIMoRDiA ( PRIMoRDiA Macromolecular Reactivity Descriptors Access ) is a shared biotools:primaryContact "Dr.Ranjit Prasad Bahadur" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -378464,10 +398031,10 @@ PrInCE is a computational approach to infer protein-protein interaction networks a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3175, @@ -378492,7 +398059,7 @@ PrInCE is a computational approach to infer protein-protein interaction networks sc:url "https://github.com/MeHelmy/princess" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -378510,7 +398077,7 @@ PrInCE is a computational approach to infer protein-protein interaction networks biotools:primaryContact "Christodoulos A. Floudas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3174, @@ -378531,14 +398098,13 @@ PrInCE is a computational approach to infer protein-protein interaction networks a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1137" ; - sc:name "PRINTS code" ; - sc:sameAs "http://edamontology.org/data_1137" ] ; + sc:additionalType "http://edamontology.org/data_1137" ; + sc:name "PRINTS code" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1355" ; - sc:name "Protein signature" ; - sc:sameAs "http://edamontology.org/data_1355" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1355" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein signature" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0160, @@ -378556,10 +398122,9 @@ PrInCE is a computational approach to infer protein-protein interaction networks a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1365" ; - sc:name "Fingerprint" ; - sc:sameAs "http://edamontology.org/data_1365" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1365" ; + sc:name "Fingerprint" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -378589,7 +398154,7 @@ PrInCE is a computational approach to infer protein-protein interaction networks sc:url "http://emboss.open-bio.org/rel/rel6/apps/printsextract.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3325, edam:topic_3577 ; @@ -378605,7 +398170,7 @@ Phenotype-driven rare disease gene prioritization relies on high quality curated sc:url "https://web.rniapps.net/priori-t/PRIORI-T.tar.gz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654 ; @@ -378621,8 +398186,49 @@ Phenotype-driven rare disease gene prioritization relies on high quality curated sc:softwareVersion "2.1.0" ; sc:url "http://www.cs.duke.edu/~amink/software/priority/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0602, + edam:topic_0634, + edam:topic_3574, + edam:topic_3930 ; + sc:citation , + "pmcid:PMC8728240", + "pubmed:34751399" ; + sc:description "A Comprehensive Resource for Genetic Targets in Immune-Mediated Disease" ; + sc:featureList edam:operation_2421, + edam:operation_3672, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Priority index" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://pi.well.ox.ac.uk" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0091 ; + sc:description "Priorr is a prioritization program of disease-linked genetic variants devoloped within the Genetics&Genomics Department of La Fundacion Jimenez Diaz University Hospital. Priorr is conceived to analyse the output of the FJD-pipeline of SNVs or CNVs. This software program offers a number of useful functionalities for variant analysis such as: filtering by a virtual panel of genes. manual control of different population frequencies or pathogenicity predictors or filtering out variants that have been already found by another protocol." ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "PriorR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/TBLabFJD/PriorR" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0632 ; @@ -378635,7 +398241,7 @@ Phenotype-driven rare disease gene prioritization relies on high quality curated sc:url "http://alglab1.cs.ucr.edu/OFRG/PRISE.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3168, edam:topic_3511, @@ -378653,7 +398259,7 @@ Tool for assisting the search of primer sequences for metabarcoding experiments. sc:url "https://github.com/mariehoffmann/PriSeT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081 ; @@ -378667,7 +398273,7 @@ Tool for assisting the search of primer sequences for metabarcoding experiments. biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -378683,7 +398289,7 @@ Tool for assisting the search of primer sequences for metabarcoding experiments. sc:url "http://cosbi.ku.edu.tr/prism/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0781, @@ -378697,7 +398303,7 @@ Tool for assisting the search of primer sequences for metabarcoding experiments. sc:url "http://www.broadinstitute.org/scientific-community/science/projects/viral-genomics/prism" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, @@ -378716,7 +398322,7 @@ Tool for assisting the search of primer sequences for metabarcoding experiments. "Sampsa Hautaniemi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, edam:topic_3172, @@ -378735,7 +398341,7 @@ Novel antibiotics are urgently needed to address the looming global crisis of an sc:url "http://prism.adapsyn.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2258, @@ -378752,7 +398358,7 @@ Novel antibiotics are urgently needed to address the looming global crisis of an sc:url "http://magarveylab.ca/prism/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3370, @@ -378773,7 +398379,7 @@ Novel antibiotics are urgently needed to address the looming global crisis of an biotools:primaryContact "Alan Pryor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3444 ; @@ -378786,22 +398392,22 @@ Novel antibiotics are urgently needed to address the looming global crisis of an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -378821,7 +398427,7 @@ Novel antibiotics are urgently needed to address the looming global crisis of an biotools:primaryContact "Daryanaz Dargahi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3575, @@ -378841,7 +398447,7 @@ Novel antibiotics are urgently needed to address the looming global crisis of an sc:url "https://cran.r-project.org/package=prLogistic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0160, edam:topic_0166 ; @@ -378857,7 +398463,7 @@ Motifs are the evolutionarily conserved patterns which are reported to serve the sc:url "https://bioserver.iiita.ac.in/Pr[m]/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_0780, @@ -378884,7 +398490,7 @@ The sequencing data used to create PRMdb are derived from NCBI, Plant MPSS db or sc:url "http://www.biosequencing.cn/PRMdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3474 ; @@ -378899,8 +398505,31 @@ The sequencing data used to create PRMdb are derived from NCBI, Plant MPSS db or sc:url "http://bioinfo.icgeb.res.in/PRmePRed/" ; biotools:primaryContact "Dinesh Gupta" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0654, + edam:topic_2229, + edam:topic_2640, + edam:topic_3295, + edam:topic_3934 ; + sc:citation , + "pmcid:PMC9400327", + "pubmed:36002797" ; + sc:description "Deconvolution of tumor composition using partially available DNA methylation data." ; + sc:featureList edam:operation_0417, + edam:operation_3204, + edam:operation_3629 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PRMeth" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/hedingqin/PRMeth" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3304, @@ -378915,7 +398544,7 @@ The sequencing data used to create PRMdb are derived from NCBI, Plant MPSS db or biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -378931,7 +398560,7 @@ The sequencing data used to create PRMdb are derived from NCBI, Plant MPSS db or sc:url "http://www.jci-bioinfo.cn/pRNAm-PC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0089, @@ -378953,7 +398582,7 @@ The sequencing data used to create PRMdb are derived from NCBI, Plant MPSS db or biotools:primaryContact "Protein Information Resource" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3534 ; @@ -378967,7 +398596,7 @@ The sequencing data used to create PRMdb are derived from NCBI, Plant MPSS db or sc:url "https://sites.google.com/site/guofeics/pro-bs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -378983,8 +398612,27 @@ The sequencing data used to create PRMdb are derived from NCBI, Plant MPSS db or sc:softwareHelp ; sc:url "http://tcoffee.crg.cat/apps/tcoffee/do:procoffee" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_2830, + edam:topic_3384, + edam:topic_3452 ; + sc:citation , + "pubmed:35661662" ; + sc:description "Development and validation of a nomogram for predicting the likelihood of metastasis in prostate cancer patients undergoing Ga-68 PSMA PET/CT due to biochemical recurrence." ; + sc:featureList edam:operation_0252, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:name "pro-gram" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://pro-gram.nzm.co" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -379001,7 +398649,7 @@ The sequencing data used to create PRMdb are derived from NCBI, Plant MPSS db or sc:url "http://bental.tau.ac.il/ProMaya/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_1775 ; sc:description "Application for data/function analysis, plotting, and curve fitting. It is used by scientists and engineers to analyze their measurements and the mathematical models they use to describe them." ; @@ -379016,14 +398664,12 @@ The sequencing data used to create PRMdb are derived from NCBI, Plant MPSS db or a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081 ; sc:citation ; @@ -379041,7 +398687,7 @@ The sequencing data used to create PRMdb are derived from NCBI, Plant MPSS db or biotools:primaryContact "Pier Paolo Olimpieri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2830, edam:topic_3474 ; @@ -379056,7 +398702,7 @@ To use ProABC-2, you just need to provide the sequences of the heavy and light c sc:url "https://bianca.science.uu.nl/proabc2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "Use Prob2plinkbig to convert large MACH probability files to PLINK dosage files." ; @@ -379068,7 +398714,7 @@ To use ProABC-2, you just need to provide the sequences of the heavy and light c sc:url "http://ctglab.nl/software/prob2plinkbig" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -379087,14 +398733,14 @@ To use ProABC-2, you just need to provide the sequences of the heavy and light c a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence coordinates" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -379119,7 +398765,7 @@ To use ProABC-2, you just need to provide the sequences of the heavy and light c biotools:primaryContact "Xiaojing Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "This tool facilitates batch effects analysis and correction in high-throughput experiments. It was developed primarily for mass-spectrometry based proteomics (DIA/SWATH). The package contains functions for diagnostics (proteome-wide and feature-level), correction (normalization and batch effects correction) and quality control. Non-linear fitting based approaches were also included to deal with complex, mass spectrometry-specific signal drifts." ; @@ -379136,8 +398782,31 @@ To use ProABC-2, you just need to provide the sequences of the heavy and light c sc:url "https://github.com/symbioticMe/proBatch" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3169, + edam:topic_3173, + edam:topic_3308, + edam:topic_3974 ; + sc:citation , + "pmcid:PMC8994916", + "pubmed:35397520" ; + sc:description "Joint modeling of epigenome and transcriptome effects in 3D genome." ; + sc:featureList edam:operation_0445, + edam:operation_2575, + edam:operation_3222 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PROBC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.github.com/seferlab/probc" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080 ; @@ -379153,7 +398822,7 @@ To use ProABC-2, you just need to provide the sequences of the heavy and light c sc:url "http://probcons.stanford.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -379170,7 +398839,7 @@ To use ProABC-2, you just need to provide the sequences of the heavy and light c sc:url "http://www.compbio.dundee.ac.uk/jabaws/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0632, @@ -379192,14 +398861,13 @@ To use ProABC-2, you just need to provide the sequences of the heavy and light c a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2830 ; @@ -379220,7 +398888,7 @@ To use ProABC-2, you just need to provide the sequences of the heavy and light c biotools:primaryContact "James Robinson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0654 ; @@ -379233,7 +398901,7 @@ To use ProABC-2, you just need to provide the sequences of the heavy and light c sc:url "http://stormo.wustl.edu/resources.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -379246,8 +398914,30 @@ To use ProABC-2, you just need to provide the sequences of the heavy and light c sc:softwareVersion "0.3" ; sc:url "http://genome.ucf.edu/ProbeAlign/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0632, + edam:topic_3077, + edam:topic_3300, + edam:topic_3304 ; + sc:citation , + "pmcid:PMC8887962", + "pubmed:35242020" ; + sc:description "A Python package to handle the layout, geometry, and wiring of silicon probes for extracellular electrophysiology experiments." ; + sc:featureList edam:operation_0335, + edam:operation_1812 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ProbeInterface" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://gin.g-node.org/spikeinterface/probeinterface_library" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0632, @@ -379265,7 +398955,7 @@ To use ProABC-2, you just need to provide the sequences of the heavy and light c biotools:primaryContact "ProbeLynx team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -379283,7 +398973,7 @@ To use ProABC-2, you just need to provide the sequences of the heavy and light c biotools:primaryContact "Support (Please put \"ProbeMatch Help\" in the Subject line of your email.)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -379297,7 +398987,7 @@ To use ProABC-2, you just need to provide the sequences of the heavy and light c sc:url "http://qge.fhcrc.org/probeplus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0632, @@ -379312,7 +399002,7 @@ To use ProABC-2, you just need to provide the sequences of the heavy and light c sc:url "http://prober.cshl.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_3308 ; @@ -379331,7 +399021,7 @@ To use ProABC-2, you just need to provide the sequences of the heavy and light c biotools:primaryContact "Lior Pachter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0749, edam:topic_3169, @@ -379350,7 +399040,7 @@ the interaction between proteins and nucleic acids plays a crucial role in gene sc:url "https://github.com/syang11/ProbeRating" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -379365,7 +399055,7 @@ the interaction between proteins and nucleic acids plays a crucial role in gene sc:url "http://www.cs.technion.ac.il/labs/cbl/probespec/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269 ; @@ -379382,8 +399072,30 @@ It automatically searches a user-supplied protein sequence for segments that con sc:softwareHelp ; sc:url "http://lcg.rit.albany.edu/bias/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_3063, + edam:topic_3068, + edam:topic_3379, + edam:topic_3398, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9290863", + "pubmed:35849028" ; + sc:description "A database and semantic analysis engine for literature, clinical trials and patents related to probiotics." ; + sc:featureList edam:operation_2421, + edam:operation_3695, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:name "ProBioQuest" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://kwanlab.bio.cuhk.edu.hk/PBQ/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -379405,7 +399117,7 @@ It automatically searches a user-supplied protein sequence for segments that con biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3510, @@ -379422,8 +399134,29 @@ It automatically searches a user-supplied protein sequence for segments that con sc:url "https://probis.nih.gov/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0821, + edam:topic_2275, + edam:topic_3047, + edam:topic_3534 ; + sc:citation , + "pubmed:35289616" ; + sc:description "A Hybrid Multitemplate Homology Flexible Docking Algorithm Enabled by Protein Binding Site Comparison." ; + sc:featureList edam:operation_0482, + edam:operation_3899, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "ProBiS-Dock" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://insilab.org/probisdock" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -379448,7 +399181,7 @@ It automatically searches a user-supplied protein sequence for segments that con sc:url "http://probis-dock-database.insilab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0749, @@ -379473,7 +399206,7 @@ It automatically searches a user-supplied protein sequence for segments that con biotools:primaryContact "ProBiS Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -379490,7 +399223,7 @@ It automatically searches a user-supplied protein sequence for segments that con sc:url "http://compbio.clemson.edu/sapp/problm_webserver/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3172 ; @@ -379511,8 +399244,34 @@ It automatically searches a user-supplied protein sequence for segments that con sc:url "http://labpib.fmrp.usp.br/methods/probmetab/" ; biotools:primaryContact "Ricardo Z. N. Vêncio" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0990" ; + sc:name "Compound name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0219, + edam:topic_3063, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9375527", + "pubmed:35962763" ; + sc:description "A database for drug-resistant probiotic bacteria." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3482 ; + sc:isAccessibleForFree true ; + sc:name "ProbResist" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://probresist.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099 ; @@ -379527,7 +399286,7 @@ It automatically searches a user-supplied protein sequence for segments that con sc:url "http://hkbic.cuhk.edu.hk/software/probrna" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0176, @@ -379547,7 +399306,7 @@ PROBselect suggests a predictor that is likely to provide the best prediction of sc:url "http://bioinformatics.csu.edu.cn/PROBselect/home/index" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -379562,7 +399321,7 @@ PROBselect suggests a predictor that is likely to provide the best prediction of sc:url "http://statgen.ucr.edu/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0152, edam:topic_3068, edam:topic_3071 ; @@ -379580,7 +399339,7 @@ ProCaff, a database on binding affinity of protein-carbohydrate complexes, ProCa sc:url "http://web.iitm.ac.in/bioinfo2/procaff/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0219, @@ -379601,22 +399360,19 @@ ProCaff, a database on binding affinity of protein-carbohydrate complexes, ProCa a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3272" ; - sc:name "Species tree" ; - sc:sameAs "http://edamontology.org/data_3272" ], + sc:additionalType "http://edamontology.org/data_3272" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Species tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3479" ; - sc:name "Gene order" ; - sc:sameAs "http://edamontology.org/data_3479" ] ; + sc:additionalType "http://edamontology.org/data_3479" ; + sc:name "Gene order" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3479" ; - sc:name "Gene order" ; - sc:sameAs "http://edamontology.org/data_3479" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3479" ; + sc:name "Gene order" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084 ; sc:citation ; @@ -379633,7 +399389,7 @@ ProCaff, a database on binding affinity of protein-carbohydrate complexes, ProCa biotools:primaryContact "PERRIN Amandine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0621, @@ -379654,7 +399410,7 @@ ProCaff, a database on binding affinity of protein-carbohydrate complexes, ProCa sc:url "http://CRAN.R-project.org/package=ProcData" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3360 ; @@ -379668,7 +399424,7 @@ ProCaff, a database on binding affinity of protein-carbohydrate complexes, ProCa sc:url "https://www.epa.gov/chemical-research/probabilistic-reverse-dosimetry-estimating-exposure-distribution-proceed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -379688,7 +399444,7 @@ ProCaff, a database on binding affinity of protein-carbohydrate complexes, ProCa biotools:primaryContact "Xiaochun Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2229, @@ -379706,7 +399462,7 @@ ProCaff, a database on binding affinity of protein-carbohydrate complexes, ProCa biotools:primaryContact "UVa iGem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0593, @@ -379720,8 +399476,33 @@ ProCaff, a database on binding affinity of protein-carbohydrate complexes, ProCa sc:softwareHelp ; sc:url "http://www.ebi.ac.uk/thornton-srv/software/PROCHECK/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0749, + edam:topic_3068, + edam:topic_3169, + edam:topic_3179 ; + sc:citation , + "pmcid:PMC8728212", + "pubmed:34791440" ; + sc:description "A PROkaryotic Chromatin ImmunoPrecipitation DataBase" ; + sc:featureList edam:operation_0445, + edam:operation_3222, + edam:operation_3900 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "proChIPdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://prochipdb.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0102, @@ -379745,7 +399526,7 @@ ProCaff, a database on binding affinity of protein-carbohydrate complexes, ProCa biotools:primaryContact "ProCKSI Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2814 ; sc:description "PROCLASS allows to predict the class of protein from its amino acid sequence. It predict weather protein belong to class Alpha or Beta or Alpha+Beta or Alpha/Beta." ; @@ -379756,10 +399537,10 @@ ProCaff, a database on binding affinity of protein-carbohydrate complexes, ProCa sc:operatingSystem "Linux", "Mac", "Windows" ; - sc:url "http://www.imtech.res.in/raghava/proclass/" . + sc:url "http://webs.iiitd.edu.in/raghava/proclass/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0821, @@ -379788,7 +399569,7 @@ We have mapped the substrates deposited in MEROPS onto the structural database P sc:url "http://procleave.erc.monash.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3474 ; @@ -379804,7 +399585,7 @@ We have mapped the substrates deposited in MEROPS onto the structural database P sc:url "http://www.pro-code.ch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0078, @@ -379827,14 +399608,14 @@ We have mapped the substrates deposited in MEROPS onto the structural database P a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3248" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121 ; @@ -379857,14 +399638,14 @@ We have mapped the substrates deposited in MEROPS onto the structural database P a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0108, @@ -379885,7 +399666,7 @@ We have mapped the substrates deposited in MEROPS onto the structural database P biotools:primaryContact "David L Gibbs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0736, @@ -379898,8 +399679,36 @@ We have mapped the substrates deposited in MEROPS onto the structural database P sc:softwareHelp ; sc:url "http://proda.stanford.edu/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0130, + edam:topic_0154, + edam:topic_0736, + edam:topic_2269 ; + sc:citation , + , + "pmcid:PMC8204568", + "pubmed:31867753" ; + sc:description "ProDCoNN is a web-based tool for protein design from given three-dimensional structures." ; + sc:featureList edam:operation_0303, + edam:operation_0474, + edam:operation_4008 ; + sc:isAccessibleForFree true ; + sc:name "ProDCoNN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "1.0" ; + sc:url "https://prodconn.stat.fsu.edu/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -379914,7 +399723,7 @@ We have mapped the substrates deposited in MEROPS onto the structural database P sc:url "http://sunflower.kuicr.kyoto-u.ac.jp/~sjn/Prodepth/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -379930,7 +399739,7 @@ We have mapped the substrates deposited in MEROPS onto the structural database P sc:url "https://github.com/Benjamin-Crysup/proderal.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -379948,7 +399757,7 @@ We have mapped the substrates deposited in MEROPS onto the structural database P sc:url "http://www.uhnresearch.ca/labs/tillier/software.htm#7" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602 ; @@ -379964,7 +399773,7 @@ We have mapped the substrates deposited in MEROPS onto the structural database P sc:url "http://www.ra.cs.uni-tuebingen.de/software/ProDGe/index.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -379986,7 +399795,7 @@ We have mapped the substrates deposited in MEROPS onto the structural database P sc:url "http://milou.science.uu.nl/services/PRODIGY/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, edam:topic_2640, @@ -380002,7 +399811,7 @@ We have mapped the substrates deposited in MEROPS onto the structural database P sc:url "https://github.com/Shamir-Lab/PRODIGY" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0736, edam:topic_0769, @@ -380023,7 +399832,7 @@ ProdMX is a tool with user-friendly utilities developed to facilitate high-throu sc:url "https://github.com/visanuwan/prodmx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0622, @@ -380041,46 +399850,41 @@ ProdMX is a tool with user-friendly utilities developed to facilitate high-throu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1142" ; - sc:name "ProDom accession number" ; - sc:sameAs "http://edamontology.org/data_1142" ], + sc:additionalType "http://edamontology.org/data_1142" ; + sc:name "ProDom accession number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1142" ; - sc:name "ProDom accession number" ; - sc:sameAs "http://edamontology.org/data_1142" ], + sc:additionalType "http://edamontology.org/data_1142" ; + sc:name "ProDom accession number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1142" ; - sc:name "ProDom accession number" ; - sc:sameAs "http://edamontology.org/data_1142" ], + sc:additionalType "http://edamontology.org/data_1142" ; + sc:name "ProDom accession number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1142" ; - sc:name "ProDom accession number" ; - sc:sameAs "http://edamontology.org/data_1142" ], + sc:additionalType "http://edamontology.org/data_1142" ; + sc:name "ProDom accession number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1142" ; - sc:name "ProDom accession number" ; - sc:sameAs "http://edamontology.org/data_1142" ] ; + sc:additionalType "http://edamontology.org/data_1142" ; + sc:name "ProDom accession number" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ], + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein family report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence alignment (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0736 ; @@ -380095,7 +399899,7 @@ ProdMX is a tool with user-friendly utilities developed to facilitate high-throu sc:url "http://prodom.prabi.fr/prodom/current/html/home.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0736, edam:topic_3071 ; @@ -380109,7 +399913,7 @@ ProdMX is a tool with user-friendly utilities developed to facilitate high-throu sc:url "http://www.health2api.com/?p=10236" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0736, edam:topic_3071, @@ -380125,7 +399929,7 @@ ProdMX is a tool with user-friendly utilities developed to facilitate high-throu sc:url "http://www.health2api.com/?p=10237" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -380147,8 +399951,33 @@ ProdMX is a tool with user-friendly utilities developed to facilitate high-throu sc:url "http://www.prodonet.tu-bs.de" ; biotools:primaryContact "Webmaster" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0114, + edam:topic_0204, + edam:topic_0621, + edam:topic_0749 ; + sc:citation , + "pmcid:PMC8728284", + "pubmed:34850133" ; + sc:description "The most comprehensive database for gene regulation and gene expression in prokaryotes." ; + sc:featureList edam:operation_0435, + edam:operation_0445, + edam:operation_0579, + edam:operation_1781, + edam:operation_2437 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-4.0" ; + sc:name "PRODORIC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.prodoric.de" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2814 ; @@ -380174,7 +400003,7 @@ ProdMX is a tool with user-friendly utilities developed to facilitate high-throu . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -380190,14 +400019,14 @@ ProdMX is a tool with user-friendly utilities developed to facilitate high-throu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_2814 ; @@ -380219,7 +400048,7 @@ ProdMX is a tool with user-friendly utilities developed to facilitate high-throu sc:url "http://ppopen.informatik.tu-muenchen.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3318, edam:topic_3372 ; @@ -380235,7 +400064,7 @@ Software for fitting fatigue data.""" ; sc:url "https://meteo.unican.es/temp/castie/Profatigue.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0160, @@ -380258,14 +400087,14 @@ Software for fitting fatigue data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2062" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0128 ; @@ -380288,7 +400117,7 @@ Software for fitting fatigue data.""" ; sc:url "http://ppopen.informatik.tu-muenchen.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -380323,7 +400152,7 @@ Software for fitting fatigue data.""" ; "Zhang Peng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0108, @@ -380341,8 +400170,28 @@ Software for fitting fatigue data.""" ; sc:url "http://ebi056.uni-muenster.de:3838/profed/" ; biotools:primaryContact "Jenny Potratz" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0092, + edam:topic_3393 ; + sc:citation , + "pubmed:34666203" ; + sc:description "Profeel is an open-source dosimetry data visualization software (MATLAB®), which can be used for 1D, 2D and 3D data comparison, data processing and analytics." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Profeel" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/TPakar/Profeel" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -380359,14 +400208,14 @@ Software for fitting fatigue data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -380389,7 +400238,7 @@ Software for fitting fatigue data.""" ; sc:url "http://ppopen.informatik.tu-muenchen.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3172 ; @@ -380407,7 +400256,7 @@ Software for fitting fatigue data.""" ; biotools:primaryContact "Alexis Delabriere" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0160 ; @@ -380426,14 +400275,14 @@ Software for fitting fatigue data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2062" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0128 ; @@ -380457,18 +400306,15 @@ Software for fitting fatigue data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1354" ; - sc:name "Sequence profile" ; - sc:sameAs "http://edamontology.org/data_1354" ], + sc:additionalType "http://edamontology.org/data_1354" ; + sc:name "Sequence profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0869" ; - sc:name "Sequence-profile alignment" ; - sc:sameAs "http://edamontology.org/data_0869" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0869" ; + sc:name "Sequence-profile alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -380498,7 +400344,7 @@ Software for fitting fatigue data.""" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/profit.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -380522,7 +400368,7 @@ Software for fitting fatigue data.""" ; sc:url "http://github.com/KYZ-LSB/ProTerS-FitFun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, edam:topic_2275, @@ -380540,14 +400386,14 @@ Kinase profiling is an efficient strategy for kinase inhibitor discovery, polyph a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide mass fingerprint" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -380568,7 +400414,7 @@ Kinase profiling is an efficient strategy for kinase inhibitor discovery, polyph sc:url "http://prowl.rockefeller.edu/prowl-cgi/profound.exe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0128, @@ -380586,10 +400432,10 @@ Kinase profiling is an efficient strategy for kinase inhibitor discovery, polyph a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1317 ; sc:author "Burkhard Rost" ; @@ -380608,14 +400454,14 @@ Kinase profiling is an efficient strategy for kinase inhibitor discovery, polyph a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_1920" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -380644,7 +400490,7 @@ Kinase profiling is an efficient strategy for kinase inhibitor discovery, polyph sc:url "http://ppopen.informatik.tu-muenchen.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, edam:topic_3444 ; @@ -380660,14 +400506,13 @@ Recent work has highlighted the scale and ubiquity of subject variability in obs a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1775, edam:topic_2814 ; @@ -380689,7 +400534,7 @@ Recent work has highlighted the scale and ubiquity of subject variability in obs biotools:primaryContact "Roman Laskowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0203, @@ -380714,14 +400559,13 @@ knitr::opts_chunk$set(echo = FALSE).""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0622, @@ -380746,7 +400590,7 @@ knitr::opts_chunk$set(echo = FALSE).""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0622, @@ -380773,7 +400617,7 @@ knitr::opts_chunk$set(echo = FALSE).""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -380797,7 +400641,7 @@ knitr::opts_chunk$set(echo = FALSE).""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, @@ -380817,8 +400661,24 @@ knitr::opts_chunk$set(echo = FALSE).""" ; sc:url "http://www.proglycprot.org/" ; biotools:primaryContact "Dr. Alka Rao" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC3245024", + "pubmed:22039152" ; + sc:description "ProGlycProt (Prokaryotic Glycoproteins) is a manually curated, comprehensive repository of experimentally characterized eubacterial and archaeal glycoproteins, generated from an exhaustive literature search." ; + sc:featureList edam:operation_2945 ; + sc:name "proglycprot (Prokaryotic Glycoproteins)" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/proglycprot/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0102, @@ -380834,7 +400694,7 @@ knitr::opts_chunk$set(echo = FALSE).""" ; sc:url "http://www.bioinformatics.nl/progmap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -380853,8 +400713,31 @@ knitr::opts_chunk$set(echo = FALSE).""" ; sc:url "http://www.prognoscan.org/" ; biotools:primaryContact "Hideaki Mizuno" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_2640, + edam:topic_3173, + edam:topic_3360, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8561914", + "pubmed:34727887" ; + sc:description "Pathway/gene set-based tumour volume prediction using multiple kernel learning." ; + sc:featureList edam:operation_0314, + edam:operation_3659, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PrognosiT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/begumbektas/prognosit" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0621, @@ -380873,7 +400756,7 @@ knitr::opts_chunk$set(echo = FALSE).""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -380888,14 +400771,14 @@ knitr::opts_chunk$set(echo = FALSE).""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0905" ; - sc:name "Protein interaction raw data" ; - sc:sameAs "http://edamontology.org/data_0905" ] ; + sc:additionalType "http://edamontology.org/data_0905" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein interaction raw data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -380916,7 +400799,7 @@ knitr::opts_chunk$set(echo = FALSE).""" ; biotools:primaryContact "James D R Knight" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3300, edam:topic_3400, @@ -380938,7 +400821,7 @@ Please be patient after submitting and do not close this page.""" ; sc:url "http://kurata14.bio.kyutech.ac.jp/ProIn-Fuse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3510 ; @@ -380955,7 +400838,7 @@ Please be patient after submitting and do not close this page.""" ; sc:url "http://metabiosys.iiserb.ac.in/proinflam/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077 ; sc:author "Sarah Djebali" ; @@ -380973,7 +400856,7 @@ Please be patient after submitting and do not close this page.""" ; biotools:primaryContact "Sarah Djebali" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3308, edam:topic_3474 ; @@ -380986,7 +400869,7 @@ Please be patient after submitting and do not close this page.""" ; sc:url "https://github.com/genesofeve/projectR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -381009,14 +400892,14 @@ Please be patient after submitting and do not close this page.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3297 ; @@ -381035,24 +400918,31 @@ Please be patient after submitting and do not close this page.""" ; "Erik Hjerde" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3301, edam:topic_3305, edam:topic_3673, edam:topic_3796 ; - sc:citation ; - sc:description "an automated, reproducible, and scalable framework for high-throughput bacterial population genomics analyses." ; + sc:citation , + "pmcid:PMC8142932", + "pubmed:34055480" ; + sc:description "An automated, reproducible, and scalable framework for high-throughput bacterial population genomics analyses." ; sc:featureList edam:operation_3192, edam:operation_3359, edam:operation_3644, edam:operation_3840 ; + sc:isAccessibleForFree true ; sc:license "GPL-3.0" ; sc:name "ProkEvo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; sc:url "https://github.com/npavlovikj/ProkEvo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -381075,8 +400965,29 @@ Please be patient after submitting and do not close this page.""" ; biotools:primaryContact "Australia", "Torsten Seemann" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_3174, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9344657", + "pubmed:35915508" ; + sc:description "Differential richness inference for 16S rRNA marker gene surveys." ; + sc:featureList edam:operation_3196, + edam:operation_3659, + edam:operation_3797 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Prokounter" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/mskb01/prokounter" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0769, @@ -381097,7 +401008,7 @@ conda install -c snandids prokseq.""" ; sc:url "https://anaconda.org/snandiDS/prokseq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0166, @@ -381121,14 +401032,14 @@ conda install -c snandids prokseq.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence set" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:author "Dr. Michael Kohl" ; @@ -381144,7 +401055,7 @@ In addition to a simple accession based comparison, ProLiC permits a more reliab biotools:primaryContact "PD Dr. Martin Eisenacher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0176, @@ -381170,7 +401081,7 @@ In addition to a simple accession based comparison, ProLiC permits a more reliab sc:url "https://github.com/chemosim-lab/ProLIF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0128 ; sc:description "One-step solution to investigate available information on given protein names, sequences, similar proteins or sequences on the gene level." ; @@ -381181,7 +401092,7 @@ In addition to a simple accession based comparison, ProLiC permits a more reliab sc:url "http://www.pharmaceutical-bioinformatics.de/prolific/184/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -381204,7 +401115,7 @@ In addition to a simple accession based comparison, ProLiC permits a more reliab biotools:primaryContact "Christophe Bruley" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0153, @@ -381226,7 +401137,7 @@ prolintpy is a lightweight python library that is used by the ProLint webserver . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -381248,7 +401159,7 @@ prolintpy is a lightweight python library that is used by the ProLint webserver biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation ; @@ -381262,7 +401173,7 @@ prolintpy is a lightweight python library that is used by the ProLint webserver sc:url "http://140.113.239.45/prolocgo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121 ; @@ -381281,7 +401192,7 @@ prolintpy is a lightweight python library that is used by the ProLint webserver "Lisa M Breckels" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2259, @@ -381299,7 +401210,7 @@ prolintpy is a lightweight python library that is used by the ProLint webserver sc:url "https://price.systemsbiology.org/research/prom/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, edam:topic_0821, @@ -381323,7 +401234,7 @@ You can also install the latest version directly from GitHub.""" ; sc:url "https://promad.dev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -381346,7 +401257,7 @@ You can also install the latest version directly from GitHub.""" ; biotools:primaryContact "PROMALS3D Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0749, @@ -381372,7 +401283,7 @@ You can also install the latest version directly from GitHub.""" ; "Mati Cohen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_1317, @@ -381392,22 +401303,22 @@ You can also install the latest version directly from GitHub.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2571" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0780, @@ -381428,7 +401339,7 @@ You can also install the latest version directly from GitHub.""" ; biotools:primaryContact "Dr. V. Egelhofer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -381443,8 +401354,30 @@ You can also install the latest version directly from GitHub.""" ; sc:softwareHelp ; sc:url "http://stormo.wustl.edu/src/PromFD/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0102, + edam:topic_0622, + edam:topic_0749, + edam:topic_0798 ; + sc:citation , + "pmcid:PMC8989519", + "pubmed:35323968" ; + sc:description "proMGE is a resource for the retrieval of 6 Mobile Genetic Element (MGE) categories in 76K genomes (totalling to 2.4 million prokaryotic MGEs) and classification of new ones in user provided protein sequences from genomes and genomic fragments." ; + sc:featureList edam:operation_3208, + edam:operation_3482, + edam:operation_3501 ; + sc:license "Not licensed" ; + sc:name "proMGE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://promge.embl.de/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -381466,7 +401399,7 @@ You can also install the latest version directly from GitHub.""" ; biotools:primaryContact "Victor V. Solovyev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -381484,7 +401417,7 @@ This is the project page for ProminTools: a collection of bioinformatic tools fo sc:url "https://github.com/skeffington/Promin-tools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -381507,7 +401440,7 @@ This is the project page for ProminTools: a collection of bioinformatic tools fo "Robert Preissner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -381526,7 +401459,7 @@ This is the project page for ProminTools: a collection of bioinformatic tools fo "Xueyuan Cao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "Agentless technology to quickly and remotely inspect yan organisations endpoint environment to discover, analyze, and remediate any abnormalities that then in turn lead to failed audits and uncorrect business intelligence." ; @@ -381538,8 +401471,31 @@ This is the project page for ProminTools: a collection of bioinformatic tools fo sc:url "https://www.promisec.com/products/#pem" ; biotools:primaryContact "promisec contact form" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_0780, + edam:topic_3172, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8453180", + "pubmed:34589187" ; + sc:description "A novel web-based tool to facilitate analysis and visualization of the molecular interaction networks from co-fractionation mass spectrometry (CF-MS) experiments." ; + sc:featureList edam:operation_0337, + edam:operation_3629, + edam:operation_3767 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PROMISed" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://myshiny.mpimp-golm.mpg.de/PDP1/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0123 ; @@ -381554,7 +401510,7 @@ This is the project page for ProminTools: a collection of bioinformatic tools fo sc:url "https://sites.google.com/site/guoxian85/home/promk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0128, @@ -381570,7 +401526,7 @@ This is the project page for ProminTools: a collection of bioinformatic tools fo sc:url "https://cosmos.iitkgp.ac.in/ProMoCell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0769, @@ -381591,7 +401547,7 @@ ProMod3 is a modelling engine based on the OpenStructure [biasini2013] computati sc:url "https://openstructure.org/promod3/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0128, @@ -381608,7 +401564,7 @@ ProMod3 is a modelling engine based on the OpenStructure [biasini2013] computati biotools:primaryContact "Barnali Das" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -381630,7 +401586,7 @@ ProMod3 is a modelling engine based on the OpenStructure [biasini2013] computati biotools:primaryContact "PromoSer Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0176, @@ -381651,16 +401607,39 @@ ProMod3 is a modelling engine based on the OpenStructure [biasini2013] computati sc:url "http://proteomics.mcw.edu/promost.html" ; biotools:primaryContact "PrpMoST Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0749, + edam:topic_3168, + edam:topic_3301, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8597233", + "pubmed:34789306" ; + sc:description "Machine-learning-based general bacterial promoter prediction tool." ; + sc:featureList edam:operation_0440, + edam:operation_3359, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Promotech" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BioinformaticsLabAtMUN/PromoTech" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3511 ; @@ -381680,7 +401659,7 @@ ProMod3 is a modelling engine based on the OpenStructure [biasini2013] computati sc:url "http://cbs.dtu.dk/services/Promoter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -381702,7 +401681,7 @@ ProMod3 is a modelling engine based on the OpenStructure [biasini2013] computati biotools:primaryContact "PromoterCAD Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -381715,14 +401694,12 @@ ProMod3 is a modelling engine based on the OpenStructure [biasini2013] computati a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0749 ; @@ -381744,7 +401721,7 @@ ProMod3 is a modelling engine based on the OpenStructure [biasini2013] computati biotools:primaryContact "Web Production" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -381760,7 +401737,7 @@ ProMod3 is a modelling engine based on the OpenStructure [biasini2013] computati sc:url "http://nucleix.mbu.iisc.ernet.in/prompredict/prompredict.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation ; @@ -381779,7 +401756,7 @@ ProMod3 is a modelling engine based on the OpenStructure [biasini2013] computati sc:url "http://www.geneinfo.eu/prompt/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091, @@ -381799,7 +401776,7 @@ ProMod3 is a modelling engine based on the OpenStructure [biasini2013] computati biotools:primaryContact "Gaik Tamazian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_3170, @@ -381818,7 +401795,7 @@ ProMod3 is a modelling engine based on the OpenStructure [biasini2013] computati biotools:primaryContact "Bing Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0780, @@ -381837,8 +401814,33 @@ ProMod3 is a modelling engine based on the OpenStructure [biasini2013] computati biotools:primaryContact "Christophe Liseron-Monfils", "Manish Raizada" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0097, + edam:topic_0099, + edam:topic_0128, + edam:topic_0199, + edam:topic_3511 ; + sc:citation , + "pmcid:PMC8728258", + "pubmed:34606614" ; + sc:description "Database for binding affinities of protein-nucleic acid complexes and their mutants." ; + sc:featureList edam:operation_0478, + edam:operation_2421, + edam:operation_3802, + edam:operation_3900, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "ProNAB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://web.iitm.ac.in/bioinfo2/pronab/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, edam:topic_2229, @@ -381861,7 +401863,7 @@ Co-expression network was constructed based on phospho-peptide data of 103 Clear sc:url "http://ccrcc.cptac-network-view.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0092, @@ -381875,7 +401877,7 @@ Co-expression network was constructed based on phospho-peptide data of 103 Clear sc:url "http://compbio.clemson.edu/pronoi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -381895,7 +401897,7 @@ Co-expression network was constructed based on phospho-peptide data of 103 Clear sc:url "https://github.com/thackl/proovframe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -381911,14 +401913,14 @@ Co-expression network was constructed based on phospho-peptide data of 103 Clear a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -381939,7 +401941,7 @@ Co-expression network was constructed based on phospho-peptide data of 103 Clear sc:url "http://cbs.dtu.dk/services/ProP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3174, @@ -381956,7 +401958,7 @@ PropagAtE (Prophage Activity Estimator) uses genomic coordinates of integrated p sc:url "https://github.com/AnantharamanLab/PropagAtE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0078, @@ -381973,7 +401975,7 @@ PropagAtE (Prophage Activity Estimator) uses genomic coordinates of integrated p sc:url "http://bioinfo.hupo.org.cn/tools/ProPAS/propas.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -381995,7 +401997,7 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo sc:url "https://bioinfo.dcc.ufmg.br/propedia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170 ; @@ -382015,7 +402017,7 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo biotools:primaryContact "Hao Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3168, @@ -382034,14 +402036,12 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2337" ; - sc:name "Resource metadata" ; - sc:sameAs "http://edamontology.org/data_2337" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2337" ; + sc:name "Resource metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3298 ; sc:citation ; @@ -382057,18 +402057,15 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1354" ; - sc:name "Sequence profile" ; - sc:sameAs "http://edamontology.org/data_1354" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_1354" ; + sc:name "Sequence profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -382098,7 +402095,7 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo sc:url "http://emboss.open-bio.org/rel/rel6/apps/prophet.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0621, edam:topic_0622, @@ -382115,7 +402112,7 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo sc:url "https://github.com/jaumlrc/ProphET" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -382132,7 +402129,7 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo biotools:primaryContact "Carmen Navarro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -382147,7 +402144,7 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo biotools:primaryContact "Po-Hsien Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -382165,7 +402162,7 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -382183,7 +402180,7 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo biotools:primaryContact "ProPortal Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3169, @@ -382203,10 +402200,9 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo biotools:primaryContact "Thomas Quinn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; - sc:applicationSubCategory edam:topic_2830, - edam:topic_3125, + sc:applicationSubCategory edam:topic_3125, edam:topic_3511, edam:topic_3534 ; sc:citation "pubmed:11751237" ; @@ -382220,14 +402216,13 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/propred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/propred/" ; biotools:primaryContact "Dr. G. P. S. Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; - sc:applicationSubCategory edam:topic_2830, - edam:topic_3510, + sc:applicationSubCategory edam:topic_3510, edam:topic_3534 ; sc:citation "pubmed:12761064" ; sc:description "Online service for identifying the MHC Class-I binding regions in antigens. It implements matrices for 47 MHC Class-I alleles, proteasomal and immunoproteasomal models. The main aim of this server is to help users in identifying the promiscuous regions." ; @@ -382240,10 +402235,25 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/propred1/" . + sc:url "http://webs.iiitd.edu.in/raghava/propred1/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:20887258" ; + sc:description "Proprint web-server predicts physical or functional interactions between protein molecules." ; + sc:featureList edam:operation_2945 ; + sc:name "proprint" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/proprint/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -382264,7 +402274,7 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo biotools:primaryContact "Lichy Han" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1775 ; sc:citation ; @@ -382283,14 +402293,12 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:name "Structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0081 ; @@ -382308,7 +402316,7 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo biotools:primaryContact "Bjorn Wallner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0123, @@ -382325,7 +402333,7 @@ PROPEDIA is a database of peptide-protein complexes clusterized in three methodo sc:url "http://bioinfo.ifm.liu.se/ProQ2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, edam:topic_3168 ; @@ -382343,38 +402351,38 @@ ProQ3/ProQ3D: Improved model quality assessment.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -382397,7 +402405,7 @@ ProQ3/ProQ3D: Improved model quality assessment.""" ; sc:url "https://code.google.com/archive/p/prorata/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0130 ; sc:citation ; @@ -382411,7 +402419,7 @@ ProQ3/ProQ3D: Improved model quality assessment.""" ; sc:url "http://sunflower.kuicr.kyoto-u.ac.jp/~sjn/folding/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -382431,8 +402439,28 @@ ProQ3/ProQ3D: Improved model quality assessment.""" ; sc:url "http://prorepeat.bioinformatics.nl:443/dev/f?p=131:1:3958512077619968" ; biotools:primaryContact "Jack A. M. Leunissen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0130, + edam:topic_0199, + edam:topic_3318, + edam:topic_3474 ; + sc:citation ; + sc:description "Predicting effects of mutations on protein stability using graph neural networks." ; + sc:featureList edam:operation_0331, + edam:operation_2476, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ProS-GNN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/shuyu-wang/ProS-GNN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -382453,8 +402481,31 @@ ProQ3/ProQ3D: Improved model quality assessment.""" ; "Windows" ; sc:url "https://prosa.services.came.sbg.ac.at/prosa.php" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0130, + edam:topic_0154, + edam:topic_3520 ; + sc:citation , + "pubmed:35246677" ; + sc:description "ProSAP (Protein Stability Analysis Pod) is standalone and user-friendly software with graphical user interface (GUI). ProSAP provides an integrated analysis workflow for thermal shift assay, which includes five modules: data preprocessing, data visualization, TPP analysis, NPARC analysis and iTSA analysis. With the assistance of the user-friendly interface, researchers can easily compare several statistical strategies, analyze the results and draw the conclusion from the proteomics quantitative table obtained by Proteome Discoverer or MaxQuant. Users would also benefit from a comprehensive overview of the performance of different algorithms, and apply appropriate algorithms to their dataset easily." ; + sc:featureList edam:operation_2939, + edam:operation_3435, + edam:operation_3557, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ProSAP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/hcji/ProSAP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0219, @@ -382471,7 +402522,7 @@ ProQ3/ProQ3D: Improved model quality assessment.""" ; sc:url "http://prosat.h-its.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -382494,8 +402545,30 @@ ProQ3/ProQ3D: Improved model quality assessment.""" ; sc:url "http://projects.villa-bosch.de/dbase/ps2/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0625, + edam:topic_2640, + edam:topic_3520 ; + sc:citation ; + sc:description "Single-sample proteome enrichment enables missing protein recovery and phenotype association." ; + sc:featureList edam:operation_3463, + edam:operation_3501, + edam:operation_3557, + edam:operation_3767 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PROSE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bwbio/PROSE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -382513,8 +402586,28 @@ ProQ3/ProQ3D: Improved model quality assessment.""" ; sc:softwareVersion "3.5" ; sc:url "http://dps.plants.ox.ac.uk/sequencing/proseq.htm" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0081, + edam:topic_0199 ; + sc:citation , + "pubmed:34788797" ; + sc:description "An interactive, responsive and efficient TypeScript library for visualization of sequences and alignments in web applications." ; + sc:featureList edam:operation_0259, + edam:operation_0492, + edam:operation_0564 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "ProSeqViewer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://biocomputingup.github.io/ProSeqViewer-documentation/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0593, @@ -382547,7 +402640,7 @@ ProQ3/ProQ3D: Improved model quality assessment.""" ; "You Zhou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_0202, @@ -382575,10 +402668,9 @@ to /etc/pbs.conf (on all cluster nodes). Another option is to write this line to a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1353" ; - sc:name "Sequence motif" ; - sc:sameAs "http://edamontology.org/data_1353" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1353" ; + sc:name "Sequence motif" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -382607,28 +402699,46 @@ to /etc/pbs.conf (on all cluster nodes). Another option is to write this line to sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/prosextract.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269 ; + sc:citation ; + sc:description "An R package for variable selection with second-generation p-values." ; + sc:featureList edam:operation_3658, + edam:operation_3659, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ProSGPV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://cran.r-project.org/web/packages/ProSGPV/index.html" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_1963" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2969" ; - sc:name "Sequence image" ; - sc:sameAs "http://edamontology.org/data_2969" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2969" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Sequence image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -382653,30 +402763,30 @@ to /etc/pbs.conf (on all cluster nodes). Another option is to write this line to a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2062" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2062" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -382702,14 +402812,14 @@ to /etc/pbs.conf (on all cluster nodes). Another option is to write this line to a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0844" ; - sc:name "Molecular mass" ; - sc:sameAs "http://edamontology.org/data_0844" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0844" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Molecular mass" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -382725,7 +402835,7 @@ to /etc/pbs.conf (on all cluster nodes). Another option is to write this line to sc:url "https://prosightptm.northwestern.edu/ionpredictor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -382750,18 +402860,15 @@ to /etc/pbs.conf (on all cluster nodes). Another option is to write this line to a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0858" ; - sc:name "Sequence signature matches" ; - sc:sameAs "http://edamontology.org/data_0858" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0858" ; + sc:name "Sequence signature matches" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -382783,7 +402890,7 @@ to /etc/pbs.conf (on all cluster nodes). Another option is to write this line to biotools:primaryContact "Web Production" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -382806,7 +402913,7 @@ to /etc/pbs.conf (on all cluster nodes). Another option is to write this line to biotools:primaryContact "Shuoyong Shi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_0769, @@ -382828,14 +402935,12 @@ ProSolo is a variant caller for multiple displacement amplified DNA sequencing d a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation ; @@ -382851,7 +402956,7 @@ ProSolo is a variant caller for multiple displacement amplified DNA sequencing d sc:url "http://bioinformatics.psb.ugent.be/software/details/ProSOM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3071 ; @@ -382868,7 +402973,7 @@ ProSolo is a variant caller for multiple displacement amplified DNA sequencing d biotools:primaryContact "Yudi Pawitan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -382884,7 +402989,7 @@ ProSolo is a variant caller for multiple displacement amplified DNA sequencing d sc:url "http://csbl.bmb.uga.edu/protein_pipeline" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0602, edam:topic_3407, @@ -382900,7 +403005,7 @@ Background: Phosphorylation of histidine residues plays crucial roles in signali sc:url "http://PROSPECT.erc.monash.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -382922,7 +403027,7 @@ Background: Phosphorylation of histidine residues plays crucial roles in signali biotools:primaryContact "IGMM Admin Hub" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3120, @@ -382943,7 +403048,7 @@ Background: Phosphorylation of histidine residues plays crucial roles in signali biotools:primaryContact "ProSplicer Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3384, @@ -382960,7 +403065,7 @@ Background: Phosphorylation of histidine residues plays crucial roles in signali sc:url "https://github.com/pimed//ProsRegNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, edam:topic_0203, @@ -382981,8 +403086,30 @@ Well, I've seen too many dumb errors with processing PROSS results and gene orde sc:name "PROSS" ; sc:url "https://pross.weizmann.ac.il" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0130, + edam:topic_0199 ; + sc:citation , + "pubmed:35973091" ; + sc:description "AlphaFold2-aware Sequence-Based Predictor to Estimate Protein Stability Changes upon Missense Mutations." ; + sc:featureList edam:operation_0331 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "PROST" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://prost.erc.monash.edu/seq" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121 ; @@ -383001,7 +403128,7 @@ Well, I've seen too many dumb errors with processing PROSS results and gene orde biotools:primaryContact "Samuel Wieczorek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, @@ -383016,8 +403143,28 @@ Well, I've seen too many dumb errors with processing PROSS results and gene orde sc:softwareHelp ; sc:url "http://cluster.physics.iisc.ernet.in/prostrip/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0749 ; + sc:citation , + "pubmed:35020788" ; + sc:description "PROmoting SYNthetic hARmony is a read merger that will take information from the reference into account when deciding whether to merge a read pair." ; + sc:featureList edam:operation_0232, + edam:operation_2422, + edam:operation_3198 ; + sc:isAccessibleForFree true ; + sc:license "LGPL-2.1" ; + sc:name "ProSynAR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/Benjamin-Crysup/prosynar" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0108 ; @@ -383036,7 +403183,7 @@ Well, I've seen too many dumb errors with processing PROSS results and gene orde biotools:primaryContact "Sebastien Artigaud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0108, edam:topic_0622, @@ -383056,7 +403203,7 @@ Genetic variation occurring within conserved functional protein domains warrants sc:url "http://www.prot2hg.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3293, @@ -383081,38 +403228,38 @@ Genetic variation occurring within conserved functional protein domains warrants a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0846" ; - sc:name "Chemical formula" ; - sc:sameAs "http://edamontology.org/data_0846" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_0846" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Chemical formula" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2970" ; - sc:name "Protein hydropathy data" ; - sc:sameAs "http://edamontology.org/data_2970" ], + sc:additionalType "http://edamontology.org/data_1528" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Protein isoelectric point" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2979" ; - sc:name "Peptide property" ; - sc:sameAs "http://edamontology.org/data_2979" ], + sc:additionalType "http://edamontology.org/data_1520" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Peptide hydrophobic moment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1520" ; - sc:name "Peptide hydrophobic moment" ; - sc:sameAs "http://edamontology.org/data_1520" ], + sc:additionalType "http://edamontology.org/data_2970" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Protein hydropathy data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1522" ; - sc:name "Protein sequence hydropathy plot" ; - sc:sameAs "http://edamontology.org/data_1522" ], + sc:additionalType "http://edamontology.org/data_2979" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Peptide property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0897" ; - sc:name "Protein property" ; - sc:sameAs "http://edamontology.org/data_0897" ], + sc:additionalType "http://edamontology.org/data_0897" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Protein property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1528" ; - sc:name "Protein isoelectric point" ; - sc:sameAs "http://edamontology.org/data_1528" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1522" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Protein sequence hydropathy plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -383132,7 +403279,7 @@ Genetic variation occurring within conserved functional protein domains warrants sc:url "https://www.protpi.ch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0749, edam:topic_3047, @@ -383154,7 +403301,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; sc:url "http://cadd.zju.edu.cn/protacdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080 ; @@ -383170,7 +403317,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; sc:url "http://proteins.burnham.org:8080/Protael/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "Smart Tag and Add-In solution for Microsoft Office applications and allows querying the ProThesaurus Web Service from within an Office application while typing your documents." ; @@ -383181,7 +403328,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; sc:url "http://services.bio.ifi.lmu.de:1046/prothesaurus/#Documentation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078 ; sc:description "Protein Biological Unit Database is a new database of asymmetric units and biological units (BU) from PDB and PQS, and uses SCOP and PSIBLAST to provide ASU and BU for all entries with proteins in particular superfamilies or families." ; @@ -383191,7 +403338,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; sc:url "http://dunbrack.fccc.edu/ProtBuD/ProtBuD.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -383214,7 +403361,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; biotools:primaryContact "Olga Kalinina" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -383233,7 +403380,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; biotools:primaryContact "ProtCID Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2814, @@ -383253,7 +403400,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; biotools:primaryContact "Yasser B. Ruiz Blanco" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -383268,7 +403415,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; sc:url "http://jaramillolab.issb.genopole.fr/display/sbsite/Download" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -383285,7 +403432,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; sc:url "http://bioinfo.lifl.fr/protea/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2814 ; @@ -383299,7 +403446,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; sc:url "https://simtk.org/home/proteand" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0080, @@ -383318,7 +403465,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; sc:url "https://github.com/smith-chem-wisc/ProteaseGuru" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -383343,7 +403490,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; sc:url "http://serv.csbb.ntu.edu.tw/ProteDNA/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -383359,7 +403506,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; sc:url "http://protege.stanford.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0623, @@ -383378,7 +403525,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3318 ; @@ -383393,7 +403540,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; biotools:primaryContact "Asadur Rahman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -383412,7 +403559,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; biotools:primaryContact "Danny Allen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Plug-in" ; sc:applicationSubCategory edam:topic_0082, @@ -383428,7 +403575,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; sc:url "https://github.com/egurapha/prot_domain_segmentor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814 ; @@ -383445,14 +403592,14 @@ PROTACs Warheads E3 ligands Linkers.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1048" ; - sc:name "Database ID" ; - sc:sameAs "http://edamontology.org/data_1048" ] ; + sc:additionalType "http://edamontology.org/data_1048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602 ; @@ -383470,7 +403617,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; sc:url "http://www.mrc-lmb.cam.ac.uk/pca/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Protein Coverage Summarizer can be used to determine the percent of the residues in each protein sequence that have been identified. The program requires two input files: the first should contain the protein names and protein sequences while the second should contain the peptide sequences and optionally also contain the protein name associated with each peptide sequence." ; @@ -383481,7 +403628,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; sc:url "http://omics.pnl.gov/software/protein-coverage-summarizer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154, @@ -383498,14 +403645,14 @@ PROTACs Warheads E3 ligands Linkers.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1238" ; - sc:name "Proteolytic digest" ; - sc:sameAs "http://edamontology.org/data_1238" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1238" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Proteolytic digest" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0123, @@ -383520,14 +403667,14 @@ PROTACs Warheads E3 ligands Linkers.""" ; sc:url "http://omics.pnl.gov/software/protein-digestion-simulator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "An Internet server calculates the net charge, dipole moment and mean radius of any 3D protein structure or its constituent peptide chains, and displays the dipole vector superimposed on a ribbon backbone of the protein." ; sc:name "Protein Dipole Moments Server" ; sc:softwareVersion "1.0" ; sc:url "https://dipole.weizmann.ac.il" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "List is a list or Protein Disorder Predictors" ; @@ -383541,7 +403688,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0102, @@ -383562,7 +403709,7 @@ PROTACs Warheads E3 ligands Linkers.""" ; "Msc. Leandro G. Radusky" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_1317, edam:topic_3510 ; @@ -383583,7 +403730,7 @@ once the user specifies a set of E. coli proteins, the site returns all the feat biotools:primaryContact "Joost Schymkowitz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_1317, edam:topic_3382 ; @@ -383598,14 +403745,13 @@ This website requires javascript and CORS enabled to work properly. Some browser a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0121, @@ -383629,7 +403775,7 @@ PMP has reached its end of life and no longer provides data.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0089, @@ -383648,7 +403794,7 @@ PMP has reached its end of life and no longer provides data.""" ; biotools:primaryContact "J. Goll" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -383673,12 +403819,16 @@ PMP has reached its end of life and no longer provides data.""" ; biotools:primaryContact "Jean-Christophe Gelly" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0160 ; - sc:citation "pubmed:475985" ; + sc:citation , + , + "pmcid:PMC332411", + "pubmed:2172928", + "pubmed:9475985" ; sc:description "Protein sequence alignment viewed as sequence logos. The total height of the sequence information part is computed as the relative entropy between the observed fractions of a given symbol and the respective a priori probabilities." ; sc:featureList edam:operation_0564 ; sc:license "Other" ; @@ -383691,7 +403841,7 @@ PMP has reached its end of life and no longer provides data.""" ; biotools:primaryContact "RTH Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "The Protein Sequence Motif Extractor reads a fasta file or tab delimited file containing protein sequences, then looks for the specified motif in each protein sequence. Results are stored in a new file containing the regions of the protein that contain the specified motif. The default output format is a new fasta file named _Motifs.fasta, but you can alternatively use /T to specify that a tab-delimited text file be created." ; @@ -383702,7 +403852,7 @@ PMP has reached its end of life and no longer provides data.""" ; sc:url "http://omics.pnl.gov/software/protein-sequence-motif-extractor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3474 ; @@ -383724,7 +403874,7 @@ PMP has reached its end of life and no longer provides data.""" ; "Xiaonan Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "Protein Spotlight is a monthly review written by the Swiss-Prot team of the Swiss Institute of Bioinformatics. Spotlight articles describe a specific protein or family of proteins on an informal tone." ; @@ -383738,18 +403888,18 @@ PMP has reached its end of life and no longer provides data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ], + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -383767,38 +403917,33 @@ PMP has reached its end of life and no longer provides data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2772" ; - sc:name "HPA antibody id" ; - sc:sameAs "http://edamontology.org/data_2772" ], + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ] ; + sc:additionalType "http://edamontology.org/data_2772" ; + sc:name "HPA antibody id" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0203, @@ -383821,7 +403966,7 @@ PMP has reached its end of life and no longer provides data.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -383838,7 +403983,7 @@ PMP has reached its end of life and no longer provides data.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -383860,7 +404005,7 @@ PMP has reached its end of life and no longer provides data.""" ; biotools:primaryContact "A. Murachelli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3070, @@ -383881,14 +404026,14 @@ PMP has reached its end of life and no longer provides data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3520 ; sc:author "Martin Raus" ; @@ -383910,7 +404055,7 @@ PMP has reached its end of life and no longer provides data.""" ; biotools:primaryContact "Martin Raus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -383932,7 +404077,7 @@ PMP has reached its end of life and no longer provides data.""" ; biotools:primaryContact "shyuc@missouri.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121 ; @@ -383947,7 +404092,7 @@ PMP has reached its end of life and no longer provides data.""" ; sc:url "http://digbio.missouri.edu/ProteinDecision/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, edam:topic_2828, @@ -383965,22 +404110,21 @@ PMP has reached its end of life and no longer provides data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2007" ; - sc:name "UniProt keyword" ; - sc:sameAs "http://edamontology.org/data_2007" ] ; + sc:additionalType "http://edamontology.org/data_2007" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "UniProt keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -384004,7 +404148,7 @@ PMP has reached its end of life and no longer provides data.""" ; sc:url "https://proteinensemble.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0199, @@ -384024,7 +404168,7 @@ PMP has reached its end of life and no longer provides data.""" ; sc:url "https://github.com/miguelarenas/proteinevolverabc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0623, @@ -384044,7 +404188,7 @@ PMP has reached its end of life and no longer provides data.""" ; sc:url "https://github.com/google-research/proteinfer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_1775 ; @@ -384058,7 +404202,7 @@ PMP has reached its end of life and no longer provides data.""" ; sc:url "http://sfb.kaust.edu.sa/Pages/Software.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0123, @@ -384076,7 +404220,7 @@ PMP has reached its end of life and no longer provides data.""" ; sc:url "http://www.proteinguru.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Web application" ; sc:applicationSubCategory edam:topic_0736, @@ -384094,7 +404238,7 @@ PMP has reached its end of life and no longer provides data.""" ; sc:url "http://lighthouse.ucsf.edu/ProteinHistorian/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -384107,7 +404251,7 @@ PMP has reached its end of life and no longer provides data.""" ; sc:url "http://bioinformatics.ust.hk/proteininfer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -384123,7 +404267,7 @@ PMP has reached its end of life and no longer provides data.""" ; sc:url "http://sourceforge.net/projects/proteinlasso/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0602, @@ -384146,7 +404290,7 @@ PMP has reached its end of life and no longer provides data.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_3518, @@ -384166,8 +404310,38 @@ As input, proteiNorm expects tab-separated peptide (optional) and protein data ( sc:name "proteiNorm" ; sc:url "https://sbyrum.shinyapps.io/proteiNorm/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0084 ; + sc:citation , + "pmcid:PMC3114741", + "pubmed:21526987" ; + sc:description "Proteinortho is a tool to detect orthologous genes within different species" ; + sc:featureList edam:operation_3663 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "Proteinortho" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "6.0.14" ; + sc:url "https://www.bioinf.uni-leipzig.de/Software/proteinortho/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078 ; sc:description "Significance assessment for distance measures of time-course protein profiles" ; @@ -384185,10 +404359,9 @@ As input, proteiNorm expects tab-separated peptide (optional) and protein data ( a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -384209,14 +404382,14 @@ As input, proteiNorm expects tab-separated peptide (optional) and protein data ( a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -384235,7 +404408,7 @@ As input, proteiNorm expects tab-separated peptide (optional) and protein data ( sc:url "http://tools.proteomecenter.org/ProteinProphet.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3489, @@ -384253,22 +404426,20 @@ As input, proteiNorm expects tab-separated peptide (optional) and protein data ( a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -384284,7 +404455,7 @@ As input, proteiNorm expects tab-separated peptide (optional) and protein data ( "Maria Martin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0102, @@ -384302,7 +404473,7 @@ As input, proteiNorm expects tab-separated peptide (optional) and protein data ( sc:url "http://proteinshader.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, edam:topic_0154, @@ -384322,14 +404493,14 @@ Generate protein sequences matching a predetermined geometry¶.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3683" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -384347,30 +404518,29 @@ Generate protein sequences matching a predetermined geometry¶.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_0897" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0897" ; - sc:name "Protein property" ; - sc:sameAs "http://edamontology.org/data_0897" ], + sc:additionalType "http://edamontology.org/data_2992" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Protein structure image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2992" ; - sc:name "Protein structure image" ; - sc:sameAs "http://edamontology.org/data_2992" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1208" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3534 ; @@ -384392,7 +404562,7 @@ Generate protein sequences matching a predetermined geometry¶.""" ; sc:url "http://proteinsplus.zbh.uni-hamburg.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0102, @@ -384414,7 +404584,7 @@ Generate protein sequences matching a predetermined geometry¶.""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -384427,7 +404597,7 @@ Generate protein sequences matching a predetermined geometry¶.""" ; sc:url "http://gmlab.bio.rpi.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_2814 ; @@ -384446,14 +404616,12 @@ ProteinVR is a web-based application that allows users to view protein/ligand st a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3071, @@ -384468,7 +404636,7 @@ ProteinVR is a web-based application that allows users to view protein/ligand st sc:url "http://www.proteios.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -384491,7 +404659,7 @@ ProteinVR is a web-based application that allows users to view protein/ligand st biotools:primaryContact "Protemot Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0121, @@ -384507,7 +404675,7 @@ ProteinVR is a web-based application that allows users to view protein/ligand st sc:url "https://github.com/thiesgehrmann/proteny" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0121 ; @@ -384528,7 +404696,7 @@ We interrogate peptides from eight large-scale human proteomics experiments and sc:url "http://proteo.bioinfo.cnio.es" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0219, @@ -384544,7 +404712,7 @@ We interrogate peptides from eight large-scale human proteomics experiments and biotools:primaryContact "Andrew Jones" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0601, @@ -384563,7 +404731,7 @@ ProteoCombiner capitalizes on the data arising from different experiments and pr sc:url "https://proteocombiner.pasteur.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_3391 ; sc:citation ; @@ -384571,8 +404739,31 @@ ProteoCombiner capitalizes on the data arising from different experiments and pr sc:name "ProteoDisco" ; sc:url "https://github.com/ErasmusMC-CCBC/ProteoDisco/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0154, + edam:topic_0601, + edam:topic_3520 ; + sc:citation , + "pubmed:35657588" ; + sc:description "Proteoform Analysis and Construction of Proteoform Families in Proteoform Suite." ; + sc:featureList edam:operation_0417, + edam:operation_3645, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Proteoform Suite" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://smith-chem-wisc.github.io/ProteoformSuite/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -384591,18 +404782,18 @@ ProteoCombiner capitalizes on the data arising from different experiments and pr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3496" ; - sc:name "RNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3496" ] ; + sc:additionalType "http://edamontology.org/data_3496" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "RNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_3621" ; + sc:name "Database search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3120, @@ -384641,8 +404832,31 @@ ProteoCombiner capitalizes on the data arising from different experiments and pr biotools:primaryContact , . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_3068, + edam:topic_3474, + edam:topic_3576 ; + sc:citation , + "pmcid:PMC9237736", + "pubmed:35639661" ; + sc:description "Conditional generative modeling for de novo protein design with hierarchical functions." ; + sc:featureList edam:operation_0477, + edam:operation_3359, + edam:operation_3557, + edam:operation_4008 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ProteoGAN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/timkucera/proteogan" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -384657,14 +404871,12 @@ ProteoCombiner capitalizes on the data arising from different experiments and pr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:name "Sequence set (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1528" ; - sc:name "Protein isoelectric point" ; - sc:sameAs "http://edamontology.org/data_1528" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1528" ; + sc:name "Protein isoelectric point" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0123, @@ -384686,7 +404898,7 @@ ProteoCombiner capitalizes on the data arising from different experiments and pr biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -384707,14 +404919,14 @@ ProteoCombiner capitalizes on the data arising from different experiments and pr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1238" ; - sc:name "Proteolytic digest" ; - sc:sameAs "http://edamontology.org/data_1238" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1238" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Proteolytic digest" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0123, @@ -384731,7 +404943,7 @@ ProteoCombiner capitalizes on the data arising from different experiments and pr sc:url "https://github.com/jgmeyerucsd/ProteomeDigestSim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -384751,7 +404963,7 @@ The application is based on the Shiny package and can be run locally or on a ser sc:url "https://proteomic.shinyapps.io/peserver/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Desktop application", "Library" ; @@ -384770,7 +404982,7 @@ The application is based on the Shiny package and can be run locally or on a ser sc:url "http://www.proteometools.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -384791,7 +405003,7 @@ The application is based on the Shiny package and can be run locally or on a ser sc:url "http://www.proteomexchange.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; sc:description """We provide a proteomics software toolbox (i.e., offering pre-installed, pre-configured and tested own tools and free third-party software) on our hardware infrastructure. @@ -384805,7 +405017,7 @@ The toolbox can be used on our high-performance hardware infrastructure via hig sc:url "http://www.ruhr-uni-bochum.de/mpc/medical_bioinformatics/bioinfraprot/index.html.en" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -384825,18 +405037,18 @@ The toolbox can be used on our high-performance hardware infrastructure via hig a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1009" ; - sc:name "Protein name" ; - sc:sameAs "http://edamontology.org/data_1009" ] ; + sc:additionalType "http://edamontology.org/data_1009" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Protein report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0121, @@ -384859,7 +405071,7 @@ The toolbox can be used on our high-performance hardware infrastructure via hig sc:url "https://www.proteomicsdb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application", "Workflow" ; @@ -384873,7 +405085,7 @@ The toolbox can be used on our high-performance hardware infrastructure via hig sc:url "https://github.com/sorenwacker/ProteomicsQC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0602, @@ -384894,7 +405106,7 @@ Set maximum number allowed missing values for each condition.""" ; sc:url "https://proteomill.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -384911,7 +405123,7 @@ Set maximum number allowed missing values for each condition.""" ; sc:url "http://jjwanglab.org/proteomirexpress/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_1317, edam:topic_3068, @@ -384933,7 +405145,7 @@ Set maximum number allowed missing values for each condition.""" ; sc:url "http://www.proteopedia.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121 ; @@ -384951,7 +405163,7 @@ Set maximum number allowed missing values for each condition.""" ; biotools:primaryContact "Bo Wen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -384966,7 +405178,7 @@ Set maximum number allowed missing values for each condition.""" ; sc:url "http://proteomics.ucsd.edu/ProteoSAFe/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -384983,7 +405195,7 @@ It aims to fully automate the process of statistically evaluating differential e biotools:primaryContact "IOANNIS ILIOPOULOS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -385003,7 +405215,7 @@ ProteoSushi transforms peptide-centric, PTM-enriched peptide data into condensed sc:url "http://github.com/HeldLab/ProteoSushi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -385023,7 +405235,7 @@ Interactive tool for Phosphoproteomics.""" ; sc:url "https://github.com/ByrumLab/ProteoViz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -385040,7 +405252,7 @@ Interactive tool for Phosphoproteomics.""" ; sc:url "http://proteowizard.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0140, @@ -385062,7 +405274,7 @@ Interactive tool for Phosphoproteomics.""" ; biotools:primaryContact "Michal Linial" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, edam:topic_0199 ; @@ -385082,7 +405294,7 @@ Proteus is a Webtool, database, and method to propose mutations for proteins use sc:url "http://proteus.dcc.ufmg.br" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0736, @@ -385104,7 +405316,7 @@ Proteus is a Webtool, database, and method to propose mutations for proteins use biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -385118,7 +405330,7 @@ Proteus is a Webtool, database, and method to propose mutations for proteins use sc:url "http://ub.cbm.uam.es/software/Prot_Evol.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0203, @@ -385138,8 +405350,19 @@ ProTExA is a web-tool that provides a post-processing workflow for the analysis sc:name "ProTExA" ; sc:url "http://bioinformatics.cing.ac.cy/protexa/#step-1" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0157 ; + sc:description "A modified version of ProtExcluder for building conda package" ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "protexcluder" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/NBISweden/ProtExcluder" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, edam:topic_0736, @@ -385158,14 +405381,14 @@ a: ProtFold-DFG is based on the DeepSVM-fold(CCM), DeepSVM-fold(PSFM), MotifCNN- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_3510 ; @@ -385185,7 +405408,7 @@ a: ProtFold-DFG is based on the DeepSVM-fold(CCM), DeepSVM-fold(PSFM), MotifCNN- sc:url "http://cbs.dtu.dk/services/ProtFun/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -385205,7 +405428,7 @@ a: ProtFold-DFG is based on the DeepSVM-fold(CCM), DeepSVM-fold(PSFM), MotifCNN- biotools:primaryContact "Kennedy Mwai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121 ; @@ -385223,7 +405446,7 @@ a: ProtFold-DFG is based on the DeepSVM-fold(CCM), DeepSVM-fold(PSFM), MotifCNN- biotools:primaryContact "Laurent Gatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0130, @@ -385239,7 +405462,7 @@ a: ProtFold-DFG is based on the DeepSVM-fold(CCM), DeepSVM-fold(PSFM), MotifCNN- sc:url "https://web.iitm.ac.in/bioinfo2/prothermdb/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -385253,7 +405476,7 @@ a: ProtFold-DFG is based on the DeepSVM-fold(CCM), DeepSVM-fold(PSFM), MotifCNN- sc:url "http://pappso.inra.fr/bioinfo/proticdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080 ; @@ -385269,7 +405492,7 @@ a: ProtFold-DFG is based on the DeepSVM-fold(CCM), DeepSVM-fold(PSFM), MotifCNN- sc:url "http://www.csbio.sjtu.edu.cn/bioinf/Protease/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -385292,7 +405515,7 @@ a: ProtFold-DFG is based on the DeepSVM-fold(CCM), DeepSVM-fold(PSFM), MotifCNN- biotools:primaryContact "Protinfo Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -385316,18 +405539,15 @@ a: ProtFold-DFG is based on the DeepSVM-fold(CCM), DeepSVM-fold(PSFM), MotifCNN- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3754" ; - sc:name "GO-term enrichment data" ; - sc:sameAs "http://edamontology.org/data_3754" ], + sc:additionalType "http://edamontology.org/data_1027" ; + sc:name "Gene ID (NCBI)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1027" ; - sc:name "Gene ID (NCBI)" ; - sc:sameAs "http://edamontology.org/data_1027" ], + sc:additionalType "http://edamontology.org/data_3754" ; + sc:name "GO-term enrichment data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2757" ; - sc:name "Pfam domain name" ; - sc:sameAs "http://edamontology.org/data_2757" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2757" ; + sc:name "Pfam domain name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -385349,22 +405569,22 @@ a: ProtFold-DFG is based on the DeepSVM-fold(CCM), DeepSVM-fold(PSFM), MotifCNN- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "Protk is a suite of tools for proteomics. It aims to present a simple and consistent command-line interface across otherwise disparate third party tools." ; @@ -385380,7 +405600,7 @@ a: ProtFold-DFG is based on the DeepSVM-fold(CCM), DeepSVM-fold(PSFM), MotifCNN- biotools:primaryContact "Ira Cook" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0736, edam:topic_3299 ; @@ -385399,7 +405619,7 @@ Search for related Entries in the Database: Submit Examples: 1pky, c.23, Flavodo sc:url "https://hoecker-lab.github.io/protlego/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -385412,8 +405632,32 @@ Search for related Entries in the Database: Submit Examples: 1pky, c.23, Flavodo sc:softwareHelp ; sc:url "http://www.univie.ac.at/mosys/software.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Library" ; + sc:applicationSubCategory edam:topic_0097, + edam:topic_0099, + edam:topic_0154, + edam:topic_0593, + edam:topic_0749 ; + sc:citation , + "pubmed:35775902" ; + sc:description "Protein-bound Nucleic Acid filters and fragment libraries (protNAff) is a tool to create filters that select structures of Protein - Nucleic acids complexes from the PDB and to build libraries of protein-bound RNA fragments." ; + sc:featureList edam:operation_1812, + edam:operation_2518, + edam:operation_3695, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "protNAff" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://colab.research.google.com/github/isaureCdB/ProtNAff/blob/master/filtering-clustering.ipynb" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0623 ; @@ -385431,7 +405675,7 @@ Search for related Entries in the Database: Submit Examples: 1pky, c.23, Flavodo biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3318, edam:topic_3892 ; sc:citation , @@ -385447,7 +405691,7 @@ ProtoCaller is a Python library which enables controlled automation of relative sc:url "https://github.com/protocaller/protocaller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -385463,7 +405707,7 @@ ProtoCaller is a Python library which enables controlled automation of relative sc:url "http://protocolnavigator.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0121, @@ -385485,30 +405729,30 @@ ProtoCaller is a Python library which enables controlled automation of relative a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2071" ; - sc:name "Sequence motif (protein)" ; - sc:sameAs "http://edamontology.org/data_2071" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2071" ; + sc:encodingFormat "http://edamontology.org/format_2068" ; + sc:name "Sequence motif (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0858" ; - sc:name "Sequence signature matches" ; - sc:sameAs "http://edamontology.org/data_0858" ], + sc:additionalType "http://edamontology.org/data_2071" ; + sc:encodingFormat "http://edamontology.org/format_2068" ; + sc:name "Sequence motif (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_2554" ; + sc:name "Sequence alignment (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2071" ; - sc:name "Sequence motif (protein)" ; - sc:sameAs "http://edamontology.org/data_2071" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0858" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence signature matches" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080 ; @@ -385530,22 +405774,20 @@ ProtoCaller is a Python library which enables controlled automation of relative a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ], + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_1978" ; + sc:name "Protein family report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein family report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623 ; sc:citation ; @@ -385560,22 +405802,22 @@ ProtoCaller is a Python library which enables controlled automation of relative a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1461" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein-ligand complex" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1461" ; - sc:name "Protein-ligand complex" ; - sc:sameAs "http://edamontology.org/data_1461" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1461" ; - sc:name "Protein-ligand complex" ; - sc:sameAs "http://edamontology.org/data_1461" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1461" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein-ligand complex" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602 ; @@ -385592,8 +405834,32 @@ ProtoCaller is a Python library which enables controlled automation of relative sc:softwareHelp ; sc:url "http://proteinsplus.zbh.uni-hamburg.de/#protoss" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0219, + edam:topic_0621, + edam:topic_0659, + edam:topic_0780, + edam:topic_3324 ; + sc:citation , + "pmcid:PMC8607299", + "pubmed:34791104" ; + sc:description "A web-based application for molecular identification of Prototheca species." ; + sc:featureList edam:operation_0337, + edam:operation_3431, + edam:operation_3460, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:name "Prototheca-ID" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://prototheca-id.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -385616,7 +405882,7 @@ ProtoCaller is a Python library which enables controlled automation of relative biotools:primaryContact "Contact list" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -385643,7 +405909,7 @@ ProtoCaller is a Python library which enables controlled automation of relative biotools:primaryContact "ProtParam Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0622, @@ -385663,8 +405929,30 @@ ProtoCaller is a Python library which enables controlled automation of relative biotools:primaryContact "Dr. Fabiana Perocchi", "Dr. Yiming Cheng" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0130, + edam:topic_0199, + edam:topic_0736, + edam:topic_3297 ; + sc:citation , + "pmcid:PMC9133766", + "pubmed:35664235" ; + sc:description "The web server that readily proposes protein stabilizing mutations with high PPV." ; + sc:featureList edam:operation_0331, + edam:operation_3659, + edam:operation_4008 ; + sc:isAccessibleForFree true ; + sc:name "Protposer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://webapps.bifi.es/the-protposer" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0123, @@ -385680,7 +405968,7 @@ ProtoCaller is a Python library which enables controlled automation of relative sc:url "https://code.google.com/p/protpy/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -385696,7 +405984,7 @@ ProtoCaller is a Python library which enables controlled automation of relative sc:url "http://cran.r-project.org/web/packages/protr/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2640, edam:topic_3173, @@ -385714,10 +406002,10 @@ The Clinical Proteomic Tumor Analysis Consortium (CPTAC) initiative has generate a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0623, @@ -385736,7 +406024,7 @@ The Clinical Proteomic Tumor Analysis Consortium (CPTAC) initiative has generate sc:url "http://bliulab.net/ProtRe-CN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -385754,7 +406042,7 @@ The Clinical Proteomic Tumor Analysis Consortium (CPTAC) initiative has generate sc:url "http://www.scfbio-iitd.res.in/software/proteomics/protsav.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -385771,7 +406059,7 @@ The Clinical Proteomic Tumor Analysis Consortium (CPTAC) initiative has generate biotools:primaryContact "ExPASy helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -385789,7 +406077,7 @@ NIGEBProtScreen Reporting System.""" ; sc:url "http://nigebprotscreen.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, edam:topic_0199, @@ -385812,7 +406100,7 @@ ProTSPoM execuatable ProTSPoM benchmark data.""" ; sc:url "http://cosmos.iitkgp.ac.in/ProTSPoM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -385827,22 +406115,22 @@ ProTSPoM execuatable ProTSPoM benchmark data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2547" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_2547" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2547" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1709" ; - sc:name "Protein secondary structure image" ; - sc:sameAs "http://edamontology.org/data_1709" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1709" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Protein secondary structure image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -385865,14 +406153,17 @@ ProTSPoM execuatable ProTSPoM benchmark data.""" ; sc:url "http://wlab.ethz.ch/protter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0084, edam:topic_0154, edam:topic_3293, edam:topic_3678 ; - sc:citation "pubmed:15647292" ; + sc:citation , + "pmcid:PMC5215816", + "pubmed:15647292", + "pubmed:21335321" ; sc:description "ProtTest is a program that determines the best-fit model of evolution, among a set of candidate models, for a given protein sequence alignment." ; sc:featureList edam:operation_0292, edam:operation_0331, @@ -385889,7 +406180,7 @@ ProTSPoM execuatable ProTSPoM benchmark data.""" ; "F. Abascal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0218, edam:topic_2229, @@ -385915,14 +406206,14 @@ ProTSPoM execuatable ProTSPoM benchmark data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -385943,7 +406234,7 @@ ProTSPoM execuatable ProTSPoM benchmark data.""" ; sc:url "https://github.com/SSPuliasis/ProtView" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -385960,7 +406251,7 @@ Comparing multiple label-free shotgun proteomics datasets requires various data sc:url "https://bitbucket.org/lababi/protyquant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3120 ; @@ -385977,7 +406268,7 @@ Comparing multiple label-free shotgun proteomics datasets requires various data sc:url "http://provean.jcvi.org/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0769 ; @@ -385993,7 +406284,7 @@ Comparing multiple label-free shotgun proteomics datasets requires various data sc:url "https://provision.shinyapps.io/provision/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -386015,7 +406306,7 @@ Comparing multiple label-free shotgun proteomics datasets requires various data biotools:primaryContact "Brian T. Chait" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0102, @@ -386031,27 +406322,7 @@ Comparing multiple label-free shotgun proteomics datasets requires various data biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_3315, - edam:topic_3474 ; - sc:citation "pmcid:PMC6812563", - "pubmed:31649491" ; - sc:description """Proximal Distance Algorithms. - -Code for the numerical experiments from manuscripts for the proximal distance algorithm. - -This repository contains example code from the following papers about the proximal distance algorithm:. - -KL Keys, H Zhou, K Lange. (2017) Proximal Distance Algorithms: Theory and Examples. (arXiv). - -K Lange and KL Keys. (2014) The proximal distance algorithm. Proceedings of the 2014 International Conference of Mathematics 4, 95-116. (arXiv)""" ; - sc:featureList edam:operation_3802, - edam:operation_3891 ; - sc:name "proximal distance algorithms" ; - sc:url "https://github.com/klkeys/proxdist" . - - a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3315, edam:topic_3474 ; @@ -386073,18 +406344,16 @@ K Lange and KL Keys. (2014) The proximal distance algorithm. Proceedings of the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2655" ; - sc:name "Cell type identifier" ; - sc:sameAs "http://edamontology.org/data_2655" ], + sc:additionalType "http://edamontology.org/data_2655" ; + sc:name "Cell type identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, @@ -386099,18 +406368,18 @@ K Lange and KL Keys. (2014) The proximal distance algorithm. Proceedings of the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein interaction data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128 ; @@ -386131,7 +406400,7 @@ K Lange and KL Keys. (2014) The proximal distance algorithm. Proceedings of the sc:url "https://github.com/yeastrc/proxl-web-app" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0736, @@ -386151,14 +406420,14 @@ prPred is an open-source Python-based toolkit, which operates depending on the P a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -386178,8 +406447,40 @@ prPred is an open-source Python-based toolkit, which operates depending on the P "Windows" ; sc:url "http://39.100.246.211:5001/prPred-DRLF" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC2346480", + "pubmed:18423032" ; + sc:description "PRRDB is a database of pattern recognition receptors and their ligands." ; + sc:featureList edam:operation_2945 ; + sc:name "Prrdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/prrdb/info.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC6597477", + "pubmed:31250014" ; + sc:description "PRRDB2.0 is a comprehensive database of pattern recognition receptors and their ligands. This is an updated version of the database PRRDB." ; + sc:featureList edam:operation_2945 ; + sc:name "prrdb2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/prrdb2/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2885, @@ -386197,7 +406498,7 @@ prPred is an open-source Python-based toolkit, which operates depending on the P sc:url "http://prsice.info/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199 ; sc:description "Polygenic Risk Score software for calculating, applying, evaluating and plotting the results of polygenic risk scores (PRS) analyses" ; sc:featureList edam:operation_0550, @@ -386206,7 +406507,7 @@ prPred is an open-source Python-based toolkit, which operates depending on the P sc:url "https://www.prsice.info/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -386229,7 +406530,7 @@ prPred is an open-source Python-based toolkit, which operates depending on the P sc:url "https://prs.byu.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293 ; @@ -386241,7 +406542,7 @@ prPred is an open-source Python-based toolkit, which operates depending on the P sc:url "http://lajeunesse.myweb.usf.edu/publications.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0634, @@ -386261,7 +406562,7 @@ prPred is an open-source Python-based toolkit, which operates depending on the P biotools:primaryContact "Julie Klein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -386283,7 +406584,7 @@ prPred is an open-source Python-based toolkit, which operates depending on the P biotools:primaryContact "Jinn-Moon Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -386302,7 +406603,7 @@ prPred is an open-source Python-based toolkit, which operates depending on the P sc:url "http://ps2v3.life.nctu.edu.tw/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, edam:topic_3336, @@ -386325,7 +406626,7 @@ This package comprises a modular workflow designed to identify drug repositionin sc:url "https://github.com/ps4dr/ps4dr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, edam:topic_3360 ; @@ -386344,7 +406645,7 @@ A network-based systems biology tool for flexible identification of phenotype-sp sc:url "https://cran.r-project.org/web/packages/psSubpathway/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation "pubmed:15130850" ; @@ -386360,7 +406661,7 @@ A network-based systems biology tool for flexible identification of phenotype-sp sc:url "http://prosite.expasy.org/scanprosite/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -386377,7 +406678,7 @@ A network-based systems biology tool for flexible identification of phenotype-sp sc:url "http://engr.case.edu/li_jing/PS_SNP.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0736, @@ -386399,7 +406700,7 @@ A network-based systems biology tool for flexible identification of phenotype-sp sc:url "http://bmerc-www.bu.edu/psa/request.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2640 ; @@ -386415,7 +406716,7 @@ A network-based systems biology tool for flexible identification of phenotype-sp biotools:primaryContact "Rex Cheung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -386431,7 +406732,7 @@ A network-based systems biology tool for flexible identification of phenotype-sp sc:url "http://zhaocenter.org/software/#Genomic_Protein_Sequence_Analysis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3172 ; @@ -386447,7 +406748,7 @@ A network-based systems biology tool for flexible identification of phenotype-sp biotools:primaryContact "Ying Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3512, @@ -386462,7 +406763,7 @@ A network-based systems biology tool for flexible identification of phenotype-sp sc:url "http://bioen-compbio.bioen.illinois.edu/psar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080 ; @@ -386476,10 +406777,24 @@ A network-based systems biology tool for flexible identification of phenotype-sp "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/psa/" . + sc:url "http://webs.iiitd.edu.in/raghava/psa/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation ; + sc:description "PSAweb is a web server, developed to analyze the amino acid sequence and multiple sequence alignment of proteins." ; + sc:featureList edam:operation_2945 ; + sc:name "PSAweb: Analysis of Protein Sequence and Multiple Alignment" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/psa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0208, edam:topic_2640 ; @@ -386490,7 +406805,7 @@ A network-based systems biology tool for flexible identification of phenotype-sp sc:url "https://qingzliu.shinyapps.io/psb-app/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0121, edam:topic_0154, @@ -386510,7 +406825,7 @@ Predicting Polystyrene Binding Peptides.""" ; sc:url "http://server.malab.cn/PSBP-SVM/index.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -386527,7 +406842,7 @@ Predicting Polystyrene Binding Peptides.""" ; sc:url "http://pocket.uchicago.edu/psc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0780, edam:topic_2275, @@ -386550,14 +406865,12 @@ Predicting Polystyrene Binding Peptides.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0869" ; - sc:name "Sequence-profile alignment" ; - sc:sameAs "http://edamontology.org/data_0869" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0869" ; + sc:name "Sequence-profile alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -386589,7 +406902,7 @@ Predicting Polystyrene Binding Peptides.""" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/pscan.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -386605,7 +406918,7 @@ Predicting Polystyrene Binding Peptides.""" ; sc:url "http://www.beaconlab.it/pscan_chip_dev/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0153, edam:topic_0634, @@ -386633,14 +406946,14 @@ PSCAN package has the main PSCAN function that implements protein-structure-guid a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2755" ; - sc:name "Transcription factor name" ; - sc:sameAs "http://edamontology.org/data_2755" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2755" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Transcription factor name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0160 ; @@ -386661,7 +406974,7 @@ PSCAN package has the main PSCAN function that implements protein-structure-guid "Giulio Pavesi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0780, @@ -386687,7 +407000,7 @@ PSCAN package has the main PSCAN function that implements protein-structure-guid sc:url "http://forestry.fafu.edu.cn/db/SDX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -386708,7 +407021,7 @@ PSCAN package has the main PSCAN function that implements protein-structure-guid biotools:primaryContact "Bin Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -386729,14 +407042,14 @@ PSCAN package has the main PSCAN function that implements protein-structure-guid a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -386757,8 +407070,27 @@ PSCAN package has the main PSCAN function that implements protein-structure-guid sc:url "http://bioconductor.org/packages/release/bioc/html/PSEA.html" ; biotools:primaryContact "Alexandre Kuhn" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0102, + edam:topic_0625, + edam:topic_0634, + edam:topic_3168 ; + sc:citation ; + sc:description "A phenotypic similarity ensemble approach for prioritizes candidate genes to aid mendelian disease diagnosis." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PSEA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://phoenix.bgi.com/psea" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -386776,8 +407108,37 @@ PSCAN package has the main PSCAN function that implements protein-structure-guid sc:softwareHelp ; sc:url "http://www.csbio.sjtu.edu.cn/bioinf/PseAAC/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC2358896", + "pubmed:18416838" ; + sc:description "This is a web-server for predicting proteins secreted by Malarial Parasite P.falciparum into infected-erythrocyte." ; + sc:featureList edam:operation_2945 ; + sc:name "pseapred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/pseapred/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "Prediction of Plasmodium Secretory and Infected Erythrocyte Associated Proteins." ; + sc:featureList edam:operation_2945 ; + sc:name "pseapred2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/pseapred2/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -386793,8 +407154,29 @@ PSCAN package has the main PSCAN function that implements protein-structure-guid sc:softwareHelp ; sc:url "http://lin.uestc.edu.cn/pseknc/default.aspx" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0121, + edam:topic_3170, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8637112", + "pubmed:34868261" ; + sc:description "RNA Pseudouridine Site Identification with Deep Learning Algorithm." ; + sc:featureList edam:operation_3927, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PseUdeep" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/dan111262/PseUdeep" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -386812,24 +407194,8 @@ PSCAN package has the main PSCAN function that implements protein-structure-guid sc:url "https://www.mathworks.com/matlabcentral/fileexchange/34199-pseudo-b-mode-ultrasound-image-simulator" ; biotools:primaryContact "Debdoot Sheet" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2269, - edam:topic_2840, - edam:topic_3678 ; - sc:citation ; - sc:description """Pseudo-data generation allows the statistical re-evaluation of toxicological bioassays based on summary statistics. - -Abstract Sometimes a re-analysis of toxicological data is useful. However, this usually requires the availability of the original data and in many cases only summary data are available in the publications. Here the generation of pseudo-data under certain assumptions using extension packages in the open-source project R on statistical computing is shown. Several case studies are used to illustrate the applicability in regulatory toxicology. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'toxicological', 'bioassays', 're-evaluation', 'open-source'""" ; - sc:featureList edam:operation_3435 ; - sc:name "pseudo-data" ; - sc:url "https://doi.org/10.1101/810408" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3172, edam:topic_3520 ; @@ -386844,7 +407210,7 @@ Abstract Sometimes a re-analysis of toxicological data is useful. However, this sc:url "https://www.omicsolution.org/wukong/pseudoQC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0196, edam:topic_0621, @@ -386864,22 +407230,20 @@ Searchable genome sequences of Drosophila pseudoobscura subgroup species.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2744" ; - sc:name "Locus ID (PseudoCAP)" ; - sc:sameAs "http://edamontology.org/data_2744" ], + sc:additionalType "http://edamontology.org/data_2744" ; + sc:name "Locus ID (PseudoCAP)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2314" ; - sc:name "GI number" ; - sc:sameAs "http://edamontology.org/data_2314" ] ; + sc:additionalType "http://edamontology.org/data_2314" ; + sc:name "GI number" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation , @@ -386896,7 +407260,7 @@ Searchable genome sequences of Drosophila pseudoobscura subgroup species.""" ; sc:url "http://www.pseudomonas.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, edam:topic_0203, @@ -386914,7 +407278,7 @@ Searchable genome sequences of Drosophila pseudoobscura subgroup species.""" ; sc:url "http://pseudochecker.ciimar.up.pt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -386927,8 +407291,51 @@ Searchable genome sequences of Drosophila pseudoobscura subgroup species.""" ; sc:softwareVersion "20130916" ; sc:url "http://sourceforge.net/projects/pseudodomain/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0593, + edam:topic_0780, + edam:topic_3172, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9144304", + "pubmed:35629939" ; + sc:description "Normalizing and Correcting Variable and Complex LC-MS Metabolomic Data with the R Package pseudoDrift." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "pseudoDrift" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/jrod55/pseudoDrift" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0610, + edam:topic_0621, + edam:topic_0622 ; + sc:citation ; + sc:description "Pseudofinder is a bioinformatics tool that detects pseudogene candidates from annotated genbank files of bacterial and archaeal genomes." ; + sc:featureList edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Pseudofinder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/filip-husnik/pseudofinder" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -386955,7 +407362,7 @@ The package pseudoga can be used to perform pseudotime analysis on single cell g sc:url "https://github.com/indranillab/pseudoga" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0659, @@ -386975,7 +407382,7 @@ The package pseudoga can be used to perform pseudotime analysis on single cell g biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0621, @@ -386998,7 +407405,7 @@ The package pseudoga can be used to perform pseudotime analysis on single cell g biotools:primaryContact "Pseudomonas aeruginosa Community Annotation Project (PseudoCAP)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0621, @@ -387021,7 +407428,7 @@ The package pseudoga can be used to perform pseudotime analysis on single cell g biotools:primaryContact "Pseudomonas Genome DB Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_2229, @@ -387042,7 +407449,7 @@ The package pseudoga can be used to perform pseudotime analysis on single cell g biotools:primaryContact "Jingyi Jessica Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -387067,7 +407474,7 @@ The package pseudoga can be used to perform pseudotime analysis on single cell g biotools:primaryContact "PseudoViewer3 Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -387085,23 +407492,21 @@ The package pseudoga can be used to perform pseudotime analysis on single cell g a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_2854" ; + sc:name "Position-specific scoring matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2854" ; - sc:name "Position-specific scoring matrix" ; - sc:sameAs "http://edamontology.org/data_2854" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; - sc:author "Web Production" ; + sc:author "Job Dispatcher" ; sc:citation , , + , "pubmed:10547299" ; sc:description "Iterative protein sequence similarity search based on BLAST: search with a custom, position-specific, scoring matrix which can help find distant evolutionary relationships." ; sc:featureList edam:operation_0346 ; @@ -387115,18 +407520,16 @@ The package pseudoga can be used to perform pseudotime analysis on single cell g ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/sss/psiblast/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -387142,14 +407545,14 @@ The package pseudoga can be used to perform pseudotime analysis on single cell g a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_3243" ; + sc:name "Protein interaction data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:author "IntAct team" ; @@ -387168,7 +407571,7 @@ The package pseudoga can be used to perform pseudotime analysis on single cell g biotools:primaryContact "Marine Dumousseau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3125, edam:topic_3308, @@ -387193,23 +407596,21 @@ High-accuracy predictor for mouse Ψ site identification.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2854" ; - sc:name "Position-specific scoring matrix" ; - sc:sameAs "http://edamontology.org/data_2854" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2854" ; + sc:name "Position-specific scoring matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Bill Pearson", - "Web Production" ; - sc:citation ; + "Job Dispatcher" ; + sc:citation , + ; sc:description "Iterative protein sequence similarity search based on Smith & Waterman algorithm with PSI-BLAST profile construction : find distantly related protein sequences." ; sc:featureList edam:operation_0346 ; sc:name "PSI-Search (EBI)" ; @@ -387222,10 +407623,10 @@ High-accuracy predictor for mouse Ψ site identification.""" ; ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/sss/psisearch/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -387240,7 +407641,7 @@ High-accuracy predictor for mouse Ψ site identification.""" ; sc:url "http://www.ebi.ac.uk/Tools/webservices/services/sss/psisearch_rest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3314, edam:topic_3315 ; @@ -387256,7 +407657,7 @@ Psi4 is an open-source suite of ab initio quantum chemistry programs designed fo sc:url "https://github.com/psi4/psi4" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_2640, @@ -387284,7 +407685,7 @@ Psi4 is an open-source suite of ab initio quantum chemistry programs designed fo biotools:primaryContact "Nuno Agostinho" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -387304,7 +407705,7 @@ Psi4 is an open-source suite of ab initio quantum chemistry programs designed fo biotools:primaryContact "Paul Shannon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0128 ; @@ -387320,7 +407721,7 @@ Psi4 is an open-source suite of ab initio quantum chemistry programs designed fo sc:url "http://www.ebi.ac.uk/Tools/webservices/psicquic/view/home.xhtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2885, @@ -387336,7 +407737,7 @@ Psi4 is an open-source suite of ab initio quantum chemistry programs designed fo sc:url "https://www.uea.ac.uk/computing/psiko" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0121, @@ -387354,7 +407755,7 @@ Prototype work for a unified API for writing PSIMS standardized XML documents, c sc:url "https://github.com/mobiusklein/psims" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -387376,7 +407777,7 @@ Prototype work for a unified API for writing PSIMS standardized XML documents, c sc:url "http://psindb.itk.ppke.hu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170, @@ -387394,7 +407795,7 @@ Prototype work for a unified API for writing PSIMS standardized XML documents, c biotools:primaryContact "Davide Risso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0623, @@ -387415,14 +407816,12 @@ Prototype work for a unified API for writing PSIMS standardized XML documents, c a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1544" ; - sc:name "Ramachandran plot" ; - sc:sameAs "http://edamontology.org/data_1544" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1544" ; + sc:name "Ramachandran plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation , @@ -387452,7 +407851,7 @@ Prototype work for a unified API for writing PSIMS standardized XML documents, c sc:url "http://emboss.open-bio.org/rel/rel6/apps/psiphi.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -387475,7 +407874,7 @@ Prototype work for a unified API for writing PSIMS standardized XML documents, c biotools:primaryContact "psipred team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0128 ; sc:citation ; @@ -387490,7 +407889,7 @@ Prototype work for a unified API for writing PSIMS standardized XML documents, c sc:url "http://dip.doe-mbi.ucla.edu/dip/Main.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3047, edam:topic_3332 ; @@ -387510,7 +407909,7 @@ To install and use PSIXAS, you will need Psi4 already installed on your computer sc:url "https://github.com/Masterluke87/psixas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0140, @@ -387530,7 +407929,7 @@ To install and use PSIXAS, you will need Psi4 already installed on your computer sc:url "https://github.com/RJamali/PSL-Recommender" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3489 ; @@ -387543,7 +407942,7 @@ To install and use PSIXAS, you will need Psi4 already installed on your computer sc:url "http://murphylab.web.cmu.edu/services/PSLID/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0140, @@ -387557,10 +407956,10 @@ To install and use PSIXAS, you will need Psi4 already installed on your computer "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/pslpred/" . + sc:url "http://webs.iiitd.edu.in/raghava/pslpred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099 ; @@ -387574,7 +407973,7 @@ To install and use PSIXAS, you will need Psi4 already installed on your computer sc:url "http://homepage.cs.latrobe.edu.au/ypchen/psmalign/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194 ; sc:citation ; @@ -387587,7 +407986,7 @@ To install and use PSIXAS, you will need Psi4 already installed on your computer sc:url "https://github.com/lh3/psmc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -387603,7 +408002,7 @@ To install and use PSIXAS, you will need Psi4 already installed on your computer sc:url "http://zhaocenter.org/software/#Population_Genetics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3318, edam:topic_3382 ; @@ -387615,8 +408014,52 @@ To install and use PSIXAS, you will need Psi4 already installed on your computer sc:name "pSMLM" ; sc:url "https://github.com/HohlbeinLab/SMALL-LABS-pSMLM" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0659, + edam:topic_3512 ; + sc:citation , + "pubmed:35817303" ; + sc:description "Predicting snoRNA-disease association using matrix completion technique" ; + sc:featureList edam:operation_3359 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PSnoD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/linDing-groups/PSnoD" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0593, + edam:topic_0769, + edam:topic_2275, + edam:topic_2885 ; + sc:citation , + "pmcid:PMC8886843", + "pubmed:35227289" ; + sc:description "A database of mutated binding site protein-ligand complexes constructed using a multithreaded virtual screening workflow." ; + sc:featureList edam:operation_0331, + edam:operation_3431, + edam:operation_3899, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "PSnpBind" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://psnpbind.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0820, edam:topic_3474 ; @@ -387633,7 +408076,7 @@ Several computational approaches for predicting subcellular localization have be sc:url "http://ncrna-pred.com/psolocbact.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3293 ; sc:description "The PSODA project provides an open-source phylogenetic search tool that reads the same data file format as PAUP*" ; @@ -387645,8 +408088,31 @@ Several computational approaches for predicting subcellular localization have be sc:softwareVersion "0.96" ; sc:url "http://dna.cs.byu.edu/psoda/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_3170, + edam:topic_3300, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pubmed:34889887" ; + sc:description "A Feature Fusion Predictor for RNA Pseudouridine Sites with Particle Swarm Optimizer Based Feature Selection and Ensemble Learning Approach." ; + sc:featureList edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:name "PsoEL-PseU" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.xwanglab.com/PsoEL-PseU/Server" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -387664,7 +408130,7 @@ Several computational approaches for predicting subcellular localization have be sc:url "http://mizuguchilab.org/PSOPIA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -387681,7 +408147,7 @@ Several computational approaches for predicting subcellular localization have be sc:url "http://www.psort.org/psortb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -387702,7 +408168,7 @@ Several computational approaches for predicting subcellular localization have be biotools:primaryContact "PSORTdb Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0820, edam:topic_3174, @@ -387725,14 +408191,14 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3483" ; - sc:name "Spectrum" ; - sc:sameAs "http://edamontology.org/data_3483" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Mass spectrum" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3483" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Spectrum" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -387749,7 +408215,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:url "https://github.com/EMSL-Computing/PSpecteR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -387766,7 +408232,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:url "http://bioserver1.physics.iisc.ernet.in/psrna/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0154, @@ -387786,7 +408252,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0154, @@ -387807,8 +408273,37 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:url "http://omicslab.genetics.ac.cn/psRobot/" ; biotools:primaryContact "psRobot Support" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0659, + edam:topic_2275, + edam:topic_3047, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8979021", + "pubmed:35386297" ; + sc:description "A Web Server for Predicting the Regulation of miRNAs Expression by Small Molecules." ; + sc:featureList edam:operation_0463, + edam:operation_0478, + edam:operation_3792, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "PSRR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://rnadrug.shinyapps.io/PSRR/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0602, @@ -387824,7 +408319,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:url "http://www2.imperial.ac.uk/~gmontana/psrrr.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0130, @@ -387840,7 +408335,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:url "http://thomasgaillard.fr/pss/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0736, edam:topic_0820 ; @@ -387853,7 +408348,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:url "http://pss.sjtu.edu.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -387869,8 +408364,30 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:softwareHelp ; sc:url "http://zti.polsl.pl/dmrozek/science/pss-sql.htm" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0610, + edam:topic_0621, + edam:topic_3293 ; + sc:citation , + "pmcid:PMC8888259", + "pubmed:35261742" ; + sc:description "A new approach that integrates partner availability and phylogenetic diversity to quantify biotic specialization in ecological networks." ; + sc:featureList edam:operation_0323, + edam:operation_0326, + edam:operation_3947 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PSS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/cjpardodelahoz/pss" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0781, @@ -387890,14 +408407,13 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2978" ; - sc:name "Reaction data" ; - sc:sameAs "http://edamontology.org/data_2978" ] ; + sc:additionalType "http://edamontology.org/data_2978" ; + sc:name "Reaction data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2269, @@ -387917,8 +408433,33 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:url "http://mosaic.mpi-cbg.de/?q=downloads/stochastic_chemical_net" ; biotools:primaryContact "Rajesh Ramaswamy" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0154, + edam:topic_0166, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8977839", + "pubmed:35388370" ; + sc:description "A comprehensive R package for generating evolutionary-based descriptors of protein sequences from PSSM profiles." ; + sc:featureList edam:operation_0267, + edam:operation_0303, + edam:operation_2489, + edam:operation_3891, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "PSSMCOOL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/BioCool-Lab/PSSMCOOL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -387937,7 +408478,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz "Geng Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0160 ; @@ -387952,7 +408493,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:url "http://slim.ucd.ie/pssmsearch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -387975,7 +408516,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:url "https://github.com/massyzs/PSSP-MVIRT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814, @@ -387990,7 +408531,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:url "http://zhanglab.ccmb.med.umich.edu/PSSpred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382, edam:topic_3474 ; @@ -388008,7 +408549,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz biotools:primaryContact "Uri Manor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0157, @@ -388035,7 +408576,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:url "http://www.pssrd.info/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0199, @@ -388056,7 +408597,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz biotools:primaryContact "Hampapathalu A. Nagarajaram" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_0780, @@ -388073,7 +408614,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:url "https://plantgrn.noble.org/pssRNAit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0102, @@ -388094,7 +408635,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz biotools:primaryContact "pssrnaminer team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -388110,7 +408651,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:url "http://forensic.mc.ntu.edu.tw:9000/PSTRWeb/Default.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3174, @@ -388125,8 +408666,34 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:name "PStrain" ; sc:url "https://github.com/wshuai294/PStrain" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0601, + edam:topic_0634, + edam:topic_3315, + edam:topic_3474, + edam:topic_3510 ; + sc:citation , + "pmcid:PMC9170990", + "pubmed:35686053" ; + sc:description "Predicting Lysine Succinylation Sites in Proteins Based on Feature Fusion and Stacking Ensemble Algorithm." ; + sc:featureList edam:operation_0417, + edam:operation_3659, + edam:operation_3755 ; + sc:isAccessibleForFree true ; + sc:name "pSuc-FFSEA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bio.cangmang.xyz/pSuc-FFSEA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -388143,7 +408710,7 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:url "http://www.jci-bioinfo.cn/pSuc-Lys" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2814, @@ -388160,8 +408727,30 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:url "http://www.jci-bioinfo.cn/pSumo-CD" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3170, + edam:topic_3308, + edam:topic_3934 ; + sc:citation , + "pmcid:PMC9235474", + "pubmed:35758781" ; + sc:description "Supervised pseudotime analysis for time-series single-cell RNA-seq data." ; + sc:featureList edam:operation_0314, + edam:operation_3565, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "psupertime" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/wmacnair/psupertime" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2814, @@ -388177,45 +408766,25 @@ PSORT.org provides links to the PSORT family of programs for subcellular localiz sc:softwareHelp ; sc:url "http://psvs-1_5-dev.nesg.org/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3263, - edam:topic_3419 ; - sc:citation , - "pmcid:PMC4958002", - "pubmed:27547515" ; - sc:description """Acceptance of the German e-mental health portal www.psychenet.de. - -Jeder 3. Mensch wird einmal im Leben Psychisch krank. - -Es ist ein Ausdruck einer psychischen Anspannung, wie Verzweiflung, nichts mehr ertragen können und auch normale Portionen zu erbrechen. - -[…] und auch sehr unsicher war, sobald ich vor die Tür gegangen bin, mich nicht mehr wohl gefühlt habe""" ; - sc:featureList edam:operation_3435 ; - sc:name "psychenet" ; - sc:url "http://www.psychenet.de" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3154" ; - sc:name "Protein alignment" ; - sc:sameAs "http://edamontology.org/data_3154" ], + sc:additionalType "http://edamontology.org/data_3154" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ], + sc:additionalType "http://edamontology.org/data_0950" ; + sc:name "Mathematical model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2087" ; - sc:name "Molecular property" ; - sc:sameAs "http://edamontology.org/data_2087" ], + sc:additionalType "http://edamontology.org/data_2087" ; + sc:name "Molecular property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -388235,7 +408804,7 @@ Es ist ein Ausdruck einer psychischen Anspannung, wie Verzweiflung, nichts mehr sc:url "http://psychoprot.epfl.ch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3474, edam:topic_3500 ; @@ -388248,7 +408817,7 @@ Es ist ein Ausdruck einer psychischen Anspannung, wie Verzweiflung, nichts mehr sc:url "https://github.com/murraylab/PsychRNN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_0769, @@ -388262,7 +408831,7 @@ Es ist ein Ausdruck einer psychischen Anspannung, wie Verzweiflung, nichts mehr biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -388278,7 +408847,7 @@ Es ist ein Ausdruck einer psychischen Anspannung, wie Verzweiflung, nichts mehr sc:url "http://www.psygenet.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -388297,7 +408866,7 @@ Es ist ein Ausdruck einer psychischen Anspannung, wie Verzweiflung, nichts mehr biotools:primaryContact "Alba Gutierrez-Sacristan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -388316,7 +408885,7 @@ Es ist ein Ausdruck einer psychischen Anspannung, wie Verzweiflung, nichts mehr sc:url "http://bioinformatics.albany.edu/~ptarget" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -388340,7 +408909,7 @@ Es ist ein Ausdruck einer psychischen Anspannung, wie Verzweiflung, nichts mehr "Diana Le Duc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -388359,7 +408928,7 @@ Es ist ein Ausdruck einer psychischen Anspannung, wie Verzweiflung, nichts mehr biotools:primaryContact "Semen O. Yesylevskyy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -388375,7 +408944,7 @@ Es ist ein Ausdruck einer psychischen Anspannung, wie Verzweiflung, nichts mehr sc:url "http://www.jurgott.org/linkage/PTest.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -388400,7 +408969,7 @@ Secondary structure-based protein topologies are represented uniquely as undirec "Tim Schaefer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -388426,7 +408995,7 @@ Secondary structure-based protein topologies are represented uniquely as undirec "Daogang Guan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0601, @@ -388446,7 +409015,7 @@ Secondary structure-based protein topologies are represented uniquely as undirec biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154, @@ -388464,8 +409033,50 @@ Secondary structure-based protein topologies are represented uniquely as undirec sc:url "http://genes.toronto.edu/PTMClust/" ; biotools:primaryContact "Prof. Brendan Frey" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0091 ; + sc:citation ; + sc:description "PTMCode is a resource of known and predicted functional associations between protein post-translational modifications (PTMs) within and between interacting proteins. It currently contains 316,546 modified sites from 69 different PTM types which are also propagated through ortholgs between 19 different eukaryotic species. A total of 1.6 million sites and 17 million functional associations more than 100,000 proteins can currently be explored." ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-SA-3.0" ; + sc:name "PTMCode" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://ptmcode.embl.de/" ; + biotools:primaryContact . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0130, + edam:topic_0176, + edam:topic_0593, + edam:topic_0601, + edam:topic_2229 ; + sc:citation , + "pubmed:34643234" ; + sc:description "Predict the impact of post-translation modification on protein dynamics based on molecular dynamic simulation" ; + sc:featureList edam:operation_0244, + edam:operation_0417, + edam:operation_2476, + edam:operation_3755 ; + sc:isAccessibleForFree true ; + sc:name "PTMdyna" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://ccbportal.com/PTMdyna" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -388482,14 +409093,14 @@ Secondary structure-based protein topologies are represented uniquely as undirec a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -388506,7 +409117,7 @@ Secondary structure-based protein topologies are represented uniquely as undirec sc:url "http://tools.proteomecenter.org/wiki/index.php?title=Software:TPP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0601, edam:topic_0634, @@ -388528,7 +409139,7 @@ Protein post-translational modifications (PTMs) is one of the most important reg sc:url "http://ptmsnp.renlab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3520 ; @@ -388545,7 +409156,7 @@ Protein post-translational modifications (PTMs) is one of the most important reg biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -388565,8 +409176,30 @@ Protein post-translational modifications (PTMs) is one of the most important reg sc:url "https://github.com/ByrumLab/PTMViz" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0659, + edam:topic_0780, + edam:topic_3170, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC8986922", + "pubmed:35462956" ; + sc:description "Plant transfer RNA-derived non-coding RNAs (tncRNAs) database." ; + sc:featureList edam:operation_0464, + edam:operation_2421, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:name "PtncRNAdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://nipgr.ac.in/PtncRNAdb" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -388589,7 +409222,7 @@ Protein post-translational modifications (PTMs) is one of the most important reg sc:url "http://github.com/CompbioLabUCF/PTNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Parallelised versions of various tools." ; @@ -388597,7 +409230,7 @@ Protein post-translational modifications (PTMs) is one of the most important reg sc:url "https://bioweb.pasteur.fr/packages/pack@ptools@0.99d" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -388615,7 +409248,7 @@ Protein post-translational modifications (PTMs) is one of the most important reg sc:url "http://disi.unitn.it/~passerini/software/PTRcombiner/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -388630,7 +409263,7 @@ Protein post-translational modifications (PTMs) is one of the most important reg sc:url "http://bioalgo.iit.cnr.it/index.php?pg=ptrs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -388645,18 +409278,18 @@ Protein post-translational modifications (PTMs) is one of the most important reg a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ], + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Statistical estimate score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0605, edam:topic_0781, @@ -388679,7 +409312,7 @@ Protein post-translational modifications (PTMs) is one of the most important reg sc:url "https://gitlab.pasteur.fr/vlegrand/ptv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3056 ; @@ -388697,7 +409330,7 @@ Genodive version 3.0 is a user-friendly program for the analysis of population g sc:url "http://www.patrickmeirmans.com/software/Home.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_2815, @@ -388711,7 +409344,7 @@ The integration of genetic information in current clinical routine has raised a sc:url "https://genodraw.com/authentication/login" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, @@ -388731,7 +409364,7 @@ GOMCL is a tool to cluster and extract summarized associations of Gene Ontology sc:url "http://www.lsugenomics.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -388753,7 +409386,7 @@ Glycosyltransferases (GTs), a large class of carbohydrate-active enzymes, adds g sc:url "https://www.biosino.org/gtdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0749, @@ -388769,7 +409402,7 @@ Glycosyltransferases (GTs), a large class of carbohydrate-active enzymes, adds g sc:url "http://agroda.gzu.edu.cn:9999/ccb/database/HerbiPAD/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -388793,7 +409426,7 @@ Hopper is a mathematically motivated sketching algorithm for single-cell data, w sc:url "http://hopper.csail.mit.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3315, @@ -388810,7 +409443,7 @@ HW_TEST, a software developed for Microsoft Windows that can be managed without sc:url "https://github.com/Lemes-RenanB/HardyWeinbergTesting" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3399, @@ -388827,7 +409460,7 @@ Understanding the ageing process is a very challenging problem for biologists. T sc:url "http://github.com/pablonsilva/FSforUncertainFeatureSpaces" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -388846,7 +409479,7 @@ Subtracting Summary Statistics of One or more Cohorts from Meta-GWAS Results.""" sc:url "https://cran.r-project.org/web/packages/MetaSubtract" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2640, @@ -388865,7 +409498,7 @@ The organotropism is the propensity of metastatic cancer cells to colonize prefe sc:url "http://www.introni.it/Metastasis/metastasis.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0654, @@ -388887,7 +409520,7 @@ MethylNet is a command line tool and python library that provides classes to han sc:url "https://github.com/Christensen-Lab-Dartmouth/MethylNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0659, @@ -388910,7 +409543,7 @@ git clone https://github.com/Gardner-BinfLab/ncVarDB.""" ; sc:url "https://github.com/Gardner-BinfLab/ncVarDB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -388930,7 +409563,7 @@ ntJoin takes a target assembly and one or more 'reference' assembly as input, an sc:url "https://github.com/bcgsc/ntjoin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0659, @@ -388951,7 +409584,7 @@ Nubeam is a reference-free approach to analyze short sequencing reads. It repres sc:url "https://github.com/daihang16/Nubeam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -388969,7 +409602,7 @@ Cell-Type-Specific Disease Association Testing in Bulk Omics Experiments.""" ; sc:url "https://github.com/fumi-github/omicwas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -388987,7 +409620,7 @@ Glioblastoma (GBM) is the most common malignant tumor of the central nervous sys sc:url "http://bioinfo.henu.edu.cn/GBM/GBMList.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, edam:topic_3315 ; @@ -389005,7 +409638,7 @@ Algorithms to calculate the hidden inputs of systems of differential equations. sc:url "https://cran.r-project.org/package=seeds" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -389025,7 +409658,7 @@ Algorithms to calculate the hidden inputs of systems of differential equations. sc:url "http://www.COVID-ONE.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -389049,7 +409682,7 @@ Cytomorph can also work as an in silico tester for other biological hypotheses t sc:url "https://github.com/AdrianA-T/cytomorph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -389068,7 +409701,7 @@ FMODB: The database of quantum mechanical data based on the FMO method.""" ; sc:url "https://drugdesign.riken.jp/FMODB/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3518 ; sc:description "PubArray is a desktop application that allows you to turn the analyzed results of your microarray experiment into a web application which is accessible via your browser." ; @@ -389081,7 +409714,7 @@ FMODB: The database of quantum mechanical data based on the FMO method.""" ; sc:url "http://churchill.jax.org/software/pubarray.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0625, @@ -389106,7 +409739,7 @@ Toyofumi Fujiwara, Yasunori Yamamoto, Jin-Dong Kim, Orion Buske, and Toshihisa T sc:url "https://pubcasefinder.dbcls.jp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0154, @@ -389128,7 +409761,7 @@ Toyofumi Fujiwara, Yasunori Yamamoto, Jin-Dong Kim, Orion Buske, and Toshihisa T biotools:primaryContact "PubChem Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation "pubmed:19498078" ; @@ -389143,7 +409776,7 @@ Toyofumi Fujiwara, Yasunori Yamamoto, Jin-Dong Kim, Orion Buske, and Toshihisa T biotools:primaryContact "PubChem Contact Page" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3314, @@ -389163,7 +409796,7 @@ Toyofumi Fujiwara, Yasunori Yamamoto, Jin-Dong Kim, Orion Buske, and Toshihisa T sc:url "https://periodic.lanl.gov/index.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0157, @@ -389186,7 +409819,7 @@ Toyofumi Fujiwara, Yasunori Yamamoto, Jin-Dong Kim, Orion Buske, and Toshihisa T biotools:primaryContact "PubCrawler Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -389203,28 +409836,8 @@ Toyofumi Fujiwara, Yasunori Yamamoto, Jin-Dong Kim, Orion Buske, and Toshihisa T sc:url "http://www.pubgene.org/" ; biotools:primaryContact "Coremine Support" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3418, - edam:topic_3419 ; - sc:citation , - "pmcid:PMC6679425", - "pubmed:31376832" ; - sc:description "> VERY_LOW CONFIDENCE! | Development of an online public health curriculum for medical students | The Public Health Commute is an online public health curriculum for medical students. Designed for Columbia College of Physicians and Surgeons but publicly available to everyone interested" ; - sc:name "public health commute" ; - sc:url "http://www.publichealthcommute.com" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3403 ; - sc:citation , - "pmcid:PMC6742597", - "pubmed:31528534" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'RoMEO', 'Citescore', 'emergency', 'Introduction:Finding' | A cross-sectional description of open access publication costs, policies and impact in emergency medicine and critical care journals | Emergency Medicine Cape Town" ; - sc:name "publication-search" ; - sc:url "http://www.emct.info/publication-search.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3383, edam:topic_3474 ; @@ -389237,27 +409850,8 @@ Toyofumi Fujiwara, Yasunori Yamamoto, Jin-Dong Kim, Orion Buske, and Toshihisa T sc:url "http://github.com/hms-idac/PuBliCiTy" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_3302, - edam:topic_3305, - edam:topic_3315, - edam:topic_3324 ; - sc:citation ; - sc:description """Stochastic challenges to interrupting helminth transmission. - -Predicting the effect of different programmes designed to control both the morbidity induced by helminth infections and parasite transmission is greatly facilitated by the use of mathematical models of transmission and control impact. In such models, it is essential to account for as many sources of uncertainty natural, or otherwise to ensure robustness in prediction and to accurately depict variation around an expected outcome. In this paper, we investigate how well the standard deterministic models match the predictions made using individual-based stochastic simulations. We also explore how well concepts which derive from deterministic models, such as ‘breakpoints’ in transmission, apply in the stochastic world. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'STH', 'helminth', 'transmission', 'inter-village'""" ; - sc:featureList edam:operation_2426, - edam:operation_3891 ; - sc:name "publicly-available" ; - sc:url "https://doi.org/10.1101/2019.12.17.19013490" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3068, @@ -389280,7 +409874,7 @@ Predicting the effect of different programmes designed to control both the morbi sc:url "http://www.ncbi.nlm.nih.gov/pubmed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3473 ; @@ -389295,7 +409889,7 @@ Predicting the effect of different programmes designed to control both the morbi sc:url "http://www.pubmed2ensembl.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0632, @@ -389316,28 +409910,48 @@ Predicting the effect of different programmes designed to control both the morbi biotools:primaryContact "NIHMS Help Desk", "PMC Help Desk" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_0769, + edam:topic_3303 ; + sc:citation , + "pmcid:PMC9252824", + "pubmed:35536289" ; + sc:description "An interactive web server for exploring biomedical entity relations in the biomedical literature." ; + sc:featureList edam:operation_0305, + edam:operation_2422, + edam:operation_3280, + edam:operation_3625, + edam:operation_3778 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "pubmedKB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.pubmedkb.cc" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0976" ; - sc:name "Identifier (by type of data)" ; - sc:sameAs "http://edamontology.org/data_0976" ], + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_0976" ; + sc:name "Identifier (by type of data)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2640 ; @@ -389353,7 +409967,7 @@ Predicting the effect of different programmes designed to control both the morbi biotools:primaryContact "Pubmeth Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, edam:topic_3303, @@ -389372,7 +409986,7 @@ Data-driven research in biomedical science requires structured, computable data. sc:url "http://www.ncbi.nlm.nih.gov/research/pubrecheck" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3068 ; @@ -389385,7 +409999,7 @@ Data-driven research in biomedical science requires structured, computable data. sc:url "http://www.pubrunner.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -389410,7 +410024,7 @@ Data-driven research in biomedical science requires structured, computable data. "Lukasz Jaroszewski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0218, @@ -389431,7 +410045,7 @@ Data-driven research in biomedical science requires structured, computable data. biotools:primaryContact "Zhiyong Lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -389453,7 +410067,7 @@ Data-driven research in biomedical science requires structured, computable data. biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3174, edam:topic_3673 ; @@ -389468,7 +410082,7 @@ Data-driven research in biomedical science requires structured, computable data. sc:url "https://github.com/COMBINE-lab/pufferfish/tree/cigar-strings" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_2258 ; sc:description "Interface to PubChem." ; @@ -389481,8 +410095,30 @@ Data-driven research in biomedical science requires structured, computable data. sc:softwareVersion "1" ; sc:url "http://pubchem.ncbi.nlm.nih.gov/pug_soap/pug_soap_help.html" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080 ; + sc:description "Software to extract sequence from a fasta or fastq. Also filter sequences by a minimum length or maximum length." ; + sc:featureList edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Pullseq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bcthomas/pullseq" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0099, @@ -389501,7 +410137,7 @@ Data-driven research in biomedical science requires structured, computable data. sc:url "http://www.kimlab.org/software/pulse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -389519,7 +410155,7 @@ Data-driven research in biomedical science requires structured, computable data. "Steven Shave" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0749, @@ -389536,7 +410172,7 @@ Data-driven research in biomedical science requires structured, computable data. biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0602, @@ -389554,7 +410190,7 @@ Data-driven research in biomedical science requires structured, computable data. "C. Dieterich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3512 ; @@ -389576,14 +410212,14 @@ Title: Identification of Transcriptional Dynamics using Pulse Models via 4su-Seq a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_1638" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -389605,7 +410241,7 @@ Title: Identification of Transcriptional Dynamics using Pulse Models via 4su-Seq biotools:primaryContact "Xuejun Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0781, edam:topic_3174 ; @@ -389617,7 +410253,7 @@ Title: Identification of Transcriptional Dynamics using Pulse Models via 4su-Seq sc:url "https://www.imicrobe.us/#/apps/puma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_3172, @@ -389640,10 +410276,10 @@ Untargeted metabolomics comprehensively characterizes small molecules and elucid a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -389666,7 +410302,7 @@ Untargeted metabolomics comprehensively characterizes small molecules and elucid sc:url "https://github.com/qlu-lab/PUMAS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2229, edam:topic_3047, @@ -389684,7 +410320,7 @@ Recent advances in imaging technology and fluorescent probes have made it possib sc:url "http://faculty.cas.usf.edu/gullah/Software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -389703,7 +410339,7 @@ Recent advances in imaging technology and fluorescent probes have made it possib sc:url "http://pupasuite.bioinfo.cipf.es" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -389720,7 +410356,7 @@ Recent advances in imaging technology and fluorescent probes have made it possib sc:url "http://pupasuite.bioinfo.cipf.es/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3304, @@ -389742,8 +410378,26 @@ Recent advances in imaging technology and fluorescent probes have made it possib sc:softwareHelp ; sc:url "https://github.com/openPupil/Open-PupilEXT" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0769 ; + sc:citation , + "pubmed:34874538" ; + sc:description "An open-source tool for processing pupillometry data." ; + sc:featureList edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "PuPl" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://github.com/kinleyid/pupl" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2640, @@ -389759,7 +410413,7 @@ Recent advances in imaging technology and fluorescent probes have made it possib sc:url "http://cran.r-project.org/package=PurBayes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3070 ; @@ -389776,7 +410430,7 @@ Recent advances in imaging technology and fluorescent probes have made it possib sc:url "http://www.bic.kyoto-u.ac.jp/pathway/PURE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -389797,7 +410451,7 @@ Recent advances in imaging technology and fluorescent probes have made it possib biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; sc:description "Identifying and removing haplotypic duplication in primary genome assemblies | haplotypic duplication identification tool | scripts/pd_config.py: script to generate a configuration file used by run_purge_dups.py | purge haplotigs and overlaps in an assembly based on read depth | Given a primary assembly pri_asm and an alternative assembly hap_asm (optional, if you have one), follow the steps shown below to build your own purge_dups pipeline, steps with same number can be run simultaneously. Among all the steps, although step 4 is optional, we highly recommend our users to do so, because assemblers may produce overrepresented seqeuences. In such a case, The final step 4 can be applied to remove those seqeuences" ; @@ -389809,7 +410463,7 @@ Recent advances in imaging technology and fluorescent probes have made it possib sc:url "https://github.com/dfguan/purge_dups" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -389829,7 +410483,7 @@ Recent advances in imaging technology and fluorescent probes have made it possib biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3056, @@ -389848,7 +410502,7 @@ Recent advances in imaging technology and fluorescent probes have made it possib sc:url "https://gitlab.com/elcortegano/purgeR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814, @@ -389865,7 +410519,7 @@ Recent advances in imaging technology and fluorescent probes have made it possib sc:url "http://bioinf.modares.ac.ir/software/PUTracer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -389881,7 +410535,7 @@ Recent advances in imaging technology and fluorescent probes have made it possib biotools:primaryContact "Liguo Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199 ; @@ -389901,7 +410555,7 @@ Recent advances in imaging technology and fluorescent probes have made it possib "Pierre R. Bushel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0199, @@ -389925,18 +410579,18 @@ A browser-based user interface that assists users in launching, managing, review a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3110" ; - sc:name "Raw microarray data" ; - sc:sameAs "http://edamontology.org/data_3110" ] ; + sc:additionalType "http://edamontology.org/data_3110" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Raw microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ], + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Processed microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518, @@ -389956,22 +410610,22 @@ A browser-based user interface that assists users in launching, managing, review a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0121, @@ -390000,7 +410654,7 @@ A browser-based user interface that assists users in launching, managing, review sc:url "http://compbio.cs.princeton.edu/pview/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0078, @@ -390020,7 +410674,7 @@ A browser-based user interface that assists users in launching, managing, review biotools:primaryContact "Renan Sauteraud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3510 ; @@ -390038,7 +410692,7 @@ A browser-based user interface that assists users in launching, managing, review "Kiran Mukhyala" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , "pubmed:33360984" ; @@ -390051,7 +410705,7 @@ We add a jupyter notebook visualization.ipynb for the keypoint detection pipelin sc:url "https://github.com/zju3dv/pvnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, edam:topic_0121, @@ -390072,7 +410726,7 @@ Five Species of malarial parasite (Plasmodium) are know to affect Humans, i.e., sc:url "http://www.scfbio-iitd.res.in/PvP01" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, edam:topic_3306, @@ -390091,7 +410745,7 @@ In this work, we developed a novel PVP predictor named PVPred-SCM which is an ef sc:url "http://camt.pythonanywhere.com/PVPred-SCM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -390114,7 +410768,7 @@ In this work, we developed a novel PVP predictor named PVPred-SCM which is an ef biotools:primaryContact "PVS Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3295, edam:topic_3337, @@ -390133,18 +410787,18 @@ In this work, we developed a novel PVP predictor named PVPred-SCM which is an ef a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0097, @@ -390165,7 +410819,7 @@ In this work, we developed a novel PVP predictor named PVPred-SCM which is an ef biotools:primaryContact "Robert Stojnic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0749, @@ -390183,7 +410837,7 @@ In this work, we developed a novel PVP predictor named PVPred-SCM which is an ef "Philipp Bucher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -390202,7 +410856,7 @@ In this work, we developed a novel PVP predictor named PVPred-SCM which is an ef biotools:primaryContact "Astrid Wachter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3295, @@ -390223,7 +410877,7 @@ In this work, we developed a novel PVP predictor named PVPred-SCM which is an ef biotools:primaryContact "Stefan Graw" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -390239,7 +410893,7 @@ In this work, we developed a novel PVP predictor named PVPred-SCM which is an ef sc:url "https://ulbbf.shinyapps.io/pwst/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation , "pubmed:31944957" ; @@ -390251,7 +410905,7 @@ As the videos captured by hand-held cameras are often perturbed by high-frequenc sc:url "https://github.com/mindazhao/PWStableNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2269, @@ -390274,7 +410928,7 @@ As the videos captured by hand-held cameras are often perturbed by high-frequenc sc:url "http://www.ccp4.ac.uk/jwc/Xhtml/PXImage/PXImage.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2814, @@ -390295,8 +410949,26 @@ As the videos captured by hand-held cameras are often perturbed by high-frequenc sc:softwareVersion "1" ; sc:url "http://www.ccp4.ac.uk/jwc/Xhtml/PXSim/PXSim.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0176, + edam:topic_0769 ; + sc:citation , + "pubmed:35621307" ; + sc:description "Python Software for Performing Hybrid Monte Carlo/Molecular Dynamics Simulations with GOMC and NAMD." ; + sc:featureList edam:operation_0244, + edam:operation_2476 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "py-MCMD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/GOMC-WSU/py-MCMD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , "pmcid:PMC6766978", @@ -390309,7 +410981,7 @@ As the videos captured by hand-held cameras are often perturbed by high-frequenc sc:url "http://github.com/Geod-Geom/py2DIC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2885, edam:topic_3175, @@ -390332,14 +411004,14 @@ Install the dependencies, then download and install pyCancerSig""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2877" ; - sc:name "Protein complex" ; - sc:sameAs "http://edamontology.org/data_2877" ] ; + sc:additionalType "http://edamontology.org/data_2877" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein complex" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3981" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0199, @@ -390362,7 +411034,7 @@ Install the dependencies, then download and install pyCancerSig""" ; sc:url "https://life.bsc.es/pid/pydockeneres" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3361 ; sc:citation ; sc:description """pyGAPS is a Python-Based Framework for Adsorption Isotherm Processing and Material Characterisation. @@ -390372,7 +411044,7 @@ Material characterisation through adsorption is a widely-used laboratory techniq sc:url "https://github.com/pauliacomi/pyGAPS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -390390,7 +411062,7 @@ Material characterisation through adsorption is a widely-used laboratory techniq biotools:primaryContact "Hannes L. Rost" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269 ; sc:citation ; @@ -390404,14 +411076,14 @@ Material characterisation through adsorption is a widely-used laboratory techniq a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3172 ; @@ -390430,7 +411102,7 @@ Material characterisation through adsorption is a widely-used laboratory techniq sc:url "https://github.com/pyQms/pyqms" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -390449,8 +411121,32 @@ Material characterisation through adsorption is a widely-used laboratory techniq sc:url "https://github.com/EPFL-LCSB/pytfa" ; biotools:primaryContact "Laboratory of Computational Systems Biotechnology" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0601, + edam:topic_3292, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9465115", + "pubmed:35944843" ; + sc:description "Rapid and In-Depth Coverage of the (Phospho-)Proteome With Deep Libraries and Optimal Window Design for dia-PASEF." ; + sc:featureList edam:operation_0417, + edam:operation_0479, + edam:operation_3755, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "py_diAID" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/MannLabs/pydiAID" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3303, edam:topic_3382 ; @@ -390462,7 +411158,7 @@ Material characterisation through adsorption is a widely-used laboratory techniq sc:url "https://ghammad.github.io/pyActigraphy/tutorials.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3168 ; @@ -390478,7 +411174,7 @@ Material characterisation through adsorption is a widely-used laboratory techniq biotools:primaryContact "Matthias Beyens" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0637, @@ -390498,7 +411194,7 @@ Material characterisation through adsorption is a widely-used laboratory techniq biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593 ; sc:citation ; sc:description """Extending the AtomDB Atomic Database to Model New Plasma Processes and Uncertainties. @@ -390511,7 +411207,7 @@ This code is designed to interact with the AtomDB database. It is in active deve sc:url "https://github.com/AtomDB/pyatomdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -390535,7 +411231,7 @@ This code is designed to interact with the AtomDB database. It is in active deve sc:url "https://github.com/lmmpf/PyAutoFEP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -390549,7 +411245,7 @@ This code is designed to interact with the AtomDB database. It is in active deve sc:url "https://github.com/mgymrek/pybamview" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3170, edam:topic_3940 ; @@ -390569,7 +411265,7 @@ Partly written in Cython for speed improvements.""" ; sc:url "https://github.com/TheJacksonLaboratory/pyBedGraph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:21949271" ; @@ -390584,7 +411280,7 @@ Partly written in Cython for speed improvements.""" ; biotools:primaryContact "GitHub Issues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -390607,7 +411303,7 @@ Partly written in Cython for speed improvements.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_0749, @@ -390623,7 +411319,7 @@ PyBindingCurve is a Python package for simulation, plotting and fitting of exper sc:url "https://github.com/stevenshave/pybindingcurve" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0092, @@ -390645,7 +411341,7 @@ PyBindingCurve is a Python package for simulation, plotting and fitting of exper biotools:primaryContact "Dong-Sheng Cao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3300, edam:topic_3335, edam:topic_3474 ; @@ -390662,7 +411358,7 @@ Any interested researcher can obtain PyBioS free of charge upon request to the e sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=32866762" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, edam:topic_3315 ; @@ -390681,19 +411377,22 @@ Tools for time-frequency analysis of noisy time series. The accompanying manuscr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3619" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; sc:author , ; + sc:citation , + "pmcid:PMC7812716", + "pubmed:33459761" ; sc:description "From a list of genes, pyBRAvo produces upstream regulation or signaling networks. pyBRAvo internally leverages the BioPAX ontolgy, the PathwayCommons knowledge graph, and the SPARQL semantic web query language. pyBRAvo can be used through either a Jupyter notebook, or a command line interface." ; sc:featureList edam:operation_3929 ; sc:isAccessibleForFree true ; @@ -390705,7 +411404,7 @@ Tools for time-frequency analysis of noisy time series. The accompanying manuscr biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3300, edam:topic_3304, @@ -390725,7 +411424,7 @@ Pycabnn (Python tool for Constructing an Anatomical Basis of a Neural Network; p sc:url "https://github.com/CNS-oist/pycabnn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3047, edam:topic_3382 ; @@ -390737,7 +411436,7 @@ Pycabnn (Python tool for Constructing an Anatomical Basis of a Neural Network; p sc:url "https://github.com/hema-ted/pycdft" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -390752,7 +411451,7 @@ Pycabnn (Python tool for Constructing an Anatomical Basis of a Neural Network; p sc:url "https://github.com/biomathman/pycellerator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2258 ; sc:author "Stanislav Geidl" ; @@ -390766,7 +411465,7 @@ Pycabnn (Python tool for Constructing an Anatomical Basis of a Neural Network; p biotools:primaryContact "Stanislav Geidl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0092, edam:topic_1317, @@ -390783,7 +411482,7 @@ Pycabnn (Python tool for Constructing an Anatomical Basis of a Neural Network; p "Jean-Didier Maréchal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, edam:topic_2269, @@ -390801,7 +411500,7 @@ PyClone-VI is a fast method for inferring clonal population structure.""" ; sc:url "https://github.com/Roth-Lab/pyclone-vi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation ; @@ -390817,7 +411516,7 @@ PyClone-VI is a fast method for inferring clonal population structure.""" ; biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, edam:topic_3518 ; @@ -390833,7 +411532,7 @@ pyComBat is a Python 3 implementation of ComBat, one of the most widely used too sc:url "https://github.com/epigenelabs/pyComBat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0130, @@ -390855,7 +411554,7 @@ pyconsFold require a working installation of CNS. This needs to be done manually sc:url "https://github.com/johnlamb/pyconsfold" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0128, @@ -390872,7 +411571,7 @@ pyconsFold require a working installation of CNS. This needs to be done manually biotools:primaryContact "Maximilian Scheurer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3070, @@ -390887,7 +411586,7 @@ pyconsFold require a working installation of CNS. This needs to be done manually sc:url "https://github.com/pyControl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -390901,8 +411600,22 @@ pyconsFold require a working installation of CNS. This needs to be done manually sc:name "PyConvU-Net" ; sc:url "https://github.com/StevenAZy/PyConvU-Net" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_3168, + edam:topic_3572 ; + sc:description "PycoQC computes metrics and generates interactive QC plots for Oxford Nanopore technologies sequencing data." ; + sc:featureList edam:operation_2238, + edam:operation_3218 ; + sc:license "GPL-3.0" ; + sc:name "pycoQC" ; + sc:softwareVersion "2.5.2" ; + sc:url "https://a-slide.github.io/pycoQC/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -390918,7 +411631,7 @@ pyconsFold require a working installation of CNS. This needs to be done manually biotools:primaryContact "Ciaran Welsh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0621, edam:topic_3385, @@ -390945,7 +411658,7 @@ This package contains Python scripts applying the PyCurv package and combining d sc:url "https://github.com/kalemaria/pycurv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0099, edam:topic_0623, @@ -390964,26 +411677,28 @@ pydca is Python implementation of direct coupling analysis (DCA) of residue coev sc:name "pydca" ; sc:url "https://github.com/KIT-MBS/pydca" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0099, - edam:topic_0623, - edam:topic_3170 ; - sc:citation , - "pubmed:31778142" ; - sc:description """A Comprehensive Software for Direct Coupling Analysis of RNA and Protein Sequences. - -Direct coupling analysis software for protein and RNA sequences. - -pydca is Python implementation of direct coupling analysis (DCA) of residue coevolution for protein and RNA sequence families using the mean-field and pseudolikelihood maximization algorithms. Given multiple sequence alignment (MSA) files in FASTA format, pydca computes the coevolutionary scores of pairs of sites in the alignment. In addition, when an optional file containing a reference sequence is supplied, scores corresponding to pairs of sites of this reference sequence are computed by mapping the reference sequence to the MSA. The software provides command line utilities or it can be used as a library""" ; - sc:featureList edam:operation_0337, - edam:operation_2422, - edam:operation_3192 ; - sc:license "MIT" ; - sc:name "pydca_autogenerated" ; - sc:url "https://github.com/KIT-MBS/pydca" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0769, + edam:topic_3444 ; + sc:citation ; + sc:description "A Pythonic Implementation of the DESIGNER Pipeline for Diffusion Tensor and Diffusional Kurtosis Imaging." ; + sc:featureList edam:operation_3443, + edam:operation_3454, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "PyDesigner" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/m-ama/PyDesigner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, edam:topic_0203, @@ -391000,7 +411715,7 @@ PyDISH is a database of heme porphyrin structures and provides some analytical t sc:url "http://pydish.bio.info.hiroshima-cu.ac.jp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, @@ -391018,14 +411733,14 @@ PyDISH is a database of heme porphyrin structures and provides some analytical t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1756" ; - sc:name "Protein residue" ; - sc:sameAs "http://edamontology.org/data_1756" ] ; + sc:additionalType "http://edamontology.org/data_1756" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein residue" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2877" ; - sc:name "Protein complex" ; - sc:sameAs "http://edamontology.org/data_2877" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2877" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein complex" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082 ; sc:author ; @@ -391042,18 +411757,18 @@ PyDISH is a database of heme porphyrin structures and provides some analytical t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1459" ; - sc:name "Nucleic acid structure" ; - sc:sameAs "http://edamontology.org/data_1459" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1459" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Nucleic acid structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078 ; @@ -391072,14 +411787,13 @@ PyDISH is a database of heme porphyrin structures and provides some analytical t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; + sc:additionalType "http://edamontology.org/data_3786" ; + sc:name "Query script" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2877" ; - sc:name "Protein complex" ; - sc:sameAs "http://edamontology.org/data_2877" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2877" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein complex" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3306 ; @@ -391097,18 +411811,18 @@ PyDISH is a database of heme porphyrin structures and provides some analytical t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0937" ; - sc:name "Electron density map" ; - sc:sameAs "http://edamontology.org/data_0937" ], + sc:additionalType "http://edamontology.org/data_0937" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Electron density map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2877" ; - sc:name "Protein complex" ; - sc:sameAs "http://edamontology.org/data_2877" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2877" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein complex" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3332 ; sc:author , @@ -391132,14 +411846,14 @@ PyDISH is a database of heme porphyrin structures and provides some analytical t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2877" ; - sc:name "Protein complex" ; - sc:sameAs "http://edamontology.org/data_2877" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2877" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein complex" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3332 ; sc:author , @@ -391160,7 +411874,7 @@ PyDISH is a database of heme porphyrin structures and provides some analytical t sc:url "https://life.bsc.es/pid/pydockweb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3307, @@ -391176,7 +411890,7 @@ PyDISH is a database of heme porphyrin structures and provides some analytical t biotools:primaryContact "Carlos F Lopez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -391198,7 +411912,7 @@ PyDISH is a database of heme porphyrin structures and provides some analytical t sc:url "https://web.archive.org/web/20171201062820/http://www.ni.gsu.edu:80/~rclewley/PyDSTool/FrontPage.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3318, @@ -391215,7 +411929,7 @@ PyDISH is a database of heme porphyrin structures and provides some analytical t sc:url "https://github.com/laszukdawid/PyEMD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -391232,7 +411946,7 @@ PyDISH is a database of heme porphyrin structures and provides some analytical t sc:url "https://pythonhosted.org/pyfaidx/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -391248,7 +411962,7 @@ PyDISH is a database of heme porphyrin structures and provides some analytical t sc:url "https://github.com/brentp/pyfasta/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Python3 script to manipulate FASTA and FASTQ (and other format) files, plus API for developers" ; sc:featureList edam:operation_0363, edam:operation_3192, @@ -391258,7 +411972,7 @@ PyDISH is a database of heme porphyrin structures and provides some analytical t sc:url "https://github.com/sanger-pathogens/Fastaq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749, edam:topic_3168 ; @@ -391277,7 +411991,7 @@ All tools support for random access were used to perform benchmark.""" ; sc:url "https://pypi.org/project/pyfastx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3318 ; @@ -391292,7 +412006,7 @@ All tools support for random access were used to perform benchmark.""" ; sc:url "http://people.tuebingen.mpg.de/mueller-lab/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3314, edam:topic_3318, @@ -391310,7 +412024,7 @@ The development of PyFLOSIC started with the master's thesis of Lenz Fiedler. Ov sc:url "https://github.com/pyflosic/pyflosic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3510 ; @@ -391328,7 +412042,7 @@ The development of PyFLOSIC started with the master's thesis of Lenz Fiedler. Ov biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0199, @@ -391348,7 +412062,7 @@ The development of PyFLOSIC started with the master's thesis of Lenz Fiedler. Ov sc:url "https://github.com/leandroradusky/pyFoldX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3297, edam:topic_3315 ; @@ -391364,7 +412078,7 @@ Intented application is the acessible modelling of simple to medium complex biop sc:url "http://github.com/MicroPhen/pyFOOMB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3370, @@ -391380,7 +412094,7 @@ Intented application is the acessible modelling of simple to medium complex biop biotools:primaryContact "Alexander Bläßle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0166, edam:topic_3314, edam:topic_3315 ; @@ -391398,7 +412112,7 @@ PyGBe achieves both algorithmic and hardware acceleration. The solution algorith sc:url "http://pygbe.github.io/pygbe/docs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_3304, @@ -391414,7 +412128,7 @@ PyGBe achieves both algorithmic and hardware acceleration. The solution algorith sc:url "https://github.com/BrainsOnBoard/pygenn_paper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0769, edam:topic_3382 ; @@ -391433,7 +412147,7 @@ pyGenomeTracks aims to produce high-quality genome browser tracks that are highl sc:url "https://github.com/deeptools/pyGenomeTracks" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, edam:topic_2640, @@ -391453,7 +412167,7 @@ A simple Snakemake workflow to perform network analyses using the Python Geneset sc:url "http://github.com/stracquadaniolab/pygna" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2814, @@ -391469,7 +412183,7 @@ A simple Snakemake workflow to perform network analyses using the Python Geneset biotools:primaryContact "Oliver Koch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0605, edam:topic_3315, @@ -391486,8 +412200,19 @@ Graph Traversal Edit Distance (GTED) is a measure of distance (or dissimilarity) sc:name "PyGTED" ; sc:url "https://github.com/Ali-E/GTED" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:citation ; + sc:description "pyHCA and hcatk (HCA toolkit) are a python library and executable for the Hydrophobic Cluster Analysis of protein sequences. pyHCA implements various class and function for handling sequences and analyses them hcatk provides off the hands set of program to perform hydrophobic cluster analyses." ; + sc:isAccessibleForFree true ; + sc:license "CECILL-C" ; + sc:name "pyHCA" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/T-B-F/pyHCA/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0176, @@ -391505,7 +412230,7 @@ Abstract Hydrogen Deuterium Exchange Mass Spectrometry (HDX-MS) is a powerful te sc:url "https://github.com/Jhsmit/PyHDX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0202, @@ -391526,14 +412251,13 @@ Abstract Hydrogen Deuterium Exchange Mass Spectrometry (HDX-MS) is a powerful te a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, edam:topic_3474 ; @@ -391550,7 +412274,7 @@ Abstract Hydrogen Deuterium Exchange Mass Spectrometry (HDX-MS) is a powerful te sc:url "https://github.com/manuel-munoz-aguirre/PyHIST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2830, @@ -391571,7 +412295,7 @@ Abstract Hydrogen Deuterium Exchange Mass Spectrometry (HDX-MS) is a powerful te biotools:primaryContact "Yanhui Fan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:author "J. Gonzalez-Vallinas" ; @@ -391594,7 +412318,7 @@ Abstract Hydrogen Deuterium Exchange Mass Spectrometry (HDX-MS) is a powerful te biotools:primaryContact "Eduardo Eyras" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0749, edam:topic_2814 ; @@ -391612,7 +412336,7 @@ PyInKnife2 is a set of Python scripts to run an updated version of the PyInKnife sc:url "https://github.com/ELELAB/PyInKnife2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0091, edam:topic_0602 ; @@ -391634,7 +412358,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://pypi.python.org/pypi/pyiomica" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2830, edam:topic_3168, @@ -391652,7 +412376,7 @@ PyIR is a minimally-dependent high-speed wrapper for the IgBLAST immunoglobulin sc:url "http://github.com/crowelab/PyIR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3382, @@ -391673,7 +412397,7 @@ PyIR is a minimally-dependent high-speed wrapper for the IgBLAST immunoglobulin sc:url "https://bitbucket.org/rfg_lab/pyjamas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3372, edam:topic_3384, @@ -391693,7 +412417,7 @@ Transparent research in musculoskeletal imaging is fundamental to reliably inves sc:url "https://sbonaretti.github.io/pyKNEEr/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3315, @@ -391710,8 +412434,49 @@ Transparent research in musculoskeletal imaging is fundamental to reliably inves sc:url "https://github.com/Kzra/pykrev" ; biotools:primaryContact . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_3877" ; + sc:name "Structure" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2878" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structural motif" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Library", + "Script" ; + sc:applicationSubCategory edam:topic_0081, + edam:topic_0166, + edam:topic_0769, + edam:topic_1317, + edam:topic_3315, + edam:topic_3332, + edam:topic_3474 ; + sc:author ; + sc:citation , + "pmcid:PMC8685811", + "pubmed:34930115" ; + sc:description "Python-C Parallel KVFinder (pyKVFinder) is an efficient and integrable Python package for biomolecular cavity detection and characterization in data science. Besides conventional cavity properties such as volume and area, which are stored as Python dictionaries, pyKVFinder computes cavity depth and hydropathy. Similar to cavity points, these spatial and physicochemical properties are stored as Python ndarrays and can be visualized using Python molecular visualization widgets. In general, pyKVFinder is designed for efficient scripting routines built on easy-to-handle data structures, such as Python dictionaries and NumPy N-dimensional arrays (ndarrays), and can be building blocks for data science and drug design applications." ; + sc:featureList edam:operation_0250, + edam:operation_2483, + edam:operation_2575, + edam:operation_3351 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "pyKVFinder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:provider ; + sc:softwareHelp ; + sc:url "https://github.com/LBC-LNBio/pyKVFinder" ; + biotools:primaryContact , + . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3516, @@ -391729,7 +412494,7 @@ pip3 install -r requirements.txt.""" ; sc:url "https://github.com/smetam/pylae" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0593 ; sc:citation ; @@ -391745,14 +412510,14 @@ pip3 install -r requirements.txt.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2024" ; - sc:name "Enzyme kinetics data" ; - sc:sameAs "http://edamontology.org/data_2024" ] ; + sc:additionalType "http://edamontology.org/data_2024" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Enzyme kinetics data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_2060" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0821, edam:topic_3292, @@ -391771,8 +412536,48 @@ pip3 install -r requirements.txt.""" ; sc:url "https://github.com/gadorlhiac/PyLDM" ; biotools:primaryContact "Jasper J. van Thor" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3393, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9069689", + "pubmed:35427133" ; + sc:description "A Machine Learning Framework for Long-Term Groundwater Contamination Monitoring Strategies." ; + sc:featureList edam:operation_3659, + edam:operation_3891, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PyLEnM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://pypi.org/project/pylenm/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_3366, + edam:topic_3572 ; + sc:citation , + "pubmed:35561174" ; + sc:description "Scalable single-cell multi-omic data integration in Python." ; + sc:featureList edam:operation_2436 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "PyLiger" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/welch-lab/pyliger" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0166, @@ -391797,7 +412602,7 @@ pip3 install -r requirements.txt.""" ; sc:url "https://github.com/wlsong/PyLipID" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2640, @@ -391813,7 +412618,7 @@ pip3 install -r requirements.txt.""" ; sc:url "https://cbcl.ics.uci.edu//doku.php/software#pyloh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0202, @@ -391837,14 +412642,12 @@ pip3 install -r requirements.txt.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:name "Structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Suite", @@ -391863,7 +412666,7 @@ pip3 install -r requirements.txt.""" ; biotools:primaryContact "Pau Andrio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, edam:topic_3517 ; @@ -391878,7 +412681,7 @@ pip3 install -r requirements.txt.""" ; sc:url "https://pymeshsim.readthedocs.io/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3295, edam:topic_3518 ; @@ -391892,7 +412695,7 @@ pip3 install -r requirements.txt.""" ; sc:url "https://github.com/Christensen-Lab-Dartmouth/PyMethylProcess" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, edam:topic_3382 ; @@ -391907,7 +412710,7 @@ Localization-based super-resolution microscopy techniques such as PALM, STORM, a sc:url "https://python-microscopy.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3384, edam:topic_3452, @@ -391925,7 +412728,7 @@ pymia is an open-source Python (py) package for deep learning-based medical imag sc:url "https://github.com/rundherum/pymia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -391943,7 +412746,7 @@ pymia is an open-source Python (py) package for deep learning-based medical imag sc:url "http://schubert.bio.uniroma1.it/pymod/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, @@ -391960,7 +412763,7 @@ pymia is an open-source Python (py) package for deep learning-based medical imag sc:url "http://www.pymol.org/pymol" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3306, edam:topic_3382 ; @@ -391977,40 +412780,61 @@ The repository pymolschortucts contains a collection of shortcuts that are loade sc:name "PyMOL" ; sc:url "http://github.com/MooersLab/pymolshortcuts" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3179, + edam:topic_3299, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8591031", + "pubmed:34790108" ; + sc:description "The \"Python Modular Neural Network Toolbox\" allows you to create neuron groups, define their behaviour and connect them with synapse groups." ; + sc:featureList edam:operation_0337, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "PymoNNto" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/trieschlab/PymoNNto" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Peptide mass fingerprint" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -392032,7 +412856,7 @@ The repository pymolschortucts contains a collection of shortcuts that are loade sc:url "https://code.google.com/p/pyms/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3172 ; sc:description "Tool that adds more annotations (e.g. SMILES, InChI, CAS number) to MSP files." ; @@ -392043,7 +412867,7 @@ The repository pymolschortucts contains a collection of shortcuts that are loade sc:url "https://github.com/RECETOX/pyMSPannotator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3070, @@ -392059,14 +412883,14 @@ The repository pymolschortucts contains a collection of shortcuts that are loade a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -392086,16 +412910,37 @@ The repository pymolschortucts contains a collection of shortcuts that are loade sc:url "http://mmb.irbbarcelona.org/PMut/pymut" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2269, + edam:topic_3304, + edam:topic_3474 ; + sc:citation ; + sc:description "PyMVPD is a Python-based toolbox to model the multivariate interactions between brain regions using fMRI data." ; + sc:featureList edam:operation_3659, + edam:operation_3891, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PyMVPD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/sccnlab/PyMVPD.git" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3520 ; sc:citation "pubmed:22302572", @@ -392113,7 +412958,7 @@ The repository pymolschortucts contains a collection of shortcuts that are loade sc:url "http://pymzml.github.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, edam:topic_3384, @@ -392140,7 +412985,7 @@ This respository contains representative data from GE, Siemens, and Philips scan sc:url "https://github.com/jeffmacinnes/pyneal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091 ; @@ -392157,7 +413002,7 @@ This respository contains representative data from GE, Siemens, and Philips scan sc:url "http://pyntacle.css-mendel.it/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0176, edam:topic_2229, @@ -392177,7 +413022,7 @@ A user ready, well documented software package PyOIF contains an implementation sc:url "https://github.com/icimrak/espresso/releases/tag/pyoif-v2.0" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3382 ; sc:citation , @@ -392200,7 +413045,7 @@ Example data, notebooks and scripts for demonstrating features of OMEROConnect a sc:url "https://github.com/SynthSys/pyOmeroUpload" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -392220,7 +413065,7 @@ Example data, notebooks and scripts for demonstrating features of OMEROConnect a "Marieke L. Kuijjer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -392238,7 +413083,7 @@ Example data, notebooks and scripts for demonstrating features of OMEROConnect a sc:url "https://github.com/williamgilpin/pypdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0154, @@ -392260,7 +413105,7 @@ Example data, notebooks and scripts for demonstrating features of OMEROConnect a sc:url "https://github.com/bigbio/py-pgatk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2828, edam:topic_3385, @@ -392281,7 +413126,7 @@ Example data, notebooks and scripts for demonstrating features of OMEROConnect a sc:url "https://gitlab.in2p3.fr/mlanger/pyPhase" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0625, edam:topic_3382, @@ -392297,8 +413142,27 @@ A python toolbox for phenotype analysis of arrayed microbial colonies written by sc:name "pyphe" ; sc:url "http://www.github.com/Bahler-Lab/pyphe" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0625, + edam:topic_3384, + edam:topic_3517 ; + sc:citation , + "pubmed:34981404" ; + sc:description "A Phenome-Disease Association Tool for Electronic Medical Record Analysis." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "pyPheWAS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://pyphewas.readthedocs.io/en/latest/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, edam:topic_3303, @@ -392316,7 +413180,7 @@ A python module for flexible Poisson-Boltzmann based pKa calculations with proto sc:url "https://github.com/mms-fcul/PypKa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0128, @@ -392333,7 +413197,7 @@ A python module for flexible Poisson-Boltzmann based pKa calculations with proto sc:url "https://code.google.com/p/pyplif/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0780, edam:topic_2275, @@ -392353,7 +413217,7 @@ The current version only support the Sybil mol2 format, but it is planned.""" ; sc:url "https://github.com/radifar/PyPLIF-HIPPOS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0769, @@ -392371,7 +413235,7 @@ The current version only support the Sybil mol2 format, but it is planned.""" ; sc:url "https://pypi.org/project/pyplr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3068, @@ -392392,7 +413256,7 @@ The current version only support the Sybil mol2 format, but it is planned.""" ; sc:url "http://github.com/alfonsosemeraro/pyplutchik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3386, edam:topic_3500 ; @@ -392406,7 +413270,7 @@ Lateral flow Point-Of-Care Tests (POCTs) are a valuable tool for rapidly detecti sc:url "https://gitlab.com/csb.ethz/pypocquant/-/tree/master/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0769, @@ -392423,7 +413287,7 @@ Lateral flow Point-Of-Care Tests (POCTs) are a valuable tool for rapidly detecti biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -392445,8 +413309,29 @@ Lateral flow Point-Of-Care Tests (POCTs) are a valuable tool for rapidly detecti sc:softwareHelp ; sc:url "https://gitlab.com/Vlado_S/pyproga" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_0154, + edam:topic_2275 ; + sc:citation , + "pubmed:35065401" ; + sc:description "An easy to use GUI for comparative protein modeling." ; + sc:featureList edam:operation_0477, + edam:operation_2476, + edam:operation_4008, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "PyProtModel" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/msisakht/pyprotmodel.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -392462,8 +413347,50 @@ Lateral flow Point-Of-Care Tests (POCTs) are a valuable tool for rapidly detecti sc:url "http://dereneaton.com/software/pyrad/" ; biotools:primaryContact "Deren Eaton" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3360, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8688400", + "pubmed:34950679" ; + sc:description "Intra-layer Pyramid-Scale Feature Aggregation Network for Retinal Vessel Segmentation." ; + sc:featureList edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Pyramid-Net" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/JerRuy/Pyramid-Net" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_3300, + edam:topic_3304, + edam:topic_3474, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9125180", + "pubmed:35615283" ; + sc:description "An Open-Source Python Library for Animal Behavior Analysis." ; + sc:featureList edam:operation_0337, + edam:operation_3432, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PyRAT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/pyratlib/pyrat" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0780, edam:topic_3071 ; @@ -392477,7 +413404,7 @@ Lateral flow Point-Of-Care Tests (POCTs) are a valuable tool for rapidly detecti sc:url "https://github.com/SouthGreenPlatform/PyRice" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3336, @@ -392496,7 +413423,7 @@ Lateral flow Point-Of-Care Tests (POCTs) are a valuable tool for rapidly detecti sc:url "https://github.com/cosconatilab/PyRMD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3572 ; @@ -392510,7 +413437,7 @@ Lateral flow Point-Of-Care Tests (POCTs) are a valuable tool for rapidly detecti sc:url "https://mulcyber.toulouse.inra.fr/plugins/mediawiki/wiki/pyrocleaner/index.php/Main_Page" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation ; @@ -392524,7 +413451,7 @@ Lateral flow Point-Of-Care Tests (POCTs) are a valuable tool for rapidly detecti biotools:primaryContact "HIV db support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3572 ; sc:citation "pubmed:19668203" ; @@ -392537,7 +413464,7 @@ Lateral flow Point-Of-Care Tests (POCTs) are a valuable tool for rapidly detecti biotools:primaryContact "Chris Quince" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3372 ; sc:citation ; @@ -392552,7 +413479,7 @@ Lateral flow Point-Of-Care Tests (POCTs) are a valuable tool for rapidly detecti sc:url "http://www.pyrosetta.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0632, @@ -392568,7 +413495,7 @@ Lateral flow Point-Of-Care Tests (POCTs) are a valuable tool for rapidly detecti sc:url "http://pyrotrimmer.kopri.re.kr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, edam:topic_3170, @@ -392593,8 +413520,29 @@ pyrpipe (Pronounced as "pyre-pipe") is a python package to easily develop RNA-Se sc:name "pyrpipe" ; sc:url "http://pyrpipe.rtfd.io" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2885, + edam:topic_3316, + edam:topic_3500 ; + sc:citation , + "pubmed:34729801" ; + sc:description "A python package for selective sweep detection and co-evolutionary gene cluster identification." ; + sc:featureList edam:operation_3196, + edam:operation_3432, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "pyRSD-CoEv" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/QianZiTang/pyRSD-CoEv" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -392613,7 +413561,7 @@ pyrpipe (Pronounced as "pyre-pipe") is a python package to easily develop RNA-Se sc:url "http://pyrx.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168 ; @@ -392630,7 +413578,7 @@ pyrpipe (Pronounced as "pyre-pipe") is a python package to easily develop RNA-Se sc:url "https://github.com/pysam-developers/pysam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3168 ; @@ -392646,14 +413594,13 @@ pyrpipe (Pronounced as "pyre-pipe") is a python package to easily develop RNA-Se a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3241" ; - sc:name "Kinetic model" ; - sc:sameAs "http://edamontology.org/data_3241" ] ; + sc:additionalType "http://edamontology.org/data_3241" ; + sc:encodingFormat "http://edamontology.org/format_2585" ; + sc:name "Kinetic model" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3869" ; - sc:name "Simulation" ; - sc:sameAs "http://edamontology.org/data_3869" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3869" ; + sc:name "Simulation" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259 ; sc:author , @@ -392677,7 +413624,7 @@ Computer modelling has become an integral tool in the analysis and understanding biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, @@ -392695,7 +413642,7 @@ Computer modelling has become an integral tool in the analysis and understanding biotools:primaryContact "Johann M Rohwer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3314, edam:topic_3372, edam:topic_3474 ; @@ -392706,7 +413653,7 @@ Computer modelling has become an integral tool in the analysis and understanding sc:url "http://www.PySCF.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, edam:topic_2229, @@ -392724,7 +413671,7 @@ Dashboard is available now for creating your own GRNs. Cell specific GRNs and ne sc:url "https://github.com/MingBit/PySCNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382 ; sc:citation , @@ -392738,7 +413685,7 @@ Image acquisition has greatly benefited from the automation of microscopes and h sc:url "https://pypi.org/project/pyscratch/#files" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3068, @@ -392758,7 +413705,7 @@ Image acquisition has greatly benefited from the automation of microscopes and h "Marco Galardini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2229, @@ -392779,7 +413726,7 @@ Image acquisition has greatly benefited from the automation of microscopes and h sc:url "https://github.com/nygctech/PySeq2500" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0154, edam:topic_3314, @@ -392797,7 +413744,7 @@ In PyMOL window, go to Plugin -> Plugin manager -> Install new plugin, choose Py sc:url "https://github.com/atfrank/PyShifts" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176 ; sc:citation ; sc:description "PySHS package is a python open source software which simulates the Second Harmonic Scattering (SHS) of different kind of colloidal nano-object." ; @@ -392807,7 +413754,7 @@ In PyMOL window, go to Plugin -> Plugin manager -> Install new plugin, choose Py sc:url "https://pypi.org/project/pyshs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593 ; sc:citation ; sc:description """Pre-operational Sentinel-3 Snow and Ice (SICE) Products. @@ -392820,7 +413767,7 @@ sice_f.py reads the SICE-generated S3 geotiff files, converts them into ascii fi sc:url "https://github.com/GEUS-SICE/pySICE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3332 ; @@ -392835,7 +413782,7 @@ sice_f.py reads the SICE-generated S3 geotiff files, converts them into ascii fi sc:url "https://pysimm.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0209, edam:topic_0769, @@ -392856,7 +413803,7 @@ sice_f.py reads the SICE-generated S3 geotiff files, converts them into ascii fi "Shao Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, edam:topic_0593, @@ -392873,7 +413820,7 @@ The ab initio multiple spawning (AIMS) method enables nonadiabatic quantum molec sc:url "https://github.com/blevine37/pySpawn17" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3168, @@ -392894,7 +413841,7 @@ The ab initio multiple spawning (AIMS) method enables nonadiabatic quantum molec biotools:primaryContact "Saket Choudhary" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0160, @@ -392912,8 +413859,24 @@ The ab initio multiple spawning (AIMS) method enables nonadiabatic quantum molec sc:url "https://github.com/budach/pysster" ; biotools:primaryContact "Jiecong Lin" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0160 ; + sc:citation , + "pubmed:34875008" ; + sc:description "Python library for attractor identification and control in Boolean networks." ; + sc:featureList edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "pystablemotifs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/jcrozum/pystablemotifs/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3047, @@ -392928,7 +413891,7 @@ The ab initio multiple spawning (AIMS) method enables nonadiabatic quantum molec biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3314, edam:topic_3474, @@ -392943,7 +413906,7 @@ The ab initio multiple spawning (AIMS) method enables nonadiabatic quantum molec sc:url "http://github.com/mfsjmenger/pysurf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0634, @@ -392962,7 +413925,7 @@ The ab initio multiple spawning (AIMS) method enables nonadiabatic quantum molec sc:url "https://github.com/ucl-pond/pySuStaIn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0821, @@ -392982,10 +413945,10 @@ The ab initio multiple spawning (AIMS) method enables nonadiabatic quantum molec a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -393004,7 +413967,7 @@ The ab initio multiple spawning (AIMS) method enables nonadiabatic quantum molec biotools:primaryContact "Issue tracker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2229, edam:topic_3318, @@ -393021,7 +413984,7 @@ pyTFM is a python package that allows you to analyze force generation and stress sc:url "https://pytfm.readthedocs.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Workflow" ; @@ -393041,7 +414004,7 @@ It is aimed at those that are building their own microscopes or want programmati sc:url "https://micronoxford.com/python-microscope-cockpit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3316, edam:topic_3474 ; @@ -393054,8 +414017,27 @@ It is aimed at those that are building their own microscopes or want programmati sc:softwareHelp ; sc:url "https://pytorch.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0634, + edam:topic_3068, + edam:topic_3974 ; + sc:citation , + "pmcid:PMC8977015", + "pubmed:35366804" ; + sc:description "A Python tool for calculating penetrance tables of high-order epistasis models." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "PyToxo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bglezseoane/pytoxo" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3382, edam:topic_3520 ; @@ -393078,7 +414060,7 @@ This involves extraction of parameters or meta-data related to blinks, fixations sc:url "https://pytrack-ntu.rtfd.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3047, @@ -393098,8 +414080,29 @@ This involves extraction of parameters or meta-data related to blinks, fixations "Windows" ; sc:url "https://github.com/skmin-lab/unixmd" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2269, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9044207", + "pubmed:35494872" ; + sc:description "A Python framework for remote photoplethysmography." ; + sc:featureList edam:operation_3695, + edam:operation_3891, + edam:operation_3907 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "pyVHR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://phuselab.github.io/pyVHR/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -393119,7 +414122,7 @@ This involves extraction of parameters or meta-data related to blinks, fixations biotools:primaryContact "Louis J. Taylor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3277, edam:topic_3382 ; @@ -393135,7 +414138,7 @@ Rare event methods applied to molecular simulations are growing in popularity, a sc:url "https://pyvisa.readthedocs.io/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3293, @@ -393152,7 +414155,7 @@ Rare event methods applied to molecular simulations are growing in popularity, a sc:url "https://github.com/sjspielman/pyvolve" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0078, @@ -393169,7 +414172,7 @@ Rare event methods applied to molecular simulations are growing in popularity, a sc:url "https://github.com/hiteshpatel379/PyWATER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593, edam:topic_2828, edam:topic_3452 ; @@ -393185,7 +414188,7 @@ PyXAS is a python library for fast 2D/3D XANES analysis with graphic user interf sc:url "https://github.com/gmysage/pyxas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3382, edam:topic_3520, @@ -393204,8 +414207,28 @@ PyXlinkViewer is a cross-platform plugin for the widely-used PyMOL molecular gra sc:name "PyXlinkViewer" ; sc:url "https://github.com/BobSchiffrin/PyXlinkViewer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_3304, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9161555", + "pubmed:35663407" ; + sc:description "An Open-Source Platform for Brain-Wide Neural Activity Imaging in Zebrafish." ; + sc:featureList edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "PyZebrascope" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/KawashimaLab/PyZebraScope_public" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3174, @@ -393225,7 +414248,7 @@ PyXlinkViewer is a cross-platform plugin for the widely-used PyMOL molecular gra sc:url "https://pzlast.riken.jp/meta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; sc:citation , @@ -393237,7 +414260,7 @@ PyXlinkViewer is a cross-platform plugin for the widely-used PyMOL molecular gra sc:url "https://github.com/zbzhzhy/PZRes-Net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3176 ; @@ -393251,7 +414274,7 @@ PyXlinkViewer is a cross-platform plugin for the widely-used PyMOL molecular gra sc:url "http://charite.github.io/Q/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0122, edam:topic_3512, @@ -393269,8 +414292,31 @@ PyXlinkViewer is a cross-platform plugin for the widely-used PyMOL molecular gra sc:url "http://charite.github.io/Q/" ; biotools:primaryContact "Peter Hansen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_2640, + edam:topic_3170, + edam:topic_3360, + edam:topic_3473 ; + sc:citation , + "pmcid:PMC8627836", + "pubmed:34819397" ; + sc:description "Smart Software for Assisting Oncology and Cancer Research." ; + sc:featureList edam:operation_0224, + edam:operation_2940, + edam:operation_2943, + edam:operation_3503 ; + sc:isAccessibleForFree true ; + sc:name "Q-omics" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://qomics.sookmyung.ac.kr" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3071, @@ -393285,7 +414331,7 @@ PyXlinkViewer is a cross-platform plugin for the widely-used PyMOL molecular gra sc:url "https://moldis.tifrh.res.in/data/rmq1d" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0637, edam:topic_3168, @@ -393305,7 +414351,7 @@ This is a QIIME 2 plugin. For details on QIIME 2, see https://qiime2.org""" ; sc:url "https://github.com/qiime2/q2-feature-classifier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3474, edam:topic_3697 ; @@ -393320,14 +414366,14 @@ This is a QIIME 2 plugin. For details on QIIME 2, see https://qiime2.org""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Nucleic acid sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697 ; @@ -393345,7 +414391,7 @@ This is a QIIME 2 plugin. For details on QIIME 2, see https://qiime2.org""" ; biotools:primaryContact "Adam Rivers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -393362,14 +414408,14 @@ This is a QIIME 2 plugin. For details on QIIME 2, see https://qiime2.org""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3712" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; @@ -393388,7 +414434,7 @@ This is a QIIME 2 plugin. For details on QIIME 2, see https://qiime2.org""" ; sc:url "https://github.com/PNNL-Comp-Mass-Spec/Q4SRM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3855 ; sc:citation , @@ -393409,7 +414455,7 @@ This is a QIIME 2 plugin. For details on QIIME 2, see https://qiime2.org""" ; "S. Fried" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -393431,7 +414477,7 @@ This is a QIIME 2 plugin. For details on QIIME 2, see https://qiime2.org""" ; biotools:primaryContact "Marcin Pawlowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_2640, @@ -393448,7 +414494,7 @@ To generate the results in our paper run run_QAFFP.py as indicated in the file l sc:url "https://github.com/isidroc/QAFFP_regression" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, edam:topic_3170, @@ -393468,7 +414514,7 @@ QAlign is a tool to apply quantization for nanopore long reads.""" ; sc:url "https://github.com/joshidhaivat/QAlign.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3384 ; sc:citation ; @@ -393485,7 +414531,7 @@ QAlign is a tool to apply quantization for nanopore long reads.""" ; biotools:primaryContact "Georgios Kalantzis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0769, edam:topic_0781, @@ -393505,7 +414551,7 @@ QAP (Quasispecies Analysis Package) is an integrated software to analyze viral q sc:url "https://github.com/mingjiewang/qap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0199, @@ -393523,7 +414569,7 @@ QAP (Quasispecies Analysis Package) is an integrated software to analyze viral q biotools:primaryContact "Benjamin J. Blencowe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -393543,8 +414589,21 @@ QAP (Quasispecies Analysis Package) is an integrated software to analyze viral q sc:url "http://webclu.bio.wzw.tum.de/qarip/" ; biotools:primaryContact "D. Frishman" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "Quality Assessment of Protein Structure" ; + sc:featureList edam:operation_2945 ; + sc:name "qaspro" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/qaspro/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -393566,10 +414625,10 @@ QAP (Quasispecies Analysis Package) is an integrated software to analyze viral q a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_3987" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:description """Qiime2 artifacts are structured compressed archives containing a dataset (e.g., FASTQ reads, representative sequences in FASTA format, a phylogenetic tree in Newick format, etc.) and an exhaustive set of metadata (including the command that generated it, information on the execution environment, citations on the used software, and all the metadata of the artifacts used to produce it). @@ -393586,7 +414645,7 @@ While artifacts can improve the shareability and reproducibility of Qiime workfl biotools:primaryContact "Andrea Telatin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0798, edam:topic_3169, @@ -393603,7 +414662,7 @@ Transposon calling cards is a genomic assay for identifying transcription factor sc:url "http://epigenomegateway.wustl.edu/browser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3383, @@ -393620,7 +414679,7 @@ Transposon calling cards is a genomic assay for identifying transcription factor "Tytus Bernas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -393635,7 +414694,7 @@ Transposon calling cards is a genomic assay for identifying transcription factor sc:url "http://computationalbioenergy.org/qc-chain.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Workflow" ; @@ -393657,13 +414716,13 @@ The primary aim of qc3C is to infer the proportion of "signal" within a Hi-C seq sc:url "https://github.com/cerebis/qc3C" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "QC Genomics is a public resource providing a central access to the largest collection of genomic data. It allows scientists to browse, visualize, compare, and analyze thousands of publicly available genomic data sets." ; sc:name "qcGenomics" ; sc:url "http://ngs-qc.org/qcgenomics/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3512 ; @@ -393676,7 +414735,7 @@ The primary aim of qc3C is to infer the proportion of "signal" within a Hi-C seq sc:url "http://www.gene-quantification.de/download.html#qcalculator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622 ; @@ -393689,7 +414748,7 @@ The primary aim of qc3C is to infer the proportion of "signal" within a Hi-C seq biotools:primaryContact "Richard Durbin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3316 ; sc:citation ; @@ -393702,7 +414761,7 @@ The primary aim of qc3C is to infer the proportion of "signal" within a Hi-C seq sc:url "http://compbio.sookmyung.ac.kr/~qcanvas/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3517, @@ -393719,7 +414778,7 @@ The primary aim of qc3C is to infer the proportion of "signal" within a Hi-C seq biotools:primaryContact "Ilja Nolte" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3168, @@ -393737,7 +414796,7 @@ The primary aim of qc3C is to infer the proportion of "signal" within a Hi-C seq biotools:primaryContact "Peter J. van der Most" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -393752,7 +414811,7 @@ The primary aim of qc3C is to infer the proportion of "signal" within a Hi-C seq sc:url "https://qcloud2.crg.eu/login" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196 ; @@ -393771,14 +414830,14 @@ The primary aim of qc3C is to infer the proportion of "signal" within a Hi-C seq a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091, @@ -393805,7 +414864,7 @@ The primary aim of qc3C is to infer the proportion of "signal" within a Hi-C seq biotools:primaryContact "Laurent Gatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0769, @@ -393823,7 +414882,7 @@ QCQuan is for "separating the wheat from the chaff", i.e. quickly assessing whet sc:url "http://qcquan.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2814 ; @@ -393840,7 +414899,7 @@ QCQuan is for "separating the wheat from the chaff", i.e. quickly assessing whet sc:url "http://prodata.swmed.edu/QCS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2269, edam:topic_3393 ; @@ -393853,7 +414912,7 @@ QCQuan is for "separating the wheat from the chaff", i.e. quickly assessing whet sc:url "https://github.com/Karena6688/qcSSMDhomo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:description "Basic quality control of gwas datasets. Compute per-sample and per-SNP summary statistics for a cohort, and use these to filter out samples and SNPs (either by removing them from the files or by writing exclusion lists). It can also be used to perform various subsetting and merging operations, and to manipulate sample information in preparation for association testing." ; @@ -393866,7 +414925,7 @@ QCQuan is for "separating the wheat from the chaff", i.e. quickly assessing whet sc:url "http://www.well.ox.ac.uk/~gav/qctool/#overview" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -393884,14 +414943,14 @@ QCQuan is for "separating the wheat from the chaff", i.e. quickly assessing whet a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3110" ; - sc:name "Raw microarray data" ; - sc:sameAs "http://edamontology.org/data_3110" ] ; + sc:additionalType "http://edamontology.org/data_3110" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Raw microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -393906,7 +414965,7 @@ QCQuan is for "separating the wheat from the chaff", i.e. quickly assessing whet sc:url "http://bioinformatics.intec.ugent.be/kmarchal/Supplementary_Information_Dhollander_2007/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3384, @@ -393923,7 +414982,7 @@ QCQuan is for "separating the wheat from the chaff", i.e. quickly assessing whet biotools:primaryContact "Sander Lamballais" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2814, edam:topic_3474 ; @@ -393939,10 +414998,10 @@ Protein model quality estimation, in many ways, informs protein structure predic a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0102 ; @@ -393961,7 +415020,7 @@ Protein model quality estimation, in many ways, informs protein structure predic sc:url "http://yanglab.nankai.edu.cn/QDistance" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -393981,7 +415040,7 @@ Protein model quality estimation, in many ways, informs protein structure predic biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, edam:topic_0654, @@ -394000,7 +415059,7 @@ R-loops are dynamic, co-transcriptional nucleic acid structures that facilitate sc:url "https://github.com/cimprichlab/crossley_et_al_2019" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -394018,7 +415077,7 @@ R-loops are dynamic, co-transcriptional nucleic acid structures that facilitate biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:description "A part of PLINK as a somewhat ad-hoc procedure to perform family-based tests of association with quantitative phenotypes." ; @@ -394032,7 +415091,7 @@ R-loops are dynamic, co-transcriptional nucleic acid structures that facilitate sc:url "https://www.cog-genomics.org/plink/1.9/fam_assoc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, edam:topic_0611, @@ -394053,7 +415112,7 @@ Electron density maps obtained from high-resolution X-ray diffraction data are a sc:url "https://github.com/ExcitedStates/qfit-3.0" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -394070,7 +415129,7 @@ Electron density maps obtained from high-resolution X-ray diffraction data are a sc:url "http://www.qgene.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, edam:topic_0602, @@ -394095,7 +415154,7 @@ The qgg package was developed based on the hypothesis that certain regions on th sc:url "http://psoerensen.github.io/qgg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0123 ; @@ -394114,7 +415173,7 @@ The qgg package was developed based on the hypothesis that certain regions on th biotools:primaryContact "GitHub Issues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0659, @@ -394136,7 +415195,7 @@ The qgg package was developed based on the hypothesis that certain regions on th biotools:primaryContact "Dr. Paramjeet Bagga" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157, @@ -394160,7 +415219,7 @@ The qgg package was developed based on the hypothesis that certain regions on th "Paramjeet Bagga" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, edam:topic_3055, @@ -394182,7 +415241,7 @@ QGS is a computer program to create genetic variables from SNP data. For every i sc:url "https://github.com/machine2learn/QGS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """Qiber3D is an open-source software package for the morphometric quantification of networks from 3D image stacks. Qiber3D combines the required tools for a complete analytical workflow, from the raw image to final measured values.""" ; sc:name "Qiber3D" ; @@ -394191,7 +415250,7 @@ Qiber3D combines the required tools for a complete analytical workflow, from the sc:url "https://github.com/theia-dev/Qiber3D" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3360, edam:topic_3384, @@ -394208,7 +415267,7 @@ Qiber3D combines the required tools for a complete analytical workflow, from the sc:url "https://qifp.stanford.edu/qifp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation ; @@ -394224,7 +415283,7 @@ Qiber3D combines the required tools for a complete analytical workflow, from the biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3174, @@ -394243,8 +415302,31 @@ Qiber3D combines the required tools for a complete analytical workflow, from the ; sc:url "https://qiime2.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0602, + edam:topic_3172, + edam:topic_3360, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9344843", + "pubmed:35731214" ; + sc:description "Identifying interactions in omics data for clinical biomarker discovery using symbolic regression." ; + sc:featureList edam:operation_3557, + edam:operation_3659, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-ND-4.0" ; + sc:name "QLattice" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/abzu-ai/QLattice-clinical-omics" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, edam:topic_3293 ; @@ -394260,7 +415342,7 @@ Amino acid substitution models play a crucial role in phylogenetic analyses. Max sc:url "http://www.iqtree.org/#download" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0769, edam:topic_3314, @@ -394276,7 +415358,7 @@ Effective core potentials (pseudopotentials) in formats suitable for QMCPACK and sc:url "https://qmcpack.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2815, @@ -394298,7 +415380,7 @@ Effective core potentials (pseudopotentials) in formats suitable for QMCPACK and biotools:primaryContact "Gabriel Studer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, edam:topic_3500 ; @@ -394319,7 +415401,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement sc:url "http://qmgr.hnnu.edu.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3314, @@ -394340,7 +415422,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement sc:url "http://apps.cprm.gov.br/qmin/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071, @@ -394356,7 +415438,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement sc:url "https://github.com/Tarostar/QMLGalaxyPortal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3306 ; @@ -394371,7 +415453,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement biotools:primaryContact "Marcelo C R Melo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0092, @@ -394387,7 +415469,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement sc:url "http://www.ccl.net/cca/software/MS-WIN95-NT/qmol/index.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -394410,7 +415492,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement "Vladimir Kuznetsov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3517, edam:topic_3572 ; @@ -394425,7 +415507,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement sc:url "http://qmsat.sourceforge.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -394441,7 +415523,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement sc:url "http://www.aps.uoguelph.ca/~msargol/qmsim/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3293, @@ -394457,7 +415539,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement sc:url "http://www.uea.ac.uk/computing/qnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -394474,7 +415556,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement sc:url "http://bioinformatics.math.chalmers.se/qnr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -394490,7 +415572,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement sc:url "http://www.cise.ufl.edu/~tamer/other_files/msa.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation "pubmed:18689821" ; @@ -394502,7 +415584,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement biotools:primaryContact "Gunnar Rätsch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3519 ; @@ -394521,22 +415603,22 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Processed microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -394561,7 +415643,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -394572,8 +415654,30 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement sc:softwareHelp ; sc:url "https://code.google.com/p/qpms9/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_0202, + edam:topic_3336, + edam:topic_3474 ; + sc:citation , + "pubmed:35007471" ; + sc:description "The main programmatic workflow to identify the bio-acitivity of a compound through AI and In-Silico methods" ; + sc:featureList edam:operation_3899, + edam:operation_3927, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "QPoweredCompound2DeNovoDrugPropMax" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bengeof/Compound2DeNovoDrugPropMax" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0749, @@ -394589,7 +415693,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0121, @@ -394602,8 +415706,31 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement sc:softwareHelp ; sc:url "http://sourceforge.net/projects/qprot/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_0601, + edam:topic_0780, + edam:topic_3068 ; + sc:citation , + "pmcid:PMC8728288", + "pubmed:34718741" ; + sc:description "An integrative database of quantitative post-translational modifications in plants." ; + sc:featureList edam:operation_0417, + edam:operation_3755, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "qPTMplants" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://qptmplants.omicsbio.info" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -394621,7 +415748,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -394638,8 +415765,33 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement sc:url "https://cran.r-project.org/web/packages/QRank/" ; biotools:primaryContact "Xiaoyu Song" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Script", + "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0203, + edam:topic_3519 ; + sc:citation "pubmed:35854213" ; + sc:description "qRAT is a R based standalone desktop application to automate the processing of raw Quantification Cycle (Cq) data files exported from virtually any qPCR instrument using well established and state-of-the-art statistical and graphical techniques. The purpose of this tool is to provide a comprehensive, straightforward, and easy-to-use solution for the relative quantification of RT-qPCR data that requires no programming knowledge or additional software installation." ; + sc:featureList edam:operation_0337, + edam:operation_2238, + edam:operation_2409, + edam:operation_2495, + edam:operation_3223, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "qRAT - qPCR relative expression analysis tool" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://www.uibk.ac.at/microbiology/services/qrat/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3071, @@ -394659,7 +415811,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement "Yun Li Statistical Genetics Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, @@ -394674,7 +415826,7 @@ please choose... Typical vertebrate arrangement Typical invertebrate arrangement biotools:primaryContact "Xianwen Ren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3335, edam:topic_3422, @@ -394695,8 +415847,31 @@ Welcome to the QRISK ® 2-2017 Web Calculator. You can use this calculator to wo sc:name "QRISK2" ; sc:url "https://qrisk.org/2017/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0097, + edam:topic_0099, + edam:topic_0749, + edam:topic_2814, + edam:topic_3170 ; + sc:citation , + "pubmed:35390152" ; + sc:description "A method for extracting secondary structural features of RNA via regression with biological activity." ; + sc:featureList edam:operation_0278, + edam:operation_0337, + edam:operation_0502, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "QRNAstruct" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/gterai/QRNAstruct" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -394716,7 +415891,7 @@ Welcome to the QRISK ® 2-2017 Web Calculator. You can use this calculator to wo biotools:primaryContact "Vince Buffalo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632 ; sc:description "Program for designing primers for real-time quantitative PCR assays." ; @@ -394728,8 +415903,31 @@ Welcome to the QRISK ® 2-2017 Web Calculator. You can use this calculator to wo sc:softwareVersion "1.2" ; sc:url "http://bioinfo.ut.ee/gwRTqPCR/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_2275, + edam:topic_2814, + edam:topic_3299, + edam:topic_3300 ; + sc:citation , + "pmcid:PMC8769216", + "pubmed:35071324" ; + sc:description "A Server to Predict and Analyze Protein Quaternary Structure." ; + sc:featureList edam:operation_0224, + edam:operation_0303, + edam:operation_0477, + edam:operation_3350 ; + sc:isAccessibleForFree true ; + sc:name "QSalignWeb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.QSalign.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0769, edam:topic_2258, @@ -394749,10 +415947,10 @@ There are two modules available in the software, i.e., 1) Model Development modu a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_1317 ; @@ -394769,7 +415967,7 @@ There are two modules available in the software, i.e., 1) Model Development modu biotools:primaryContact "Emmanuel Levy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0623, @@ -394788,7 +415986,7 @@ There are two modules available in the software, i.e., 1) Model Development modu biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -394811,7 +416009,7 @@ There are two modules available in the software, i.e., 1) Model Development modu sc:url "http://quorumpeps.ugent.be/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -394833,7 +416031,7 @@ There are two modules available in the software, i.e., 1) Model Development modu biotools:primaryContact "Matthias Lienhard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3169, @@ -394850,7 +416048,7 @@ There are two modules available in the software, i.e., 1) Model Development modu biotools:primaryContact "Contact" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3168 ; @@ -394863,7 +416061,7 @@ There are two modules available in the software, i.e., 1) Model Development modu sc:url "http://www.splashground.de/~andy/programs/qseq2fastq-andy/README.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_2815, @@ -394886,7 +416084,7 @@ There are two modules available in the software, i.e., 1) Model Development modu biotools:primaryContact "Jianjun Qiao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0769, edam:topic_3304, @@ -394906,7 +416104,7 @@ This repository contains the code and data used to process the reconstructions a sc:url "https://pennlinc.github.io/qsiprep_paper/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3316, @@ -394925,7 +416123,7 @@ This repository contains the code and data used to process the reconstructions a biotools:primaryContact "Ashley Wilton Stewart" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3934 ; sc:citation , @@ -394939,7 +416137,7 @@ Non-parametric dimensionality reduction techniques, such as t-distributed stocha sc:url "https://bitbucket.org/anthakki/qsne/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2229, @@ -394955,7 +416153,7 @@ Non-parametric dimensionality reduction techniques, such as t-distributed stocha biotools:primaryContact "I. I. Cissé" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation "pubmed:19239711" ; @@ -394970,7 +416168,7 @@ Non-parametric dimensionality reduction techniques, such as t-distributed stocha biotools:primaryContact "Mockler Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2259, @@ -394989,7 +416187,7 @@ Non-parametric dimensionality reduction techniques, such as t-distributed stocha biotools:primaryContact "Sukjoon YoonEmail author" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, edam:topic_3306 ; @@ -395004,7 +416202,7 @@ Non-parametric dimensionality reduction techniques, such as t-distributed stocha sc:url "https://github.com/rglez/QT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3303, @@ -395023,8 +416221,28 @@ Non-parametric dimensionality reduction techniques, such as t-distributed stocha sc:url "https://www.mathworks.com/matlabcentral/fileexchange/26432-qt-clustering-using-euclidean-distance-jackknife-correlation" ; biotools:primaryContact "Misha Koshelev" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0194, + edam:topic_0218, + edam:topic_3474 ; + sc:citation ; + sc:description "Quartet based gene tree imputation using deep learning improves phylogenomic analyses despite missing data." ; + sc:featureList edam:operation_0553, + edam:operation_3557, + edam:operation_3947 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "QT-GILD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/pythonLoader/QT-GILD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, edam:topic_3170 ; @@ -395039,7 +416257,7 @@ Non-parametric dimensionality reduction techniques, such as t-distributed stocha sc:url "https://github.com/goknurginer/qtQDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation ; @@ -395054,7 +416272,7 @@ Non-parametric dimensionality reduction techniques, such as t-distributed stocha sc:url "http://csg.sph.umich.edu/abecasis/qtdt/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -395079,7 +416297,7 @@ Non-parametric dimensionality reduction techniques, such as t-distributed stocha sc:url "https://qteller.maizegdb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269, @@ -395096,7 +416314,7 @@ Non-parametric dimensionality reduction techniques, such as t-distributed stocha sc:url "https://watson.hgen.pitt.edu/register/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3517 ; @@ -395118,7 +416336,7 @@ Non-parametric dimensionality reduction techniques, such as t-distributed stocha biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -395134,7 +416352,7 @@ Non-parametric dimensionality reduction techniques, such as t-distributed stocha sc:url "http://pages.stat.wisc.edu/~yandell/qtl/software/qtlbim/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, edam:topic_0625, @@ -395156,7 +416374,7 @@ This R package provides access to the Qtlizer web server. Qtlizer annotates list sc:url "https://bioconductor.org/packages/release/bioc/html/Qtlizer.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -395171,7 +416389,7 @@ This R package provides access to the Qtlizer web server. Qtlizer annotates list sc:url "http://ibi.zju.edu.cn/software/qtlmapper/index.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -395190,7 +416408,7 @@ This R package provides access to the Qtlizer web server. Qtlizer annotates list sc:url "http://ibi.zju.edu.cn/software/qtlnetwork/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -395208,7 +416426,7 @@ This R package provides access to the Qtlizer web server. Qtlizer annotates list "Olivier Delaneau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation ; @@ -395223,7 +416441,7 @@ This R package provides access to the Qtlizer web server. Qtlizer annotates list biotools:primaryContact "Richard Finkers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -395241,7 +416459,7 @@ This R package provides access to the Qtlizer web server. Qtlizer annotates list sc:url "http://ibi.zju.edu.cn/software/qtmodel/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0099, @@ -395259,7 +416477,7 @@ This R package provides access to the Qtlizer web server. Qtlizer annotates list sc:url "http://bioserv.mps.ohio-state.edu/QuaCRS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -395279,7 +416497,7 @@ This R package provides access to the Qtlizer web server. Qtlizer annotates list biotools:primaryContact "GitHub Issues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation ; @@ -395296,7 +416514,7 @@ This R package provides access to the Qtlizer web server. Qtlizer annotates list sc:url "http://www.iro.umontreal.ca/%7Ecsuros/quadgt/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0199, edam:topic_0749, @@ -395313,7 +416531,7 @@ Cancer is caused by genetic mutations, but not all somatic mutations in human DN sc:url "https://github.com/bokhariy/QuaDMutNetEx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -395335,7 +416553,7 @@ Cancer is caused by genetic mutations, but not all somatic mutations in human DN biotools:primaryContact "Danzhou Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -395358,14 +416576,14 @@ Cancer is caused by genetic mutations, but not all somatic mutations in human DN a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -395386,7 +416604,7 @@ Cancer is caused by genetic mutations, but not all somatic mutations in human DN biotools:primaryContact "Mike Jiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3572 ; sc:citation "pubmed:22914218" ; @@ -395401,7 +416619,7 @@ Cancer is caused by genetic mutations, but not all somatic mutations in human DN biotools:primaryContact "QualiMap Forum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3315, @@ -395418,7 +416636,7 @@ Cancer is caused by genetic mutations, but not all somatic mutations in human DN sc:url "http://indra.mullins.microbiol.washington.edu/quality/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -395436,7 +416654,7 @@ Cancer is caused by genetic mutations, but not all somatic mutations in human DN sc:url "http://sourceforge.net/projects/qualevaluato/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -395459,18 +416677,18 @@ Cancer is caused by genetic mutations, but not all somatic mutations in human DN a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -395489,7 +416707,7 @@ Cancer is caused by genetic mutations, but not all somatic mutations in human DN biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -395522,34 +416740,34 @@ An installer for all major platforms (Windows, OS X, Ubuntu, etc.) can be found a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3652" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3652" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -395566,7 +416784,7 @@ An installer for all major platforms (Windows, OS X, Ubuntu, etc.) can be found sc:url "http://sourceforge.net/projects/protms" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -395581,14 +416799,14 @@ An installer for all major platforms (Windows, OS X, Ubuntu, etc.) can be found a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Gene expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0091, @@ -395620,7 +416838,7 @@ An installer for all major platforms (Windows, OS X, Ubuntu, etc.) can be found "Miha Svalina" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3071, @@ -395636,7 +416854,7 @@ An installer for all major platforms (Windows, OS X, Ubuntu, etc.) can be found sc:url "https://github.com/dwaithe/quantifly" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, edam:topic_3315, @@ -395653,7 +416871,7 @@ QuantifyPolarity, is a free software, capable of quantifying planar polarity and sc:url "https://github.com/QuantifyPolarity/QuantifyPolarity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -395672,7 +416890,7 @@ QuantifyPolarity, is a free software, capable of quantifying planar polarity and biotools:primaryContact "Witold Dyrka" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053 ; @@ -395685,16 +416903,8 @@ QuantifyPolarity, is a free software, capable of quantifying planar polarity and sc:softwareHelp ; sc:url "https://sites.google.com/site/quantisnp/home" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Bioinformatics portal" ; - sc:applicationSubCategory edam:topic_2229 ; - sc:description "CD Genomics provides quantitative proteomics data analysis to help you explore the data information obtained by different protein quantification techniques" ; - sc:name "Quantitative Proteomics" ; - sc:url "https://bioinfo.cd-genomics.com/quantitative-proteomics.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3382, @@ -395715,7 +416925,7 @@ QuantifyPolarity, is a free software, capable of quantifying planar polarity and sc:url "https://github.com/Abdulk084/QuantitativeTox" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -395729,7 +416939,7 @@ QuantifyPolarity, is a free software, capable of quantifying planar polarity and sc:url "http://biostats.usc.edu/Quanto.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0769, @@ -395746,7 +416956,7 @@ Contribute to tachengxmu/QuantPipe development by creating an account on GitHub. sc:url "https://github.com/tachengxmu/QuantPipe/releases" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640 ; sc:citation ; @@ -395761,7 +416971,7 @@ Contribute to tachengxmu/QuantPipe development by creating an account on GitHub. sc:url "http://code.google.com/p/quantproreloaded/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -395781,7 +416991,7 @@ Contribute to tachengxmu/QuantPipe development by creating an account on GitHub. biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -395799,7 +417009,7 @@ Contribute to tachengxmu/QuantPipe development by creating an account on GitHub. biotools:primaryContact "Jan Oosting" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0625, edam:topic_2885, @@ -395821,7 +417031,7 @@ These instructions will guide you through the process of using QuantTB, so that sc:url "https://github.com/AbeelLab/quanttb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -395843,7 +417053,7 @@ These instructions will guide you through the process of using QuantTB, so that biotools:primaryContact "Weiwei Zhong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -395861,7 +417071,7 @@ These instructions will guide you through the process of using QuantTB, so that sc:url "http://zhanglab.ccmb.med.umich.edu/QUARK/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3360, @@ -395882,7 +417092,7 @@ These instructions will guide you through the process of using QuantTB, so that biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, edam:topic_0209, @@ -395901,7 +417111,7 @@ Data on protein-drug and protein-chemical interactions are rapidly accumulating sc:url "http://quartata.csb.pitt.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3474, @@ -395918,7 +417128,7 @@ Data on protein-drug and protein-chemical interactions are rapidly accumulating biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -395937,7 +417147,7 @@ Data on protein-drug and protein-chemical interactions are rapidly accumulating biotools:primaryContact "Gregory Ryslik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2269, @@ -395956,7 +417166,7 @@ Data on protein-drug and protein-chemical interactions are rapidly accumulating sc:url "https://github.com/piquelab/QuASAR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, @@ -395974,7 +417184,7 @@ Data on protein-drug and protein-chemical interactions are rapidly accumulating biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -395992,7 +417202,7 @@ Data on protein-drug and protein-chemical interactions are rapidly accumulating biotools:primaryContact "Server Administrator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0781, @@ -396010,8 +417220,28 @@ Data on protein-drug and protein-chemical interactions are rapidly accumulating sc:url "https://github.com/cbg-ethz/QuasiRecomb" ; biotools:primaryContact "Armin Töpfer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3168, + edam:topic_3382 ; + sc:citation , + "pubmed:35532087" ; + sc:description "Profiling Viral Quasispecies via Self-tuning Spectral Clustering with PacBio Long Sequencing Reads." ; + sc:featureList edam:operation_3198, + edam:operation_3432, + edam:operation_3629 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "QuasiSeq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://zenodo.org/badge/latestdoi/340494542" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0781, edam:topic_3168 ; @@ -396026,18 +417256,18 @@ Data on protein-drug and protein-chemical interactions are rapidly accumulating a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3327" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_3327" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0769, @@ -396064,7 +417294,7 @@ Data on protein-drug and protein-chemical interactions are rapidly accumulating biotools:primaryContact "Michael Stadler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0091, @@ -396080,7 +417310,7 @@ Data on protein-drug and protein-chemical interactions are rapidly accumulating sc:url "https://code.google.com/p/quassi/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation "pubmed:23422339" ; @@ -396097,7 +417327,7 @@ It evaluates a quality of genome assemblies by computing various metrics and pro biotools:primaryContact "QUAST Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -396115,7 +417345,7 @@ It evaluates a quality of genome assemblies by computing various metrics and pro biotools:primaryContact "Xuan Xiao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602 ; @@ -396135,7 +417365,7 @@ It evaluates a quality of genome assemblies by computing various metrics and pro biotools:primaryContact "Carl Tony Fakhry" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, edam:topic_0121, @@ -396156,7 +417386,7 @@ Choose the subunit if the input sequence is not compelet sequence but a single c sc:url "http://predictor.nchu.edu.tw/QUATgo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -396175,7 +417405,7 @@ Choose the subunit if the input sequence is not compelet sequence but a single c biotools:primaryContact "Yu Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, @@ -396194,7 +417424,7 @@ Choose the subunit if the input sequence is not compelet sequence but a single c biotools:primaryContact "José R. Valdés-Martiní" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, edam:topic_2269 ; @@ -396211,8 +417441,30 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o sc:name "QuBiLS-MIDAS" ; sc:url "http://tomocomd.com/qubils-midas" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0194, + edam:topic_3053, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9235488", + "pubmed:35758818" ; + sc:description "Quartet-based co-estimation of species trees and gene trees." ; + sc:featureList edam:operation_0544, + edam:operation_0547, + edam:operation_3947 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "QuCo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/maryamrabiee/quco" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3318, @@ -396232,7 +417484,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o biotools:primaryContact "Joseph Salisbury" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3383 ; @@ -396248,7 +417500,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o sc:url "https://github.com/ElsevierSoftwareX/SOFTX-D-16-00092" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0593 ; sc:citation ; @@ -396261,7 +417513,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o sc:url "http://www.cmbi.ru.nl/software/queen/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -396277,7 +417529,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o sc:url "http://pbil.univ-lyon1.fr/software/query_win.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -396294,7 +417546,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o biotools:primaryContact "Claudio Forcato" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169 ; sc:citation "pubmed:19160518" ; @@ -396308,7 +417560,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o biotools:primaryContact "Arend Sidow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -396326,7 +417578,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o sc:url "http://bioinfo-web.mpl.ird.fr/cgi-bin2/quetal/quetal.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3068 ; @@ -396339,8 +417591,31 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o sc:softwareVersion "1.03" ; sc:url "http://bioinfweb.info/Software/QuickAlign" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_3168, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8577749", + "pubmed:34752463" ; + sc:description "A toolkit and ImageJ PlugIn to quickly transform microscope images into scientific figures" ; + sc:featureList edam:operation_0292, + edam:operation_3096, + edam:operation_3359, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "QuickFigures" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/grishkam/QuickFigures" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation ; @@ -396355,7 +417630,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o sc:url "http://www.ebi.ac.uk/QuickGO/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084 ; sc:citation ; @@ -396370,7 +417645,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o biotools:primaryContact "Thomas Mailund" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3316, @@ -396391,7 +417666,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o sc:url "https://github.com/pephco/quickLD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3382 ; @@ -396403,7 +417678,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o sc:url "http://benporebski.github.io/CrystallographyQLPlugins/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0625, @@ -396422,7 +417697,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -396446,8 +417721,50 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o sc:name "Quickomics" ; sc:url "http://quickomics.bxgenomics.com" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0634, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9175388", + "pubmed:35672681" ; + sc:description "QuickPed is an interactive web application for drawing and analysing pedigrees. A created pedigree may be saved as an image or as a text file in ped format. You may also obtain various information about the pedigree, including relatedness coefficients and verbal descriptions of relationships." ; + sc:featureList edam:operation_0337, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "QuickPed" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://magnusdv.shinyapps.io/quickped" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_3070, + edam:topic_3382, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8642913", + "pubmed:34863116" ; + sc:description "Efficient 3D particle image velocimetry software applied to quantifying cellular migration during embryogenesis." ; + sc:featureList edam:operation_0337, + edam:operation_3446, + edam:operation_3458 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "quickPIV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Marc-3d/quickPIV" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -396462,7 +417779,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o sc:url "http://sun.aei.polsl.pl/REFRESH/index.php?page=projects&project=quickprobs&subpage=about" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -396476,7 +417793,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o sc:url "http://bioinformoodics.jhmi.edu/quickSNP.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0654, @@ -396491,7 +417808,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o sc:url "http://sourceforge.net/projects/quikr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602 ; @@ -396513,7 +417830,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o biotools:primaryContact "DUYGU UCAR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -396531,7 +417848,7 @@ QuBiLs-MIDAS software is for the calculation of 3D molecular descriptors based o sc:url "http://patternlabforproteomics.org/quinxl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0219 ; @@ -396547,7 +417864,7 @@ The goal of quincunx is to provide programmatic access to the Polygenic Score (P sc:url "https://github.com/maialab/quincunx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation "pubmed:22904078" ; @@ -396563,7 +417880,7 @@ The goal of quincunx is to provide programmatic access to the Polygenic Score (P biotools:primaryContact "Daniel C. Jones" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154, @@ -396586,14 +417903,14 @@ The goal of quincunx is to provide programmatic access to the Polygenic Score (P a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3307 ; sc:author ; @@ -396611,7 +417928,7 @@ The goal of quincunx is to provide programmatic access to the Polygenic Score (P biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3489 ; sc:description "Complete end-to-end solution for literature search and document management in the life science fields." ; @@ -396622,7 +417939,7 @@ The goal of quincunx is to provide programmatic access to the Polygenic Score (P sc:url "http://www.elsevier.com/solutions/quosa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2229, edam:topic_2640, @@ -396637,7 +417954,7 @@ Trafficking of intracellular cargo is essential to cellular function and can be sc:url "https://github.com/ThomasSchwarzLab/QuoVadoPro/blob/master/instructions_ReadMeFirst.docx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0621, edam:topic_3398, @@ -396655,7 +417972,7 @@ QuoVidi (previously known as BioGO) is an interface to manage large (and small) sc:url "http://www.quovidi.xyz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0634, @@ -396676,10 +417993,10 @@ QuoVidi (previously known as BioGO) is an interface to manage large (and small) a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -396704,7 +418021,7 @@ QuoVidi (previously known as BioGO) is an interface to manage large (and small) sc:url "https://qupe.cebitec.uni-bielefeld.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -396724,18 +418041,18 @@ QuoVidi (previously known as BioGO) is an interface to manage large (and small) a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Processed microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -396758,7 +418075,7 @@ QuoVidi (previously known as BioGO) is an interface to manage large (and small) biotools:primaryContact "Christopher Bolen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "This package takes a list of p-values resulting from the simultaneous testing of many hypotheses and estimates their q-values and local FDR values. The q-value of a test measures the proportion of false positives incurred (called the false discovery rate) when that particular test is called significant." ; @@ -396776,7 +418093,7 @@ QuoVidi (previously known as BioGO) is an interface to manage large (and small) "John D. Storey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -396793,7 +418110,7 @@ QuoVidi (previously known as BioGO) is an interface to manage large (and small) sc:url "https://github.com/mikelhernaez/qvz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0176, @@ -396808,7 +418125,7 @@ QuoVidi (previously known as BioGO) is an interface to manage large (and small) biotools:primaryContact "Contact list" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workbench" ; sc:applicationSubCategory edam:topic_2269, @@ -396828,7 +418145,7 @@ QuoVidi (previously known as BioGO) is an interface to manage large (and small) sc:url "http://www.r-project.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0099, @@ -396851,7 +418168,7 @@ R-chie allows you to make arc diagrams of RNA secondary structures, allowing for sc:url "http://www.e-rna.org/rchie/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0605, edam:topic_2269 ; @@ -396866,7 +418183,7 @@ R-chie allows you to make arc diagrams of RNA secondary structures, allowing for sc:url "http://www.ebi.ac.uk/Tools/rcloud/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -396887,8 +418204,28 @@ R-chie allows you to make arc diagrams of RNA secondary structures, allowing for sc:url "http://tcoffee.crg.cat/apps/tcoffee/do:rcoffee" ; biotools:primaryContact "Cedric Notredame" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_3303, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8702036", + "pubmed:34946828" ; + sc:description "A Deep Learning Network to Predict Off-Target Activities with Mismatch, Insertion and Deletion in CRISPR-Cas9 System." ; + sc:featureList edam:operation_0415, + edam:operation_2575, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:name "R-CRISPR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://codeocean.com/capsule/9553651/tree/v1" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3335 ; sc:citation , @@ -396903,7 +418240,7 @@ R-chie allows you to make arc diagrams of RNA secondary structures, allowing for biotools:primaryContact "Jonathan Moeyersons" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "R implementation of GADA (Genetic Alteration Detector Algorithm) - used to detect CNVs from aCGH and intensity array SNP data" ; sc:isAccessibleForFree true ; @@ -396916,7 +418253,7 @@ R-chie allows you to make arc diagrams of RNA secondary structures, allowing for sc:url "https://github.com/isglobal-brge/R-GADA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3053, @@ -396931,8 +418268,76 @@ R-chie allows you to make arc diagrams of RNA secondary structures, allowing for sc:softwareHelp ; sc:url "http://www.stt.msu.edu/~cui/software.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0097, + edam:topic_0634, + edam:topic_0659, + edam:topic_0749, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9303298", + "pubmed:35758606" ; + sc:description "Quality-controlled R-loop meta-analysis reveals the characteristics of R-loop consensus regions." ; + sc:featureList edam:operation_0441, + edam:operation_2429, + edam:operation_3196, + edam:operation_3222, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "R-loop" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Bishop-Laboratory/RLoop-QC-Meta-Analysis-Miller-2022" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_0634, + edam:topic_2640, + edam:topic_3300, + edam:topic_3334 ; + sc:citation , + "pmcid:PMC8728142", + "pubmed:34792163" ; + sc:description "A knowledgebase for genome-wide R-loop formation and regulation." ; + sc:featureList edam:operation_0306, + edam:operation_3208, + edam:operation_3222 ; + sc:isAccessibleForFree true ; + sc:name "R-loopBase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://rloopbase.nju.edu.cn" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:35324441" ; + sc:description "A Green, Accurate, and Unsupervised Point Cloud Registration Method." ; + sc:featureList edam:operation_2939, + edam:operation_3891, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "R-PointHop" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/pranavkdm/R-PointHop" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3055 ; @@ -396950,7 +418355,7 @@ R-chie allows you to make arc diagrams of RNA secondary structures, allowing for biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0099, @@ -396966,7 +418371,7 @@ R-chie allows you to make arc diagrams of RNA secondary structures, allowing for biotools:primaryContact "Vinay Mittal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2269 ; @@ -396978,7 +418383,7 @@ R-chie allows you to make arc diagrams of RNA secondary structures, allowing for sc:url "https://yunliweb.its.unc.edu/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3518 ; @@ -396995,7 +418400,7 @@ R-chie allows you to make arc diagrams of RNA secondary structures, allowing for biotools:primaryContact "Dr. Jan Koster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3370, @@ -397016,7 +418421,7 @@ R-chie allows you to make arc diagrams of RNA secondary structures, allowing for "Sara Cooper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0659, @@ -397043,8 +418448,26 @@ Visualise RNA secondary structure in standard orientations using RNA 2D Template sc:name "R2DT" ; sc:url "https://rnacentral.org/r2dt" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2269, + edam:topic_3372 ; + sc:citation , + "pubmed:35729090" ; + sc:description "Calibration of Numerical Groundwater Flow Models with Bayesian Optimization in R." ; + sc:featureList edam:operation_2238 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "r2ogs5" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.opengeosys.org/ogs5/r2ogs5" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3168 ; @@ -397060,14 +418483,14 @@ Visualise RNA secondary structure in standard orientations using RNA 2D Template a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0097, @@ -397095,7 +418518,7 @@ Visualise RNA secondary structure in standard orientations using RNA 2D Template biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -397113,7 +418536,7 @@ Visualise RNA secondary structure in standard orientations using RNA 2D Template biotools:primaryContact "Supat Thongjuea" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -397130,7 +418553,7 @@ Visualise RNA secondary structure in standard orientations using RNA 2D Template sc:url "http://rna.bgsu.edu/r3d-2-msa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -397150,7 +418573,7 @@ Visualise RNA secondary structure in standard orientations using RNA 2D Template biotools:primaryContact "Chin Lung Lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099 ; @@ -397166,7 +418589,7 @@ Visualise RNA secondary structure in standard orientations using RNA 2D Template biotools:primaryContact "Chin Lung Lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0082, @@ -397187,7 +418610,7 @@ Visualise RNA secondary structure in standard orientations using RNA 2D Template biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -397208,7 +418631,7 @@ Visualise RNA secondary structure in standard orientations using RNA 2D Template biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099 ; @@ -397229,7 +418652,7 @@ Visualise RNA secondary structure in standard orientations using RNA 2D Template biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:author , @@ -397246,7 +418669,7 @@ Visualise RNA secondary structure in standard orientations using RNA 2D Template biotools:primaryContact "Raffaele A Calogero" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3500 ; sc:citation , @@ -397260,7 +418683,7 @@ The isotopic niche of consumers represents biologically relevant information on sc:url "https://github.com/salbeke/rKIN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3172, @@ -397281,7 +418704,7 @@ The isotopic niche of consumers represents biologically relevant information on biotools:primaryContact "Esteban del Castillo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, edam:topic_3172, @@ -397302,7 +418725,7 @@ rMSIcleanup is an open-source R package to annotate matrix-related signals in MS sc:url "https://github.com/gbaquer/rMSIcleanup" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3050, edam:topic_3277 ; @@ -397322,7 +418745,7 @@ rMSIcleanup is an open-source R package to annotate matrix-related signals in MS biotools:primaryContact "Franz-Sebastian Krah" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3360 ; sc:citation , @@ -397334,7 +418757,7 @@ rMSIcleanup is an open-source R package to annotate matrix-related signals in MS sc:url "http://github.com/SampleSizeShop/rPowerlib" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3384, @@ -397356,7 +418779,7 @@ rMSIcleanup is an open-source R package to annotate matrix-related signals in MS "Pedro A. Valdés Sosa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0593, edam:topic_0749, @@ -397382,7 +418805,7 @@ Translated by Will Raymond - 2018/2019""" ; sc:url "https://github.com/MunskyGroup/rSNAPsim.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -397406,7 +418829,7 @@ Translated by Will Raymond - 2018/2019""" ; biotools:primaryContact "Sheng-Yong, Niu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269 ; @@ -397428,7 +418851,7 @@ Translated by Will Raymond - 2018/2019""" ; biotools:primaryContact "Andrew Tikhonov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3512 ; @@ -397443,7 +418866,7 @@ Translated by Will Raymond - 2018/2019""" ; sc:url "http://tsenglab.biostat.pitt.edu/software.htm#cDNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -397464,8 +418887,29 @@ Translated by Will Raymond - 2018/2019""" ; sc:url "http://mips.helmholtz-muenchen.de/proj/rspider" ; biotools:primaryContact "R Spider Support" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Nucleic acid sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence assembly" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Suite" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0622 ; + sc:description "Assembler for raw de novo genome assembly of long uncorrected reads." ; + sc:featureList edam:operation_0525 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Ra" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/lbcb-sci/ra" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, edam:topic_0625, @@ -397483,8 +418927,30 @@ Rheumatoid arthritis (RA) is a progressive, inflammatory autoimmune disease of u sc:name "RA-map" ; sc:url "http://ramap.elixir-luxembourg.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0654, + edam:topic_2814, + edam:topic_3306, + edam:topic_3510 ; + sc:citation , + "pmcid:PMC9252778", + "pubmed:35639512" ; + sc:description "A webserver for 3D visualization and analysis of protein structure by using reduced amino acid alphabets." ; + sc:featureList edam:operation_0302, + edam:operation_0564, + edam:operation_0570 ; + sc:isAccessibleForFree true ; + sc:name "RaacFold" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinfor.imu.edu.cn/raacfold" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0130, edam:topic_0154, @@ -397503,14 +418969,14 @@ Sequence logos give a fast and concise display in visualizing consensus sequence a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -397529,7 +418995,7 @@ Sequence logos give a fast and concise display in visualizing consensus sequence sc:url "http://informatics.mayo.edu/svn/trunk/mprc/raams/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0622 ; @@ -397544,7 +419010,7 @@ RabbitMash is an efficient highly optimized implementation of Mash which can tak sc:url "https://github.com/ZekunYin/RabbitMash" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, edam:topic_3303 ; @@ -397559,8 +419025,32 @@ A tool designed to provide high-speed scalable quality control for sequencing da sc:name "RabbitQC" ; sc:url "https://github.com/ZekunYin/RabbitQC" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3168, + edam:topic_3174, + edam:topic_3365 ; + sc:citation , + "pubmed:35333310" ; + sc:description "A highly optimized and practical toolkit for the detection of viruses and microorganisms in sequencing data. It can handle large-scale datasets such as bacterial reference genomes on commonly used servers with limited compute resources." ; + sc:featureList edam:operation_1812, + edam:operation_3359, + edam:operation_3472 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "RabbitV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/RabbitBio/RabbitV" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -397576,7 +419066,7 @@ A tool designed to provide high-speed scalable quality control for sequencing da sc:url "http://rabit.dfci.harvard.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -397594,7 +419084,7 @@ A tool designed to provide high-speed scalable quality control for sequencing da biotools:primaryContact "Dana Ferranti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_2269, @@ -397611,7 +419101,7 @@ A tool designed to provide high-speed scalable quality control for sequencing da biotools:primaryContact "Baldan Damiano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -397622,7 +419112,7 @@ A tool designed to provide high-speed scalable quality control for sequencing da biotools:primaryContact "Jaebum Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -397639,7 +419129,7 @@ A tool designed to provide high-speed scalable quality control for sequencing da sc:url "http://race.unil.ch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -397662,7 +419152,7 @@ A tool designed to provide high-speed scalable quality control for sequencing da biotools:primaryContact "Bin Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099 ; @@ -397678,7 +419168,7 @@ A tool designed to provide high-speed scalable quality control for sequencing da sc:url "http://rtips.dna.bio.keio.ac.jp/ractip/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, edam:topic_3170, @@ -397700,7 +419190,7 @@ RAD is a toolkit that unmixes bulk tumor samples. Given a non-negative bulk RNA sc:url "https://github.com/CMUSchwartzLab/RAD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -397718,14 +419208,12 @@ RAD is a toolkit that unmixes bulk tumor samples. Given a non-negative bulk RNA a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157 ; sc:author "Andreas Heger", @@ -397745,7 +419233,7 @@ RAD is a toolkit that unmixes bulk tumor samples. Given a non-negative bulk RNA biotools:primaryContact "Web Production" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0749, edam:topic_3170, @@ -397767,7 +419255,7 @@ Directory containing files, one for each chromosome.""" ; sc:url "http://radar.gersteinlab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2640, edam:topic_3170, @@ -397788,7 +419276,7 @@ Directory containing files, one for each chromosome.""" ; sc:url "https://github.com/scottzijiezhang/RADAR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0218, edam:topic_0602, @@ -397804,7 +419292,7 @@ Directory containing files, one for each chromosome.""" ; sc:url "http://biokb.ncpsb.org/radatlas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3306, @@ -397827,7 +419315,7 @@ Directory containing files, one for each chromosome.""" ; biotools:primaryContact "Martin Vallières" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3056, @@ -397842,8 +419330,29 @@ Directory containing files, one for each chromosome.""" ; ; sc:url "http://www1.montpellier.inra.fr/CBGP/software/RADIS/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_3384, + edam:topic_3444 ; + sc:citation , + "pmcid:PMC8944106", + "pubmed:35331160" ; + sc:description "Determining the applicability of the RSNA radiology lexicon (RadLex) in high-grade glioma MRI reporting." ; + sc:featureList edam:operation_2422, + edam:operation_3436, + edam:operation_3625 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "RadLex" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.radlex.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -397862,7 +419371,7 @@ Directory containing files, one for each chromosome.""" ; biotools:primaryContact "Enio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, edam:topic_0769, @@ -397885,7 +419394,7 @@ This workflow implements all the analyses presented in the RADSex paper and gene sc:url "https://github.com/SexGenomicsToolkit/radsex" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3053, @@ -397901,7 +419410,7 @@ This workflow implements all the analyses presented in the RADSex paper and gene sc:url "https://www.wiki.ed.ac.uk/display/RADSequencing/Home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053, @@ -397921,7 +419430,7 @@ This workflow implements all the analyses presented in the RADSex paper and gene sc:url "http://www2.ouc.edu.cn/mollusk/detailen.asp?id=727" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3050, edam:topic_3168, edam:topic_3174, @@ -397940,7 +419449,7 @@ One fundamental question when trying to describe viruses of Bacteria and Archaea sc:url "https://sourceforge.net/projects/rafah/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -397960,7 +419469,7 @@ One fundamental question when trying to describe viruses of Bacteria and Archaea biotools:primaryContact "Dennis Kostka" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622 ; sc:description "This package provides a flexible representation of copy number, mutation, and other data that fit into the ragged array schema for genomic location data. The basic representation of such data provides a rectangular flat table interface to the user with range information in the rows and samples/specimen in the columns." ; @@ -397976,7 +419485,7 @@ One fundamental question when trying to describe viruses of Bacteria and Archaea biotools:primaryContact "Martin Morgan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -397992,7 +419501,7 @@ One fundamental question when trying to describe viruses of Bacteria and Archaea sc:url "http://fenderglass.github.io/Ragout/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -398004,7 +419513,7 @@ One fundamental question when trying to describe viruses of Bacteria and Archaea sc:url "https://github.com/malonge/RagTag" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -398021,7 +419530,7 @@ One fundamental question when trying to describe viruses of Bacteria and Archaea biotools:primaryContact "Brendan Joyce" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0621, @@ -398037,7 +419546,7 @@ One fundamental question when trying to describe viruses of Bacteria and Archaea sc:url "http://cals.arizona.edu/~anling/sbg/software.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_3053, @@ -398051,7 +419560,7 @@ One fundamental question when trying to describe viruses of Bacteria and Archaea sc:url "http://compbio.cs.brown.edu/projects/raig/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, @@ -398067,7 +419576,7 @@ One fundamental question when trying to describe viruses of Bacteria and Archaea sc:url "https://github.com/bcgsc/RAILS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -398090,7 +419599,7 @@ One fundamental question when trying to describe viruses of Bacteria and Archaea biotools:primaryContact "Paul F. Thaben" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -398104,7 +419613,7 @@ One fundamental question when trying to describe viruses of Bacteria and Archaea sc:url "http://sourceforge.net/projects/bio-rainbow/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_0780, @@ -398130,7 +419639,7 @@ Supplementary data and scripts used in the article Kosuke Hamazaki and Hiroyoshi sc:url "https://cran.r-project.org/web/packages/RAINBOWR/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3047, edam:topic_3382 ; @@ -398153,7 +419662,7 @@ Fiji: A batteries-included distribution of ImageJ.""" ; sc:url "https://imagej.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, edam:topic_3512 ; @@ -398168,7 +419677,7 @@ Fiji: A batteries-included distribution of ImageJ.""" ; sc:url "https://gitlab.rlp.net/stnieble/raindrop" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0625, @@ -398189,14 +419698,14 @@ R and Python code to run the RAINFOREST (tReAtment benefIt prediction using raNd a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -398215,7 +419724,7 @@ R and Python code to run the RAINFOREST (tReAtment benefIt prediction using raNd biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -398233,7 +419742,7 @@ R and Python code to run the RAINFOREST (tReAtment benefIt prediction using raNd biotools:primaryContact "Raphael Gottardo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -398249,7 +419758,7 @@ R and Python code to run the RAINFOREST (tReAtment benefIt prediction using raNd biotools:primaryContact "Stefan Kurtz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654, @@ -398265,7 +419774,7 @@ R and Python code to run the RAINFOREST (tReAtment benefIt prediction using raNd sc:url "https://gitlab.com/SimonHTausch/RAMBO-K" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3172 ; sc:description "A feature clustering algorithm for non-targeted mass spectrometric metabolomics data." ; @@ -398276,7 +419785,7 @@ R and Python code to run the RAINFOREST (tReAtment benefIt prediction using raNd sc:url "https://github.com/cbroeckl/RAMClustR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0176, edam:topic_2830 ; @@ -398294,7 +419803,7 @@ Random Acceleration Molecular Dynamics (RAMD) is a method to carry out molecular sc:url "https://github.com/HITS-MCM/GROMACS-ramd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0089 ; @@ -398314,7 +419823,7 @@ Random Acceleration Molecular Dynamics (RAMD) is a method to carry out molecular biotools:primaryContact "Markus Schroeder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -398328,7 +419837,7 @@ Random Acceleration Molecular Dynamics (RAMD) is a method to carry out molecular sc:url "https://ircb.iiita.ac.in/toolkit.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -398345,7 +419854,7 @@ Random Acceleration Molecular Dynamics (RAMD) is a method to carry out molecular sc:url "http://mips.helmholtz-muenchen.de/mona/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -398363,8 +419872,56 @@ Random Acceleration Molecular Dynamics (RAMD) is a method to carry out molecular sc:url "https://github.com/Mathelab/RaMP-DB" ; biotools:primaryContact "Ewy A. Mathé" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0154, + edam:topic_0602, + edam:topic_3172, + edam:topic_3407 ; + sc:citation ; + sc:description "A renovated knowledgebase for deriving biological and chemical insight from genes, proteins, and metabolites." ; + sc:featureList edam:operation_1812, + edam:operation_2421, + edam:operation_2422, + edam:operation_2436, + edam:operation_3502 ; + sc:isAccessibleForFree true ; + sc:name "RaMP-DB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "2.0" ; + sc:url "https://rampdb.nih.gov" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0203, + edam:topic_2229, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9155233", + "pubmed:35664804" ; + sc:description "Facilitating tissue and cell-specific ramp sequence analyses through an intuitive web interface." ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Ramp Atlas" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ramps.byu.edu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769 ; @@ -398378,7 +419935,7 @@ Random Acceleration Molecular Dynamics (RAMD) is a method to carry out molecular sc:url "https://github.com/TGAC/RAMPART" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, edam:topic_3295, @@ -398395,7 +419952,7 @@ ramr is an R package for detection of low-frequency aberrant methylation events sc:url "https://github.com/BBCG/ramr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3295, @@ -398415,7 +419972,7 @@ ramr is an R package for detection of low-frequency aberrant methylation events biotools:primaryContact "Andrey A Shabalin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3050, edam:topic_3174, @@ -398441,7 +419998,7 @@ ramr is an R package for detection of low-frequency aberrant methylation events "Martinez Arbizu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, edam:topic_0780, @@ -398461,7 +420018,7 @@ Reconstructing haplotypes from sequencing data is one of the major challenges in sc:url "https://www.molgen.mpg.de/ranbow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "randcorr is a MATLAB function that implements the algorithm by Pourahmadi and Wang for generating a random p x p correlation matrix." ; sc:isAccessibleForFree true ; @@ -398473,16 +420030,34 @@ Reconstructing haplotypes from sequencing data is one of the major challenges in sc:url "https://www.mathworks.com/matlabcentral/fileexchange/68810-randcorr" ; biotools:primaryContact "Statovic" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9169273", + "pubmed:35668480" ; + sc:description "An easy-to-use utility to generate a big variety of chemical structure depictions (random depiction styles and image augmentations) based on RDKit, CDK, Indigo and PIKAChU." ; + sc:featureList edam:operation_0337, + edam:operation_2423 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "RanDepict" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/OBrink/RanDepict" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1708" ; - sc:name "RNA secondary structure image" ; - sc:sameAs "http://edamontology.org/data_1708" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1708" ; + sc:encodingFormat "http://edamontology.org/format_2076" ; + sc:name "RNA secondary structure image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659 ; sc:citation ; @@ -398498,7 +420073,7 @@ Reconstructing haplotypes from sequencing data is one of the major challenges in sc:url "http://bioinformatics.psb.ugent.be/software/details/Randfold" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, edam:topic_3179, @@ -398515,7 +420090,7 @@ High-throughput DNA methylation arrays are susceptible to bias facilitated by ba sc:url "https://coph-usf.shinyapps.io/RANDOMIZE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -398530,7 +420105,7 @@ High-throughput DNA methylation arrays are susceptible to bias facilitated by ba sc:url "http://www.jurgott.org/linkage/randompat.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2259, @@ -398549,7 +420124,7 @@ High-throughput DNA methylation arrays are susceptible to bias facilitated by ba biotools:primaryContact "Alberto Valdeolivas Urbelz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3379 ; @@ -398567,7 +420142,7 @@ High-throughput DNA methylation arrays are susceptible to bias facilitated by ba biotools:primaryContact "Robert Gentleman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3056, edam:topic_3299 ; @@ -398591,7 +420166,7 @@ We’ve been picked to host a RangeShiftR workshop at the IBS 2022 in Vancouver! sc:url "https://rangeshifter.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, @@ -398613,7 +420188,7 @@ We’ve been picked to host a RangeShiftR workshop at the IBS 2022 in Vancouver! sc:url "http://www.badd-cao.net/rank-in/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, edam:topic_3315, @@ -398633,7 +420208,7 @@ A marker selection method for scRNA-seq data based on rank correlation. See the sc:url "https://github.com/ahsv/RankCorr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -398648,22 +420223,22 @@ A marker selection method for scRNA-seq data based on rank correlation. See the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0637, @@ -398682,7 +420257,7 @@ A marker selection method for scRNA-seq data based on rank correlation. See the biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -398698,7 +420273,7 @@ A marker selection method for scRNA-seq data based on rank correlation. See the biotools:primaryContact "SECRETARIA GENERAL DE CIENCIA, TECNOLOGIA E INNOVACION OF SPAIN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -398716,10 +420291,9 @@ A marker selection method for scRNA-seq data based on rank correlation. See the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:name "Nucleic acid sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3168, @@ -398737,7 +420311,7 @@ A marker selection method for scRNA-seq data based on rank correlation. See the biotools:primaryContact "Graziano Pesole" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081 ; sc:citation ; @@ -398754,7 +420328,7 @@ A marker selection method for scRNA-seq data based on rank correlation. See the biotools:primaryContact "Silvio C.E. Tosatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2814, @@ -398770,7 +420344,7 @@ A marker selection method for scRNA-seq data based on rank correlation. See the sc:url "http://biomine.cs.vcu.edu/servers/RAPID/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269 ; @@ -398788,8 +420362,28 @@ A marker selection method for scRNA-seq data based on rank correlation. See the sc:url "https://github.com/gravitino/cudaGSEA" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3335, + edam:topic_3572 ; + sc:citation , + "pmcid:PMC8957280", + "pubmed:35345583" ; + sc:description "A package for preprocessing, analyzing and visualizing cardiac data." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "RapidHRV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://pypi.org/project/rapidhrv/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084 ; sc:citation ; @@ -398805,7 +420399,7 @@ A marker selection method for scRNA-seq data based on rank correlation. See the biotools:primaryContact "Martin Simonsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -398826,7 +420420,7 @@ A marker selection method for scRNA-seq data based on rank correlation. See the biotools:primaryContact "RAPIDO Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, edam:topic_3517 ; @@ -398841,7 +420435,7 @@ Polygenic scores (PGS) aim to predict complex traits at an individual level base sc:url "https://github.com/GRealesM/RapidoPGS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -398859,7 +420453,7 @@ Polygenic scores (PGS) aim to predict complex traits at an individual level base biotools:primaryContact "Kitty Lo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -398878,7 +420472,7 @@ Polygenic scores (PGS) aim to predict complex traits at an individual level base biotools:primaryContact "Sergei Grudinin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -398898,7 +420492,7 @@ Polygenic scores (PGS) aim to predict complex traits at an individual level base biotools:primaryContact "Humberto Ortiz Zuazaga" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -398917,7 +420511,7 @@ Polygenic scores (PGS) aim to predict complex traits at an individual level base biotools:primaryContact "Rob Patro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2830, edam:topic_3360 ; @@ -398931,7 +420525,7 @@ Abstract Heterogeneous immunoassays such as ELISA have become indispensable in m sc:url "https://doi.org/10.1101/2020.10.31.363044" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -398951,7 +420545,7 @@ Abstract Heterogeneous immunoassays such as ELISA have become indispensable in m sc:url "https://github.com/jszym/rapppid" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation "pubmed:21575167" ; @@ -398967,7 +420561,7 @@ Abstract Heterogeneous immunoassays such as ELISA have become indispensable in m "Yuzhen Ye" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0160, @@ -398985,7 +420579,7 @@ Abstract Heterogeneous immunoassays such as ELISA have become indispensable in m sc:url "https://github.com/hmdlab/raptgen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0102, @@ -399010,7 +420604,7 @@ Abstract Heterogeneous immunoassays such as ELISA have become indispensable in m sc:url "https://github.com/seqan/raptor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -399028,7 +420622,7 @@ Abstract Heterogeneous immunoassays such as ELISA have become indispensable in m sc:url "http://raptorx.uchicago.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2814, edam:topic_3474 ; @@ -399042,7 +420636,7 @@ Abstract Heterogeneous immunoassays such as ELISA have become indispensable in m biotools:primaryContact "Yujuan Gao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -399058,7 +420652,7 @@ Abstract Heterogeneous immunoassays such as ELISA have become indispensable in m sc:url "https://github.com/njdbickhart/RAPTR-SV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0160, edam:topic_0654, @@ -399080,7 +420674,7 @@ RaptRanker is a software for RNA aptamer selection from HT-SELEX experiment data sc:url "https://github.com/hmdlab/RaptRanker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -399095,8 +420689,27 @@ RaptRanker is a software for RNA aptamer selection from HT-SELEX experiment data sc:softwareHelp ; sc:url "http://genome.sph.umich.edu/wiki/RAREMETAL" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_2815, + edam:topic_3053 ; + sc:citation , + "pmcid:PMC9069075", + "pubmed:35298919" ; + sc:description "A simulation method for very rare genetic variants." ; + sc:featureList edam:operation_0282 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "RAREsim" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=35298919" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -399118,7 +420731,7 @@ RaptRanker is a software for RNA aptamer selection from HT-SELEX experiment data biotools:primaryContact "Tomasz Stokowy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199 ; @@ -399136,7 +420749,7 @@ RaptRanker is a software for RNA aptamer selection from HT-SELEX experiment data biotools:primaryContact "Julian Gehring" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -399154,8 +420767,26 @@ RaptRanker is a software for RNA aptamer selection from HT-SELEX experiment data sc:url "https://www.mathworks.com/matlabcentral/fileexchange/37759-renin-angiotensin-system-ras-model-for-simbiology" ; biotools:primaryContact "Sven Mesecke" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0769 ; + sc:citation ; + sc:description "Rapid Assessment Of selection in Clades Through Molecular Sequence Analysis." ; + sc:featureList edam:operation_0310, + edam:operation_0324, + edam:operation_3197 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "RASCL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/veg/RASCL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2269, edam:topic_2640, @@ -399172,7 +420803,7 @@ RASCO: An R package to Alleviate the Spatial Confounding.""" ; sc:url "https://github.com/douglasmesquita/RASCO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0209, edam:topic_0769, @@ -399192,7 +420823,7 @@ RAscore is intended to be a binary score, indicating whether the underlying comp sc:url "https://github.com/reymond-group/RAscore" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0099, @@ -399207,7 +420838,7 @@ RAscore is intended to be a binary score, indicating whether the underlying comp sc:url "https://www.ibp.ucla.edu/research/xiao/RASER.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0092, @@ -399231,7 +420862,7 @@ RAscore is intended to be a binary score, indicating whether the underlying comp biotools:primaryContact "Herbert J. Bernstein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -399254,7 +420885,7 @@ RAscore is intended to be a binary score, indicating whether the underlying comp biotools:primaryContact "Philippe Cuniasse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_2269, @@ -399270,7 +420901,7 @@ RAscore is intended to be a binary score, indicating whether the underlying comp sc:url "http://mnh.scu.edu.cn/soft/blog/RASP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, edam:topic_0621, @@ -399292,18 +420923,18 @@ RASP (RNA Alatas of Structure Probing) is a transcriptome-scale RNA structure pr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Genotype/phenotype report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -399326,7 +420957,7 @@ RASP (RNA Alatas of Structure Probing) is a transcriptome-scale RNA structure pr biotools:primaryContact "GitHub Issues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -399349,7 +420980,7 @@ RASP (RNA Alatas of Structure Probing) is a transcriptome-scale RNA structure pr biotools:primaryContact "RASS support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3293 ; @@ -399365,7 +420996,7 @@ RASP (RNA Alatas of Structure Probing) is a transcriptome-scale RNA structure pr biotools:primaryContact "R.K. Aziz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0654, @@ -399383,7 +421014,7 @@ RASP (RNA Alatas of Structure Probing) is a transcriptome-scale RNA structure pr "Frédérique Hubler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, @@ -399400,7 +421031,7 @@ RASP (RNA Alatas of Structure Probing) is a transcriptome-scale RNA structure pr sc:url "http://skuld.bmsc.washington.edu/raster3d/raster3d.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3293, edam:topic_3306, @@ -399416,13 +421047,13 @@ rasterdiv is a package for the R statistical software and environment. It aims t sc:url "https://github.com/mattmar/rasterdiv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Produces an unbiased subsample of your reads" ; sc:name "rasusa" ; sc:url "https://github.com/mbhall88/rasusa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3382, edam:topic_3500 ; @@ -399437,7 +421068,7 @@ RAT is a low-cost system to track and report mouse activity while they are conta sc:url "https://hackaday.io/project/162481-rodent-arena-tracker-rat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2885, edam:topic_3673 ; @@ -399457,7 +421088,7 @@ Ratatosk is a phased error correction tool for erroneous long reads based on com sc:url "https://github.com/DecodeGenetics/Ratatosk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_3170, @@ -399477,7 +421108,7 @@ RATEmiRs- a database of rat microRNA-Seq data in several tissues. "Data Driven" sc:url "https://www.niehs.nih.gov/ratemirs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, @@ -399493,7 +421124,7 @@ RATEmiRs- a database of rat microRNA-Seq data in several tissues. "Data Driven" biotools:primaryContact "Jakub Nedbal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Workflow" ; @@ -399512,7 +421143,7 @@ RatLesNetv2 is a convolutional neural network implemented in Python+Pytorch to s sc:url "https://github.com/jmlipman/RatLesNetv2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -399531,7 +421162,7 @@ RatLesNetv2 is a convolutional neural network implemented in Python+Pytorch to s biotools:primaryContact "Paul A Bates" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, edam:topic_3172, @@ -399554,7 +421185,7 @@ RatsPub answers this question by searching PubMed to find sentences containing t sc:url "https://github.com/chen42/ratspub" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654 ; @@ -399572,7 +421203,7 @@ RatsPub answers this question by searching PubMed to find sentences containing t sc:url "http://ratt.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3308 ; @@ -399583,8 +421214,52 @@ RatsPub answers this question by searching PubMed to find sentences containing t sc:url "https://github.com/comprna/RATTLE" ; biotools:primaryContact "Eduardo Eyras" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0130, + edam:topic_0736, + edam:topic_3473, + edam:topic_3474 ; + sc:citation , + "pubmed:35487269" ; + sc:description "Performing protein fold recognition by exploiting a stack convolutional neural network with the attention mechanism." ; + sc:featureList edam:operation_0253, + edam:operation_0303, + edam:operation_0474 ; + sc:isAccessibleForFree true ; + sc:name "RattnetFold" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://csbio.njust.edu.cn/bioinf/rattnetfold/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3168 ; + sc:citation , + "pubmed:35419876" ; + sc:description "An integrative pipeline from quality control to region-based rare variant association analysis." ; + sc:featureList edam:operation_2428, + edam:operation_3197 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "RAVAQ" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://gitlab.com/gmarenne/ravaq" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3382, edam:topic_3474 ; @@ -399600,7 +421275,7 @@ For all RAVE info, including installation instructions, visit https://openwetwar sc:url "https://github.com/beauchamplab/rave" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, edam:topic_3673 ; @@ -399617,26 +421292,26 @@ Raven is a de novo genome assembler for long uncorrected reads.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1208" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Gene expression matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3722" ; - sc:name "Physiology parameter" ; - sc:sameAs "http://edamontology.org/data_3722" ], + sc:additionalType "http://edamontology.org/data_3722" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "Physiology parameter" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0602, @@ -399663,14 +421338,14 @@ Raven is a de novo genome assembler for long uncorrected reads.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3621" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:author "Alexandre Burel", @@ -399690,7 +421365,8 @@ Raven is a de novo genome assembler for long uncorrected reads.""" ; biotools:primaryContact "Alexandre Burel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3174, edam:topic_3474 ; @@ -399701,11 +421377,14 @@ Raven is a de novo genome assembler for long uncorrected reads.""" ; sc:featureList edam:operation_0267, edam:operation_0476, edam:operation_0492 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; sc:name "rawMSA" ; + sc:operatingSystem "Linux" ; sc:url "https://bitbucket.org/clami66/rawmsa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -399721,8 +421400,30 @@ Raven is a de novo genome assembler for long uncorrected reads.""" ; sc:name "RawBeans" ; sc:url "https://bitbucket.org/incpm/prot-qc/downloads/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0153, + edam:topic_3172, + edam:topic_3520 ; + sc:citation , + "pubmed:35080628" ; + sc:description "An R Shiny app for assessing LC–MS system performance by visualising instrument log files and monitoring raw quality control samples within a project." ; + sc:featureList edam:operation_0337, + edam:operation_3218, + edam:operation_3627 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "RawHummus" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://bcdd.shinyapps.io/RawHummus/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0196, edam:topic_3520 ; @@ -399739,7 +421440,7 @@ Please install the latest release from https://github.com/fgcz/rawR/releases acc sc:url "https://github.com/fgcz/rawR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0769, @@ -399760,14 +421461,14 @@ R interface for Thermo Fisher Scientific raw files branched from rawDiag. This p a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3712" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -399787,7 +421488,7 @@ R interface for Thermo Fisher Scientific raw files branched from rawDiag. This p sc:url "https://github.com/kevinkovalchik/RawTools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0154, @@ -399804,12 +421505,14 @@ RawVegetable requires Thermo mass spectrometer RAW files, *.mzML or Agilent file sc:url "http://patternlabforproteomics.org/rawvegetable" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3293 ; - sc:citation ; + sc:citation , + , + "pubmed:16928733" ; sc:description "A tool for Phylogenetic Analysis and Post-Analysis of Large Phylogenies." ; sc:featureList edam:operation_0324, edam:operation_2403 ; @@ -399821,7 +421524,7 @@ RawVegetable requires Thermo mass spectrometer RAW files, *.mzML or Agilent file sc:url "http://sco.h-its.org/exelixis/web/software/raxml/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3070 ; sc:author "Sébastien Boisvert" ; @@ -399852,7 +421555,7 @@ RawVegetable requires Thermo mass spectrometer RAW files, *.mzML or Agilent file biotools:primaryContact "Animesh Sharma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3318, @@ -399869,7 +421572,7 @@ This code aims to provide a simple ray tracing module for calculating various pr sc:url "https://github.com/DCC-Lab/RayTracing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation "pubmed:19592482" ; @@ -399887,7 +421590,7 @@ This code aims to provide a simple ray tracing module for calculating various pr "David Weese" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """RazerS 3 is a tool for mapping millions of short genomic reads onto a reference genome. It was designed with focus on mapping next-generation sequencing reads onto whole DNA genomes. RazerS 3 searches for matches of @@ -399897,7 +421600,7 @@ detects alignments with mismatches as well as gaps.""" ; sc:url "https://github.com/seqan/seqan/tree/master/apps/razers3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0621, edam:topic_2840, @@ -399918,7 +421621,7 @@ Razor detects signal peptide in the given sequence. If signal peptide is found, sc:url "https://tisigner.com/razor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -399935,11 +421638,11 @@ Razor detects signal peptide in the given sequence. If signal peptide is found, "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/rbpred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/rbpred/" ; biotools:primaryContact "Dr. G.P.S. Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -399958,14 +421661,12 @@ to the samtools C-library for BAM file processing.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Workflow for variant calling and other functionalities" ; sc:featureList edam:operation_3182, edam:operation_3227 ; @@ -399974,7 +421675,7 @@ to the samtools C-library for BAM file processing.""" ; sc:url "https://github.com/Rbbt-Workflows/HTS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0218 ; @@ -399992,7 +421693,7 @@ to the samtools C-library for BAM file processing.""" ; biotools:primaryContact "Vince Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2830, @@ -400014,7 +421715,7 @@ RBCeq is an integrated bioinformatics webserver to characterize blood group prof sc:url "https://www.rbceq.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, edam:topic_3063, @@ -400033,7 +421734,7 @@ Computer-assisted algorithms have become a mainstay of biomedical applications t sc:url "https://github.com/nlm-malaria/RBCNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -400051,7 +421752,7 @@ Computer-assisted algorithms have become a mainstay of biomedical applications t sc:url "http://icb.med.cornell.edu/crt/RbDe/index.xml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -400069,7 +421770,7 @@ Computer-assisted algorithms have become a mainstay of biomedical applications t biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -400095,8 +421796,28 @@ Computer-assisted algorithms have become a mainstay of biomedical applications t sc:softwareHelp ; sc:url "http://zhaoserver.com.cn/RBinds/RBinds.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3071, + edam:topic_3372 ; + sc:citation , + "pubmed:35323899" ; + sc:description "User-Friendly R Interface to Biologic Web Services' API." ; + sc:featureList edam:operation_0224, + edam:operation_3431, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "rbioapi" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://rbioapi.moosa-r.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -400119,7 +421840,7 @@ Computer-assisted algorithms have become a mainstay of biomedical applications t biotools:primaryContact "Robert Gentleman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0659, @@ -400136,7 +421857,7 @@ Computer-assisted algorithms have become a mainstay of biomedical applications t biotools:primaryContact "Kenneth B. Storey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -400155,7 +421876,7 @@ Computer-assisted algorithms have become a mainstay of biomedical applications t biotools:primaryContact "Frank Kramer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170, @@ -400174,7 +421895,7 @@ Computer-assisted algorithms have become a mainstay of biomedical applications t biotools:primaryContact "Dongmei Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2269, @@ -400191,14 +421912,14 @@ Computer-assisted algorithms have become a mainstay of biomedical applications t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0659 ; @@ -400221,7 +421942,7 @@ Computer-assisted algorithms have become a mainstay of biomedical applications t biotools:primaryContact "Jiří Vohradský" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2275, @@ -400241,18 +421962,18 @@ Computer-assisted algorithms have become a mainstay of biomedical applications t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_0867" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053, @@ -400272,7 +421993,7 @@ Computer-assisted algorithms have become a mainstay of biomedical applications t biotools:primaryContact "Michael Stadler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -400288,8 +422009,31 @@ Computer-assisted algorithms have become a mainstay of biomedical applications t sc:url "http://bioconductor.org/packages/release/bioc/html/Rbowtie2.html" ; biotools:primaryContact "Zheng Wei" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0128, + edam:topic_2269, + edam:topic_3297, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9294422", + "pubmed:35649392" ; + sc:description "RBP-TSTL is a two-stage transfer learning framework for genome-scale prediction of RNA-binding proteins." ; + sc:featureList edam:operation_3900, + edam:operation_3901, + edam:operation_3902 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "RBP-TSTL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Xinxinatg/RBP-TSTL/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, edam:topic_0121, @@ -400306,8 +422050,34 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot sc:name "RBP2GO" ; sc:url "https://RBP2GO.DKFZ.de" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0097, + edam:topic_0099, + edam:topic_0128, + edam:topic_3542 ; + sc:citation , + "pubmed:35662470" ; + sc:description "Quantitative Prediction of Protein-RNA Interactions." ; + sc:featureList edam:operation_0278, + edam:operation_0502, + edam:operation_2441, + edam:operation_3901, + edam:operation_3902 ; + sc:isAccessibleForFree true ; + sc:name "RBPBind" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioserv.mps.ohio-state.edu/RBPBind/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, edam:topic_3320, @@ -400324,7 +422094,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot sc:url "https://home.jbnu.ac.kr/NSCL/RBPCNN.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0736, @@ -400346,7 +422116,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot biotools:primaryContact "RBPDB Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -400363,7 +422133,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot sc:url "https://github.com/nmt315320/rBPDL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3125, @@ -400388,7 +422158,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot biotools:primaryContact "Yael Mandel Gutfreund's lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -400409,8 +422179,24 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot sc:url "http://www.rnamotif.org" ; biotools:primaryContact "Quaid Morris" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC1647291", + "pubmed:17083731" ; + sc:description "‘RB-Pred’ web-based server, a first of its kind worldwide, is an attempt for forecasting leaf blast severity based on the weather variables which may help the farmers and plant pathologists in timely prediction of rice blast in their areas." ; + sc:featureList edam:operation_2945 ; + sc:name "rbpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/rbpred/home.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0602, @@ -400431,7 +422217,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot sc:url "https://github.com/SCBB-LAB/RBPSpot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0160, edam:topic_3474, @@ -400447,7 +422233,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot sc:url "http://www.csbio.sjtu.edu.cn/bioinf/RBPsuite/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0099, edam:topic_0634, @@ -400464,7 +422250,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot sc:url "http://www.rbptd.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0659, @@ -400478,7 +422264,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot sc:url "http://166.111.152.91/RBRIdent.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3299 ; @@ -400495,7 +422281,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot biotools:primaryContact "Vladimir Minin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_3125, @@ -400511,7 +422297,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot sc:url "http://ahsoka.u-strasbg.fr/rbscore/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -400529,7 +422315,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot biotools:primaryContact "Soo-heang Eo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:description "Program that takes a set of 454 read and quality files as well as a consensus assembly for those reads and corrects for known 454 error modes such as homopolymer indels and carry forward/incomplete extension (CAFIE)." ; @@ -400542,7 +422328,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot sc:url "http://www.broadinstitute.org/scientific-community/science/projects/viral-genomics/rc454" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3307, @@ -400557,7 +422343,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot sc:url "http://erilllab.umbc.edu/research/software/201-2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -400582,7 +422368,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot sc:url "https://github.com/prabhakarlab/RCAv2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -400602,7 +422388,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot biotools:primaryContact "Jonathan Cairns" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -400618,8 +422404,31 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot sc:softwareHelp ; sc:url "http://rcade.ccbr.utoronto.ca/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3127, + edam:topic_3168, + edam:topic_3293 ; + sc:citation , + "pmcid:PMC8826011", + "pubmed:34864895" ; + sc:description "An R package for visualising homologous recombinations in bacterial genomes." ; + sc:featureList edam:operation_0335, + edam:operation_0451, + edam:operation_0567, + edam:operation_3478, + edam:operation_3745 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "RCandy" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ChrispinChaguza/RCandy" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -400636,22 +422445,22 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3585" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3754" ; - sc:name "GO-term enrichment data" ; - sc:sameAs "http://edamontology.org/data_3754" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3754" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "GO-term enrichment data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Workflow" ; @@ -400683,14 +422492,14 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_1638" ; + sc:name "Processed microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -400713,7 +422522,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot "Lars Kaderali" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3070, @@ -400732,20 +422541,39 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot sc:operatingSystem "Windows" ; sc:url "https://github.com/lzbbest/Rhythmic-Component-Analysis-Tool" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0176 ; + sc:citation , + "pubmed:35020783" ; + sc:description "Memory-Efficient Density Peaks Clustering of Long Molecular Dynamics." ; + sc:featureList edam:operation_0244, + edam:operation_2476, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "RCDPeaks" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/LQCT/RCDPeaks.git" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0990" ; - sc:name "Compound name" ; - sc:sameAs "http://edamontology.org/data_0990" ] ; + sc:additionalType "http://edamontology.org/data_0990" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Compound name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0993" ; - sc:name "Drug identifier" ; - sc:sameAs "http://edamontology.org/data_0993" ], + sc:additionalType "http://edamontology.org/data_2899" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Drug name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2899" ; - sc:name "Drug name" ; - sc:sameAs "http://edamontology.org/data_2899" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0993" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Drug identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -400770,7 +422598,7 @@ RBP2GO is a comprehensive database dedicated to the analysis of RNA-binding prot "Vinodh Rajapakse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -400789,14 +422617,14 @@ RCGAToolbox is a MATLAB toolbox that contains two real-coded genetic algorithms a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3110" ; - sc:name "Raw microarray data" ; - sc:sameAs "http://edamontology.org/data_3110" ] ; + sc:additionalType "http://edamontology.org/data_3110" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Raw microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Processed microarray data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518, @@ -400816,18 +422644,18 @@ RCGAToolbox is a MATLAB toolbox that contains two real-coded genetic algorithms a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_2035" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -400847,7 +422675,7 @@ RCGAToolbox is a MATLAB toolbox that contains two real-coded genetic algorithms biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -400866,7 +422694,7 @@ RCGAToolbox is a MATLAB toolbox that contains two real-coded genetic algorithms "Nima Aghaeepour" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0176, @@ -400883,7 +422711,7 @@ RCGAToolbox is a MATLAB toolbox that contains two real-coded genetic algorithms sc:url "http://wishart.biology.ualberta.ca/rci/cgi-bin/rci_cgi_1_d.py" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, edam:topic_3170, @@ -400899,7 +422727,7 @@ Rcirc helps to identify the coding ability of circRNA and visualize the feature sc:url "https://github.com/PSSUN/Rcirc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_3308 ; @@ -400918,7 +422746,7 @@ Rcirc helps to identify the coding ability of circRNA and visualize the feature biotools:primaryContact "Sara Aibar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, edam:topic_2640, @@ -400942,7 +422770,7 @@ RCK - is a method for Reconstruction of clone- and haplotype-specific Cancer Kar sc:url "https://github.com/raphael-group/RCK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -400958,7 +422786,7 @@ RCK - is a method for Reconstruction of clone- and haplotype-specific Cancer Kar sc:url "http://mspc.bii.a-star.edu.sg/minhn/rclick.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -400975,7 +422803,7 @@ RCK - is a method for Reconstruction of clone- and haplotype-specific Cancer Kar sc:url "http://phegenex-umh.cs.umn.edu:8080/PheGenEx/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3384, edam:topic_3404, @@ -400987,7 +422815,7 @@ RCK - is a method for Reconstruction of clone- and haplotype-specific Cancer Kar sc:url "http://rcnn.modelderm.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0780, @@ -401002,7 +422830,7 @@ RCK - is a method for Reconstruction of clone- and haplotype-specific Cancer Kar biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, @@ -401017,7 +422845,7 @@ RCK - is a method for Reconstruction of clone- and haplotype-specific Cancer Kar sc:url "https://github.com/mourisl/Rcorrector/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -401033,7 +422861,7 @@ RCK - is a method for Reconstruction of clone- and haplotype-specific Cancer Kar sc:url "http://bioinfo.cs.technion.ac.il/people/zohar/RCoS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0160, @@ -401050,22 +422878,22 @@ RCK - is a method for Reconstruction of clone- and haplotype-specific Cancer Kar a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1196" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_1196" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2854" ; - sc:name "Position-specific scoring matrix" ; - sc:sameAs "http://edamontology.org/data_2854" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2854" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Position-specific scoring matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0078, @@ -401084,8 +422912,33 @@ RCK - is a method for Reconstruction of clone- and haplotype-specific Cancer Kar sc:url "http://bioconductor.org/packages/release/bioc/html/Rcpi.html" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0820, + edam:topic_0821, + edam:topic_2814, + edam:topic_3510 ; + sc:citation , + "pmcid:PMC8826025", + "pubmed:34864908" ; + sc:description "Improved Annotation, Search, and Visualization of Membrane Protein Structures Archived in the PDB." ; + sc:featureList edam:operation_0310, + edam:operation_0337, + edam:operation_2421, + edam:operation_3431, + edam:operation_3767 ; + sc:isAccessibleForFree true ; + sc:name "RCSB Protein Data Bank" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://rcsb.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2275, @@ -401098,7 +422951,7 @@ RCK - is a method for Reconstruction of clone- and haplotype-specific Cancer Kar sc:url "http://www.rcsb.org/pdb/static.do?p=mobile/RCSBapp.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -401114,7 +422967,7 @@ RCK - is a method for Reconstruction of clone- and haplotype-specific Cancer Kar . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3308 ; @@ -401130,7 +422983,7 @@ Robust Cell Type Decomposition (RCTD).""" ; sc:url "https://github.com/dmcable/RCTD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -401147,8 +423000,27 @@ Robust Cell Type Decomposition (RCTD).""" ; biotools:primaryContact , "Qiang Hu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0203, + edam:topic_0602 ; + sc:citation ; + sc:description "RCX – an R package adapting the Cytoscape Exchange format for biological networks." ; + sc:featureList edam:operation_2422, + edam:operation_3435, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "RCX" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/frankkramer-lab/RCX" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -401168,7 +423040,7 @@ Robust Cell Type Decomposition (RCTD).""" ; "Tanja Muetze" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -401186,7 +423058,7 @@ Robust Cell Type Decomposition (RCTD).""" ; biotools:primaryContact "Paul Shannon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -401207,7 +423079,7 @@ Robust Cell Type Decomposition (RCTD).""" ; biotools:primaryContact "Paul Shannon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3063, @@ -401228,15 +423100,17 @@ Robust Cell Type Decomposition (RCTD).""" ; biotools:primaryContact "Libby Wood" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3063, edam:topic_3325, edam:topic_3473 ; - sc:citation , + sc:citation , + , "pmcid:PMC4124112", - "pubmed:25029978" ; + "pubmed:25029978", + "pubmed:35178824" ; sc:description "An online tool for diagnosis and gene discovery in rare disease research. The platform features allow identifying disease-causing mutations in rare disease patients and linking them with detailed clinical information." ; sc:featureList edam:operation_2403, edam:operation_2422, @@ -401249,7 +423123,7 @@ Robust Cell Type Decomposition (RCTD).""" ; sc:url "https://platform.rd-connect.eu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_3063, @@ -401278,7 +423152,7 @@ It also provides information about sample collections and studies done on the re sc:url "https://samples.rd-connect.eu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3315 ; @@ -401293,7 +423167,7 @@ It also provides information about sample collections and studies done on the re biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3325, @@ -401311,7 +423185,7 @@ DNA sequencing has allowed for the discovery of the genetic cause for a consider sc:url "http://www.unimd.org/RDAD/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3077 ; @@ -401331,7 +423205,7 @@ DNA sequencing has allowed for the discovery of the genetic cause for a consider biotools:primaryContact "Cristobal Fresno" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, edam:topic_0749, @@ -401352,8 +423226,31 @@ A fully featured admin theme which can be used to build CRM, CMS, etc.""" ; sc:name "RDb2C2" ; sc:url "http://structpred.life.tsinghua.edu.cn/rdb2c2.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_2885, + edam:topic_3175, + edam:topic_3474, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC8504719", + "pubmed:34634042" ; + sc:description "RDBKE is a breakpoint enhancment pipeline for read-depth (RD) based SV callers using deep segmenation model UNet" ; + sc:featureList edam:operation_2426, + edam:operation_3196, + edam:operation_3359 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "RDBKE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/yaozhong/deepIntraSV" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0593, @@ -401370,7 +423267,7 @@ A fully featured admin theme which can be used to build CRM, CMS, etc.""" ; sc:url "http://www.cs.duke.edu/donaldlab/rdcpanda.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0654, @@ -401383,7 +423280,7 @@ A fully featured admin theme which can be used to build CRM, CMS, etc.""" ; sc:url "http://ccb.jhu.edu/software/rddChecker/index.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0082, edam:topic_3170, @@ -401399,7 +423296,7 @@ A fully featured admin theme which can be used to build CRM, CMS, etc.""" ; sc:url "http://epigenomics.snu.ac.kr/RDDpred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3297, @@ -401418,7 +423315,7 @@ A desktop application for transform RDF files to JSON files.""" ; sc:url "https://github.com/lyotvincent/rdf2json" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_2259, @@ -401435,7 +423332,7 @@ A desktop application for transform RDF files to JSON files.""" ; sc:url "http://www.bioinformatics.org/rdfscape/wiki/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3336, @@ -401455,7 +423352,7 @@ A desktop application for transform RDF files to JSON files.""" ; biotools:primaryContact "Thomas Thurnherr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -401473,7 +423370,7 @@ A desktop application for transform RDF files to JSON files.""" ; "Philipp Boss" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3520 ; @@ -401493,7 +423390,7 @@ A desktop application for transform RDF files to JSON files.""" ; biotools:primaryContact "Steffen Neumann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, edam:topic_0625, @@ -401511,7 +423408,7 @@ Disease NameDisorder IDOrpha Code.""" ; sc:url "http://rdmap.nbscn.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3056, edam:topic_3796 ; @@ -401530,7 +423427,7 @@ A fully worked example for how to use DMC can be found at dmc_example.md.""" ; sc:url "https://github.com/silastittes/rdmc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2269, @@ -401549,7 +423446,7 @@ A fully worked example for how to use DMC can be found at dmc_example.md.""" ; biotools:primaryContact "Konstantin A. Blagodatskikh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -401568,7 +423465,7 @@ Japanese Rare Disease Models & Mechanisms Network.""" ; sc:url "https://j-rdmm.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0607, @@ -401585,7 +423482,7 @@ Japanese Rare Disease Models & Mechanisms Network.""" ; biotools:primaryContact "Emily Jefferson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -401600,7 +423497,7 @@ Japanese Rare Disease Models & Mechanisms Network.""" ; sc:url "http://www.cemb.edu.pk/sw.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -401620,7 +423517,7 @@ Japanese Rare Disease Models & Mechanisms Network.""" ; biotools:primaryContact "RDP Staff" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0781, edam:topic_3127, @@ -401639,7 +423536,7 @@ Japanese Rare Disease Models & Mechanisms Network.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation ; @@ -401655,7 +423552,7 @@ Japanese Rare Disease Models & Mechanisms Network.""" ; biotools:primaryContact "RDP Staff" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -401681,7 +423578,7 @@ Japanese Rare Disease Models & Mechanisms Network.""" ; biotools:primaryContact "RDRF Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -401701,7 +423598,7 @@ Japanese Rare Disease Models & Mechanisms Network.""" ; biotools:primaryContact "Christoph Bartenhagen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0202, @@ -401718,7 +423615,7 @@ rdrugtrajectory can produce the data structure necessary to perform a mean cumul sc:url "https://github.com/acnash/rdrugtrajectory" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_2885, @@ -401740,7 +423637,7 @@ rdrugtrajectory can produce the data structure necessary to perform a mean cumul sc:url "https://github.com/dbespiatykh/RDscan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0821, edam:topic_3292 ; @@ -401759,7 +423656,7 @@ rdrugtrajectory can produce the data structure necessary to perform a mean cumul biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0219, @@ -401772,8 +423669,32 @@ rdrugtrajectory can produce the data structure necessary to perform a mean cumul sc:softwareHelp ; sc:url "http://sourceforge.net/projects/reannotator/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0128, + edam:topic_0204, + edam:topic_0749, + edam:topic_3169 ; + sc:citation , + "pubmed:35325066" ; + sc:description "A tool for non-coding genomic regions functional enrichment analysis based on Regulatory Elements Gene Ontology Annotation (RE-GOA). Resources for RE-GOA in mouse and human are availible." ; + sc:featureList edam:operation_1781, + edam:operation_2436, + edam:operation_2437, + edam:operation_3672, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "RE-GOA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/AMSSwanglab/RE-GOA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -401795,8 +423716,31 @@ rdrugtrajectory can produce the data structure necessary to perform a mean cumul biotools:primaryContact "Dr. Chin Lung Lu", "Dr. Chuan Yi Tang" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3386, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9257167", + "pubmed:35814243" ; + sc:description "A Unique Project Collecting Expertise on New Approach Methodologies." ; + sc:featureList edam:operation_0224, + edam:operation_3454, + edam:operation_3455 ; + sc:isAccessibleForFree true ; + sc:name "RE-Place" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.RE-Place.be" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0622, @@ -401816,7 +423760,7 @@ rdrugtrajectory can produce the data structure necessary to perform a mean cumul biotools:primaryContact "Ulykbek Kairov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3179 ; sc:citation ; @@ -401830,8 +423774,25 @@ rdrugtrajectory can produce the data structure necessary to perform a mean cumul sc:softwareVersion "1.1" ; sc:url "http://www.bio.ifi.lmu.de/REA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0199, + edam:topic_3334, + edam:topic_3379 ; + sc:citation , + "pmcid:PMC9205086", + "pubmed:35710503" ; + sc:description "The ReACH registry collected clinical information from 51 pediatric ACH patients during its six years of existence, corresponding to ~ 60% of ACH patients aged 3 months to 14 years that were anticipated to live in the Czechia and Slovak Republic" ; + sc:name "ReACH" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.achondroplasia-registry.cz" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, edam:topic_3314, @@ -401848,10 +423809,9 @@ ReactionCode is a new versatile format for searching, analysis, classification, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3314, @@ -401873,7 +423833,7 @@ ReactionCode is a new versatile format for searching, analysis, classification, sc:url "http://www.reactiondataextractor.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -401889,7 +423849,7 @@ ReactionCode is a new versatile format for searching, analysis, classification, sc:url "https://github.com/CreativeCodingLab/ReactionFlow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3407 ; @@ -401909,7 +423869,7 @@ ReactionCode is a new versatile format for searching, analysis, classification, biotools:primaryContact "Lincoln Stein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0602, @@ -401928,14 +423888,12 @@ ReactionCode is a new versatile format for searching, analysis, classification, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3490" ; - sc:name "Chemical structure sketch" ; - sc:sameAs "http://edamontology.org/data_3490" ] ; + sc:additionalType "http://edamontology.org/data_3490" ; + sc:name "Chemical structure sketch" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0962" ; + sc:name "Small molecule report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258 ; @@ -401956,7 +423914,7 @@ ReactionCode is a new versatile format for searching, analysis, classification, biotools:primaryContact "Janna Hastings" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation , @@ -401978,7 +423936,7 @@ ReactionCode is a new versatile format for searching, analysis, classification, biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, edam:topic_2229, @@ -402001,22 +423959,22 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1027" ; - sc:name "Gene ID (NCBI)" ; - sc:sameAs "http://edamontology.org/data_1027" ] ; + sc:additionalType "http://edamontology.org/data_1027" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene ID (NCBI)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0862" ; - sc:name "Dotplot" ; - sc:sameAs "http://edamontology.org/data_0862" ], + sc:additionalType "http://edamontology.org/data_0862" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Dotplot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -402036,7 +423994,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, edam:topic_3172, @@ -402051,7 +424009,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using sc:url "https://yufree.github.io/pmd/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3344, @@ -402068,7 +424026,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using biotools:primaryContact "Bill Baxter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Web application" ; sc:applicationSubCategory edam:topic_0102, @@ -402086,7 +424044,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using biotools:primaryContact "John Del Gaizo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3070, @@ -402105,7 +424063,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using biotools:primaryContact "Evan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_2885, @@ -402119,7 +424077,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using sc:url "http://github.com/DecodeGenetics/read_haps" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -402135,7 +424093,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using biotools:primaryContact "Veli Makinen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121 ; @@ -402156,8 +424114,30 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using sc:url "http://bioconductor.org/packages/release/bioc/html/readat.html" ; biotools:primaryContact "Richard Cotton" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3168, + edam:topic_3277 ; + sc:citation , + "pmcid:PMC9235500", + "pubmed:35758774" ; + sc:description "Precise and scalable adaptive sampling for nanopore sequencing." ; + sc:featureList edam:operation_3185, + edam:operation_3192, + edam:operation_3198, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ReadBouncer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.com/dacs-hpi/readbouncer" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3572 ; @@ -402173,22 +424153,20 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_3496" ; + sc:encodingFormat "http://edamontology.org/format_2545" ; + sc:name "RNA sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3496" ; - sc:name "RNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3496" ] ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Data reference" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ], + sc:additionalType "http://edamontology.org/data_3112" ; + sc:name "Gene expression matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:name "Gene expression profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0203, @@ -402207,14 +424185,14 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -402230,7 +424208,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, edam:topic_3168, @@ -402247,7 +424225,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using sc:url "https://www.github.com/looselab/readfish" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -402264,7 +424242,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using biotools:primaryContact "Lajos Varga" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -402282,7 +424260,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using biotools:primaryContact "Johan Karlsson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -402297,7 +424275,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using sc:url "http://gibk26.bio.kyutech.ac.jp/jouhou/readout/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3519 ; @@ -402317,7 +424295,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using biotools:primaryContact "James Perkins" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3293, @@ -402334,7 +424312,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using sc:url "http://www.cbs.dtu.dk/~dhany/reads2type.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0654, @@ -402350,14 +424328,12 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:author "Don Gilbert", @@ -402378,7 +424354,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using biotools:primaryContact "Web Production" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3314, @@ -402397,14 +424373,14 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "DNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622 ; @@ -402421,14 +424397,14 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3712" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -402442,14 +424418,14 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0122, edam:topic_0797, @@ -402471,7 +424447,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using sc:url "http://readxplorer.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0196, @@ -402487,7 +424463,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using sc:url "https://github.com/chengyuan/reago-1.1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -402504,24 +424480,51 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using sc:url "https://nms.kcl.ac.uk/informatics/projects/real/?id=man" ; biotools:primaryContact "Dr. Solon P. Pissis" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2805" ; + sc:name "GeneSNP ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script", + "Web application" ; + sc:applicationSubCategory edam:topic_3170, + edam:topic_3173, + edam:topic_3308, + edam:topic_3517, + edam:topic_3518 ; + sc:citation , + "pubmed:35863045" ; + sc:description "REALGAR is a an app that integrates disease-specific, tissue-specific omics results into a tool for designing functional validation studies. REALGAR uses asthma as a disease model to demonstrate how integrating omics results with GWAS data leads to improved understanding of gene associations." ; + sc:featureList edam:operation_2428, + edam:operation_3197, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "REALGAR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://realgar.org/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2084" ; - sc:name "Nucleic acid report" ; - sc:sameAs "http://edamontology.org/data_2084" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1332" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_2084" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Nucleic acid report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2787" ; - sc:name "NCBI genome accession" ; - sc:sameAs "http://edamontology.org/data_2787" ] ; + sc:additionalType "http://edamontology.org/data_2787" ; + sc:name "NCBI genome accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3299 ; @@ -402536,8 +424539,32 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using sc:softwareHelp ; sc:url "https://realphy.unibas.ch/fcgi/realphy" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2275, + edam:topic_3336, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pubmed:34619030" ; + sc:description "Toward Enhancing the Precision of Top Hits in Ligand-Based Virtual Screening of Drug Leads from Large Compound Databases." ; + sc:featureList edam:operation_3659, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:name "RealVS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://noveldelta.com/RealVS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -402556,7 +424583,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using biotools:primaryContact "Mary Todd Bergman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_3299, @@ -402569,7 +424596,7 @@ The ReactomeGSA project supports multi-omics, comparative pathway analyses using sc:url "https://github.com/dorolin/rearrvisr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3382, edam:topic_3520 ; @@ -402588,7 +424615,7 @@ Rapid Editable Analysis of Vessel Elements Routine.""" ; sc:url "https://github.com/uva-peirce-cottler-lab/public_REAVER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -402606,7 +424633,7 @@ Rapid Editable Analysis of Vessel Elements Routine.""" ; biotools:primaryContact "Karl J. Dykema" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3174, @@ -402622,7 +424649,7 @@ Rapid Editable Analysis of Vessel Elements Routine.""" ; sc:url "http://faculty.wcas.northwestern.edu/~hji403/REBACCA.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Rebaler is a program for conducting reference-based assemblies using long reads. It relies mainly on minimap2 for alignment and Racon for making consensus sequences." ; sc:featureList edam:operation_0524 ; sc:name "rebaler" ; @@ -402630,7 +424657,7 @@ Rapid Editable Analysis of Vessel Elements Routine.""" ; sc:url "https://github.com/rrwick/Rebaler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0821, @@ -402652,7 +424679,7 @@ Rapid Editable Analysis of Vessel Elements Routine.""" ; biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3125 ; sc:citation , @@ -402683,14 +424710,14 @@ Rapid Editable Analysis of Vessel Elements Routine.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -402705,7 +424732,7 @@ Rapid Editable Analysis of Vessel Elements Routine.""" ; sc:url "http://www.ms-utils.org/recal2.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2815 ; sc:citation , @@ -402714,8 +424741,33 @@ Rapid Editable Analysis of Vessel Elements Routine.""" ; sc:name "RecapNet" ; sc:url "https://github.com/tianwangbuaa/RecapNet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_3170, + edam:topic_3295, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8744680", + "pubmed:34815308" ; + sc:description "Comprehensive determination of transcription start sites derived from all RNA polymerases using ReCappable-seq." ; + sc:featureList edam:operation_0314, + edam:operation_0440, + edam:operation_3192, + edam:operation_3216 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ReCappable-seq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://genome.ucsc.edu/s/rezo/ReCappable-seq" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3518 ; @@ -402728,7 +424780,7 @@ Rapid Editable Analysis of Vessel Elements Routine.""" ; sc:url "https://github.com/holyzews/RecBic/tree/master/RecBic/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0218, edam:topic_0769, @@ -402747,7 +424799,7 @@ Coordination ellipsis is a linguistic phenomenon particularly abundant in scienc sc:url "https://github.com/chiyuan1126/RECEEM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_2640, @@ -402771,7 +424823,7 @@ receptLoss identifies genes whose expression is lost in subsets of tumors relati sc:url "https://github.com/dpique/receptLoss" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0659, @@ -402789,7 +424841,7 @@ receptLoss identifies genes whose expression is lost in subsets of tumors relati sc:url "https://github.com/ryuu90/ReCGBM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0632, edam:topic_2269, @@ -402805,7 +424857,7 @@ receptLoss identifies genes whose expression is lost in subsets of tumors relati sc:url "https://cosylab.iiitd.edu.in/recipedb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2828, @@ -402824,7 +424876,7 @@ reciprocalspaceship provides a pandas-style interface for analyzing and manipula sc:url "https://github.com/Hekstra-Lab/reciprocalspaceship" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3384, @@ -402839,7 +424891,7 @@ reciprocalspaceship provides a pandas-style interface for analyzing and manipula sc:url "https://github.com/wcmc-its/reciter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3293, @@ -402853,7 +424905,7 @@ reciprocalspaceship provides a pandas-style interface for analyzing and manipula sc:url "http://www.stats.ox.ac.uk/~myers/RecMin.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -402875,14 +424927,12 @@ reciprocalspaceship provides a pandas-style interface for analyzing and manipula a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation , @@ -402912,7 +424962,7 @@ reciprocalspaceship provides a pandas-style interface for analyzing and manipula sc:url "http://emboss.open-bio.org/rel/rel6/apps/recoder.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -402935,17 +424985,18 @@ reciprocalspaceship provides a pandas-style interface for analyzing and manipula a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0907" ; + sc:encodingFormat "http://edamontology.org/format_3977" ; + sc:name "Protein family report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0085 ; sc:author ; + sc:citation ; sc:description "A tool for domain based annotation with databases from the Conserved Domains Database." ; sc:featureList edam:operation_3672 ; sc:isAccessibleForFree true ; @@ -402954,11 +425005,11 @@ reciprocalspaceship provides a pandas-style interface for analyzing and manipula sc:operatingSystem "Linux", "Mac" ; sc:softwareHelp ; - sc:softwareVersion "1.4.4" ; + sc:softwareVersion "1.7.4" ; sc:url "https://github.com/iquasere/reCOGnizer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3474 ; @@ -402974,7 +425025,7 @@ reciprocalspaceship provides a pandas-style interface for analyzing and manipula biotools:primaryContact "Kaijun Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3452 ; sc:citation ; @@ -402989,8 +425040,27 @@ reciprocalspaceship provides a pandas-style interface for analyzing and manipula sc:url "https://github.com/arcosuc3m/recoittv" ; biotools:primaryContact "Manuel Desco" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2269, + edam:topic_3518 ; + sc:citation ; + sc:description "Batch effect removal in large-scale, multi-source omics data integration." ; + sc:featureList edam:operation_0314, + edam:operation_3435, + edam:operation_3658 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "reComBat" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BorgwardtLab/reComBat.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3127 ; @@ -403009,7 +425079,7 @@ reciprocalspaceship provides a pandas-style interface for analyzing and manipula sc:url "https://github.com/isglobal-brge/recombClust" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -403030,8 +425100,31 @@ reciprocalspaceship provides a pandas-style interface for analyzing and manipula sc:softwareHelp ; sc:url "http://www.informatics.jax.org/home/recombinase" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0196, + edam:topic_0621, + edam:topic_0625, + edam:topic_0749 ; + sc:citation , + "pmcid:PMC9119626", + "pubmed:35533184" ; + sc:description "A generalized computational framework for automatic high-throughput gamete genotyping and tetrad-based recombination analysis." ; + sc:featureList edam:operation_0415, + edam:operation_0525, + edam:operation_2238, + edam:operation_3192, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "RecombineX" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/yjx1217/RecombineX" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3384, edam:topic_3444, @@ -403050,7 +425143,7 @@ The Research Consortium for Medical Image Analysis (RECOMIA) is a not for profit sc:url "http://www.recomia.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0749, @@ -403070,7 +425163,7 @@ The Research Consortium for Medical Image Analysis (RECOMIA) is a not for profit biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation "pubmed:18057021" ; @@ -403082,7 +425175,7 @@ The Research Consortium for Medical Image Analysis (RECOMIA) is a not for profit biotools:primaryContact "Zimin A.V." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2885, edam:topic_3168, @@ -403103,7 +425196,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive sc:url "https://github.com/rghu/reconCNV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3070, @@ -403122,7 +425215,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive biotools:primaryContact "Adam Hoppe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -403142,7 +425235,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive biotools:primaryContact "Shrinivas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -403161,7 +425254,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive biotools:primaryContact "Orly Liba" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053, @@ -403175,7 +425268,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive sc:url "http://www.wageningenur.nl/en/show/RECORD.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "Probabilistic tag count error correction for next generation sequencing data (Solexa/Illumina)." ; @@ -403189,7 +425282,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive biotools:primaryContact "Edward Wijaya" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -403210,7 +425303,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive "Kasper D. Hansen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -403232,7 +425325,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive biotools:primaryContact "Leonardo Collado-Torres" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -403249,7 +425342,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive sc:url "http://recountdb.cbrc.jp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -403267,7 +425360,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive biotools:primaryContact "Panagiotis Moulos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -403285,7 +425378,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive biotools:primaryContact "Ajitesh Srivastava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -403303,7 +425396,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive "Paul Medvedev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation ; @@ -403318,7 +425411,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive biotools:primaryContact "Mikkel Heide Schierup" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3053, @@ -403335,7 +425428,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive biotools:primaryContact "Wandrille Duchemin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -403349,7 +425442,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive sc:url "http://bioinf.spbau.ru/en/rectangles" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3304 ; @@ -403366,7 +425459,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive biotools:primaryContact "Gaoxiang Ouyang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0099, @@ -403385,7 +425478,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive "Xing Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0099, @@ -403404,7 +425497,7 @@ ReconCNV has been developed to overcome this challenge by providing interactive "Xun Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_2885, @@ -403424,7 +425517,7 @@ Red clover (Trifolium pratense L.) is a diploid, naturally cross-pollinated, coo sc:url "https://github.com/WLpython19/RedClover" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, edam:topic_3170, @@ -403445,7 +425538,7 @@ Red Panda employs the unique information found in scRNA-seq to increase accuracy sc:url "https://github.com/adambioi/red_panda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3125 ; sc:citation , @@ -403475,7 +425568,7 @@ Red Panda employs the unique information found in scRNA-seq to increase accuracy sc:url "http://emboss.open-bio.org/rel/rel6/apps/redata.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_3071, @@ -403496,7 +425589,7 @@ Red Panda employs the unique information found in scRNA-seq to increase accuracy sc:url "https://www.project-redcap.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2269, @@ -403519,7 +425612,7 @@ Red Panda employs the unique information found in scRNA-seq to increase accuracy sc:url "https://github.com/aranyics/ReDCM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0154, edam:topic_0176, @@ -403538,7 +425631,7 @@ Nuclear Magnetic Resonance (NMR) spectroscopy is one of the two primary experime sc:url "https://bitbucket.org/hvalafar/redcraft/src/master/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2259, @@ -403556,14 +425649,14 @@ Nuclear Magnetic Resonance (NMR) spectroscopy is one of the two primary experime a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3166" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092 ; @@ -403584,7 +425677,7 @@ Nuclear Magnetic Resonance (NMR) spectroscopy is one of the two primary experime biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -403607,14 +425700,14 @@ Nuclear Magnetic Resonance (NMR) spectroscopy is one of the two primary experime a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:9514112" ; @@ -403631,7 +425724,7 @@ Nuclear Magnetic Resonance (NMR) spectroscopy is one of the two primary experime sc:url "http://cbs.dtu.dk/services/RedHom/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -403651,7 +425744,7 @@ Nuclear Magnetic Resonance (NMR) spectroscopy is one of the two primary experime biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3292, @@ -403666,7 +425759,7 @@ Nuclear Magnetic Resonance (NMR) spectroscopy is one of the two primary experime sc:url "http://www.cosbi.eu/research/prototypes/redi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0605, edam:topic_3336, @@ -403690,7 +425783,7 @@ A portal for estimating Anti-SARS-CoV-2 activities.""" ; sc:url "http://drugcentral.org/Redial a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3308 ; @@ -403707,8 +425800,29 @@ A portal for estimating Anti-SARS-CoV-2 activities.""" ; sc:url "http://srv00.recas.ba.infn.it/py_script/REDIdb/" ; biotools:primaryContact "Ernesto Picardi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0659, + edam:topic_0749, + edam:topic_2885, + edam:topic_3697 ; + sc:citation ; + sc:description "A Python GUI for In-Silico Restriction Digestion Analysis of Genes or Complete Genome Sequences." ; + sc:featureList edam:operation_0337, + edam:operation_0365, + edam:operation_3200 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "REDigest" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/abhijeetsingh1704/REDigest" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, @@ -403733,16 +425847,35 @@ A portal for estimating Anti-SARS-CoV-2 activities.""" ; sc:softwareHelp ; sc:url "http://srv00.recas.ba.infn.it/atlas/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_2269 ; + sc:author , + "Laura Jareno" ; + sc:citation , + "pubmed:34664620" ; + sc:description "Rediscover is an R package to identify mutually exclusive mutations. Rediscover is an algorithm developed to identify mutually exclusive genomic events. Its main contribution is a statistical analysis based on the Poisson-Binomial (PB) distribution to take into account the mutation rate of genes and samples. Discover is very effective for identifying mutually exclusive mutations at the expense of speed in large datasets: the Poisson-Binomial is computationally costly to estimate, and checking all the potential mutually exclusive alterations requires millions of tests." ; + sc:featureList edam:operation_3435, + edam:operation_3659 ; + sc:license "Artistic-2.0" ; + sc:name "Rediscover" ; + sc:softwareHelp , + ; + sc:url "https://cran.r-project.org/package=Rediscover" ; + biotools:primaryContact . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation , @@ -403767,7 +425900,7 @@ A portal for estimating Anti-SARS-CoV-2 activities.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, edam:topic_3168 ; @@ -403779,8 +425912,23 @@ A portal for estimating Anti-SARS-CoV-2 activities.""" ; sc:name "RedOak" ; sc:url "https://gitlab.info-ufr.univ-montp2.fr/DoccY/RedOak" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0092, + edam:topic_0622 ; + sc:description "re-DOT-able is a desktop application which allows the comparison of two sets of DNA/RNA sequences through the creation of an interactive dot plot." ; + sc:featureList edam:operation_0491 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "redotable" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.bioinformatics.babraham.ac.uk/projects/redotable/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2259, @@ -403797,7 +425945,7 @@ A portal for estimating Anti-SARS-CoV-2 activities.""" ; sc:url "http://www.igb.uci.edu/tools/sb/metabolic-modeling/81-redoxmech.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, edam:topic_3170, @@ -403816,7 +425964,7 @@ redPATH reconstructs the pseudo development time of cell lineages in single-cell sc:url "https://github.com/tinglabs/redPATH" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176 ; sc:citation "pubmed:21609950" ; @@ -403834,7 +425982,7 @@ redPATH reconstructs the pseudo development time of cell lineages in single-cell biotools:primaryContact "Assistance" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -403853,7 +426001,7 @@ redPATH reconstructs the pseudo development time of cell lineages in single-cell biotools:primaryContact "Lihua Julie Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -403870,13 +426018,25 @@ redPATH reconstructs the pseudo development time of cell lineages in single-cell sc:name "REDUCE" ; sc:url "http://bussemaker.bio.columbia.edu/reduce/" . - a sc:SoftwareApplication ; - sc:description "CD Genomics is offering reduced representation bisulfite sequencing (RRBS) service at single-nucleotide resolution by reducing the amount of sequencing required while capturing the majority of promoters and other relevant genomic regions. RRBS is favorable for biomarker discovery by the identification and analysis of differentially methylated regions (DMRs) between samples." ; - sc:name "Reduced Representation Bisulfite Sequencing" ; - sc:url "https://www.cd-genomics.com/Reduced-Representation-Bisulfite-Sequencing.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0769, + edam:topic_3382 ; + sc:citation , + "pubmed:35532083" ; + sc:description "Robustness Evaluation and Enhancement Toolbox for Computational Pathology." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "REET" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/alexjfoote/reetoolbox" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749 ; @@ -403896,7 +426056,7 @@ redPATH reconstructs the pseudo development time of cell lineages in single-cell biotools:primaryContact "TakeyaKasukawa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -403913,7 +426073,7 @@ redPATH reconstructs the pseudo development time of cell lineages in single-cell biotools:primaryContact "Antonio Delsol" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "WashU Reference Coverage tool for analyzing the depth, breadth, and topology of sequencing coverage." ; @@ -403924,7 +426084,7 @@ redPATH reconstructs the pseudo development time of cell lineages in single-cell biotools:primaryContact "RefCov Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3519 ; sc:citation ; @@ -403941,7 +426101,7 @@ redPATH reconstructs the pseudo development time of cell lineages in single-cell biotools:primaryContact "Elisa Mori" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091, @@ -403960,7 +426120,7 @@ redPATH reconstructs the pseudo development time of cell lineages in single-cell biotools:primaryContact "Will Dampier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3168, @@ -403976,7 +426136,7 @@ redPATH reconstructs the pseudo development time of cell lineages in single-cell sc:url "http://sourceforge.net/projects/refinehmm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:description "RefineM is a set of tools for improving population genomes. It provides methods designed to improve the completeness of a genome along with methods for identifying and removing contamination." ; sc:license "GPL-3.0" ; @@ -403984,7 +426144,7 @@ redPATH reconstructs the pseudo development time of cell lineages in single-cell sc:url "https://github.com/dparks1134/RefineM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_3315, @@ -404002,12 +426162,16 @@ Recent advances in long-read sequencing have the potential to produce more compl sc:url "https://github.com/AppliedBioinformatics/RefKA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_1317, edam:topic_2269 ; - sc:citation ; + sc:citation , + , + "pmcid:PMC3069751", + "pubmed:15299926", + "pubmed:21460454" ; sc:description "Maximum likelihood refinement of a macromolecular structure against X-ray diffraction data." ; sc:featureList edam:operation_0322, edam:operation_2238, @@ -404023,7 +426187,7 @@ Recent advances in long-read sequencing have the potential to produce more compl sc:url "http://www2.mrc-lmb.cam.ac.uk/groups/murshudov/content/refmac/refmac.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -404044,22 +426208,21 @@ Recent advances in long-read sequencing have the potential to produce more compl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ], + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Mathematical model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_0950" ; + sc:name "Mathematical model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation , @@ -404076,14 +426239,14 @@ Recent advances in long-read sequencing have the potential to produce more compl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -404102,26 +426265,26 @@ Recent advances in long-read sequencing have the potential to produce more compl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3071 ; @@ -404139,7 +426302,7 @@ Recent advances in long-read sequencing have the potential to produce more compl biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -404157,7 +426320,7 @@ Recent advances in long-read sequencing have the potential to produce more compl biotools:primaryContact "Kai-Ming Chang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, @@ -404176,8 +426339,17 @@ ReframeDB is an open and extendable drug repurposing database and screening set sc:name "ReFRAME" ; sc:url "https://reframedb.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "ReFramed implements many constraint-based simulation methods (see list below), and contains interfaces to other libraries of the COBRA ecosystem including escher, cobrapy, and optlang." ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "reFramed" ; + sc:softwareHelp ; + sc:url "https://github.com/cdanielmachado/reframed" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -404201,19 +426373,27 @@ ReframeDB is an open and extendable drug repurposing database and screening set a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ] ; + sc:additionalType "http://edamontology.org/data_0989" ; + sc:name "Protein identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0797 ; sc:citation , - ; + , + , + , + , + "pmcid:PMC4383986", + "pmcid:PMC4702849", + "pmcid:PMC5001611", + "pubmed:25428358", + "pubmed:26553804", + "pubmed:27342282" ; sc:description "A comprehensive, integrated, non-redundant, well-annotated set of sequences, including genomic DNA, transcripts, and proteins. Provides a stable reference for genome annotation, gene identification and characterization, mutation and polymorphism analysis (especially RefSeqGene records), expression studies, and comparative analyses." ; sc:featureList edam:operation_0224 ; sc:name "NCBI reference sequences" ; @@ -404225,14 +426405,14 @@ ReframeDB is an open and extendable drug repurposing database and screening set a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -404266,7 +426446,7 @@ ReframeDB is an open and extendable drug repurposing database and screening set sc:url "http://www.bioinformatics.nl/cgi-bin/emboss/refseqget" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, edam:topic_3308, @@ -404287,7 +426467,7 @@ High throughput sequencing of RNA (RNA-Seq) has become a staple in modern molecu sc:url "https://github.com/shunfumao/RefShannon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0659, edam:topic_2640 ; @@ -404301,7 +426481,7 @@ High throughput sequencing of RNA (RNA-Seq) has become a staple in modern molecu sc:url "https://github.com/mulinlab/regBase" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2828, edam:topic_3520 ; @@ -404321,7 +426501,7 @@ The Python implementation was developed in Python 3. The REGALS library requires sc:url "https://github.com/ando-lab/regals" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -404334,7 +426514,7 @@ The Python implementation was developed in Python 3. The REGALS library requires sc:url "http://www.nii.ac.in/~deepak/RegAnalyst/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219, edam:topic_3071 ; @@ -404350,7 +426530,7 @@ The Python implementation was developed in Python 3. The REGALS library requires biotools:primaryContact "Olivia Doppelt-Azeroual" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3277, edam:topic_3382, @@ -404368,8 +426548,109 @@ The Python implementation was developed in Python 3. The REGALS library requires sc:url "https://github.com/BioimageInformaticsTampere/RegBenchmark" ; biotools:primaryContact "Pekka Ruusuvuori" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3169, + edam:topic_3179, + edam:topic_3295, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8724954", + "pubmed:35035784" ; + sc:description "Identifying Drosophila genome-wide cis-regulatory modules via integrating the local patterns between epigenetic marks and TF binding motifs" ; + sc:featureList edam:operation_0239, + edam:operation_0445, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:name "regCNN" ; + sc:operatingSystem "Linux" ; + sc:url "http://cobisHSS0.im.nuk.edu.tw/regCNN/" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0208, + edam:topic_0749, + edam:topic_3170, + edam:topic_3173, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC8728239", + "pubmed:34591960" ; + sc:description "Regeneration Roadmap aims to compile large datasets for gene expression and regulation created by a broad spectrum of high-throughput omics technologies. This one-stop service provides user-friendly functionalities to explore annotated regeneration-related changes in gene expression, as well as raw data downloads from these multi-omics studies. The current implementation includes five modules: Regeneration-related genes, Transcriptomics, Single-cell Transcriptomics, Epigenomics and Pharmacogenomics." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:name "Regeneration Roadmap" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ngdc.cncb.ac.cn/regeneration/index" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1893" ; + sc:name "Locus ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0780, + edam:topic_3170, + edam:topic_3173, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC9249971", + "pubmed:35832616" ; + sc:description "A web-based application for plant REGENeration-associated transcriptOMICS analyses." ; + sc:featureList edam:operation_0314, + edam:operation_1781, + edam:operation_3463, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:name "REGENOMICS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://plantregeneration.snu.ac.kr/regenomics/?species=Ath" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0602, + edam:topic_0659, + edam:topic_0749, + edam:topic_3295 ; + sc:citation , + "pmcid:PMC8752721", + "pubmed:35017649" ; + sc:description "RegEnrich gene regulator enrichment analysis reveals a key role of the ETS transcription factor family in interferon signaling." ; + sc:featureList edam:operation_1781, + edam:operation_2436, + edam:operation_3223, + edam:operation_3741, + edam:operation_3766 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "RegEnrich" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://www.bioconductor.org/packages/release/bioc/html/RegEnrich.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3053, @@ -404385,7 +426666,7 @@ The Python implementation was developed in Python 3. The REGALS library requires sc:url "https://www.kcl.ac.uk/lsm/research/divisions/gmm/departments/mmg/researchgroups/clewis/software/regent/index.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3293, @@ -404404,32 +426685,8 @@ The Python implementation was developed in Python 3. The REGALS library requires "Windows" ; sc:url "https://snitkin-lab-umich.github.io/regentrans/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0625, - edam:topic_2885, - edam:topic_3308, - edam:topic_3383, - edam:topic_3384 ; - sc:citation , - "pubmed:31860065" ; - sc:description """Regional Imaging Genetic Enrichment Analysis. - -RIGEA is an R software tool for performing regional imaging genetic enrichment analysis. - -Please cite the following paper. - -Results: In this paper, we propose a flexible and powerful framework for mining regional imaging genetic associations via voxelwise enrichment analysis, which embraces the collective effect of weak voxel-level signals and integrates brain anatomical annotation information. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Regional Imaging Genetic Enrichment Analysis', 'voxelwise', 'IMPLEMENTATION:The', 'voxellevel'""" ; - sc:featureList edam:operation_3443, - edam:operation_3501, - edam:operation_3553 ; - sc:license "GPL-3.0" ; - sc:name "regional imaging genetic associations" ; - sc:url "https://github.com/lshen/RIGEA" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2885, @@ -404443,7 +426700,7 @@ Results: In this paper, we propose a flexible and powerful framework for mining sc:url "https://yunliweb.its.unc.edu/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053 ; @@ -404460,7 +426717,7 @@ Results: In this paper, we propose a flexible and powerful framework for mining "Wang Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0634, edam:topic_3384, @@ -404481,7 +426738,7 @@ Postmortem MRI in aging research Find Out More.""" ; sc:url "http://www.nitrc.org/projects/iit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -404504,14 +426761,14 @@ Postmortem MRI in aging research Find Out More.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1017" ; - sc:name "Sequence range" ; - sc:sameAs "http://edamontology.org/data_1017" ] ; + sc:additionalType "http://edamontology.org/data_1017" ; + sc:encodingFormat "http://edamontology.org/format_2078" ; + sc:name "Sequence range" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170 ; @@ -404531,7 +426788,7 @@ Postmortem MRI in aging research Find Out More.""" ; biotools:primaryContact "Leonardo Collado-Torres" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3064, edam:topic_3314 ; @@ -404545,25 +426802,35 @@ Use by pasting a SMILES code from ChemDraw to get the regioselective prediction, sc:name "RegioSQM20" ; sc:url "http://regiosqm.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0749, - edam:topic_3063 ; - sc:citation , - "pmcid:PMC6799705" ; - sc:description """Creating a Quality Improvement Project Registry. - -OBJECTIVES SPECIFIC AIMS: To create a searchable public registry of all Quality Improvement (QI) projects. To incentivize the medical professionals at UF Health to initiate quality improvement projects by reducing startup burden and providing a path to publishing results. To reduce the review effort performed by the internal review board on projects that are quality improvement Versus research. To foster publication of completed quality improvement projects. To assist the UF Health Sebastian Ferrero Office of Clinical Quality & Patient Safety in managing quality improvement across the hospital system. METHODS STUDY POPULATION: This project used a variant of the spiral software development model and principles from the ADDIE instructional design process for the creation of a registry that is web based. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'QIPR', 'UF', 'Sebastian Ferrero', 'Approver'""" ; - sc:license "Apache-2.0" ; - sc:name "registry" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6799705/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1009" ; + sc:name "Protein name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0204, + edam:topic_0623, + edam:topic_2640, + edam:topic_3172 ; + sc:citation , + "pubmed:35872412" ; + sc:description "Molecular regulation data of diverse living systems facilitating current multiomics research." ; + sc:featureList edam:operation_2421, + edam:operation_2428, + edam:operation_3803 ; + sc:isAccessibleForFree true ; + sc:name "REGLIV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://idrblab.org/regliv/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -404588,7 +426855,7 @@ OBJECTIVES SPECIFIC AIMS: To create a searchable public registry of all Quality "Wen-Chi Chang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -404613,7 +426880,7 @@ OBJECTIVES SPECIFIC AIMS: To create a searchable public registry of all Quality "Pavel S. Novichkov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0622, @@ -404628,7 +426895,7 @@ OBJECTIVES SPECIFIC AIMS: To create a searchable public registry of all Quality sc:url "http://regpredict.lbl.gov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0781, edam:topic_3056, @@ -404645,7 +426912,7 @@ OBJECTIVES SPECIFIC AIMS: To create a searchable public registry of all Quality biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0659, @@ -404664,8 +426931,28 @@ OBJECTIVES SPECIFIC AIMS: To create a searchable public registry of all Quality sc:url "http://regrna.mbc.nctu.edu.tw/" ; biotools:primaryContact "RegRNA Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0196, + edam:topic_0769 ; + sc:citation , + "pubmed:35333294" ; + sc:description "A Regression Approach to Scaffolding." ; + sc:featureList edam:operation_3192, + edam:operation_3216, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "RegScaf" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/lemontealala/RegScaf.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -404681,7 +426968,7 @@ OBJECTIVES SPECIFIC AIMS: To create a searchable public registry of all Quality sc:url "https://github.com/ramseylab/regshape/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, edam:topic_3169, @@ -404700,8 +426987,34 @@ Expression quantitative trait loci (eQTL) analysis is useful for identifying gen sc:name "regSNPs-ASB" ; sc:url "https://github.com/SiwenX/RegSNPs-ASB" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2091" ; + sc:name "Accession" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0203, + edam:topic_2229, + edam:topic_3168, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8710255", + "pubmed:35036172" ; + sc:description "A visualized application for homology-based gene searching and plotting using multiple reference sequences." ; + sc:featureList edam:operation_0490, + edam:operation_2421, + edam:operation_2422, + edam:operation_3663 ; + sc:isAccessibleForFree true ; + sc:name "ReGSP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ds.mju.ac.kr/regsp" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170, @@ -404721,7 +427034,7 @@ Expression quantitative trait loci (eQTL) analysis is useful for identifying gen biotools:primaryContact "Lukas M. Weber" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation , @@ -404735,7 +427048,7 @@ Expression quantitative trait loci (eQTL) analysis is useful for identifying gen sc:url "http://www.mediafire.com/FengLi/2DGelsoftware" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, edam:topic_0749, @@ -404753,7 +427066,7 @@ regulatory network P. aeruginosa.""" ; sc:url "http://www.regulome.pcyt.unam.mx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -404776,10 +427089,10 @@ regulatory network P. aeruginosa.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0204, @@ -404801,7 +427114,7 @@ regulatory network P. aeruginosa.""" ; sc:url "https://gitlab.com/gcollet/regulus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0204, edam:topic_0602, @@ -404822,7 +427135,7 @@ RegulonDB has collected, harmonized and centralized data from hundreds of experi sc:url "http://bioconductor.org/packages/regutools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, @@ -404839,7 +427152,7 @@ RegulonDB has collected, harmonized and centralized data from hundreds of experi sc:url "http://regvar.cbportal.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053 ; @@ -404854,7 +427167,7 @@ RegulonDB has collected, harmonized and centralized data from hundreds of experi sc:url "http://rehcstar.algolab.eu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation ; @@ -404869,7 +427182,7 @@ RegulonDB has collected, harmonized and centralized data from hundreds of experi sc:url "http://cran.r-project.org/web/packages/rehh/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -404884,8 +427197,30 @@ RegulonDB has collected, harmonized and centralized data from hundreds of experi biotools:primaryContact "Evangelos Kontopantelis", "GitHub Issues" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0659, + edam:topic_2640, + edam:topic_3320, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8990463", + "pubmed:35414795" ; + sc:description "A database for cancer A-to-I RNA editing with interactive analysis." ; + sc:featureList edam:operation_0314, + edam:operation_3096, + edam:operation_3631 ; + sc:isAccessibleForFree true ; + sc:name "REIA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinfo-sysu.com/reia" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3174, edam:topic_3520 ; @@ -404903,7 +427238,7 @@ REINDEER builds a data-structure that indexes k-mers and their abundances in a c sc:url "https://github.com/kamimrcht/REINDEER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2258, edam:topic_2275, @@ -404922,7 +427257,7 @@ REINDEER builds a data-structure that indexes k-mers and their abundances in a c biotools:primaryContact "Marcus Olivecrona" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0154, edam:topic_0209, @@ -404945,7 +427280,7 @@ Sampling: sampling.json can be used to start sampling. Requires a generative mod sc:url "https://github.com/MolecularAI/Reinvent" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -404962,7 +427297,7 @@ Sampling: sampling.json can be used to start sampling. Requires a generative mod biotools:primaryContact "Gautam Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -404980,7 +427315,7 @@ Sampling: sampling.json can be used to start sampling. Requires a generative mod biotools:primaryContact "Training" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -404998,7 +427333,7 @@ Sampling: sampling.json can be used to start sampling. Requires a generative mod sc:url "http://www.popgen.dk/software/index.php/Relate" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474 ; @@ -405016,14 +427351,14 @@ Sampling: sampling.json can be used to start sampling. Requires a generative mod a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3652" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -405043,7 +427378,7 @@ Sampling: sampling.json can be used to start sampling. Requires a generative mod sc:url "http://fields.scripps.edu/relex/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0659, edam:topic_0749, @@ -405066,14 +427401,14 @@ RELICS is an analysis method for discovering functional sequences from tiling CR a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0971" ; - sc:name "Article" ; - sc:sameAs "http://edamontology.org/data_0971" ] ; + sc:additionalType "http://edamontology.org/data_0971" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Article" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0972" ; - sc:name "Text mining report" ; - sc:sameAs "http://edamontology.org/data_0972" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0972" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Text mining report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3068 ; @@ -405098,18 +427433,15 @@ RELICS is an analysis method for discovering functional sequences from tiling CR a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ], + sc:additionalType "http://edamontology.org/data_1289" ; + sc:name "Restriction map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1289" ; - sc:name "Restriction map" ; - sc:sameAs "http://edamontology.org/data_1289" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3125 ; sc:citation , @@ -405140,7 +427472,7 @@ RELICS is an analysis method for discovering functional sequences from tiling CR sc:url "http://emboss.open-bio.org/rel/rel6/apps/remap.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, edam:topic_3407 ; @@ -405159,7 +427491,7 @@ QLab Cues and other work files for MITHC.""" ; sc:url "http://github.com/reMap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -405184,22 +427516,19 @@ QLab Cues and other work files for MITHC.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:name "Sequence motif (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation ; @@ -405214,7 +427543,7 @@ QLab Cues and other work files for MITHC.""" ; sc:url "http://bioinformatics.intec.ugent.be/kmarchal/Supplementary_Information_Lemmens_2006/Index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3444, edam:topic_3474 ; @@ -405232,14 +427561,14 @@ This repository contains the raw data, the code to generate summary statistics, a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0114, @@ -405258,7 +427587,7 @@ This repository contains the raw data, the code to generate summary statistics, biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -405275,7 +427604,7 @@ This repository contains the raw data, the code to generate summary statistics, biotools:primaryContact "Constantino Carlos Reyes-Aldasoro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3295, @@ -405298,7 +427627,7 @@ This repository contains the raw data, the code to generate summary statistics, biotools:primaryContact "Yinan Zheng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3263, edam:topic_3316, @@ -405324,7 +427653,7 @@ This repository contains the raw data, the code to generate summary statistics, sc:url "http://www.csc.fi/rems" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -405347,7 +427676,7 @@ This repository contains the raw data, the code to generate summary statistics, biotools:primaryContact "ReMus team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0625, @@ -405366,7 +427695,7 @@ This repository contains the raw data, the code to generate summary statistics, biotools:primaryContact "Paweł Sztromwasser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3384, @@ -405382,7 +427711,7 @@ This repository contains the raw data, the code to generate summary statistics, biotools:primaryContact "Nagi Hatoum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -405398,7 +427727,7 @@ This repository contains the raw data, the code to generate summary statistics, biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -405422,7 +427751,7 @@ This repository contains the raw data, the code to generate summary statistics, sc:url "http://renato.bioinfo.cipf.es" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0128, @@ -405437,7 +427766,7 @@ This repository contains the raw data, the code to generate summary statistics, sc:url "http://sourceforge.net/projects/renco/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -405453,7 +427782,7 @@ This repository contains the raw data, the code to generate summary statistics, sc:url "http://www.sysbio.polito.it/index.php/tools-and-downloads/item/220-rene" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0769, @@ -405468,8 +427797,39 @@ This repository contains the raw data, the code to generate summary statistics, sc:url "https://github.com/sujunhao/RENET2" ; biotools:primaryContact . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0621, + edam:topic_0622, + edam:topic_3068, + edam:topic_3297 ; + sc:citation , + "pubmed:36029977" ; + sc:description "Web platform for the improvement of assembly result and annotation of prokaryotic genomes." ; + sc:featureList edam:operation_0310, + edam:operation_2422, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ReNoteWeb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://biod.ufpa.br/renoteweb/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3053, edam:topic_3068, @@ -405491,8 +427851,30 @@ rentrez is on CRAN, so you can get the latest stable release with install.packag sc:name "rentrez" ; sc:url "https://github.com/dwinter/rentrez_ms" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0821, + edam:topic_3299, + edam:topic_3372 ; + sc:citation , + "pmcid:PMC9112463", + "pubmed:35578161" ; + sc:description "An R package for the analysis of enzyme kinetic data." ; + sc:featureList edam:operation_0334, + edam:operation_0337, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "renz" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://bitbucket.org/jcaledo/renz" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -405508,7 +427890,7 @@ rentrez is on CRAN, so you can get the latest stable release with install.packag biotools:primaryContact "Miguel A. Andrade-Navarro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, edam:topic_3047, @@ -405530,7 +427912,7 @@ Before running RepAHR, need to edit 2 configure files: parameter_config_file and sc:url "https://github.com/bioinfomaticsCSU/RepAHR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Web application" ; sc:author ; @@ -405544,8 +427926,25 @@ With RePAIR you can 1) determine prior parameters, 2) calculate sample size, and sc:name "RePAIR" ; sc:url "https://utrecht-university.shinyapps.io/repair/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_3071, + edam:topic_3277, + edam:topic_3303 ; + sc:citation , + "pubmed:34997301" ; + sc:description "An online database for skeletal injuries of known ages." ; + sc:featureList edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:name "REPAIR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://repair.orainc.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, edam:topic_0602, @@ -405562,7 +427961,7 @@ Reference implementation of RepairSig, a computational approach that accounts fo sc:url "https://github.com/ncbi/RepairSig" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -405584,8 +427983,28 @@ Reference implementation of RepairSig, a computational approach that accounts fo biotools:primaryContact "Contact List", "REPAIRtoire Support" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0622 ; + sc:citation , + "pmcid:PMC4027187", + "pubmed:24634442" ; + sc:description "Repetitive motif detection by Assembly of Repetitive K-mers." ; + sc:featureList edam:operation_0239 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "RepARK" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:url "https://github.com/PhKoch/RepARK" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0196, @@ -405601,14 +428020,14 @@ Reference implementation of RepairSig, a computational approach that accounts fo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_2310" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0798, @@ -405636,7 +428055,7 @@ Reference implementation of RepairSig, a computational approach that accounts fo biotools:primaryContact "Petr Novak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3056, @@ -405656,7 +428075,7 @@ Reference implementation of RepairSig, a computational approach that accounts fo biotools:primaryContact "Assefaw H. Gebremedhin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0654, @@ -405670,7 +428089,7 @@ Reference implementation of RepairSig, a computational approach that accounts fo sc:url "http://portugene.com/repeataround.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085, edam:topic_3517, @@ -405686,7 +428105,7 @@ Reference implementation of RepairSig, a computational approach that accounts fo sc:url "http://www.ams.med.uni-goettingen.de/software-en.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0605, edam:topic_0749 ; @@ -405703,7 +428122,7 @@ RepeatFS is a Python, FUSE-based file system with the goal of promoting scientif sc:url "https://github.com/ToniWestbrook/repeatfs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157 ; @@ -405716,7 +428135,7 @@ RepeatFS is a Python, FUSE-based file system with the goal of promoting scientif sc:url "http://www.repeatmasker.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:description "De-novo repeat family identification and modeling package. At the heart of RepeatModeler are two de-novo repeat finding programs ( RECON and RepeatScout ) which employ complementary computational methods for identifying repeat element boundaries and family relationships from sequence data. RepeatModeler assists in automating the runs of RECON and RepeatScout given a genomic database and uses the output to build, refine and classify consensus models of putative interspersed repeats." ; @@ -405728,7 +428147,7 @@ RepeatFS is a Python, FUSE-based file system with the goal of promoting scientif sc:url "http://www.repeatmasker.org/RepeatModeler/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0157, @@ -405744,7 +428163,7 @@ RepeatFS is a Python, FUSE-based file system with the goal of promoting scientif sc:url "http://wwwabi.snv.jussieu.fr/public/Repeatoire/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, edam:topic_0625, @@ -405763,7 +428182,7 @@ A tool for studying repetitive DNA dynamics using low-coverage, short-read data. sc:url "https://github.com/johnssproul/RepeatProfiler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0654 ; @@ -405777,26 +428196,24 @@ A tool for studying repetitive DNA dynamics using low-coverage, short-read data. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_2007" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "UniProt keyword" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2007" ; - sc:name "UniProt keyword" ; - sc:sameAs "http://edamontology.org/data_2007" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -405823,22 +428240,22 @@ A tool for studying repetitive DNA dynamics using low-coverage, short-read data. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_2206" ; + sc:name "Feature table" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_1939" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0157, @@ -405857,7 +428274,7 @@ A tool for studying repetitive DNA dynamics using low-coverage, short-read data. "pubmed:21304975", "pubmed:24786468" ; sc:contributor "URGI" ; - sc:description """The REPET package integrates bioinformatics pipelines dedicated to detecte, annotate and analyse transposable elements (TEs) in genomic sequences. The main pipelines are (i) TEdenovo, which search for interspersed repeats, build consensus sequences and classify them according to TE features, and (ii) + sc:description """The REPET package integrates bioinformatics pipelines dedicated to detect, annotate and analyze transposable elements (TEs) in genomic sequences. The main pipelines are (i) TEdenovo, which search for interspersed repeats, build consensus sequences and classify them according to TE features, and (ii) TEannot, which mines a genome with a library of TE sequences, for instance the one produced by the TEdenovo pipeline, to provide TE annotations exported into GFF3 files.""" ; sc:featureList edam:operation_0237, edam:operation_0379 ; @@ -405867,15 +428284,15 @@ A tool for studying repetitive DNA dynamics using low-coverage, short-read data. sc:operatingSystem "Linux", "Mac" ; sc:provider "URGI" ; - sc:softwareHelp , - , - , - ; + sc:softwareHelp , + , + , + ; sc:softwareVersion "v3.0" ; - sc:url "https://urgi.versailles.inra.fr/Tools/REPET" . + sc:url "https://urgi.versailles.inrae.fr/Tools/REPET" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -405890,8 +428307,20 @@ A tool for studying repetitive DNA dynamics using low-coverage, short-read data. sc:softwareVersion "1.0" ; sc:url "http://protein.bio.unipd.it/services" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0085, + edam:topic_3360, + edam:topic_3473, + edam:topic_3474 ; + sc:citation "pubmed:25717197" ; + sc:description "RepExplore is a web-service for omics data analysis exploiting the information captured in the variance of technical replicates to provide more reliable and informative differential expression and abundance statistics, as well as low-dimensional data visualizations." ; + sc:name "RepExplore" ; + sc:url "https://lcsb-repexplore.uni.lu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3127 ; @@ -405906,7 +428335,7 @@ A tool for studying repetitive DNA dynamics using low-coverage, short-read data. sc:url "http://cran.r-project.org/web/packages/repfdr/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0804, @@ -405924,7 +428353,7 @@ A tool for studying repetitive DNA dynamics using low-coverage, short-read data. biotools:primaryContact "Yuval Elthanati" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293 ; sc:description "Recursive tree-fitting and search procedure which aims to address the problem of fitting phylogenies to sequence datasets that include both closely and distantly related species." ; @@ -405937,7 +428366,7 @@ A tool for studying repetitive DNA dynamics using low-coverage, short-read data. sc:url "http://www.acaciamulga.net/#!about1/ckzk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0208, @@ -405955,7 +428384,7 @@ A tool for studying repetitive DNA dynamics using low-coverage, short-read data. sc:url "https://github.com/coexps/Rephine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0084, @@ -405976,7 +428405,7 @@ A tool for studying repetitive DNA dynamics using low-coverage, short-read data. biotools:primaryContact "Jason W. Shapiro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3173 ; @@ -405997,7 +428426,7 @@ A tool for studying repetitive DNA dynamics using low-coverage, short-read data. biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0749, @@ -406021,14 +428450,14 @@ A tool for studying repetitive DNA dynamics using low-coverage, short-read data. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0605 ; sc:citation , @@ -406045,7 +428474,7 @@ A tool for studying repetitive DNA dynamics using low-coverage, short-read data. biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0659, edam:topic_2269, @@ -406064,7 +428493,7 @@ The function outlier_DZ returns a numeric identifier for the outlier status ( fo sc:url "http://github.com/matthew-seth-smith/replicateOutliers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3127 ; sc:citation ; @@ -406078,7 +428507,7 @@ The function outlier_DZ returns a numeric identifier for the outlier status ( fo biotools:primaryContact "Matthew W. Vaughn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0157, edam:topic_0621, @@ -406100,7 +428529,7 @@ We developed a software named Repeat Locator (RepLoc), which quantifies the sequ sc:url "http://bis.zju.edu.cn/reploc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0219, edam:topic_3071, @@ -406123,14 +428552,12 @@ We developed a software named Repeat Locator (RepLoc), which quantifies the sequ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "Protein quantification based on reporter ions." ; @@ -406146,14 +428573,14 @@ We developed a software named Repeat Locator (RepLoc), which quantifies the sequ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3316 ; @@ -406175,7 +428602,7 @@ We developed a software named Repeat Locator (RepLoc), which quantifies the sequ "Jessica L. Larson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -406193,7 +428620,7 @@ We developed a software named Repeat Locator (RepLoc), which quantifies the sequ sc:url "http://protevo.eb.tuebingen.mpg.de/repper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0157 ; @@ -406209,7 +428636,7 @@ We developed a software named Repeat Locator (RepLoc), which quantifies the sequ sc:url "http://www.ibi.vu.nl/programs/reprowww/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, edam:topic_0769, @@ -406229,7 +428656,7 @@ Revised probe assignment and updated probe-set annotation in microarrays.""" ; sc:url "https://github.com/friederhadlich/rePROBE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3379, edam:topic_3397, @@ -406244,7 +428671,7 @@ The “Reprocases” project aims to collect case reports of diseases with a low sc:url "http://www.evssar.org/reprocases" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2229, edam:topic_3170 ; @@ -406259,8 +428686,35 @@ The “Reprocases” project aims to collect case reports of diseases with a low sc:name "reproduce" ; sc:url "http://www.xzlab.org/reproduce.html" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1009" ; + sc:name "Protein name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0128, + edam:topic_0219, + edam:topic_0621, + edam:topic_3957 ; + sc:citation , + "pubmed:35015827" ; + sc:description "Semantic-based detection of redundancies to unify protein-protein interaction databases." ; + sc:featureList edam:operation_2422, + edam:operation_2492, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:name "Reproducible interactome" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://reproducible-interactome.genouest.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3361 ; sc:citation "pubmed:8345525" ; @@ -406276,10 +428730,9 @@ The “Reprocases” project aims to collect case reports of diseases with a low a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3420 ; sc:author "Thomas Darde" ; @@ -406299,7 +428752,7 @@ The “Reprocases” project aims to collect case reports of diseases with a low biotools:primaryContact "Frédéric Chalmel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -406315,7 +428768,7 @@ The “Reprocases” project aims to collect case reports of diseases with a low sc:url "http://www.genomics.cn/en/navigation/show_navigation?nid=2732" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, @@ -406331,7 +428784,7 @@ The “Reprocases” project aims to collect case reports of diseases with a low biotools:primaryContact "RepTar Admin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -406345,14 +428798,13 @@ The “Reprocases” project aims to collect case reports of diseases with a low a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_1211" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API", "Web application" ; @@ -406375,7 +428827,7 @@ The “Reprocases” project aims to collect case reports of diseases with a low sc:url "http://bibiserv.cebitec.uni-bielefeld.de/reputer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3572 ; @@ -406393,7 +428845,7 @@ The “Reprocases” project aims to collect case reports of diseases with a low biotools:primaryContact "Christopher Cabanski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, edam:topic_3175, @@ -406414,7 +428866,7 @@ As well as controlling data flow into REscan using SAMtools (see Feed it only th sc:url "https://github.com/rlmcl/rescan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3168, edam:topic_3174, @@ -406435,7 +428887,7 @@ RESCRIPt is a python 3 package to support a variety of operations for managing a sc:url "https://github.com/bokulich-lab/RESCRIPt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3320, @@ -406454,7 +428906,7 @@ RESCRIPt is a python 3 package to support a variety of operations for managing a "Will Fairbrother" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -406470,8 +428922,31 @@ RESCRIPt is a python 3 package to support a variety of operations for managing a ; sc:url "http://bioinf.nuigalway.ie/RescueNet/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_3315, + edam:topic_3384, + edam:topic_3421, + edam:topic_3444, + edam:topic_3452 ; + sc:citation , + "pmcid:PMC8633465", + "pubmed:34608757" ; + sc:description "A tool to automatically segment and characterize lacunas in brain images." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ResectVol" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.lniunicamp.com/resectvol" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, edam:topic_3168, @@ -406499,7 +428974,7 @@ Even though sequencing biases and errors have been deeply researched to adequate sc:url "https://github.com/schmeing/ReSeq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation ; @@ -406513,14 +428988,14 @@ Even though sequencing biases and errors have been deeply researched to adequate a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0804 ; sc:citation , @@ -406541,7 +429016,7 @@ Even though sequencing biases and errors have been deeply researched to adequate biotools:primaryContact "Ole Lund" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2814 ; @@ -406559,14 +429034,13 @@ Even though sequencing biases and errors have been deeply researched to adequate a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2619" ; - sc:name "RESID ID" ; - sc:sameAs "http://edamontology.org/data_2619" ] ; + sc:additionalType "http://edamontology.org/data_2619" ; + sc:name "RESID ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0601 ; @@ -406581,7 +429055,7 @@ Even though sequencing biases and errors have been deeply researched to adequate sc:url "http://pir.georgetown.edu/resid/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, @@ -406603,7 +429077,7 @@ Your rapid sequence similiarity-dependent database manager!.""" ; sc:url "https://residb.ait.ac.at/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3050, edam:topic_3318, edam:topic_3407, @@ -406618,7 +429092,7 @@ Residence time (τ) is the average amount of time that particles spend in an eco sc:url "https://github.com/LennonLab/residence-time" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0154, @@ -406638,7 +429112,7 @@ Residence time (τ) is the average amount of time that particles spend in an eco sc:url "https://sourceforge.net/projects/residuefinder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0160, edam:topic_2269, @@ -406662,7 +429136,7 @@ The set of scripts presented here contain a method for assessing the quality of sc:url "http://protein.som.geisinger.edu/ResiRole/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3293, @@ -406679,7 +429153,7 @@ Resistance Sniffer: Prediction of Drug Resistance by Sequence Data.""" ; sc:url "http://resistance-sniffer.bi.up.ac.za/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0798, edam:topic_3174, @@ -406696,7 +429170,7 @@ Resistance Sniffer: Prediction of Drug Resistance by Sequence Data.""" ; sc:url "http://www.resistomedb.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0625, edam:topic_3168, @@ -406712,8 +429186,47 @@ ResistoXplorer is a web-based, visual analytics tool to assist researchers to pe sc:name "ResistoXplorer" ; sc:url "http://www.resistoxplorer.no/ResistoXplorer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3382 ; + sc:citation , + "pubmed:35560104" ; + sc:description "Residual Learning for Long-tailed Recognition." ; + sc:featureList edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ResLT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/jiequancui/ResLT" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_0736, + edam:topic_0820 ; + sc:citation , + "pmcid:PMC9416665", + "pubmed:36005688" ; + sc:description "Web Server for Predicting Residue-Specific Membrane-Association Propensities of Intrinsically Disordered Proteins." ; + sc:featureList edam:operation_0470, + edam:operation_2476, + edam:operation_3904 ; + sc:isAccessibleForFree true ; + sc:name "ReSMAP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://pipe.rcc.fsu.edu/ReSMAPidp/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -406733,8 +429246,28 @@ ResistoXplorer is a web-based, visual analytics tool to assist researchers to pe sc:url "http://compbio.dfci.harvard.edu/tgi/cgi-bin/magic/r1.pl" ; biotools:primaryContact "John Quackenbush" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0769, + edam:topic_3474 ; + sc:citation , + "pubmed:35771600" ; + sc:description "A powerful batch correction model for scRNA-seq data through residual adversarial networks." ; + sc:featureList edam:operation_3891, + edam:operation_3927, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ResPAN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/AprilYuge/ResPAN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0623, edam:topic_3174, @@ -406754,7 +429287,7 @@ ResistoXplorer is a web-based, visual analytics tool to assist researchers to pe sc:url "https://gitlab.com/hsgweon/ResPipe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3263, edam:topic_3322, @@ -406769,8 +429302,26 @@ ResistoXplorer is a web-based, visual analytics tool to assist researchers to pe "Windows" ; sc:url "http://respiraconnosotros.es" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3322, + edam:topic_3474, + edam:topic_3794 ; + sc:citation , + "pubmed:34891348" ; + sc:description "A Deep Neural Network for Accurately Detecting Abnormal Lung Sounds in Limited Data Setting." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "RespireNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/microsoft/RespireNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3315 ; sc:citation , @@ -406785,7 +429336,7 @@ Multi-criteria decision making algorithm based on TOPSIS.""" ; sc:url "https://github.com/chrismichailidou/topsisResponse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, edam:topic_0749 ; @@ -406801,7 +429352,7 @@ Multi-criteria decision making algorithm based on TOPSIS.""" ; sc:url "http://github.com/GrossTor/response-logic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -406829,7 +429380,7 @@ Multi-criteria decision making algorithm based on TOPSIS.""" ; biotools:primaryContact "Esti Yeger-Lotem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0593, @@ -406845,7 +429396,7 @@ Multi-criteria decision making algorithm based on TOPSIS.""" ; sc:url "http://www.resprox.ca/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0622, @@ -406862,7 +429413,7 @@ Multi-criteria decision making algorithm based on TOPSIS.""" ; sc:url "http://restauro-g.iab.keio.ac.jp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3308 ; @@ -406881,14 +429432,12 @@ Multi-criteria decision making algorithm based on TOPSIS.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -406917,16 +429466,37 @@ Multi-criteria decision making algorithm based on TOPSIS.""" ; sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/restover.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0176, + edam:topic_3047 ; + sc:citation , + "pmcid:PMC8994745", + "pubmed:35314898" ; + sc:description "A graph-based approach to select distance restraints in free-energy calculations with dual topology." ; + sc:featureList edam:operation_1812, + edam:operation_2476, + edam:operation_3891, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "RestraintMaker" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/rinikerlab/restraintmaker" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation , @@ -406957,34 +429527,34 @@ Multi-criteria decision making algorithm based on TOPSIS.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -407004,18 +429574,18 @@ Multi-criteria decision making algorithm based on TOPSIS.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -407033,34 +429603,34 @@ Multi-criteria decision making algorithm based on TOPSIS.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3071 ; @@ -407077,8 +429647,32 @@ Multi-criteria decision making algorithm based on TOPSIS.""" ; sc:url "https://urgi.versailles.inra.fr/Tools/REPET" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0128, + edam:topic_0203, + edam:topic_0625, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8648753", + "pubmed:34873191" ; + sc:description "An open-source Python software to perform automatic functional enrichment retrieval, results aggregation and data visualization." ; + sc:featureList edam:operation_0337, + edam:operation_2436, + edam:operation_2949, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "reString" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://string-db.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -407100,7 +429694,7 @@ PROVEAN is useful for filtering sequence variants to identify nonsynonymous or i sc:url "http://sift.jcvi.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3518 ; sc:description "Browse the data analysis results of your own microarray experiments." ; @@ -407113,14 +429707,14 @@ PROVEAN is useful for filtering sequence variants to identify nonsynonymous or i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2050" ; - sc:name "Molecular property (general)" ; - sc:sameAs "http://edamontology.org/data_2050" ] ; + sc:additionalType "http://edamontology.org/data_2050" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecular property (general)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3370, @@ -407136,7 +429730,7 @@ PROVEAN is useful for filtering sequence variants to identify nonsynonymous or i sc:url "http://retentionprediction.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, edam:topic_3305, @@ -407162,7 +429756,7 @@ If you want to know what will expect you here shortly, check out the reel:. sc:url "http://retina.com.pt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -407179,7 +429773,7 @@ If you want to know what will expect you here shortly, check out the reel:. biotools:primaryContact "Athi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -407199,7 +429793,7 @@ If you want to know what will expect you here shortly, check out the reel:. biotools:primaryContact "Ebtesam Ahmed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3344, edam:topic_3384, @@ -407221,7 +429815,7 @@ If you want to know what will expect you here shortly, check out the reel:. biotools:primaryContact "pangyuteng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -407238,7 +429832,7 @@ If you want to know what will expect you here shortly, check out the reel:. biotools:primaryContact "Maz M. Khansari" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3172, edam:topic_3314, @@ -407263,14 +429857,13 @@ Retip: Retention Time Prediction for Compound Annotation in Untargeted Metabolom a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2205" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1193" ; - sc:name "Tool name (FASTA)" ; - sc:sameAs "http://edamontology.org/data_1193" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1193" ; + sc:name "Tool name (FASTA)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -407293,14 +429886,12 @@ Retip: Retention Time Prediction for Compound Annotation in Untargeted Metabolom a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1114" ; - sc:name "Sequence motif identifier" ; - sc:sameAs "http://edamontology.org/data_1114" ] ; + sc:additionalType "http://edamontology.org/data_1114" ; + sc:name "Sequence motif identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Retrieve from the Regulatory sequence Analysis Tools a position-specific scoring matrix describing a transcription factor binding motif" ; sc:featureList edam:operation_2422 ; sc:license "AFL-3.0" ; @@ -407308,7 +429899,7 @@ Retip: Retention Time Prediction for Compound Annotation in Untargeted Metabolom sc:url "http://rsat-tagc.univ-mrs.fr/rsat/retrieve-matrix_form.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3304 ; @@ -407326,7 +429917,7 @@ Accessing the contents of visual short-term memory (VSTM) is compromised by info sc:url "http://github.com/paulzerr/retrocues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0821, edam:topic_2258, edam:topic_3068, @@ -407343,7 +429934,7 @@ Any feedback is very welcome. Please email william.finnigan@manchester.ac.uk.""" sc:url "http://retrobiocat.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -407359,7 +429950,7 @@ Any feedback is very welcome. Please email william.finnigan@manchester.ac.uk.""" sc:url "http://www.burchsite.com/bioi/RetroMapHome.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2258, @@ -407376,7 +429967,7 @@ Any feedback is very welcome. Please email william.finnigan@manchester.ac.uk.""" sc:url "https://github.com/brsynth/RetroPathRL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web service" ; @@ -407397,18 +429988,17 @@ Any feedback is very welcome. Please email william.finnigan@manchester.ac.uk.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2955" ; + sc:name "Sequence report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, @@ -407432,14 +430022,12 @@ Any feedback is very welcome. Please email william.finnigan@manchester.ac.uk.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -407455,7 +430043,7 @@ Any feedback is very welcome. Please email william.finnigan@manchester.ac.uk.""" sc:url "http://retrotector.neuro.uu.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157, @@ -407471,7 +430059,7 @@ Any feedback is very welcome. Please email william.finnigan@manchester.ac.uk.""" sc:url "http://protein.bio.unipd.it/reupred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0749, @@ -407488,7 +430076,7 @@ Any feedback is very welcome. Please email william.finnigan@manchester.ac.uk.""" sc:url "http://reva.gao-lab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation , @@ -407505,7 +430093,7 @@ Any feedback is very welcome. Please email william.finnigan@manchester.ac.uk.""" biotools:primaryContact "Isotta Landi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3293, @@ -407525,7 +430113,7 @@ Any feedback is very welcome. Please email william.finnigan@manchester.ac.uk.""" biotools:primaryContact "Sebastian Höhna" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2275, @@ -407542,7 +430130,7 @@ Any feedback is very welcome. Please email william.finnigan@manchester.ac.uk.""" sc:url "http://www.bioinformatics.cm-uj.krakow.pl/reveal/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0622, @@ -407563,7 +430151,7 @@ Any feedback is very welcome. Please email william.finnigan@manchester.ac.uk.""" biotools:primaryContact "Yang Cao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053, @@ -407578,17 +430166,8 @@ Any feedback is very welcome. Please email william.finnigan@manchester.ac.uk.""" sc:softwareHelp ; sc:url "http://reveel.stanford.edu/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0611, - edam:topic_0780, - edam:topic_3810 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'forest revegetation preservation springs Arjuna', 'revegetation preservation springs Arjuna', 'revegetation Arjuna mount', 'revegetation Arjuna' | Community Empowerment Model for Forest Revegetation and Preservation the Area Around the Springs | The research objectives were (1) to examine the determinants of community empowerment towards the revegetation of Arjuna mount forests; (2) assessing the influence of geography and soil conditions on the revegetation of Arjuna mount forests; (3) reviewing the effect of Arjuna mount forest revegetation on the preservation of spring water sources and (4) formulate a model of community empowerment around the forest based on revegetation of Arjuna mount and preservation of the area around the springs. The method used was descriptive method" ; - sc:name "revegetation preservation springs Arjuna mount" ; - sc:url "https://doi.org/10.20944/PREPRINTS201908.0313.V1" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0130, edam:topic_0623, @@ -407605,7 +430184,7 @@ Any feedback is very welcome. Please email william.finnigan@manchester.ac.uk.""" sc:url "http://revenant.inf.pucp.edu.pe/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3500 ; sc:citation , @@ -407620,7 +430199,7 @@ reverCSP is a tool that allows us to evaluate a CSP specification in both direct sc:url "https://github.com/tamarit/reverCSP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3293, @@ -407634,8 +430213,54 @@ reverCSP is a tool that allows us to evaluate a CSP specification in both direct sc:url "https://github.com/cmt2/RevGadgets" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0157, + edam:topic_0622, + edam:topic_0625, + edam:topic_3673, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9367089", + "pubmed:35948990" ; + sc:description "Haplotype-resolved visualization of read alignments in and around tandem repeats." ; + sc:featureList edam:operation_0337, + edam:operation_0487, + edam:operation_3196, + edam:operation_3198, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "REViewer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/illumina/REViewer" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3063, + edam:topic_3263, + edam:topic_3337, + edam:topic_3577 ; + sc:citation ; + sc:description "ReviewR is a portable tool to help you explore data across different data models. Within ReviewR, you can browse patient data stored in either the OMOP or MIMIC-III data model." ; + sc:featureList edam:operation_2422, + edam:operation_3096 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "ReviewR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://thewileylab.shinyapps.io/ReviewR/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0749, @@ -407653,14 +430278,12 @@ reverCSP is a tool that allows us to evaluate a CSP specification in both direct a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -407690,7 +430313,7 @@ reverCSP is a tool that allows us to evaluate a CSP specification in both direct sc:url "http://emboss.open-bio.org/rel/rel6/apps/revseq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0108, @@ -407712,8 +430335,29 @@ reverCSP is a tool that allows us to evaluate a CSP specification in both direct biotools:primaryContact "Scientific problems: Anders Gorm Pedersen", "Technical problems: Rasmus Wernersson" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0749, + edam:topic_3325, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9048665", + "pubmed:35289834" ; + sc:description "Online scoring system for regulatory variants implicated in rare diseases." ; + sc:featureList edam:operation_2422, + edam:operation_3225, + edam:operation_3226 ; + sc:isAccessibleForFree true ; + sc:name "RevUP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.revup-classifier.ca" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, edam:topic_0602, @@ -407734,7 +430378,7 @@ REW-ISA is used to find potential local functional blocks (LFB) based on MeRIP-S sc:url "https://github.com/cst-cumt/REW-ISA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:citation , "pmcid:PMC6317226", @@ -407746,7 +430390,7 @@ REW-ISA is used to find potential local functional blocks (LFB) based on MeRIP-S sc:url "http://repeatexplorer.org/?page_id=918" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3063 ; sc:description "Package that allows to explore the exposome and to perform association analyses between exposures and health outcomes." ; @@ -407765,7 +430409,7 @@ REW-ISA is used to find potential local functional blocks (LFB) based on MeRIP-S biotools:primaryContact "Carles Hernandez-Ferrer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0632, @@ -407781,7 +430425,7 @@ REW-ISA is used to find potential local functional blocks (LFB) based on MeRIP-S sc:url "http://www4a.biotec.or.th/rexprimer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -407799,7 +430443,7 @@ REW-ISA is used to find potential local functional blocks (LFB) based on MeRIP-S sc:url "https://github.com/dukkakc/DL-MaloSite-and-RF-MaloSite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, edam:topic_0621, @@ -407820,7 +430464,7 @@ The best model has been included. Download all model parts and extracting the 1s sc:url "https://github.com/dukkakc/DL-MaloSite-and-RF-MaloSite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053, @@ -407836,7 +430480,7 @@ The best model has been included. Download all model parts and extracting the 1s biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3300, edam:topic_3474 ; @@ -407853,7 +430497,7 @@ One of the ubiquitous chemical modifications in RNA, pseudouridine modification sc:url "http://rfpsu.aibiochem.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3127, @@ -407866,7 +430510,7 @@ One of the ubiquitous chemical modifications in RNA, pseudouridine modification sc:url "http://www.bioinf.seu.edu.cn/Recombination/rf_dymhc.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3336, edam:topic_3474 ; @@ -407884,7 +430528,7 @@ One of the ubiquitous chemical modifications in RNA, pseudouridine modification "Minho Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -407906,14 +430550,12 @@ One of the ubiquitous chemical modifications in RNA, pseudouridine modification a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0623 ; @@ -407936,7 +430578,7 @@ One of the ubiquitous chemical modifications in RNA, pseudouridine modification biotools:primaryContact "Rfam group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0097, @@ -407958,7 +430600,7 @@ rfaRm is an R package providing a client-side interface for the Rfam database of sc:url "https://bioconductor.org/packages/release/bioc/html/rfaRm.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -407978,7 +430620,7 @@ rfaRm is an R package providing a client-side interface for the Rfam database of biotools:primaryContact "Cansu Alakuş" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0166, @@ -407994,7 +430636,7 @@ rfaRm is an R package providing a client-side interface for the Rfam database of sc:url "http://protein.cau.edu.cn/RFCoil/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3344, edam:topic_3512 ; @@ -408009,7 +430651,7 @@ rfaRm is an R package providing a client-side interface for the Rfam database of biotools:primaryContact "Alfredo Velazquez Ibañez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056, @@ -408023,8 +430665,26 @@ rfaRm is an R package providing a client-side interface for the Rfam database of sc:softwareHelp ; sc:url "https://sites.google.com/site/rfmixlocalancestryinference/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3063, + edam:topic_3382 ; + sc:citation , + "pubmed:35767498" ; + sc:description "Transformer-Based Generative Adversarial Network for Real Fundus Image Restoration on a New Clinical Benchmark." ; + sc:featureList edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "RFormer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/dengzhuo-AI/Real-Fundus" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3344, @@ -408042,7 +430702,7 @@ rfaRm is an R package providing a client-side interface for the Rfam database of biotools:primaryContact "Costas Panagiotakis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, edam:topic_3174, @@ -408064,7 +430724,7 @@ RFPlasmid comes with an option to train your own model if you provide it with co sc:url "http://klif.uu.nl/rfplasmid/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, edam:topic_0736, @@ -408084,14 +430744,14 @@ Protein remote homology detection is one of the fundamental tasks in computation a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3676 ; @@ -408108,15 +430768,35 @@ Protein remote homology detection is one of the fundamental tasks in computation sc:url "http://bioconductor.org/packages/release/bioc/html/rfPred.html" ; biotools:primaryContact "Hugo Varet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3376 ; + sc:citation , + "pmcid:PMC9205535", + "pubmed:35719742" ; + sc:description "An R package for finding higher order interactions, and best subsets for statistical regression models" ; + sc:featureList edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "rFSA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://github.com/joshuawlambert/rFSA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Reference-Free Sequence Classification Tool for DNA sequences in metagenomic samples." ; sc:name "RFSC" ; sc:softwareVersion "1.0" ; sc:url "https://github.com/cobilab/RFSC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3170, edam:topic_3314, @@ -408130,7 +430810,7 @@ Protein remote homology detection is one of the fundamental tasks in computation sc:url "https://github.com/TF-Chan-Lab/rG4-seeker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0160 ; @@ -408147,8 +430827,18 @@ Protein remote homology detection is one of the fundamental tasks in computation sc:url "http://bioconductor.org/packages/release/bioc/html/rGADEM.html" ; biotools:primaryContact "Arnaud Droit" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0621 ; + sc:citation ; + sc:description "rGAI is an R package for fitting the generalised abundance index to seasonal count data. The package provides a user interface for calculating a Generalised Abundance Index (GAI) for seasonal invertebrates, with multiple options for covariate inclusion, seasonal flight patterns and observed count distributions, along with the ability to conduct bootstraps to obtain measures of uncertainty for estimated parameter and GAI values." ; + sc:featureList edam:operation_3435 ; + sc:name "rGAI" ; + sc:url "https://github.com/calliste-fagard-jenkin/rGAI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -408166,7 +430856,7 @@ Protein remote homology detection is one of the fundamental tasks in computation biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3071 ; @@ -408181,7 +430871,7 @@ Protein remote homology detection is one of the fundamental tasks in computation sc:url "http://bioinformatics.ovsa.fr/72/Rgb_130" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3382, edam:topic_3474 ; @@ -408196,7 +430886,7 @@ Protein remote homology detection is one of the fundamental tasks in computation sc:url "https://github.com/taozh2017/RGBD-SODsurvey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0634, @@ -408216,7 +430906,7 @@ Glaucoma is a disease associated with the loss of retinal ganglion cells (RGCs), sc:url "https://gitlab.com/NCDRlab/rgcode" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170, @@ -408234,7 +430924,7 @@ Load the dataset from Data folder, and put the codes and Datasets in same path. sc:url "https://github.com/Snehalikalall/RgCop" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -408261,10 +430951,10 @@ Load the dataset from Data folder, and put the codes and Datasets in same path. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0769, @@ -408284,7 +430974,7 @@ Load the dataset from Data folder, and put the codes and Datasets in same path. sc:url "http://www.rgenome.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, edam:topic_0625, @@ -408304,14 +430994,14 @@ dinaIssakova/rgenesconverged: A Package for Estimating Probability of Convergent a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3277 ; sc:citation , @@ -408328,7 +431018,7 @@ dinaIssakova/rgenesconverged: A Package for Estimating Probability of Convergent biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -408347,7 +431037,7 @@ dinaIssakova/rgenesconverged: A Package for Estimating Probability of Convergent biotools:primaryContact "Hector Climente" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3473 ; sc:description "This package brings the GenoMetric Query Language functionalities into the R environment. It is a high-level, declarative language to manage heterogeneous genomic datasets for biomedical purposes, using simple queries to process genomic regions and their metadata and properties. It adopts algorithms efficiently designed for big data using cloud-computing technologies allowing GMQL to run on modern infrastructures, in order to achieve scalability and high performance." ; @@ -408363,7 +431053,7 @@ dinaIssakova/rgenesconverged: A Package for Estimating Probability of Convergent biotools:primaryContact "Simone Pallotta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0749, edam:topic_0780, @@ -408381,14 +431071,14 @@ dinaIssakova/rgenesconverged: A Package for Estimating Probability of Convergent a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -408405,7 +431095,7 @@ dinaIssakova/rgenesconverged: A Package for Estimating Probability of Convergent biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -408424,7 +431114,7 @@ dinaIssakova/rgenesconverged: A Package for Estimating Probability of Convergent biotools:primaryContact "Stephane Cano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092 ; @@ -408443,18 +431133,18 @@ dinaIssakova/rgenesconverged: A Package for Estimating Probability of Convergent a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3673 ; @@ -408472,7 +431162,7 @@ dinaIssakova/rgenesconverged: A Package for Estimating Probability of Convergent biotools:primaryContact "Zuguang Gu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -408491,14 +431181,14 @@ dinaIssakova/rgenesconverged: A Package for Estimating Probability of Convergent a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2769" ; - sc:name "Transcript ID" ; - sc:sameAs "http://edamontology.org/data_2769" ] ; + sc:additionalType "http://edamontology.org/data_2769" ; + sc:encodingFormat "http://edamontology.org/format_1958" ; + sc:name "Transcript ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3308 ; @@ -408516,7 +431206,7 @@ dinaIssakova/rgenesconverged: A Package for Estimating Probability of Convergent biotools:primaryContact "Karl Stamm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3068, @@ -408536,7 +431226,7 @@ dinaIssakova/rgenesconverged: A Package for Estimating Probability of Convergent sc:url "https://shiny.biostat.umn.edu/GV/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -408550,7 +431240,7 @@ dinaIssakova/rgenesconverged: A Package for Estimating Probability of Convergent sc:url "https://github.com/derekguan/rHAT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:author "Bernd Fischer", @@ -408569,7 +431259,7 @@ dinaIssakova/rgenesconverged: A Package for Estimating Probability of Convergent biotools:primaryContact "Mike Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092 ; sc:description "Provides functionality for reading data from h5serv server from within R." ; @@ -408586,7 +431276,7 @@ dinaIssakova/rgenesconverged: A Package for Estimating Probability of Convergent biotools:primaryContact "Samuela Pollack" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "Provides C and C++ hdf5 libraries to R packages in a non-system-dependant manner." ; @@ -408603,7 +431293,7 @@ dinaIssakova/rgenesconverged: A Package for Estimating Probability of Convergent biotools:primaryContact "Mike Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, @@ -408624,7 +431314,7 @@ Since December 2018, Rhea is the standard for enzyme annotation in UniProt.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0659, edam:topic_2840, @@ -408643,7 +431333,7 @@ Since December 2018, Rhea is the standard for enzyme annotation in UniProt.""" ; sc:url "http://rhinella.uncoma.edu.ar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -408667,7 +431357,7 @@ Since December 2018, Rhea is the standard for enzyme annotation in UniProt.""" ; sc:url "http://www.way2drug.com/rhivdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, edam:topic_0780, @@ -408686,7 +431376,7 @@ The RhizoBindingSites database is a computer-assisted framework providing motif- sc:url "http://rhizobindingsites.ccg.unam.mx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3298, @@ -408703,7 +431393,7 @@ The RhizoBindingSites database is a computer-assisted framework providing motif- biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -408721,7 +431411,7 @@ The RhizoBindingSites database is a computer-assisted framework providing motif- biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2830, edam:topic_2885, @@ -408739,7 +431429,7 @@ The RhizoBindingSites database is a computer-assisted framework providing motif- sc:url "https://platform.dnanexus.com/app/RHtyper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0749, @@ -408757,8 +431447,32 @@ The RhizoBindingSites database is a computer-assisted framework providing motif- sc:url "http://bioconductor.org/packages/release/bioc/html/rHVDM.html" ; biotools:primaryContact "Martino Barenco" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_0804, + edam:topic_2640, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8551247", + "pubmed:34746858" ; + sc:description "An R package to process immunopeptidomic data for putative hybrid peptide discovery." ; + sc:featureList edam:operation_3644, + edam:operation_3646, + edam:operation_3767 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "RHybridFinder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://cran.r-project.org/package=RHybridFinder" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0736, @@ -408779,8 +431493,30 @@ The RhizoBindingSites database is a computer-assisted framework providing motif- sc:url "http://proteinformatics.charite.de/rhythm/" ; biotools:primaryContact "Peter Hildebrand" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0780, + edam:topic_3173, + edam:topic_3299, + edam:topic_3300 ; + sc:citation , + "pmcid:PMC9237250", + "pubmed:35774515" ; + sc:description "Database of circadian and ultradian transcripts in control tissues of kingdom-wide species." ; + sc:featureList edam:operation_0314, + edam:operation_0380, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:name "RhythmicDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://rhythmicdb.css-mendel.it" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3172 ; sc:description "RIAssigner is a python tool for retention index (RI) computation for GC-MS data." ; @@ -408791,7 +431527,7 @@ The RhizoBindingSites database is a computer-assisted framework providing motif- sc:url "https://github.com/RECETOX/RIAssigner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0199, @@ -408811,7 +431547,7 @@ Margin around a variant or manually entered coordinate where reads will be pulle sc:url "http://genomeribbon.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation "pubmed:15980564" ; @@ -408826,7 +431562,7 @@ Margin around a variant or manually entered coordinate where reads will be pulle biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0099, @@ -408844,7 +431580,7 @@ Margin around a variant or manually entered coordinate where reads will be pulle "Tsukasa Fukunag" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -408860,7 +431596,7 @@ Margin around a variant or manually entered coordinate where reads will be pulle sc:url "http://ribo.cs.mcgill.ca/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0659, edam:topic_0769, @@ -408876,7 +431612,7 @@ Margin around a variant or manually entered coordinate where reads will be pulle sc:url "https://github.com/fallerlab/Ribo-ODDR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0659, edam:topic_0769, @@ -408903,14 +431639,12 @@ If you're not using conda, you will need to install snakemake as well as all the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1246" ; - sc:name "Sequence cluster (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1246" ] ; + sc:additionalType "http://edamontology.org/data_1246" ; + sc:name "Sequence cluster (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:name "Sequence assembly" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0196 ; @@ -408930,7 +431664,7 @@ If you're not using conda, you will need to install snakemake as well as all the biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -408950,7 +431684,7 @@ If you're not using conda, you will need to install snakemake as well as all the biotools:primaryContact "Edward P. O’Brien" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0097, @@ -408969,8 +431703,30 @@ If you're not using conda, you will need to install snakemake as well as all the sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5238798/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0203, + edam:topic_0605, + edam:topic_2229, + edam:topic_3170 ; + sc:citation , + "pubmed:35043169" ; + sc:description "A chat-style web interface for analysis and annotation of ribosome profiling data." ; + sc:featureList edam:operation_0337, + edam:operation_2436, + edam:operation_3435, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "RiboChat" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://db.cngb.org/ribobench/chat.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0154, @@ -408990,8 +431746,31 @@ If you're not using conda, you will need to install snakemake as well as all the biotools:primaryContact , "Zhi Xie" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_0780, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pubmed:35731209" ; + sc:description "A pipeline to identify and quantify rRNA read contamination from RNA-seq data in plants." ; + sc:featureList edam:operation_0314, + edam:operation_0435, + edam:operation_3800 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "riboCleaner" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/basf/riboCleaner" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0160, @@ -409008,7 +431787,7 @@ If you're not using conda, you will need to install snakemake as well as all the sc:url "https://ribodb.univ-lyon1.fr/ribodb/ribodb-in.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, edam:topic_0621, @@ -409024,7 +431803,7 @@ If you're not using conda, you will need to install snakemake as well as all the sc:url "https://github.com/jipingw/RiboDiPA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0108, @@ -409048,8 +431827,32 @@ If you're not using conda, you will need to install snakemake as well as all the sc:softwareHelp ; sc:url "https://github.com/equipeGST/RiboDoc" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0097, + edam:topic_0166, + edam:topic_0659, + edam:topic_2229, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8515840", + "pubmed:34661102" ; + sc:description "semiautomated two-dimensional drawing of RNA tertiary structure diagrams." ; + sc:featureList edam:operation_0295, + edam:operation_2441, + edam:operation_2486 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "RiboDraw" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/DasLab/RiboDraw" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0108, @@ -409070,7 +431873,7 @@ Train a neural network model to predict ribosome densities across a set of trans sc:url "https://github.com/Liuxg16/Riboexp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0602, edam:topic_3297, @@ -409091,37 +431894,16 @@ riboflow is a python package for classifying putative riboswitch sequences into sc:name "riboflow" ; sc:url "https://pypi.org/project/riboflow" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0160, - edam:topic_0602, - edam:topic_3297, - edam:topic_3474, - edam:topic_3512 ; - sc:citation ; - sc:description """using deep learning to classify riboswitches with ~99% accuracy. - -Classifying Putative Riboswitch Sequences. - -RIBOFLOW - classifying riboswitches with >99% accuracy. - -riboflow is a python package for classifying putative riboswitch sequences into one of 32 classes with > 99% accuracy. It is based on a tensorflow deep learning model. riboflow has been tested using Python 3.5.2""" ; - sc:featureList edam:operation_0310, - edam:operation_0441, - edam:operation_2495 ; - sc:license "MIT" ; - sc:name "riboflow_autogenerated" ; - sc:url "https://pypi.org/project/riboflow" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637 ; sc:citation "pubmed:26635865" ; @@ -409136,22 +431918,22 @@ riboflow is a python package for classifying putative riboswitch sequences into a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0848" ; - sc:name "Raw sequence" ; - sc:sameAs "http://edamontology.org/data_0848" ] ; + sc:additionalType "http://edamontology.org/data_0848" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Raw sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2969" ; - sc:name "Sequence image" ; - sc:sameAs "http://edamontology.org/data_2969" ], + sc:additionalType "http://edamontology.org/data_2969" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Sequence image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3006" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0203 ; sc:author ; @@ -409177,7 +431959,7 @@ riboflow is a python package for classifying putative riboswitch sequences into sc:url "http://ribogalaxy.ucc.ie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099 ; @@ -409193,7 +431975,7 @@ riboflow is a python package for classifying putative riboswitch sequences into sc:url "https://absynth.issb.genopole.fr/Bioinformatics/tools/Ribomaker/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, edam:topic_2229, @@ -409219,7 +432001,7 @@ RiboMiner could offer other useful functions that would help users analyze ribos sc:url "https://github.com/xryanglab/RiboMiner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3174, @@ -409234,16 +432016,39 @@ RiboMiner could offer other useful functions that would help users analyze ribos sc:softwareHelp ; sc:url "http://ribopicker.sourceforge.net/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0203, + edam:topic_0659, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8650366", + "pubmed:34876166" ; + sc:description "A Visualization Tool for Periodic Ribo-seq Reads." ; + sc:featureList edam:operation_0337, + edam:operation_0436, + edam:operation_3198 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "RiboPlotR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/hsinyenwu/RiboPlotR" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1017" ; - sc:name "Sequence range" ; - sc:sameAs "http://edamontology.org/data_1017" ] ; + sc:additionalType "http://edamontology.org/data_1017" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence range" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1921" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -409261,7 +432066,7 @@ RiboMiner could offer other useful functions that would help users analyze ribos biotools:primaryContact "A. Popa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -409280,7 +432085,7 @@ RiboMiner could offer other useful functions that would help users analyze ribos "Wenzheng Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -409302,7 +432107,7 @@ RiboMiner could offer other useful functions that would help users analyze ribos sc:url "https://github.com/agombolay/ribose-map" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -409320,7 +432125,7 @@ RiboMiner could offer other useful functions that would help users analyze ribos biotools:primaryContact "Thomas J. Hardcastle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, edam:topic_0659, @@ -409340,13 +432145,8 @@ Starting with a BAM file, this package provides the necessary functions for qual sc:name "ribosome profiling" ; sc:url "http://bioconductor.org/packages/release/bioc/html/RiboProfiling.html" . - a sc:SoftwareApplication ; - sc:description "CD genomics provides a ribosome-profiling strategy that is based on the deep sequencing of ribosome-protected mRNA fragments and enables genome-wide investigation of translation with sub cordon resolution. Using nuclease digestion, the ribosome position and the translated message can be precisely determined by analyzing the protected ~30-nt area of the mRNA template." ; - sc:name "Ribosome Profiling -" ; - sc:url "https://www.cd-genomics.com/ribosome-profiling.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -409362,7 +432162,7 @@ Starting with a BAM file, this package provides the necessary functions for qual sc:url "http://rna.bgsu.edu/ribostral/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -409385,7 +432185,7 @@ Starting with a BAM file, this package provides the necessary functions for qual sc:url "http://riboswitch.bioapps.biozentrum.uni-wuerzburg.de/server.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -409402,22 +432202,22 @@ Starting with a BAM file, this package provides the necessary functions for qual a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Gene expression profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0085 ; sc:citation ; @@ -409430,7 +432230,7 @@ Starting with a BAM file, this package provides the necessary functions for qual sc:url "https://ohlerlab.mdc-berlin.de/software/RiboTaper_126/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, edam:topic_0659, @@ -409451,7 +432251,7 @@ Ribosome profiling (Ribo-seq) has revolutionized the translatomics field by mapp sc:url "http://rnabioinfor.tch.harvard.edu/RiboToolkit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, edam:topic_0621, @@ -409468,7 +432268,7 @@ Ribosome profiling (Ribo-seq) has revolutionized the translatomics field by mapp sc:url "https://github.com/smithlabcode/ribotricer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -409484,7 +432284,7 @@ Ribosome profiling (Ribo-seq) has revolutionized the translatomics field by mapp sc:url "http://apollo.chemistry.gatech.edu/RiboVision/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, @@ -409506,7 +432306,7 @@ Ribosome profiling (Ribo-seq) has revolutionized the translatomics field by mapp . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Suite" ; @@ -409526,8 +432326,22 @@ Ribosomal RNA sequence analysis for GenBank submissions and database curation."" sc:name "Ribovore" ; sc:url "https://github.com/ncbi/ribovore" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "riboWaltz is an R package for calculation of optimal P-site offsets, diagnostic analysis and visual inspection of ribosome profiling data." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "riboWaltz" ; + sc:softwareVersion "1.0.0", + "1.0.1", + "1.1.0", + "1.2.0" ; + sc:url "https://github.com/LabTranslationalArchitectomics/riboWaltz" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0780, edam:topic_2885, @@ -409543,8 +432357,28 @@ Long non-coding RNAs (lncRNAs) play significant functions in various biological sc:name "RiceLncPedia" ; sc:url "http://218.199.68.191:10092/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_0780, + edam:topic_3170 ; + sc:citation , + "pubmed:35762882" ; + sc:description "A Resource for Rice Non-coding RNA Co-Expression Atlas Based on Massive RNA-seq and Small-RNA seq Data." ; + sc:featureList edam:operation_3463, + edam:operation_3680, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:name "RiceNCexp" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://cbi.njau.edu.cn/RiceNCexp/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -409567,7 +432401,7 @@ Long non-coding RNAs (lncRNAs) play significant functions in various biological biotools:primaryContact "RiceXPro Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3314, @@ -409586,7 +432420,7 @@ Long non-coding RNAs (lncRNAs) play significant functions in various biological biotools:primaryContact "Molly Rossow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3053 ; @@ -409601,7 +432435,7 @@ Long non-coding RNAs (lncRNAs) play significant functions in various biological sc:url "http://www.functionalnet.org/riddle/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, edam:topic_0160 ; @@ -409617,7 +432451,7 @@ Methods able to provide reliable protein alignments are crucial for many bioinfo sc:url "http://www.ibsquare.be/rigapollo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0749, edam:topic_3304, @@ -409636,7 +432470,7 @@ Rigbox is a high-performance, open-source MATLAB toolbox for managing behavioral sc:url "https://github.com/cortex-lab/Rigbox" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, edam:topic_0780, @@ -409657,7 +432491,7 @@ PIGD integrates the intronless genes data of six species of Rosaceae and makes a sc:url "http://www.rigdb.cn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3308, @@ -409674,7 +432508,7 @@ PIGD integrates the intronless genes data of six species of Rosaceae and makes a sc:url "https://github.com/lshen/RIGEA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3572 ; @@ -409696,7 +432530,7 @@ PIGD integrates the intronless genes data of six species of Rosaceae and makes a biotools:primaryContact "RightField" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0089, @@ -409718,14 +432552,12 @@ PIGD integrates the intronless genes data of six species of Rosaceae and makes a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0881" ; - sc:name "Secondary structure alignment (RNA)" ; - sc:sameAs "http://edamontology.org/data_0881" ] ; + sc:additionalType "http://edamontology.org/data_0881" ; + sc:name "Secondary structure alignment (RNA)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1708" ; - sc:name "RNA secondary structure image" ; - sc:sameAs "http://edamontology.org/data_1708" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1708" ; + sc:name "RNA secondary structure image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0097 ; @@ -409747,7 +432579,7 @@ PIGD integrates the intronless genes data of six species of Rosaceae and makes a biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0804 ; @@ -409765,7 +432597,7 @@ PIGD integrates the intronless genes data of six species of Rosaceae and makes a biotools:primaryContact "Ravi Shankar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -409788,7 +432620,7 @@ PIGD integrates the intronless genes data of six species of Rosaceae and makes a sc:url "https://github.com/Ettwiller/RIMS-seq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, @@ -409806,26 +432638,28 @@ PIGD integrates the intronless genes data of six species of Rosaceae and makes a biotools:primaryContact "Jonathan M. Goodman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API", "Web application" ; sc:applicationSubCategory edam:topic_2814 ; - sc:citation ; - sc:description "Residue interaction network generation method for Cytoscape." ; + sc:citation , + , + "pubmed:35554554" ; + sc:description "Residue interaction network generator" ; sc:featureList edam:operation_2423 ; sc:name "RING" ; sc:operatingSystem "Linux", "Mac", "Windows" ; sc:provider "University of Padua, Department of Biomedical Sciences, BioComputing UP lab" ; - sc:softwareHelp ; - sc:softwareVersion "1.0" ; - sc:url "http://protein.bio.unipd.it/ring" ; + sc:softwareHelp ; + sc:softwareVersion "3.0" ; + sc:url "https://ring.biocomputingup.it" ; biotools:primaryContact "Silvio C.E. Tosatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0176, @@ -409841,7 +432675,7 @@ PIGD integrates the intronless genes data of six species of Rosaceae and makes a sc:url "http://bl831.als.lbl.gov/ringer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169 ; @@ -409861,7 +432695,7 @@ PIGD integrates the intronless genes data of six species of Rosaceae and makes a biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0659, edam:topic_2229, @@ -409881,7 +432715,7 @@ to compile the source and obtain the executable "rintc". I succeed to compile th sc:url "https://github.com/eukaryo/rintc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3518, edam:topic_3697 ; @@ -409900,7 +432734,7 @@ Large scale of simulation studies are conducted to compare the performance of Ri sc:url "https://github.com/yuanjing-ma/RioNorm2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3360, edam:topic_3382, @@ -409917,7 +432751,7 @@ This repository contains files for RippleNet, a recurrent neural network with LS sc:url "http://github.com/espenhgn/RippleNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170 ; @@ -409938,14 +432772,14 @@ This repository contains files for RippleNet, a recurrent neural network with LS a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_3687" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3361 ; @@ -409965,7 +432799,7 @@ This repository contains files for RippleNet, a recurrent neural network with LS biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -409983,18 +432817,17 @@ This repository contains files for RippleNet, a recurrent neural network with LS a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ], + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1588" ; - sc:name "DNA base pair stacking energies data" ; - sc:sameAs "http://edamontology.org/data_1588" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1588" ; + sc:name "DNA base pair stacking energies data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation ; @@ -410010,7 +432843,7 @@ This repository contains files for RippleNet, a recurrent neural network with LS biotools:primaryContact "Anne Wenzel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3360, @@ -410028,7 +432861,7 @@ This repository contains files for RippleNet, a recurrent neural network with LS biotools:primaryContact "John Pickering" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -410041,7 +432874,7 @@ This repository contains files for RippleNet, a recurrent neural network with LS sc:url "http://www.lx.it.pt/~asmc/software/riso.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0602 ; @@ -410059,7 +432892,7 @@ This repository contains files for RippleNet, a recurrent neural network with LS biotools:primaryContact "Michael Zimmermann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0199, @@ -410086,7 +432919,7 @@ This repository contains files for RippleNet, a recurrent neural network with LS biotools:primaryContact "Yungil Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:author "Martyn Plummer" ; @@ -410101,7 +432934,7 @@ from the posterior distribution of the parameters.""" ; biotools:primaryContact "Martyn Plummer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3169, @@ -410120,7 +432953,7 @@ from the posterior distribution of the parameters.""" ; biotools:primaryContact "Astrid Deschênes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0632 ; @@ -410135,7 +432968,7 @@ from the posterior distribution of the parameters.""" ; biotools:primaryContact "Dr. Frank M. You" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, edam:topic_3170, @@ -410153,7 +432986,7 @@ RNA splicing is an essential step of RNA processing for multi-exon genes, in whi sc:url "http://www.RJunBase.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0196, @@ -410179,7 +433012,7 @@ RNA splicing is an essential step of RNA processing for multi-exon genes, in whi sc:url "https://frebio.github.io/komics/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080 ; @@ -410194,7 +433027,7 @@ RNA splicing is an essential step of RNA processing for multi-exon genes, in whi sc:url "http://www.cs.bgu.ac.il/~negevcb/RL-CSA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_2640, @@ -410214,8 +433047,30 @@ RLassoCox is a package that implements the RLasso-Cox model proposed by Wei Liu. sc:name "RLasso-Cox" ; sc:url "http://bioconductor.org/packages/devel/bioc/html/RLassoCox.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0097, + edam:topic_0102, + edam:topic_0203, + edam:topic_3170 ; + sc:citation ; + sc:description "Exploration and analysis of R-loop mapping data with RLBase." ; + sc:featureList edam:operation_2422, + edam:operation_2429, + edam:operation_2939, + edam:operation_3222 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "RLBase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gccri.bishop-lab.uthscsa.edu/rlbase/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0128, @@ -410235,7 +433090,7 @@ RLDOCK is a source-availabe program for predicting the binding site and binding sc:url "https://github.com/Vfold-RNA/RLDOCK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0218 ; sc:citation ; @@ -410249,8 +433104,31 @@ RLDOCK is a source-availabe program for predicting the binding site and binding sc:softwareVersion "2.0" ; sc:url "http://research.bioinformatics.udel.edu/rlimsp/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0654, + edam:topic_3295, + edam:topic_3674 ; + sc:citation , + "pmcid:PMC8686677", + "pubmed:34601556" ; + sc:description "Fast and simplified extraction of Read-Level Methylation metrics from bisulfite sequencing data." ; + sc:featureList edam:operation_3186, + edam:operation_3192, + edam:operation_3435, + edam:operation_3919 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "RLM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/sarahet/RLM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2885, @@ -410269,7 +433147,7 @@ RLDOCK is a source-availabe program for predicting the binding site and binding biotools:primaryContact "Nusrat Rabbee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2275, @@ -410286,10 +433164,9 @@ RLDOCK is a source-availabe program for predicting the binding site and binding a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1193" ; - sc:name "Tool name (FASTA)" ; - sc:sameAs "http://edamontology.org/data_1193" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1193" ; + sc:name "Tool name (FASTA)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0102, @@ -410305,7 +433182,7 @@ RLDOCK is a source-availabe program for predicting the binding site and binding sc:url "https://github.com/Kingsford-Group/rlzgraph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -410324,7 +433201,7 @@ RLDOCK is a source-availabe program for predicting the binding site and binding sc:url "http://rmaexpress.bmbolstad.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -410343,7 +433220,7 @@ RLDOCK is a source-availabe program for predicting the binding site and binding biotools:primaryContact "Camille Maumet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3295 ; sc:citation , @@ -410365,7 +433242,7 @@ RLDOCK is a source-availabe program for predicting the binding site and binding "Wen-Yu Chung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -410383,7 +433260,7 @@ A tool for optical map assembly using de Bruijn graph.""" ; sc:url "https://github.com/kingufl/Rmapper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0092, @@ -410403,14 +433280,14 @@ A tool for optical map assembly using de Bruijn graph.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Database metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3172 ; @@ -410429,7 +433306,7 @@ A tool for optical map assembly using de Bruijn graph.""" ; biotools:primaryContact "RMassBank at Eawag" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169 ; @@ -410447,8 +433324,76 @@ A tool for optical map assembly using de Bruijn graph.""" ; biotools:primaryContact "Arnaud Droit", "Raphael Gottardo" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Nucleic acid sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:name "P-value" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3932" ; + sc:name "Q-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workbench" ; + sc:applicationSubCategory edam:topic_3320 ; + sc:citation , + "pmcid:PMC4280593", + "pubmed:25480548" ; + sc:description "MATS is a computational tool to detect differential alternative splicing events from RNA-Seq data." ; + sc:featureList edam:operation_2499 ; + sc:isAccessibleForFree true ; + sc:license "BSD-2-Clause" ; + sc:name "rMATS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "4.1.2" ; + sc:url "http://rnaseq-mats.sourceforge.net/" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Desktop application" ; + sc:applicationSubCategory edam:topic_0622 ; + sc:description "RMBlast is a RepeatMasker compatible version of the standard NCBI blastn program. The primary difference between this distribution and the NCBI distribution is the addition of a new program \"rmblastn\" for use with RepeatMasker and RepeatModeler." ; + sc:featureList edam:operation_2403 ; + sc:isAccessibleForFree true ; + sc:license "OSL-2.1" ; + sc:name "RMBlast" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareVersion "2.11.0" ; + sc:url "http://www.repeatmasker.org/RMBlast.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_2269 ; + sc:citation , + "pmcid:PMC8456376", + "pubmed:34621514" ; + sc:description "This Shiny app computes and visualizes repeated measures correlation (rmcorr). Rmcorr is the common within-individual linear association for paired, repeated measures data. Rmcorr is conceptually similar to a null multilevel model: A fixed slope and varying intercept by participant." ; + sc:featureList edam:operation_0337, + edam:operation_3436, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "rmcorrShiny" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://lmarusich.shinyapps.io/shiny_rmcorr/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, edam:topic_2885, @@ -410469,7 +433414,7 @@ Deciphering the biological impacts of millions of single nucleotide variants rem sc:url "http://www.xjtlu.edu.cn/biologicalsciences/rmd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3068, edam:topic_3382 ; @@ -410487,7 +433432,7 @@ The goal of rMEA is to provide a suite of tools useful to read, visualize and ex sc:url "https://github.com/kleinbub/rMEA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3314, edam:topic_3474 ; @@ -410500,10 +433445,10 @@ The goal of rMEA is to provide a suite of tools useful to read, visualize and ex a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1926" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -410521,8 +433466,27 @@ The goal of rMEA is to provide a suite of tools useful to read, visualize and ex sc:url "http://bioconductor.org/packages/release/bioc/html/RmiR.html" ; biotools:primaryContact "Francesco Favero" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3077, + edam:topic_3172, + edam:topic_3308 ; + sc:citation , + "pubmed:34634637" ; + sc:description "A robust missing value imputation approach in transcriptomics and metabolomics data." ; + sc:featureList edam:operation_3557 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "rMisbeta" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://CRAN.R-project.org/package=rMisbeta" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -410538,7 +433502,7 @@ The goal of rMEA is to provide a suite of tools useful to read, visualize and ex sc:url "http://bioportal.weizmann.ac.il/~lapidotm/rMotif/html/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3315, @@ -410560,7 +433524,7 @@ A differential expression analysis method for RNA-seq data from repeated-measure sc:url "https://cran.r-project.org/web/packages/rmRNAseq/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2814 ; sc:description "Redirect protein structure files (PDB files) or RasMol scripts to multiple RasMol sessions." ; @@ -410574,7 +433538,7 @@ A differential expression analysis method for RNA-seq data from repeated-measure sc:url "http://rmscopii.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3383, edam:topic_3384, @@ -410592,7 +433556,7 @@ A differential expression analysis method for RNA-seq data from repeated-measure biotools:primaryContact "Jesús Brezmes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -410615,7 +433579,7 @@ A differential expression analysis method for RNA-seq data from repeated-measure sc:url "https://bitbucket.org/lababi/rmsigui/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, edam:topic_3520 ; @@ -410631,7 +433595,7 @@ Mass spectrometry imaging (MSI) can reveal biochemical information directly from sc:url "https://github.com/prafols/rMSIproc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, edam:topic_3170, @@ -410656,7 +433620,7 @@ RMTA can process FASTq files containing paired-end or single-end reads. Alternat sc:url "https://wiki.cyverse.org/wiki/display/DEapps/RMTA+v2.6.3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3320, edam:topic_3512, @@ -410676,7 +433640,7 @@ We collected millions of variants, as well as thousands of RNA modification site sc:url "http://rmvar.renlab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3315, @@ -410694,7 +433658,7 @@ We collected millions of variants, as well as thousands of RNA modification site sc:url "https://github.com/xiaolei-lab/rMVP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation ; @@ -410709,8 +433673,33 @@ We collected millions of variants, as well as thousands of RNA modification site sc:url "http://iga-rna.sourceforge.net/" ; biotools:primaryContact "rNA Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_2885, + edam:topic_3170, + edam:topic_3308, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8740077", + "pubmed:34991454" ; + sc:description "A toolkit for comprehensive analyses on transcriptome data from different sequencing platforms." ; + sc:featureList edam:operation_0337, + edam:operation_0484, + edam:operation_3223, + edam:operation_3680, + edam:operation_3800 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "RNA-combine" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/dongxuemin666/RNA-combine" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168, @@ -410726,7 +433715,7 @@ We collected millions of variants, as well as thousands of RNA modification site sc:url "http://www.rnaexpress.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation "pubmed:19648138" ; @@ -410736,7 +433725,7 @@ We collected millions of variants, as well as thousands of RNA modification site sc:url "http://grimmond.imb.uq.edu.au/RNA-MATE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -410757,14 +433746,14 @@ We collected millions of variants, as well as thousands of RNA modification site a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3496" ; - sc:name "RNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3496" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3496" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "RNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0166, @@ -410782,7 +433771,7 @@ We collected millions of variants, as well as thousands of RNA modification site biotools:primaryContact "Jérôme Waldispühl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2229, @@ -410800,7 +433789,7 @@ We collected millions of variants, as well as thousands of RNA modification site sc:url "https://gite.lirmm.fr/rivals/RRE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170 ; @@ -410817,7 +433806,7 @@ We collected millions of variants, as well as thousands of RNA modification site sc:url "http://www.broadinstitute.org/cancer/cga/rna-seqc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -410831,8 +433820,32 @@ We collected millions of variants, as well as thousands of RNA modification site sc:softwareHelp ; sc:url "http://www.csbio.unc.edu/rs/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_2640, + edam:topic_3170, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9279659", + "pubmed:35846154" ; + sc:description "A Reliable Somatic Single Nucleotide Variant Identification Framework for Bulk RNA-Seq Data." ; + sc:featureList edam:operation_0335, + edam:operation_3196, + edam:operation_3227, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "RNA-SSNV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/pmglab/RNA-SSNV" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Workflow" ; @@ -410848,10 +433861,10 @@ We collected millions of variants, as well as thousands of RNA modification site a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0749, @@ -410874,7 +433887,7 @@ We have also enabled custom sequence input for CasRx guide design.""" ; sc:url "http://RNAtargeting.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -410890,7 +433903,7 @@ We have also enabled custom sequence input for CasRx guide design.""" ; sc:url "http://www.rna.icmb.utexas.edu/SIM/4F/RNA2DMap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, @@ -410909,22 +433922,8 @@ We have also enabled custom sequence input for CasRx guide design.""" ; sc:url "http://cab.spbu.ru/software/rnaquast/" ; biotools:primaryContact "Andrey D. Prjibelski" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3170, - edam:topic_3308, - edam:topic_3673 ; - sc:citation , - "pmcid:PMC6736328", - "pubmed:31494669" ; - sc:description "> NAME (rnaSPAdes) SIMILAR TO (PUB. DIFFERENT) bio.tools/rnaspades (rnaspades) | a de novo transcriptome assembler and its application to RNA-Seq data | rnaSPAdes – Center for Algorithmic Biotechnology | While RNA-Seq is commonly used for model organisms with well-known genomes, multiple projects study species with previously unsequenced genome. Since finishing a genome can be costly and challenging (especially when the genome is large), RNA-Seq can be used for the purpose of de novo transcriptome a.. | While RNA-Seq is commonly used for model organisms with well-known genomes, multiple projects study species with previously unsequenced genome | 2.1. Downloading SPAdes Linux binaries | 2.2. Downloading SPAdes binaries for Mac" ; - sc:featureList edam:operation_3216, - edam:operation_3258, - edam:operation_3644 ; - sc:name "rnaSPAdes_autogenerated" ; - sc:url "http://cab.spbu.ru/software/rnaspades/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -410947,7 +433946,7 @@ We have also enabled custom sequence input for CasRx guide design.""" ; biotools:primaryContact "Thomas Dandekar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -410966,7 +433965,7 @@ We have also enabled custom sequence input for CasRx guide design.""" ; biotools:primaryContact "Guorong Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -410988,7 +433987,7 @@ We have also enabled custom sequence input for CasRx guide design.""" ; biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099 ; sc:citation ; @@ -411003,7 +434002,7 @@ We have also enabled custom sequence input for CasRx guide design.""" ; sc:url "http://rnafrabase.ibch.poznan.pl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -411023,7 +434022,7 @@ We have also enabled custom sequence input for CasRx guide design.""" ; biotools:primaryContact "Eckhard Jankowsky" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -411045,13 +434044,8 @@ We have also enabled custom sequence input for CasRx guide design.""" ; sc:url "http://bibiserv.techfak.uni-bielefeld.de/rnamovies/" ; biotools:primaryContact "Jan Krüger" . - a sc:SoftwareApplication ; - sc:description "CD Genomics has been providing the accurate and affordable RNA-Seq (RNA sequencing) service for decades. We combine both Illumina (short reads) and PacBio (long reads) platforms to obtain the transcriptome that allows de novo assembly or re-sequencing for bacteria, plants, animals and humans. CD Genomics provides full RNA sequencing service package including sample standardization, library construction, deep sequencing, raw data quality control, genome assembly, and customized bioinformatics analysis. We can tailor this pipeline to your research interest. If you have additional requirements or questions, please feel free to contact us." ; - sc:name "RNA sequencing" ; - sc:url "https://www.cd-genomics.com/RNA-Seq-Transcriptome.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -411072,7 +434066,7 @@ We have also enabled custom sequence input for CasRx guide design.""" ; biotools:primaryContact "Biefeld University Bioinformatics Server" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3295, @@ -411089,7 +434083,7 @@ An R package for the analysis of tiling array data that incorporates the correla sc:url "http://www.ams.sunysb.edu/~pfkuan/softwares.html#RNAAgeCalc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097 ; @@ -411103,7 +434097,7 @@ An R package for the analysis of tiling array data that incorporates the correla sc:url "http://rna.tbi.univie.ac.at/cgi-bin/RNAalifold.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -411119,7 +434113,7 @@ An R package for the analysis of tiling array data that incorporates the correla sc:url "http://bibiserv2.cebitec.uni-bielefeld.de/rnaalishapes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099, @@ -411142,7 +434136,7 @@ An R package for the analysis of tiling array data that incorporates the correla biotools:primaryContact "RNABindR team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099 ; @@ -411162,7 +434156,7 @@ An R package for the analysis of tiling array data that incorporates the correla sc:url "http://ailab1.ist.psu.edu/RNABindRPlus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0092, @@ -411180,7 +434174,7 @@ An R package for the analysis of tiling array data that incorporates the correla "Sven Findeiß" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0082, @@ -411201,8 +434195,28 @@ An R package for the analysis of tiling array data that incorporates the correla sc:url "http://bioinformatics.bc.edu/clotelab/RNAbor/" ; biotools:primaryContact "Clote Structural Biology Lab" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0097, + edam:topic_0099, + edam:topic_0154 ; + sc:citation , + "pubmed:35705797" ; + sc:description "Molecular Modeling of RNA Structure-From Base Pair Analysis in Crystals to Structure Prediction." ; + sc:featureList edam:operation_0474, + edam:operation_2441, + edam:operation_2996 ; + sc:isAccessibleForFree true ; + sc:name "RNABPDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://hdrnas.saha.ac.in/rnabpdb" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0099, @@ -411219,7 +434233,7 @@ An R package for the analysis of tiling array data that incorporates the correla sc:url "https://mulcyber.toulouse.inra.fr/plugins/mediawiki/wiki/ngspipelines/index.php/RNA-seq_denovo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0659 ; sc:citation "pubmed:25352543", @@ -411238,7 +434252,7 @@ An R package for the analysis of tiling array data that incorporates the correla sc:url "http://rnacentral.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -411255,7 +434269,7 @@ An R package for the analysis of tiling array data that incorporates the correla sc:url "http://www.bioinf.uni-leipzig.de/~kristin/Software/RNAclust/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -411271,7 +434285,7 @@ An R package for the analysis of tiling array data that incorporates the correla sc:url "http://csbl.bmb.uga.edu/publications/materials/qiliu/RNACluster.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0099, @@ -411288,7 +434302,7 @@ An R package for the analysis of tiling array data that incorporates the correla sc:url "https://sparks-lab.org/server/rnacmap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Plug-in" ; sc:applicationSubCategory edam:topic_0082, @@ -411305,8 +434319,24 @@ An R package for the analysis of tiling array data that incorporates the correla sc:softwareHelp ; sc:url "http://rnacommender.disi.unitn.it" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC3925371", + "pubmed:24521294" ; + sc:description "RNAcon is a web-server for the prediction and classification of non-coding RNAs. It uses SVM-based model for the discrimination between coding and ncRNAs and Random Forest-based prediction model for the classification of ncRNAs into different classes." ; + sc:featureList edam:operation_2945 ; + sc:name "rnacon" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/rnacon/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -411320,7 +434350,7 @@ An R package for the analysis of tiling array data that incorporates the correla sc:url "http://genome.ucf.edu/RNAConSLOpt/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0099, @@ -411340,7 +434370,7 @@ RNAcontact is a new algorithm for RNA inter-nucleotide contacts prediction.""" ; sc:url "http://yanglab.nankai.edu.cn/RNAcontact/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -411362,7 +434392,7 @@ RNAcontact is a new algorithm for RNA inter-nucleotide contacts prediction.""" ; biotools:primaryContact "Hilal Kazan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099 ; @@ -411378,7 +434408,7 @@ RNAcontact is a new algorithm for RNA inter-nucleotide contacts prediction.""" ; sc:url "http://rth.dk/resources/rnacop" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -411399,7 +434429,7 @@ RNAcontact is a new algorithm for RNA inter-nucleotide contacts prediction.""" ; biotools:primaryContact "Reed Sorenson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0769, @@ -411425,7 +434455,7 @@ RNAcontact is a new algorithm for RNA inter-nucleotide contacts prediction.""" ; sc:url "https://rnadetector.atlas.dmi.unict.it/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -411439,7 +434469,7 @@ RNAcontact is a new algorithm for RNA inter-nucleotide contacts prediction.""" ; sc:url "http://genome.ucf.edu/RNAEAPath/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3308 ; sc:description "An Atlas of RNA editing events in human tissues." ; @@ -411455,7 +434485,7 @@ RNAcontact is a new algorithm for RNA inter-nucleotide contacts prediction.""" ; biotools:primaryContact "Ernesto Picardi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0821, edam:topic_2885, @@ -411471,7 +434501,7 @@ RNAcontact is a new algorithm for RNA inter-nucleotide contacts prediction.""" ; sc:url "https://github.com/a2iEditing/RNAEditingIndexer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -411485,7 +434515,7 @@ RNAcontact is a new algorithm for RNA inter-nucleotide contacts prediction.""" ; sc:url "https://github.com/clotelab/RNAentropy/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -411501,7 +434531,7 @@ RNAcontact is a new algorithm for RNA inter-nucleotide contacts prediction.""" ; sc:url "http://lulab.life.tsinghua.edu.cn/RNAex/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -411515,7 +434545,7 @@ RNAcontact is a new algorithm for RNA inter-nucleotide contacts prediction.""" ; sc:url "http://bioinformatics.bc.edu/clotelab/RNAexpNumNbors/index.spy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0097, @@ -411530,7 +434560,7 @@ RNAcontact is a new algorithm for RNA inter-nucleotide contacts prediction.""" ; sc:url "http://sourceforge.net/projects/rnafdl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -411547,7 +434577,7 @@ RNAcontact is a new algorithm for RNA inter-nucleotide contacts prediction.""" ; sc:url "http://ccmbweb.ccv.brown.edu/rnag.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -411564,34 +434594,29 @@ RNAcontact is a new algorithm for RNA inter-nucleotide contacts prediction.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ], + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_1210" ; + sc:name "Nucleic acid sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_1210" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1584" ; - sc:name "Nucleic acid enthalpy" ; - sc:sameAs "http://edamontology.org/data_1584" ], + sc:additionalType "http://edamontology.org/data_1584" ; + sc:name "Nucleic acid enthalpy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1584" ; - sc:name "Nucleic acid enthalpy" ; - sc:sameAs "http://edamontology.org/data_1584" ], + sc:additionalType "http://edamontology.org/data_0880" ; + sc:name "RNA secondary structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0880" ; - sc:name "RNA secondary structure" ; - sc:sameAs "http://edamontology.org/data_0880" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_1584" ; + sc:name "Nucleic acid enthalpy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3128" ; - sc:name "Nucleic acid structure report" ; - sc:sameAs "http://edamontology.org/data_3128" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3128" ; + sc:name "Nucleic acid structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API", "Web application" ; @@ -411616,7 +434641,7 @@ RNAcontact is a new algorithm for RNA inter-nucleotide contacts prediction.""" ; sc:url "http://bibiserv.cebitec.uni-bielefeld.de/rnahybrid" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -411635,8 +434660,21 @@ RNAcontact is a new algorithm for RNA inter-nucleotide contacts prediction.""" ; sc:url "http://bioinformatics.bc.edu/clotelab/RNAiFold" ; biotools:primaryContact "Clote Structural Biology Lab" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "RNAint is a web-server for the prediction of RNA interacting mono-residues (RIMRs), di-residues (RIDRs), tri-residues (RITRs), tetra-residues (RITTRs) and penta-residues (RIPRs) from protein sequences." ; + sc:featureList edam:operation_2945 ; + sc:name "rnaint" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/rnaint/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, edam:topic_0602, @@ -411658,14 +434696,14 @@ RNAInter: RNA Interactome Database.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0091 ; @@ -411685,14 +434723,14 @@ RNAInter: RNA Interactome Database.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2078" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3316 ; @@ -411712,10 +434750,10 @@ RNAInter: RNA Interactome Database.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099 ; sc:author ; @@ -411736,7 +434774,7 @@ RNAInter: RNA Interactome Database.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0099, @@ -411755,7 +434793,7 @@ RNAlign2D is a Python wrapper allowing one to align multiple RNA molecules using sc:url "https://github.com/tomaszwozniakihg/rnalign2d" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -411770,7 +434808,7 @@ RNAlign2D is a Python wrapper allowing one to align multiple RNA molecules using sc:url "http://sysbio.cvm.msstate.edu/Rnall/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0659, @@ -411798,7 +434836,7 @@ RNAlign2D is a Python wrapper allowing one to align multiple RNA molecules using sc:url "http://www.rnalocate.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -411819,8 +434857,39 @@ RNAlign2D is a Python wrapper allowing one to align multiple RNA molecules using sc:url "http://rnalogo.mbc.nctu.edu.tw/" ; biotools:primaryContact "Tzu-Hao Chang" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1465" ; + sc:name "RNA structure" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0097, + edam:topic_0099, + edam:topic_0166, + edam:topic_3314 ; + sc:citation , + "pubmed:35809063" ; + sc:description "A database of RNA multiloops." ; + sc:featureList edam:operation_0570, + edam:operation_2441, + edam:operation_3431, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "RNAloops" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://rnaloops.cs.put.poznan.pl" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -411842,7 +434911,7 @@ RNAlign2D is a Python wrapper allowing one to align multiple RNA molecules using biotools:primaryContact "Peter Clote" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -411863,7 +434932,7 @@ RNAlign2D is a Python wrapper allowing one to align multiple RNA molecules using biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_3293, @@ -411882,14 +434951,14 @@ RNAmining is a web tool that allows coding potential prediction.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -411908,7 +434977,7 @@ RNAmining is a web tool that allows coding potential prediction.""" ; biotools:primaryContact "Hans-Henrik Staerfeldt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0097, @@ -411930,7 +434999,7 @@ RNAmining is a web tool that allows coding potential prediction.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -411945,7 +435014,7 @@ RNAmining is a web tool that allows coding potential prediction.""" ; sc:url "http://genome.ucf.edu/RNAMotifScan/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -411959,7 +435028,7 @@ RNAmining is a web tool that allows coding potential prediction.""" ; sc:url "http://genome.ucf.edu/RNAMotifScanX/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, edam:topic_0099, @@ -411982,7 +435051,7 @@ RNAmountAlign is a novel algorithm for RNA sequence structure pairwise alignment sc:url "http://bioinformatics.bc.edu/clotelab/RNAmountAlign/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -412000,7 +435069,7 @@ RNAmountAlign is a novel algorithm for RNA sequence structure pairwise alignment sc:url "http://bioinfo.csie.ncu.edu.tw/~rnamst/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -412023,7 +435092,7 @@ RNAmountAlign is a novel algorithm for RNA sequence structure pairwise alignment "Peter Clote (questions about the web server)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -412043,7 +435112,7 @@ RNAmountAlign is a novel algorithm for RNA sequence structure pairwise alignment biotools:primaryContact "D. Barash" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0099, @@ -412061,10 +435130,10 @@ A major part of any data-science work consists in finding appropriate data which a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -412086,7 +435155,7 @@ A major part of any data-science work consists in finding appropriate data which sc:url "http://rnanetmotif.ccbr.utoronto.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -412102,7 +435171,7 @@ A major part of any data-science work consists in finding appropriate data which biotools:primaryContact "Yann Ponty" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -412123,7 +435192,7 @@ A major part of any data-science work consists in finding appropriate data which biotools:primaryContact "Björn Voß" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -412139,7 +435208,7 @@ A major part of any data-science work consists in finding appropriate data which sc:url "http://bioinformatics.bc.edu/clotelab/RNApagenumber/index.spy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -412155,7 +435224,7 @@ A major part of any data-science work consists in finding appropriate data which sc:url "http://bioinformatics.bc.edu/clotelab/RNAparametric/index.spy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -412171,7 +435240,7 @@ A major part of any data-science work consists in finding appropriate data which sc:url "http://rna-informatics.uga.edu/malmberg/rlmlab/index.php?s=1&n=5&r=0" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -412188,7 +435257,7 @@ A major part of any data-science work consists in finding appropriate data which sc:url "http://bioinformatics.bc.edu/clotelab/RNApathfinder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -412210,8 +435279,48 @@ A major part of any data-science work consists in finding appropriate data which sc:url "http://rnapdbee.cs.put.poznan.pl/" ; biotools:primaryContact "Contact form" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0749, + edam:topic_2229, + edam:topic_3068, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC8728120", + "pubmed:34718740" ; + sc:description "RNAPhaSep is a novel database that collects phase separation related RNAs manually curated from publication and public databases. Various properties of RNAs together with the corresponding phase separation conditions validated by experiments were collected and deposited into this database." ; + sc:featureList edam:operation_3216, + edam:operation_3431, + edam:operation_3454, + edam:operation_3901 ; + sc:isAccessibleForFree true ; + sc:name "RNAPhaSep" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.rnaphasep.cn" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "RNApin is a Support Vector Machines (SVMs) based web-server for the prediction of Protein Interacting Nucleotides (PINs) in RNA sequences." ; + sc:featureList edam:operation_2945 ; + sc:name "rnapin" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/rnapin/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0602 ; @@ -412227,7 +435336,7 @@ A major part of any data-science work consists in finding appropriate data which sc:url "http://www.bioinf.uni-leipzig.de/Software/RNAplex/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0593, edam:topic_2275, @@ -412246,7 +435355,7 @@ This repo contains source code for RNAPosers' pose fingerprint and prediction (c sc:url "https://github.com/atfrank/RNAPosers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0123, @@ -412261,10 +435370,10 @@ This repo contains source code for RNAPosers' pose fingerprint and prediction (c "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/rnapred/" . + sc:url "http://webs.iiitd.edu.in/raghava/rnapred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0154 ; @@ -412280,7 +435389,7 @@ This repo contains source code for RNAPosers' pose fingerprint and prediction (c biotools:primaryContact "RNApredator Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0099, @@ -412302,7 +435411,7 @@ Secondary structure prediction based on chemical probing.""" ; sc:url "https://rnaprobe.genesilico.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -412322,7 +435431,7 @@ Secondary structure prediction based on chemical probing.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation ; @@ -412339,7 +435448,7 @@ Secondary structure prediction based on chemical probing.""" ; biotools:primaryContact "Giulio Pavesi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0128, @@ -412355,7 +435464,7 @@ Secondary structure prediction based on chemical probing.""" ; sc:url "https://github.com/BackofenLab/RNAProt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -412381,7 +435490,7 @@ NAR Database Summary Paper Category List.""" ; sc:url "https://academic.oup.com/nar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -412395,7 +435504,7 @@ NAR Database Summary Paper Category List.""" ; sc:url "http://compbio.fmph.uniba.sk/rnarobo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099 ; @@ -412410,7 +435519,7 @@ NAR Database Summary Paper Category List.""" ; sc:url "http://bioinformatics.bc.edu/clotelab/RNAsc/index.spy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -412429,7 +435538,7 @@ NAR Database Summary Paper Category List.""" ; "Rolf Backofen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -412443,7 +435552,7 @@ NAR Database Summary Paper Category List.""" ; sc:url "http://genome.ucf.edu/RNAscf/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099 ; sc:citation , @@ -412461,7 +435570,7 @@ NAR Database Summary Paper Category List.""" ; sc:url "http://www.australianprostatecentre.org/research/software/rnaseqbrowser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170 ; @@ -412481,7 +435590,7 @@ NAR Database Summary Paper Category List.""" ; biotools:primaryContact "Mingxiang Teng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0089, edam:topic_3170, @@ -412500,7 +435609,7 @@ NAR Database Summary Paper Category List.""" ; biotools:primaryContact "George C. Tseng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_3170, @@ -412516,7 +435625,7 @@ NAR Database Summary Paper Category List.""" ; biotools:primaryContact "Mile Šikić" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -412534,14 +435643,14 @@ NAR Database Summary Paper Category List.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1921" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -412560,7 +435669,7 @@ NAR Database Summary Paper Category List.""" ; biotools:primaryContact "Michal Okoniewski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0199, @@ -412577,7 +435686,7 @@ NAR Database Summary Paper Category List.""" ; sc:url "http://allaboutbioinfo.blogspot.ca/2013/09/detecting-mutations-from-rna-seq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170 ; @@ -412595,7 +435704,7 @@ NAR Database Summary Paper Category List.""" ; biotools:primaryContact "Terry M Therneau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, @@ -412610,7 +435719,7 @@ NAR Database Summary Paper Category List.""" ; sc:url "http://www2.hawaii.edu/~lgarmire/RNASeqPowerCalculator.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -412635,7 +435744,7 @@ This R package is designed for case-control RNA-Seq analysis (two-group). There biotools:primaryContact "Leroy E. Hood" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -412656,7 +435765,7 @@ This R package is designed for case-control RNA-Seq analysis (two-group). There biotools:primaryContact "Shilin Zhao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099 ; @@ -412671,7 +435780,7 @@ This R package is designed for case-control RNA-Seq analysis (two-group). There sc:url "http://bibiserv2.cebitec.uni-bielefeld.de/rnashapes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -412692,7 +435801,7 @@ RNAsite is a novel method to predict small molecule-RNA binding sites. We first sc:url "http://yanglab.nankai.edu.cn/RNAsite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0203, edam:topic_0659, @@ -412712,7 +435821,7 @@ RNA solvent accessibility, similar to protein solvent accessibility, reflects th sc:url "https://sparks-lab.org/server/rnasnap2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -412728,7 +435837,7 @@ RNA solvent accessibility, similar to protein solvent accessibility, reflects th sc:url "http://www.bioinf.uni-leipzig.de/~htafer/RNAsnoop/RNAsnoop.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -412746,7 +435855,7 @@ RNA solvent accessibility, similar to protein solvent accessibility, reflects th "Tafer H" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -412769,8 +435878,29 @@ RNA solvent accessibility, similar to protein solvent accessibility, reflects th sc:url "http://www.rnasoft.ca/" ; biotools:primaryContact "Anne Condon" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0097, + edam:topic_0099, + edam:topic_0611 ; + sc:citation , + "pmcid:PMC9272803", + "pubmed:35674373" ; + sc:description "A repository of cleaned PDB-derived RNA 3D structures." ; + sc:featureList edam:operation_0502, + edam:operation_0570, + edam:operation_2441 ; + sc:isAccessibleForFree true ; + sc:name "RNAsolo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://rnasolo.cs.put.poznan.pl" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099 ; @@ -412784,7 +435914,7 @@ RNA solvent accessibility, similar to protein solvent accessibility, reflects th sc:url "http://www.bioinf.uni-leipzig.de/~kristin/Software/RNAsoup/?p=index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0219, @@ -412801,30 +435931,30 @@ RNA solvent accessibility, similar to protein solvent accessibility, reflects th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3170, @@ -412844,8 +435974,35 @@ RNA solvent accessibility, similar to protein solvent accessibility, reflects th sc:url "http://cab.spbu.ru/software/spades/" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1465" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "RNA structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0097, + edam:topic_0099, + edam:topic_0154, + edam:topic_0593 ; + sc:citation , + "pubmed:35349710" ; + sc:description "A webserver to analyze entanglements in RNA 3D structures." ; + sc:featureList edam:operation_0278, + edam:operation_0295, + edam:operation_0570, + edam:operation_2441, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "RNAspider" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://rnaspider.cs.put.poznan.pl/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0659, @@ -412865,7 +436022,7 @@ RNA solvent accessibility, similar to protein solvent accessibility, reflects th biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -412889,14 +436046,14 @@ RNA solvent accessibility, similar to protein solvent accessibility, reflects th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0880" ; - sc:name "RNA secondary structure" ; - sc:sameAs "http://edamontology.org/data_0880" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0880" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "RNA secondary structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082 ; sc:citation ; @@ -412911,7 +436068,7 @@ RNA solvent accessibility, similar to protein solvent accessibility, reflects th sc:url "http://www.bioinf.uni-leipzig.de/Software/RNAstrand/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -412930,7 +436087,7 @@ RNA solvent accessibility, similar to protein solvent accessibility, reflects th biotools:primaryContact "David Mathews" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -412948,7 +436105,7 @@ RNA solvent accessibility, similar to protein solvent accessibility, reflects th biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0099, @@ -412969,7 +436126,7 @@ RNAthor is a tool for the fully automated normalization and analysis of SHAPE/DM sc:url "http://rnathor.cs.put.poznan.pl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -412994,14 +436151,13 @@ RNAthor is a tool for the fully automated normalization and analysis of SHAPE/DM a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2784" ; - sc:name "RNAVirusDB ID" ; - sc:sameAs "http://edamontology.org/data_2784" ] ; + sc:additionalType "http://edamontology.org/data_2784" ; + sc:name "RNAVirusDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2530" ; - sc:name "Organism report" ; - sc:sameAs "http://edamontology.org/data_2530" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2530" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Organism report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0781 ; sc:citation , @@ -413017,7 +436173,7 @@ RNAthor is a tool for the fully automated normalization and analysis of SHAPE/DM biotools:primaryContact "Tulio de Oliveira" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099 ; @@ -413032,7 +436188,7 @@ RNAthor is a tool for the fully automated normalization and analysis of SHAPE/DM sc:url "http://www.tbi.univie.ac.at/software/rnawolf/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2229, edam:topic_3068, @@ -413050,7 +436206,7 @@ RNA modifications are involved in various kinds of cellular biological processes sc:url "http://rnawre.bio2db.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, edam:topic_0736, @@ -413067,7 +436223,7 @@ RNAxplorer is a multitool, that offers different methods to explore RNA energy l sc:url "https://github.com/ViennaRNA/RNAxplorer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -413093,14 +436249,14 @@ RNAxplorer is a multitool, that offers different methods to explore RNA energy l a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3578" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3173 ; sc:citation "pubmed:25262207" ; @@ -413118,7 +436274,7 @@ RNAxplorer is a multitool, that offers different methods to explore RNA energy l sc:url "http://rnbeads.mpi-inf.mpg.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0208, edam:topic_0602, @@ -413135,10 +436291,9 @@ RNAxplorer is a multitool, that offers different methods to explore RNA energy l a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:author "Giulio Pavesi" ; @@ -413155,7 +436310,7 @@ RNAxplorer is a multitool, that offers different methods to explore RNA energy l biotools:primaryContact "Federico Zambelli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0654, @@ -413169,7 +436324,7 @@ RNAxplorer is a multitool, that offers different methods to explore RNA energy l sc:url "http://karel-brinda.github.io/rnftools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -413187,8 +436342,26 @@ RNAxplorer is a multitool, that offers different methods to explore RNA energy l sc:url "http://bioconductor.org/packages/release/bioc/html/Rnits.html" ; biotools:primaryContact "Dipen P. Sangurdekar" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0199, + edam:topic_0654, + edam:topic_2640 ; + sc:citation , + "pubmed:35575002" ; + sc:description "A practical framework RNMF for exploring the association between mutational signatures and genes using gene cumulative contribution abundance." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "RNMF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/zhenzhang-li/RNMF" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -413204,7 +436377,7 @@ RNAxplorer is a multitool, that offers different methods to explore RNA energy l sc:url "http://rnmr.nmrfam.wisc.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3837 ; sc:citation , @@ -413220,7 +436393,7 @@ To make a prediction, users' own query contigs should be edited into a ".csv" fi sc:url "https://github.com/crazyinter/RNN-VirSeeker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3474, edam:topic_3518 ; @@ -413233,7 +436406,7 @@ To make a prediction, users' own query contigs should be edited into a ".csv" fi sc:url "https://github.com/kanamekojima/rnnimp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -413251,7 +436424,7 @@ To make a prediction, users' own query contigs should be edited into a ".csv" fi "Zhong Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -413272,7 +436445,7 @@ To make a prediction, users' own query contigs should be edited into a ".csv" fi biotools:primaryContact "Dr. Igor Jurisica" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3070, @@ -413289,7 +436462,7 @@ To make a prediction, users' own query contigs should be edited into a ".csv" fi biotools:primaryContact "Yang Feng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170 ; @@ -413307,7 +436480,7 @@ To make a prediction, users' own query contigs should be edited into a ".csv" fi biotools:primaryContact "Elena Grassi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -413323,7 +436496,7 @@ To make a prediction, users' own query contigs should be edited into a ".csv" fi sc:url "http://sanger-pathogens.github.io/Roary/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3377 ; @@ -413335,7 +436508,7 @@ To make a prediction, users' own query contigs should be edited into a ".csv" fi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -413358,7 +436531,7 @@ To make a prediction, users' own query contigs should be edited into a ".csv" fi biotools:primaryContact "David Baker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3518 ; @@ -413375,7 +436548,7 @@ To make a prediction, users' own query contigs should be edited into a ".csv" fi biotools:primaryContact "M. Lohse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3303 ; sc:citation ; @@ -413390,7 +436563,7 @@ Finite mixture models are a popular technique for modelling unobserved heterogen sc:url "https://CRAN.R-project.org/package=RobMixReg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168, @@ -413414,7 +436587,7 @@ Finite mixture models are a popular technique for modelling unobserved heterogen sc:url "https://github.com/HarteminkLab/RoboCOP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0625, @@ -413435,7 +436608,7 @@ Observe that Robocov correlation and partial correlation estimators are visually sc:url "https://github.com/kkdey/Robocov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3047, edam:topic_3315 ; @@ -413447,25 +436620,8 @@ Observe that Robocov correlation and partial correlation estimators are visually sc:name "Robosample" ; sc:url "https://github.com/spirilaurentiu/Robosample" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3315, - edam:topic_3372 ; - sc:citation ; - sc:description """A Robot's Response Acceleration Using the Metric Dimension Problem. - -Consider a robot that is navigating in a space modeled by a graph, and that wants to know its current location. It can send a signal to determine how far it is from each landmark among a set of fixed landmarks. We study the problem of computing the minimum required number of landmarks, and where they should be placed so that the robot can always determine its location. Since the problem is an NP-complete problem, the robot's responses to the actions are slow. To accelerate this response, we can use the parallel version of this problem. In this work, we introduce a new parallel implementation for determining the metric dimension of a given graph. - -||| HOMEPAGE MISSING!. - -||| NAME (robot) SIMILAR TO (PUB. DIFFERENT) bio.tools/ROBOT (ROBOT). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'metric', 'landmarks', 'SMP', 'NP-complete'""" ; - sc:featureList edam:operation_3432 ; - sc:name "robot_autogenerated" ; - sc:url "https://doi.org/10.20944/PREPRINTS201911.0194.V1" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3569, @@ -413480,8 +436636,26 @@ Consider a robot that is navigating in a space modeled by a graph, and that want sc:softwareHelp ; sc:url "https://qgsp.jouy.inra.fr/index.php?option=com_content&view=article&id=54&Itemid=59" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0634, + edam:topic_3344 ; + sc:citation , + "pubmed:34984440" ; + sc:description "Robust disease module mining via enumeration of diverse prize-collecting Steiner trees." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ROBUST" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bionetslab/robust-eval" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0625, edam:topic_2640 ; @@ -413501,18 +436675,15 @@ Run the matlab script file, named "carryout_RPCA.m" to recover the genotype matr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2872" ; - sc:name "ID list" ; - sc:sameAs "http://edamontology.org/data_2872" ] ; + sc:additionalType "http://edamontology.org/data_2872" ; + sc:name "ID list" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_2872" ; + sc:name "ID list" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2872" ; - sc:name "ID list" ; - sc:sameAs "http://edamontology.org/data_2872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3366 ; @@ -413530,7 +436701,7 @@ Run the matlab script file, named "carryout_RPCA.m" to recover the genotype matr biotools:primaryContact "Raivo Kolde" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3068 ; sc:citation , @@ -413548,7 +436719,7 @@ Helps users in quickly visualizing risk-of-bias assessments performed as part of sc:url "https://www.riskofbias.info/welcome/robvis-visualization-tool" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -413566,7 +436737,7 @@ Helps users in quickly visualizing risk-of-bias assessments performed as part of biotools:primaryContact "Vince Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3474 ; @@ -413581,7 +436752,7 @@ Helps users in quickly visualizing risk-of-bias assessments performed as part of biotools:primaryContact "Cuneyt Mertayak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3474 ; sc:description "MATLAB function which performs a ROC curve of two-class data." ; @@ -413596,14 +436767,12 @@ Helps users in quickly visualizing risk-of-bias assessments performed as part of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2523" ; - sc:name "Phylogenetic data" ; - sc:sameAs "http://edamontology.org/data_2523" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2523" ; + sc:name "Phylogenetic data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0797 ; @@ -413624,7 +436793,7 @@ Helps users in quickly visualizing risk-of-bias assessments performed as part of sc:url "https://bibiserv.cebitec.uni-bielefeld.de/roci" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3444 ; @@ -413642,8 +436811,33 @@ Helps users in quickly visualizing risk-of-bias assessments performed as part of sc:url "https://github.com/petmri/ROCKETSHIP" ; biotools:primaryContact . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0130, + edam:topic_0736, + edam:topic_0749, + edam:topic_3474 ; + sc:citation ; + sc:description "De novo protein structure prediction by incremental inter-residue geometries prediction and model quality assessment using deep learning." ; + sc:featureList edam:operation_0272, + edam:operation_0303, + edam:operation_0476, + edam:operation_0477, + edam:operation_2415 ; + sc:isAccessibleForFree true ; + sc:name "RocketX" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://zhanglab-bioinf.com/RocketX" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128 ; sc:citation ; @@ -413654,8 +436848,30 @@ Helps users in quickly visualizing risk-of-bias assessments performed as part of sc:url "http://imi.kyushu-u.ac.jp/~om/software/RocSampler/" ; biotools:primaryContact "Osamu Maruyama" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0654, + edam:topic_3170, + edam:topic_3365, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC9020074", + "pubmed:35443610" ; + sc:description "A fully convolutional architecture for basecalling nanopore RNA sequencing data." ; + sc:featureList edam:operation_3185, + edam:operation_3198 ; + sc:license "MIT" ; + sc:name "RODAN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/biodlab/RODAN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workbench" ; sc:applicationSubCategory edam:topic_0080, @@ -413674,7 +436890,7 @@ Helps users in quickly visualizing risk-of-bias assessments performed as part of biotools:primaryContact "German Cancer Research Center (DKFZ)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0108, @@ -413692,7 +436908,7 @@ Helps users in quickly visualizing risk-of-bias assessments performed as part of biotools:primaryContact "Prof. Douglas Mitchell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, edam:topic_0121, @@ -413710,7 +436926,7 @@ devtools::install_github("ymatts/RoDiCE").""" ; sc:url "https://github.com/ymatts/RoDiCE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3384, edam:topic_3452 ; @@ -413725,7 +436941,7 @@ ROdiomiX is a MATLAB-based framework for the computation of radiomic features an sc:url "https://github.com/Ebadian-HFHS/ROdiomiX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3366 ; sc:citation , @@ -413735,7 +436951,7 @@ ROdiomiX is a MATLAB-based framework for the computation of radiomic features an sc:url "https://www.rods.pitt.edu/content/view/15/36/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0160, @@ -413756,22 +436972,22 @@ ROdiomiX is a MATLAB-based framework for the computation of radiomic features an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -413790,14 +437006,14 @@ ROdiomiX is a MATLAB-based framework for the computation of radiomic features an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -413814,14 +437030,14 @@ ROdiomiX is a MATLAB-based framework for the computation of radiomic features an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3071 ; @@ -413841,14 +437057,14 @@ ROdiomiX is a MATLAB-based framework for the computation of radiomic features an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation , @@ -413867,14 +437083,14 @@ ROdiomiX is a MATLAB-based framework for the computation of radiomic features an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3071 ; @@ -413893,14 +437109,14 @@ ROdiomiX is a MATLAB-based framework for the computation of radiomic features an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -413918,14 +437134,14 @@ ROdiomiX is a MATLAB-based framework for the computation of radiomic features an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3365 ; @@ -413945,14 +437161,14 @@ ROdiomiX is a MATLAB-based framework for the computation of radiomic features an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3071 ; @@ -413971,7 +437187,7 @@ ROdiomiX is a MATLAB-based framework for the computation of radiomic features an biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0160, edam:topic_0634, @@ -413989,7 +437205,7 @@ RoKAI operates on a heterogeneous network having kinases and phosphosites as nod sc:url "http://rokai.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -414010,7 +437226,7 @@ RoKAI operates on a heterogeneous network having kinases and phosphosites as nod biotools:primaryContact "Yue Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation "pubmed:18851737" ; @@ -414026,14 +437242,14 @@ RoKAI operates on a heterogeneous network having kinases and phosphosites as nod a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0966" ; - sc:name "Ontology term" ; - sc:sameAs "http://edamontology.org/data_0966" ] ; + sc:additionalType "http://edamontology.org/data_0966" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Ontology term" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Ontology data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0089 ; @@ -414051,7 +437267,7 @@ RoKAI operates on a heterogeneous network having kinases and phosphosites as nod biotools:primaryContact "Laurent Gatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0797, @@ -414070,7 +437286,7 @@ RoKAI operates on a heterogeneous network having kinases and phosphosites as nod biotools:primaryContact "Klara Kaleb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -414087,7 +437303,7 @@ RoKAI operates on a heterogeneous network having kinases and phosphosites as nod sc:url "http://research.nhgri.nih.gov/ROMPrev/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_1317, @@ -414108,7 +437324,7 @@ RoKAI operates on a heterogeneous network having kinases and phosphosites as nod sc:url "http://www.strubi.ox.ac.uk/RONN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_1775 ; @@ -414126,7 +437342,7 @@ RoKAI operates on a heterogeneous network having kinases and phosphosites as nod biotools:primaryContact "Calin Voichita" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0780, @@ -414143,7 +437359,7 @@ RoKAI operates on a heterogeneous network having kinases and phosphosites as nod sc:url "https://ohlerlab.mdc-berlin.de/software/Imaging_pipeline_106/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3524 ; sc:citation ; @@ -414155,8 +437371,28 @@ RoKAI operates on a heterogeneous network having kinases and phosphosites as nod sc:name "RootDigger" ; sc:url "https://github.com/computations/root_digger" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0780, + edam:topic_3383, + edam:topic_3474 ; + sc:citation , + "pubmed:35851958" ; + sc:description "Deep Learning Segmentation of Biological Images with Corrective Annotation." ; + sc:featureList edam:operation_3443, + edam:operation_3553 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "RootPainter" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Abe404/root_painter" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -414176,7 +437412,7 @@ RoKAI operates on a heterogeneous network having kinases and phosphosites as nod sc:url "https://github.com/suhanaser/Rootstrap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0659, @@ -414193,7 +437429,7 @@ RoKAI operates on a heterogeneous network having kinases and phosphosites as nod biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -414206,7 +437442,7 @@ RoKAI operates on a heterogeneous network having kinases and phosphosites as nod sc:url "https://github.com/lh3/ropebwt2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3391 ; @@ -414226,8 +437462,27 @@ RoKAI operates on a heterogeneous network having kinases and phosphosites as nod sc:url "http://bioconductor.org/packages/release/bioc/html/ropls.html" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Suite" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0749, + edam:topic_3304 ; + sc:citation , + "pmcid:PMC9127764", + "pubmed:35619967" ; + sc:description "An open-source framework for Brain-Machine Interface and robotics." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ROS-Neuro" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/rosneuro" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, edam:topic_0780, @@ -414248,7 +437503,7 @@ Cherry powdery mildew is a major problem in sweet cherry growing regions in the sc:url "http://www.rosbreed.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2275, edam:topic_3306, @@ -414264,7 +437519,7 @@ Cherry powdery mildew is a major problem in sweet cherry growing regions in the sc:url "https://github.com/DS3Lab/RosENet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -414284,7 +437539,7 @@ Cherry powdery mildew is a major problem in sweet cherry growing regions in the biotools:primaryContact "Debarka Sengupta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -414303,7 +437558,7 @@ Cherry powdery mildew is a major problem in sweet cherry growing regions in the biotools:primaryContact "Yuval Sedan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -414324,7 +437579,7 @@ Cherry powdery mildew is a major problem in sweet cherry growing regions in the biotools:primaryContact "Sergey Lyskov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -414347,7 +437602,7 @@ Cherry powdery mildew is a major problem in sweet cherry growing regions in the biotools:primaryContact "Feedback Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -414374,7 +437629,7 @@ Cherry powdery mildew is a major problem in sweet cherry growing regions in the biotools:primaryContact "Brian Kuhlman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -414398,18 +437653,18 @@ Cherry powdery mildew is a major problem in sweet cherry growing regions in the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1710" ; - sc:name "Structure image" ; - sc:sameAs "http://edamontology.org/data_1710" ], + sc:additionalType "http://edamontology.org/data_1710" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Structure image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0889" ; - sc:name "Structural profile" ; - sc:sameAs "http://edamontology.org/data_0889" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0889" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Structural profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0611, @@ -414429,7 +437684,7 @@ Cherry powdery mildew is a major problem in sweet cherry growing regions in the biotools:primaryContact "Frank Dimaio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_2830, @@ -414446,7 +437701,7 @@ RosettaMHC models of SARS-CoV-2 peptide/HLA-A02 antigens.""" ; sc:url "https://rosettamhc.chemistry.ucsc.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -414470,7 +437725,7 @@ RosettaMHC models of SARS-CoV-2 peptide/HLA-A02 antigens.""" ; sc:url "https://github.com/LPDI-EPFL/RosettaSurf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -414493,7 +437748,7 @@ RosettaMHC models of SARS-CoV-2 peptide/HLA-A02 antigens.""" ; sc:url "http://www.rosettasx.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3810 ; @@ -414512,7 +437767,7 @@ RosettaMHC models of SARS-CoV-2 peptide/HLA-A02 antigens.""" ; biotools:primaryContact "Filipa Tomé" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0196, edam:topic_3293 ; @@ -414527,7 +437782,7 @@ RosettaMHC models of SARS-CoV-2 peptide/HLA-A02 antigens.""" ; sc:url "https://github.com/deisejpg/rosids" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite", "Web application" ; @@ -414547,7 +437802,7 @@ RosettaMHC models of SARS-CoV-2 peptide/HLA-A02 antigens.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0593, edam:topic_3318 ; @@ -414568,8 +437823,21 @@ On the other hand, torsional potentials are evaluated over the full 360° of rot sc:name "Rotational Profiler" ; sc:url "http://rotprof.lncc.br" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "RotaVirusPred is a machine learning based tool to predict the zoonotic host tropism of Rotavirus A with the help of its genome sequences, stating whether a viral strain has the potential to infect human hosts." ; + sc:featureList edam:operation_2945 ; + sc:name "rotavpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/rotavpred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0637, edam:topic_3050, @@ -414600,14 +437868,14 @@ Then explore how you can use rotl with other packages to combine your data with a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -414630,14 +437898,13 @@ Then explore how you can use rotl with other packages to combine your data with a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2393" ; - sc:name "mFLJ/mKIAA number" ; - sc:sameAs "http://edamontology.org/data_2393" ] ; + sc:additionalType "http://edamontology.org/data_2393" ; + sc:name "mFLJ/mKIAA number" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0621 ; @@ -414652,7 +437919,7 @@ Then explore how you can use rotl with other packages to combine your data with sc:url "http://www.kazusa.or.jp/rouge/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3344, edam:topic_3500 ; @@ -414667,7 +437934,7 @@ Then explore how you can use rotl with other packages to combine your data with biotools:primaryContact "steed huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3170, @@ -414690,18 +437957,18 @@ Then explore how you can use rotl with other packages to combine your data with a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Pathway or network" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2301" ; - sc:name "SMILES string" ; - sc:sameAs "http://edamontology.org/data_2301" ], + sc:additionalType "http://edamontology.org/data_2301" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "SMILES string" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "Pathway enumeration from RetroPath2.0 retrosynthesis output" ; sc:featureList edam:operation_3929 ; @@ -414711,7 +437978,7 @@ Then explore how you can use rotl with other packages to combine your data with sc:url "https://github.com/brsynth/rp2paths" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -414729,8 +437996,26 @@ Then explore how you can use rotl with other packages to combine your data with sc:url "http://bioconductor.org/packages/release/bioc/html/RPA.html" ; biotools:primaryContact "Leo Lahti" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0780, + edam:topic_3299 ; + sc:citation ; + sc:description "Open access database of Integral Projection Models." ; + sc:featureList edam:operation_3946 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Rpadrino" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/padrinoDB/Rpadrino" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Library", "Workbench" ; @@ -414751,7 +438036,7 @@ Then explore how you can use rotl with other packages to combine your data with biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -414765,7 +438050,7 @@ Then explore how you can use rotl with other packages to combine your data with sc:url "http://rth.dk/resources/rpa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -414786,7 +438071,7 @@ Then explore how you can use rotl with other packages to combine your data with sc:url "https://github.com/enveda/RPath" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, @@ -414806,7 +438091,7 @@ Then explore how you can use rotl with other packages to combine your data with sc:url "http://bioserv.rpbs.jussieu.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0593, @@ -414826,8 +438111,21 @@ Then explore how you can use rotl with other packages to combine your data with sc:url "http://nmr.cabm.rutgers.edu/rpf" ; biotools:primaryContact "RPF Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "A fold recognition server for searching protein fold in PDB. It is based on sequence similarity search and secondary structure alignment technique." ; + sc:featureList edam:operation_2945 ; + sc:name "rpfold" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/rpfold/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3304, edam:topic_3382 ; @@ -414847,14 +438145,12 @@ RPG is designed to run in response to 3.3 volt triggers from other hardware, or a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1193" ; - sc:name "Tool name (FASTA)" ; - sc:sameAs "http://edamontology.org/data_1193" ] ; + sc:additionalType "http://edamontology.org/data_1193" ; + sc:name "Tool name (FASTA)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -414876,7 +438172,7 @@ Rapid Peptides Generator (RPG) is a software dedicated to predict proteases-indu sc:url "https://gitlab.pasteur.fr/nmaillet/rpg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -414901,7 +438197,7 @@ Rapid Peptides Generator (RPG) is a software dedicated to predict proteases-indu "Jihua Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0659, edam:topic_3474 ; @@ -414918,7 +438214,7 @@ The interactions between non-coding RNAs and proteins play an essential role in sc:url "https://github.com/haichengyi/RPI-SE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0128, @@ -414936,7 +438232,7 @@ The interactions between non-coding RNAs and proteins play an essential role in biotools:primaryContact "Zahiri J." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3474, edam:topic_3794 ; @@ -414952,7 +438248,7 @@ Explore and create dataset.""" ; sc:url "http://rpinbase.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0108, @@ -414975,7 +438271,7 @@ Explore and create dataset.""" ; sc:url "http://cosbi6.ee.ncku.edu.tw/RPiso/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -414989,7 +438285,7 @@ Explore and create dataset.""" ; sc:url "http://daweb.ism.ac.jp/yoshidalab/motif/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0659, edam:topic_3308, @@ -415009,7 +438305,7 @@ RPmirDIP Predictions of ~6 Million miRNA-Gene Pairs.""" ; sc:url "http://cu-bic.ca/RPmirDIP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -415035,7 +438331,7 @@ RPmirDIP Predictions of ~6 Million miRNA-Gene Pairs.""" ; sc:url "http://zhaoserver.com.cn/RPocket/RPocket.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation , @@ -415048,8 +438344,29 @@ RPmirDIP Predictions of ~6 Million miRNA-Gene Pairs.""" ; sc:softwareVersion "1.2.1" ; sc:url "http://sat.inesc-id.pt/software/rpoly/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3379, + edam:topic_3384, + edam:topic_3444, + edam:topic_3452 ; + sc:citation , + "pubmed:34890793" ; + sc:description "Robust PET-only processing of community acquired heterogeneous amyloid-PET data." ; + sc:featureList edam:operation_2428, + edam:operation_3435, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "rPOP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/leoiacca/rPOP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -415068,24 +438385,47 @@ RPmirDIP Predictions of ~6 Million miRNA-Gene Pairs.""" ; sc:url "http://www.ra.cs.uni-tuebingen.de/software/RPPApipe/" ; biotools:primaryContact "Johannes Eichner" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_0166, + edam:topic_2275, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9266927", + "pubmed:35805909" ; + sc:description "An RNA-Protein Intuitive Database with RNA Pocket Topology Resources." ; + sc:featureList edam:operation_0245, + edam:operation_0267, + edam:operation_0278, + edam:operation_0570, + edam:operation_3902 ; + sc:isAccessibleForFree true ; + sc:name "RPpocket" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://zhaoserver.com.cn/RPpocket/RPpocket.html" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ], + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0880" ; - sc:name "RNA secondary structure" ; - sc:sameAs "http://edamontology.org/data_0880" ], + sc:additionalType "http://edamontology.org/data_0880" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "RNA secondary structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0880" ; - sc:name "RNA secondary structure" ; - sc:sameAs "http://edamontology.org/data_0880" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0880" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "RNA secondary structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099 ; @@ -415123,7 +438463,7 @@ RPmirDIP Predictions of ~6 Million miRNA-Gene Pairs.""" ; "Josef Pánek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0659, @@ -415139,8 +438479,34 @@ RPRH is a database for predicted plant microRNA Functions in human. MicroRNAs ar sc:name "RPRH" ; sc:url "http://www.rnanut.net/rprh/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0632, + edam:topic_0769, + edam:topic_3168, + edam:topic_3519 ; + sc:citation , + "pmcid:PMC9206141", + "pubmed:35717145" ; + sc:description "rprimer is an R package that designs degenerate oligos and PCR assays from a multiple DNA sequence alignment of target sequences of interest. The package is specifically designed for sequence variable viruses." ; + sc:featureList edam:operation_0292, + edam:operation_0308, + edam:operation_0337, + edam:operation_0363, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "rprimer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://www.bioconductor.org/packages/rprimer" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -415154,7 +438520,7 @@ RPRH is a database for predicted plant microRNA Functions in human. MicroRNAs ar sc:url "https://github.com/NCIP/cagrid-general/tree/master/demos/06annual/workflow/JRProteomicsGridSkeletonValue-1.0/src/org/globus/cagrid/RProteomics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3316 ; sc:description "This package provides the headers and static library of Protocol buffers 2.6.0 for other R packages to compile and link against." ; @@ -415170,7 +438536,7 @@ RPRH is a database for predicted plant microRNA Functions in human. MicroRNAs ar biotools:primaryContact "Mike Jiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269 ; @@ -415186,29 +438552,52 @@ RPRH is a database for predicted plant microRNA Functions in human. MicroRNAs ar a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3736" ; - sc:name "Ecological data" ; - sc:sameAs "http://edamontology.org/data_3736" ], + sc:additionalType "http://edamontology.org/data_3707" ; + sc:name "Biodiversity data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3707" ; - sc:name "Biodiversity data" ; - sc:sameAs "http://edamontology.org/data_3707" ], + sc:additionalType "http://edamontology.org/data_1916" ; + sc:name "Alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; + sc:additionalType "http://edamontology.org/data_3736" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Ecological data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0914" ; - sc:name "Codon usage data" ; - sc:sameAs "http://edamontology.org/data_0914" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0914" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Codon usage data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "a database of llps rna" ; sc:featureList edam:operation_0292 ; sc:name "RPS" ; sc:url "https://bio.tools/register" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0659, + edam:topic_2229, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8728229", + "pubmed:34718734" ; + sc:description "A comprehensive database of RNAs involved in liquid-liquid phase separation." ; + sc:featureList edam:operation_0278, + edam:operation_2441, + edam:operation_3216, + edam:operation_3454, + edam:operation_3902 ; + sc:isAccessibleForFree true ; + sc:name "RPS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://rps.renlab.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092 ; @@ -415226,7 +438615,7 @@ RPRH is a database for predicted plant microRNA Functions in human. MicroRNAs ar biotools:primaryContact "Jitao David Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , "pubmed:31581757" ; @@ -415236,7 +438625,7 @@ RPRH is a database for predicted plant microRNA Functions in human. MicroRNAs ar sc:url "https://cran.r-project.org/web/packages/rptR/vignettes/rptR.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121 ; @@ -415254,7 +438643,7 @@ RPRH is a database for predicted plant microRNA Functions in human. MicroRNAs ar biotools:primaryContact "Laurent Gatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -415273,7 +438662,7 @@ RPRH is a database for predicted plant microRNA Functions in human. MicroRNAs ar biotools:primaryContact "Welliton Souza" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -415297,7 +438686,7 @@ RPRH is a database for predicted plant microRNA Functions in human. MicroRNAs ar biotools:primaryContact "Ilya Zhbannikov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -415313,7 +438702,7 @@ RPRH is a database for predicted plant microRNA Functions in human. MicroRNAs ar sc:url "http://www.rqtl.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -415332,8 +438721,42 @@ RPRH is a database for predicted plant microRNA Functions in human. MicroRNAs ar sc:url "http://bioconductor.org/packages/release/bioc/html/rqubic.html" ; biotools:primaryContact "Jitao David Zhang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "This server allows you to predict the residue-residue contact in proteins from its amino acid sequence." ; + sc:featureList edam:operation_2945 ; + sc:name "rrcpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/rrcpred/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2269, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9122960", + "pubmed:35607618" ; + sc:description "Relevance, redundancy, and complementarity trade-off (RRCT)." ; + sc:featureList edam:operation_3891, + edam:operation_3936, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "RRCT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ThanasisTsanas/RRCT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0602, @@ -415349,23 +438772,8 @@ RPRH is a database for predicted plant microRNA Functions in human. MicroRNAs ar sc:url "http://huanglab.phys.hust.edu.cn/RRDbenchmark/" ; biotools:primaryContact "Sheng-You Huang" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2258, - edam:topic_2885, - edam:topic_3489 ; - sc:citation ; - sc:description """Accessing biological data in R with semantic web technologies. - -Linked Open Data platform for EBI data. - -The EBI RDF Platform aims to bring together the efforts of a number of EMBL-EBI resources that provide access to their data using Semantic Web technologies. It provides a unified way to query across resources using the W3C SPARQL query language. We welcome comments or questions via email rdf-req[at]ebi.ac.uk or github""" ; - sc:featureList edam:operation_0224 ; - sc:license "GPL-3.0" ; - sc:name "rrdf" ; - sc:url "http://cran.r-project.org/web/packages/rrdf/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3382, @@ -415379,7 +438787,7 @@ The EBI RDF Platform aims to bring together the efforts of a number of EMBL-EBI sc:url "https://minhmanho.github.io/rrdncnn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -415398,7 +438806,7 @@ The EBI RDF Platform aims to bring together the efforts of a number of EMBL-EBI biotools:primaryContact "Michael Hahsler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3489 ; sc:citation ; @@ -415413,7 +438821,7 @@ The EBI RDF Platform aims to bring together the efforts of a number of EMBL-EBI sc:url "http://www.bioinformatica.unito.it/bioinformatics/rre/rre.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0601, edam:topic_0632, @@ -415436,7 +438844,7 @@ RREFinder accepts both protein .fasta files and .genbank files. Alternatively, y sc:url "https://github.com/Alexamk/RREFinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3569 ; @@ -415454,8 +438862,31 @@ RREFinder accepts both protein .fasta files and .genbank files. Alternatively, y sc:url "https://github.com/enanomapper/RRegrs" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_2640, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC9215042", + "pubmed:35729491" ; + sc:description "Efficient short-read repeat resolution within ABySS." ; + sc:featureList edam:operation_0524, + edam:operation_0525, + edam:operation_3216, + edam:operation_3472, + edam:operation_3644 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "RResolver" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bcgsc/abyss/tree/master/RResolver" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269 ; @@ -415473,7 +438904,7 @@ RREFinder accepts both protein .fasta files and .genbank files. Alternatively, y biotools:primaryContact "Jonathan Rosenblatt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, edam:topic_0625, @@ -415493,7 +438924,7 @@ In genome-wide association study (GWAS), we aim at detecting single nucleotide p sc:url "http://bioinformatics.ust.hk/RRIntCC.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_3512 ; @@ -415509,7 +438940,7 @@ Although great progress has been made in prognostic outcome prediction, small sa sc:url "https://github.com/ShiMGLab/RRLSL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3308 ; @@ -415522,7 +438953,7 @@ Although great progress has been made in prognostic outcome prediction, small sa sc:url "http://hpc.ilri.cgiar.org/rrnaselector-software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, @@ -415543,7 +438974,7 @@ Although great progress has been made in prognostic outcome prediction, small sa sc:url "https://github.com/TeamAIRE/RRNPP_detector" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3308, @@ -415560,8 +438991,29 @@ Although great progress has been made in prognostic outcome prediction, small sa sc:url "https://github.com/komorowskilab/R.ROSETTA" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0102, + edam:topic_3474 ; + sc:citation , + "pubmed:35751651" ; + sc:description "Protein contact map quality estimation by deep evolutionary reconciliation." ; + sc:featureList edam:operation_0272, + edam:operation_0392, + edam:operation_2429, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "rrQNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Bhattacharya-Lab/rrQNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -415578,7 +439030,7 @@ Although great progress has been made in prognostic outcome prediction, small sa biotools:primaryContact "Ivan Brezani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640 ; sc:citation ; @@ -415594,7 +439046,7 @@ Although great progress has been made in prognostic outcome prediction, small sa biotools:primaryContact "Minghui Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3382, @@ -415606,7 +439058,7 @@ Although great progress has been made in prognostic outcome prediction, small sa biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0140, edam:topic_3373, @@ -415625,19 +439077,8 @@ Although great progress has been made in prognostic outcome prediction, small sa sc:url "http://reccr.chem.rpi.edu/Software/RS-WebPredictor/" ; biotools:primaryContact "Curt M. Breneman" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_2885 ; - sc:citation , - "pubmed:31441739" ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'rs11568818 MMP7 rs1320632 MMP8 rs11225395', 'MMP7 rs1320632 MMP8 rs11225395 MMP8', 'MMP8 rs11225395 MMP8 rs1799750', 'rs1320632 MMP8 rs11225395 MMP8' | [Study of associations of polymorphism of matrix metalloproteinases genes with the development of arterial hypertension in men] | The aim of research. To study the association of polymorphic loci of matrix metalloproteinases with the development of essential hypertension (EH) in men of the Central Chernozem Region of Russia. Materials and methods. A study of 564 men with EH and 257 control men was performed. Analysis of the polymorphic loci of metalloproteinases rs11568818 MMР7, rs1320632 MMР8, rs11225395 MMР8, rs1799750 MMР1, rs3025058 MMР3 was performed using real-time PCR" ; - sc:featureList edam:operation_0484, - edam:operation_0487 ; - sc:name "rs1320632 MMP8 rs11225395 MMP8 rs1799750" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31441739" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3301, @@ -415657,18 +439098,18 @@ Although great progress has been made in prognostic outcome prediction, small sa a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_3616" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3327" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_3327" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170 ; @@ -415688,7 +439129,7 @@ Although great progress has been made in prognostic outcome prediction, small sa biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -415716,14 +439157,14 @@ Although great progress has been made in prognostic outcome prediction, small sa a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -415751,7 +439192,7 @@ Multi-genome queries are supported: automatic retrieval of sequences for all the biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0204, edam:topic_3169, @@ -415768,7 +439209,7 @@ Multi-genome queries are supported: automatic retrieval of sequences for all the biotools:primaryContact "Jacques van Helden" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -415789,7 +439230,7 @@ Multi-genome queries are supported: automatic retrieval of sequences for all the sc:url "https://github.com/st707311g/RSAtrace3D" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -415807,7 +439248,7 @@ Multi-genome queries are supported: automatic retrieval of sequences for all the biotools:primaryContact "Michael Lawrence" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3307 ; sc:author "Alessandra Breschi" ; @@ -415830,7 +439271,7 @@ Multi-genome queries are supported: automatic retrieval of sequences for all the biotools:primaryContact "Alessandra Breschi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, edam:topic_3577 ; @@ -415851,7 +439292,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu sc:url "https://bioconductor.org/packages/rScudo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0797, edam:topic_1775, @@ -415873,8 +439314,42 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu sc:url "https://github.com/todddeluca/reciprocal_smallest_distance" ; biotools:primaryContact "Dennis Wall" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3668" ; + sc:name "Disease name" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1001" ; + sc:name "Chemical name (synonymous)" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3275" ; + sc:name "Phenotype name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0209, + edam:topic_0625, + edam:topic_3325, + edam:topic_3373 ; + sc:citation , + "pmcid:PMC9418253", + "pubmed:36028515" ; + sc:description "A rare skin disease database to link drugs with potential drug targets for rare skin diseases." ; + sc:featureList edam:operation_3925, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "RSDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://rsdb.cmdm.tw" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_2885, @@ -415890,7 +439365,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu sc:url "http://www.cs.au.dk/~plamy/Rseg/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3179, @@ -415904,7 +439379,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu sc:url "http://smithlabresearch.org/software/rseg/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation "pubmed:20022975" ; @@ -415918,7 +439393,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu biotools:primaryContact "Bo Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0102, @@ -415936,7 +439411,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu sc:url "http://www-personal.umich.edu/~jianghui/rseq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3316 ; sc:description "Headers from the SeqAn C++ library for easy of usage in R." ; @@ -415952,7 +439427,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu biotools:primaryContact "August Guang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -415966,7 +439441,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu sc:url "http://rseqc.sourceforge.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, @@ -415983,7 +439458,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu sc:url "http://genomics.isi.edu/rnaseq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -416004,7 +439479,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu "Yang Xie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -416021,22 +439496,22 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation ; @@ -416056,7 +439531,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu sc:url "https://github.com/emmesgit/RSEQREP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3170 ; @@ -416072,7 +439547,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu biotools:primaryContact "Lukas Habegger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -416090,7 +439565,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu biotools:primaryContact "Matt Settles" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3384 ; sc:citation , @@ -416109,7 +439584,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu sc:url "https://github.com/compneuro-da/rsHRF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3384 ; sc:citation , @@ -416127,7 +439602,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu sc:url "https://github.com/BIDS-Apps/rsHRF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0160, @@ -416142,7 +439617,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu sc:url "http://www.cuilab.cn/rsite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0622, @@ -416154,10 +439629,32 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu sc:operatingSystem "Linux" ; sc:softwareHelp , ; - sc:url "http://www.imtech.res.in/raghava/rslpred/" . + sc:url "http://webs.iiitd.edu.in/raghava/rslpred/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_3315 ; + sc:citation , + "pmcid:PMC9074326", + "pubmed:35524190" ; + sc:description "Inferring gene regulatory networks by a redundancy silencing and network enhancement technique." ; + sc:featureList edam:operation_1781, + edam:operation_2437, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "RSNET" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/zhanglab-wbgcas/rsnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -416178,16 +439675,35 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu sc:url "http://wwwmgs.bionet.nsc.ru/mgs/systems/rsnp/" ; biotools:primaryContact "Julia V. Ponomarenko" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Suite" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0610, + edam:topic_3489, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC9363973", + "pubmed:36016994" ; + sc:description "A collection of data sources and tutorials on downloading and visualising spatial data using R." ; + sc:featureList edam:operation_0337, + edam:operation_2429 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "rspatialdata" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://rspatialdata.github.io/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -416203,7 +439719,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu sc:url "http://persson-group.scilifelab.se/rspred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -416225,7 +439741,7 @@ BiomedicalInformatics, Classification, Clustering, DifferentialExpression, Featu sc:url "https://github.com/Tan-group/rsRNASP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0821, edam:topic_3315 ; @@ -416243,7 +439759,7 @@ The Java-based implementation of the rejection-based stochastic simulation algor sc:url "https://github.com/vo-hong-thanh/rssalib" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0605, edam:topic_2269, @@ -416259,7 +439775,7 @@ The Java-based implementation of the rejection-based stochastic simulation algor sc:url "http://rssgsc.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -416273,7 +439789,7 @@ The Java-based implementation of the rejection-based stochastic simulation algor sc:url "https://github.com/boboppie/RSSS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0654, @@ -416294,7 +439810,7 @@ The Java-based implementation of the rejection-based stochastic simulation algor sc:url "http://www.itb.cnr.it/rss" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099, @@ -416311,7 +439827,7 @@ The Java-based implementation of the rejection-based stochastic simulation algor sc:url "http://stormo.wustl.edu/RSSVM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0736 ; @@ -416334,7 +439850,7 @@ The Java-based implementation of the rejection-based stochastic simulation algor biotools:primaryContact "Jaume Bonet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3315, @@ -416352,14 +439868,14 @@ The Java-based implementation of the rejection-based stochastic simulation algor a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0204, @@ -416381,7 +439897,7 @@ The Java-based implementation of the rejection-based stochastic simulation algor biotools:primaryContact "Wei Shi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0659, @@ -416401,7 +439917,7 @@ RNA fulfills a crucial regulatory role in cells by folding into a complex RNA st sc:url "https://taolab.nwafu.edu.cn/rsvdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0654, @@ -416415,7 +439931,7 @@ RNA fulfills a crucial regulatory role in cells by folding into a complex RNA st sc:url "https://ohlerlab.mdc-berlin.de/software/RNA-seq_Variant_Prediction_61/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3175 ; @@ -416433,7 +439949,7 @@ RNA fulfills a crucial regulatory role in cells by folding into a complex RNA st biotools:primaryContact "Christoph Bartenhagen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -416457,14 +439973,14 @@ RNA fulfills a crucial regulatory role in cells by folding into a complex RNA st a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2016" ; - sc:name "Amino acid property" ; - sc:sameAs "http://edamontology.org/data_2016" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2016" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Amino acid property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -416479,8 +439995,25 @@ RNA fulfills a crucial regulatory role in cells by folding into a complex RNA st sc:softwareHelp ; sc:url "http://www.ms-utils.org/rt.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3316, + edam:topic_3384, + edam:topic_3444 ; + sc:citation , + "pubmed:35580808" ; + sc:description "A cloud-based software framework to simplify and standardize real-time fMRI." ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "RT-Cloud" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/brainiak/rt-cloud" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3067, edam:topic_3300, edam:topic_3334, @@ -416503,7 +440036,7 @@ In order to use this feature you must have at least one published dataverse.""" sc:url "https://rt-me-fmri.herokuapp.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3444, edam:topic_3520 ; @@ -416518,7 +440051,7 @@ RT-NET (real-time non-invasive electrophysiology toolbox), is a new software whi sc:url "https://www.nitrc.org/projects/rtnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3489 ; @@ -416532,7 +440065,7 @@ RT-NET (real-time non-invasive electrophysiology toolbox), is a new software whi sc:url "https://github.com/joaohmorais/rtabnetsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0659, @@ -416555,7 +440088,7 @@ RT-NET (real-time non-invasive electrophysiology toolbox), is a new software whi "RT-analyzer Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -416571,7 +440104,7 @@ RT-NET (real-time non-invasive electrophysiology toolbox), is a new software whi sc:url "http://biotools.riboclub.org/cgi-bin/RTAnalyzer/index.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2814 ; @@ -416590,14 +440123,14 @@ RT-NET (real-time non-invasive electrophysiology toolbox), is a new software whi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2872" ; - sc:name "ID list" ; - sc:sameAs "http://edamontology.org/data_2872" ] ; + sc:additionalType "http://edamontology.org/data_2872" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "ID list" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092 ; @@ -416616,14 +440149,14 @@ RT-NET (real-time non-invasive electrophysiology toolbox), is a new software whi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database search results" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -416644,7 +440177,7 @@ RT-NET (real-time non-invasive electrophysiology toolbox), is a new software whi biotools:primaryContact "Marcin Kosinski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -416664,8 +440197,26 @@ RT-NET (real-time non-invasive electrophysiology toolbox), is a new software whi sc:url "http://bioconductor.org/packages/release/bioc/html/RTCGAToolbox.html" ; biotools:primaryContact "Mehmet Kemal Samur" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0621, + edam:topic_2640 ; + sc:citation , + "pubmed:35912447" ; + sc:description "Open-source software for radiotherapy dose-surface map generation and analysis." ; + sc:featureList edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "rtdsm" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/McGillMedPhys/rtdsm" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3067, edam:topic_3300, edam:topic_3444 ; @@ -416681,7 +440232,7 @@ Magnetic resonance imaging (MRI) data of the brains of 28 healthy volunteers, fo sc:url "https://dataverse.nl/dataverse/rt-me-fmri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3384, edam:topic_3421, @@ -416700,8 +440251,23 @@ The work investigated the state of denoising methods used in the field of fMRI n sc:name "rtfMRI-NF" ; sc:url "https://github.com/jsheunis/quality-and-denoising-in-rtfmri-nf" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Suite" ; + sc:applicationSubCategory edam:topic_0622 ; + sc:description "RTG Core: Software for alignment and analysis of next-gen sequencing data." ; + sc:featureList edam:operation_0258, + edam:operation_0292 ; + sc:isAccessibleForFree false ; + sc:license "Other" ; + sc:name "RTG Core" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/RealTimeGenomics/rtg-core" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -416718,8 +440284,30 @@ The work investigated the state of denoising methods used in the field of fMRI n sc:url "https://rtips.cancer.gov/rtips/index.do" ; biotools:primaryContact "Contact Form" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0202, + edam:topic_0610, + edam:topic_2840, + edam:topic_3304, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8907194", + "pubmed:35264711" ; + sc:description "Automated analysis of activity, sleep, and rhythmic behaviour in various animal species with the Rtivity software." ; + sc:featureList edam:operation_0337, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Rtivity" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ruisilva.shinyapps.io/rtivity/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3056, edam:topic_3301, @@ -416736,7 +440324,7 @@ The work investigated the state of denoising methods used in the field of fMRI n biotools:primaryContact "Paul Saary" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation , "pubmed:32377974" ; @@ -416750,7 +440338,7 @@ The manual for the package: rtmpt_manual.""" ; sc:url "https://github.com/RaphaelHartmann/rtmpt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -416771,7 +440359,7 @@ The manual for the package: rtmpt_manual.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204 ; @@ -416790,7 +440378,7 @@ The manual for the package: rtmpt_manual.""" ; "Mauro Castro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204 ; sc:citation ; @@ -416809,7 +440397,7 @@ The manual for the package: rtmpt_manual.""" ; "Mauro A. A. Castro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -416829,7 +440417,7 @@ The manual for the package: rtmpt_manual.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2269, @@ -416845,7 +440433,7 @@ The manual for the package: rtmpt_manual.""" ; sc:url "https://sites.google.com/site/fdudbridge/software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3068, edam:topic_3315 ; @@ -416858,7 +440446,7 @@ The manual for the package: rtmpt_manual.""" ; sc:url "https://padpadpadpad.github.io/rTPC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0128 ; @@ -416872,8 +440460,27 @@ The manual for the package: rtmpt_manual.""" ; sc:name "Rtpca" ; sc:url "https://bioconductor.org/packages/Rtpca" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_0769, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8963181", + "pubmed:35360171" ; + sc:description "A library for fMRI real-time processing systems in python (RTPSpy) with comprehensive online noise reduction, fast and accurate anatomical image processing, and online processing simulation." ; + sc:featureList edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "RTPSpy" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/mamisaki/RTPSpy" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, edam:topic_3308, @@ -416893,7 +440500,7 @@ The rat is an important model organism in biomedical research for studying human sc:url "http://www.unimd.org/rtr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3382, edam:topic_3474 ; @@ -416916,14 +440523,14 @@ A core functionality of the Rtrack package is the calculation of metrics from th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3005" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3005" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3047, @@ -416945,7 +440552,7 @@ A core functionality of the Rtrack package is the calculation of metrics from th biotools:primaryContact "Michael Lawrence" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -416961,7 +440568,7 @@ A core functionality of the Rtrack package is the calculation of metrics from th sc:url "http://c2s2.yale.edu/software/rtree/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199 ; @@ -416979,7 +440586,7 @@ A core functionality of the Rtrack package is the calculation of metrics from th biotools:primaryContact "Jasmina Bogojeska" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0128 ; @@ -416999,7 +440606,7 @@ A core functionality of the Rtrack package is the calculation of metrics from th biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0749 ; @@ -417017,7 +440624,7 @@ A core functionality of the Rtrack package is the calculation of metrics from th biotools:primaryContact "Diego Diez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3077 ; sc:citation ; @@ -417034,7 +440641,7 @@ A core functionality of the Rtrack package is the calculation of metrics from th sc:url "http://rtxi.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -417052,7 +440659,7 @@ A core functionality of the Rtrack package is the calculation of metrics from th biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "RUBIC detects recurrent copy number aberrations using copy number breaks, rather than recurrently amplified or deleted regions. This allows for a vastly simplified approach as recursive peak splitting procedures and repeated re-estimation of the background model are avoided. Furthermore, the false discovery rate is controlled on the level of called regions, rather than at the probe level." ; sc:featureList edam:operation_3964 ; sc:name "rubic" ; @@ -417060,7 +440667,7 @@ A core functionality of the Rtrack package is the calculation of metrics from th sc:url "https://github.com/NKI-CCB/RUBIC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Workflow" ; sc:applicationSubCategory edam:topic_3168, @@ -417077,7 +440684,7 @@ A core functionality of the Rtrack package is the calculation of metrics from th biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0607, @@ -417096,7 +440703,7 @@ A core functionality of the Rtrack package is the calculation of metrics from th biotools:primaryContact "Martin Christen Frølund Thomsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0202, edam:topic_3378, @@ -417111,7 +440718,7 @@ A core functionality of the Rtrack package is the calculation of metrics from th sc:url "https://github.com/cimm-kzn/RuDReC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -417128,7 +440735,7 @@ A core functionality of the Rtrack package is the calculation of metrics from th sc:url "http://visualizlab.org/rulebender/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -417146,7 +440753,7 @@ A core functionality of the Rtrack package is the calculation of metrics from th biotools:primaryContact "Aleksandra Gruca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation , @@ -417165,14 +440772,14 @@ A core functionality of the Rtrack package is the calculation of metrics from th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3869" ; - sc:name "Simulation" ; - sc:sameAs "http://edamontology.org/data_3869" ] ; + sc:additionalType "http://edamontology.org/data_3869" ; + sc:encodingFormat "http://edamontology.org/format_3686" ; + sc:name "Simulation" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3869" ; - sc:name "Simulation" ; - sc:sameAs "http://edamontology.org/data_3869" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3869" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Simulation" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3307, edam:topic_3524 ; @@ -417184,16 +440791,16 @@ A core functionality of the Rtrack package is the calculation of metrics from th sc:isAccessibleForFree true ; sc:license "MIT" ; sc:name "runBioSimulations" ; - sc:softwareHelp , - , - , - , - , - ; + sc:softwareHelp , + , + , + , + , + ; sc:url "https://run.biosimulations.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -417211,7 +440818,7 @@ A core functionality of the Rtrack package is the calculation of metrics from th biotools:primaryContact "Dave Edwards" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2229, edam:topic_3168 ; @@ -417226,7 +440833,7 @@ Data recovery tool for interrupted runs on MGISEQ-2000 (now DNBSEQ-G400).""" ; sc:url "https://github.com/genomecenter/runcer-necromancer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -417247,7 +440854,7 @@ Data recovery tool for interrupted runs on MGISEQ-2000 (now DNBSEQ-G400).""" ; biotools:primaryContact "Patryk Orzechowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -417261,7 +440868,7 @@ Data recovery tool for interrupted runs on MGISEQ-2000 (now DNBSEQ-G400).""" ; sc:url "http://sourceforge.net/projects/runsbml/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, edam:topic_0166, @@ -417282,7 +440889,7 @@ RUPEE: A fast and accurate purely geometric protein structure search.""" ; sc:url "https://ayoubresearch.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3344, @@ -417298,7 +440905,7 @@ RUPEE: A fast and accurate purely geometric protein structure search.""" ; biotools:primaryContact "Matt Fig" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3168 ; @@ -417315,7 +440922,7 @@ RUPEE: A fast and accurate purely geometric protein structure search.""" ; sc:url "https://rust-bio.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0780, @@ -417334,7 +440941,7 @@ RUPEE: A fast and accurate purely geometric protein structure search.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_2269, @@ -417354,7 +440961,7 @@ ruth is a software to perform robust unified Hardy-Weinberg Equilbrium (HWE) tes sc:url "https://www.github.com/statgen/ruth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3174, @@ -417369,7 +440976,7 @@ ruth is a software to perform robust unified Hardy-Weinberg Equilbrium (HWE) tes biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -417388,7 +440995,7 @@ ruth is a software to perform robust unified Hardy-Weinberg Equilbrium (HWE) tes biotools:primaryContact "Saskia Freytag" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -417409,14 +441016,14 @@ ruth is a software to perform robust unified Hardy-Weinberg Equilbrium (HWE) tes a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -417436,7 +441043,7 @@ ruth is a software to perform robust unified Hardy-Weinberg Equilbrium (HWE) tes biotools:primaryContact "Davide Risso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0623, @@ -417453,7 +441060,7 @@ ruth is a software to perform robust unified Hardy-Weinberg Equilbrium (HWE) tes biotools:primaryContact "Urmila Kulkarni-Kale" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, @@ -417470,7 +441077,7 @@ ruth is a software to perform robust unified Hardy-Weinberg Equilbrium (HWE) tes "Saurabh Baheti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0781 ; sc:citation ; @@ -417485,7 +441092,7 @@ ruth is a software to perform robust unified Hardy-Weinberg Equilbrium (HWE) tes sc:url "http://dna.brc.riken.jp/rvd/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -417501,7 +441108,7 @@ ruth is a software to perform robust unified Hardy-Weinberg Equilbrium (HWE) tes sc:url "http://genomics.wpi.edu/rvd2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0160, edam:topic_0769, @@ -417520,7 +441127,7 @@ ruth is a software to perform robust unified Hardy-Weinberg Equilbrium (HWE) tes sc:url "https://gitlab.pasteur.fr/tbigot/rvdb-prot/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -417536,7 +441143,7 @@ ruth is a software to perform robust unified Hardy-Weinberg Equilbrium (HWE) tes sc:url "https://cran.r-project.org/web/packages/RVFam/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, edam:topic_3305, @@ -417552,7 +441159,7 @@ ruth is a software to perform robust unified Hardy-Weinberg Equilbrium (HWE) tes sc:url "https://github.com/hanasusak/rvGWAS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -417570,7 +441177,7 @@ ruth is a software to perform robust unified Hardy-Weinberg Equilbrium (HWE) tes biotools:primaryContact "rVista Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -417592,7 +441199,7 @@ ruth is a software to perform robust unified Hardy-Weinberg Equilbrium (HWE) tes biotools:primaryContact "Karim Oualkacha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053, @@ -417608,7 +441215,7 @@ ruth is a software to perform robust unified Hardy-Weinberg Equilbrium (HWE) tes sc:url "http://strug.ccb.sickkids.ca/rvs/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -417632,7 +441239,7 @@ Rare Variant Sharing (RVS) implements tests of association and linkage between r sc:url "http://bioconductor.org/packages/release/bioc/html/RVS.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053, @@ -417646,7 +441253,7 @@ Rare Variant Sharing (RVS) implements tests of association and linkage between r sc:url "http://www.columbia.edu/~sw2206/softwares.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2269, @@ -417662,7 +441269,7 @@ Rare Variant Sharing (RVS) implements tests of association and linkage between r sc:url "http://www.crulrg.ulaval.ca/pages_perso_chercheurs/bureau_a/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053, @@ -417678,8 +441285,31 @@ Rare Variant Sharing (RVS) implements tests of association and linkage between r sc:softwareHelp ; sc:url "http://zhanxw.github.io/rvtests/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_3063, + edam:topic_3303, + edam:topic_3360, + edam:topic_3379 ; + sc:citation , + "pubmed:35266872" ; + sc:description "The RWD app provides a platform to view and search for quality-scored real-world datasets." ; + sc:featureList edam:operation_2421, + edam:operation_2428 ; + sc:isAccessibleForFree true ; + sc:name "RWD-Cockpit" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://rwd.aihealth.ch/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3172, @@ -417702,7 +441332,7 @@ Rare Variant Sharing (RVS) implements tests of association and linkage between r "Alexander Pico" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, @@ -417722,7 +441352,7 @@ Rare Variant Sharing (RVS) implements tests of association and linkage between r "Song He" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, edam:topic_0769, @@ -417745,7 +441375,7 @@ To facilitate the use of this method, we have developed a Cytoscape app, named R sc:url "http://apps.cytoscape.org/apps/rwrmtn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0623, @@ -417761,7 +441391,7 @@ To facilitate the use of this method, we have developed a Cytoscape app, named R sc:url "https://jshare.johnshopkins.edu/dnaiman1/public_html/rxa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3053, edam:topic_3068, @@ -417787,7 +441417,7 @@ The rx-genes.com site does not provide medical advice. It is intended for inform sc:url "https://www.rx-genes.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3384, edam:topic_3444, @@ -417809,7 +441439,7 @@ To use system environment variables we need to add them to the .Renviron file lo sc:url "https://github.com/adigherman/Rxnat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, edam:topic_3303, @@ -417825,7 +441455,7 @@ RxnBLAST as a web-based tool for analyzing scaffold transformations and reactive sc:url "http://design.rxnfinder.org/rxnblast/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation ; @@ -417839,7 +441469,7 @@ RxnBLAST as a web-based tool for analyzing scaffold transformations and reactive sc:url "https://www.nlm.nih.gov/research/umls/rxnorm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3334, @@ -417860,7 +441490,7 @@ RxnBLAST as a web-based tool for analyzing scaffold transformations and reactive sc:url "https://jutzelec.shinyapps.io/RxSCI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -417877,7 +441507,7 @@ RxnBLAST as a web-based tool for analyzing scaffold transformations and reactive sc:url "https://github.com/studla/RYUTO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -417891,7 +441521,7 @@ RxnBLAST as a web-based tool for analyzing scaffold transformations and reactive sc:url "http://www.softpedia.com/get/Science-CAD/RZparser.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3474, @@ -417909,7 +441539,7 @@ RxnBLAST as a web-based tool for analyzing scaffold transformations and reactive sc:url "https://github.com/zzdxjtu/S-cuda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, edam:topic_3474 ; @@ -417923,7 +441553,7 @@ RxnBLAST as a web-based tool for analyzing scaffold transformations and reactive sc:url "https://github.com/Sudo-Biao/s-LWSR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3169, @@ -417939,8 +441569,32 @@ RxnBLAST as a web-based tool for analyzing scaffold transformations and reactive sc:url "http://urgi.versailles.inra.fr/Tools/S-MART" ; biotools:primaryContact "Matthias Zytnicki" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0154, + edam:topic_2814, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9381718", + "pubmed:35974061" ; + sc:description "Protein structural property prediction using MSA transformer." ; + sc:featureList edam:operation_0267, + edam:operation_0272, + edam:operation_0474, + edam:operation_3454, + edam:operation_3904 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-SA-4.0" ; + sc:name "S-Pred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/arontier/S_Pred_Paper" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229 ; @@ -417954,8 +441608,20 @@ RxnBLAST as a web-based tool for analyzing scaffold transformations and reactive sc:softwareHelp ; sc:url "https://github.com/shaoweinuaa/S-PSorter" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:citation , + "pubmed:25534081" ; + sc:description "s2D is a computational method to predict secondary-structure populations from amino acid sequences, which simultaneously characterizes structure and disorder in a unified statistical mechanics framework." ; + sc:license "GPL-3.0" ; + sc:name "s2D" ; + sc:operatingSystem "Linux" ; + sc:softwareVersion "v1.1" ; + sc:url "http://www-mvsoftware.ch.cam.ac.uk/index.php/s2D" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082 ; sc:citation , @@ -417972,7 +441638,7 @@ RxnBLAST as a web-based tool for analyzing scaffold transformations and reactive sc:url "http://bliulab.net/S2L-PSIBLAST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_3063, @@ -417993,7 +441659,7 @@ RxnBLAST as a web-based tool for analyzing scaffold transformations and reactive "Philipp Bruland" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0108 ; sc:citation ; @@ -418011,7 +441677,7 @@ RxnBLAST as a web-based tool for analyzing scaffold transformations and reactive biotools:primaryContact "S2P" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2258, @@ -418028,7 +441694,7 @@ RxnBLAST as a web-based tool for analyzing scaffold transformations and reactive biotools:primaryContact "Emanuele Amata" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2229, edam:topic_3173 ; @@ -418044,7 +441710,7 @@ In the package, it can first normalize average read counts signal by S3norm ver2 sc:url "https://github.com/guanjue/S3V2_IDEAS_ESMP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3334, edam:topic_3474 ; @@ -418058,7 +441724,7 @@ In the package, it can first normalize average read counts signal by S3norm ver2 sc:url "https://github.com/SRKH/S4NN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3569 ; @@ -418075,26 +441741,8 @@ In the package, it can first normalize average read counts signal by S3norm ver2 sc:url "http://bioconductor.org/packages/release/bioc/html/S4Vectors.html" ; biotools:primaryContact "BioConductor Package Maintainer" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3070, - edam:topic_3318, - edam:topic_3382 ; - sc:citation , - "pubmed:31684360" ; - sc:description """Semi-implicit relaxed Douglas-Rachford algorithm (sDR) for ptychography. - -Free Matlab Source Codes for the semi-implicit relaxed Douglas-Rachford (sDR) Algorithm. - -Free Matlab Source Codes for the semi implicit relaxed Douglas-Rachford (sDR). - -This page describes an iterative Ptychography reconstruction algorithm, termed semi-implicit relaxed Douglas-Rachford (sDR), which has been developed to improve the robustness and the convergence of sequential extended Ptychographic iteartive engine (ePIE)""" ; - sc:featureList edam:operation_2422, - edam:operation_3454 ; - sc:name "sDR_autogenerated" ; - sc:url "http://www.physics.ucla.edu/research/imaging/sDR/index.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -418119,7 +441767,7 @@ This page describes an iterative Ptychography reconstruction algorithm, termed s sc:url "http://www.sorfs.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3068, @@ -418139,7 +441787,7 @@ This page describes an iterative Ptychography reconstruction algorithm, termed s sc:url "https://github.com/SpiNNakerManchester/sPyNNaker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0780, edam:topic_3512 ; @@ -418154,7 +441802,7 @@ This page describes an iterative Ptychography reconstruction algorithm, termed s sc:url "https://github.com/gyulap/sRNA_content_of_FPLC_fractions" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0780 ; sc:description "The plant sRNA portal is a a database of annotated sRNAs integrating the miRPursuit pipeline to identify, predict and annotate plant small RNAs (sRNA)." ; @@ -418167,7 +441815,7 @@ This page describes an iterative Ptychography reconstruction algorithm, termed s sc:url "https://srna-portal.biodata.pt/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0780, edam:topic_3168 ; @@ -418180,7 +441828,7 @@ This page describes an iterative Ptychography reconstruction algorithm, termed s sc:url "http://www.plantsrnas.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -418203,7 +441851,7 @@ This page describes an iterative Ptychography reconstruction algorithm, termed s biotools:primaryContact "Michael Hackenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0659, @@ -418227,7 +441875,7 @@ This page describes an iterative Ptychography reconstruction algorithm, termed s biotools:primaryContact "Michael Hackenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_0780, @@ -418245,7 +441893,7 @@ sRNAtools at this site is under construction ... Coming soon!""" ; sc:url "https://bioinformatics.caf.ac.cn/sRNAtools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0130, @@ -418262,7 +441910,7 @@ sRNAtools at this site is under construction ... Coming soon!""" ; "Leslie Regad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -418287,7 +441935,7 @@ sRNAtools at this site is under construction ... Coming soon!""" ; "Leslie Regad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -418308,7 +441956,7 @@ sRNAtools at this site is under construction ... Coming soon!""" ; biotools:primaryContact "Frédéric Guyon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0160, @@ -418323,7 +441971,7 @@ sRNAtools at this site is under construction ... Coming soon!""" ; sc:url "http://github.com/ridgelab/SA-SSR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -418345,7 +441993,7 @@ SAAFEC-SEQ uses the PsePSSM algorithm to predict the stability changes upon a si sc:url "http://compbio.clemson.edu/SAAFEC-SEQ/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0199, @@ -418361,7 +442009,7 @@ SAAFEC-SEQ uses the PsePSSM algorithm to predict the stability changes upon a si sc:url "http://compbio.clemson.edu/saambe_webserver/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0199, edam:topic_0749, @@ -418383,7 +442031,7 @@ User need to download the script and two models. Regression.model is the model f sc:url "https://github.com/delphi001/SAAMBE-3D" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, edam:topic_0199, @@ -418399,7 +442047,7 @@ User need to download the script and two models. Regression.model is the model f sc:url "http://compbio.clemson.edu/saambe_webserver/indexSEQ.php#started" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -418416,14 +442064,14 @@ User need to download the script and two models. Regression.model is the model f a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1470" ; - sc:name "C-alpha trace" ; - sc:sameAs "http://edamontology.org/data_1470" ] ; + sc:additionalType "http://edamontology.org/data_1470" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "C-alpha trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275 ; sc:citation "pubmed:16844979" ; @@ -418437,8 +442085,34 @@ User need to download the script and two models. Regression.model is the model f sc:url "https://mobyle.rpbs.univ-paris-diderot.fr/cgi-bin/portal.py#forms::SABBAC" ; biotools:primaryContact . + a sc:SoftwareApplication ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Small molecule structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0077, + edam:topic_0154, + edam:topic_2830, + edam:topic_3374, + edam:topic_3400 ; + sc:citation , + "pmcid:PMC8728266", + "pubmed:34986602" ; + sc:description "SAbDab is a database containing all the antibody structures available in the PDB, annotated and presented in a consistent fashion." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:name "SAbDab" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://opig.stats.ox.ac.uk/webapps/newsabdab/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_2269, @@ -418453,7 +442127,7 @@ User need to download the script and two models. Regression.model is the model f sc:url "http://med.stanford.edu/tanglab/software/saber.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_1775, @@ -418468,30 +442142,27 @@ User need to download the script and two models. Regression.model is the model f a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1011" ; - sc:name "EC number" ; - sc:sameAs "http://edamontology.org/data_1011" ], + sc:additionalType "http://edamontology.org/data_1011" ; + sc:name "EC number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2648" ; - sc:name "Reaction kinetics ID (SABIO-RK)" ; - sc:sameAs "http://edamontology.org/data_2648" ], + sc:additionalType "http://edamontology.org/data_2309" ; + sc:name "Reaction ID (SABIO-RK)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2309" ; - sc:name "Reaction ID (SABIO-RK)" ; - sc:sameAs "http://edamontology.org/data_2309" ] ; + sc:additionalType "http://edamontology.org/data_2648" ; + sc:name "Reaction kinetics ID (SABIO-RK)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2978" ; - sc:name "Reaction data" ; - sc:sameAs "http://edamontology.org/data_2978" ], + sc:additionalType "http://edamontology.org/data_2978" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Reaction data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2024" ; - sc:name "Enzyme kinetics data" ; - sc:sameAs "http://edamontology.org/data_2024" ], + sc:additionalType "http://edamontology.org/data_2024" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Enzyme kinetics data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Data reference" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0602, @@ -418514,7 +442185,7 @@ User need to download the script and two models. Regression.model is the model f sc:url "http://sabiork.h-its.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2259 ; @@ -418530,7 +442201,7 @@ User need to download the script and two models. Regression.model is the model f sc:url "http://sabiork.h-its.org/layouts/content/docuRESTfulWeb/manual.gsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0736, @@ -418547,7 +442218,7 @@ User need to download the script and two models. Regression.model is the model f sc:url "http://sable.cchmc.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3572 ; @@ -418562,18 +442233,18 @@ User need to download the script and two models. Regression.model is the model f a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -418590,14 +442261,13 @@ User need to download the script and two models. Regression.model is the model f a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_1196" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Plug-in" ; sc:applicationSubCategory edam:topic_2258, @@ -418617,7 +442287,7 @@ User need to download the script and two models. Regression.model is the model f biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654, edam:topic_3168, @@ -418636,8 +442306,27 @@ The 'Sequence-based Annotator of Chromosomal Compartments by Stacked Artificial sc:name "SACSANN" ; sc:url "https://github.com/BlanchetteLab/SACSANN" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_2828, + edam:topic_3678 ; + sc:citation , + "pubmed:36037090" ; + sc:description "A deep learning framework for protein crystallization propensity prediction using self-attention and auto-encoder networks." ; + sc:featureList edam:operation_0477, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SADeepcry" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/zhc940702/SADeepcry" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_2814, @@ -418653,7 +442342,7 @@ The 'Sequence-based Annotator of Chromosomal Compartments by Stacked Artificial sc:url "http://www.sbl.unisi.it/prococoa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, edam:topic_0160, @@ -418677,7 +442366,7 @@ From evolutionary interference, function annotation to structural prediction, pr sc:url "http://pwp.gatech.edu/cssb/sadlsa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0203, @@ -418695,7 +442384,7 @@ From evolutionary interference, function annotation to structural prediction, pr sc:url "http://www.maths.usyd.edu.au/u/uri/SADMAMA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_3361 ; @@ -418710,16 +442399,45 @@ From evolutionary interference, function annotation to structural prediction, pr sc:softwareVersion "1.1" ; sc:url "https://simtk.org/home/safa" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3384, + edam:topic_3444, + edam:topic_3452, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9308199", + "pubmed:35869424" ; + sc:description "SAFARI (Shape Analysis For AI-Segmented Images) provides functionality for image processing and shape analysis. In the context of reconstructed medical images generated by deep learning-based methods and produced from different modalities such as X-ray, Computational Tomography (CT), Magnetic Resonance Imaging (MRI), and pathology imaging, SAFARI offers tools to segment regions of interest and extract quantitative shape descriptors for applications in signal processing, statistical analysis and modeling, and machine learning." ; + sc:featureList edam:operation_3219, + edam:operation_3443, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SAFARI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://lce.biohpc.swmed.edu/safari/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2872" ; - sc:name "ID list" ; - sc:sameAs "http://edamontology.org/data_2872" ] ; + sc:additionalType "http://edamontology.org/data_2872" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "ID list" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269 ; @@ -418737,7 +442455,7 @@ From evolutionary interference, function annotation to structural prediction, pr biotools:primaryContact "William T. Barry" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -418753,7 +442471,7 @@ From evolutionary interference, function annotation to structural prediction, pr sc:url "http://compbio.clemson.edu/SAAFEC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -418772,7 +442490,7 @@ From evolutionary interference, function annotation to structural prediction, pr biotools:primaryContact "Abigail Reens" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3518 ; @@ -418786,7 +442504,7 @@ From evolutionary interference, function annotation to structural prediction, pr sc:url "https://simtk.org/home/sagat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -418811,7 +442529,7 @@ SAGE is a comprehensive repertoire of genome and exome information from South As sc:url "http://clingen.igib.res.in/SAGE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -418834,7 +442552,7 @@ SAGE is a comprehensive repertoire of genome and exome information from South As biotools:primaryContact "Alex E. Lash" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -418854,7 +442572,7 @@ SAGE is a comprehensive repertoire of genome and exome information from South As sc:url "http://www.sagenet.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -418873,7 +442591,7 @@ SAGE is a comprehensive repertoire of genome and exome information from South As biotools:primaryContact "Tim Beissbarth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, edam:topic_3170, @@ -418894,7 +442612,7 @@ L""" ; sc:url "http://sampgr.org.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0219, @@ -418911,7 +442629,7 @@ L""" ; sc:url "http://melolab.org/sagexplore/home.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0602, @@ -418928,7 +442646,7 @@ L""" ; sc:url "http://www.isical.ac.in/~rajat/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -418946,7 +442664,7 @@ L""" ; biotools:primaryContact "Per Broberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -418968,8 +442686,31 @@ L""" ; sc:url "http://bird.cbrc.jp/sahg" ; biotools:primaryContact "Chie Motono" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0621, + edam:topic_3315, + edam:topic_3382, + edam:topic_3934 ; + sc:citation , + "pubmed:35713287" ; + sc:description "A simple, platform-independent method for spectral autofluorescence correction." ; + sc:featureList edam:operation_0314, + edam:operation_3659, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-4.0" ; + sc:name "SAIBR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/goehringlab/saibr_fiji_plugin" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """SAIGE is an R package with Scalable and Accurate Implementation of Generalized mixed model. It accounts for sample relatedness and is feasible for genetic association tests in large cohorts and biobanks (N > 400,000). SAIGE performs single-variant association tests for binary traits and quantitative traits. For binary traits, SAIGE uses the saddlepoint approximation (SPA)(mhof, J. P. , 1961; Kuonen, D. 1999; Dey, R. et.al 2017) to account for case-control imbalance. @@ -418980,7 +442721,7 @@ SAIGE-GENE (implemented in the SAIGE R package) performs gene- or region-based a sc:url "https://github.com/weizhouUMICH/SAIGE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3316, @@ -418996,7 +442737,7 @@ SAIGE-GENE (implemented in the SAIGE R package) performs gene- or region-based a biotools:primaryContact "Nicholas Rafaels" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3337, @@ -419014,7 +442755,7 @@ Scalable implementation of generalized mixed models with highly optimized C++ im sc:url "https://bioconductor.org/packages/SAIGEgds" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0108, @@ -419032,7 +442773,7 @@ Scalable implementation of generalized mixed models with highly optimized C++ im sc:url "https://github.com/uci-cbcl/SAILER" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, @@ -419048,7 +442789,7 @@ Scalable implementation of generalized mixed models with highly optimized C++ im sc:url "http://www.cs.cmu.edu/~ckingsf/software/sailfish/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -419065,7 +442806,7 @@ Scalable implementation of generalized mixed models with highly optimized C++ im biotools:primaryContact "Musheng Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3520 ; @@ -419080,7 +442821,7 @@ Scalable implementation of generalized mixed models with highly optimized C++ im sc:url "http://saint-apms.sourceforge.net/Main.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0593, edam:topic_2828, @@ -419096,7 +442837,7 @@ Scalable implementation of generalized mixed models with highly optimized C++ im sc:url "https://github.com/SAINTProtein/SAINT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3174, edam:topic_3697 ; @@ -419114,7 +442855,7 @@ SAKEIMA is a sampling-based algorithm for computing an approximation of the most sc:url "https://github.com/VandinLab/SAKEIMA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -419133,7 +442874,7 @@ SAKEIMA is a sampling-based algorithm for computing an approximation of the most biotools:primaryContact "M. Mihara" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -419154,7 +442895,7 @@ SAKEIMA is a sampling-based algorithm for computing an approximation of the most biotools:primaryContact "T. Margraf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0128, edam:topic_0621, @@ -419176,12 +442917,25 @@ To reproduce the results reported in SAlign paper, use "Reproduce_Paper_Results" sc:name "SAlign" ; sc:url "https://github.com/cbrl-nuces/SAlign" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "SalivaDB is a comprehensive and manually-curated database for salivary biomarkers found in Homo sapiens. It contains 15,821 entries for 7729 unique salivary biomarkers consisting of proteins, metabolites, microbes, miRNA, and genes." ; + sc:featureList edam:operation_2945 ; + sc:name "salivadb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/salivadb/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data reference" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -419198,7 +442952,7 @@ To reproduce the results reported in SAlign paper, use "Reproduce_Paper_Results" biotools:primaryContact "Jeevan karloss" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:author "Amine Namouchi" ; sc:citation ; sc:description "SalmoBase 2.0: An integrative genomic data resource for salmonids" ; @@ -419209,18 +442963,18 @@ To reproduce the results reported in SAlign paper, use "Reproduce_Paper_Results" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3496" ; - sc:name "RNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3496" ], + sc:additionalType "http://edamontology.org/data_3496" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "RNA sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Data reference" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -419240,22 +442994,22 @@ To reproduce the results reported in SAlign paper, use "Reproduce_Paper_Results" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3301 ; @@ -419278,7 +443032,7 @@ To reproduce the results reported in SAlign paper, use "Reproduce_Paper_Results" "Laetitia Fabre" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0736, @@ -419293,7 +443047,7 @@ To reproduce the results reported in SAlign paper, use "Reproduce_Paper_Results" sc:url "http://sourceforge.net/projects/salt1/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2885, @@ -419316,7 +443070,7 @@ To reproduce the results reported in SAlign paper, use "Reproduce_Paper_Results" sc:url "https://github.com/weiquan/SALT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3473, @@ -419332,7 +443086,7 @@ To reproduce the results reported in SAlign paper, use "Reproduce_Paper_Results" sc:url "http://statweb.stanford.edu/~tibs/SAM/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -419354,18 +443108,18 @@ To reproduce the results reported in SAlign paper, use "Reproduce_Paper_Results" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ], + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "File name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ] ; + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "File name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "File name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Pierre Lindenbaum" ; @@ -419386,24 +443140,46 @@ To reproduce the results reported in SAlign paper, use "Reproduce_Paper_Results" sc:url "https://github.com/lindenb/jvarkit/wiki/Sam2Tsv" ; biotools:primaryContact "Pierre Lindenbaum" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_0821, + edam:topic_3334, + edam:topic_3474 ; + sc:citation , + "pubmed:35288360" ; + sc:description "A computational prediction of S-Adenosyl methionine (SAM) interacting proteins and their interaction sites through primary structures." ; + sc:featureList edam:operation_0253, + edam:operation_2492, + edam:operation_3092 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SIP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://sites.google.com/view/wajidarshad/software" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -419421,7 +443197,7 @@ To reproduce the results reported in SAlign paper, use "Reproduce_Paper_Results" biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -419441,8 +443217,29 @@ To reproduce the results reported in SAlign paper, use "Reproduce_Paper_Results" sc:url "http://www.bcgsc.ca/platform/bioinfo/software/sam" ; biotools:primaryContact "SAM Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0196, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC8849508", + "pubmed:35120119" ; + sc:description "The SAMBA tool uses long reads to improve the contiguity of genome assemblies." ; + sc:featureList edam:operation_0525, + edam:operation_3216, + edam:operation_3731 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SAMBA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/alekseyzimin/masurca" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -419459,7 +443256,7 @@ To reproduce the results reported in SAlign paper, use "Reproduce_Paper_Results" sc:url "http://www.open-bio.org/wiki/Sambamba" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -419474,7 +443271,7 @@ To reproduce the results reported in SAlign paper, use "Reproduce_Paper_Results" sc:url "https://github.com/GregoryFaust/samblaster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0736, edam:topic_3315, @@ -419497,7 +443294,7 @@ Software for automatic detection and measurement of coiled coils in PDB structur sc:url "https://lbs.cent.uw.edu.pl/samcc_turbo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0623, @@ -419513,7 +443310,7 @@ Software for automatic detection and measurement of coiled coils in PDB structur sc:url "http://www.biosun.org.cn/SamCluster/index.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3444, @@ -419533,7 +443330,7 @@ Software for automatic detection and measurement of coiled coils in PDB structur sc:url "https://github.com/hanwencat/SAME-ECOS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_3170, @@ -419552,7 +443349,7 @@ Multiple Test Correction Method""" ; sc:url "https://peptidewitch.shinyapps.io/samesame" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -419580,14 +443377,14 @@ Multiple Test Correction Method""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ] ; + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "File name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "File name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Pierre Lindenbaum" ; @@ -419609,7 +443406,7 @@ Multiple Test Correction Method""" ; biotools:primaryContact "Pierre Lindenbaum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170 ; @@ -419626,7 +443423,7 @@ Multiple Test Correction Method""" ; biotools:primaryContact "Dongxiao Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0769, edam:topic_3379, @@ -419643,7 +443440,7 @@ Sammba-MRI:Small mammals NeuroImaging in Python — Multimodal Imaging of Neurod sc:url "http://sammba-mri.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -419662,8 +443459,29 @@ Sammba-MRI:Small mammals NeuroImaging in Python — Multimodal Imaging of Neurod sc:softwareHelp ; sc:url "http://fraenkel-nsf.csbi.mit.edu/samnetweb/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0634, + edam:topic_2275, + edam:topic_3474 ; + sc:citation , + "pubmed:34849586" ; + sc:description "Improving accuracy of short antimicrobial peptides prediction using three different sequence encodings and deep neural networks." ; + sc:featureList edam:operation_0478, + edam:operation_3927, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "sAMP-PFPDeep" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/WaqarHusain/sAMP-PFPDeep" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2269, edam:topic_3050, @@ -419678,7 +443496,7 @@ Sampbias is a method and tool to 1) visualize the distribution of occurrence rec sc:url "https://github.com/azizka/sampbias" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3306, @@ -419696,14 +443514,14 @@ Sampbias is a method and tool to 1) visualize the distribution of occurrence rec a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1464" ; - sc:name "DNA structure" ; - sc:sameAs "http://edamontology.org/data_1464" ], + sc:additionalType "http://edamontology.org/data_1464" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "DNA structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -419726,7 +443544,7 @@ Sampbias is a method and tool to 1) visualize the distribution of occurrence rec sc:url "http://compbio.clemson.edu/SAMPDI-3D/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -419750,7 +443568,7 @@ Recent studies have revealed diverse amino acid, post-translational and non-cano sc:url "https://github.com/FenyoLab/SAMPEI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -419765,7 +443583,7 @@ Recent studies have revealed diverse amino acid, post-translational and non-cano sc:url "http://dna.leeds.ac.uk/sample/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -419785,7 +443603,7 @@ Recent studies have revealed diverse amino acid, post-translational and non-cano biotools:primaryContact "Khadija El Amrani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3172, @@ -419802,7 +443620,7 @@ Recent studies have revealed diverse amino acid, post-translational and non-cano biotools:primaryContact "Carl Brunius" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -419821,7 +443639,7 @@ Recent studies have revealed diverse amino acid, post-translational and non-cano sc:url "https://github.com/wmacnair/SampleQC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3168, @@ -419837,7 +443655,7 @@ Recent studies have revealed diverse amino acid, post-translational and non-cano sc:url "http://biostat.mc.vanderbilt.edu/wiki/Main/SampleSeq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -419859,7 +443677,7 @@ Recent studies have revealed diverse amino acid, post-translational and non-cano biotools:primaryContact "Kelly Burkett" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3382, edam:topic_3474, @@ -419880,7 +443698,7 @@ samplot is a command line tool for rapid, multi-sample structural variant visual sc:url "https://github.com/ryanlayer/samplot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, edam:topic_2258, @@ -419896,7 +443714,7 @@ samplot is a command line tool for rapid, multi-sample structural variant visual sc:url "https://github.com/tbwxmu/SAMPN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0102, @@ -419913,8 +443731,29 @@ SQL-like query language for the SAM/BAM file format.""" ; sc:name "SamQL" ; sc:url "https://github.com/maragkakislab/samql/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0625, + edam:topic_0634, + edam:topic_3379, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC9252818", + "pubmed:35524573" ; + sc:description "SAMS is a database and phenotyping tool for precision medicine. Physicians can enter clinical signs from the Human Phenotype Ontology as well complete diagnoses, and patients can be involved by sharing the symptoms they encounter." ; + sc:featureList edam:operation_2421, + edam:operation_3559 ; + sc:isAccessibleForFree true ; + sc:name "SAMS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.genecascade.org/SAMS/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3308 ; @@ -419928,7 +443767,7 @@ SQL-like query language for the SAM/BAM file format.""" ; sc:url "https://github.com/transcript/SAMSA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3174, @@ -419950,7 +443789,7 @@ It is a rapid and efficient metatranscriptome pipeline for analyzing large RNA-s biotools:primaryContact "Danielle G. LemayEmail author" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3169, @@ -419967,7 +443806,7 @@ It is a rapid and efficient metatranscriptome pipeline for analyzing large RNA-s biotools:primaryContact "Admin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation ; @@ -419982,7 +443821,7 @@ It is a rapid and efficient metatranscriptome pipeline for analyzing large RNA-s biotools:primaryContact "Hongwei Huo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229 ; @@ -420002,7 +443841,7 @@ It is a rapid and efficient metatranscriptome pipeline for analyzing large RNA-s biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation "pubmed:21088025" ; @@ -420016,7 +443855,7 @@ It is a rapid and efficient metatranscriptome pipeline for analyzing large RNA-s biotools:primaryContact "Timo Lassmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -420031,7 +443870,7 @@ It is a rapid and efficient metatranscriptome pipeline for analyzing large RNA-s sc:url "http://sourceforge.net/projects/samsvm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3050, @@ -420051,14 +443890,14 @@ SAMT is an R package that contains different functions to manipulate and analyse a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0080, @@ -420066,10 +443905,13 @@ SAMT is an R package that contains different functions to manipulate and analyse edam:topic_3168, edam:topic_3325 ; sc:citation , + , , "pmcid:PMC2723002", + "pmcid:PMC3198575", "pmcid:PMC7931819", "pubmed:19505943", + "pubmed:21903627", "pubmed:33590861" ; sc:contributor "Richard Durbin" ; sc:description "SAMtools and BCFtools are widely used programs for processing and analysing high-throughput sequencing data. They include tools for file format conversion and manipulation, sorting, querying, statistics, variant calling, and effect analysis amongst other methods." ; @@ -420098,6 +443940,9 @@ SAMT is an R package that contains different functions to manipulate and analyse "1.13", "1.14", "1.15", + "1.15.1", + "1.16", + "1.16.1", "1.2", "1.3", "1.3.1", @@ -420113,14 +443958,14 @@ SAMT is an R package that contains different functions to manipulate and analyse a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -420139,14 +443984,14 @@ SAMT is an R package that contains different functions to manipulate and analyse a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -420166,14 +444011,14 @@ SAMT is an R package that contains different functions to manipulate and analyse a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168 ; @@ -420193,18 +444038,18 @@ SAMT is an R package that contains different functions to manipulate and analyse a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -420223,14 +444068,14 @@ SAMT is an R package that contains different functions to manipulate and analyse a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3168 ; @@ -420249,7 +444094,7 @@ SAMT is an R package that contains different functions to manipulate and analyse biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -420263,7 +444108,7 @@ SAMT is an R package that contains different functions to manipulate and analyse sc:url "http://doc.aporc.org/wiki/SANA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -420280,7 +444125,7 @@ SAMT is an R package that contains different functions to manipulate and analyse biotools:primaryContact "Wayne B. Hayes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0780, @@ -420300,7 +444145,7 @@ SAMT is an R package that contains different functions to manipulate and analyse biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0736, @@ -420318,7 +444163,7 @@ SAMT is an R package that contains different functions to manipulate and analyse "Marnix H. Medema" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, edam:topic_3168 ; @@ -420335,7 +444180,7 @@ This package builds on sangerseqR to allow users to create contigs from collecti sc:url "https://bioconductor.org/packages/sangeranalyseR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -420355,7 +444200,7 @@ This package builds on sangerseqR to allow users to create contigs from collecti biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3365, edam:topic_3474 ; @@ -420370,7 +444215,7 @@ This package builds on sangerseqR to allow users to create contigs from collecti sc:url "https://github.com/HSE-LAMBDA/sango" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -420387,7 +444232,7 @@ This package builds on sangerseqR to allow users to create contigs from collecti sc:url "http://lee.kias.re.kr/~newton/sann/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, edam:topic_3474, @@ -420406,22 +444251,22 @@ Polyadenylation plays a regulatory role in transcription. The recognition of pol a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1919" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2523" ; - sc:name "Phylogenetic data" ; - sc:sameAs "http://edamontology.org/data_2523" ], + sc:additionalType "http://edamontology.org/data_2523" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Phylogenetic data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3272" ; - sc:name "Species tree" ; - sc:sameAs "http://edamontology.org/data_3272" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3272" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Species tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_3293 ; @@ -420447,7 +444292,7 @@ C++.""" ; sc:url "https://gitlab.ub.uni-bielefeld.de/gi/sans" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -420463,7 +444308,7 @@ C++.""" ; sc:url "http://ekhidna2.biocenter.helsinki.fi/cgi-bin/sans/sans.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -420484,7 +444329,7 @@ C++.""" ; biotools:primaryContact "Alex J. Cornish" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3444, @@ -420498,7 +444343,7 @@ C++.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2814, edam:topic_3474 ; @@ -420516,8 +444361,33 @@ This project provides the programs and related files of the Simple Angle Predict sc:name "SAP" ; sc:url "https://gitlab.com/mahnewton/sap" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0108, + edam:topic_0736, + edam:topic_3474, + edam:topic_3542 ; + sc:citation , + "pmcid:PMC8728911", + "pubmed:34983370" ; + sc:description "Secondary structure specific simpler prediction models for protein backbone angles." ; + sc:featureList edam:operation_0249, + edam:operation_0267, + edam:operation_0479, + edam:operation_0502, + edam:operation_2488 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SAP4SS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.com/mahnewton/sap4ss" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0196, @@ -420533,7 +444403,7 @@ This project provides the programs and related files of the Simple Angle Predict biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121 ; @@ -420552,8 +444422,38 @@ This project provides the programs and related files of the Simple Angle Predict biotools:primaryContact "Bo Wen", "Shaohang Xu" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2298" ; + sc:name "Gene ID (HGNC)" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0736, + edam:topic_0749, + edam:topic_3320, + edam:topic_3510, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9229502", + "pubmed:35751026" ; + sc:description "A webserver for the identification of alternative protein features." ; + sc:featureList edam:operation_0264, + edam:operation_0303, + edam:operation_0433, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SAPFIR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bioinfo-scottgroup.med.usherbrooke.ca/sapfir/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3382, @@ -420572,7 +444472,7 @@ This project provides the programs and related files of the Simple Angle Predict biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0780, edam:topic_3474 ; @@ -420589,14 +444489,14 @@ A method for achieving faster suffix array queries compared to binary search.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_3255" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_3255" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3307, @@ -420619,7 +444519,7 @@ A method for achieving faster suffix array queries compared to binary search.""" biotools:primaryContact "Jasper Koehorst" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, edam:topic_3474, @@ -420637,8 +444537,66 @@ For sequences longer than 5k basepairs, it is advisable to download SAPPHIRE and sc:name "SAPPHIRE" ; sc:url "http://www.biosapphire.com" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web API" ; + sc:applicationSubCategory edam:topic_0769 ; + sc:citation ; + sc:description "A standard implementation conforming to the Global Alliance for Genomics and Health (GA4GH) Workflow Execution Service (WES) API specification." ; + sc:license "Apache-2.0" ; + sc:name "Sapporo-service" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + , + ; + sc:softwareVersion "1.4.8" ; + sc:url "https://github.com/sapporo-wes/sapporo-service" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0769 ; + sc:citation ; + sc:description "A web application for managing and executing WES services." ; + sc:license "Apache-2.0" ; + sc:name "Sapporo-web" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:softwareVersion "1.2.0" ; + sc:url "https://github.com/sapporo-wes/sapporo-web" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2840, + edam:topic_3343, + edam:topic_3474, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9326022", + "pubmed:35910729" ; + sc:description "An Expert System for Screening Chemicals Against Structural Alerts." ; + sc:featureList edam:operation_0303, + edam:operation_0337, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "SApredictor" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.sapredictor.cn" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2269, @@ -420662,7 +444620,7 @@ For sequences longer than 5k basepairs, it is advisable to download SAPPHIRE and biotools:primaryContact "Daniel Schmolze" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0166, @@ -420678,7 +444636,7 @@ For sequences longer than 5k basepairs, it is advisable to download SAPPHIRE and biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -420696,7 +444654,7 @@ For sequences longer than 5k basepairs, it is advisable to download SAPPHIRE and sc:url "http://www.stat.sinica.edu.tw/hsinchou/genetics/quality/SAQC.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -420714,7 +444672,7 @@ For sequences longer than 5k basepairs, it is advisable to download SAPPHIRE and sc:url "http://sgu.bioinfo.cipf.es/services/SARA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3053, @@ -420730,7 +444688,7 @@ For sequences longer than 5k basepairs, it is advisable to download SAPPHIRE and sc:url "http://c2s2.yale.edu/software/SaRa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -420747,8 +444705,29 @@ For sequences longer than 5k basepairs, it is advisable to download SAPPHIRE and sc:url "http://tcoffee.crg.cat/apps/tcoffee/do:saracoffee" ; biotools:primaryContact "Cedric Notredame" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0092, + edam:topic_3336, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8523047", + "pubmed:34613960" ; + sc:description "Automated segmentation, tracking, and analysis of sarcomeres in hiPSC-derived cardiomyocytes." ; + sc:featureList edam:operation_0337, + edam:operation_3443, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Sarc-Graph" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/elejeune11/Sarc-Graph" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0203, edam:topic_3170, @@ -420767,7 +444746,7 @@ plot and analyze gene expression in skeletal muscles during aging.""" ; sc:url "https://sarcoatlas.scicore.unibas.ch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2640, edam:topic_3444, @@ -420785,18 +444764,18 @@ SARDU-Net selects subsets of informative qMRI measurements within lengthy pilot a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0622, @@ -420831,7 +444810,7 @@ SARDU-Net selects subsets of informative qMRI measurements within lengthy pilot "Szilvester Juhos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3557 ; @@ -420847,7 +444826,7 @@ SARDU-Net selects subsets of informative qMRI measurements within lengthy pilot sc:url "http://i.uestc.edu.cn/sarotup/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -420860,10 +444839,35 @@ SARDU-Net selects subsets of informative qMRI measurements within lengthy pilot "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/sarpred/" . + sc:url "http://webs.iiitd.edu.in/raghava/sarpred/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Script" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0634, + edam:topic_0769, + edam:topic_2830, + edam:topic_3948 ; + sc:citation , + "pmcid:PMC9315150", + "pubmed:35903104" ; + sc:description "Sequence and Structure-Guided Selection of Conserved Peptides from SARS-related Coronaviruses for Novel Vaccine Development." ; + sc:featureList edam:operation_0252, + edam:operation_0416, + edam:operation_0482 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SARS-Arena" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/KavrakiLab/SARS-Arena" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3421, edam:topic_3474, @@ -420904,13 +444908,36 @@ Severe Acute Respiratory Syndrome (SARS).""" ; sc:url "https://www.proteinatlas.org/humanproteome/sars-cov-2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Predict human proteins that interact with SARS-CoV-2 and trace provenance of predictions" ; sc:name "SARS-CoV-2 Protein Interaction Network Analysis" ; sc:url "https://github.com/Murali-group/SARS-CoV-2-network-analysis" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_0199, + edam:topic_0736, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC8732965", + "pubmed:35013687" ; + sc:description "Modeling SARS-CoV-2 spike/ACE2 protein-protein interactions for predicting the binding affinity of new spike variants for ACE2, and novel ACE2 structurally related human protein targets, for COVID-19 handling in the 3PM context." ; + sc:featureList edam:operation_0303, + edam:operation_0331, + edam:operation_2492, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:name "SARS-CoV-2 spike RBD ACE2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.mitoairm.it/covid19affinities" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0637, edam:topic_0821, @@ -420926,7 +444953,7 @@ Severe Acute Respiratory Syndrome (SARS).""" ; sc:url "http://design.rxnfinder.org/sars2020/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -420946,7 +444973,7 @@ Severe Acute Respiratory Syndrome (SARS).""" ; sc:url "https://sars3d.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -420965,22 +444992,21 @@ Severe Acute Respiratory Syndrome (SARS).""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Experiment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ], + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Experiment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3308 ; @@ -421013,30 +445039,30 @@ Severe Acute Respiratory Syndrome (SARS).""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation , @@ -421055,30 +445081,30 @@ Severe Acute Respiratory Syndrome (SARS).""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -421098,18 +445124,17 @@ Severe Acute Respiratory Syndrome (SARS).""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -421132,7 +445157,7 @@ Severe Acute Respiratory Syndrome (SARS).""" ; biotools:primaryContact "Roman Laskowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "SAS is an integrated system of software that enables you to do everything from accessing data across multiple sources to performing sophisticated analyses and delivering information across your organization. SAS foundation products are available as individual software modules, and they serve as the foundation for SAS solutions." ; @@ -421145,7 +445170,7 @@ Severe Acute Respiratory Syndrome (SARS).""" ; sc:url "https://www.sas.com/en_us/software/foundation.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, edam:topic_2640 ; @@ -421162,7 +445187,7 @@ SASC is a new model and a robust framework based on Simulated Annealing for the sc:url "https://github.com/sciccolella/sasc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2533, @@ -421178,7 +445203,7 @@ SASC is a new model and a robust framework based on Simulated Annealing for the sc:url "http://www.sjdlab.org/resources/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -421194,7 +445219,7 @@ SASC is a new model and a robust framework based on Simulated Annealing for the sc:url "http://cuke.hort.ncsu.edu/cucurbit/wehner/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3361, edam:topic_3810 ; @@ -421212,7 +445237,7 @@ This is a core implementation of 'SAS' procedures for linear models - GLM, REG, sc:url "http://CRAN.R-project.org/package=sasLM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -421229,8 +445254,30 @@ This is a core implementation of 'SAS' procedures for linear models - GLM, REG, sc:name "SASOM" ; sc:url "https://github.com/rksyouyou/SASOM-pkg" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0203, + edam:topic_0622, + edam:topic_3673 ; + sc:citation , + "pubmed:35385055" ; + sc:description "Analysis of missing genomic regions in draft genomes of prokaryotes." ; + sc:featureList edam:operation_0310, + edam:operation_1812, + edam:operation_3472, + edam:operation_3644 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SASpector" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/LoGT-KULeuven/SASpector" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3055, @@ -421246,7 +445293,7 @@ This is a core implementation of 'SAS' procedures for linear models - GLM, REG, sc:url "http://cuke.hort.ncsu.edu/cucurbit/wehner/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2275 ; @@ -421262,7 +445309,7 @@ This is a core implementation of 'SAS' procedures for linear models - GLM, REG, sc:url "http://sastbx-document.readthedocs.io/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -421279,7 +445326,7 @@ This is a core implementation of 'SAS' procedures for linear models - GLM, REG, sc:url "http://phylogenomics.berkeley.edu/software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0199, @@ -421301,8 +445348,28 @@ This is a core implementation of 'SAS' procedures for linear models - GLM, REG, sc:url "http://satellog.bcgsc.ca/" ; biotools:primaryContact "Perseus I Missirlis" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0634, + edam:topic_3382, + edam:topic_3474 ; + sc:citation ; + sc:description "An automated neural network-based classification of testicular sections allows for high-throughput histopathology of mouse mutants." ; + sc:featureList edam:operation_3435, + edam:operation_3443, + edam:operation_3553 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SATINN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/conradlab/SATINN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3168, @@ -421318,7 +445385,7 @@ This is a core implementation of 'SAS' procedures for linear models - GLM, REG, sc:url "https://github.com/amkozlov/sativa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, edam:topic_3169, @@ -421334,8 +445401,24 @@ SATORI is a Self-ATtentiOn based deep learning model to capture Regulatory eleme sc:name "SATORI" ; sc:url "https://github.com/fahadahaf/SATORI" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC4702810", + "pubmed:26527728" ; + sc:description "SATPdb is a database of structurally annotated therapeutic peptides curated from twenty public domain peptide databases and two datasets." ; + sc:featureList edam:operation_2945 ; + sc:name "satpdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/satpdb/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -421353,7 +445436,7 @@ SATORI is a Self-ATtentiOn based deep learning model to capture Regulatory eleme biotools:primaryContact "Davide Campagna" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -421375,7 +445458,7 @@ satuRn is a highly performant and scalable method for performing differential tr sc:url "https://github.com/statOmics/satuRn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382, @@ -421391,7 +445474,7 @@ satuRn is a highly performant and scalable method for performing differential tr sc:url "https://github.com/mzlr/sau-net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -421409,7 +445492,7 @@ satuRn is a highly performant and scalable method for performing differential tr biotools:primaryContact "Savant Forum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -421427,7 +445510,7 @@ satuRn is a highly performant and scalable method for performing differential tr biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -421449,7 +445532,7 @@ satuRn is a highly performant and scalable method for performing differential tr biotools:primaryContact "SAVoR Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -421468,7 +445551,7 @@ satuRn is a highly performant and scalable method for performing differential tr biotools:primaryContact "R. Brent Calder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3315 ; sc:citation , "pmcid:PMC7363216" ; @@ -421479,7 +445562,7 @@ The virtual machine where the tool is ready to run can be found at https://www.c sc:url "https://github.com/551100kk/SAW" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2828 ; sc:citation , @@ -421495,7 +445578,7 @@ The virtual machine where the tool is ready to run can be found at https://www.c biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0736, @@ -421512,7 +445595,7 @@ The virtual machine where the tool is ready to run can be found at https://www.c sc:url "http://zhanglab.ccmb.med.umich.edu/SAXSTER/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0654, @@ -421527,7 +445610,7 @@ The virtual machine where the tool is ready to run can be found at https://www.c sc:url "http://mpyatkov.github.io/sbars/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -421549,7 +445632,7 @@ The virtual machine where the tool is ready to run can be found at https://www.c biotools:primaryContact "Oliver Frings" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2259, edam:topic_2269, @@ -421566,7 +445649,7 @@ The virtual machine where the tool is ready to run can be found at https://www.c sc:url "https://github.com/biocoder/SBEToolbox" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0108, edam:topic_0602, @@ -421584,7 +445667,7 @@ The virtual machine where the tool is ready to run can be found at https://www.c sc:url "http://sbgn.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, edam:topic_0749, @@ -421603,7 +445686,7 @@ SBGN bricks are building blocks representing basic biological patterns. They can sc:url "http://sbgnbricks.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3068 ; @@ -421623,7 +445706,7 @@ SBGN bricks are building blocks representing basic biological patterns. They can biotools:primaryContact "Adrien Rougny" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -421640,7 +445723,7 @@ SBGN bricks are building blocks representing basic biological patterns. They can biotools:primaryContact "Weijun Luo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3071 ; @@ -421661,7 +445744,7 @@ SBGN bricks are building blocks representing basic biological patterns. They can biotools:primaryContact "Nan Xiao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3375 ; @@ -421675,8 +445758,27 @@ SBGN bricks are building blocks representing basic biological patterns. They can sc:url "https://www.mathworks.com/matlabcentral/fileexchange/39719-sbioimportberkeleymadonna" ; biotools:primaryContact "Jeremy Huard" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0621, + edam:topic_0821, + edam:topic_2259 ; + sc:citation ; + sc:description "A Framework for Evaluating Quality of Annotations in Systems Biology Models." ; + sc:featureList edam:operation_2422, + edam:operation_2426 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SBMate" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/woosubs/SBMate" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_2229, @@ -421696,7 +445798,7 @@ SBMClone is a tool that uses stochastic block model (SBM) inference methods to i sc:url "https://github.com/raphael-group/SBMClone" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_2259 ; @@ -421715,7 +445817,7 @@ SBMClone is a tool that uses stochastic block model (SBM) inference methods to i sc:url "http://sbml.org/Software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3068, @@ -421732,7 +445834,7 @@ SBMClone is a tool that uses stochastic block model (SBM) inference methods to i sc:url "http://sourceforge.net/projects/sbml2latex/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2259 ; sc:citation ; @@ -421747,7 +445849,7 @@ SBMClone is a tool that uses stochastic block model (SBM) inference methods to i sc:url "http://www.ebi.ac.uk/compneur-srv/SBMLeditor.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3366 ; @@ -421765,7 +445867,7 @@ SBMClone is a tool that uses stochastic block model (SBM) inference methods to i biotools:primaryContact "Ines Heiland" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2259 ; @@ -421783,7 +445885,7 @@ SBMClone is a tool that uses stochastic block model (SBM) inference methods to i biotools:primaryContact "Tomas Radivoyevitch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, edam:topic_3068, @@ -421801,7 +445903,7 @@ SBMLsimulator is a fast, accurate, and easily usable program for dynamic model s sc:url "http://www.cogsys.cs.uni-tuebingen.de/software/SBMLsimulator/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0821, @@ -421819,7 +445921,7 @@ SBMLsimulator is a fast, accurate, and easily usable program for dynamic model s biotools:primaryContact "Andreas Dräger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -421837,7 +445939,7 @@ SBMLsimulator is a fast, accurate, and easily usable program for dynamic model s sc:url "https://github.com/TakahiroYamada/SBMLWebApp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -421863,7 +445965,7 @@ SBMLsimulator is a fast, accurate, and easily usable program for dynamic model s sc:url "https://github.com/clinfo/SBMolGen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Plug-in" ; sc:applicationSubCategory edam:topic_0176, @@ -421888,7 +445990,7 @@ SBMLsimulator is a fast, accurate, and easily usable program for dynamic model s sc:url "https://github.com/CompBiochBiophLab/sbm-openmm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3071 ; @@ -421904,7 +446006,7 @@ SBMLsimulator is a fast, accurate, and easily usable program for dynamic model s sc:url "http://www.ebi.ac.uk/sbo/SBOWSLib/docwsdl/wsdldoc.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3047, edam:topic_3398, @@ -421923,7 +446025,7 @@ The Synthetic Biology Open Language (SBOL) is a community-developed data standar sc:url "https://github.com/SynBioDex/SBOLTestSuite/tree/master/SBOL3/multicellular" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3382, @@ -421943,7 +446045,7 @@ The Synthetic Biology Open Language (SBOL) is a community-developed data standar sc:url "https://sbolcanvas.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3524 ; @@ -421959,7 +446061,7 @@ The Synthetic Biology Open Language (SBOL) is a community-developed data standar biotools:primaryContact "Piero Dallepezze" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0160 ; @@ -421974,8 +446076,40 @@ The Synthetic Biology Open Language (SBOL) is a community-developed data standar sc:url "http://www.nii.ac.in/sbspks2.html" ; biotools:primaryContact "Debasisa Mohanty" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1353" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Sequence motif" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1046" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Strain name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0622, + edam:topic_0659, + edam:topic_0749, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8500130", + "pubmed:34606615" ; + sc:description "An online service for somatic binding sequence annotation." ; + sc:featureList edam:operation_0361, + edam:operation_0445, + edam:operation_3096, + edam:operation_3227, + edam:operation_3901 ; + sc:isAccessibleForFree true ; + sc:name "SBSA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://innovebioinfo.com/Annotation/SBSA/SBSA.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3524, @@ -421992,7 +446126,7 @@ The Synthetic Biology Open Language (SBOL) is a community-developed data standar biotools:primaryContact "Andreas Dräger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -422009,7 +446143,7 @@ The Synthetic Biology Open Language (SBOL) is a community-developed data standar sc:url "http://www.nii.ac.in/~pksdb/sbspks/homepage.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -422023,7 +446157,7 @@ The Synthetic Biology Open Language (SBOL) is a community-developed data standar sc:url "http://www.ncbi.nlm.nih.gov/gv/mhc/sbt.cgi?cmd=main" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2259, @@ -422039,7 +446173,7 @@ The Synthetic Biology Open Language (SBOL) is a community-developed data standar sc:url "http://sbw.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -422054,8 +446188,29 @@ The Synthetic Biology Open Language (SBOL) is a community-developed data standar sc:softwareHelp ; sc:url "http://jhhung.github.io/sBWT/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_2229, + edam:topic_3170, + edam:topic_3308, + edam:topic_3474 ; + sc:citation ; + sc:description "A topology preserving graph convolution network for clustering of single-cell RNA seq data" ; + sc:featureList edam:operation_3432, + edam:operation_3436, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "sc-CGconv" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Snehalikalall/CopulaGCN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3444, @@ -422073,7 +446228,7 @@ The Synthetic Biology Open Language (SBOL) is a community-developed data standar biotools:primaryContact "Haoyu Lan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, @@ -422100,7 +446255,7 @@ We provided the codes used in evaluating scATAC-seq clustering, automatic cell-t sc:url "http://github.com/liulab-dfci/MAESTRO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3308, @@ -422113,7 +446268,7 @@ We provided the codes used in evaluating scATAC-seq clustering, automatic cell-t sc:url "https://github.com/Snehalikalall/sc-REnF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_0203, @@ -422134,7 +446289,7 @@ We provided the codes used in evaluating scATAC-seq clustering, automatic cell-t . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, edam:topic_2229, @@ -422152,7 +446307,7 @@ SC1: scRNA-Seq Analysis Pipeline.""" ; sc:url "https://sc1.engr.uconn.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2885, edam:topic_3170, @@ -422169,8 +446324,59 @@ The transcriptome plays a crucial role in the maintenance of cell identity and t sc:name "SC2disease" ; sc:url "http://easybioai.com/sc2disease/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Desktop application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_2229, + edam:topic_3170, + edam:topic_3360 ; + sc:citation ; + sc:description "A computational tool to uncover inter-cell signaling targets and identify relevant drugs based on single cell RNA-seq data." ; + sc:featureList edam:operation_3223, + edam:operation_3557, + edam:operation_3935, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "SC2MeNetDrug" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://fuhaililab.github.io/sc2MeNetDrug/" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Gene expression matrix" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0634, + edam:topic_3170, + edam:topic_3295, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC9387141", + "pubmed:35980286" ; + sc:description "Sepsis single-cell whole gene expression database." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3223 ; + sc:isAccessibleForFree true ; + sc:name "SC2sepsis" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.rjh-sc2sepsis.com/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170 ; @@ -422191,7 +446397,7 @@ The transcriptome plays a crucial role in the maintenance of cell identity and t biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0121, edam:topic_3170 ; @@ -422204,7 +446410,7 @@ The transcriptome plays a crucial role in the maintenance of cell identity and t sc:url "https://gitlab.com/cvejic-group/scaespy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, edam:topic_3168, @@ -422224,7 +446430,7 @@ A comprehensive pipeline for single cell ATAC-seq data processing and analysis"" sc:url "https://github.com/tanlabcode/scATAC-pro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0204, edam:topic_0769, @@ -422251,7 +446457,7 @@ In its current form, the ATAC-seq pipeline is a prototype and will likely underg sc:url "https://www.encodeproject.org/atac-seq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3308, edam:topic_3474 ; @@ -422266,7 +446472,7 @@ In its current form, the ATAC-seq pipeline is a prototype and will likely underg sc:url "https://bioconductor.org/packages/release/bioc/html/scAlign.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3308 ; @@ -422282,7 +446488,7 @@ In its current form, the ATAC-seq pipeline is a prototype and will likely underg sc:url "https://bioconductor.org/packages/devel/bioc/html/scBFA.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3308, @@ -422309,7 +446515,7 @@ In its current form, the ATAC-seq pipeline is a prototype and will likely underg biotools:primaryContact "Amit Frishberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3308, @@ -422325,7 +446531,7 @@ In its current form, the ATAC-seq pipeline is a prototype and will likely underg sc:url "https://github.com/gedcom/scCCESS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, edam:topic_2640, @@ -422342,7 +446548,7 @@ The scCancer package focuses on processing and analyzing droplet-based scRNA-seq sc:url "http://lifeome.net/software/sccancer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3512 ; @@ -422355,7 +446561,7 @@ The scCancer package focuses on processing and analyzing droplet-based scRNA-seq sc:url "https://scdapa.sourceforge.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_3308, edam:topic_3678 ; @@ -422370,7 +446576,7 @@ The scCancer package focuses on processing and analyzing droplet-based scRNA-seq sc:url "https://github.com/Vivianstats/scDesign" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -422392,7 +446598,7 @@ The scCancer package focuses on processing and analyzing droplet-based scRNA-seq biotools:primaryContact "BIMIB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0769, edam:topic_3170, @@ -422414,7 +446620,7 @@ Results: I developed scGEAToolbox—a Matlab toolbox for scRNA-seq data analysis sc:url "https://github.com/jamesjcai/scGEAToolbox" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3308, edam:topic_3474 ; @@ -422427,7 +446633,7 @@ Results: I developed scGEAToolbox—a Matlab toolbox for scRNA-seq data analysis sc:url "https://github.com/theislab/scgen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2830, edam:topic_3170 ; @@ -422441,7 +446647,7 @@ Results: I developed scGEAToolbox—a Matlab toolbox for scRNA-seq data analysis sc:url "https://github.com/10XGenomics/scHLAcount" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170 ; sc:citation , @@ -422452,7 +446658,7 @@ Results: I developed scGEAToolbox—a Matlab toolbox for scRNA-seq data analysis sc:url "https://github.com/BMILAB/scHinter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_2229, edam:topic_3168, @@ -422470,7 +446676,7 @@ This repository includes codes for data analysis in scMNase paper""" ; sc:url "https://github.com/binbinlai2012/scMNase" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -422489,7 +446695,7 @@ This repository includes codes for data analysis in scMNase paper""" ; biotools:primaryContact "Rui Hou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170 ; @@ -422504,7 +446710,7 @@ This repository includes codes for data analysis in scMNase paper""" ; sc:url "https://sydneybiox.github.io/scMerge/reference/scSEGIndex.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3170, @@ -422529,7 +446735,7 @@ This repository includes codes for data analysis in scMNase paper""" ; "Xiaohui Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3308, @@ -422548,7 +446754,7 @@ This repository includes codes for data analysis in scMNase paper""" ; biotools:primaryContact "Blaž Zupan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3170, edam:topic_3308, @@ -422567,7 +446773,7 @@ A toolbox for sparse contrastive principal component analysis (scPCA) of high-di sc:url "https://bioconductor.org/packages/scPCA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170, @@ -422591,7 +446797,7 @@ scPred is a general method to predict cell types based on variance structure dec sc:url "https://github.com/powellgenomicslab/scPred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3308 ; @@ -422606,23 +446812,8 @@ scPred is a general method to predict cell types based on variance structure dec sc:name "scRNA-seq" ; sc:url "https://github.com/jdime/scRNAseq_cell_cluster_labeling" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2229, - edam:topic_3170, - edam:topic_3308 ; - sc:citation , - "pmcid:PMC6720041", - "pubmed:31508207" ; - sc:description "> MEDIUM CONFIDENCE! | Evaluation of methods to assign cell type labels to cell clusters from single-cell RNA-sequencing data | Scripts to run and benchmark scRNA-seq cell cluster labeling methods | This repository contains scripts to run and benchmark scRNA-seq cell cluster labeling methods and is a companion to our paper 'Evaluation of methods to assign cell type labels to cell clusters from single-cell RNA-sequencing data' (Diaz-Mejia JJ et al (2019) [Preprint at F1000Research https://doi.org/10.12688/f1000research.18490.1]" ; - sc:featureList edam:operation_0313, - edam:operation_2436, - edam:operation_3680 ; - sc:license "MIT" ; - sc:name "scRNA-seq_autogenerated" ; - sc:url "https://github.com/jdime/scRNAseq_cell_cluster_labeling" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308 ; sc:citation , @@ -422633,7 +446824,7 @@ scPred is a general method to predict cell types based on variance structure dec sc:url "https://github.com/liuqivandy/scRNABatchQC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, edam:topic_3512 ; @@ -422646,7 +446837,7 @@ scPred is a general method to predict cell types based on variance structure dec sc:url "https://github.com/tabdelaal/scRNAseq_Benchmark" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3308, @@ -422666,7 +446857,7 @@ scReClassify is a post hoc cell type classification of single-cell RNA-sequencin sc:url "https://github.com/SydneyBioX/scReClassify" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3170, @@ -422687,7 +446878,7 @@ scReClassify is a post hoc cell type classification of single-cell RNA-sequencin biotools:primaryContact "Altschuler-Wu Laboratory" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_2885, @@ -422715,7 +446906,7 @@ It has been tested on up to 8 real mixed samples (10X pipeline), and up to 32 mi sc:url "https://github.com/jon-xu/scSplit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2229, edam:topic_3170, @@ -422733,7 +446924,7 @@ scTIM is a convenient tool for cell-type indicative marker detection based on si sc:url "https://github.com/Frank-Orwell/scTIM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_2229, @@ -422749,8 +446940,32 @@ Free document hosting provided by Read the Docs""" ; sc:name "scVelo" ; sc:url "https://scvelo.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_3170, + edam:topic_3315, + edam:topic_3474, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9007392", + "pubmed:35363784" ; + sc:description "Non-linear archetypal analysis of single-cell RNA-seq data by deep autoencoders." ; + sc:featureList edam:operation_0313, + edam:operation_0314, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scAAnet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/KrishnaswamyLab/AAnet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -422766,7 +446981,7 @@ Free document hosting provided by Read the Docs""" ; sc:url "https://github.com/zhoux85/scAdapt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170, @@ -422785,8 +447000,31 @@ Free document hosting provided by Read the Docs""" ; sc:softwareHelp ; sc:url "https://scaden.ims.bio" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0625, + edam:topic_2229, + edam:topic_3170, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC9199219", + "pubmed:35706040" ; + sc:description "Aimultaneous estimation of cell type proportions and cell type-specific gene expressions using SCAD-based iterative estimating procedure." ; + sc:featureList edam:operation_2436, + edam:operation_3223, + edam:operation_3629 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SCADIE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/tdw1221/SCADIE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3372 ; sc:citation , "pmcid:PMC6863524", @@ -422804,7 +447042,7 @@ Choose a web site to get translated content where available and see local events sc:url "http://www.mathworks.com/matlabcentral/fileexchange/72856-scafslicr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -422823,8 +447061,19 @@ Choose a web site to get translated content where available and see local events sc:operatingSystem "Linux" ; sc:url "https://github.com/chung-lab/scafe" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0622 ; + sc:description "Pipeline for scaffolding and breaking a genome assembly using 10x genomics linked-reads." ; + sc:featureList edam:operation_0525 ; + sc:name "Scaff10X" ; + sc:softwareVersion "4.1" ; + sc:url "https://sourceforge.net/projects/phusion2/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3125, @@ -422838,7 +447087,7 @@ Choose a web site to get translated content where available and see local events sc:url "http://alan.cs.gsu.edu/NGS/?q=content/scaffmatch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2258, @@ -422855,7 +447104,7 @@ Choose a web site to get translated content where available and see local events biotools:primaryContact "Petra Mutzel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -422873,7 +447122,7 @@ Choose a web site to get translated content where available and see local events sc:url "http://www.proteomesoftware.com/Scaffold/Scaffold_viewer.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071 ; @@ -422889,7 +447138,7 @@ Choose a web site to get translated content where available and see local events biotools:primaryContact "Barton M.D." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2258, edam:topic_3047, @@ -422905,7 +447154,7 @@ Choose a web site to get translated content where available and see local events sc:url "https://github.com/UCLCheminformatics/ScaffoldGraph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation , @@ -422919,7 +447168,7 @@ Choose a web site to get translated content where available and see local events sc:url "http://bioresearch.byu.edu/scaffoldscaffolder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0153, @@ -422942,7 +447191,7 @@ Choose a web site to get translated content where available and see local events sc:url "https://scagecom.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2229, edam:topic_3170, @@ -422962,7 +447211,7 @@ Choose a web site to get translated content where available and see local events sc:url "https://github.com/amsszlh/scAI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -422981,7 +447230,7 @@ Choose a web site to get translated content where available and see local events sc:url "https://github.com/tinglabs/scAIDE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -422993,7 +447242,7 @@ Choose a web site to get translated content where available and see local events biotools:primaryContact "SVALCE Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -423011,26 +447260,8 @@ Choose a web site to get translated content where available and see local events sc:url "https://www.mathworks.com/matlabcentral/fileexchange/67933-scale-space-vessel-tracing-implementation-of-lindeberg-s-algorithms" ; biotools:primaryContact "Constantino Carlos Reyes-Aldasoro" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3318, - edam:topic_3390 ; - sc:citation , - "pmcid:PMC6839114", - "pubmed:31699095" ; - sc:description """Implementation and scale-up of physical activity and behavioural nutrition interventions. - -BACKGROUND:Interventions that work must be effectively delivered at scale to achieve population level benefits. Researchers must choose among a vast array of implementation frameworks (> 60) that guide design and evaluation of implementation and scale-up processes. Therefore, we sought to recommend conceptual frameworks that can be used to design, inform, and evaluate implementation of physical activity (PA) and nutrition interventions at different stages of the program life cycle. We also sought to recommend a minimum data set of implementation outcome and determinant variables (indicators) as well as measures and tools deemed most relevant for PA and nutrition researchers. METHODS:We adopted a five-round modified Delphi methodology. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'frameworks'""" ; - sc:featureList edam:operation_3799 ; - sc:name "scale-up" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31699095" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -423048,7 +447279,7 @@ BACKGROUND:Interventions that work must be effectively delivered at scale to ach biotools:primaryContact "Carolin Walter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3172, edam:topic_3315, @@ -423065,7 +447296,7 @@ BACKGROUND:Interventions that work must be effectively delivered at scale to ach biotools:primaryContact "Joris Meurs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3168 ; sc:citation ; @@ -423079,7 +447310,7 @@ Per-base quality values in NGS sequencing data take a significant portion of sto sc:url "https://github.com/xmuyulab/samtools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "SPARQL endpoint", "Web API", "Web application", @@ -423104,7 +447335,7 @@ Per-base quality values in NGS sequencing data take a significant portion of sto sc:url "http://bioinformatics-ua.github.io/scaleus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2533, @@ -423120,7 +447351,7 @@ Per-base quality values in NGS sequencing data take a significant portion of sto sc:url "http://scalpel.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3295, @@ -423142,7 +447373,7 @@ Per-base quality values in NGS sequencing data take a significant portion of sto sc:url "https://github.com/cuhklinlab/scAMACE_py" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, edam:topic_3047, @@ -423165,14 +447396,12 @@ The SCAM Detective application provides an alternative method for assessing the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -423188,7 +447417,7 @@ The SCAM Detective application provides an alternative method for assessing the sc:url "http://scampi.cbr.su.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0736, @@ -423204,8 +447433,27 @@ The SCAM Detective application provides an alternative method for assessing the sc:softwareHelp ; sc:url "http://scampi.bioinfo.se" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0081, + edam:topic_3293 ; + sc:citation , + "pubmed:35471888" ; + sc:description "Scaling Alignment-based Phylogenetic Placement to Large Trees." ; + sc:featureList edam:operation_0323, + edam:operation_0326, + edam:operation_0567 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SCAMPP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/chry04/PLUSplacer" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -423221,7 +447469,7 @@ The SCAM Detective application provides an alternative method for assessing the sc:url "http://scan-atac-sim.gersteinlab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation ; @@ -423236,7 +447484,7 @@ The SCAM Detective application provides an alternative method for assessing the sc:url "http://scan-x.med.harvard.edu/scan-x.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -423252,7 +447500,7 @@ The SCAM Detective application provides an alternative method for assessing the sc:url "http://www-leca.ujf-grenoble.fr/moyens-techniques/logiciels/article/population-genomics-software#ScanAFLP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3474 ; @@ -423275,7 +447523,7 @@ Upload up to 10 images for detection.""" ; sc:url "https://bioeng.ru/scanev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -423296,8 +447544,26 @@ SCANG is an R package for performing a flexible and computationally efficient sc sc:name "SCANG" ; sc:url "https://github.com/zilinli1988/SCANG" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_3301, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9343779", + "pubmed:35928161" ; + sc:description "Standalone software application to create bacterial growth curves based on the classification of acquired images of bacterial cultures in microplates." ; + sc:featureList edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ScanGrow" ; + sc:operatingSystem "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/lauraespina/ScanGrow" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160 ; @@ -423321,7 +447587,7 @@ SCANG is an R package for performing a flexible and computationally efficient sc "Sowdhamini R." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2229, edam:topic_3170, @@ -423336,18 +447602,16 @@ SCANG is an R package for performing a flexible and computationally efficient sc a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2291" ; - sc:name "UniProt ID" ; - sc:sameAs "http://edamontology.org/data_2291" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0736, @@ -423367,8 +447631,30 @@ SCANG is an R package for performing a flexible and computationally efficient sc "Windows" ; sc:url "http://bioinfo3d.cs.tau.ac.il/ScanNet/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2229, + edam:topic_3170, + edam:topic_3308, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8762856", + "pubmed:35038984" ; + sc:description "The scAnnotatR package automatically classifies cells in scRNA-seq datasets. It is simple to use with a clear infrastructure to easily add additional cell type classification models. scAnnotatR support both Seurat and SingleCellExperiment objects as input." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "scAnnotatR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/grisslab/scAnnotatR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3382, edam:topic_3474 ; @@ -423383,7 +447669,7 @@ SCANG is an R package for performing a flexible and computationally efficient sc sc:url "https://github.com/sunwj/scanpath" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -423406,7 +447692,7 @@ SCANG is an R package for performing a flexible and computationally efficient sc biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -423424,7 +447710,7 @@ SCANG is an R package for performing a flexible and computationally efficient sc biotools:primaryContact "Barton Group Secretary" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -423441,7 +447727,7 @@ SCANG is an R package for performing a flexible and computationally efficient sc biotools:primaryContact "F. Alexander Wolf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0160, @@ -423468,7 +447754,7 @@ SCANG is an R package for performing a flexible and computationally efficient sc sc:url "http://scansite.mit.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -423483,7 +447769,7 @@ SCANG is an R package for performing a flexible and computationally efficient sc sc:url "http://www.jurgott.org/linkage/scanstat.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0749, @@ -423502,7 +447788,7 @@ SCANG is an R package for performing a flexible and computationally efficient sc biotools:primaryContact "David Labonte" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, edam:topic_3512 ; @@ -423517,8 +447803,32 @@ SCANG is an R package for performing a flexible and computationally efficient sc sc:name "scAPA" ; sc:url "https://github.com/ElkonLab/scAPA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_2229, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8728290", + "pubmed:34643729" ; + sc:description "An atlas of alternative polyadenylation across cell types in human and mouse." ; + sc:featureList edam:operation_0337, + edam:operation_0463, + edam:operation_3463, + edam:operation_3901 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scAPAatlas" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.bioailab.com:3838/scAPAatlas" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -423541,7 +447851,7 @@ SCANG is an R package for performing a flexible and computationally efficient sc sc:url "http://www.bmibig.cn/scAPAdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3170, edam:topic_3308, @@ -423563,7 +447873,7 @@ Fasta and chromosome length files for human (hg19) or (and) mouse (mm10).""" ; sc:url "https://github.com/BMILAB/scAPAtrap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -423583,7 +447893,7 @@ Fasta and chromosome length files for human (hg19) or (and) mouse (mm10).""" ; biotools:primaryContact "Jiang Qian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0196, edam:topic_3174, @@ -423601,7 +447911,7 @@ SCAPP assembles plasmids from metagenomic assembly graphs.""" ; sc:url "https://github.com/Shamir-Lab/SCAPP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, @@ -423625,7 +447935,7 @@ SCAPP assembles plasmids from metagenomic assembly graphs.""" ; sc:url "https://github.com/YangLab/SCAPTURE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0121, edam:topic_3173, @@ -423640,7 +447950,7 @@ SCAPP assembles plasmids from metagenomic assembly graphs.""" ; sc:url "https://github.com/theislab/scarches" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:19129211" ; @@ -423655,7 +447965,7 @@ SCAPP assembles plasmids from metagenomic assembly graphs.""" ; biotools:primaryContact "Dlugosch lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_0102, @@ -423674,7 +447984,7 @@ SCAPP assembles plasmids from metagenomic assembly graphs.""" ; "Göran Karlsson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, edam:topic_2229, @@ -423691,7 +448001,7 @@ SCARLET (Single-cell Algorithm for Reconstructing Loss-supported Evolution of Tu sc:url "http://github.com/raphael-group/scarlet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2885, @@ -423710,8 +448020,31 @@ SCARLET (Single-cell Algorithm for Reconstructing Loss-supported Evolution of Tu sc:url "http://compbio.cs.toronto.edu/hapsembler/scarpa.html" ; biotools:primaryContact "Nilgun Donmez" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_3170, + edam:topic_3360, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8826380", + "pubmed:34864849" ; + sc:description "Isoform-level Quantification for Single-Cell RNA Sequencing." ; + sc:featureList edam:operation_0314, + edam:operation_3198, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Scasa" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/eudoraleer/scasa" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170, @@ -423727,7 +448060,7 @@ The scASK is a novel and robust ensemble framework that is especially suited for sc:url "https://github.com/liubo2358/scASKcmd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170, @@ -423747,7 +448080,7 @@ The scASK is a novel and robust ensemble framework that is especially suited for biotools:primaryContact "Davis McCarthy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, edam:topic_3320, @@ -423767,8 +448100,25 @@ A statistical tool to detect differential alternative splicing events using sing sc:name "SCATS" ; sc:url "https://github.com/huyustats/SCATS" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229 ; + sc:citation ; + sc:description "The goal of scatterHatch is to create scatter plots that visually distinguish groups of data using color and texture in sparse or dense datasets." ; + sc:featureList edam:operation_2939, + edam:operation_2940, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "scatterHatch" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/FertigLab/scatterHatch" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:description "R library for fast plotting of scatterplots with millions of points" ; sc:featureList edam:operation_2940 ; @@ -423778,7 +448128,7 @@ A statistical tool to detect differential alternative splicing events using sing sc:url "https://github.com/exaexa/scattermore" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0154, edam:topic_0654, @@ -423797,8 +448147,31 @@ This repository contains all code used for constructing Sequence Compression Ben sc:name "SCB" ; sc:url "http://kirr.dyndns.org/sequence-compression-benchmark/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3169, + edam:topic_3173, + edam:topic_3474, + edam:topic_3940 ; + sc:citation , + "pubmed:35941239" ; + sc:description "Sequence-based modeling of single-cell ATAC-seq using convolutional neural networks." ; + sc:featureList edam:operation_0314, + edam:operation_3436, + edam:operation_3891, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "scBasset" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/calico/scBasset" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0099, edam:topic_0203, @@ -423821,7 +448194,7 @@ scBatch utilizes previous correction on sample distance matrices, such as QuantN sc:url "http://github.com/tengfei-emory/scBatch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, @@ -423844,7 +448217,7 @@ scBatch utilizes previous correction on sample distance matrices, such as QuantN sc:url "https://github.com/jhu99/scbean" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170, @@ -423861,14 +448234,14 @@ SCC (scRNA-seq complementation). SCC can recover the gene expression of scRNA-se a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3673 ; @@ -423884,8 +448257,31 @@ SCC (scRNA-seq complementation). SCC can recover the gene expression of scRNA-se sc:url "https://github.com/biosinodx/SCcaller/" ; biotools:primaryContact "Xiao Dong" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0605, + edam:topic_2229, + edam:topic_3170, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9206025", + "pubmed:35715568" ; + sc:description "Single-cell clustering using autoencoder and network fusion." ; + sc:featureList edam:operation_0314, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "LGPL-2.0" ; + sc:name "scCAN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://cran.r-project.org/package=scCAN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3055, edam:topic_3170, @@ -423909,7 +448305,7 @@ Recent advance in single-cell RNA sequencing (scRNA-seq) has enabled large-scale sc:url "https://github.com/ZJUFanLab/scCATCH" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, edam:topic_3170 ; @@ -423922,7 +448318,7 @@ The scClassifR package automatically classifies cells in scRNA-seq datasets. It sc:url "https://github.com/grisslab/scClassifR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, edam:topic_3170, @@ -423943,7 +448339,7 @@ The goal of scclusteval(Single Cell Cluster Evaluation) is to evaluate the singl sc:url "https://github.com/crazyhottommy/scclusteval" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3301, @@ -423963,7 +448359,7 @@ The goal of scclusteval(Single Cell Cluster Evaluation) is to evaluate the singl "Technical support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0157, edam:topic_2229, @@ -423983,8 +448379,28 @@ This repository contains the code that was used to produce the results and plots sc:name "scCODA" ; sc:url "https://github.com/theislab/scCODA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_2229, + edam:topic_3170 ; + sc:citation ; + sc:description "An R package for personalized differentially expressed gene detection on single-cell RNA-sequencing data." ; + sc:featureList edam:operation_2454, + edam:operation_3223, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "scCODE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/XZouProjects/scCODE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -424007,7 +448423,7 @@ This repository contains the code that was used to produce the results and plots sc:url "https://github.com/JonETJakobsson/scConnect" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2229, edam:topic_3170, @@ -424023,8 +448439,33 @@ An approach combining semi-supervised and unsupervised clustering for cell type sc:name "scConsensus" ; sc:url "https://github.com/prabhakarlab/scConsensus" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0622, + edam:topic_2229, + edam:topic_3170, + edam:topic_3295 ; + sc:citation , + "pmcid:PMC8740455", + "pubmed:34996359" ; + sc:description "An R package for A graph-based k-partitioning approach for single-cell analysis" ; + sc:featureList edam:operation_0314, + edam:operation_2436, + edam:operation_3432, + edam:operation_3463, + edam:operation_3766 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scCorr" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/CBIIT-CGBB/scCorr" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2533, edam:topic_3053, @@ -424039,7 +448480,7 @@ An approach combining semi-supervised and unsupervised clustering for cell type sc:url "https://github.com/wavefancy/scct" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0625, @@ -424059,8 +448500,33 @@ An approach combining semi-supervised and unsupervised clustering for cell type sc:softwareHelp ; sc:url "https://github.com/ZCCQQWork/scDA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0625, + edam:topic_2229, + edam:topic_3170, + edam:topic_3295 ; + sc:citation , + "pmcid:PMC8734213", + "pubmed:34991671" ; + sc:description "scDALI (single-cell differential allelic imbalance) is a statistical model and analysis framework that leverages allele-specific analyses of single-cell data to decode cell-state-specific genetic regulation." ; + sc:featureList edam:operation_0487, + edam:operation_3196, + edam:operation_3799, + edam:operation_3802, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "scDALI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://pmbio.github.io/scdali/index" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2229, @@ -424081,7 +448547,7 @@ An approach combining semi-supervised and unsupervised clustering for cell type sc:url "https://github.com/PeterZZQ/scDART" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, edam:topic_2885, @@ -424101,7 +448567,7 @@ Stomach cancer (SC) is a type of cancer, which is derived from the stomach mucou sc:url "http://www.stomachcancerdb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation ; @@ -424122,7 +448588,7 @@ Stomach cancer (SC) is a type of cancer, which is derived from the stomach mucou biotools:primaryContact "Keegan Korthauer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -424142,7 +448608,7 @@ Stomach cancer (SC) is a type of cancer, which is derived from the stomach mucou biotools:primaryContact "Jean Fan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0602, @@ -424164,8 +448630,30 @@ Stomach cancer (SC) is a type of cancer, which is derived from the stomach mucou sc:url "http://discovery.hsci.harvard.edu/" ; biotools:primaryContact "SCDE Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0654, + edam:topic_3170, + edam:topic_3295, + edam:topic_3308 ; + sc:citation , + "pubmed:35453146" ; + sc:description "An R package to deconvolve bulk DNA methylation data with scRNA-seq data and paired bulk RNA-DNA methylation data." ; + sc:featureList edam:operation_0314, + edam:operation_3435, + edam:operation_3629 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scDeconv" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/yuabrahamliu/scDeconv" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3308, @@ -424184,7 +448672,7 @@ Recent advance in single-cell RNA sequencing (scRNA-seq) has enabled large-scale sc:url "https://github.com/ZJUFanLab/scDeepSort" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -424206,7 +448694,7 @@ Recent advance in single-cell RNA sequencing (scRNA-seq) has enabled large-scale sc:url "https://github.com/IVDgenomicslab/scDetect/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -424230,8 +448718,54 @@ The scDHA package is a complete pipeline for single-cell RNA sequencing (scRNA-s sc:name "scDHA" ; sc:url "http://scdha.tinnguyen-lab.com/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3170, + edam:topic_3308, + edam:topic_3372, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8734364", + "pubmed:34991457" ; + sc:description "scDIOR software was developed for single-cell data transformation between platforms of R and Python based on Hierarchical Data Format Version 5" ; + sc:featureList edam:operation_3435, + edam:operation_3629, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "scDIOR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/JiekaiLab/scDIOR" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0203, + edam:topic_3170, + edam:topic_3474, + edam:topic_3794 ; + sc:citation , + "pmcid:PMC9281153", + "pubmed:35831808" ; + sc:description "scDLC is a deep learning classifier (scDLC) for large sample scRNA-seq data, based on the long short-term memory recurrent neural networks (LSTMs). This classifier does not require a prior knowledge on the scRNA-seq data distribution and it is a scale invariant method which does not require a normalization procedure for scRNA-seq data." ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scDLC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/scDLC-code/scDLC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0157, edam:topic_2229, edam:topic_3170, @@ -424247,7 +448781,7 @@ The scDHA package is a complete pipeline for single-cell RNA sequencing (scRNA-s sc:url "https://github.com/SydneyBioX/scdney" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170, @@ -424265,10 +448799,10 @@ Drop-out correction for single cell RNA_seq data.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3917" ; - sc:name "Count matrix" ; - sc:sameAs "http://edamontology.org/data_3917" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3917" ; + sc:encodingFormat "http://edamontology.org/format_3590" ; + sc:name "Count matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2229, @@ -424306,7 +448840,7 @@ Thanks to the drake package, all intermediate results can be reused, and the pip sc:url "https://bioinfocz.github.io/scdrake" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, edam:topic_3170 ; @@ -424319,7 +448853,7 @@ Thanks to the drake package, all intermediate results can be reused, and the pip sc:url "https://github.com/kostkalab/scds_manuscript" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, edam:topic_2885, @@ -424337,7 +448871,7 @@ SCEBE is a R package that conducts high-dimension Genome-Wide Association Study sc:url "https://github.com/Myuan2019/SCEBE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -424353,7 +448887,7 @@ SCEBE is a R package that conducts high-dimension Genome-Wide Association Study sc:url "http://biomine.ece.ualberta.ca/Structural_Class/SCEC.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170, edam:topic_3308, @@ -424376,8 +448910,33 @@ Scedar (Single-cell exploratory data analysis for RNA-Seq) is a reliable and eas sc:name "scedar" ; sc:url "https://pypi.org/project/scedar" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_2830, + edam:topic_3170, + edam:topic_3308, + edam:topic_3315 ; + sc:citation , + "pmcid:PMC9108753", + "pubmed:35615016" ; + sc:description "Accurate single-cell RNA-seq data analysis via ensemble consensus clustering based on multiple feature selections." ; + sc:featureList edam:operation_3223, + edam:operation_3432, + edam:operation_3454, + edam:operation_3891, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scEFSC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Conan-Bian/scEFSC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, edam:topic_0602, @@ -424399,7 +448958,7 @@ Scellnetor is a novel clustering tool for scRNA-seq data that takes Scanpy gener sc:url "https://exbio.wzw.tum.de/scellnetor/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2229, edam:topic_3170, @@ -424418,14 +448977,14 @@ Scellnetor is a novel clustering tool for scRNA-seq data that takes Scanpy gener a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, @@ -424453,16 +449012,40 @@ Scellnetor is a novel clustering tool for scRNA-seq data that takes Scanpy gener biotools:primaryContact "Giorgos Papoutsoglou", "Ioannis Tsamardinos" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_2229, + edam:topic_2885, + edam:topic_3173, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8728125", + "pubmed:34761274" ; + sc:description "The database provides single-cell enhancer annotation in three species, including human (hg19), mouse (mm9), and fly (dm3)." ; + sc:featureList edam:operation_0440, + edam:operation_2421, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scEnhancer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://enhanceratlas.net/scenhancer/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -424486,7 +449069,7 @@ Scellnetor is a novel clustering tool for scRNA-seq data that takes Scanpy gener biotools:primaryContact "Stein Aerts" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -424503,7 +449086,7 @@ Scellnetor is a novel clustering tool for scRNA-seq data that takes Scanpy gener biotools:primaryContact "Qing Nie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_2885, @@ -424522,7 +449105,7 @@ SCeQTL is an R package that uses zero-inflated negative binomial regression to d sc:url "https://github.com/XuegongLab/SCeQTL/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -424542,7 +449125,7 @@ SCeQTL is an R package that uses zero-inflated negative binomial regression to d biotools:primaryContact "Gary D. Stormo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3374 ; @@ -424558,7 +449141,7 @@ SCeQTL is an R package that uses zero-inflated negative binomial regression to d biotools:primaryContact "Lucio Cetto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0634, edam:topic_2640 ; @@ -424575,7 +449158,7 @@ Subtyping via Consensus Factor Analysis (SCFA) can efficiently remove noisy sign sc:url "http://scfa.tinnguyen-lab.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170 ; @@ -424593,8 +449176,25 @@ Subtyping via Consensus Factor Analysis (SCFA) can efficiently remove noisy sign sc:url "http://bioconductor.org/packages/release/bioc/html/scFeatureFilter.html" ; biotools:primaryContact "Guillaume Devailly" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0634, + edam:topic_2229 ; + sc:citation , + "pubmed:36040148" ; + sc:description "scFeatures is a tool that generates multi-view representations of single-cell and spatial data through the construction of a total of 17 feature types belonging to the following six categories." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scFeatures" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/SydneyBioX/scFeatures" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -424608,7 +449208,7 @@ Subtyping via Consensus Factor Analysis (SCFA) can efficiently remove noisy sign sc:url "http://rna-informatics.uga.edu/malmberg/rlmlab/programs/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -424629,7 +449229,7 @@ Subtyping via Consensus Factor Analysis (SCFA) can efficiently remove noisy sign biotools:primaryContact "Vladimir Kiselev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0659, @@ -424654,7 +449254,7 @@ Subtyping via Consensus Factor Analysis (SCFA) can efficiently remove noisy sign sc:url "https://combiz.github.io/scFlow/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2533, @@ -424670,8 +449270,47 @@ Subtyping via Consensus Factor Analysis (SCFA) can efficiently remove noisy sign sc:softwareHelp ; sc:url "http://shahlab.ca/projects/scg/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0081, + edam:topic_2229, + edam:topic_3053 ; + sc:citation ; + sc:description "single-cell gene associating domain scores for exploratory analysis of scHi-C data." ; + sc:featureList edam:operation_3432, + edam:operation_3799, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scGAD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://sshen82.github.io/BandNorm/articles/scGAD-tutorial.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2229, + edam:topic_3170, + edam:topic_3934 ; + sc:citation , + "pubmed:35258562" ; + sc:description "Marker-based purification of cell types from heterogeneous single-cell RNA-seq datasets." ; + sc:featureList edam:operation_0314 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scGate" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/carmonalab/scGate" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3068, edam:topic_3308, @@ -424689,8 +449328,55 @@ This is a TensorFlow implementation of scGCN for leveraging differnt single cell sc:name "scGCN" ; sc:url "https://github.com/QSong-github/scGCN" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0625, + edam:topic_2229, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC9405199", + "pubmed:36004879" ; + sc:description "A Single-Cell Gene Coexpression Network Analysis Framework for Clustering Cell Types and Revealing Biological Mechanisms." ; + sc:featureList edam:operation_3196, + edam:operation_3432, + edam:operation_3463, + edam:operation_3557, + edam:operation_3766 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scGENA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/zpliulab/scGENA" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_2229, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8864248", + "pubmed:34954425" ; + sc:description "Predicting Cell Fate Transition During Early Embryonic Development by Single-cell Graph Entropy." ; + sc:featureList edam:operation_0314, + edam:operation_2436, + edam:operation_3463 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scGET" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/zhongjiayuna/scGET_Project" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_2269, @@ -424706,8 +449392,29 @@ The rapid development of single-cell RNA sequencing (scRNA-Seq) technology provi sc:name "scGMAI" ; sc:url "https://github.com/QUST-AIBBDRC/scGMAI/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_2229, + edam:topic_3474 ; + sc:citation , + "pubmed:35394015" ; + sc:description "A graph neural network-based approach to automatically identify cell types." ; + sc:featureList edam:operation_3436, + edam:operation_3501, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "scGraph" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://figshare.com/articles/software/scGraph/17157743" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -424732,8 +449439,26 @@ The rapid development of single-cell RNA sequencing (scRNA-Seq) technology provi sc:softwareHelp ; sc:url "https://github.com/daifengwanglab/scGRNom" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2229, + edam:topic_2269 ; + sc:citation ; + sc:description "Single-cell generalized trendmodel (scGTM): a flexible and interpretable model for gene expression along cell pseudotime. This is a Python package for modeling the statistical relationship between pseudotime and gene expression data." ; + sc:featureList edam:operation_2495, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "scGTM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ElvisCuiHan/scGTM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0634, @@ -424747,7 +449472,7 @@ The rapid development of single-cell RNA sequencing (scRNA-Seq) technology provi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0625, edam:topic_0654, @@ -424765,8 +449490,27 @@ Haplotyping reveals chromosome blocks inherited from parents to in vitro fertili sc:name "scHaplotyper" ; sc:url "https://github.com/yzqheart/scHaplotyper" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3360, + edam:topic_3400, + edam:topic_3452 ; + sc:citation , + "pmcid:PMC9174863", + "pubmed:35711832" ; + sc:description "A new classifier constructed with platelet features for malignant and benign pulmonary nodules based on prospective real-world data." ; + sc:featureList edam:operation_2428 ; + sc:isAccessibleForFree true ; + sc:name "SCHC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://i.uestc.edu.cn/SCHC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3263, edam:topic_3382 ; @@ -424784,7 +449528,7 @@ schema is a cross-platform mobile application for deploying mHealth monitoring a sc:url "https://github.com/schema-app/schema" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170 ; sc:citation , @@ -424798,7 +449542,7 @@ The goal of schex is to provide easy plotting of hexagon cell representations of sc:url "http://bioconductor.org/packages/release/bioc/html/schex.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269, @@ -424817,12 +449561,31 @@ The goal of schex is to provide easy plotting of hexagon cell representations of sc:url "http://dna.cs.miami.edu/scHiCNorm/" ; biotools:primaryContact "Zheng Wang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3168, + edam:topic_3306 ; + sc:citation ; + sc:description "A Self-Representation Smoothing Method with Gaussian Mixture Model for Imputing single cell Hi-C Data." ; + sc:featureList edam:operation_3432, + edam:operation_3436, + edam:operation_3557 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scHiCSRS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sl-lin/scHiCSRS.git" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0919" ; - sc:name "Chromosome report" ; - sc:sameAs "http://edamontology.org/data_0919" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0919" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Chromosome report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2229, @@ -424844,7 +449607,7 @@ The goal of schex is to provide easy plotting of hexagon cell representations of sc:url "http://hww.sdu.edu.cn:8002/scHiCStackL/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3168, @@ -424862,7 +449625,7 @@ The goal of schex is to provide easy plotting of hexagon cell representations of biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2269, @@ -424880,14 +449643,14 @@ The goal of schex is to provide easy plotting of hexagon cell representations of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0780 ; @@ -424906,7 +449669,7 @@ The goal of schex is to provide easy plotting of hexagon cell representations of biotools:primaryContact "Castrense Savojardo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation ; @@ -424919,7 +449682,7 @@ The goal of schex is to provide easy plotting of hexagon cell representations of sc:url "https://grenaud.github.io/schmutzi/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, edam:topic_3170, @@ -424937,7 +449700,7 @@ The goal of schex is to provide easy plotting of hexagon cell representations of sc:url "https://c3bi-pasteur-fr.github.io/UTechSCB-SCHNAPPs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3308, @@ -424959,7 +449722,7 @@ See the notebooks in the Python Parser folder for explanation on the HSNE datast sc:url "https://github.com/paulderaadt/HSNE-clustering" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2229, edam:topic_3170, @@ -424978,7 +449741,7 @@ Single cell Higher Order Testing (scHOT) is an R package that facilitates testin sc:url "https://github.com/MarioniLab/scHOT2019" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -424997,7 +449760,7 @@ Single cell Higher Order Testing (scHOT) is an R package that facilitates testin biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0194, edam:topic_3168, @@ -425011,8 +449774,28 @@ Single cell Higher Order Testing (scHOT) is an R package that facilitates testin sc:softwareHelp ; sc:url "http://phylogenomics.berkeley.edu/software" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3170, + edam:topic_3474 ; + sc:citation , + "pubmed:34913057" ; + sc:description "An integrative autoencoder-based ensemble classification framework for single-cell RNA-seq data." ; + sc:featureList edam:operation_3799, + edam:operation_3891, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scIAE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/JGuan-lab/scIAE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , "pubmed:32603812" ; @@ -425023,7 +449806,7 @@ The Schultz Cigarette Burn Toolbox is a series of Python, MATLAB, and Arduino sc sc:url "http://www.band-lab.com/scibut" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, edam:topic_3170, @@ -425044,7 +449827,7 @@ Chromosome copy number variations (CNVs) are a near-universal feature of cancer sc:url "https://www.github.com/TiedemannLab/sciCNV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_3170, @@ -425062,7 +449845,7 @@ The generation of genome-wide maps of histone modifications using chromatin immu sc:url "http://github.com/ptrebert/sciddo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -425082,13 +449865,13 @@ Cell atlas projects and single-cell CRISPR screens hit the limits of current tec sc:url "http://scifi-rna-seq.computational-epigenetics.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "SCIGA is a software for 10X single cell immunoglobulin repertoires analysis. It uses raw reads or output of Cellranger as input, and performs reads quality control, immunoglobulin sequence assembly, sequence annotation, heavy- and light- chain pairing, computing statistics and visualizing." ; sc:name "SCIGA" ; sc:url "https://github.com/sciensic/SCIGA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, edam:topic_3308, @@ -425112,7 +449895,7 @@ scIGANs is a computational tool for single-cell RNA-seq imputation and denoise u sc:url "https://github.com/xuyungang/scIGANs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation ; @@ -425125,8 +449908,30 @@ scIGANs is a computational tool for single-cell RNA-seq imputation and denoise u sc:url "https://github.com/scikit-activeml/scikit-activeml" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3068, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8534554", + "pubmed:34682092" ; + sc:description "A Python Package for Intrinsic Dimension Estimation." ; + sc:featureList edam:operation_3435, + edam:operation_3891, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "scikit-dimension" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/j-bac/scikit-dimension" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3372, edam:topic_3382 ; @@ -425143,8 +449948,27 @@ scIGANs is a computational tool for single-cell RNA-seq imputation and denoise u sc:softwareHelp ; sc:url "http://scikit-image.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0092, + edam:topic_3474 ; + sc:citation ; + sc:description "scikit-learn is a Python module for machine learning built on top of SciPy and is distributed under the 3-Clause BSD license." ; + sc:featureList edam:operation_2990, + edam:operation_3432, + edam:operation_3659, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "scikit-learn" ; + sc:softwareHelp , + ; + sc:softwareVersion "1.1.1" ; + sc:url "https://scikit-learn.org/stable/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3379, edam:topic_3384, @@ -425161,7 +449985,7 @@ This paper introduces the SciKit-Surgery libraries, designed to enable rapid dev sc:url "https://scikit-surgerytutorial01.readthedocs.io/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0605, @@ -425183,7 +450007,7 @@ This paper introduces the SciKit-Surgery libraries, designed to enable rapid dev biotools:primaryContact "Samuel Lampa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2229, edam:topic_3168, @@ -425202,8 +450026,30 @@ CyTOF data: The sample was profiled with CyTOF using a 41-markers panel designed sc:name "SCIM" ; sc:url "https://github.com/ratschlab/scim" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_3170, + edam:topic_3308, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9122610", + "pubmed:35524568" ; + sc:description "A platform for benchmarking comparison and visualization analysis of scRNA-seq data imputation methods." ; + sc:featureList edam:operation_0337, + edam:operation_3223, + edam:operation_3557, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:name "scIMC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://server.wei-group.net/scIMC/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -425218,7 +450064,7 @@ CyTOF data: The sample was profiled with CyTOF using a 41-markers panel designed sc:url "http://www.cbcb.umd.edu/software/scimm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3391 ; sc:description "SCIMO a prototype of a 2-D Gel Electrophoresis image analysis system. Being a prototype, some errors may be found that we would appreciate to be informed of. Currently, this software detects the protein spots in the gel and will present the area and volume of each spot." ; @@ -425232,7 +450078,7 @@ CyTOF data: The sample was profiled with CyTOF using a 41-markers panel designed sc:url "http://w3.ualg.pt/~aanjos/prototypes.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_2229, edam:topic_3170, @@ -425250,7 +450096,7 @@ scintegral can be installed using pip.""" ; sc:url "https://github.com/hanbin973/scIntegral" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0602, edam:topic_3474 ; @@ -425267,14 +450113,12 @@ Scalable inference, optimization and parameter exploration (sciope) is a Python a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3806" ; - sc:name "3D EM Mask" ; - sc:sameAs "http://edamontology.org/data_3806" ] ; + sc:additionalType "http://edamontology.org/data_3806" ; + sc:name "3D EM Mask" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0889" ; - sc:name "Structural profile" ; - sc:sameAs "http://edamontology.org/data_0889" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0889" ; + sc:name "Structural profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Workbench" ; @@ -425290,13 +450134,19 @@ Scalable inference, optimization and parameter exploration (sciope) is a Python sc:name "Scipion" ; sc:operatingSystem "Linux" ; sc:provider "National Centre for Biotechnology CNB-CSIC" ; - sc:softwareHelp ; - sc:softwareVersion "1" ; - sc:url "http://scipion.cnb.csic.es/" ; + sc:softwareHelp , + , + , + ; + sc:softwareVersion "1", + "1.2", + "2.0", + "3.0" ; + sc:url "http://scipion.i2pc.es/" ; biotools:primaryContact "Scipion" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3315, @@ -425319,18 +450169,15 @@ Scalable inference, optimization and parameter exploration (sciope) is a Python a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3806" ; - sc:name "3D EM Mask" ; - sc:sameAs "http://edamontology.org/data_3806" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_3806" ; + sc:name "3D EM Mask" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0889" ; - sc:name "Structural profile" ; - sc:sameAs "http://edamontology.org/data_0889" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0889" ; + sc:name "Structural profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081 ; sc:citation ; @@ -425349,7 +450196,7 @@ Scalable inference, optimization and parameter exploration (sciope) is a Python biotools:primaryContact "Joan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Workflow" ; sc:applicationSubCategory edam:topic_0611 ; @@ -425359,7 +450206,7 @@ Scalable inference, optimization and parameter exploration (sciope) is a Python sc:url "http://workflows.scipion.i2pc.es/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -425376,7 +450223,7 @@ Scalable inference, optimization and parameter exploration (sciope) is a Python sc:url "http://www.kofler.or.at/bioinformatics/SciRoKo/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2830, edam:topic_3170, @@ -425397,7 +450244,7 @@ Tutorials — scirpy documentation.""" ; sc:url "https://github.com/icbi-lab/scirpy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602 ; @@ -425414,8 +450261,31 @@ Tutorials — scirpy documentation.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/ScISI.html" ; biotools:primaryContact "Tony Chiang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_2229, + edam:topic_3304, + edam:topic_3320, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9237735", + "pubmed:35604081" ; + sc:description "Visualizing Differential Isoform Expression in Single-Cell Long-Read Data." ; + sc:featureList edam:operation_0337, + edam:operation_3432, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ScisorWiz" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/ans4013/ScisorWiz" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -425432,7 +450302,7 @@ Tutorials — scirpy documentation.""" ; biotools:primaryContact "David Perrais" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -425456,7 +450326,7 @@ SCISSOR (shape changes in selecting sample outliers in RNA-seq) aims for unsuper sc:url "https://github.com/hyochoi/SCISSOR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0625, @@ -425480,7 +450350,7 @@ SCISSOR (shape changes in selecting sample outliers in RNA-seq) aims for unsuper sc:url "https://thecailab.com/scissor/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154 ; @@ -425495,7 +450365,7 @@ SCISSOR (shape changes in selecting sample outliers in RNA-seq) aims for unsuper sc:url "http://bioserv.rpbs.jussieu.fr/cgi-bin/SCit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3293, @@ -425512,7 +450382,7 @@ SCISSOR (shape changes in selecting sample outliers in RNA-seq) aims for unsuper biotools:primaryContact "Niko Beerenwinkel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -425534,7 +450404,7 @@ SCISSOR (shape changes in selecting sample outliers in RNA-seq) aims for unsuper sc:url "https://yelabtools.herokuapp.com/scSeqCostCalc/scito.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3307 ; sc:description "Library aimed at application developers writing scientific software to support this tracking of scientific computation. The library provides elementary functionality to support logging. The primary capabilities concern generating checksums on input and output files and facilitating logging of the computational environment. If the optional dependency mpiutils is installed, then logging can be done safely in a parallel computation environment." ; @@ -425549,7 +450419,7 @@ SCISSOR (shape changes in selecting sample outliers in RNA-seq) aims for unsuper biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -425569,7 +450439,7 @@ SCISSOR (shape changes in selecting sample outliers in RNA-seq) aims for unsuper sc:url "https://github.com/colabobio/sciviewer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0625, @@ -425591,7 +450461,7 @@ High variability and dropout rate inherent in scRNA-seq confounds the reliable q sc:url "https://github.com/BMILAB/scLAPA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0208, edam:topic_2640, @@ -425608,7 +450478,7 @@ CellMiner Cross Database (CellMinerCDB) is the first web application to allow tr sc:url "https://discover.nci.nih.gov/SclcCellMinerCDB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -425629,8 +450499,29 @@ CellMiner Cross Database (CellMinerCDB) is the first web application to allow tr sc:url "http://scld.mcb.uconn.edu" ; biotools:primaryContact "Craig E. Nelson" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2229, + edam:topic_3170, + edam:topic_3360 ; + sc:citation , + "pubmed:35914950" ; + sc:description "Learning discriminative and structural samples for rare cell types with deep generative model." ; + sc:featureList edam:operation_3432, + edam:operation_3435, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scLDS2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/xkmaxidian/scLDS2" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -425651,7 +450542,7 @@ CellMiner Cross Database (CellMinerCDB) is the first web application to allow tr sc:url "https://github.com/BMILAB/scLINE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0634, @@ -425668,7 +450559,7 @@ scLink: Inferring gene networks from single-cell gene expression data.""" ; sc:url "https://github.com/Vivianstats/scLink" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, edam:topic_2229, @@ -425687,7 +450578,7 @@ scLM works with multiple single cell RNA-seq dataset as inputs. It also works wi sc:url "https://github.com/QSong-WF/scLM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0602, edam:topic_3474 ; @@ -425703,7 +450594,7 @@ SCLpred-EMS: Prediction of protein subcellular localization.""" ; sc:url "http://distilldeep.ucd.ie/SCLpred2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0820, @@ -425720,8 +450611,28 @@ SCLpred-EMS: Prediction of protein subcellular localization.""" ; sc:url "http://distilldeep.ucd.ie/SCLpred-MEM/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC9191214", + "pubmed:35482476" ; + sc:description "A method to test dysregulated ligand-receptor interactions from single cell transcriptomics." ; + sc:featureList edam:operation_3223, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scLR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/cyhsuTN/scLR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -425742,7 +450653,7 @@ SCLpred-EMS: Prediction of protein subcellular localization.""" ; sc:url "https://github.com/jianghuaijie/scLRTC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, @@ -425757,16 +450668,39 @@ SCLpred-EMS: Prediction of protein subcellular localization.""" ; sc:softwareHelp ; sc:url "https://github.com/PMBio/scLVM" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0622, + edam:topic_2229, + edam:topic_3170, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9071478", + "pubmed:34986249" ; + sc:description "A robust and accurate cell type classifier for single cell RNA-seq data" ; + sc:featureList edam:operation_0224, + edam:operation_0314, + edam:operation_3703 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "scMAGIC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/TianLab-Bioinfo/scMAGIC" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3166" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0607, edam:topic_2229, @@ -425789,7 +450723,7 @@ SCLpred-EMS: Prediction of protein subcellular localization.""" ; "Vladimir Kiselev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3307 ; sc:description "Alternative polyadenylation (APA) causes shortening or lengthening of the 3ʹ-untranslated region (3ʹ-UTR), widespread in complex tissues. To detect APA and identify cell-type-specific APA in a multi-cluster setting, we developed a model-based method, scMAPA. The first part of scMAPA is coded as shell scripts, which can 1) divide the aligned read data by the cell cluster[1] and remove PCR duplicates by UMI-tools; 2) Pad the 3'biased reads and convert BAM to Bedgraph file; 3) estimate the abundance of 3ʹ-UTR long and short isoform of genes in each cluster-bulk data using linear regression and quadratic programming implemented in DaPars2. The second part of scMAPA is coded as an R package, which can 4) fit a logistic regression model for each gene and estimate the significance of APA; 5) Identify cluster-specific 3'UTR shortening and lengthening; 6) Do visualization to show the APA dynamics." ; @@ -425800,7 +450734,7 @@ SCLpred-EMS: Prediction of protein subcellular localization.""" ; sc:url "https://github.com/ybai3/scMAPA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0625, @@ -425820,7 +450754,7 @@ single-cell mapper (scMappR) data repository.""" ; sc:url "https://cran.r-project.org/web/packages/scMappR/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0621, @@ -425840,7 +450774,7 @@ single-cell mapper (scMappR) data repository.""" ; biotools:primaryContact "Yoshikazu Ohya" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, edam:topic_3170, @@ -425858,7 +450792,7 @@ Here we introduce scMET, a Bayesian framework for the analysis of single cell DN sc:url "https://github.com/andreaskapou/scMET" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3295 ; sc:description "Functions to analyze methylation data can be found here. Some functions are relevant for single cell methylation data but most other functions can be used for any methylation data. Highlight of this workflow is the comprehensive quality control report." ; @@ -425876,7 +450810,7 @@ Here we introduce scMET, a Bayesian framework for the analysis of single cell DN biotools:primaryContact "Divy Kangeyan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0654, @@ -425900,7 +450834,7 @@ Here we introduce scMET, a Bayesian framework for the analysis of single cell DN sc:url "https://ngdc.cncb.ac.cn/methbank/scm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation ; @@ -425916,7 +450850,7 @@ Here we introduce scMET, a Bayesian framework for the analysis of single cell DN "Wen Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_2229, @@ -425934,7 +450868,7 @@ scMLnet is an R package developed to construct inter-/intracellular multilayer s sc:url "https://github.com/SunXQlab/scMLnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0122, @@ -425951,7 +450885,7 @@ scMLnet is an R package developed to construct inter-/intracellular multilayer s sc:url "http://iclab.life.nctu.edu.tw/iclab_webtools/SCMMTP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -425968,7 +450902,7 @@ It is an approach to identify cell clusters from data with co-measurements of sc sc:url "https://github.com/meltager/scmoc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3170, edam:topic_3308 ; @@ -425983,7 +450917,7 @@ A method to infer Gene Regulatory Networks (GRNs) and reconstruct developmental sc:url "https://github.com/larisa-msoto/scMomentum.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170, @@ -425999,7 +450933,7 @@ scMontage is a system for searching gene expression databases for similar cells sc:url "https://scmontage.stemcellinformatics.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0123, @@ -426013,8 +450947,119 @@ scMontage is a system for searching gene expression databases for similar cells sc:softwareHelp ; sc:url "http://iclab.life.nctu.edu.tw/SCMPSP/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_2229, + edam:topic_3170 ; + sc:citation , + "pubmed:34623390" ; + sc:description "scMRA is a robust deep learning method to annotate scRNA-seq data with multiple reference datasets. Single-cell RNA-seq (scRNA-seq) has been widely used to resolve cellular heterogeneity. After collecting scRNA-seq data, the natural next step is to integrate the accumulated data to achieve a common ontology of cell types and states. Thus, an effective and efficient cell-type identification method is urgently needed. Meanwhile, high quality reference data remain a necessity for precise annotation. However, such tailored reference data are always lacking in practice. To address this, we aggregated multiple datasets into a meta-dataset on which annotation is conducted." ; + sc:featureList edam:operation_0224, + edam:operation_3436 ; + sc:name "scMRA" ; + sc:url "https://github.com/ddb-qiwang/scMRA-torch" ; + biotools:primaryContact . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_2229, + edam:topic_3170, + edam:topic_3308, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC8789072", + "pubmed:34648021" ; + sc:description "single cell Multi-Resolution Marker-based Annotation Algorithm" ; + sc:featureList edam:operation_0314, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scMRMA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/JiaLiVUMC/scMRMA" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0154, + edam:topic_3306, + edam:topic_3474, + edam:topic_3930 ; + sc:citation , + "pmcid:PMC8779003", + "pubmed:35057016" ; + sc:description "A New Approach for Identifying and Characterizing of Tumor-Homing Peptides Using Estimated Propensity Scores of Amino Acids." ; + sc:featureList edam:operation_0252, + edam:operation_3631, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:name "SCMTHP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://pmlabstack.pythonanywhere.com/SCMTHP" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_0736, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8664844", + "pubmed:34893688" ; + sc:description "A novel sequence-based predictor for identifying and characterizing thermophilic proteins using estimated propensity scores of dipeptides." ; + sc:featureList edam:operation_0303, + edam:operation_0480, + edam:operation_1839 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SCMTPP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://pmlabstack.pythonanywhere.com/SCMTPP" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0203, + edam:topic_0602, + edam:topic_2229, + edam:topic_3474 ; + sc:citation , + "pubmed:34999761" ; + sc:description "Neighborhood contrastive clustering with ancillary mask estimation for scRNA-seq data." ; + sc:featureList edam:operation_0314, + edam:operation_3432, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scNAME" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/aster-ww/scNAME" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3063, edam:topic_3384 ; @@ -426025,7 +451070,7 @@ scMontage is a system for searching gene expression databases for similar cells sc:url "https://github.com/netflymachine/SCNET" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -426043,7 +451088,7 @@ scMontage is a system for searching gene expression databases for similar cells sc:url "https://github.com/ComputationalSystemsBiology/scNET" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -426065,16 +451110,37 @@ scMontage is a system for searching gene expression databases for similar cells "Windows" ; sc:url "https://www.cgl.ucsf.edu/cytoscape/scNetViz/index.shtml" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Plug-in" ; + sc:applicationSubCategory edam:topic_3172, + edam:topic_3174, + edam:topic_3697 ; + sc:citation ; + sc:description "Sparse Correlation Network Investigation for Compositional Data." ; + sc:featureList edam:operation_3463, + edam:operation_3766, + edam:operation_3891, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "SCNIC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/lozuponelab/SCNIC" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Gene expression profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Plug-in" ; sc:applicationSubCategory edam:topic_0080, @@ -426098,7 +451164,7 @@ scMontage is a system for searching gene expression databases for similar cells biotools:primaryContact "Rhonda Bacher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -426119,14 +451185,14 @@ scNym is a neural network model for predicting cell types from single cell profi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "P-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0621, @@ -426150,7 +451216,7 @@ scNym is a neural network model for predicting cell types from single cell profi biotools:primaryContact "Ola Brynildsrud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pmcid:PMC7237818", "pubmed:32431014" ; @@ -426162,7 +451228,7 @@ scNym is a neural network model for predicting cell types from single cell profi biotools:primaryContact "Stein Aerts" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, @@ -426179,7 +451245,7 @@ scNym is a neural network model for predicting cell types from single cell profi sc:url "https://github.com/NielsenBerkeleyLab/sconce" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -426193,7 +451259,7 @@ scNym is a neural network model for predicting cell types from single cell profi sc:url "http://genetics.bwh.harvard.edu/scone/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -426214,7 +451280,7 @@ scNym is a neural network model for predicting cell types from single cell profi biotools:primaryContact "Michael Cole" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -426229,7 +451295,7 @@ scNym is a neural network model for predicting cell types from single cell profi sc:url "http://www.bsse.ethz.ch/mlcb/research/bioinformatics-and-computational-biology/scones.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3474 ; @@ -426247,7 +451313,7 @@ scNym is a neural network model for predicting cell types from single cell profi biotools:primaryContact "Tyler J Burns" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -426270,7 +451336,7 @@ scNym is a neural network model for predicting cell types from single cell profi biotools:primaryContact "Centre for Integrative Bioinformatics VU (IBIVU), Vrije Universiteit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091 ; sc:citation , "pubmed:33135074" ; @@ -426286,7 +451352,7 @@ Single-cell Hi-C research currently lacks an efficient, easy to use and shareabl sc:url "https://github.com/open2c/cooler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -426314,14 +451380,14 @@ Single-cell Hi-C research currently lacks an efficient, easy to use and shareabl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ] ; + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2992" ; - sc:name "Protein structure image" ; - sc:sameAs "http://edamontology.org/data_2992" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2992" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Protein structure image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; @@ -426337,7 +451403,7 @@ Single-cell Hi-C research currently lacks an efficient, easy to use and shareabl sc:url "https://github.com/compomics/scop3d" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -426356,7 +451422,7 @@ Zoom in and zoom out (both with mouse and buttons on the right top corner) to se sc:url "https://iomics.ugent.be/scop3p" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -426378,7 +451444,7 @@ Zoom in and zoom out (both with mouse and buttons on the right top corner) to se sc:url "http://genie.dartmouth.edu/scope/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315 ; sc:description "Implemented bootstrapping by Monte Carlo sampling with replacement for ROC areas." ; @@ -426392,7 +451458,7 @@ Zoom in and zoom out (both with mouse and buttons on the right top corner) to se biotools:primaryContact "Rex Cheung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0153, edam:topic_0625, @@ -426415,14 +451481,13 @@ To run any of the r scripts provided, clone the repository and open the SCOPE_Li a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3590" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308 ; @@ -426444,7 +451509,7 @@ To run any of the r scripts provided, clone the repository and open the SCOPE_Li sc:url "http://scope.aertslab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315 ; sc:description "SCOPE (SEER (Surveillance, Epidemiology, and End Results) Clinical Outcome Prediction Expert) optimizes risk factors using binary fusion with Area of ROC as a metric." ; @@ -426458,7 +451523,7 @@ To run any of the r scripts provided, clone the repository and open the SCOPE_Li biotools:primaryContact "Rex Cheung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081 ; sc:author "Lukasz Kreft" ; @@ -426473,8 +451538,32 @@ To run any of the r scripts provided, clone the repository and open the SCOPE_Li sc:url "https://iomics.ugent.be/scop3d/#/home" ; biotools:primaryContact "Elien Vandermarliere" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0623, + edam:topic_0736, + edam:topic_3474 ; + sc:citation , + , + "pmcid:PMC3965108", + "pmcid:PMC8728185", + "pubmed:24304899", + "pubmed:34850923" ; + sc:description "Extended database to facilitate variant interpretation and machine learning." ; + sc:featureList edam:operation_2996, + edam:operation_3225, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:name "SCOPe" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://scop.berkeley.edu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -426491,7 +451580,7 @@ To run any of the r scripts provided, clone the repository and open the SCOPE_Li sc:url "http://code.google.com/p/scopeplusplus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, edam:topic_3343 ; @@ -426508,7 +451597,7 @@ Scopy (Screnning COmpounds in PYthon), an integrated negative design python libr sc:url "https://github.com/kotori-y/Scopy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -426530,7 +451619,7 @@ Scopy (Screnning COmpounds in PYthon), an integrated negative design python libr biotools:primaryContact "Peter S. Klosterman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0659, @@ -426548,7 +451637,7 @@ Our services require cookies to keep track of your submissions and find your res sc:url "http://score.generesearch.ru/services/mirna/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, edam:topic_0769, @@ -426567,7 +451656,7 @@ Smart Consensus Of RNA Expression pipelines.""" ; sc:url "https://github.com/SiWolf/SCORE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -426583,29 +451672,8 @@ Smart Consensus Of RNA Expression pipelines.""" ; sc:softwareVersion "5.3" ; sc:url "http://dlin.web.unc.edu/software/score-seq/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_0602, - edam:topic_0659, - edam:topic_3512, - edam:topic_3794 ; - sc:citation , - "pmcid:PMC6792129", - "pubmed:31649721" ; - sc:description """Comprehensive Analysis of Human microRNA-mRNA Interactome. - -Our services require cookies to keep track of your submissions and find your results. Submissions expire after 24 hours. - -||| NAME (score) SIMILAR TO (PUB. DIFFERENT) bio.tools/SCORE (SCORE). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'microRNA-mRNA'""" ; - sc:featureList edam:operation_0463, - edam:operation_3792 ; - sc:name "score_autogenerated" ; - sc:url "http://score.generesearch.ru/services/mirna/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -426623,7 +451691,7 @@ Our services require cookies to keep track of your submissions and find your res biotools:primaryContact "Roman Laskowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -426638,7 +451706,7 @@ Our services require cookies to keep track of your submissions and find your res sc:url "http://www.cs.huji.ac.il/labs/compbio/scoregenes/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -426657,7 +451725,7 @@ Our services require cookies to keep track of your submissions and find your res biotools:primaryContact "Carlos Ruiz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3361 ; sc:citation ; sc:description """a computer-aided scoring tool for resting-state M/EEG epochs. @@ -426671,7 +451739,7 @@ Scorepochs aims to represent a simple tool for automatic scoring of resting-stat sc:url "https://github.com/matteogithub/scorepochs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0154, @@ -426690,7 +451758,7 @@ Scorepochs aims to represent a simple tool for automatic scoring of resting-stat biotools:primaryContact "Jacob D. Durrant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3474, edam:topic_3940 ; @@ -426708,7 +451776,7 @@ SCOT is a python tool for performing unsupervised alignment of single-cell multi sc:url "https://github.com/rsinghlab/SCOT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0203, @@ -426726,7 +451794,7 @@ SCOT is a python tool for performing unsupervised alignment of single-cell multi sc:url "https://bitbucket.org/nicofmay/scotti/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -426742,7 +451810,7 @@ SCOT is a python tool for performing unsupervised alignment of single-cell multi sc:url "http://scotty.genetics.utah.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -426766,7 +451834,7 @@ SCOT is a python tool for performing unsupervised alignment of single-cell multi sc:url "http://github.com/gtStyLab/SCOUR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2640, edam:topic_3170, @@ -426789,22 +451857,20 @@ SCOUTS is a tool that quickly finds OUTLIERS in single-cell datasets, especially a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1042" ; - sc:name "SCOP sunid" ; - sc:sameAs "http://edamontology.org/data_1042" ], + sc:additionalType "http://edamontology.org/data_1042" ; + sc:name "SCOP sunid" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ], + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein interaction data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128 ; sc:description "PDB interface interactions at atom, residue and domain level. The database contains protein interfaces and residue-residue interactions formed by structural units and interacting solvent." ; @@ -426814,7 +451880,7 @@ SCOUTS is a tool that quickly finds OUTLIERS in single-cell datasets, especially biotools:primaryContact "Webmaster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -426836,8 +451902,26 @@ SCOUTS is a tool that quickly finds OUTLIERS in single-cell datasets, especially sc:url "http://bioconductor.org/packages/release/bioc/html/scPipe.html" ; biotools:primaryContact "Luyi Tian" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3384, + edam:topic_3452, + edam:topic_3474 ; + sc:citation , + "pubmed:34731775" ; + sc:description "An anchor-free 3D lung nodule detection network using sphere representation and center points matching." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SCPM-Net" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/HiLab-git/SCPM-Net" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -426859,7 +451943,7 @@ SCOUTS is a tool that quickly finds OUTLIERS in single-cell datasets, especially sc:url "https://github.com/JSB-UCLA/scPNMF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -426877,8 +451961,28 @@ SCOUTS is a tool that quickly finds OUTLIERS in single-cell datasets, especially sc:url "http://scpower.helmholtz-muenchen.de/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0203, + edam:topic_2229 ; + sc:citation , + "pubmed:35639705" ; + sc:description "Deep generative model for predicting the response of single cell expression to perturbation." ; + sc:featureList edam:operation_0490, + edam:operation_3435, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scPreGAN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/JaneJiayiDong/scPreGAN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2229, edam:topic_3474 ; @@ -426894,7 +451998,7 @@ Rapidly generated scRNA-seq datasets enable us to understand cellular difference sc:url "https://github.com/ruiyi-zhang/scPretrain" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, edam:topic_2640, @@ -426911,7 +452015,7 @@ Rapidly generated scRNA-seq datasets enable us to understand cellular difference sc:url "https://github.com/XiaomeiLi1/scPrognosis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -426932,7 +452036,7 @@ Rapidly generated scRNA-seq datasets enable us to understand cellular difference biotools:primaryContact "Alan M Moses" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -426952,8 +452056,30 @@ Rapidly generated scRNA-seq datasets enable us to understand cellular difference "Windows" ; sc:url "https://github.com/mary77/scQcut" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0121, + edam:topic_0634, + edam:topic_2640, + edam:topic_3934 ; + sc:citation , + "pmcid:PMC9307583", + "pubmed:35880127" ; + sc:description "Quantifying tumor ecosystem heterogeneity from mass or flow cytometry data." ; + sc:featureList edam:operation_3435, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "scQUEST" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://ai4scr.github.io/scQUEST" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3173, @@ -426973,7 +452099,7 @@ Rapidly generated scRNA-seq datasets enable us to understand cellular difference biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0082, @@ -426995,7 +452121,7 @@ Rapidly generated scRNA-seq datasets enable us to understand cellular difference biotools:primaryContact "Alessandro Paiardini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -427016,7 +452142,7 @@ Rapidly generated scRNA-seq datasets enable us to understand cellular difference biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0749, @@ -427035,7 +452161,7 @@ Rapidly generated scRNA-seq datasets enable us to understand cellular difference biotools:primaryContact "Hongkai Ji" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -427059,7 +452185,7 @@ Rapidly generated scRNA-seq datasets enable us to understand cellular difference sc:url "http://scratch.proteomics.ics.uci.edu/explanation.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0736, @@ -427077,7 +452203,7 @@ Rapidly generated scRNA-seq datasets enable us to understand cellular difference biotools:primaryContact "Scratch Protein Predictor Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, edam:topic_2229, @@ -427102,7 +452228,7 @@ Search differentially expressed genes.""" ; sc:url "https://bmbls.bmi.osumc.edu/scread/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, edam:topic_3168 ; @@ -427119,7 +452245,7 @@ SCReadCounts is available as a self-contained binary package for 64-bit Linux sy sc:url "https://github.com/HorvathLab/NGS/tree/master/SCReadCounts" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -427136,7 +452262,7 @@ SCReadCounts is available as a self-contained binary package for 64-bit Linux sy sc:url "https://pypi.org/project/screed/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0659, @@ -427152,7 +452278,7 @@ SCReadCounts is available as a self-contained binary package for 64-bit Linux sy sc:url "https://github.com/jyyu/ScreenBEAM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_3168, @@ -427168,7 +452294,7 @@ SCReadCounts is available as a self-contained binary package for 64-bit Linux sy biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3400 ; sc:citation , "pubmed:32317059" ; @@ -427177,7 +452303,7 @@ SCReadCounts is available as a self-contained binary package for 64-bit Linux sy sc:url "https://wpro.shinyapps.io/screen_tb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2229, @@ -427199,7 +452325,7 @@ SCReadCounts is available as a self-contained binary package for 64-bit Linux sy sc:url "https://github.com/akdess/scReguloCity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0804, edam:topic_2640, edam:topic_3170, @@ -427220,7 +452346,7 @@ Single-cell sequencing is an emerging technology in the field of immunology and sc:url "https://github.com/ncborcherding/scRepertoire" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Workflow" ; @@ -427242,7 +452368,7 @@ Single-cell sequencing is an emerging technology in the field of immunology and sc:url "https://github.com/HorvathLab/NGS/tree/master/scReQTL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0166 ; sc:citation ; @@ -427255,7 +452381,7 @@ Single-cell sequencing is an emerging technology in the field of immunology and sc:url "http://dirac.cnrs-orleans.fr/plone/software/screwfit/screwfit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0769, @@ -427278,7 +452404,7 @@ scRFE (single-cell identity definition using random forests and recursive featur sc:url "https://github.com/czbiohub/scRFE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -427296,8 +452422,30 @@ scRFE (single-cell identity definition using random forests and recursive featur sc:softwareVersion "1.1.4" ; sc:url "http://chmille4.github.com/Scribl/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pubmed:34874992" ; + sc:description "An accurate simulator for single-cell RNA sequencing data." ; + sc:featureList edam:operation_0244, + edam:operation_0314, + edam:operation_2426, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SCRIP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://CRAN.R-project.org/package=SCRIP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -427317,7 +452465,7 @@ scRFE (single-cell identity definition using random forests and recursive featur "Mitchell Guttman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, edam:topic_2229, @@ -427339,7 +452487,7 @@ scRMD is developed to impute single cell RNA data with dropouts. scRMD assumes t sc:url "https://github.com/XiDsLab/scRMD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3304, edam:topic_3308, @@ -427362,8 +452510,14 @@ def recursive_dirichlet(cluster_spec, num_cells,.""" ; sc:name "scRNA-Seq" ; sc:url "https://github.com/nicococo/scRNA" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "ScRNAX: cross-species transfer of high quality 3’UTR annotation for single cell RNA-Seq" ; + sc:name "scRNAx" ; + sc:url "https://github.com/bi-compbio/scrnax/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2229, @@ -427386,14 +452540,14 @@ def recursive_dirichlet(cluster_spec, num_cells,.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275 ; sc:citation ; @@ -427411,14 +452565,12 @@ def recursive_dirichlet(cluster_spec, num_cells,.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "SPARQL endpoint", "Web API", @@ -427444,8 +452596,47 @@ def recursive_dirichlet(cluster_spec, num_cells,.""" ; sc:url "https://pypi.python.org/pypi/scry" ; biotools:primaryContact "Bas Stringer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pubmed:35426898" ; + sc:description "scSampler is a Python pacakge for fast diversity-preserving subsampling of large-scale single-cell transcriptomic data." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "scSampler" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/SONGDONGYUAN1994/scsampler" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3170, + edam:topic_3308, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9069784", + "pubmed:35513780" ; + sc:description "A deep model with semi-supervised learning for single-cell transcriptomics." ; + sc:featureList edam:operation_3432, + edam:operation_3891, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scSemiAE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/PlusoneD/scSemiAE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3315, @@ -427462,7 +452653,7 @@ The identification of cell types plays an essential role in the analysis of scRN sc:url "https://github.com/xuebaliang/scSemiCluster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -427482,8 +452673,32 @@ The identification of cell types plays an essential role in the analysis of scRN biotools:primaryContact "Pei Hao", "Xiaoming Zhang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_2229, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pubmed:35043939" ; + sc:description "Identify, quantify and characterize cellular communication from single cell RNA sequencing data with scSeqComm." ; + sc:featureList edam:operation_3196, + edam:operation_3223, + edam:operation_3557, + edam:operation_3565, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "scSeqComm" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://sysbiobig.dei.unipd.it/software/#scSeqComm" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3315, @@ -427503,7 +452718,7 @@ The identification of cell types plays an essential role in the analysis of scRN sc:url "https://github.com/Single-Cell-Graph-Learning/scSGL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, @@ -427518,8 +452733,38 @@ The identification of cell types plays an essential role in the analysis of scRN sc:url "https://github.com/elolab/scshaper" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "A novel statistical framework for identifying differential distributions in single-cell RNA-sequencing (scRNA-seq) data between treatment conditions by modeling gene expression read counts using generalized linear models (GLMs). Each gene is modelled independently under each treatment condition using the error distributions Poisson (P), Negative Binomial (NB), Zero-inflated Poisson (ZIP) and Zero-inflated Negative Binomial (ZINB) with log link function and model based normalization for differences in sequencing depth. Since all four distributions considered in our framework belong to the same family of distributions, we first perform a Kolmogorov-Smirnov (KS) test to select genes belonging to the family of ZINB distributions. Genes passing the KS test will be then modeled using GLMs. Model selection is done by calculating the Bayesian Information Criterion and likelihood ratio test statistic." ; + sc:name "scShapes" ; + sc:softwareVersion "1.2.0" ; + sc:url "https://github.com/Malindrie/scShapes" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_2640, + edam:topic_2885, + edam:topic_3168, + edam:topic_3958 ; + sc:citation , + "pmcid:PMC9092674", + "pubmed:35546390" ; + sc:description "A tool for synthetic single-cell DNA sequencing data generation." ; + sc:featureList edam:operation_0484, + edam:operation_3196, + edam:operation_3961 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SCSilicon" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/xikanfeng2/SCSilicon" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, edam:topic_0654, @@ -427539,7 +452784,7 @@ This is a tool for simulating next-generation sequencing data from a hierarchica sc:url "https://github.com/flahertylab/scsim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, @@ -427561,7 +452806,7 @@ This is a tool for simulating next-generation sequencing data from a hierarchica sc:url "https://github.com/digi2002/scSimClassify" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -427584,7 +452829,7 @@ This is a tool for simulating next-generation sequencing data from a hierarchica "Jonathan C. Yeung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0108, @@ -427603,7 +452848,7 @@ This is a tool for simulating next-generation sequencing data from a hierarchica "Falai Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -427623,7 +452868,7 @@ On single-cell RNA-sequencing data, we consider the problem of assigning cells t sc:url "https://cran.r-project.org/web/packages/scSorter/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0659 ; @@ -427642,8 +452887,33 @@ On single-cell RNA-sequencing data, we consider the problem of assigning cells t "Christian von Mering", "Roger Meier" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_2229, + edam:topic_2830, + edam:topic_3170, + edam:topic_3277 ; + sc:citation , + "pmcid:PMC9264648", + "pubmed:35799304" ; + sc:description "Single cell STEM (scSTEM) is a shiny app based R package for visualizing and clustering genes in pseudotime ordered single cell RNA-seq data. scSTEM is a GUI based tool and thus does not require any coding experience." ; + sc:featureList edam:operation_0313, + edam:operation_0314, + edam:operation_0337, + edam:operation_3891, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "scSTEM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/alexQiSong/scSTEM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0602, @@ -427667,7 +452937,7 @@ On single-cell RNA-sequencing data, we consider the problem of assigning cells t sc:url "https://sc.deepomics.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3308 ; @@ -427682,7 +452952,7 @@ SCTCwhatateam: Predicting cell locations based on location-marker genes.""" ; sc:url "https://github.com/thanhbuu04/SCTCwhatateam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -427702,7 +452972,7 @@ SCTCwhatateam: Predicting cell locations based on location-marker genes.""" ; "Jianhua Z. Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, edam:topic_3170, @@ -427726,14 +452996,14 @@ A workflow based on machine learning methods to construct and compare single-cel sc:url "https://github.com/cailab-tamu/scTenifoldNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "scTHI is an R/Bioconductor package to identify active pairs of ligand-receptors from single cells in order to study,among others, tumor-host interactions. scTHI contains a set of signatures to classify cells from the tumor microenvironment." ; sc:name "scTHI" ; sc:softwareHelp ; sc:url "https://bioconductor.org/packages/release/bioc/html/scTHI.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -427756,7 +453026,7 @@ A workflow based on machine learning methods to construct and compare single-cel sc:url "https://github.com/ZJUFanLab/scTITANS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, edam:topic_3170, @@ -427770,7 +453040,7 @@ A workflow based on machine learning methods to construct and compare single-cel sc:url "http://sctpa.bio-data.cn/sctpa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170 ; @@ -427786,7 +453056,7 @@ A workflow based on machine learning methods to construct and compare single-cel sc:url "http://github.com/ChristophH/sctransform" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, edam:topic_3934 ; @@ -427808,7 +453078,7 @@ Tree based analysis of single rna-seq clusters.""" ; sc:url "http://github.com/jspaezp/sctree" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, edam:topic_0621, @@ -427827,8 +453097,33 @@ The scTSSR package has the following R-package dependencies: SAVER, keras, tenso sc:name "scTSSR" ; sc:url "https://github.com/Zhangxf-ccnu/scTSSR" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2229, + edam:topic_3071, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC8913782", + "pubmed:35273156" ; + sc:description "Fully-automated and ultra-fast cell-type identification using specific marker combinations from single-cell transcriptomic data." ; + sc:featureList edam:operation_0314, + edam:operation_3227, + edam:operation_3432, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ScType" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://sctype.app" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, edam:topic_3068, @@ -427848,7 +453143,7 @@ scTyper is a comprehensive pipeline for the cell typing and scRNA-Seq data analy sc:url "https://github.com/omicsCore/scTyper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0623, @@ -427864,7 +453159,7 @@ scTyper is a comprehensive pipeline for the cell typing and scRNA-Seq data analy sc:url "http://www.cosbi.eu/research/prototypes/scudo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2275 ; sc:citation ; @@ -427881,8 +453176,56 @@ scTyper is a comprehensive pipeline for the cell typing and scRNA-Seq data analy sc:softwareVersion "2.1.1" ; sc:url "http://sculptor.biomachina.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0769, + edam:topic_2229, + edam:topic_3170, + edam:topic_3512 ; + sc:citation ; + sc:description "Quantification of alternative 3′UTR isoforms from single cell RNA-seq data with scUTRquant." ; + sc:featureList edam:operation_0314, + edam:operation_0315, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "scUTRquant" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/Mayrlab/scUTRquant" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0082, + edam:topic_0121, + edam:topic_0601, + edam:topic_3520 ; + sc:citation ; + sc:description "A web application for protein sequence coverage 3D visualization." ; + sc:featureList edam:operation_0474, + edam:operation_0564, + edam:operation_0570, + edam:operation_3642 ; + sc:isAccessibleForFree true ; + sc:name "SCV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://scv.lab.gy" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, edam:topic_3170, @@ -427900,7 +453243,7 @@ scVAE is a command-line tool for modelling single-cell transcript counts using v sc:url "https://github.com/scvae/scvae" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0160, edam:topic_0654, @@ -427922,7 +453265,7 @@ The recent advance of single-cell copy number variation analysis plays an essent sc:url "https://sc.deepomics.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3295, @@ -427940,18 +453283,18 @@ The recent advance of single-cell copy number variation analysis plays an essent a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3579" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "This is a Java-application for the statistical analysis of data from 2-Dimensional Difference Gel Electrophoresis (DIGE)." ; @@ -427967,7 +453310,7 @@ The recent advance of single-cell copy number variation analysis plays an essent biotools:primaryContact "PD Dr. Martin Eisenacher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, @@ -427981,7 +453324,7 @@ The recent advance of single-cell copy number variation analysis plays an essent sc:url "http://mcm.h-its.org/sda7/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3172 ; @@ -427998,8 +453341,32 @@ The recent advance of single-cell copy number variation analysis plays an essent sc:url "http://bioconductor.org/packages/release/bioc/html/SDAMS.html" ; biotools:primaryContact "Yuntong Li" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0625, + edam:topic_0659, + edam:topic_2640, + edam:topic_3295 ; + sc:citation , + "pmcid:PMC8897669", + "pubmed:35284049" ; + sc:description "An integrated database for sex differences in cancer." ; + sc:featureList edam:operation_0463, + edam:operation_3503, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SDC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://sdc.anticancer.xyz" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -428012,7 +453379,7 @@ The recent advance of single-cell copy number variation analysis plays an essent sc:url "http://www.stats.gla.ac.uk/~mgupta/publications.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3678 ; @@ -428026,8 +453393,30 @@ The recent advance of single-cell copy number variation analysis plays an essent sc:softwareHelp ; sc:url "https://cran.r-project.org/web/packages/sdef/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0176, + edam:topic_2275, + edam:topic_3047 ; + sc:citation , + "pmcid:PMC8757437", + "pubmed:34932340" ; + sc:description "sdfconf is a python package aimed to be used as a manipulation and analysis tool when working with .sdf files. High emphasis is on files with multiple conformations of molecules." ; + sc:featureList edam:operation_0337, + edam:operation_3096, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "sdfconf" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.utu.fi/sdfconf" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0154, edam:topic_0202, @@ -428048,7 +453437,7 @@ Database for the subcellular diversity index.""" ; sc:url "http://www.cuilab.cn/sdi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -428074,7 +453463,7 @@ Database for the subcellular diversity index.""" ; sc:url "https://github.com/Jinsl-lab/SDImpute" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, edam:topic_3474 ; @@ -428091,7 +453480,7 @@ In this GitHub project, we give a demo to show how SDLDA works. In data_processi sc:url "https://github.com/CSUBioGroup/SDLDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -428114,7 +453503,7 @@ In this GitHub project, we give a demo to show how SDLDA works. In data_processi biotools:primaryContact "ARUN PRASAD PANDURANGAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3071 ; @@ -428132,7 +453521,7 @@ In this GitHub project, we give a demo to show how SDLDA works. In data_processi biotools:primaryContact "Xiaoquan Kong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0610, @@ -428153,7 +453542,7 @@ In this GitHub project, we give a demo to show how SDLDA works. In data_processi biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_2269, edam:topic_3474 ; @@ -428175,7 +453564,7 @@ User-friendly framework that enables the training and the evaluation of species sc:url "https://consbiol-unibern.github.io/SDMtune/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0218, edam:topic_0736, @@ -428196,8 +453585,53 @@ SDNGO is a deep learning model for predicting protein functions using protein se sc:name "SDN2GO" ; sc:url "https://github.com/Charrick/SDN2GO" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_3063, + edam:topic_3376, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8714298", + "pubmed:34610645" ; + sc:description "SDNDL (Software Defined Networking Description Language) - CAO (CUREX Asset Discovery Tool) Ontology has been developed to give support to the inclusion of information about devices." ; + sc:featureList edam:operation_2422, + edam:operation_3283, + edam:operation_3436, + edam:operation_3559, + edam:operation_3761 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-3.0" ; + sc:name "SDNDL-CAO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://medal.ctb.upm.es/projects/CUREX/ontologies/sdndlcao/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0102, + edam:topic_2814, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8764118", + "pubmed:35039537" ; + sc:description "Scrutinised distance predictor for protein structures" ; + sc:featureList edam:operation_0248, + edam:operation_0272, + edam:operation_0474 ; + sc:isAccessibleForFree true ; + sc:name "SDP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.com/mahnewton/sdp" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -428213,7 +453647,7 @@ SDNGO is a deep learning model for predicting protein functions using protein se sc:url "http://www.csie.ntu.edu.tw/~kmchao/tools/HapInfer/index.htm#SDPHapInfer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -428229,7 +453663,7 @@ SDNGO is a deep learning model for predicting protein functions using protein se sc:url "http://proline.bic.nus.edu.sg/sdpmod/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -428250,7 +453684,7 @@ SDNGO is a deep learning model for predicting protein functions using protein se biotools:primaryContact "SDPpred team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, edam:topic_3382 ; @@ -428270,14 +453704,12 @@ This page describes an iterative Ptychography reconstruction algorithm, termed s a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Short-chain dehydrogenases/reductases database." ; @@ -428288,22 +453720,22 @@ This page describes an iterative Ptychography reconstruction algorithm, termed s a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3113" ; - sc:name "Sample annotation" ; - sc:sameAs "http://edamontology.org/data_3113" ], + sc:additionalType "http://edamontology.org/data_3113" ; + sc:encodingFormat "http://edamontology.org/format_3162" ; + sc:name "Sample annotation" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3113" ; - sc:name "Sample annotation" ; - sc:sameAs "http://edamontology.org/data_3113" ] ; + sc:additionalType "http://edamontology.org/data_3113" ; + sc:encodingFormat "http://edamontology.org/format_3162" ; + sc:name "Sample annotation" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_3113" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Sample annotation" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3113" ; - sc:name "Sample annotation" ; - sc:sameAs "http://edamontology.org/data_3113" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -428322,7 +453754,7 @@ This page describes an iterative Ptychography reconstruction algorithm, termed s sc:url "https://github.com/bigbio/sdrf-pipelines" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3053, @@ -428337,7 +453769,7 @@ This page describes an iterative Ptychography reconstruction algorithm, termed s sc:url "http://bioinfo2.ugr.es:8080/oliver/sdse/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Take a set of aligned FASTA format sequences as input and computes pairwise mismatch values for sliding windows of a given size, with a given step size. This is done for every pair of sequences in the input file, and, in addition, average values across all pairs are calculated. The output is written as tab-delimited text." ; @@ -428349,7 +453781,7 @@ This page describes an iterative Ptychography reconstruction algorithm, termed s sc:url "http://www.famd.me.uk/AGL/AGL_sw.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2229, @@ -428369,7 +453801,7 @@ This page describes an iterative Ptychography reconstruction algorithm, termed s sc:url "https://github.com/wimthiels/SDT-PICS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:32700238" ; sc:description """An R package for the signal detection analysis of eyewitness lineup data. @@ -428382,13 +453814,13 @@ In a standard eyewitness lineup scenario, a witness observes a culprit commit a sc:url "https://osf.io/mfk4e/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Sdy Pools adalah situs yang menampilkan hasil togel sdy 4D tercepat dan paling akurat. Keluaran angka 4D Sydney diambil langsung dari website resminya, jadi angkanya tidak berbeda dengan website resminya. Wla TOP SDY ini dibuat untuk mempermudah para pemain togel Sydney Indonesia dengan menampilkan Live Draw Sydney dari berbagai sumber terpercaya, cepat dan tepat waktu." ; sc:name "Sdypools - Sdy Pools - Data Sdy - Keluaran Sdy - Togel Sdy" ; sc:url "https://rebrand.ly/daftar-papua4d" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3063, @@ -428400,7 +453832,7 @@ In a standard eyewitness lineup scenario, a witness observes a culprit commit a sc:url "http://www.se-atlas.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0654, @@ -428422,7 +453854,7 @@ In a standard eyewitness lineup scenario, a witness observes a culprit commit a biotools:primaryContact "Christopher I. Amos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3308, @@ -428441,7 +453873,7 @@ In a standard eyewitness lineup scenario, a witness observes a culprit commit a biotools:primaryContact "SEA Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3295 ; @@ -428456,7 +453888,7 @@ In a standard eyewitness lineup scenario, a witness observes a culprit commit a biotools:primaryContact "Zhang Yan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0092, @@ -428469,7 +453901,7 @@ In a standard eyewitness lineup scenario, a witness observes a culprit commit a biotools:primaryContact "Institute for Research in Biomedicine Barcelona" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation ; @@ -428485,7 +453917,7 @@ In a standard eyewitness lineup scenario, a witness observes a culprit commit a biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3050 ; sc:description """SeagrassTraitDB is a global data base of seagrass traits. It integrates world-wide seagrass trait data in one consistent format. SeagrassTraitDB is based on data sets contributed by seagrass scientists. Plant Traits are any morphological, anatomical, biochemical, physiological or phenological feature measurable at the individual level, from the cell to the whole organism. The aim of SeagrassTraitDB is to integrate and make available global empirical data of seagrass traits.""" ; @@ -428495,7 +453927,7 @@ The aim of SeagrassTraitDB is to integrate and make available global empirical d sc:url "http://seagrasses.ccmar.ualg.pt/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_2269 ; @@ -428519,7 +453951,7 @@ The lasso, group lasso, and sparse-group lasso are implemented via proximal grad sc:url "https://CRAN.R-project.org/package=seagull" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168 ; @@ -428538,7 +453970,7 @@ The lasso, group lasso, and sparse-group lasso are implemented via proximal grad biotools:primaryContact "Luca Pireddu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0654, @@ -428554,8 +453986,56 @@ The lasso, group lasso, and sparse-group lasso are implemented via proximal grad sc:softwareHelp ; sc:url "http://compbio.case.edu/seal/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0621, + edam:topic_3179, + edam:topic_3474, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9047973", + "pubmed:35505998" ; + sc:description "Facial recognition software for ecological studies of harbor seals." ; + sc:featureList edam:operation_2423, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-4.0" ; + sc:name "SealNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/zbirenbaum/SealFaceRecognition" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_1196" ; + sc:name "Structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2258, + edam:topic_2275, + edam:topic_3068, + edam:topic_3336 ; + sc:citation , + "pmcid:PMC8484321", + "pubmed:34604303" ; + sc:description "An Interactive and Collaborative Online Docking Resource to Assist Small Compound Molecular Docking." ; + sc:featureList edam:operation_0337, + edam:operation_0478, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "SeamDock" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bioserv.rpbs.univ-paris-diderot.fr/services/SeamDock/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -428572,7 +454052,7 @@ The lasso, group lasso, and sparse-group lasso are implemented via proximal grad sc:url "http://s.tartaglialab.com/new_submission/seamote" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, @@ -428593,7 +454073,7 @@ The lasso, group lasso, and sparse-group lasso are implemented via proximal grad "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3382, edam:topic_3474 ; @@ -428607,10 +454087,10 @@ The task of single image super-resolution (SISR) is a highly ill-posed inverse p a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Nucleic acid sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal", "Web application" ; @@ -428629,7 +454109,7 @@ The task of single image super-resolution (SISR) is a highly ill-posed inverse p biotools:primaryContact "Will Rowe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -428649,18 +454129,18 @@ The task of single image super-resolution (SISR) is a highly ill-posed inverse p a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3247" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0092, @@ -428684,37 +454164,14 @@ The task of single image super-resolution (SISR) is a highly ill-posed inverse p sc:softwareVersion "2.2.2" ; sc:url "http://compomics.github.io/projects/searchgui.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0154, - edam:topic_0611, - edam:topic_2275, - edam:topic_2814, - edam:topic_3297 ; - sc:citation ; - sc:description """real time structural search at the scale of the PDB and beyond. - -Protein Structure Search Prototype. - -For evaluation purposes only. Please send me an email with any bug reports or suggestions. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Zernike'""" ; - sc:featureList edam:operation_0245, - edam:operation_0295, - edam:operation_0300, - edam:operation_2421 ; - sc:name "searching approach enables" ; - sc:url "http://shape.rcsb.org" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0602, @@ -428741,7 +454198,7 @@ For evaluation purposes only. Please send me an email with any bug reports or su sc:url "https://github.com/Searchlight2/Searchlight2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0736, edam:topic_2275 ; @@ -428753,7 +454210,7 @@ For evaluation purposes only. Please send me an email with any bug reports or su sc:url "http://www.nii.res.in/searchpks.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0196, @@ -428775,7 +454232,7 @@ SearcHPV is a novel approach to identify and assemble human papillomavirus-host sc:url "https://github.com/mills-lab/SearcHPV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -428791,16 +454248,39 @@ SearcHPV is a novel approach to identify and assemble human papillomavirus-host sc:softwareHelp ; sc:url "http://csbl.bmb.uga.edu/~xizeng/research/seas/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script", + "Web application" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3277, + edam:topic_3303, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8481385", + "pubmed:34604741" ; + sc:description "Statistical Enrichment Analysis of Samples (SEAS): a general-purpose tool to annotate metadata neighborhoods of biological samples." ; + sc:featureList edam:operation_2238, + edam:operation_3432, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SEAS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://aimed-lab.shinyapps.io/SEAS/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -428817,34 +454297,27 @@ SearcHPV is a novel approach to identify and assemble human papillomavirus-host a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1707" ; - sc:name "Phylogenetic tree image" ; - sc:sameAs "http://edamontology.org/data_1707" ], + sc:additionalType "http://edamontology.org/data_1711" ; + sc:name "Sequence alignment image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1711" ; - sc:name "Sequence alignment image" ; - sc:sameAs "http://edamontology.org/data_1711" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_1707" ; + sc:name "Phylogenetic tree image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0080, @@ -428870,14 +454343,14 @@ SearcHPV is a novel approach to identify and assemble human papillomavirus-host a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Sequence features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0659, @@ -428899,7 +454372,7 @@ SearcHPV is a novel approach to identify and assemble human papillomavirus-host sc:url "http://sunlab.lihs.cuhk.edu.hk/sebnif/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2533, edam:topic_2885, @@ -428914,16 +454387,34 @@ SearcHPV is a novel approach to identify and assemble human papillomavirus-host sc:softwareHelp ; sc:url "http://neurogenetics.qimrberghofer.edu.au/SECA/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0654, + edam:topic_2229, + edam:topic_3168 ; + sc:citation ; + sc:description "SNV-based subclone detection using ultra-low coverage single-cell DNA sequencing." ; + sc:featureList edam:operation_3196, + edam:operation_3227, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SECEDO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ratschlab/secedo" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0869" ; - sc:name "Sequence-profile alignment" ; - sc:sameAs "http://edamontology.org/data_0869" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0869" ; + sc:name "Sequence-profile alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160 ; sc:author "Charles Chapple" ; @@ -428940,14 +454431,14 @@ SearcHPV is a novel approach to identify and assemble human papillomavirus-host a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author , @@ -428971,14 +454462,12 @@ SearcHPV is a novel approach to identify and assemble human papillomavirus-host a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3307 ; sc:author "Marco Mariotti" ; @@ -428999,8 +454488,28 @@ SearcHPV is a novel approach to identify and assemble human papillomavirus-host sc:url "http://seblastian.crg.es/" ; biotools:primaryContact "Didac Santesmasses & Marco Mariotti" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3168, + edam:topic_3958 ; + sc:citation , + "pubmed:35801503" ; + sc:description "Resolving single-cell copy number profiling for large datasets." ; + sc:featureList edam:operation_3233, + edam:operation_3798, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SeCNV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/deepomicslab/SeCNV" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2830, edam:topic_3930, @@ -429019,14 +454528,14 @@ The secretome contains all the Excreted Secreted (ES) proteins of a cell.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080 ; @@ -429046,7 +454555,7 @@ The secretome contains all the Excreted Secreted (ES) proteins of a cell.""" ; biotools:primaryContact "Henrik Nielsen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0602, @@ -429062,7 +454571,7 @@ The secretome contains all the Excreted Secreted (ES) proteins of a cell.""" ; biotools:primaryContact "Anna Gogleva" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -429078,7 +454587,7 @@ The secretome contains all the Excreted Secreted (ES) proteins of a cell.""" ; sc:url "https://github.com/XieConnect/SecureMA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -429093,14 +454602,14 @@ The secretome contains all the Excreted Secreted (ES) proteins of a cell.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080 ; @@ -429121,7 +454630,7 @@ The secretome contains all the Excreted Secreted (ES) proteins of a cell.""" ; sc:url "http://www.sing-group.org/seda/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -429137,7 +454646,7 @@ The secretome contains all the Excreted Secreted (ES) proteins of a cell.""" ; sc:url "http://mamiris.com/services.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, @@ -429159,7 +454668,7 @@ The secretome contains all the Excreted Secreted (ES) proteins of a cell.""" ; sc:url "https://github.com/li-shaochuan/SEDIM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3299 ; @@ -429175,10 +454684,9 @@ The secretome contains all the Excreted Secreted (ES) proteins of a cell.""" ; a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0958" ; - sc:name "Tool metadata" ; - sc:sameAs "http://edamontology.org/data_0958" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0958" ; + sc:name "Tool metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -429208,7 +454716,7 @@ The secretome contains all the Excreted Secreted (ES) proteins of a cell.""" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/seealso.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3572 ; sc:citation "pubmed:23558750" ; @@ -429224,7 +454732,7 @@ The secretome contains all the Excreted Secreted (ES) proteins of a cell.""" ; "Ziv Bar-Joseph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0632, edam:topic_2885, @@ -429243,7 +454751,7 @@ SeeCiTe is a novel CNV quality control tool that post-processes output from curr sc:url "https://github.com/aksenia/SeeCiTe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation "pubmed:21810899" ; @@ -429258,7 +454766,7 @@ SeeCiTe is a novel CNV quality control tool that post-processes output from curr biotools:primaryContact "Thomas Girke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0610, @@ -429272,7 +454780,7 @@ SeeCiTe is a novel CNV quality control tool that post-processes output from curr sc:url "https://github.com/danlbek/Seed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, edam:topic_3382, @@ -429284,7 +454792,7 @@ SeeCiTe is a novel CNV quality control tool that post-processes output from curr sc:url "https://cse.unl.edu/~fzhu/SeedExtractor.zip" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3382, edam:topic_3474, @@ -429300,14 +454808,14 @@ SeedGerm: automated seed phenotyping. Contribute to Crop-Phenomics-Group/SeedGer a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3365, @@ -429326,7 +454834,7 @@ SeedGerm: automated seed phenotyping. Contribute to Crop-Phenomics-Group/SeedGer biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2533 ; @@ -429345,7 +454853,7 @@ SeedGerm: automated seed phenotyping. Contribute to Crop-Phenomics-Group/SeedGer biotools:primaryContact "Colin J. Worby" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -429362,7 +454870,7 @@ SeedGerm: automated seed phenotyping. Contribute to Crop-Phenomics-Group/SeedGer biotools:primaryContact "Contact list" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:author "SEEK developers" ; @@ -429384,13 +454892,14 @@ SeedGerm: automated seed phenotyping. Contribute to Crop-Phenomics-Group/SeedGer sc:softwareHelp ; sc:softwareVersion "1", "1.11", - "1.11.1" ; + "1.11.1", + "1.12.2" ; sc:url "http://seek4science.org/" ; biotools:primaryContact "SEEK", "SEEK developers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, edam:topic_3308, @@ -429416,7 +454925,7 @@ Run testrun.sh to test the installation and the dependencies of seekCRIT and als sc:url "https://github.com/UofLBioinformatics/seekCRIT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, edam:topic_3174, @@ -429440,7 +454949,7 @@ The MATLAB and Python model types differ in how they represent the DNA sequences sc:url "http://seeker.pythonanywhere.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -429458,7 +454967,7 @@ The MATLAB and Python model types differ in how they represent the DNA sequences biotools:primaryContact "Rommie E. Amaro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0160, @@ -429476,7 +454985,7 @@ The MATLAB and Python model types differ in how they represent the DNA sequences sc:url "http://seemotif.csie.ntu.edu.tw" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0610, edam:topic_3500 ; @@ -429491,7 +455000,7 @@ The MATLAB and Python model types differ in how they represent the DNA sequences sc:url "http://cran.r-project.org/package=segclust2d" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2533, @@ -429506,7 +455015,7 @@ The MATLAB and Python model types differ in how they represent the DNA sequences sc:url "http://dceg.cancer.gov/tools/analysis/segcnv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3384, edam:topic_3444 ; @@ -429526,7 +455035,7 @@ To do the inference, use the test.py file, you can use the following commands li sc:url "https://github.com/w3user/SegDGAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -429541,7 +455050,7 @@ To do the inference, use the test.py file, you can use the following commands li biotools:primaryContact "segemehl Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071 ; @@ -429556,8 +455065,21 @@ To do the inference, use the test.py file, you can use the following commands li sc:softwareHelp ; sc:url "https://github.com/baudisgroup/segment-liftover" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_2259, + edam:topic_3307 ; + sc:citation ; + sc:description "A novel, massively parallel computational model of the gut, the Spatially Explicitly General-purpose Model of Enteric Tissue_HPC (SEGMEnT_HPC), which extends an existing model of the gut epithelium, SEGMEnT, in order to create cell-for-cell anatomic scale simulations" ; + sc:featureList edam:operation_2426 ; + sc:name "SEGMEnT_HPC" ; + sc:operatingSystem "Linux" ; + sc:url "https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0122192" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -429574,7 +455096,7 @@ To do the inference, use the test.py file, you can use the following commands li biotools:primaryContact "Achintha Iroshan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -429591,7 +455113,7 @@ To do the inference, use the test.py file, you can use the following commands li biotools:primaryContact "Chandra Sekhar Ravuri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3382 ; sc:description "Gets label matrix of a tissue in segmented and ground truth and returns similarity indices." ; @@ -429606,7 +455128,7 @@ To do the inference, use the test.py file, you can use the following commands li biotools:primaryContact "M. A Balafar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -429623,7 +455145,7 @@ To do the inference, use the test.py file, you can use the following commands li biotools:primaryContact "Benjamin I" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3070, @@ -429645,7 +455167,7 @@ To do the inference, use the test.py file, you can use the following commands li biotools:primaryContact "Peter Nagy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3070, @@ -429666,8 +455188,29 @@ To do the inference, use the test.py file, you can use the following commands li sc:url "https://www.mathworks.com/matlabcentral/fileexchange/63070-segmentation-of-nuclei-wahlby-algorithm" ; biotools:primaryContact "Peter Nagy" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3452, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8919404", + "pubmed:35291672" ; + sc:description "A Tool for Measuring Second Moment of Area in 3D Slicer." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "SegmentGeometry" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/jmhuie/Slicer-SegmentGeometry" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3382 ; @@ -429687,14 +455230,14 @@ See the wiki for more information on installing and using Segmentor.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -429714,7 +455257,7 @@ See the wiki for more information on installing and using Segmentor.""" ; biotools:primaryContact "Thomas J. Hardcastle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -429732,7 +455275,7 @@ See the wiki for more information on installing and using Segmentor.""" ; sc:url "http://zhanglab.ccmb.med.umich.edu/SEGMER/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -429749,7 +455292,7 @@ See the wiki for more information on installing and using Segmentor.""" ; sc:url "http://www.broadinstitute.org/cgi-bin/cancer/publications/pub_paper.cgi?mode=view&paper_id=182" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3344, @@ -429767,7 +455310,7 @@ See the wiki for more information on installing and using Segmentor.""" ; biotools:primaryContact "Tzu-Ching Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3444, edam:topic_3474 ; @@ -429785,7 +455328,7 @@ This algorithm is based on the method proposed by Chi-Hieu Pham in 2019. More in sc:url "http://pypi.org/project/SegSRGAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0622, @@ -429803,7 +455346,7 @@ This algorithm is based on the method proposed by Chi-Hieu Pham in 2019. More in sc:url "https://www.pmgenomics.ca/hoffmanlab/proj/segtools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation "pubmed:22069465" ; @@ -429818,18 +455361,18 @@ This algorithm is based on the method proposed by Chi-Hieu Pham in 2019. More in a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2919" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_2919" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0085, edam:topic_3173 ; @@ -429855,7 +455398,7 @@ This algorithm is based on the method proposed by Chi-Hieu Pham in 2019. More in sc:url "http://segway.hoffmanlab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -429872,7 +455415,7 @@ This algorithm is based on the method proposed by Chi-Hieu Pham in 2019. More in biotools:primaryContact "milan batista" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -429889,7 +455432,7 @@ Studying Epilepsy In Zebrafish using R.""" ; sc:url "https://tyson-fuller.shinyapps.io/SEIZR_Tracking_App/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3524 ; sc:citation , @@ -429903,7 +455446,7 @@ Studying Epilepsy In Zebrafish using R.""" ; sc:url "http://www.wur.nl/en/Expertise-Services/Chair-groups/Animal-Sciences/Animal-Breeding-and-Genetics-Group/Research/Software.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, edam:topic_3056, @@ -429923,7 +455466,7 @@ High-throughput sequencing of genomes, exomes, and disease-focused gene panels i sc:url "http://intranet.fm.usp.br/sela" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -429941,14 +455484,14 @@ High-throughput sequencing of genomes, exomes, and disease-focused gene panels i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -429964,7 +455507,7 @@ High-throughput sequencing of genomes, exomes, and disease-focused gene panels i biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_3170, @@ -429990,34 +455533,34 @@ A modeling tool dedicated to biological network modeling.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622 ; @@ -430036,14 +455579,14 @@ A modeling tool dedicated to biological network modeling.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -430060,30 +455603,24 @@ A modeling tool dedicated to biological network modeling.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1868" ; - sc:name "Taxon" ; - sc:sameAs "http://edamontology.org/data_1868" ], + sc:additionalType "http://edamontology.org/data_1868" ; + sc:name "Taxon" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1075" ; - sc:name "Protein family identifier" ; - sc:sameAs "http://edamontology.org/data_1075" ], + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_1075" ; + sc:name "Protein family identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:name "Data reference" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation , @@ -430101,7 +455638,7 @@ A modeling tool dedicated to biological network modeling.""" ; sc:url "https://selectome.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084 ; sc:citation "pubmed:15647294", @@ -430117,7 +455654,7 @@ A modeling tool dedicated to biological network modeling.""" ; biotools:primaryContact "SELECTON Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -430132,16 +455669,37 @@ A modeling tool dedicated to biological network modeling.""" ; sc:softwareHelp ; sc:url "http://www.igb.uci.edu/~baldig/selectpro.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_3174, + edam:topic_3315, + edam:topic_3673, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC8978828", + "pubmed:35387076" ; + sc:description "A Simultaneous Feature Selection and Compositional Association Test for Detecting Sparse Associations in High-Dimensional Metagenomic Data." ; + sc:featureList edam:operation_3557, + edam:operation_3891, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SelEnergyPerm" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/andrew84830813/selEnergyPermR" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:author "Marco Mariotti" ; @@ -430160,7 +455718,7 @@ A modeling tool dedicated to biological network modeling.""" ; biotools:primaryContact "Didac Santesmasses & Marco Mariotti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0821, edam:topic_3297, @@ -430177,7 +455735,7 @@ A modeling tool dedicated to biological network modeling.""" ; biotools:primaryContact "Pablo Carbonell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2533, edam:topic_2885, @@ -430194,14 +455752,14 @@ A modeling tool dedicated to biological network modeling.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2000" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -430220,7 +455778,7 @@ A modeling tool dedicated to biological network modeling.""" ; biotools:primaryContact "Harmen Bussemaker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0634, @@ -430238,7 +455796,7 @@ While high-resolution pathology images lend themselves well to 'data hungry' dee sc:url "https://warwick.ac.uk/fac/cross_fac/tia/software/selfpath/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, edam:topic_0166, @@ -430258,7 +455816,7 @@ While high-resolution pathology images lend themselves well to 'data hungry' dee sc:url "http://bliulab.net/selfAT_fold/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -430275,7 +455833,7 @@ While high-resolution pathology images lend themselves well to 'data hungry' dee sc:url "http://selox.mpi-cbg.de/cgi-bin/selox/index" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -430295,7 +455853,7 @@ While high-resolution pathology images lend themselves well to 'data hungry' dee biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -430308,7 +455866,7 @@ While high-resolution pathology images lend themselves well to 'data hungry' dee sc:url "https://github.com/szpiech/selscan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3524 ; sc:citation ; @@ -430320,7 +455878,7 @@ While high-resolution pathology images lend themselves well to 'data hungry' dee sc:url "https://popmodels.cancercontrol.cancer.gov/gsr/packages/selsim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2830, @@ -430341,7 +455899,7 @@ While high-resolution pathology images lend themselves well to 'data hungry' dee biotools:primaryContact "Stefan M. Woerner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -430363,7 +455921,7 @@ While high-resolution pathology images lend themselves well to 'data hungry' dee biotools:primaryContact "K. Sekar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, edam:topic_0637, @@ -430381,8 +455939,30 @@ sem1R is a machine learning algorithm that finds interesting, hidden, and non-tr sc:name "sem1R" ; sc:url "http://github.com/fmalinka/sem1r" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0769, + edam:topic_3170, + edam:topic_3172, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC9252823", + "pubmed:35580059" ; + sc:description "Expression-based exploration tool for increased secondary metabolite production in bacteria." ; + sc:featureList edam:operation_0313, + edam:operation_3223, + edam:operation_3463 ; + sc:isAccessibleForFree true ; + sc:name "SeMa-Trap" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://sema-trap.ziemertlab.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -430399,7 +455979,7 @@ sem1R is a machine learning algorithm that finds interesting, hidden, and non-tr biotools:primaryContact "Majid Farzaneh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3067, edam:topic_3300, @@ -430415,7 +455995,7 @@ sem1R is a machine learning algorithm that finds interesting, hidden, and non-tr sc:url "http://sbb.cellfinder.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -430434,7 +456014,7 @@ SemanticBI: prediction of DNA-TF binding intensities (trained on DREAM5 PBM data sc:url "http://qianglab.scst.suda.edu.cn/semantic/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, edam:topic_3474 ; @@ -430450,7 +456030,7 @@ SemanticCS: prediction of TF-DNA binding probability (trained on ChIP-seq datase sc:url "http://qianglab.scst.suda.edu.cn/semanticCS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0780, edam:topic_3053 ; @@ -430465,7 +456045,7 @@ Semantic analysis of Arabidopsis thaliana genes function.""" ; sc:url "http://bioinformatics.fafu.edu.cn/semanticGO/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2533, @@ -430481,7 +456061,7 @@ to determine the effect of a mutation on a protein’s stability.""" ; sc:url "http://amyloid.cs.mcgill.ca/semba.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3063, edam:topic_3474 ; @@ -430498,26 +456078,26 @@ SemBioNLQA - Semantic Biomedical Natural Language Question Answering - has the a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0582" ; - sc:name "Ontology" ; - sc:sameAs "http://edamontology.org/data_0582" ] ; + sc:additionalType "http://edamontology.org/data_0582" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Ontology" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0089, @@ -430537,7 +456117,7 @@ SemBioNLQA - Semantic Biomedical Natural Language Question Answering - has the a biotools:primaryContact "Ian Gonzalez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3474, @@ -430553,7 +456133,7 @@ SemBioNLQA - Semantic Biomedical Natural Language Question Answering - has the a sc:url "http://biogpu.ddns.comp.nus.edu.sg/~chipseq/SEME/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_2259, @@ -430568,8 +456148,27 @@ SemBioNLQA - Semantic Biomedical Natural Language Question Answering - has the a sc:softwareHelp ; sc:url "http://sbp.bhi.washington.edu/projects/semgen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0611, + edam:topic_3300, + edam:topic_3396 ; + sc:citation , + "pubmed:36040154" ; + sc:description "An R Package for Causal Network Inference of High-Throughput Data with Structural Equation Models." ; + sc:featureList edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SEMgraph" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://cran.r-project.org/web/packages/SEMgraph" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -430586,30 +456185,8 @@ SemBioNLQA - Semantic Biomedical Natural Language Question Answering - has the a sc:url "https://www.mathworks.com/matlabcentral/fileexchange/43010-semi-automatic-medical-image-3d-segmentation" ; biotools:primaryContact "Brad Moffat" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0659, - edam:topic_3168, - edam:topic_3474, - edam:topic_3512, - edam:topic_3518 ; - sc:citation , - "pmcid:PMC6805288", - "pubmed:31639051" ; - sc:description """A semi-supervised machine learning framework for microRNA classification. - -Semi-supervised Machine Learning Framework for MicroRNA Prediction. - -Semi-supervised machine learning integrated pipeline for miRNA prediction. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'semi-supervised', 'miRNA', 'less-sequenced', 'multi-stage'""" ; - sc:featureList edam:operation_0463, - edam:operation_3359, - edam:operation_3792 ; - sc:name "semi-supervised miRNA" ; - sc:url "https://github.com/GreenCUBIC/SSmiRNA" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -430630,7 +456207,7 @@ Semi-supervised machine learning integrated pipeline for miRNA prediction. sc:url "https://github.com/BigDataBiology/SemiBin/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0140, @@ -430644,7 +456221,7 @@ Semi-supervised machine learning integrated pipeline for miRNA prediction. sc:url "http://www.csbio.sjtu.edu.cn/bioinf/SemiBiomarker/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0749, @@ -430660,8 +456237,28 @@ Semi-supervised machine learning integrated pipeline for miRNA prediction. sc:name "SemiCompRisks" ; sc:url "https://cran.r-project.org/package=SemiCompRisks" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0769, + edam:topic_3172, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9280717", + "pubmed:35760399" ; + sc:description "Novel Workflow for Semiquantification of Emerging Contaminants in Environmental Samples Analyzed by Gas Chromatography-Atmospheric Pressure Chemical Ionization-Quadrupole Time of Flight-Mass Spectrometry." ; + sc:featureList edam:operation_3659, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "semiquantification" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://trams.chem.uoa.gr/semiquantification/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -430685,7 +456282,7 @@ Semi-supervised machine learning integrated pipeline for miRNA prediction. biotools:primaryContact "Armin Rauschenberger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293, @@ -430701,7 +456298,7 @@ Semi-supervised machine learning integrated pipeline for miRNA prediction. sc:url "http://www.cs.huji.ac.il/labs/compbio/semphy/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -430723,7 +456320,7 @@ Upload a genome in FASTA or GenBank format and predict metabolites. For detailed sc:url "http://sempi.pharmazie.uni-freiburg.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0749, edam:topic_3169, @@ -430742,7 +456339,7 @@ Implementation of the SEMplMe algorithm to integrate SEMpl with methylation data sc:url "https://github.com/Boyle-Lab/SEMplMe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -430759,7 +456356,7 @@ Implementation of the SEMplMe algorithm to integrate SEMpl with methylation data sc:url "https://github.com/hlju-liye/SENIES" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -430775,7 +456372,7 @@ Implementation of the SEMplMe algorithm to integrate SEMpl with methylation data sc:url "http://gofid.biologie.hu-berlin.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0202, edam:topic_0209, @@ -430797,7 +456394,7 @@ Cheminformatic Tools and Databases for Pharmacology.""" ; sc:url "https://chemoinfo.ipmc.cnrs.fr/SENSAAS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, edam:topic_3299, @@ -430821,7 +456418,7 @@ False negative rates. Lower is better. Each row correponds to a fixed number of sc:url "https://kchen-lab.github.io/sensei/table_beta.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -430838,7 +456435,7 @@ False negative rates. Lower is better. Each row correponds to a fixed number of sc:url "http://sensipath.micalis.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -430853,7 +456450,7 @@ False negative rates. Lower is better. Each row correponds to a fixed number of biotools:primaryContact "Anurag Banerjee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -430872,7 +456469,7 @@ False negative rates. Lower is better. Each row correponds to a fixed number of biotools:primaryContact "Zhicheng Ji" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0623 ; @@ -430886,7 +456483,7 @@ False negative rates. Lower is better. Each row correponds to a fixed number of sc:url "http://fred.bioinf.uni-sb.de/sepacs.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -430903,7 +456500,7 @@ False negative rates. Lower is better. Each row correponds to a fixed number of biotools:primaryContact "Alma Andersson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3382 ; sc:citation , @@ -430918,7 +456515,7 @@ In photon-limited imaging, the pixel intensities are affected by photon count no sc:url "http://github.com/zhizhenz/sepca/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -430932,7 +456529,7 @@ In photon-limited imaging, the pixel intensities are affected by photon count no sc:url "http://ibsquare.be/sephiroth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -430946,7 +456543,7 @@ In photon-limited imaging, the pixel intensities are affected by photon count no sc:url "http://anduril.org/sepia/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3168, edam:topic_3384, @@ -430964,7 +456561,7 @@ SEPIA is designed to provide a platform for easy access to different QSM process sc:url "https://github.com/kschan0214/sepia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workbench" ; sc:applicationSubCategory edam:topic_3293, @@ -430991,7 +456588,7 @@ Note that SEPIA can use any dataset produced by FAVITES: we just happened to reu biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204 ; @@ -431010,8 +456607,28 @@ Note that SEPIA can use any dataset produced by FAVITES: we just happened to reu sc:url "http://bioconductor.org/packages/release/bioc/html/SEPIRA.html" ; biotools:primaryContact "Yuting Chen" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2523" ; + sc:name "Phylogenetic data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3293 ; + sc:citation , + "pubmed:22174280" ; + sc:description "SEPP stands for SATé-Enabled Phylogenetic Placement and addresses the problem of phylogenetic placement for meta-genomic short reads" ; + sc:featureList edam:operation_0324 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "sepp" ; + sc:softwareHelp ; + sc:url "https://github.com/smirarab/sepp" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -431028,7 +456645,7 @@ Note that SEPIA can use any dataset produced by FAVITES: we just happened to reu sc:url "http://lifecenter.sgst.cn/seppa/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -431045,7 +456662,7 @@ Note that SEPIA can use any dataset produced by FAVITES: we just happened to reu biotools:primaryContact "SePreSA Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, edam:topic_0621, @@ -431066,22 +456683,22 @@ We are the Providers of Genome Analysis Software , Protein structure prediction a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3784" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174 ; sc:description "Tools to facilitate annotation and comparison of genomes and metagenomes" ; @@ -431097,7 +456714,7 @@ We are the Providers of Genome Analysis Software , Protein structure prediction sc:url "https://github.com/Brazelton-Lab/seq-annot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3053, @@ -431110,8 +456727,32 @@ We are the Providers of Genome Analysis Software , Protein structure prediction sc:softwareHelp ; sc:url "http://www.cs.tau.ac.il/~heran/cozygene/software/seqem.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0166, + edam:topic_0199, + edam:topic_0593, + edam:topic_3542 ; + sc:citation , + "pubmed:34849579" ; + sc:description "Directly exploiting multiple sequence alignment for protein secondary structure prediction." ; + sc:featureList edam:operation_0267, + edam:operation_0474, + edam:operation_0504, + edam:operation_2488, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Seq-SetNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/fusong-ju/Seq-SetNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0637, edam:topic_0659, @@ -431135,8 +456776,30 @@ MDA.mat-- a binary matrix that represents the known miRNA-disease association fr sc:name "Seq-SymRF" ; sc:url "https://github.com/LeeKamlong/Seq-SymRF" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0209, + edam:topic_0821, + edam:topic_2814, + edam:topic_3500 ; + sc:citation , + "pubmed:34624539" ; + sc:description "An application of mask BLAST methodology with a new chemical logic of amino acids for improved enzyme function prediction." ; + sc:featureList edam:operation_0267, + edam:operation_0476, + edam:operation_3431, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "Seq2Enz" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.scfbio-iitd.res.in" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0102, @@ -431157,7 +456820,7 @@ MDA.mat-- a binary matrix that represents the known miRNA-disease association fr biotools:primaryContact "Jianguo Xia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3308 ; @@ -431174,7 +456837,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie biotools:primaryContact "Sebastian Boegel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0781, @@ -431190,7 +456853,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie sc:url "http://bioinfo.ihb.ac.cn/seq2hosts/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0154, @@ -431211,18 +456874,18 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2725" ; - sc:name "Ensembl transcript ID" ; - sc:sameAs "http://edamontology.org/data_2725" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2725" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Ensembl transcript ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169, @@ -431246,7 +456909,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie "Xinan Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0108, @@ -431262,7 +456925,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie sc:url "http://prodata.swmed.edu/seq2ref/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3473, edam:topic_3474 ; @@ -431275,7 +456938,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie sc:url "https://github.com/salbrec/seqQscorer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -431299,14 +456962,14 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2205" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0797, @@ -431339,7 +457002,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie biotools:primaryContact "Mailing list answered by the developers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -431360,7 +457023,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -431372,7 +457035,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie sc:url "http://www.sequentix.de/software_seqassem.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3572 ; sc:citation , @@ -431388,7 +457051,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie sc:url "http://orca.st.usm.edu/cbbl/seqassist/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814, @@ -431406,7 +457069,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie biotools:primaryContact "SEQATOMs Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0769, @@ -431426,7 +457089,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie sc:url "http://www.icbi.at/software/seqbench/seqbench.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -431446,7 +457109,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie biotools:primaryContact "Daniel Jones" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3169, @@ -431462,7 +457125,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie biotools:primaryContact "Marco Beccuti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3308 ; @@ -431477,7 +457140,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie biotools:primaryContact "Lorena Pantano" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -431491,7 +457154,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie sc:url "https://code.google.com/p/seqcalc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168 ; @@ -431511,22 +457174,21 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2190" ; - sc:name "Sequence checksum" ; - sc:sameAs "http://edamontology.org/data_2190" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2190" ; + sc:name "Sequence checksum" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071 ; - sc:author "Web Production" ; - sc:citation ; + sc:author "Job Dispatcher" ; + sc:citation , + ; sc:description "Generation of checksums for protein and nucleotide sequences." ; sc:featureList edam:operation_3348 ; - sc:name "SeqCksum" ; + sc:name "SeqCksum (EBI)" ; sc:operatingSystem "Linux", "Mac", "Windows" ; @@ -431535,22 +457197,22 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/so/seqcksum/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ], + sc:additionalType "http://edamontology.org/data_1381" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (pair)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308 ; sc:author "Francisco Pantano Rubino", @@ -431573,7 +457235,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie sc:url "http://seqcluster.readthedocs.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640, @@ -431593,8 +457255,32 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie sc:url "http://bioconductor.org/packages/release/bioc/html/seqCNA.html" ; biotools:primaryContact "David Mosen-Ansorena" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3169, + edam:topic_3170, + edam:topic_3295, + edam:topic_3674 ; + sc:citation , + "pmcid:PMC8486768", + "pubmed:34599234" ; + sc:description "Productive visualization of high-throughput sequencing data using the SeqCode open portable platform." ; + sc:featureList edam:operation_0327, + edam:operation_0337, + edam:operation_3222, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SeqCode" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/eblancoga/seqcode" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "Provides useful functions for visualizing sequence recombination and virus reassortment events." ; @@ -431612,7 +457298,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie biotools:primaryContact "Guangchuang Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -431627,7 +457313,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie biotools:primaryContact "T. Rausch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -431641,7 +457327,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie sc:url "http://labs.oicr.on.ca/Boutros-lab/software/SeqControl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -431656,14 +457342,12 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -431694,7 +457378,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie sc:url "http://emboss.open-bio.org/rel/rel6/apps/seqcount.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -431710,7 +457394,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie sc:url "http://seqdepot.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0659, @@ -431728,7 +457412,7 @@ It takes standard RNA-Seq sequence reads in fastq format as input, uses a bowtie sc:url "https://github.com/htczero/SeqDistK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0632, edam:topic_0654, @@ -431746,7 +457430,7 @@ SeqEditor is a Sequence Browser for the management and analysis of nucleotide an sc:url "https://gpro.biotechvana.com/tool/seqeditor/manual" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625 ; sc:citation "pubmed:20861027" ; @@ -431757,7 +457441,7 @@ SeqEditor is a Sequence Browser for the management and analysis of nucleotide an biotools:primaryContact "M. Schmidt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0196, edam:topic_2229, @@ -431784,7 +457468,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; sc:url "https://github.com/wyp1125/SeqEnhDL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0622, @@ -431801,7 +457485,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; sc:url "http://sourceforge.net/projects/seqentropy/?source=navbar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203 ; @@ -431815,7 +457499,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; sc:url "http://www.seqexpress.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -431834,7 +457518,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; sc:url "https://github.com/mframpton/seqfam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -431856,7 +457540,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0194, @@ -431877,7 +457561,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; biotools:primaryContact "Pravech AJAWATANAWONG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099, @@ -431895,23 +457579,36 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2545" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2545" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0077, + edam:topic_0080 ; + sc:citation , + "pmcid:PMC8148589", + "pubmed:34066939" ; sc:description "A collection of utilities to manipulate FASTA and FASTQ files, supporting Gzipped input." ; sc:featureList edam:operation_3187, edam:operation_3695 ; sc:name "seqfu" ; sc:softwareHelp ; + sc:softwareVersion "1.10.0", + "1.11.0", + "1.12.0", + "1.13.0", + "1.14.0", + "1.15.0", + "1.16.0" ; sc:url "https://telatin.github.io/seqfu2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_2269, edam:topic_3170 ; @@ -431924,7 +457621,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; sc:url "https://cran.r-project.org/package=seqgendiff" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -431944,7 +457641,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0089, @@ -431963,14 +457660,16 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_3489 ; sc:citation ; sc:description "FASTA and FASTQ are basic and ubiquitous formats for storing nucleotide and protein sequences. Common manipulations of FASTA/Q file include converting, searching, filtering, deduplication, splitting, shuffling, and sampling. Existing tools only implement some of these manipulations, and not particularly efficiently, and some are only available for certain operating systems. Furthermore, the complicated installation process of required packages and running environments can render these programs less user friendly. SeqKit demonstrates competitive performance in execution time and memory usage compared to similar tools. The efficiency and usability of SeqKit enable researchers to rapidly accomplish common FASTA/Q file manipulations." ; sc:featureList edam:operation_0233, @@ -431981,7 +457680,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; sc:url "https://bioinf.shenwei.me/seqkit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -431999,7 +457698,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; biotools:primaryContact "Shujaat Khan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3068 ; @@ -432015,14 +457714,12 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:name "Sequence set (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3510, @@ -432044,14 +457741,12 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation ; @@ -432067,7 +457762,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; sc:url "https://github.com/raivokolde/seqlm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102 ; @@ -432085,7 +457780,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; biotools:primaryContact "Oliver Bembom" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0654, @@ -432102,7 +457797,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; biotools:primaryContact "Malcolm McLean" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3070, @@ -432119,7 +457814,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; biotools:primaryContact "Will Dampier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -432139,7 +457834,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; biotools:primaryContact "DNASTAR Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation "pubmed:18697769" ; @@ -432156,14 +457851,12 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -432193,7 +457886,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/seqmatchall.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -432205,7 +457898,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; sc:url "http://genius.embnet.dkfz-heidelberg.de/menu/hobit/embdoc/seqmatchall.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0102, @@ -432225,7 +457918,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; sc:url "http://bips.u-strasbg.fr/seqminer/tiki-index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053 ; @@ -432242,7 +457935,7 @@ Testing data can be download from http://www.bdxconsult.com/SeqEnhDL.""" ; sc:url "http://seqminer.genomic.codes/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_3337 ; @@ -432264,7 +457957,7 @@ vcf.idx.file <- "input.vcf.scIdx".""" ; sc:url "https://github.com/zhanxw/seqminer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3173 ; @@ -432284,7 +457977,7 @@ vcf.idx.file <- "input.vcf.scIdx".""" ; biotools:primaryContact "Simon Andrews" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -432295,7 +457988,7 @@ vcf.idx.file <- "input.vcf.scIdx".""" ; biotools:primaryContact "Jorge Fernandez-de-Coss" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -432311,7 +458004,7 @@ vcf.idx.file <- "input.vcf.scIdx".""" ; sc:url "http://seqmule.openbioinformatics.org/en/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -432332,7 +458025,7 @@ vcf.idx.file <- "input.vcf.scIdx".""" ; sc:url "https://github.com/tgrimes/SeqNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workbench" ; sc:applicationSubCategory edam:topic_0625, @@ -432351,7 +458044,7 @@ vcf.idx.file <- "input.vcf.scIdx".""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation ; sc:description """a self-consistent metric of similarity between genomic interval sets. @@ -432364,7 +458057,7 @@ Seqpare is a self-consistent metric and tool for comparing sequences based on th sc:url "https://github.com/deepstanding/seqpare" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0160 ; @@ -432383,22 +458076,22 @@ Seqpare is a self-consistent metric and tool for comparing sequences based on th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3005" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_3005" ; + sc:name "Feature table" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -432417,7 +458110,7 @@ Seqpare is a self-consistent metric and tool for comparing sequences based on th biotools:primaryContact "Przemyslaw Stempor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3168, @@ -432432,7 +458125,7 @@ Seqpare is a self-consistent metric and tool for comparing sequences based on th sc:url "http://bioinformatics.org/spower/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -432447,8 +458140,32 @@ Seqpare is a self-consistent metric and tool for comparing sequences based on th sc:url "https://github.com/jstjohn/SeqPrep" ; biotools:primaryContact "S. C. Zhang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0634, + edam:topic_0654, + edam:topic_3169, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8527647", + "pubmed:34670493" ; + sc:description "Fast activation maximization for molecular sequence design." ; + sc:featureList edam:operation_0479, + edam:operation_0480, + edam:operation_4008, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SeqProp" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.github.com/johli/seqprop" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -432470,7 +458187,7 @@ Seqpare is a self-consistent metric and tool for comparing sequences based on th biotools:primaryContact "GitHub Issues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, edam:topic_3168 ; @@ -432489,14 +458206,12 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -432528,22 +458243,18 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:author "EMBOSS", @@ -432565,14 +458276,12 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -432604,14 +458313,12 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -432642,7 +458349,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( sc:url "http://emboss.open-bio.org/rel/rel6/apps/seqretsplit.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320 ; @@ -432660,7 +458367,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( biotools:primaryContact "seqsaw team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0637, @@ -432680,14 +458387,14 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2571" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, @@ -432708,7 +458415,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( sc:url "http://www.broadinstitute.org/cgi-bin/cancer/publications/pub_paper.cgi?mode=view&paper_id=182" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3169 ; @@ -432727,7 +458434,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( biotools:primaryContact "Joseph R Boyd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -432745,7 +458452,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( sc:url "http://seqsimla.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169 ; sc:citation "pubmed:22784574" ; @@ -432761,7 +458468,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( "Xuegong Zhang (Corresponding)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3170, @@ -432778,7 +458485,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( biotools:primaryContact "ASEBIO Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3673, @@ -432797,7 +458504,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( biotools:primaryContact "Suzanne M. Leal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0797, edam:topic_3301 ; @@ -432814,7 +458521,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168 ; @@ -432831,7 +458538,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( biotools:primaryContact "Qian Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269, @@ -432849,7 +458556,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -432863,7 +458570,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( sc:url "http://public.lanl.gov/jgans/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -432879,7 +458586,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( sc:url "https://github.com/lh3/seqtk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "seqtk-trinity is a toolkit for processing sequences in FASTA/Q formats." ; @@ -432889,7 +458596,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( sc:url "https://github.com/trinityrnaseq/seqtk-trinity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080 ; @@ -432907,7 +458614,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( biotools:primaryContact "Wolfgang Kaisers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0654, @@ -432924,7 +458631,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( sc:url "https://code.google.com/p/seqtrace/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3168 ; @@ -432940,7 +458647,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -432955,7 +458662,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( sc:url "http://sgjlab.org/seqtrimmap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -432972,14 +458679,14 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -432992,7 +458699,7 @@ A "fully-qualified" identifier includes a namespace to disambiguate accessions ( biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3169, edam:topic_3170, @@ -433020,14 +458727,14 @@ Free document hosting provided by Read the Docs.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2854" ; - sc:name "Position-specific scoring matrix" ; - sc:sameAs "http://edamontology.org/data_2854" ] ; + sc:additionalType "http://edamontology.org/data_2854" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Position-specific scoring matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3316 ; @@ -433050,14 +458757,12 @@ Free document hosting provided by Read the Docs.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Workflow" ; sc:applicationSubCategory edam:topic_0080 ; @@ -433075,7 +458780,7 @@ Free document hosting provided by Read the Docs.""" ; biotools:primaryContact "Cokelaer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3174, @@ -433092,7 +458797,7 @@ Free document hosting provided by Read the Docs.""" ; biotools:primaryContact "Sequedex Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0780, edam:topic_3168 ; @@ -433112,7 +458817,7 @@ SequelTools is a fast and easy to install command-line program that provides a c sc:url "https://github.com/ISUgenomics/SequelTools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0196, @@ -433132,7 +458837,7 @@ SequelTools is a fast and easy to install command-line program that provides a c biotools:primaryContact "Turner Conrad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157, @@ -433155,14 +458860,14 @@ SequelTools is a fast and easy to install command-line program that provides a c a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0858" ; - sc:name "Sequence signature matches" ; - sc:sameAs "http://edamontology.org/data_0858" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0858" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence signature matches" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:author "Thomas Haschka" ; @@ -433179,7 +458884,7 @@ SequelTools is a fast and easy to install command-line program that provides a c biotools:primaryContact "Thomas Haschka" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -433196,7 +458901,7 @@ SequelTools is a fast and easy to install command-line program that provides a c sc:url "http://ww3.comsats.edu.pk/bio/SequenceManeuverer.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -433209,8 +458914,26 @@ SequelTools is a fast and easy to install command-line program that provides a c "Windows" ; sc:url "http://athena.bioc.uvic.ca/virology-ca-tools/sequence-searcher/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_2229, + edam:topic_3053 ; + sc:citation , + "pubmed:34875773" ; + sc:description "Concatenation software for the fast assembly of multi-gene datasets with character set and codon information." ; + sc:featureList edam:operation_0310 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "SequenceMatrix" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.ggvaidya.com/taxondna/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2229, @@ -433227,18 +458950,17 @@ SequelTools is a fast and easy to install command-line program that provides a c a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ], + sc:additionalType "http://edamontology.org/data_0867" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence alignment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091 ; sc:author "WurmLab" ; @@ -433258,7 +458980,7 @@ SequelTools is a fast and easy to install command-line program that provides a c "Yannick Wurm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -433273,7 +458995,7 @@ SequelTools is a fast and easy to install command-line program that provides a c sc:url "http://www.omicsexpress.com/sva.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation ; @@ -433288,7 +459010,7 @@ SequelTools is a fast and easy to install command-line program that provides a c "Technical support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3344, @@ -433306,7 +459028,7 @@ SequelTools is a fast and easy to install command-line program that provides a c biotools:primaryContact "Ismael Huertas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170 ; @@ -433322,7 +459044,7 @@ SequelTools is a fast and easy to install command-line program that provides a c sc:url "http://fafner.meb.ki.se/personal/yudpaw/?page_id=13" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3673, edam:topic_3676 ; @@ -433338,7 +459060,7 @@ SequelTools is a fast and easy to install command-line program that provides a c sc:url "https://github.com/biodatageeks/sequila" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -433353,7 +459075,7 @@ SequelTools is a fast and easy to install command-line program that provides a c sc:url "http://www.ysbl.york.ac.uk/~cowtan/sequins/sequins.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pmcid:PMC7324041" ; sc:description """A Playground for Logicians. @@ -433377,7 +459099,7 @@ Bower (note that Bower can be installed via npm once Node.js is installed).""" ; sc:url "https://github.com/meta-logic/sequoia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0091, @@ -433404,7 +459126,7 @@ Bower (note that Bower can be installed via npm once Node.js is installed).""" ; sc:url "https://github.com/dnonatar/Sequoia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, edam:topic_3372 ; @@ -433420,7 +459142,7 @@ Sequoya is an open source software tool aimed at for solving Multiple Sequence A sc:url "https://github.com/benhid/Sequoya" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199 ; @@ -433440,7 +459162,7 @@ Sequoya is an open source software tool aimed at for solving Multiple Sequence A "Xiuwen Zheng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, @@ -433465,7 +459187,7 @@ Sequoya is an open source software tool aimed at for solving Multiple Sequence A "Zhiping Weng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web API", "Workbench" ; @@ -433492,7 +459214,7 @@ Sequoya is an open source software tool aimed at for solving Multiple Sequence A "Denis Yuen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157, edam:topic_3168 ; @@ -433510,7 +459232,7 @@ Sequoya is an open source software tool aimed at for solving Multiple Sequence A sc:url "https://github.com/DaehwanKimLab/seqwho" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Featherweight object for the calculation of n-mer word occurrences in a single sequence." ; @@ -433524,14 +459246,12 @@ Sequoya is an open source software tool aimed at for solving Multiple Sequence A a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:name "Data reference" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -433562,14 +459282,12 @@ Sequoya is an open source software tool aimed at for solving Multiple Sequence A a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:name "Data reference" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3077 ; sc:citation , @@ -433599,7 +459317,7 @@ Sequoya is an open source software tool aimed at for solving Multiple Sequence A sc:url "http://emboss.open-bio.org/rel/rel6/apps/seqxrefget.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_2269, edam:topic_3299 ; @@ -433613,7 +459331,7 @@ Sequoya is an open source software tool aimed at for solving Multiple Sequence A sc:url "https://github.com/rosalieb/serac" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -433627,7 +459345,7 @@ Sequoya is an open source software tool aimed at for solving Multiple Sequence A sc:url "http://www.geneontology.org/GO.tools.microarray.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, edam:topic_0602, @@ -433648,7 +459366,7 @@ SERGIO is a simulator for single-cell expression data guided by gene regulatory sc:url "https://github.com/PayamDiba/SERGIO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -433663,7 +459381,7 @@ SERGIO is a simulator for single-cell expression data guided by gene regulatory biotools:primaryContact "Sayed Meysam Hosseini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3452 ; sc:citation ; @@ -433677,8 +459395,35 @@ SERGIO is a simulator for single-cell expression data guided by gene regulatory sc:softwareVersion "3.4.8" ; sc:url "http://bio3d.colorado.edu/SerialEM/index.html" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1413" ; + sc:name "Sequence similarity" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102 ; + sc:citation , + "pmcid:PMC4508402", + "pubmed:25972421" ; + sc:description "SerotypeFinder identifies the serotype in total or partial sequenced isolates of E. coli." ; + sc:featureList edam:operation_3198 ; + sc:isAccessibleForFree true ; + sc:name "SerotypeFinder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "2.0" ; + sc:url "https://cge.cbs.dtu.dk/services/SerotypeFinder/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0108, edam:topic_0157, @@ -433702,8 +459447,30 @@ Executing the command serpentine --help will give you a brief help of the comman sc:softwareHelp ; sc:url "https://github.com/koszullab/serpentine" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0625, + edam:topic_0634, + edam:topic_3320, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9277798", + "pubmed:35821062" ; + sc:description "Mutation update of SERPING1 related to hereditary angioedema in the Chinese population" ; + sc:featureList edam:operation_3196, + edam:operation_3225, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:name "SERPING1" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://databases.lovd.nl/shared/variants/SERPING1" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0654, edam:topic_0736, @@ -433720,7 +459487,7 @@ SerraNA is composed by three executables: SerraNA, Analysis and Extract.""" ; sc:url "https://github.com/agnesnoy/SerraNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0611, @@ -433738,10 +459505,9 @@ SerraNA is composed by three executables: SerraNA, Analysis and Extract.""" ; a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -433771,7 +459537,7 @@ SerraNA is composed by three executables: SerraNA, Analysis and Extract.""" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/servertell.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -433797,7 +459563,7 @@ SerraNA is composed by three executables: SerraNA, Analysis and Extract.""" ; biotools:primaryContact "Hongyi Zhou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3314, edam:topic_3315 ; @@ -433814,7 +459580,7 @@ Sesame is an open source drift-diffusion-Poisson solver in one and two dimension sc:url "https://pages.nist.gov/sesame/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation ; @@ -433833,7 +459599,7 @@ Sesame is an open source drift-diffusion-Poisson solver in one and two dimension sc:url "http://sysimm.ifrec.osaka-u.ac.jp/sesaw.2.0/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593, edam:topic_2828, edam:topic_3306, @@ -433857,8 +459623,27 @@ Electronic circular dichroism (CD) spectroscopy is highly sensitive to changes i sc:name "SESCA" ; sc:url "https://www.mpibpc.mpg.de/sesca" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_3382, + edam:topic_3474, + edam:topic_3500, + edam:topic_3855 ; + sc:citation , + "pubmed:35689888" ; + sc:description "A machine learning and image analysis based application to automate the sea urchin embryo test." ; + sc:featureList edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SETApp" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/UPV-EHU-IBeA/SETApp" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2830, edam:topic_3306, @@ -433873,7 +459658,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on sc:url "https://github.com/wonanut/SETE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3794 ; @@ -433891,8 +459676,19 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on biotools:primaryContact "Gungor Budak", "Sarath Chandra Janga" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:citation ; + sc:description "SETH is a novel method that predicts residue disorder from embeddings generated by the protein Language Model ProtT5, which explicitly only uses single sequences as input." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SETH_1" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/DagmarIlz/SETH" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -433908,14 +459704,13 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0881" ; - sc:name "Secondary structure alignment (RNA)" ; - sc:sameAs "http://edamontology.org/data_0881" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0881" ; + sc:name "Secondary structure alignment (RNA)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099 ; @@ -433945,14 +459740,14 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168 ; @@ -433969,8 +459764,18 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on sc:url "https://galaxy.pasteur.fr/tool_runner?tool_id=toolshed.pasteur.fr/repos/fmareuil/promoteur_tools/setuppromoter/1.0" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "Seurat is an R package designed for QC, analysis, and exploration of single-cell RNA-seq data. Seurat aims to enable users to identify and interpret sources of heterogeneity from single-cell transcriptomic measurements, and to integrate diverse types of single-cell data." ; + sc:isAccessibleForFree true ; + sc:name "Seurat" ; + sc:softwareHelp , + ; + sc:url "https://satijalab.org/seurat/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -433988,7 +459793,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on biotools:primaryContact "Nan Xiao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085, edam:topic_3169, @@ -434011,7 +459816,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on biotools:primaryContact "Jonas Ibn-Salem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092 ; @@ -434025,7 +459830,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on biotools:primaryContact "Pitt JN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -434046,7 +459851,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on biotools:primaryContact "Malay K Basu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3173, edam:topic_3399, @@ -434060,7 +459865,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on sc:url "https://immune-aging.jax.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0623, @@ -434075,7 +459880,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on sc:url "http://sourceforge.net/projects/spa-assembler/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2269, @@ -434095,7 +459900,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on sc:url "http://www.ccp4.ac.uk/html/sfcheck.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2885, @@ -434111,7 +459916,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on sc:url "http://fisher.utstat.toronto.edu/sun/Software/SFDR/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -434128,7 +459933,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on sc:url "http://prodata.swmed.edu/sfesa/sfesa.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -434142,7 +459947,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on biotools:primaryContact "Indraniel Das" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091 ; sc:description "SFF Workbench (Standard flowgram format , SFF Tools) is an easy to use SFF file viewer, editor and converter. It is the first and only SFF editor with graphic interface on the entire bioinformatics market! With this tool we wanted to help the biologists to concentrate on their work instead of wasting time poking commands in an obscure text console." ; @@ -434155,14 +459960,12 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -434179,7 +459982,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on sc:url "http://sfinx.ugent.be/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3125, @@ -434202,7 +460005,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on biotools:primaryContact "SFmap Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -434224,7 +460027,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on sc:url "https://bioconductor.org/packages/MEB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0130, @@ -434244,7 +460047,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3068 ; @@ -434258,7 +460061,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056, @@ -434274,7 +460077,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on sc:url "http://sfscode.sourceforge.net/SFS_CODE/index/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659 ; sc:citation ; @@ -434286,7 +460089,7 @@ SETE is a novel lightweight TCR's binding Antigen prediction algorithm based on biotools:primaryContact "Ali Torkamani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3474, edam:topic_3520 ; @@ -434302,7 +460105,7 @@ Although group convolutions are increasingly used on deep convolutional neural n sc:url "https://github.com/QingbeiGuo/SG-CNN.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, edam:topic_3474 ; @@ -434315,7 +460118,7 @@ Although group convolutions are increasingly used on deep convolutional neural n sc:url "https://github.com/Xshelton/SG_LSTM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -434331,7 +460134,7 @@ Although group convolutions are increasingly used on deep convolutional neural n biotools:primaryContact "Jared Simpson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -434348,7 +460151,7 @@ Although group convolutions are increasingly used on deep convolutional neural n biotools:primaryContact "SGAtools Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -434374,8 +460177,29 @@ Although group convolutions are increasingly used on deep convolutional neural n sc:softwareHelp ; sc:url "http://www.yeastgenome.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3384, + edam:topic_3444, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9123273", + "pubmed:35597030" ; + sc:description "Semantic segmentation guided detector for segmentation, classification, and lesion mapping of acute ischemic stroke in MRI images." ; + sc:featureList edam:operation_0479, + edam:operation_3096, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SGD-Net" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/IlikeBB/SGD-Net" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -434390,7 +460214,7 @@ Although group convolutions are increasingly used on deep convolutional neural n sc:url "http://www.personal.psu.edu/nxm2/sgi2.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3172, @@ -434405,16 +460229,36 @@ Although group convolutions are increasingly used on deep convolutional neural n sc:url "https://github.com/krumsieklab/sgi" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0659, + edam:topic_2815, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8978670", + "pubmed:35386279" ; + sc:description "Systematic Identification of Essential lncRNAs in Mouse and Human Genome With lncRNA-Protein-Protein Heterogeneous Interaction Network." ; + sc:featureList edam:operation_3431, + edam:operation_3435, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SGII" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ninglolo/SGII" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3511 ; @@ -434439,13 +460283,13 @@ Although group convolutions are increasingly used on deep convolutional neural n biotools:primaryContact "Francisco Camara" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Sgppools adalah agen judi togel online singapore 4D terbaik Indonesia dengan data keluaran prize 4d sgp pools online resmi melaui wla singapura. Link daftar bandar toto singapore pools serta agen judi togel sgp pool keluaran hari ini tercepat. Agen sgp pools menyediakan data pengeluaran singapore paling lengkap dan mudah di dapatkan. Situs toto sgp pools dengan diskon bettingan singapura 4d terbesar di Indonesia. Pengeluaran sgp hari ini tercepat, data pengeluaran sgp pools online hari ini, prediksi jitu sgp pools online, data keluaran togel sgp pools 4d, situs togel online sgp pools terpercaya." ; sc:name "Sgppools - Sgp Pools 4D - Data Sgp Prize - Togel Sgp Online" ; sc:url "https://ipabindia.org/sgp-pools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3895, edam:topic_3912 ; @@ -434460,7 +460304,7 @@ Although group convolutions are increasingly used on deep convolutional neural n sc:url "http://bliulab.net/sgRNA-PSM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -434476,7 +460320,7 @@ Although group convolutions are increasingly used on deep convolutional neural n sc:url "https://github.com/nmt315320/sgRNACNN.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -434499,18 +460343,18 @@ Although group convolutions are increasingly used on deep convolutional neural n a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ], + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Heat map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170, @@ -434531,7 +460375,7 @@ Although group convolutions are increasingly used on deep convolutional neural n biotools:primaryContact "Leonard Goldstein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0122, edam:topic_0154, @@ -434549,7 +460393,7 @@ Although group convolutions are increasingly used on deep convolutional neural n biotools:primaryContact "A. P. C. Rodrigues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -434565,7 +460409,7 @@ SGTPy is an open-source python package of SAFT-VR-Mie Equation of State (EOS). S sc:url "https://github.com/gustavochm/SGTPy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0625, @@ -434582,7 +460426,7 @@ SMac: Secure Genotype Imputation in Intel SGX.""" ; sc:url "https://github.com/ndokmai/sgx-genotype-imputation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -434606,8 +460450,29 @@ SMac: Secure Genotype Imputation in Intel SGX.""" ; sc:url "http://cbm.bio.uniroma2.it/SH3-Hunter/" ; biotools:primaryContact "Enrico Ferraro" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence record" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1872" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Taxonomic classification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3050 ; + sc:description "UNITE SH matching analysis is a digital service for the global species discovery from eDNA (environmental DNA). SH matching service is based on the UNITE (https://unite.ut.ee) datasets hosted in PlutoF (https://plutof.ut.ee). Its output includes information about what species are present in eDNA samples, are they potentially undescribed new species, where are they found in other studies, are they alien or threatened species, etc. The output will provide DOI (Digital Object Identifier) based stable identifiers for the communicating species found in eDNA. DOIs are connected to the taxonomic backbone of PlutoF and GBIF (https://gbif.org)." ; + sc:featureList edam:operation_3460 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-SA-4.0" ; + sc:name "SH matching" ; + sc:operatingSystem "Linux" ; + sc:softwareVersion "1.0.0" ; + sc:url "https://github.com/TU-NHM/sh_matching_pub" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3293, edam:topic_3407 ; @@ -434625,7 +460490,7 @@ A python implementation of a hybrid approach for the detection of horizontal gen sc:url "https://github.com/dani2s/ShadowCaster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, @@ -434641,7 +460506,7 @@ A python implementation of a hybrid approach for the detection of horizontal gen sc:url "http://users.abo.fi/mivainio/shaep/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2640, edam:topic_3673, @@ -434660,14 +460525,13 @@ shallowHRD is a R script that can be launched from the command line. It relies o a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174 ; sc:author "Amine Ghozlane", @@ -434695,7 +460559,7 @@ shallowHRD is a R script that can be launched from the command line. It relies o biotools:primaryContact "SHAMAN team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0821, edam:topic_2258, edam:topic_3343, @@ -434708,14 +460572,14 @@ shallowHRD is a R script that can be launched from the command line. It relies o a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2301" ; - sc:name "SMILES string" ; - sc:sameAs "http://edamontology.org/data_2301" ] ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "SMILES string" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0209, edam:topic_0602, @@ -434736,7 +460600,7 @@ shallowHRD is a R script that can be launched from the command line. It relies o sc:url "https://metstab-shap.matinf.uj.edu.pl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0611, edam:topic_2275, @@ -434752,7 +460616,7 @@ shallowHRD is a R script that can be launched from the command line. It relies o sc:url "http://shape.rcsb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3516 ; @@ -434768,7 +460632,7 @@ shallowHRD is a R script that can be launched from the command line. It relies o sc:url "https://mathgen.stats.ox.ac.uk/genetics_software/shapeit/shapeit.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -434789,8 +460653,34 @@ shallowHRD is a R script that can be launched from the command line. It relies o "Windows" ; sc:url "http://rna.physics.missouri.edu/shaper/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0084, + edam:topic_0097, + edam:topic_0099, + edam:topic_0632 ; + sc:citation , + "pubmed:35641016" ; + sc:description "A fully probabilistic method for detecting conserved RNA structure features supported by SHAPE evidence." ; + sc:featureList edam:operation_0278, + edam:operation_0502, + edam:operation_0570, + edam:operation_2422, + edam:operation_2441 ; + sc:isAccessibleForFree true ; + sc:name "ShapeSorter" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.e-rna.org/shapesorter" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation "pubmed:17908823" ; @@ -434805,7 +460695,7 @@ shallowHRD is a R script that can be launched from the command line. It relies o biotools:primaryContact "Max Planck Institute for Molecular Genetics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3383, @@ -434824,7 +460714,7 @@ shallowHRD is a R script that can be launched from the command line. It relies o sc:url "https://shareloc.xyz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -434847,7 +460737,7 @@ shallowHRD is a R script that can be launched from the command line. It relies o sc:url "https://github.com/alexw16/sharenet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3308, @@ -434868,8 +460758,38 @@ Processing 1.3 Million Single Cells.""" ; sc:name "SHARP" ; sc:url "https://github.com/shibiaowan/SHARP" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence assembly" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence assembly" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Suite" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0622 ; + sc:citation , + "pmcid:PMC7483855", + "pubmed:32686750" ; + sc:description "De novo assembly from Oxford Nanopore reads." ; + sc:featureList edam:operation_0525 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Shasta" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + , + ; + sc:url "https://github.com/chanzuckerberg/shasta" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -434889,7 +460809,7 @@ Processing 1.3 Million Single Cells.""" ; biotools:primaryContact "Contact list" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3837 ; sc:citation "pubmed:20676378" ; @@ -434902,7 +460822,7 @@ Processing 1.3 Million Single Cells.""" ; "Shandrina Burns" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -434917,7 +460837,7 @@ Processing 1.3 Million Single Cells.""" ; sc:url "http://vk.cs.umn.edu/SHEAR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0166, @@ -434934,12 +460854,20 @@ Processing 1.3 Million Single Cells.""" ; sc:url "http://mouse.belozersky.msu.ru/~evgeniy/cgi-bin/proton/proton.php?subproj=sheep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0154, edam:topic_1317 ; - sc:citation ; + sc:citation , + , + , + , + , + "pubmed:12351820", + "pubmed:18156677", + "pubmed:20383001", + "pubmed:25567568" ; sc:description "Suite of programs for small molecule crystallography, direct method and refinement." ; sc:featureList edam:operation_0474 ; sc:isAccessibleForFree true ; @@ -434952,8 +460880,30 @@ Processing 1.3 Million Single Cells.""" ; sc:softwareVersion "1" ; sc:url "https://shelx.uni-goettingen.de/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0654, + edam:topic_2640, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC9344852", + "pubmed:35708611" ; + sc:description "Accurate Clustering for Correcting DNA Barcode Errors." ; + sc:featureList edam:operation_3200, + edam:operation_3432, + edam:operation_3472 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Shepherd" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.github.com/Nik-Tavakolian/Shepherd" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -434963,7 +460913,7 @@ Processing 1.3 Million Single Cells.""" ; sc:url "http://proteomics.broadinstitute.org/millhtml/batchsherengaframe.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2259, edam:topic_3071 ; @@ -434977,7 +460927,7 @@ Processing 1.3 Million Single Cells.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -434993,7 +460943,7 @@ Processing 1.3 Million Single Cells.""" ; biotools:primaryContact "Simon Andrews" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0593, edam:topic_3314 ; @@ -435008,7 +460958,7 @@ Shermo is essentially open-source. The source code (written in Fortran) can be f sc:url "http://sobereva.com/soft/shermo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0593, @@ -435024,7 +460974,7 @@ Shermo is essentially open-source. The source code (written in Fortran) can be f sc:url "http://shifty.wishartlab.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0601, @@ -435045,7 +460995,7 @@ These are the oxidised thioredoxins shown in the ShiftCrypt paper, the first one sc:url "http://www.bio2byte.be/shiftcrypt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -435062,7 +461012,7 @@ These are the oxidised thioredoxins shown in the ShiftCrypt paper, the first one sc:url "http://wishart.biology.ualberta.ca/shiftor/cgi-bin/shiftor_1f.py" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0593, @@ -435078,7 +461028,7 @@ These are the oxidised thioredoxins shown in the ShiftCrypt paper, the first one sc:url "http://shifty.wishartlab.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -435100,7 +461050,7 @@ This is a tool that is used to identify differentiate Shigella/EIEC using cluste sc:url "https://github.com/LanLab/ShigEiFinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, edam:topic_3489, @@ -435117,7 +461067,7 @@ La forge Enseignement supérieur et Recherche.""" ; sc:url "https://sourcesup.renater.fr/projects/shinemas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_3170, @@ -435132,7 +461082,7 @@ La forge Enseignement supérieur et Recherche.""" ; sc:url "https://github.com/sufangwang-npu/shiny-DEG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, edam:topic_3170, @@ -435150,7 +461100,7 @@ Abstract Objective A comprehensive analysis of RNA-Seq data uses a wide range of sc:url "https://beta.fastgenomics.org/analyses/detail-analysis-25cfdf63ed984ac3a3101de6b9253f0a#Run" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, edam:topic_3299, @@ -435170,7 +461120,7 @@ Shiny-SoSV provides an interactive and visual platform for users to easily explo sc:url "https://hcpcg.shinyapps.io/Shiny-SoSV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2269, edam:topic_3382 ; @@ -435188,7 +461138,7 @@ shinyBN is an R/Shiny application for interactive construction, inference and vi sc:url "https://jiajin.shinyapps.io/shinyBN/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, @@ -435207,7 +461157,7 @@ shinyBN is an R/Shiny application for interactive construction, inference and vi sc:url "https://github.com/EskelandLab/ShinyArchRUiO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3170, edam:topic_3382 ; @@ -435227,7 +461177,7 @@ ButchR is an R package providing functions to perform non-negative matrix factor sc:url "https://hdsu-bioquant.shinyapps.io/shinyButchR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170 ; @@ -435243,7 +461193,7 @@ ShinyCell is a R package that allows users to create interactive Shiny-based web sc:url "https://github.com/SGDDNB/ShinyCell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0622, edam:topic_0654, @@ -435264,7 +461214,7 @@ interactive creation of non-circular whole genome diagram.""" ; sc:url "https://yimingyu.shinyapps.io/shinychromosome/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -435282,7 +461232,7 @@ interactive creation of non-circular whole genome diagram.""" ; "Yidan Ouyang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, edam:topic_3519 ; @@ -435297,7 +461247,7 @@ Quantitative RT-PCR amplification has been the gold-standard tool for viral dete sc:url "https://biosol.shinyapps.io/shinycurves/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, @@ -435321,7 +461271,7 @@ A resource of data and computational tools to expose the vulnerabilities of canc sc:url "https://labsyspharm.shinyapps.io/depmap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3056, edam:topic_3697 ; @@ -435336,7 +461286,7 @@ A resource of data and computational tools to expose the vulnerabilities of canc sc:url "https://erictleung.shinyapps.io/shinydiversity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Web API" ; @@ -435365,7 +461315,7 @@ DNAMethylation, DifferentialMethylation, Microarray, Preprocessing, QualityContr sc:url "http://bioconductor.org/packages/shinyepico/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -435383,7 +461333,7 @@ DNAMethylation, DifferentialMethylation, Microarray, Preprocessing, QualityContr sc:url "http://gdancik.github.io/shinyGEO/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0203, @@ -435403,10 +461353,9 @@ DNAMethylation, DifferentialMethylation, Microarray, Preprocessing, QualityContr a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3273" ; - sc:name "Sample ID" ; - sc:sameAs "http://edamontology.org/data_3273" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3273" ; + sc:name "Sample ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2269 ; @@ -435420,7 +461369,7 @@ DNAMethylation, DifferentialMethylation, Microarray, Preprocessing, QualityContr sc:url "https://fedematt.shinyapps.io/shinyMB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3295, @@ -435443,7 +461392,7 @@ DNAMethylation, DifferentialMethylation, Microarray, Preprocessing, QualityContr biotools:primaryContact "Jean-Philippe Fortin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_3170, @@ -435466,8 +461415,26 @@ ShinyOmics: Exploration of 'Omics' data.""" ; sc:name "ShinyOmics" ; sc:url "http://bioinformatics.bc.edu/shiny/ShinyOmics/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_2815 ; + sc:citation , + "pubmed:35015561" ; + sc:description "User-Friendly R Shiny Application for Visualizing Cancer Risk Factors and Mortality Across the University of Kansas Cancer Center Catchment Area." ; + sc:featureList edam:operation_0337, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "shinyOPTIK" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://optik.shinyapps.io/OPTIK" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_2258, @@ -435485,7 +461452,7 @@ help the user assess the quality of the spectra.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -435498,8 +461465,26 @@ help the user assess the quality of the spectra.""" ; "Windows" ; sc:url "http://bbisr.shinyapps.winship.emory.edu/shinySISPA/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0654, + edam:topic_3382 ; + sc:citation , + "pubmed:35866686" ; + sc:description "A Shiny/R application for the interactive visualization and integration of macro- and micro-synteny data." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ShinySyn" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/obenno/ShinySyn" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -435517,7 +461502,7 @@ help the user assess the quality of the spectra.""" ; biotools:primaryContact "Frederic Fournier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -435534,10 +461519,10 @@ help the user assess the quality of the spectra.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0623, @@ -435563,22 +461548,22 @@ It searches your query sequence against a database of gene families and provides a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ], + sc:additionalType "http://edamontology.org/data_1863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Haplotype map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1863" ; - sc:name "Haplotype map" ; - sc:sameAs "http://edamontology.org/data_1863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Genotype/phenotype report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3168, @@ -435612,7 +461597,7 @@ It searches your query sequence against a database of gene families and provides sc:url "https://github.com/cbg-ethz/shorah" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation "pubmed:18818371" ; @@ -435627,7 +461612,7 @@ It searches your query sequence against a database of gene families and provides "Stephan Ossowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -435647,7 +461632,7 @@ It searches your query sequence against a database of gene families and provides "Korbinian Schneeberger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3308, @@ -435662,7 +461647,7 @@ It searches your query sequence against a database of gene families and provides biotools:primaryContact "Marcus Kinsella" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168 ; @@ -435685,7 +461670,7 @@ It searches your query sequence against a database of gene families and provides biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation "pubmed:19208115" ; @@ -435699,7 +461684,7 @@ It searches your query sequence against a database of gene families and provides "Chandrakanth Reddy B" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -435715,7 +461700,7 @@ It searches your query sequence against a database of gene families and provides sc:url "http://www.bork.embl-heidelberg.de/~korbel/SHOT_v2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168, @@ -435731,7 +461716,7 @@ It searches your query sequence against a database of gene families and provides sc:url "https://yunliweb.its.unc.edu//shotgun.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769 ; sc:citation ; @@ -435749,14 +461734,14 @@ Using the external software shournal-to-snakemake an observed shell-command-seri a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -435782,7 +461767,7 @@ Using the external software shournal-to-snakemake an observed shell-command-seri sc:url "https://github.com/tseemann/shovill" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -435800,26 +461785,21 @@ Using the external software shournal-to-snakemake an observed shell-command-seri a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_1364" ; + sc:name "Hidden Markov model" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_1364" ; + sc:name "Hidden Markov model" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation ; @@ -435838,18 +461818,15 @@ Using the external software shournal-to-snakemake an observed shell-command-seri a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_1249" ; + sc:name "Sequence length" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1249" ; - sc:name "Sequence length" ; - sc:sameAs "http://edamontology.org/data_1249" ] ; + sc:additionalType "http://edamontology.org/data_1364" ; + sc:name "Hidden Markov model" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation ; @@ -435866,18 +461843,15 @@ Using the external software shournal-to-snakemake an observed shell-command-seri a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1364" ; - sc:name "Hidden Markov model" ; - sc:sameAs "http://edamontology.org/data_1364" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_1364" ; + sc:name "Hidden Markov model" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation ; @@ -435895,18 +461869,15 @@ Using the external software shournal-to-snakemake an observed shell-command-seri a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ] ; + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -435937,7 +461908,7 @@ Using the external software shournal-to-snakemake an observed shell-command-seri sc:url "http://emboss.open-bio.org/rel/rel6/apps/showalign.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -435953,10 +461924,9 @@ Using the external software shournal-to-snakemake an observed shell-command-seri a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -435987,14 +461957,12 @@ Using the external software shournal-to-snakemake an observed shell-command-seri a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -436025,14 +461993,12 @@ Using the external software shournal-to-snakemake an observed shell-command-seri a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -436065,14 +462031,12 @@ Using the external software shournal-to-snakemake an observed shell-command-seri a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation , @@ -436103,14 +462067,12 @@ Using the external software shournal-to-snakemake an observed shell-command-seri a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -436143,10 +462105,9 @@ Using the external software shournal-to-snakemake an observed shell-command-seri a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -436176,7 +462137,7 @@ Using the external software shournal-to-snakemake an observed shell-command-seri sc:url "http://emboss.open-bio.org/rel/rel6/apps/showserver.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -436193,7 +462154,7 @@ Using the external software shournal-to-snakemake an observed shell-command-seri biotools:primaryContact "Schröder J" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -436208,7 +462169,7 @@ Using the external software shournal-to-snakemake an observed shell-command-seri biotools:primaryContact "Shrimp Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0219, @@ -436227,16 +462188,36 @@ Using the external software shournal-to-snakemake an observed shell-command-seri sc:url "http://shrimpgpat.sc.mahidol.ac.th/ShrimpGPATV2/" ; biotools:primaryContact "Contact form" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Alignment" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0102 ; + sc:description "C++ program to shrink the SAM file after a read-mapping" ; + sc:featureList edam:operation_0233 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "shrinksam" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bcthomas/shrinksam" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -436266,7 +462247,7 @@ Using the external software shournal-to-snakemake an observed shell-command-seri sc:url "http://emboss.open-bio.org/rel/rel6/apps/shuffleseq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3512, edam:topic_3523 ; @@ -436283,22 +462264,22 @@ Using the external software shournal-to-snakemake an observed shell-command-seri a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2914" ; - sc:name "Sequence features metadata" ; - sc:sameAs "http://edamontology.org/data_2914" ] ; + sc:additionalType "http://edamontology.org/data_2914" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence features metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0622, @@ -436324,7 +462305,7 @@ Using the external software shournal-to-snakemake an observed shell-command-seri biotools:primaryContact "Georg Zeller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3332, @@ -436342,14 +462323,12 @@ Using the external software shournal-to-snakemake an observed shell-command-seri a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2275, @@ -436368,7 +462347,7 @@ Using the external software shournal-to-snakemake an observed shell-command-seri biotools:primaryContact "Ralf Bundschuh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -436385,7 +462364,7 @@ Using the external software shournal-to-snakemake an observed shell-command-seri biotools:primaryContact "Sibelia team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0102, edam:topic_0196, @@ -436405,7 +462384,7 @@ SibeliaZ is a whole-genome alignment and locally-coliinear blocks construction p sc:url "https://github.com/medvedevgroup/SibeliaZ/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0091, edam:topic_0769, @@ -436425,7 +462404,7 @@ COVID-19 outbreak: explore our literature triage interface and APIs.""" ; sc:url "https://candy.hesge.ch/SIBiLS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -436440,7 +462419,7 @@ COVID-19 outbreak: explore our literature triage interface and APIs.""" ; sc:url "http://www.lbgi.fr/~julie/SIBIS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -436454,7 +462433,7 @@ COVID-19 outbreak: explore our literature triage interface and APIs.""" ; sc:url "http://dmpi.duke.edu/siblink-v-30" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -436474,7 +462453,7 @@ COVID-19 outbreak: explore our literature triage interface and APIs.""" ; sc:url "http://csg.sph.umich.edu/boehnke/sibmed.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3308 ; @@ -436488,7 +462467,7 @@ COVID-19 outbreak: explore our literature triage interface and APIs.""" ; biotools:primaryContact "Christian Iseli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0769, edam:topic_3474, @@ -436506,7 +462485,7 @@ Despite impressive improvement in the next-generation sequencing technology, rel sc:url "https://bitbucket.org/islam2059/sicario/src/master/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3173 ; @@ -436521,14 +462500,14 @@ Despite impressive improvement in the next-generation sequencing technology, rel a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3572 ; sc:description "A tool that uses sliding windows along with quality and length thresholds to determine when quality is sufficiently low to trim the 3'-end of reads and also determines when the quality is sufficiently high enough to trim the 5'-end of reads." ; @@ -436539,16 +462518,39 @@ Despite impressive improvement in the next-generation sequencing technology, rel sc:softwareHelp ; sc:url "https://github.com/najoshi/sickle" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0218, + edam:topic_0634, + edam:topic_2640, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8491382", + "pubmed:34607568" ; + sc:description "A deep-learning-driven text-mining tool to abridge disease-disease associations." ; + sc:featureList edam:operation_2422, + edam:operation_3280, + edam:operation_3625 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SicknessMiner" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/MoreiraLAB/SicknessMiner" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640, @@ -436568,7 +462570,7 @@ Despite impressive improvement in the next-generation sequencing technology, rel biotools:primaryContact "Xiaobin Xing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0209, edam:topic_3336, @@ -436587,18 +462589,15 @@ Despite impressive improvement in the next-generation sequencing technology, rel a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3668" ; - sc:name "Disease name" ; - sc:sameAs "http://edamontology.org/data_3668" ], + sc:additionalType "http://edamontology.org/data_3668" ; + sc:name "Disease name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0984" ; - sc:name "Molecule name" ; - sc:sameAs "http://edamontology.org/data_0984" ] ; + sc:additionalType "http://edamontology.org/data_0984" ; + sc:name "Molecule name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3275" ; - sc:name "Phenotype name" ; - sc:sameAs "http://edamontology.org/data_3275" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3275" ; + sc:name "Phenotype name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3303 ; sc:author "Michael Kuhn" ; @@ -436622,7 +462621,7 @@ Despite impressive improvement in the next-generation sequencing technology, rel biotools:primaryContact "Michael Kuhn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, edam:topic_3512, @@ -436641,7 +462640,7 @@ sideRETRO is a bioinformatic tool devoted for the detection of somatic retrocopy sc:url "https://github.com/galantelab/sideRETRO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -436660,7 +462659,7 @@ sideRETRO is a bioinformatic tool devoted for the detection of somatic retrocopy biotools:primaryContact "K. Ui-Tei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -436675,7 +462674,7 @@ sideRETRO is a bioinformatic tool devoted for the detection of somatic retrocopy biotools:primaryContact "Janna L. Fierst" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -436695,22 +462694,20 @@ sideRETRO is a bioinformatic tool devoted for the detection of somatic retrocopy a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1497" ; - sc:name "Root-mean-square deviation" ; - sc:sameAs "http://edamontology.org/data_1497" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1384" ; + sc:name "Sequence alignment (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1497" ; + sc:name "Root-mean-square deviation" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3336, @@ -436732,7 +462729,7 @@ sideRETRO is a bioinformatic tool devoted for the detection of somatic retrocopy sc:url "http://proteinsplus.zbh.uni-hamburg.de/#siena" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "This function draws Sierpinski triangle by using recursion" ; sc:isAccessibleForFree true ; @@ -436745,7 +462742,7 @@ sideRETRO is a bioinformatic tool devoted for the detection of somatic retrocopy biotools:primaryContact "Trong Hoang Vo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0611, edam:topic_0621, @@ -436762,8 +462759,30 @@ SIESTA is both a method and its computer program implementation, to perform effi sc:softwareHelp ; sc:url "https://launchpad.net/siesta" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0203, + edam:topic_2229, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8974938", + "pubmed:35402832" ; + sc:description "Identifying robust single cell variable genes for single-cell RNA sequencing data." ; + sc:featureList edam:operation_0313, + edam:operation_3435, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SIEVE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/YinanZhang522/SIEVE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -436772,7 +462791,10 @@ SIESTA is both a method and its computer program implementation, to perform effi edam:topic_3325, edam:topic_3473 ; sc:citation , + , + "pmcid:PMC311071", "pmcid:PMC3394338", + "pubmed:11337480", "pubmed:22689647" ; sc:description "Sorting Intolerant From Tolerant (SIFT) is a sequence homology-based tool that will predict whether an amino acid substitution will affect protein function." ; sc:featureList edam:operation_0477, @@ -436790,7 +462812,7 @@ SIESTA is both a method and its computer program implementation, to perform effi biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; sc:applicationSubCategory edam:topic_0203, @@ -436812,7 +462834,7 @@ SIESTA is both a method and its computer program implementation, to perform effi sc:url "http://sift-puls.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0128, @@ -436829,7 +462851,7 @@ SIESTA is both a method and its computer program implementation, to perform effi sc:url "https://code.google.com/p/sig2biopax/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640 ; @@ -436856,14 +462878,14 @@ SIESTA is both a method and its computer program implementation, to perform effi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Processed microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -436883,7 +462905,7 @@ SIESTA is both a method and its computer program implementation, to perform effi biotools:primaryContact "Wessel N. van Wieringen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0625 ; @@ -436902,14 +462924,12 @@ SIESTA is both a method and its computer program implementation, to perform effi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3510 ; sc:citation , @@ -436938,8 +462958,31 @@ SIESTA is both a method and its computer program implementation, to perform effi sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/sigcleave.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0202, + edam:topic_0203, + edam:topic_0602, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC9252724", + "pubmed:35524556" ; + sc:description "Data and metadata search engine for a million gene expression signatures." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_2436, + edam:operation_3223 ; + sc:isAccessibleForFree true ; + sc:name "SigCom LINCS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://maayanlab.cloud/sigcom-lincs" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, edam:topic_3170, @@ -436961,7 +463004,7 @@ This package provides a novel feature selection algorithm for binary classificat sc:url "https://bioconductor.org/packages/sigFeature/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0769, edam:topic_2640 ; @@ -436979,7 +463022,7 @@ Sigflow provides useful mutational signature analysis workflows. It can auto-ext sc:url "https://github.com/ShixiangWang/sigminer.workflow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -437000,7 +463043,7 @@ Sigflow provides useful mutational signature analysis workflows. It can auto-ext biotools:primaryContact "Patrick Kimes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -437020,7 +463063,7 @@ Sigflow provides useful mutational signature analysis workflows. It can auto-ext biotools:primaryContact "Holger Schwender" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Suite" ; @@ -437044,7 +463087,7 @@ Sigflow provides useful mutational signature analysis workflows. It can auto-ext biotools:primaryContact "Elika Garg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -437060,7 +463103,7 @@ Sigflow provides useful mutational signature analysis workflows. It can auto-ext sc:url "http://www.iba.muni.cz/index-en.php?pg=research--data-analysis-tools--sighunt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, edam:topic_2640, @@ -437083,7 +463126,7 @@ Moreover, it parameterizes the model empirically. Let the data speak for itself. sc:url "http://github.com/gersteinlab/siglasso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -437098,7 +463141,7 @@ Moreover, it parameterizes the model empirically. Let the data speak for itself. sc:url "http://sigma.omicsbio.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -437115,10 +463158,10 @@ Moreover, it parameterizes the model empirically. Let the data speak for itself. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0749, @@ -437137,7 +463180,7 @@ Moreover, it parameterizes the model empirically. Let the data speak for itself. sc:url "https://webs.iiitd.edu.in/raghava/sigma70pred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0622, @@ -437154,7 +463197,7 @@ Moreover, it parameterizes the model empirically. Let the data speak for itself. sc:url "http://www.imsc.res.in/~rsidd/sigma/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2533, edam:topic_2640, @@ -437171,7 +463214,7 @@ Moreover, it parameterizes the model empirically. Let the data speak for itself. sc:url "https://github.com/ShixiangWang/sigminer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -437188,7 +463231,7 @@ Moreover, it parameterizes the model empirically. Let the data speak for itself. biotools:primaryContact "Yuanlong Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3374, edam:topic_3409 ; @@ -437204,7 +463247,7 @@ Moreover, it parameterizes the model empirically. Let the data speak for itself. biotools:primaryContact "Shmuel Dr. Naaman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_2229, @@ -437230,7 +463273,7 @@ Signac is an extension of Seurat for the analysis of single-cell chromatin data. sc:url "https://satijalab.org/signac/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -437252,7 +463295,7 @@ SignacX is software developed and maintained by the Savova lab at Sanofi with a sc:url "https://github.com/mathewchamberlain/SignacX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0602, @@ -437267,7 +463310,7 @@ SignacX is software developed and maintained by the Savova lab at Sanofi with a biotools:primaryContact "Iain D.C. Fraser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -437284,7 +463327,7 @@ SignacX is software developed and maintained by the Savova lab at Sanofi with a sc:url "http://www.csbio.sjtu.edu.cn/bioinf/Signal-3L/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3510, @@ -437303,18 +463346,17 @@ SignacX is software developed and maintained by the Savova lab at Sanofi with a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Data reference" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269, @@ -437332,20 +463374,42 @@ SignacX is software developed and maintained by the Savova lab at Sanofi with a sc:url "https://github.com/ArtRand/signalAlign" ; biotools:primaryContact "Arthur C Rand" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0601, + edam:topic_0602, + edam:topic_0659, + edam:topic_0749, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8728204", + "pubmed:34634810" ; + sc:description "A multi-layered resource to uncover tissue-specific signaling networks." ; + sc:featureList edam:operation_0417, + edam:operation_0533, + edam:operation_1781, + edam:operation_3216 ; + sc:isAccessibleForFree true ; + sc:name "SignaLink3" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://signalink.org/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3510 ; @@ -437368,7 +463432,7 @@ SignacX is software developed and maintained by the Savova lab at Sanofi with a biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Script" ; sc:applicationSubCategory edam:topic_0078, @@ -437385,7 +463449,7 @@ SignacX is software developed and maintained by the Savova lab at Sanofi with a sc:url "http://www.cs.toronto.edu/~wkc/SignalSpider/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3512, edam:topic_3518 ; @@ -437400,7 +463464,7 @@ SignacX is software developed and maintained by the Savova lab at Sanofi with a sc:url "http://qge.fhcrc.org/signalviewer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293 ; @@ -437420,7 +463484,7 @@ SignacX is software developed and maintained by the Savova lab at Sanofi with a biotools:primaryContact "Dr. Bas E. Dutilh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3308 ; @@ -437434,7 +463498,7 @@ SignacX is software developed and maintained by the Savova lab at Sanofi with a sc:url "https://github.com/wuaipinglab/ImmuCC/tree/master/tissue_immucc/SignatureMatrix" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, edam:topic_0203, @@ -437454,7 +463518,7 @@ This package implements algorithms and data structures for performing gene expre sc:url "https://bioconductor.org/packages/signatureSearch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -437475,7 +463539,7 @@ This package implements algorithms and data structures for performing gene expre biotools:primaryContact "Renan Valieris" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602 ; @@ -437494,7 +463558,7 @@ This package implements algorithms and data structures for performing gene expre biotools:primaryContact "Alexandre Gouy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -437513,14 +463577,14 @@ This package implements algorithms and data structures for performing gene expre a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Genotype/phenotype report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0625 ; @@ -437539,14 +463603,14 @@ This package implements algorithms and data structures for performing gene expre a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3242" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3325 ; @@ -437578,7 +463642,7 @@ This package implements algorithms and data structures for performing gene expre biotools:primaryContact "Livia Perfetto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -437599,7 +463663,7 @@ This package implements algorithms and data structures for performing gene expre biotools:primaryContact "Weil Lai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -437616,7 +463680,7 @@ This package implements algorithms and data structures for performing gene expre biotools:primaryContact "Ludmil Alexandrov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, @@ -437638,7 +463702,7 @@ This package implements algorithms and data structures for performing gene expre biotools:primaryContact "François Moreews" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "By leveraging statistical properties (log-rank test for survival) of patient cohorts defined by binary thresholds, poor-prognosis patients are identified by the sigsquared package via optimization over a cost function reducing type I and II error." ; @@ -437656,7 +463720,7 @@ This package implements algorithms and data structures for performing gene expre biotools:primaryContact "UnJin Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3168, @@ -437675,7 +463739,7 @@ This package implements algorithms and data structures for performing gene expre sc:url "https://github.com/shohre73/sigtools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3056, @@ -437696,7 +463760,7 @@ This package implements algorithms and data structures for performing gene expre biotools:primaryContact "John R. Stevens" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -437711,7 +463775,7 @@ This package implements algorithms and data structures for performing gene expre sc:url "http://brucelab.gs.washington.edu/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -437725,7 +463789,7 @@ This package implements algorithms and data structures for performing gene expre sc:url "http://www.imbs-luebeck.de/imbs/de/node/34" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, edam:topic_3173, @@ -437751,14 +463815,12 @@ $ pip install tensorflow-gpu==1.15.2 #pip install tensorflow==1.15.2.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3125 ; sc:citation , @@ -437788,7 +463850,7 @@ $ pip install tensorflow-gpu==1.15.2 #pip install tensorflow==1.15.2.""" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/silent.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0749, edam:topic_3304, @@ -437804,8 +463866,31 @@ Resources related to design, use, and sharing of silicon microprobes developed b sc:name "silicon microprobes" ; sc:url "https://github.com/sotmasman/Silicon-microprobes" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0659, + edam:topic_3295, + edam:topic_3308, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9216573", + "pubmed:35670730" ; + sc:description "An integrated transcriptomic and genomic database for Bombyx mori and related species." ; + sc:featureList edam:operation_0524, + edam:operation_0525, + edam:operation_2421, + edam:operation_3258 ; + sc:isAccessibleForFree true ; + sc:name "SilkBase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://silkbase.ab.a.u-tokyo.ac.jp" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -437828,7 +463913,7 @@ Resources related to design, use, and sharing of silicon microprobes developed b biotools:primaryContact "xiaqy@swu.edu.cn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0769 ; sc:citation ; @@ -437844,62 +463929,62 @@ Resources related to design, use, and sharing of silicon microprobes developed b a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2909" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Organism name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1207" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_1097" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Sequence accession (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1088" ; - sc:name "Article ID" ; - sc:sameAs "http://edamontology.org/data_1088" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2909" ; - sc:name "Organism name" ; - sc:sameAs "http://edamontology.org/data_2909" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1046" ; - sc:name "Strain name" ; - sc:sameAs "http://edamontology.org/data_1046" ], + sc:additionalType "http://edamontology.org/data_1088" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Article ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1097" ; - sc:name "Sequence accession (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1097" ], + sc:additionalType "http://edamontology.org/data_1868" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Taxon" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1868" ; - sc:name "Taxon" ; - sc:sameAs "http://edamontology.org/data_1868" ] ; + sc:additionalType "http://edamontology.org/data_1046" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Strain name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1872" ; - sc:name "Taxonomic classification" ; - sc:sameAs "http://edamontology.org/data_1872" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_1984" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_1984" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ], + sc:additionalType "http://edamontology.org/data_1872" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Taxonomic classification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_1984" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -437937,7 +464022,7 @@ Resources related to design, use, and sharing of silicon microprobes developed b sc:url "http://www.arb-silva.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3293 ; @@ -437955,34 +464040,33 @@ Resources related to design, use, and sharing of silicon microprobes developed b a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1246" ; - sc:name "Sequence cluster (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1246" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1246" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence cluster (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3050, @@ -438014,7 +464098,7 @@ Resources related to design, use, and sharing of silicon microprobes developed b sc:url "https://www.arb-silva.de/ngs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3360, @@ -438029,14 +464113,14 @@ Resources related to design, use, and sharing of silicon microprobes developed b a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -438056,7 +464140,7 @@ Resources related to design, use, and sharing of silicon microprobes developed b biotools:primaryContact "Renee X. de Menezes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3168, edam:topic_3175 ; @@ -438072,22 +464156,22 @@ Sim-it: A structural variance and Nanopore/PacBio sequencing reads simulator.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3712" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Peptide mass fingerprint" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_3247" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -438109,7 +464193,7 @@ Sim-it: A structural variance and Nanopore/PacBio sequencing reads simulator.""" sc:url "http://patternlabforproteomics.org/sim-xl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -438133,7 +464217,7 @@ Sim-it: A structural variance and Nanopore/PacBio sequencing reads simulator.""" biotools:primaryContact "Apostolos Dimitromanolakis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168, @@ -438149,7 +464233,7 @@ Sim-it: A structural variance and Nanopore/PacBio sequencing reads simulator.""" biotools:primaryContact "Aaron E Darling" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -438168,7 +464252,7 @@ Sim-it: A structural variance and Nanopore/PacBio sequencing reads simulator.""" biotools:primaryContact "SIM4 Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0797, edam:topic_3170 ; @@ -438183,7 +464267,7 @@ Sim-it: A structural variance and Nanopore/PacBio sequencing reads simulator.""" biotools:primaryContact "Liliana Florea" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121 ; @@ -438200,18 +464284,15 @@ Sim-it: A structural variance and Nanopore/PacBio sequencing reads simulator.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1096" ; - sc:name "Sequence accession (protein)" ; - sc:sameAs "http://edamontology.org/data_1096" ] ; + sc:additionalType "http://edamontology.org/data_1096" ; + sc:name "Sequence accession (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1384" ; + sc:name "Sequence alignment (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -438230,7 +464311,7 @@ Sim-it: A structural variance and Nanopore/PacBio sequencing reads simulator.""" sc:url "http://cube.univie.ac.at/resources/simap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071 ; @@ -438244,7 +464325,7 @@ Sim-it: A structural variance and Nanopore/PacBio sequencing reads simulator.""" sc:url "http://liferay.csb.univie.ac.at/portal/web/simap/webservice" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:description "Perfectly aligns TranscriptSimulator reads to their nucleotide templates using read title inforamation, creating ideal simulated assembly of super contigs." ; @@ -438256,14 +464337,14 @@ Sim-it: A structural variance and Nanopore/PacBio sequencing reads simulator.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -438283,7 +464364,7 @@ Sim-it: A structural variance and Nanopore/PacBio sequencing reads simulator.""" biotools:primaryContact "Mo R. Nezami Ranjbar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, edam:topic_3940 ; @@ -438299,7 +464380,7 @@ simATAC is a framework provided as an R package that generates a single-cell Ass sc:url "https://github.com/bowang-lab/simATAC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation , @@ -438317,7 +464398,7 @@ simATAC is a framework provided as an R package that generates a single-cell Ass biotools:primaryContact "Vasco A. C. Azevedo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170 ; @@ -438334,14 +464415,14 @@ simATAC is a framework provided as an R package that generates a single-cell Ass a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3117" ; - sc:name "Microarray hybridisation data" ; - sc:sameAs "http://edamontology.org/data_3117" ] ; + sc:additionalType "http://edamontology.org/data_3117" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Microarray hybridisation data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3125, @@ -438360,7 +464441,7 @@ simATAC is a framework provided as an R package that generates a single-cell Ass biotools:primaryContact "Bettina Fischer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -438376,7 +464457,7 @@ Modelling and Optimization, curve fit.""" ; biotools:primaryContact "Takafumi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0202, edam:topic_3375 ; @@ -438392,7 +464473,7 @@ Modelling and Optimization, curve fit.""" ; biotools:primaryContact "Anita" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3070, @@ -438409,7 +464490,7 @@ Modelling and Optimization, curve fit.""" ; biotools:primaryContact "Fulden Buyukozturk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3301, edam:topic_3318, @@ -438425,7 +464506,7 @@ Modelling and Optimization, curve fit.""" ; biotools:primaryContact "Fulden Buyukozturk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -438443,7 +464524,7 @@ Modelling and Optimization, curve fit.""" ; biotools:primaryContact "Fulden Buyukozturk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3375 ; @@ -438458,7 +464539,7 @@ Modelling and Optimization, curve fit.""" ; biotools:primaryContact "MathWorks SimBiology Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2259 ; @@ -438473,7 +464554,7 @@ Modelling and Optimization, curve fit.""" ; biotools:primaryContact "Jeremy Huard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:citation ; sc:description "SimBiology MATLAB implementation of the Target-Mediated Drug Disposition (TMDD) model." ; @@ -438487,7 +464568,7 @@ Modelling and Optimization, curve fit.""" ; biotools:primaryContact "Fulden Buyukozturk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3375 ; @@ -438502,7 +464583,7 @@ Modelling and Optimization, curve fit.""" ; biotools:primaryContact "MathWorks SimBiology Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2259 ; sc:citation ; @@ -438520,7 +464601,7 @@ Modelling and Optimization, curve fit.""" ; biotools:primaryContact "Barbara Di Camillo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2258, @@ -438538,7 +464619,7 @@ Modelling and Optimization, curve fit.""" ; biotools:primaryContact "Martin Ester" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation ; @@ -438556,7 +464637,7 @@ Modelling and Optimization, curve fit.""" ; biotools:primaryContact "Tae Yong Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3385, @@ -438573,7 +464654,7 @@ Modelling and Optimization, curve fit.""" ; sc:url "http://www.cs.tut.fi/sgn/csb/simcep/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -438588,7 +464669,7 @@ Modelling and Optimization, curve fit.""" ; sc:url "http://xerad.systemsbiology.net/simcluster/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -438609,7 +464690,7 @@ Modelling and Optimization, curve fit.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3345, edam:topic_3473, @@ -438623,8 +464704,27 @@ Modelling and Optimization, curve fit.""" ; sc:softwareHelp ; sc:url "http://www.ncbi.nlm.nih.gov/CBBresearch/Lu/Demo/SimConcept" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3315, + edam:topic_3322, + edam:topic_3324 ; + sc:citation , + "pmcid:PMC8740970", + "pubmed:34941862" ; + sc:description "Spatially distributed infection increases viral load in a computational model of SARS-CoV-2 lung infection." ; + sc:featureList edam:operation_0252, + edam:operation_2426, + edam:operation_3446 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "SIMCoV" ; + sc:url "https://github.com/AdaptiveComputationLab/simcov" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -438644,7 +464744,7 @@ Modelling and Optimization, curve fit.""" ; biotools:primaryContact "Ismael Abdulrahman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, @@ -438657,8 +464757,24 @@ Modelling and Optimization, curve fit.""" ; sc:softwareHelp ; sc:url "http://iwera.ir/~ahmad/dal/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3318, + edam:topic_3520 ; + sc:citation , + "pubmed:35852821" ; + sc:description "A Novel GUI-Based Comprehensive Ion Trajectory Simulation Software for Mass Spectrometry." ; + sc:isAccessibleForFree true ; + sc:license "BSD-2-Clause" ; + sc:name "SimELIT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/PNNL-Comp-Mass-Spec/SimELIT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation ; @@ -438675,7 +464791,7 @@ Modelling and Optimization, curve fit.""" ; biotools:primaryContact "Barbara Di Camillo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_1317, edam:topic_3077, @@ -438695,7 +464811,7 @@ Modelling and Optimization, curve fit.""" ; biotools:primaryContact "Josie Hayes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3175, @@ -438718,7 +464834,7 @@ Modelling and Optimization, curve fit.""" ; sc:url "https://bioconductor.org/packages/release/bioc/html/SimFFPE.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0781, edam:topic_3053, @@ -438735,7 +464851,7 @@ Modelling and Optimization, curve fit.""" ; sc:url "http://lcbb.snu.ac.kr/simflu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0602, edam:topic_0625, @@ -438755,7 +464871,7 @@ To run SimiC with Single-cell RNA-seq of a small test example, go to folder exma sc:url "https://github.com/jianhao2016/simicLASSO_git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3053 ; @@ -438773,14 +464889,14 @@ To run SimiC with Single-cell RNA-seq of a small test example, go to folder exma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0865" ; - sc:name "Sequence similarity score" ; - sc:sameAs "http://edamontology.org/data_0865" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0865" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence similarity score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169, @@ -438800,14 +464916,12 @@ To run SimiC with Single-cell RNA-seq of a small test example, go to folder exma a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0870" ; - sc:name "Sequence distance matrix" ; - sc:sameAs "http://edamontology.org/data_0870" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0870" ; + sc:name "Sequence distance matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation ; @@ -438822,7 +464936,7 @@ To run SimiC with Single-cell RNA-seq of a small test example, go to folder exma sc:url "https://github.com/GATB/simka" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -438837,7 +464951,7 @@ To run SimiC with Single-cell RNA-seq of a small test example, go to folder exma sc:url "http://sourceforge.net/projects/simld/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -438858,7 +464972,7 @@ To run SimiC with Single-cell RNA-seq of a small test example, go to folder exma biotools:primaryContact "Daniele Ramazzotti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0128, @@ -438882,7 +464996,7 @@ To run SimiC with Single-cell RNA-seq of a small test example, go to folder exma "Kai-Cheng Hsu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -438896,7 +465010,7 @@ To run SimiC with Single-cell RNA-seq of a small test example, go to folder exma sc:url "https://github.com/melop/simMSG/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Suite" ; sc:applicationSubCategory edam:topic_0602, @@ -438914,7 +465028,7 @@ To run SimiC with Single-cell RNA-seq of a small test example, go to folder exma sc:url "http://www.niaid.nih.gov/labsandresources/labs/aboutlabs/lsb/Pages/simmuneproject.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -438927,8 +465041,31 @@ To run SimiC with Single-cell RNA-seq of a small test example, go to folder exma sc:softwareVersion "20130502" ; sc:url "http://www.ebi.ac.uk/goldman-srv/simNGS/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3382, + edam:topic_3524 ; + sc:citation , + "pmcid:PMC8978263", + "pubmed:35380031" ; + sc:description "An open-source toolkit for simulation and image processing for photonics and acoustics." ; + sc:featureList edam:operation_0337, + edam:operation_2426, + edam:operation_3443, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SIMPA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/IMSY-DKFZ/simpa" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -438950,7 +465087,7 @@ To run SimiC with Single-cell RNA-seq of a small test example, go to folder exma sc:url "https://github.com/LucaGiudice/Simpati" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0625, @@ -438966,7 +465103,7 @@ To run SimiC with Single-cell RNA-seq of a small test example, go to folder exma sc:url "http://bioinformatics.org/simped/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -438984,7 +465121,7 @@ SimPEL is short for Simulation-based Power Estimation for sequencing studies of sc:url "https://github.com/precisionomics/SimPEL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0749, @@ -439002,7 +465139,7 @@ SimPEL is short for Simulation-based Power Estimation for sequencing studies of biotools:primaryContact "Jesús Silva-Rodríguez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3293, @@ -439017,7 +465154,7 @@ SimPEL is short for Simulation-based Power Estimation for sequencing studies of sc:url "https://github.com/adamallo/SimPhy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "A simple BLAST algorithm based on a simple dynamic programming strategy." ; sc:isAccessibleForFree true ; @@ -439030,7 +465167,7 @@ SimPEL is short for Simulation-based Power Estimation for sequencing studies of biotools:primaryContact "Ligong Han" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -439047,7 +465184,7 @@ SimPEL is short for Simulation-based Power Estimation for sequencing studies of biotools:primaryContact "Crista Arangala" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3070, @@ -439066,14 +465203,14 @@ SimPEL is short for Simulation-based Power Estimation for sequencing studies of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3110" ; - sc:name "Raw microarray data" ; - sc:sameAs "http://edamontology.org/data_3110" ] ; + sc:additionalType "http://edamontology.org/data_3110" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Raw microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -439094,7 +465231,7 @@ SimPEL is short for Simulation-based Power Estimation for sequencing studies of biotools:primaryContact "Crispin Miller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3306, edam:topic_3344, @@ -439111,8 +465248,19 @@ SimPEL is short for Simulation-based Power Estimation for sequencing studies of sc:url "https://www.mathworks.com/matlabcentral/fileexchange/70572-simplect" ; biotools:primaryContact "Gianluca Iori" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description """for characterizing protein thermal stability in different temperatures + +https://github.com/hscsun/SimpleDSFviewer-5.0.git + + +https://onlinelibrary.wiley.com/action/downloadSupplement?doi=10.1002%2Fpro.3703&file=pro3703-sup-0001-Supinfo.docx""" ; + sc:name "SimpleDSFviewer" ; + sc:url "https://doi.org/10.1002/pro.3703" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780 ; sc:citation ; sc:description "SimpleForest is a comprehensive tool for 3D reconstruction of trees from forest plot point clouds." ; @@ -439122,7 +465270,7 @@ SimPEL is short for Simulation-based Power Estimation for sequencing studies of sc:url "https://gitlab.com/SimpleForest/computree/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_0769 ; @@ -439141,7 +465289,7 @@ A Usefull tool to assist likage mapping software with the construction of high d sc:url "http://simplemap-aj.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3304, @@ -439158,7 +465306,7 @@ A Usefull tool to assist likage mapping software with the construction of high d biotools:primaryContact "Rob Campbell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, edam:topic_2885, @@ -439179,7 +465327,7 @@ Note that the data set used in all vignettes is already in numeric format. In ad sc:url "https://github.com/samuelbfernandes/simplePHENOTYPES" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3361, edam:topic_3372, @@ -439194,7 +465342,7 @@ Because of the COVID-19 pandemic, researchers are facing unprecedented challenge sc:url "https://simplephy.psych.ucsb.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0102, @@ -439213,7 +465361,7 @@ Because of the COVID-19 pandemic, researchers are facing unprecedented challenge biotools:primaryContact "Dan Veltri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3050, edam:topic_3300, @@ -439228,7 +465376,7 @@ Because of the COVID-19 pandemic, researchers are facing unprecedented challenge sc:url "https://github.com/LennonLab/Emergence" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, edam:topic_2229, @@ -439246,7 +465394,7 @@ This will run SIMPLI on minimal example dataset distributed in this repository. biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -439265,7 +465413,7 @@ This will run SIMPLI on minimal example dataset distributed in this repository. "Prof. Rommel Ramos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, edam:topic_2269 ; @@ -439288,8 +465436,31 @@ Clustering, GO, GeneSetEnrichment, Software, Visualization.""" ; sc:name "simplifyEnrichment" ; sc:url "https://simplifyenrichment.github.io/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0160, + edam:topic_0623, + edam:topic_0736, + edam:topic_3293 ; + sc:citation , + "pubmed:35668544" ; + sc:description "Generalizable strategy to analyze domains in the context of parent protein architecture." ; + sc:featureList edam:operation_0244, + edam:operation_0303, + edam:operation_0337, + edam:operation_3216 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SimpLogo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.github.com/clayfos/SimpLogo" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0781, @@ -439303,8 +465474,28 @@ Clustering, GO, GeneSetEnrichment, Software, Visualization.""" ; sc:softwareHelp ; sc:url "http://sray.med.som.jhmi.edu/SCRoftware/simplot/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0203, + edam:topic_3293 ; + sc:citation , + "pubmed:35451456" ; + sc:description "A Python application for representing sequence similarity and detecting recombination." ; + sc:featureList edam:operation_0289, + edam:operation_0337, + edam:operation_0451 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SimPlot++" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Stephane-S/Simplot_PlusPlus" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -439319,7 +465510,7 @@ Clustering, GO, GeneSetEnrichment, Software, Visualization.""" ; sc:url "https://github.com/ComputationalGenomics/SimRA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -439335,7 +465526,7 @@ Clustering, GO, GeneSetEnrichment, Software, Visualization.""" ; sc:url "https://code.google.com/p/simrare/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053, @@ -439351,7 +465542,7 @@ Clustering, GO, GeneSetEnrichment, Software, Visualization.""" ; sc:url "http://www4.stat.ncsu.edu/~jytzeng/software.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099 ; @@ -439367,7 +465558,7 @@ Clustering, GO, GeneSetEnrichment, Software, Visualization.""" ; sc:url "http://genesilico.pl/software/stand-alone/simrna" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3325, @@ -439384,8 +465575,29 @@ Please note: this version of SimRVPedigree may be under construction. For the la sc:name "SimRVPedigree" ; sc:url "https://github.com/cnieuwoudt/SimRVPedigree" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0654, + edam:topic_2640, + edam:topic_3293 ; + sc:citation , + "pubmed:35311947" ; + sc:description "A simulator of single-cell DNA sequencing data." ; + sc:featureList edam:operation_0323, + edam:operation_3359, + edam:operation_3557 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SimSCSnTree" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/compbiofan/SimSCSnTree.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, edam:topic_3168, @@ -439409,7 +465621,7 @@ The SimSearch algorithm has been developed through a collaboration between Unive sc:url "https://deib-geco.github.io/simsearch-app/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -439422,8 +465634,29 @@ The SimSearch algorithm has been developed through a collaboration between Unive sc:url "https://github.com/jstjohn/SimSeq" ; biotools:primaryContact "S. Benidt" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0154, + edam:topic_0601 ; + sc:citation , + "pubmed:35462064" ; + sc:description "Software-assisted reduction of missing values in phosphoproteomic and proteomic isobaric labeling data using tandem mass spectrum clustering." ; + sc:featureList edam:operation_3631, + edam:operation_3634, + edam:operation_3641 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "SIMSI-Transfer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/kusterlab/SIMSI-Transfer" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, edam:topic_2229, @@ -439446,7 +465679,7 @@ The SimSurvey package has been designed to facilitate simulations of sample surv sc:url "https://paulregular.github.io/SimSurvey/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -439462,7 +465695,7 @@ The SimSurvey package has been designed to facilitate simulations of sample surv sc:url "http://siret.ms.mff.cuni.cz/novak/simtandem/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, edam:topic_0769, @@ -439483,7 +465716,7 @@ For all PMIDs in each row of a table the according abstracts are saved in additi sc:url "https://github.com/mgramm1/simtext" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3383, @@ -439500,7 +465733,7 @@ For all PMIDs in each row of a table the according abstracts are saved in additi sc:url "http://mmtg.fel.cvut.cz/SIMToolbox/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2885, @@ -439521,7 +465754,7 @@ For all PMIDs in each row of a table the according abstracts are saved in additi biotools:primaryContact "Jia-Xing Yue" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3307, edam:topic_3315, @@ -439539,7 +465772,7 @@ For all PMIDs in each row of a table the according abstracts are saved in additi biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -439555,7 +465788,7 @@ For all PMIDs in each row of a table the according abstracts are saved in additi sc:url "http://www.jurgott.org/linkage/simulate.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622 ; @@ -439573,7 +465806,7 @@ For all PMIDs in each row of a table the according abstracts are saved in additi biotools:primaryContact "Yuqing Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344 ; @@ -439588,7 +465821,7 @@ For all PMIDs in each row of a table the according abstracts are saved in additi biotools:primaryContact "Guy Rouleau" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -439604,8 +465837,28 @@ For all PMIDs in each row of a table the according abstracts are saved in additi sc:url "https://www.mathworks.com/matlabcentral/fileexchange/74610-simulitis-a-coronavirus-simulation" ; biotools:primaryContact "Joshua Gafford" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_3071, + edam:topic_3315 ; + sc:citation , + "pmcid:PMC9124400", + "pubmed:35597909" ; + sc:description "simultaneous curve fitting of functions and differential equations using analytical gradient calculations." ; + sc:featureList edam:operation_2426, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Simultant" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/juliusbierk/simultant" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053, @@ -439620,7 +465873,7 @@ For all PMIDs in each row of a table the according abstracts are saved in additi sc:url "http://c2s2.yale.edu/software/simuRare/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3056, edam:topic_3293 ; @@ -439638,7 +465891,7 @@ simurg: Simulate a Bacterial Pangenome in R""" ; sc:url "https://github.com/iferres/simurg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0199, edam:topic_0622, @@ -439661,7 +465914,7 @@ a novel next-generation sequencing simulator using position and genomic contexts sc:url "https://github.com/qasimyu/simuscop" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -439679,14 +465932,14 @@ a novel next-generation sequencing simulator using position and genomic contexts a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -439713,8 +465966,30 @@ Reference based multiple sequence alignment""" ; "1.5.0" ; sc:url "https://sina.readthedocs.io" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0176, + edam:topic_3400 ; + sc:citation , + "pmcid:PMC8966674", + "pubmed:35239339" ; + sc:description "A Software Tool for Analysis and Visualization of Interaction Networks of Molecular Dynamics Simulations." ; + sc:featureList edam:operation_0570, + edam:operation_2476, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SINAPs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/ParImmune/SINAPs" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0780, @@ -439732,20 +466007,43 @@ Reference based multiple sequence alignment""" ; sc:url "http://ocri-genomics.org/Sinbase/" ; biotools:primaryContact "Zhang X" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0108, + edam:topic_0625, + edam:topic_2229, + edam:topic_3170, + edam:topic_3308 ; + sc:citation ; + sc:description "A computational framework to predict cell identities in single cell transcriptomes using bulk atlases as references." ; + sc:featureList edam:operation_0224, + edam:operation_0314, + edam:operation_3436, + edam:operation_3557, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Sincast" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/meiosis97/Sincast" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Phylogenetic tree" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2589" ; - sc:name "Hierarchy" ; - sc:sameAs "http://edamontology.org/data_2589" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2589" ; + sc:encodingFormat "http://edamontology.org/format_2067" ; + sc:name "Hierarchy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -439770,7 +466068,7 @@ Reference based multiple sequence alignment""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, @@ -439788,7 +466086,7 @@ Reference based multiple sequence alignment""" ; biotools:primaryContact "Y. Ann Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -439807,35 +466105,32 @@ Single-exon coding sequences (CDSs), also known as 'single-exon genes' (SEGs), a sc:name "SinEx" ; sc:url "https://v2.sinex.cl/" . - a sc:SoftwareApplication ; - sc:description "CD Genomics provides single-cell DNA methylation analysis to understand the heterogeneity of genome-wide 5-methylcytosine (5mC) patterns. CD Genomics’s Single-Cell Sequencing conference focuses on the links between cell variation in tissues and organ function and further elucidates the origins of diseases. If you have additional requirements or questions, please feel free to contact us." ; - sc:name "Single-cell DNA Methylation Sequencing" ; - sc:url "https://www.cd-genomics.com/single-cell-dna-methylation-sequencing.html" . - - a sc:SoftwareApplication ; - sc:description "CD Genomics provides robust transcriptome research service down to single-cell input levels in high-quality samples These global gene expression patterns in single cells already have dramatically advanced cell biology. CD Genomics’s Single-Cell Sequencing conference focuses on the links between cell variation in tissues and organ function and further elucidates the origins of diseases. If you have additional requirements or questions, please feel free to contact us." ; - sc:name "Single-cell RNA Sequencing" ; - sc:url "https://www.cd-genomics.com/single-cell-rna-sequencing.html" . - - a sc:SoftwareApplication ; - sc:description "CD Genomics proprietary GenSeqTM Technology provides comprehensive Single-Cell Sequencing services. These global gene expression patterns in single cells already have dramatically advanced cell biology. CD Genomics’s Single-Cell Sequencing conference focuses on the links between cell variation in tissues and organ function and further elucidates the origins of diseases. If you have additional requirements or questions, please feel free to contact us." ; - sc:name "Single-Cell Sequencing" ; - sc:url "https://www.cd-genomics.com/Single-Cell-Sequencing.html" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2229, - edam:topic_3173, - edam:topic_3308 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'collated' | A curated database reveals trends in single-cell transcriptomics | Single cell studies — What do you mean \"heterogeneity\"? | Visse funktioner i Excel kan ikke vises i Google Sheets og vil forsvinde, hvis du foretager ændringer | Submit information about a single cell publication | What do you mean \"heterogeneity\"? | The 'Single cell studies database' lists papers in single cell transcriptomics with several fields of manually curated metadata | The only required field is the DOI, but the other fields are very helpful | Number of reported cell types or clusters | B. Cauli, J. T. Porter, K. Tsuzuki, B. Lambolez, J. Rossier, B. Quenet, E. Audinat" ; - sc:featureList edam:operation_3431, - edam:operation_3446, - edam:operation_3800 ; - sc:name "single cell studies" ; - sc:url "http://www.nxn.se/single-cell-studies/gui" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Library" ; + sc:applicationSubCategory edam:topic_3303, + edam:topic_3384, + edam:topic_3444, + edam:topic_3452, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9060378", + "pubmed:35500005" ; + sc:description "Synthetic training data generation for medical image segmentation." ; + sc:featureList edam:operation_3435, + edam:operation_3443, + edam:operation_3553 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SinGAN-Seg" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://pypi.org/project/singan-seg-polyp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3341 ; sc:description "Defines a S4 class for storing data from single-cell experiments. This includes specialized methods to store and retrieve spike-in information, dimensionality reduction coordinates and size factors for each cell, along with the usual metadata for genes and libraries." ; @@ -439851,7 +466146,7 @@ Single-exon coding sequences (CDSs), also known as 'single-exon genes' (SEGs), a biotools:primaryContact "Davide Risso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, edam:topic_3170, @@ -439876,7 +466171,7 @@ Identification of differentially expressed genes (DEGs) is a key step in single- sc:url "https://CRAN.R-project.org/package=singleCellHaystack" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170 ; @@ -439896,7 +466191,7 @@ Identification of differentially expressed genes (DEGs) is a key step in single- biotools:primaryContact "David Jenkins" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3173, edam:topic_3308 ; @@ -439914,7 +466209,7 @@ It can be used with our preprocessed datasets found at the link above or by foll sc:url "http://www.singlecellvr.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203 ; sc:description "A simple single-sample gene signature scoring method that uses rank-based statistics to analyze the sample's gene expression profile. It scores the expression activities of gene sets at a single-sample level." ; @@ -439932,7 +466227,7 @@ It can be used with our preprocessed datasets found at the link above or by foll biotools:primaryContact "Ruqian Lyu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3524 ; sc:citation ; @@ -439947,7 +466242,7 @@ It can be used with our preprocessed datasets found at the link above or by foll biotools:primaryContact "Vanessa V. Sochat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0625, edam:topic_2269, @@ -439966,7 +466261,7 @@ This repository contains the code for the Significant Network Interval Mining ap sc:url "https://github.com/BorgwardtLab/SiNIMin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0632, edam:topic_0654, @@ -439986,7 +466281,7 @@ SinoDuplex is an improved duplex consensus sequence generation module. It increa sc:url "https://github.com/SinOncology/sinoduplex" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3303, @@ -440006,7 +466301,7 @@ SinoDuplex is an improved duplex consensus sequence generation module. It increa biotools:primaryContact "Rhenan Bartels" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0749, edam:topic_3169, @@ -440025,7 +466320,7 @@ If you want run SIP with mcool file you need to install cooler: https://github.c sc:url "https://github.com/PouletAxel/SIP/releases" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -440041,7 +466336,7 @@ If you want run SIP with mcool file you need to install cooler: https://github.c sc:url "http://predictor.nchu.edu.tw/siPRED/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -440056,7 +466351,7 @@ If you want run SIP with mcool file you need to install cooler: https://github.c sc:url "http://siprosensemble.omicsbio.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -440073,7 +466368,7 @@ If you want run SIP with mcool file you need to install cooler: https://github.c biotools:primaryContact "Giovanni Valentini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3299, edam:topic_3305, @@ -440089,7 +466384,7 @@ If you want run SIP with mcool file you need to install cooler: https://github.c biotools:primaryContact "Siddharth Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -440107,7 +466402,7 @@ If you want run SIP with mcool file you need to install cooler: https://github.c biotools:primaryContact "Tom Beekhuysen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2258, @@ -440122,7 +466417,7 @@ If you want run SIP with mcool file you need to install cooler: https://github.c sc:url "http://www.sirahff.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0654, @@ -440139,7 +466434,7 @@ If you want run SIP with mcool file you need to install cooler: https://github.c sc:url "http://www.bork.embl.de/Sircah/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3299, edam:topic_3305, @@ -440159,7 +466454,7 @@ If you want run SIP with mcool file you need to install cooler: https://github.c biotools:primaryContact "Diego Caccavo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3305, @@ -440180,7 +466475,7 @@ SIRE allows for simultaneous estimation of single nucleotide polymorphism (SNP) sc:url "http://theITEAM.github.io/SIRE.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099, @@ -440203,7 +466498,7 @@ SIRE allows for simultaneous estimation of single nucleotide polymorphism (SNP) "Mayka Sanchez (For questions regarding IREs)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320, edam:topic_3512 ; @@ -440216,18 +466511,18 @@ SIRE allows for simultaneous estimation of single nucleotide polymorphism (SNP) a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Peptide mass fingerprint" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0846" ; - sc:name "Chemical formula" ; - sc:sameAs "http://edamontology.org/data_0846" ], + sc:additionalType "http://edamontology.org/data_0846" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Chemical formula" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Peptide mass fingerprint" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -440247,7 +466542,7 @@ SIRE allows for simultaneous estimation of single nucleotide polymorphism (SNP) sc:url "http://bio.informatik.uni-jena.de/sirius" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -440265,18 +466560,15 @@ SIRE allows for simultaneous estimation of single nucleotide polymorphism (SNP) a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -440306,7 +466598,7 @@ SIRE allows for simultaneous estimation of single nucleotide polymorphism (SNP) sc:url "http://emboss.open-bio.org/rel/rel6/apps/sirna.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0130, @@ -440325,7 +466617,7 @@ SIRE allows for simultaneous estimation of single nucleotide polymorphism (SNP) biotools:primaryContact "siRNA Selection Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -440347,8 +466639,21 @@ SIRE allows for simultaneous estimation of single nucleotide polymorphism (SNP) sc:url "http://sirna.cgb.ki.se/" ; biotools:primaryContact "Erik Sonnhammer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "siRNApred: Support vector machine based methods for predicting actual efficacy of both 21mer and 19mer siRNAs with high accuracy." ; + sc:featureList edam:operation_2945 ; + sc:name "sirnapred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/sirnapred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -440369,7 +466674,7 @@ SIRE allows for simultaneous estimation of single nucleotide polymorphism (SNP) biotools:primaryContact "Ramu C." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3379, edam:topic_3474 ; @@ -440384,7 +466689,7 @@ Machine learning project to predict subject hospitalization.""" ; sc:url "https://github.com/rsippy/SISASISAL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -440402,7 +466707,7 @@ Machine learning project to predict subject hospitalization.""" ; sc:url "http://nsato4.c.u-tokyo.ac.jp/old/Siseq.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0601, edam:topic_0602, @@ -440424,7 +466729,7 @@ The sismonr package aims at simulating random in silico biological systems, cont sc:url "https://oliviaab.github.io/sismonr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3517 ; @@ -440441,8 +466746,28 @@ The sismonr package aims at simulating random in silico biological systems, cont sc:url "http://bioconductor.org/packages/release/bioc/html/SISPA.html" ; biotools:primaryContact "Bhakti Dwivedi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3315, + edam:topic_3318, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8896705", + "pubmed:35245306" ; + sc:description "Space Imaging Simulator for Proximity Operations." ; + sc:featureList edam:operation_0573, + edam:operation_1816, + edam:operation_3890 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "SISPO" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:url "https://github.com/SISPO-developers" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -440456,7 +466781,7 @@ The sismonr package aims at simulating random in silico biological systems, cont sc:url "https://github.com/rachelss/SISRS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3125, @@ -440477,7 +466802,7 @@ The sismonr package aims at simulating random in silico biological systems, cont biotools:primaryContact "Raja Jothi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0202, @@ -440502,7 +466827,7 @@ The sismonr package aims at simulating random in silico biological systems, cont sc:url "http://sistema.ens-lyon.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -440522,14 +466847,13 @@ The sismonr package aims at simulating random in silico biological systems, cont a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2793" ; - sc:name "SISYPHUS ID" ; - sc:sameAs "http://edamontology.org/data_2793" ] ; + sc:additionalType "http://edamontology.org/data_2793" ; + sc:name "SISYPHUS ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1481" ; - sc:name "Structure alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1481" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1481" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Structure alignment (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -440543,7 +466867,7 @@ The sismonr package aims at simulating random in silico biological systems, cont sc:url "http://sisyphus.mrc-cpe.cam.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3308, @@ -440561,14 +466885,14 @@ The sismonr package aims at simulating random in silico biological systems, cont a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2878" ; - sc:name "Protein structural motif" ; - sc:sameAs "http://edamontology.org/data_2878" ] ; + sc:additionalType "http://edamontology.org/data_2878" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Protein structural motif" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1481" ; - sc:name "Structure alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1481" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1481" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Structure alignment (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081 ; sc:author "David Sehnal" ; @@ -440592,7 +466916,7 @@ The sismonr package aims at simulating random in silico biological systems, cont "Primary Contact" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -440614,7 +466938,7 @@ The sismonr package aims at simulating random in silico biological systems, cont biotools:primaryContact "Oshchepkov Dmitry" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3510, @@ -440631,7 +466955,7 @@ The sismonr package aims at simulating random in silico biological systems, cont sc:url "http://bioinfo3d.cs.tau.ac.il/SiteEngine/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_2814, @@ -440654,7 +466978,7 @@ The sismonr package aims at simulating random in silico biological systems, cont biotools:primaryContact "SiteHound Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -440670,7 +466994,7 @@ The sismonr package aims at simulating random in silico biological systems, cont sc:url "https://github.com/simon-ho/sitesampler/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -440693,7 +467017,7 @@ The sismonr package aims at simulating random in silico biological systems, cont biotools:primaryContact "Paul Boardman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0736, @@ -440714,7 +467038,7 @@ The sismonr package aims at simulating random in silico biological systems, cont biotools:primaryContact "Irina Medvedeva" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640, edam:topic_3299 ; @@ -440731,7 +467055,7 @@ Implements a three-dimensional stochastic model of cancer growth and mutation si sc:url "https://CRAN.R-project.org/package=SITH" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3168, @@ -440751,14 +467075,36 @@ This Python package was implemented as part of the development of the Iterative sc:name "SITK-IBEX" ; sc:url "http://github.com/niaid/sitk-ibex" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:description "Dapatkan bonus new member 100% dengan bermain slot online di Milan99. Dijamin gacor, kamu bakalan menang jackpot sampai miliaran rupiah loh. Daftar sekarang juga di link berikut." ; - sc:name "Situs Slot Gacor Online" ; - sc:url "https://natres.psu.ac.th/slot.php/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "Daftar situs poker online terbaik dan terpercaya 2022 hanya di situs poker 2022 CMDPLAY" ; + sc:name "Situs Poker 2022" ; + sc:url "https://2022poker.net/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_3305, + edam:topic_3500, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC8962452", + "pubmed:35028657" ; + sc:description "Publicly available database and mapping tool to get an improved overview of animal and human cases caused by Mycobacterium bovis." ; + sc:featureList edam:operation_0224, + edam:operation_3196, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:name "SITVITBovis" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.pasteur-guadeloupe.fr:8081/SITVIT_Bovis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0154, @@ -440776,7 +467122,7 @@ This Python package was implemented as part of the development of the Iterative biotools:primaryContact "siVirus Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3360 ; sc:citation , @@ -440793,7 +467139,7 @@ This Python package was implemented as part of the development of the Iterative sc:url "https://cran.r-project.org/web/packages/sivs/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3053 ; @@ -440809,18 +467155,15 @@ This Python package was implemented as part of the development of the Iterative a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -440853,14 +467196,12 @@ This Python package was implemented as part of the development of the Iterative a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0080 ; @@ -440882,8 +467223,29 @@ This Python package was implemented as part of the development of the Iterative sc:url "http://www.ebi.ac.uk/Tools/st/emboss_sixpack/" ; biotools:primaryContact "Web Production" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0769, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8928875", + "pubmed:35342569" ; + sc:description "The goal of SizeExtractR is to facilitate scientific projects that have research questions relating to size, from pure biology to ecology on individual to landscape scales, by providing a protocol with a user-friendly set of interactive tools for image analysis (ImageJ-macros) and database formation and quality checking (R-package)." ; + sc:featureList edam:operation_2428, + edam:operation_3443, + edam:operation_3553 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SizeExtractR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/liamlachs/SizeExtractR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -440902,14 +467264,12 @@ This Python package was implemented as part of the development of the Iterative a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -440940,14 +467300,14 @@ This Python package was implemented as part of the development of the Iterative a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077 ; sc:author "Dmitri Pervouchine" ; @@ -440966,7 +467326,7 @@ This Python package was implemented as part of the development of the Iterative biotools:primaryContact "Dmitri Pervouchine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, edam:topic_3297, @@ -440986,7 +467346,7 @@ Protein solubility is a key aspect for many biotechnological, biomedical and ind sc:url "https://bitbucket.org/eddiewrc/skade/src" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation ; @@ -441001,7 +467361,7 @@ Protein solubility is a key aspect for many biotechnological, biomedical and ind sc:url "https://www.hsph.harvard.edu/skat/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -441020,7 +467380,7 @@ Protein solubility is a key aspect for many biotechnological, biomedical and ind sc:url "https://signaturescience.github.io/skater" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, edam:topic_3336 ; @@ -441036,7 +467396,7 @@ An online platform for drug discovery applications.""" ; sc:url "https://playmolecule.org/SkeleDock/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3056 ; @@ -441055,7 +467415,7 @@ An online platform for drug discovery applications.""" ; biotools:primaryContact "Allan Strand" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -441072,7 +467432,7 @@ An online platform for drug discovery applications.""" ; biotools:primaryContact "Philip Kollmannsberger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:author , , @@ -441088,8 +467448,29 @@ An online platform for drug discovery applications.""" ; sc:softwareVersion "2.0" ; sc:url "https://life.bsc.es/pid/skempi2" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_2885, + edam:topic_3174, + edam:topic_3697, + edam:topic_3837 ; + sc:citation ; + sc:description "Sketching and sampling approaches for fast and accurate long read classification." ; + sc:featureList edam:operation_0224, + edam:operation_3198, + edam:operation_3472 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "sketching-based" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/arun96/sketching" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -441106,7 +467487,7 @@ An online platform for drug discovery applications.""" ; sc:url "https://skewdb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -441124,7 +467505,7 @@ An online platform for drug discovery applications.""" ; biotools:primaryContact "Jiang Hongshan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0199, @@ -441142,7 +467523,7 @@ SkewIT (Skew Index Test) is a tool for analyzing GC Skew in bacterial genomes. G sc:url "https://github.com/jenniferlu717/SkewIT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -441162,8 +467543,28 @@ SkewIT (Skew Index Test) is a tool for analyzing GC Skew in bacterial genomes. G sc:url "http://bioconductor.org/packages/release/bioc/html/skewr.html" ; biotools:primaryContact "Ryan Putney" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0602, + edam:topic_3172, + edam:topic_3297, + edam:topic_3407 ; + sc:citation ; + sc:description "Intuitive modeling of large-scale biological kinetic models." ; + sc:featureList edam:operation_2426, + edam:operation_3660 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "SKiMpy" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/EPFL-LCSB/SKiMpy" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3382, @@ -441180,7 +467581,7 @@ SkewIT (Skew Index Test) is a tool for analyzing GC Skew in bacterial genomes. G biotools:primaryContact "Matlab Mebin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3382 ; @@ -441195,8 +467596,25 @@ SkewIT (Skew Index Test) is a tool for analyzing GC Skew in bacterial genomes. G sc:url "https://www.mathworks.com/matlabcentral/fileexchange/50903-novel-method-for-determining-symmetry-of-skin-lesions-using-the-jaccard-index" ; biotools:primaryContact "Tyler Coye" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3382, + edam:topic_3404 ; + sc:citation , + "pubmed:34969031" ; + sc:description "Reliability Assessment and Validation of the Skin Hyperpigmentation Index Compared to the Physician Global Assessment Score." ; + sc:featureList edam:operation_2428, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "skin hyperpigmentation" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://shi.skinimageanalysis.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0821, edam:topic_3404, @@ -441216,7 +467634,7 @@ SkinBug can predict the metabolism and biotransformation of any molecule by the sc:url "http://metagenomics.iiserb.ac.in/skinbug" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2814, edam:topic_3510, @@ -441233,7 +467651,7 @@ SkinBug can predict the metabolism and biotransformation of any molecule by the sc:url "http://biows-inf.zdv.uni-mainz.de/skink/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2258, @@ -441249,18 +467667,15 @@ SkinBug can predict the metabolism and biotransformation of any molecule by the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ], + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -441293,14 +467708,12 @@ SkinBug can predict the metabolism and biotransformation of any molecule by the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -441330,8 +467743,32 @@ SkinBug can predict the metabolism and biotransformation of any molecule by the sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/skipseq.html" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0780 ; + sc:author , + "Vid Podpečan" ; + sc:contributor "Kristina Gruden", + "Živa Ramšak" ; + sc:description "Stress Knowledge Map: A compilation of knowledge on mechanisms underlying responses of plants to stress, the so called stress signalling network." ; + sc:featureList edam:operation_2421 ; + sc:isAccessibleForFree true ; + sc:name "SKM" ; + sc:provider "National Institute of Biology, Department of Biotechnology and Systems Biology" ; + sc:softwareHelp ; + sc:url "https://skm.nib.si/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, @@ -441352,7 +467789,7 @@ SkinBug can predict the metabolism and biotransformation of any molecule by the "Yadong Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -441374,12 +467811,14 @@ SkinBug can predict the metabolism and biotransformation of any molecule by the biotools:primaryContact "Skylign Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0769, edam:topic_3520 ; - sc:citation ; + sc:citation , + , + "pubmed:35831612" ; sc:description "Builds SRM/MRM methods and analyzes resulting data." ; sc:featureList edam:operation_2409, edam:operation_3636, @@ -441392,8 +467831,27 @@ SkinBug can predict the metabolism and biotransformation of any molecule by the sc:softwareHelp ; sc:url "https://brendanx-uw1.gs.washington.edu/labkey/project/home/software/Skyline/begin.view" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0769, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8749956", + "pubmed:34919405" ; + sc:description "Skyline Batch is an application that automates a common Skyline workflow for batch processing Skyline documents. It interacts with Skyline through the command-line, allowing it to import data into a template document, export reports, and run R scripts on those reports without bringing up the Skyline user interface." ; + sc:featureList edam:operation_3096 ; + sc:isAccessibleForFree true ; + sc:name "Skyline Batch" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://skyline.ms/batch.url" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3337, edam:topic_3517 ; @@ -441406,8 +467864,33 @@ SkinBug can predict the metabolism and biotransformation of any molecule by the sc:name "SL_REML" ; sc:url "https://github.com/rborder/SL_REML" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0632, + edam:topic_0769, + edam:topic_3168, + edam:topic_3512 ; + sc:citation , + "pubmed:34995394" ; + sc:description "A program for seeded local assembly of genes in complex genomes" ; + sc:featureList edam:operation_0308, + edam:operation_0310, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "slag" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/cfcrane/SLAG" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -441427,8 +467910,33 @@ SkinBug can predict the metabolism and biotransformation of any molecule by the sc:url "http://bioconductor.org/packages/release/bioc/html/slalom.html" ; biotools:primaryContact "Davis McCarthy" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0194, + edam:topic_0196, + edam:topic_0625, + edam:topic_2885, + edam:topic_3293 ; + sc:citation , + "pmcid:PMC9215276", + "pubmed:35774992" ; + sc:description "SLANG (Simple Long-read loci Assembly of Nanopore data for Genotyping) is a Python script pipeline for locus assembly, orthology estimation and SNP extraction of Nanopore-sequenced multi-locus data." ; + sc:featureList edam:operation_0310, + edam:operation_0323, + edam:operation_0484, + edam:operation_3196, + edam:operation_3933 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SLANG" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/DorfnerM/SLANG" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, edam:topic_3324, @@ -441446,8 +467954,30 @@ The slapnap container is a tool for using the Compile, Analyze and Tally NAb Pan sc:name "SLAPNAP" ; sc:url "https://benkeser.github.io/slapnap/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0153, + edam:topic_0769, + edam:topic_3172, + edam:topic_3316, + edam:topic_3520 ; + sc:citation , + "pubmed:34735114" ; + sc:description "A Scalable and Self-Optimizing Processing Workflow for Untargeted LC-MS." ; + sc:featureList edam:operation_2422, + edam:operation_3431, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "SLAW" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/zamboni-lab/SLAW" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -441464,7 +467994,7 @@ The slapnap container is a tool for using the Compile, Analyze and Tally NAb Pan sc:url "http://research.fhcrc.org/wu/en/software.html#sLDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3304, edam:topic_3474, @@ -441479,7 +468009,7 @@ The slapnap container is a tool for using the Compile, Analyze and Tally NAb Pan sc:url "http://sleap.ai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -441493,7 +468023,7 @@ The slapnap container is a tool for using the Compile, Analyze and Tally NAb Pan sc:url "http://bioapps.rit.albany.edu/sledgeHMMER/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3300, @@ -441512,7 +468042,7 @@ The slapnap container is a tool for using the Compile, Analyze and Tally NAb Pan biotools:primaryContact "Etienne Combrisson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3300, edam:topic_3304, @@ -441533,7 +468063,7 @@ The slapnap container is a tool for using the Compile, Analyze and Tally NAb Pan sc:url "https://github.com/ChristineBlume/SleepCycles" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2229, edam:topic_3170, @@ -441561,14 +468091,14 @@ When working with single-cell data, e.g., from single-cell RNA-Seq, we need an i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2571" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -441589,7 +468119,7 @@ When working with single-cell data, e.g., from single-cell RNA-Seq, we need an i sc:url "https://pachterlab.github.io/sleuth/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -441609,7 +468139,7 @@ When working with single-cell data, e.g., from single-cell RNA-Seq, we need an i biotools:primaryContact "Nolwenn Le Meur" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, @@ -441626,7 +468156,7 @@ When working with single-cell data, e.g., from single-cell RNA-Seq, we need an i biotools:primaryContact "Hamid Mirebrahim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3063, edam:topic_3384, @@ -441643,7 +468173,7 @@ SlicerDMRI, an open-source software suite that enables research using diffusion sc:url "http://dmri.slicer.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3050, edam:topic_3384, @@ -441662,22 +468192,21 @@ SlicerMorph enable biologists to retrieve, visualize, measure and annotate high- a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_2959" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Nucleic acid probability profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2959" ; - sc:name "Nucleic acid probability profile" ; - sc:sameAs "http://edamontology.org/data_2959" ] ; + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Data reference" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_0867" ; + sc:name "Sequence alignment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0867" ; - sc:name "Sequence alignment report" ; - sc:sameAs "http://edamontology.org/data_0867" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_1921" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269, @@ -441696,8 +468225,32 @@ SlicerMorph enable biologists to retrieve, visualize, measure and annotate high- sc:url "http://www.bcgsc.ca/platform/bioinfo/software/slider" ; biotools:primaryContact "Slider support" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_3372, + edam:topic_3474 ; + sc:citation ; + sc:description "Tool to visualize WSI and navigate through their zones at different zoom levels." ; + sc:featureList edam:operation_3552, + edam:operation_3553 ; + sc:name "Slides Viewer" ; + sc:operatingSystem "Linux", + "Windows" ; + sc:softwareVersion "v1" ; + sc:url "http://telemed.uca.es:443/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0769 ; @@ -441715,7 +468268,7 @@ SlicerMorph enable biologists to retrieve, visualize, measure and annotate high- biotools:primaryContact "Kana Shimizu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -441730,7 +468283,7 @@ SlicerMorph enable biologists to retrieve, visualize, measure and annotate high- sc:url "https://github.com/ewijaya/slidesort-bpr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0114, edam:topic_0621, @@ -441751,8 +468304,28 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t sc:name "SLIDR" ; sc:url "https://github.com/wenzelm/slidr-sloppr" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_0602, + edam:topic_3318 ; + sc:citation , + "pubmed:35642445" ; + sc:description "An integrative web server for exploring short linear motif-mediated interactions in interactomes." ; + sc:featureList edam:operation_2949 ; + sc:isAccessibleForFree true ; + sc:name "SLiMAn" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://sliman.cbs.cnrs.fr" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0219, @@ -441768,7 +468341,7 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t sc:url "http://slimarray.systemsbiology.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -441791,7 +468364,7 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t biotools:primaryContact "User Forum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -441813,7 +468386,7 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t biotools:primaryContact "Richard Edwards" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0610, @@ -441835,7 +468408,7 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t sc:url "https://rdinnager.github.io/slimr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0140 ; @@ -441857,7 +468430,7 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t sc:url "http://apps.cytoscape.org/apps/slimscape" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -441877,7 +468450,7 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t sc:url "http://slim.ucd.ie/slimsearch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3307, @@ -441905,7 +468478,7 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -441922,8 +468495,32 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t sc:softwareHelp ; sc:url "http://watson.hgen.pitt.edu/docs/SLink.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_3170, + edam:topic_3308, + edam:topic_3320, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8749905", + "pubmed:35035899" ; + sc:description "Visualising novel splicing events in RNA-Seq data." ; + sc:featureList edam:operation_0310, + edam:operation_0337, + edam:operation_0446 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Slinker" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/Oshlack/Slinker" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769 ; @@ -441944,7 +468541,7 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t biotools:primaryContact "Eric J. Kort" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -441960,7 +468557,7 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t sc:url "http://bioinformatics.rutgers.edu/Software/SLiQ/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3534, @@ -441980,7 +468577,7 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t biotools:primaryContact "Jung-Hsin Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -442004,7 +468601,7 @@ slivar is a set of command-line tools that enables rapid querying and filtering sc:url "https://github.com/brentp/slivar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2640, @@ -442016,7 +468613,7 @@ slivar is a set of command-line tools that enables rapid querying and filtering sc:url "https://github.com/DiNg1011/SLMGAE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -442035,7 +468632,7 @@ slivar is a set of command-line tools that enables rapid querying and filtering biotools:primaryContact "Alberto Magi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3299, @@ -442052,7 +468649,7 @@ slivar is a set of command-line tools that enables rapid querying and filtering biotools:primaryContact "Manuel Garber" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659 ; sc:citation , "pmcid:PMC6923828", @@ -442064,8 +468661,33 @@ slivar is a set of command-line tools that enables rapid querying and filtering sc:name "SLNPM" ; sc:url "https://github.com/BioMedicalBigDataMiningLab/SLNPM" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0602, + edam:topic_2640, + edam:topic_3512, + edam:topic_3974 ; + sc:citation , + "pmcid:PMC9419874", + "pubmed:36029479" ; + sc:description "A comprehensive database of cancer-specific synthetic lethal interactions for precision cancer therapy via multi-omics analysis." ; + sc:featureList edam:operation_2421, + edam:operation_3223, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "SLOAD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.tmliang.cn/SLOAD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175, edam:topic_3676 ; @@ -442081,7 +468703,7 @@ slivar is a set of command-line tools that enables rapid querying and filtering biotools:primaryContact "Abel HJ" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0114, edam:topic_0621, @@ -442102,14 +468724,8 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t sc:name "SLOPPR" ; sc:url "https://github.com/wenzelm/slidr-sloppr" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:description "Slot367 Slot Online Tergacor di Indonesia" ; - sc:name "Slot367" ; - sc:url "https://slot367.com/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102 ; @@ -442121,7 +468737,7 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t sc:url "http://vamps.mbl.edu/resources/software.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0780 ; @@ -442137,8 +468753,34 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t "Windows" ; sc:url "http://sunflower.kuicr.kyoto-u.ac.jp/~tamura/slpfa.html" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0140, + edam:topic_0820, + edam:topic_2229, + edam:topic_2269 ; + sc:citation , + "pubmed:35801913" ; + sc:description "A Multi-view Subcellular Localization Prediction Tool for Multi-location Human Proteins." ; + sc:featureList edam:operation_0224, + edam:operation_2489, + edam:operation_3092 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SLPred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://slpred.kansil.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3519 ; @@ -442156,7 +468798,7 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t biotools:primaryContact "Matthias Kohl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3518, edam:topic_3569 ; @@ -442171,7 +468813,7 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t sc:url "http://fafner.meb.ki.se/personal/yudpaw/?page_id=13" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_3125 ; @@ -442187,7 +468829,7 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t sc:url "https://github.com/luojunwei/SLR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0092 ; @@ -442205,7 +468847,7 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t biotools:primaryContact "BioJS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2815, edam:topic_3954 ; @@ -442220,7 +468862,7 @@ SLIDR and SLOPPR identify spliced leaders (SLs) from 5'-tails of RNA-Seq reads t sc:url "https://sites.imagej.net/SMA/plugins/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_0654, @@ -442237,7 +468879,7 @@ SMAca is a python tool to detect putative SMA carriers and estimate the absolute sc:url "http://www.github.com/babelomics/SMAca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0621, edam:topic_2640, @@ -442251,7 +468893,7 @@ SMAca is a python tool to detect putative SMA carriers and estimate the absolute sc:url "https://github.com/SMAFIRA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0128, @@ -442268,7 +468910,7 @@ SMAca is a python tool to detect putative SMA carriers and estimate the absolute sc:url "http://haddock6.sfsu.edu/smal/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -442283,13 +468925,8 @@ SMAca is a python tool to detect putative SMA carriers and estimate the absolute sc:url "https://github.com/dayunliu/SMALF" ; biotools:primaryContact "Lei Deng" . - a sc:SoftwareApplication ; - sc:description "To support the increasing research interest in small RNA, CD Genomics is offering the qualified small RNA sequencing service that covers novel small RNA discovery, mutation characterization, and expression profiling of small RNAs by leveraging of advanced NGS technologies and data analysis pipeline. CD Genomics provides full small RNA sequencing service packages including sample standardization, library preparation, deep sequencing, raw data quality control, genome assembly, and customized bioinformatics analysis. We can tailor this pipeline to your research interest. If you have additional requirements or questions, please feel free to contact us." ; - sc:name "Small RNA Sequencing" ; - sc:url "https://www.cd-genomics.com/Small-RNA.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Plug-in" ; sc:applicationSubCategory edam:topic_2640, @@ -442308,7 +468945,7 @@ SMAca is a python tool to detect putative SMA carriers and estimate the absolute biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -442322,7 +468959,7 @@ SMAca is a python tool to detect putative SMA carriers and estimate the absolute sc:url "http://hvdr.bioinf.wits.ac.za/SmallGenomeTools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation , @@ -442340,7 +468977,7 @@ SMAca is a python tool to detect putative SMA carriers and estimate the absolute sc:url "http://www.sanger.ac.uk/science/tools/smalt-0" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3175, @@ -442359,7 +468996,7 @@ SMAca is a python tool to detect putative SMA carriers and estimate the absolute biotools:primaryContact "Robin Andersson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0769, @@ -442379,7 +469016,7 @@ SMAca is a python tool to detect putative SMA carriers and estimate the absolute sc:url "https://github.com/XWangLab/SMAP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -442395,26 +469032,41 @@ SMAca is a python tool to detect putative SMA carriers and estimate the absolute a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1139" ; - sc:name "SMART accession number" ; - sc:sameAs "http://edamontology.org/data_1139" ], + sc:additionalType "http://edamontology.org/data_1139" ; + sc:name "SMART accession number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2782" ; - sc:name "SMART domain name" ; - sc:sameAs "http://edamontology.org/data_2782" ] ; + sc:additionalType "http://edamontology.org/data_2782" ; + sc:name "SMART domain name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ], + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein structure report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0736 ; - sc:citation ; + sc:citation , + , + , + , + , + , + , + , + , + "pmcid:PMC5753352", + "pubmed:10592234", + "pubmed:11752305", + "pubmed:14681379", + "pubmed:16381859", + "pubmed:18978020", + "pubmed:22053084", + "pubmed:29040681", + "pubmed:9600884" ; sc:description "SMART protein domain database." ; sc:featureList edam:operation_0224 ; sc:name "Simple modular architecture research tool (SMART)" ; @@ -442425,7 +469077,7 @@ SMAca is a python tool to detect putative SMA carriers and estimate the absolute sc:url "http://smart.embl.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3335, edam:topic_3474, edam:topic_3577 ; @@ -442442,30 +469094,52 @@ SMAca is a python tool to detect putative SMA carriers and estimate the absolute "Windows" ; sc:url "https://hfriskcalculator.herokuapp.com" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0121, - edam:topic_0128, - edam:topic_0154, - edam:topic_0821, - edam:topic_3520 ; - sc:citation , - "pubmed:31814401" ; - sc:description """An Efficient Strategy for Increasing the Coverage of Chemical Cross-Linking Analysis. - -Chemical cross-linking combined with mass spectrometry (CXMS) has emerged as a powerful tool to study protein structure, conformation, and protein-protein interactions (PPIs). Until now, most cross-linked peptides were generated by using commercial cross-linkers, such as DSS, BS3, and DSSO, which react with the primary amino groups of the lysine residues of proteins. However, trypsin, the most commonly used proteolytic enzyme, cannot cleave the C-terminus of a linked lysine, making the obtained cross-linked peptides longer than common peptides and unfavorable for MS identification and data searching. - -||| HOMEPAGE MISSING!. + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3077, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9352634", + "pubmed:35927517" ; + sc:description "A software for generating and processing smart line recording trajectories for population two-photon calcium imaging." ; + sc:featureList edam:operation_2939, + edam:operation_3443, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SmaRT2P" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/moni90/SmART2P" . -||| CORRECT NAME OF TOOL COULD ALSO BE 'bacteriome'""" ; - sc:featureList edam:operation_0366, - edam:operation_3631, - edam:operation_3642, - edam:operation_3767 ; - sc:name "smart cutter" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31814401" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0081, + edam:topic_0769, + edam:topic_3382, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9070730", + "pubmed:35396258" ; + sc:description "An Open-Source Extension of WholeBrain for Intact Mouse Brain Registration and Segmentation." ; + sc:featureList edam:operation_1812, + edam:operation_3443, + edam:operation_3552 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SMART" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://smartrpackage.shinyapps.io/smart_sample_dataset" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -442480,7 +469154,7 @@ Chemical cross-linking combined with mass spectrometry (CXMS) has emerged as a p sc:url "https://cran.r-project.org/web/packages/SMARTAR/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, @@ -442495,7 +469169,7 @@ Chemical cross-linking combined with mass spectrometry (CXMS) has emerged as a p sc:url "http://software.crg.es/smartcell/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, edam:topic_0602, @@ -442513,7 +469187,7 @@ Chemical cross-linking combined with mass spectrometry (CXMS) has emerged as a p sc:url "https://smartgraph.ncats.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0099 ; @@ -442530,7 +469204,7 @@ Chemical cross-linking combined with mass spectrometry (CXMS) has emerged as a p biotools:primaryContact "Maya Polishchuk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0769, edam:topic_3172, @@ -442549,7 +469223,7 @@ SmartPeak is an application that encapsulates advanced algorithms to enable fast sc:url "https://github.com/AutoFlowResearch/SmartPeak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, edam:topic_3170, @@ -442570,7 +469244,7 @@ SmartPhase is a phasing tool tailored for clinical use in genetic diagnosis pipe sc:url "http://ibis.helmholtz-muenchen.de/smartphase/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -442586,7 +469260,7 @@ SmartPhase is a phasing tool tailored for clinical use in genetic diagnosis pipe sc:url "http://sb.cs.cmu.edu/smarts/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3305, edam:topic_3474 ; @@ -442598,7 +469272,7 @@ SmartPhase is a phasing tool tailored for clinical use in genetic diagnosis pipe sc:url "http://haddock9.sfsu.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0637, @@ -442616,7 +469290,7 @@ SmartPhase is a phasing tool tailored for clinical use in genetic diagnosis pipe biotools:primaryContact "Qunyuan Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, edam:topic_0209, @@ -442639,7 +469313,7 @@ Compare two SMARTS expression with respect to subset relation (Does expression A sc:url "https://smarts.plus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -442653,7 +469327,7 @@ Compare two SMARTS expression with respect to subset relation (Does expression A sc:url "http://smash.cs.berkeley.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, edam:topic_2885, @@ -442676,18 +469350,17 @@ Sample swaps are a real concern in high throughput sequencing studies. SMaSH hel a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3736" ; - sc:name "Ecological data" ; - sc:sameAs "http://edamontology.org/data_3736" ], + sc:additionalType "http://edamontology.org/data_3736" ; + sc:name "Ecological data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0848" ; - sc:name "Raw sequence" ; - sc:sameAs "http://edamontology.org/data_0848" ] ; + sc:additionalType "http://edamontology.org/data_0848" ; + sc:encodingFormat "http://edamontology.org/format_2571" ; + sc:name "Raw sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0950" ; - sc:name "Mathematical model" ; - sc:sameAs "http://edamontology.org/data_0950" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0950" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Mathematical model" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0196, @@ -442706,13 +469379,36 @@ Sample swaps are a real concern in high throughput sequencing studies. SMaSH hel biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Find and visualize rearrangements in DNA sequences" ; sc:name "Smash++" ; sc:url "https://github.com/smortezah/smashpp" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2229, + edam:topic_3170, + edam:topic_3308, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC9361618", + "pubmed:35941549" ; + sc:description "A scalable, general marker gene identification framework for single-cell RNA-sequencing." ; + sc:featureList edam:operation_0314, + edam:operation_3891, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SMaSH" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.com/cvejic-group/smash" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, edam:topic_0128, @@ -442730,8 +469426,32 @@ pipeline for integrated analysis of eCLIP and DMS/PARS.""" ; sc:name "SMAtool" ; sc:url "https://github.com/QuKunLab/SMAtool" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_3989" ; + sc:name "Sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3796 ; + sc:citation , + "pmcid:PMC5470542", + "pubmed:28024154" ; + sc:description "SMC++ is a program for estimating the size history of populations from whole genome sequence data." ; + sc:featureList edam:operation_2423 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SMC++" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/popgenmethods/smcpp" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2229, @@ -442754,7 +469474,7 @@ pipeline for integrated analysis of eCLIP and DMS/PARS.""" ; sc:url "https://CRAN.R-project.org/package=SMDIC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_0820, edam:topic_3382 ; @@ -442768,8 +469488,31 @@ The smDynamicsAnalyzer is an open-source macro that can determine a series of dy sc:name "smDynamicsAnalyzer" ; sc:url "https://github.com/masataka-yanagawa/IgorPro8-smDynamicsAnalyzer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_2269, + edam:topic_2885, + edam:topic_3305, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC8947622", + "pubmed:35286307" ; + sc:description "A rapid algorithm for Bayesian GWAS meta-analysis with a large number of studies included." ; + sc:featureList edam:operation_0487, + edam:operation_3196, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SMetABF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://sunjianle-sjtu.shinyapps.io/analycode/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3277, @@ -442785,7 +469528,7 @@ The smDynamicsAnalyzer is an open-source macro that can determine a series of dy sc:url "http://bioinfo-out.curie.fr/projects/smethillium/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3047, edam:topic_3382 ; @@ -442800,7 +469543,7 @@ Single molecule Förster Resonance Energy Transfer (smFRET) can be used to obtai sc:url "https://craggslab.github.io/smfBox/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0154, edam:topic_3047, @@ -442818,7 +469561,7 @@ SMfinder is a free software for the analysis of small molecule. It allows identi sc:url "http://www.ifom.eu/SMfinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3474 ; sc:citation , @@ -442830,7 +469573,7 @@ Deep neural networks are vulnerable to adversarial attacks. More importantly, so sc:url "https://github.com/CZHQuality/AAA-Pix2pix" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3314, @@ -442848,7 +469591,7 @@ Deep neural networks are vulnerable to adversarial attacks. More importantly, so sc:url "https://gitlab.com/sgr34/smgen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0160, edam:topic_0623, @@ -442873,14 +469616,14 @@ Results: To uncover the reasons, we figured out three types of Incorrectly Selec a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3442" ; - sc:name "MRI image" ; - sc:sameAs "http://edamontology.org/data_3442" ] ; + sc:additionalType "http://edamontology.org/data_3442" ; + sc:encodingFormat "http://edamontology.org/format_3548" ; + sc:name "MRI image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3442" ; - sc:name "MRI image" ; - sc:sameAs "http://edamontology.org/data_3442" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3442" ; + sc:encodingFormat "http://edamontology.org/format_3548" ; + sc:name "MRI image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_3382 ; @@ -442895,7 +469638,7 @@ Results: To uncover the reasons, we figured out three types of Incorrectly Selec sc:url "https://github.com/SMI/SmiServices" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workbench" ; sc:applicationSubCategory edam:topic_0154, @@ -442916,7 +469659,7 @@ Results: To uncover the reasons, we figured out three types of Incorrectly Selec sc:url "https://github.com/MIB-Lab/SMILE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2258, edam:topic_2275, edam:topic_3314, @@ -442931,7 +469674,7 @@ SMILES Pair Encoding (ChemRxiv) first learns a vocabulary of high frequency SMIL sc:url "https://github.com/XinhaoLi74/SmilesPE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3308 ; @@ -442946,7 +469689,7 @@ SMILES Pair Encoding (ChemRxiv) first learns a vocabulary of high frequency SMIL sc:url "http://www.mirz.unibas.ch/cloningprofiles/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2259, @@ -442970,7 +469713,7 @@ SMILES Pair Encoding (ChemRxiv) first learns a vocabulary of high frequency SMIL "Neil Ari Wijetunga" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -442993,7 +469736,7 @@ SMILES Pair Encoding (ChemRxiv) first learns a vocabulary of high frequency SMIL biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3067, edam:topic_3954 ; @@ -443007,7 +469750,7 @@ The CSSALT Software Development Kit (SDK) connects Unity Technology’s Unity 3D sc:url "https://github.com/UF-CSSALT/SMMARTS-SDK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0632, @@ -443031,7 +469774,7 @@ The CSSALT Software Development Kit (SDK) connects Unity Technology’s Unity 3D sc:url "https://github.com/abelson-lab/smMIP-tools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -443051,7 +469794,7 @@ The CSSALT Software Development Kit (SDK) connects Unity Technology’s Unity 3D biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0128, @@ -443071,7 +469814,7 @@ The CSSALT Software Development Kit (SDK) connects Unity Technology’s Unity 3D biotools:primaryContact "Raman Parkesh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3334, edam:topic_3382 ; @@ -443088,7 +469831,7 @@ SmoCuDa is a free open access database of 250 smoking-related images. All images sc:url "https://smocuda.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -443110,7 +469853,7 @@ SmoCuDa is a free open access database of 250 smoking-related images. All images biotools:primaryContact "SMOG Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -443126,7 +469869,7 @@ SmoCuDa is a free open access database of 250 smoking-related images. All images sc:url "http://www.smoldyn.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2269, @@ -443142,7 +469885,7 @@ SmoCuDa is a free open access database of 250 smoking-related images. All images sc:url "http://www.wageningenur.nl/en/show/SMOOTH.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2814 ; @@ -443160,7 +469903,7 @@ SmoCuDa is a free open access database of 250 smoking-related images. All images "Minxin Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0621, @@ -443183,7 +469926,7 @@ SmoCuDa is a free open access database of 250 smoking-related images. All images sc:url "https://github.com/AlexanderBartholomaeus/smORFer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0632, edam:topic_0659, @@ -443202,7 +469945,7 @@ A Tool for Small Open Reading Frame (smORF) / Microprotein Function Prediction." sc:url "http://www.cuilab.cn/smorfunction" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -443224,8 +469967,28 @@ A Tool for Small Open Reading Frame (smORF) / Microprotein Function Prediction." sc:url "http://www.smpdb.ca" ; biotools:primaryContact "Contact Form" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0092, + edam:topic_3053, + edam:topic_3372 ; + sc:citation , + "pmcid:PMC8714909", + "pubmed:34976028" ; + sc:description "An R Package for Easy and Elegant Data Visualization." ; + sc:featureList edam:operation_0337, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "smplot" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/smin95/smplot" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -443241,8 +470004,29 @@ A Tool for Small Open Reading Frame (smORF) / Microprotein Function Prediction." sc:url "https://github.com/guofeieileen/SMRT/wiki/Software" ; biotools:primaryContact "Lusheng Wang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3168, + edam:topic_3337, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8563705", + "pubmed:34745946" ; + sc:description "Randomized Data Transformation for Cancer Subtyping and Big Data Analysis." ; + sc:featureList edam:operation_2939, + edam:operation_3431, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:name "SMRT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://SMRT.tinnguyen-lab.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Suite" ; @@ -443260,7 +470044,7 @@ A Tool for Small Open Reading Frame (smORF) / Microprotein Function Prediction." sc:url "http://www.pacb.com/products-and-services/analytical-software/smrt-analysis/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -443276,7 +470060,7 @@ A Tool for Small Open Reading Frame (smORF) / Microprotein Function Prediction." sc:url "https://github.com/PacificBiosciences/DevNet/wiki/SMRT-View" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080 ; @@ -443293,7 +470077,7 @@ A Tool for Small Open Reading Frame (smORF) / Microprotein Function Prediction." sc:url "http://www.bioinformatics.org/sms2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0625, @@ -443319,10 +470103,10 @@ smudge_E.py - script to generate the corpus and features vectors of genes and di a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -443343,7 +470127,7 @@ smudge_E.py - script to generate the corpus and features vectors of genes and di sc:url "http://konulabapps.bilkent.edu.tr:3838/SmulTCan/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3474, @@ -443360,8 +470144,29 @@ smudge_E.py - script to generate the corpus and features vectors of genes and di biotools:primaryContact "Joshua Mayer", "Souparno Ghosh" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_3168, + edam:topic_3338 ; + sc:citation , + "pmcid:PMC8548243", + "pubmed:34635615" ; + sc:description "An Open-Source Software for Sanger Sequencing-based Identification of Nontuberculous Mycobacterial Species." ; + sc:featureList edam:operation_3185, + edam:operation_3192, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "SnackNTM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Young-gonKim/SnackNTM" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0199, edam:topic_3168 ; @@ -443376,7 +470181,7 @@ When a higher value of gap opening penalty is required, SnackVar automatically a sc:url "https://github.com/Young-gonKim/SnackVar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -443397,7 +470202,7 @@ When a higher value of gap opening penalty is required, SnackVar automatically a biotools:primaryContact "David Venet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3170, @@ -443417,7 +470222,7 @@ When a higher value of gap opening penalty is required, SnackVar automatically a "Thomas Manke" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -443433,7 +470238,7 @@ When a higher value of gap opening penalty is required, SnackVar automatically a sc:url "https://snakemake.readthedocs.io/en/stable/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -443450,7 +470255,7 @@ When a higher value of gap opening penalty is required, SnackVar automatically a biotools:primaryContact "Ritwik Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3315, edam:topic_3382, @@ -443469,7 +470274,7 @@ The build environment needed to create a docker image for the tracking code loca sc:url "https://gwjensen.github.io/SnakeStrike/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2885, @@ -443483,7 +470288,7 @@ The build environment needed to create a docker image for the tracking code loca sc:url "http://korflab.ucdavis.edu/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0082, @@ -443498,7 +470303,7 @@ The build environment needed to create a docker image for the tracking code loca sc:url "http://www.cs.rpi.edu/~zaki/www-new/pmwiki.php/Software/Software#toc31" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation ; @@ -443511,14 +470316,14 @@ The build environment needed to create a docker image for the tracking code loca a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_2885 ; @@ -443536,7 +470341,7 @@ The build environment needed to create a docker image for the tracking code loca biotools:primaryContact "Rostlab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3386, edam:topic_3444 ; sc:citation , @@ -443549,7 +470354,7 @@ The build environment needed to create a docker image for the tracking code loca sc:url "https://github.com/chixindebaoyu/snapMRF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -443569,7 +470374,7 @@ The build environment needed to create a docker image for the tracking code loca sc:url "https://github.com/r3fang/SnapATAC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0797, @@ -443591,7 +470396,7 @@ The build environment needed to create a docker image for the tracking code loca biotools:primaryContact "John Marioni" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, @@ -443614,7 +470419,7 @@ The build environment needed to create a docker image for the tracking code loca sc:url "https://github.com/HuMingLab/SnapHiC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0160, @@ -443629,7 +470434,7 @@ The build environment needed to create a docker image for the tracking code loca sc:url "https://github.com/PYangLab/SnapKin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0780, @@ -443653,7 +470458,7 @@ The build environment needed to create a docker image for the tracking code loca sc:url "https://github.com/rabier/MySnappNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -443669,7 +470474,7 @@ The build environment needed to create a docker image for the tracking code loca sc:url "https://price.systemsbiology.org/research/snapr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0593, edam:topic_0769, @@ -443689,7 +470494,7 @@ Determination of thermophysical properties (densities, diffusion coefficients, e sc:url "https://fairdomhub.org/studies/639/snapshots/1" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0623, @@ -443708,7 +470513,7 @@ Determination of thermophysical properties (densities, diffusion coefficients, e biotools:primaryContact "Nguyen Quoc Khanh Le" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3064, @@ -443731,7 +470536,7 @@ Determination of thermophysical properties (densities, diffusion coefficients, e sc:url "https://www.snat.ethz.ch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -443747,7 +470552,7 @@ Determination of thermophysical properties (densities, diffusion coefficients, e sc:url "https://code.google.com/p/snavi/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0749, edam:topic_3179 ; @@ -443764,7 +470569,7 @@ The first and the only pre-alignment filtering algorithm that works efficiently sc:url "https://github.com/CMU-SAFARI/SneakySnake" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0108, edam:topic_0203 ; @@ -443782,7 +470587,7 @@ SNexpression is a software tool for structural analysis of Symmetric Nets (SN). sc:url "http://www.di.unito.it/~depierro/SNexpression" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0208, @@ -443800,7 +470605,7 @@ SNexpression is a software tool for structural analysis of Symmetric Nets (SN). sc:url "https://pages.cpsc.ucalgary.ca/~tnjarada/snf-nn.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0166, edam:topic_0736, @@ -443817,14 +470622,14 @@ full-chain protein structure prediction server.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3175 ; @@ -443842,8 +470647,28 @@ full-chain protein structure prediction server.""" ; sc:url "https://github.com/fritzsedlazeck/Sniffles" ; biotools:primaryContact "Fritz J Sedlazeck" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3174, + edam:topic_3673, + edam:topic_3837 ; + sc:citation , + "pubmed:35695743" ; + sc:description "Sequence-independent adapter identification and removal in long-read shotgun sequencing data." ; + sc:featureList edam:operation_0337, + edam:operation_3192, + edam:operation_3237 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SNIKT" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/piyuranjan/SNIKT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3056, @@ -443857,7 +470682,7 @@ full-chain protein structure prediction server.""" ; biotools:primaryContact "Vikas Bansal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -443876,7 +470701,7 @@ full-chain protein structure prediction server.""" ; sc:url "http://snipa.helmholtz-muenchen.de/snipa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation "pubmed:21689413" ; @@ -443891,7 +470716,7 @@ full-chain protein structure prediction server.""" ; biotools:primaryContact "Junhyong Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -443915,7 +470740,7 @@ full-chain protein structure prediction server.""" ; "Torsten Seemann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053 ; @@ -443934,7 +470759,7 @@ full-chain protein structure prediction server.""" ; biotools:primaryContact "Michael Riffle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -443956,7 +470781,7 @@ full-chain protein structure prediction server.""" ; biotools:primaryContact "John D. Storey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation , @@ -443972,7 +470797,7 @@ full-chain protein structure prediction server.""" ; sc:url "http://membres-timc.imag.fr/Olivier.Francois/snmf/index.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -443987,7 +470812,7 @@ full-chain protein structure prediction server.""" ; sc:url "http://bioinfo.uncc.edu/SNNCliq/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0659, edam:topic_2229, @@ -444008,8 +470833,29 @@ snoTHAW is a tool to help visualize snoRNA expression data from snoDB""" ; sc:name "snoDB" ; sc:url "http://scottgroup.med.usherbrooke.ca/snoDB/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_0749, + edam:topic_3170, + edam:topic_3320, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9226514", + "pubmed:35657102" ; + sc:description "The snoGloBe interaction predictor reveals a broad spectrum of C/D snoRNA RNA targets." ; + sc:featureList edam:operation_0433, + edam:operation_0443, + edam:operation_3902 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "snoGloBe" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/scottgroup/snoGloBe" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -444030,8 +470876,28 @@ snoTHAW is a tool to help visualize snoRNA expression data from snoDB""" ; sc:url "http://lowelab.ucsc.edu/snoGPS/" ; biotools:primaryContact "snoGPS Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0637, + edam:topic_3303, + edam:topic_3452 ; + sc:citation , + "pubmed:35612169" ; + sc:description "Implementing SNOMED CT in Open Software Solutions to Enhance the Findability of COVID-19 Questionnaires." ; + sc:featureList edam:operation_3435, + edam:operation_3695, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SNOMED CT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BIH-CEI/SNOMEDCT_OPAL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0797, @@ -444047,7 +470913,7 @@ snoTHAW is a tool to help visualize snoRNA expression data from snoDB""" ; sc:url "http://snoopcgh.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168 ; @@ -444067,7 +470933,7 @@ snoTHAW is a tool to help visualize snoRNA expression data from snoDB""" ; biotools:primaryContact "Jean-Francois Spinella" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2275, @@ -444086,7 +470952,7 @@ snoTHAW is a tool to help visualize snoRNA expression data from snoDB""" ; biotools:primaryContact "Mostafa Herajy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0659, @@ -444105,7 +470971,7 @@ snoTHAW is a tool to help visualize snoRNA expression data from snoDB""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -444124,14 +470990,14 @@ snoTHAW is a tool to help visualize snoRNA expression data from snoDB""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2354" ; - sc:name "RNA family report" ; - sc:sameAs "http://edamontology.org/data_2354" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2354" ; + sc:encodingFormat "http://edamontology.org/format_1920" ; + sc:name "RNA family report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -444145,7 +471011,7 @@ snoTHAW is a tool to help visualize snoRNA expression data from snoDB""" ; sc:url "http://snostrip.bioinf.uni-leipzig.de/index.py" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0622 ; @@ -444160,7 +471026,7 @@ snoTHAW is a tool to help visualize snoRNA expression data from snoDB""" ; biotools:primaryContact "J. Michael Cherry" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -444183,7 +471049,7 @@ snoTHAW is a tool to help visualize snoRNA expression data from snoDB""" ; biotools:primaryContact "BABELOMICS Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3444, edam:topic_3524 ; @@ -444200,7 +471066,7 @@ Snowball ICA: A Model order free Independent Component Analysis Scenario for Fun sc:url "https://github.com/GHu-DUT/Snowball-ICA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053, @@ -444214,7 +471080,7 @@ Snowball ICA: A Model order free Independent Component Analysis Scenario for Fun sc:url "https://sourceforge.net/projects/snowyowl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, edam:topic_3168, @@ -444250,14 +471116,14 @@ Enter an accession number (e.g""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_2533, @@ -444274,7 +471140,7 @@ Enter an accession number (e.g""" ; sc:url "https://github.com/dmnfarrell/snpgenie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3314, @@ -444293,14 +471159,14 @@ Enter an accession number (e.g""" ; biotools:primaryContact "Mohammed Sadeq Al-Rawi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Generate mutated sequence files from a reference genome." ; sc:featureList edam:operation_0364 ; sc:name "snp-mutator" ; sc:url "https://github.com/CFSAN-Biostatistics/snp-mutator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102 ; @@ -444315,7 +471181,7 @@ Enter an accession number (e.g""" ; biotools:primaryContact "SNP-o-matic Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3053 ; @@ -444329,7 +471195,7 @@ Enter an accession number (e.g""" ; sc:url "http://www.broadinstitute.org/mpg/snp2hla/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -444344,7 +471210,7 @@ Enter an accession number (e.g""" ; sc:url "http://ccg.vital-it.ch/snp2tfbs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -444365,7 +471231,7 @@ Enter an accession number (e.g""" ; sc:url "http://bioinfo.bsd.uchicago.edu/SNP_cutter.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -444380,13 +471246,8 @@ Enter an accession number (e.g""" ; sc:softwareVersion "1.5.1" ; sc:url "http://www.dynacom.co.jp/u-tokyo.ac.jp/snphitlink/" . - a sc:SoftwareApplication ; - sc:description "CD genomics can help you analyze genetic variation efficiently to meet diverse research needs. By utilizing Affymetrix and Illumina array platforms, we support high-throughput, multiplex processing to meet diverse research needs., delivering high-quality data at a low per-sample cost. Our Full Service covers the complete process, from quality control of genomic DNA to thedetermination of genotypes. Besides, CD Genomics can also help create your own custom microarray which can be tailored to meet specific project requirements. If you have additional requirements or questions, please feel free to contact us." ; - sc:name "SNP Microarray" ; - sc:url "https://www.cd-genomics.com/SNP-Microarray.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -444402,7 +471263,7 @@ Enter an accession number (e.g""" ; sc:url "http://sourceforge.net/projects/snpratiotest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -444418,7 +471279,7 @@ Enter an accession number (e.g""" ; sc:url "http://isu.indstate.edu/ybai2/SNPAAMapper2/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -444435,7 +471296,7 @@ Enter an accession number (e.g""" ; biotools:primaryContact "Francesco Sambo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0199, @@ -444457,7 +471318,7 @@ Enter an accession number (e.g""" ; biotools:primaryContact "Sungsam Gong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0634, @@ -444472,7 +471333,7 @@ Enter an accession number (e.g""" ; sc:url "http://www.dynacom.co.jp/english/snpalyze_e/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2885, @@ -444489,7 +471350,7 @@ Enter an accession number (e.g""" ; sc:url "http://bioinfo.iconcologia.net/es/SNPassoc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0199, @@ -444522,7 +471383,7 @@ Enter an accession number (e.g""" ; sc:url "http://www.snpator.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_2885, @@ -444541,7 +471402,7 @@ Enter an accession number (e.g""" ; sc:url "http://www.SNPbox.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053 ; @@ -444554,7 +471415,7 @@ Enter an accession number (e.g""" ; sc:url "http://watson.hgen.pitt.edu/register/soft_doc.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -444574,7 +471435,7 @@ Enter an accession number (e.g""" ; biotools:primaryContact "Robert Scharpf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation , @@ -444591,7 +471452,7 @@ Enter an accession number (e.g""" ; sc:url "https://www.ncbi.nlm.nih.gov/snp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2815, @@ -444609,7 +471470,7 @@ Enter an accession number (e.g""" ; biotools:primaryContact "Ivan Ovcharenko" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -444625,7 +471486,7 @@ Enter an accession number (e.g""" ; sc:url "http://pevsnerlab.kennedykrieger.org/SNPduo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -444647,7 +471508,7 @@ Enter an accession number (e.g""" ; biotools:primaryContact "Greg Lennon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2885 ; @@ -444666,34 +471527,34 @@ Enter an accession number (e.g""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -444711,7 +471572,7 @@ Enter an accession number (e.g""" ; sc:url "http://snpeff.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -444734,7 +471595,7 @@ Enter an accession number (e.g""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, @@ -444751,8 +471612,33 @@ Enter an accession number (e.g""" ; sc:url "http://daimi.au.dk/~mailund/SNPfile/index.html" ; biotools:primaryContact "Thomas Mailund" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0610, + edam:topic_0625, + edam:topic_2885, + edam:topic_3518 ; + sc:citation , + "pubmed:35398990" ; + sc:description "An R package for interactive and reproducible SNP filtering." ; + sc:featureList edam:operation_0484, + edam:operation_2939, + edam:operation_3196, + edam:operation_3695, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SNPfiltR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://devonderaad.github.io/SNPfiltR/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -444767,7 +471653,7 @@ Enter an accession number (e.g""" ; sc:url "http://genepi-snpflow.i-med.ac.at/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0622, @@ -444786,7 +471672,7 @@ Enter an accession number (e.g""" ; biotools:primaryContact "Hao Mei" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2885, @@ -444804,18 +471690,18 @@ Enter an accession number (e.g""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -444835,7 +471721,7 @@ Enter an accession number (e.g""" ; biotools:primaryContact "Christian Arnold" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2885, @@ -444849,7 +471735,7 @@ Enter an accession number (e.g""" ; sc:url "http://www.softsea.com/review/SNPHunter.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053 ; @@ -444864,7 +471750,7 @@ Enter an accession number (e.g""" ; sc:url "http://www.animalgenome.org/tools/share/SNPidentifier/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0204, @@ -444886,7 +471772,7 @@ Enter an accession number (e.g""" ; biotools:primaryContact "Z. Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0219, @@ -444903,7 +471789,7 @@ Enter an accession number (e.g""" ; biotools:primaryContact "Lars Wienbrandt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3053 ; @@ -444926,13 +471812,13 @@ Enter an accession number (e.g""" ; sc:url "https://ccbc.erasmusmc.nl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "A Modular/Scalable workflow for Microbial Variant Calling, Recombination detection and Phylogenetic tree reconstruction." ; sc:name "snpkit" ; sc:url "https://alipirani88.github.io/snpkit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3320 ; @@ -444950,7 +471836,7 @@ Enter an accession number (e.g""" ; sc:url "https://code.google.com/archive/p/snplice/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -444968,18 +471854,15 @@ Enter an accession number (e.g""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2012" ; + sc:name "Sequence coordinates" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157, @@ -444998,7 +471881,7 @@ Enter an accession number (e.g""" ; biotools:primaryContact "Reidar Andreson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0199, edam:topic_2814, @@ -445017,7 +471900,7 @@ Enter an accession number (e.g""" ; sc:url "http://www.snpmol.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -445043,7 +471926,7 @@ Enter an accession number (e.g""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -445065,7 +471948,7 @@ Enter an accession number (e.g""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, edam:topic_3168, @@ -445081,7 +471964,7 @@ The severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) pandemic has de sc:url "https://www.snp-nexus.org/v4/covid/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0749, edam:topic_2885, @@ -445105,7 +471988,7 @@ These are self-contained datasets, including reference(s), tree and snp_table(s) sc:url "https://github.com/d-j-e/SNPPar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -445121,7 +472004,7 @@ These are self-contained datasets, including reference(s), tree and snp_table(s) sc:url "http://www-personal.une.edu.au/~cgondro2/snpQC.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2885, @@ -445142,7 +472025,7 @@ These are self-contained datasets, including reference(s), tree and snp_table(s) sc:url "https://github.com/nebfield/snpQT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0769, @@ -445161,7 +472044,7 @@ The analysis of genomic data can be an intimidating process, particularly for re sc:url "https://rdrr.io/github/hemstrow/snpR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2885, @@ -445178,7 +472061,7 @@ The analysis of genomic data can be an intimidating process, particularly for re sc:url "http://insilico.utulsa.edu/snprank.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625 ; sc:citation ; @@ -445195,7 +472078,7 @@ The analysis of genomic data can be an intimidating process, particularly for re sc:url "https://github.com/AMarete/fimpute-utils" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2885, @@ -445218,7 +472101,7 @@ The analysis of genomic data can be an intimidating process, particularly for re biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2885, edam:topic_3518 ; @@ -445232,14 +472115,14 @@ The analysis of genomic data can be an intimidating process, particularly for re a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3325, @@ -445262,7 +472145,7 @@ The analysis of genomic data can be an intimidating process, particularly for re "Rita Casadio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0199, @@ -445279,7 +472162,7 @@ The analysis of genomic data can be an intimidating process, particularly for re sc:url "http://snps-and-go.biocomp.unibo.it/snps-and-go/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -445295,7 +472178,7 @@ The analysis of genomic data can be an intimidating process, particularly for re sc:url "http://pevsnerlab.kennedykrieger.org/php/?q=node/101" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0085 ; sc:citation "pubmed:24813542" ; @@ -445310,7 +472193,7 @@ The analysis of genomic data can be an intimidating process, particularly for re biotools:primaryContact "SNPsea Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053 ; @@ -445324,7 +472207,7 @@ The analysis of genomic data can be an intimidating process, particularly for re sc:url "http://dna.leeds.ac.uk/snpsetter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3365 ; @@ -445338,7 +472221,7 @@ The analysis of genomic data can be an intimidating process, particularly for re sc:url "http://snpeff.sourceforge.net/SnpSift.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -445353,7 +472236,7 @@ The analysis of genomic data can be an intimidating process, particularly for re sc:url "https://code.google.com/p/phylosoftware/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0622, @@ -445371,7 +472254,7 @@ The analysis of genomic data can be an intimidating process, particularly for re sc:url "http://www.broadinstitute.org/mpg/snpsnap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -445387,7 +472270,7 @@ The analysis of genomic data can be an intimidating process, particularly for re sc:url "http://neurogenetics.qimrberghofer.edu.au/SNPSpD/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -445402,7 +472285,7 @@ The analysis of genomic data can be an intimidating process, particularly for re sc:url "http://www.ikmb.uni-kiel.de/resources/download-tools/software/snpsplicer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2885, @@ -445421,7 +472304,7 @@ The analysis of genomic data can be an intimidating process, particularly for re biotools:primaryContact "David Clayton" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_2885, @@ -445436,7 +472319,7 @@ The analysis of genomic data can be an intimidating process, particularly for re sc:url "https://github.com/ubccr/SNPSTI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -445458,7 +472341,7 @@ The analysis of genomic data can be an intimidating process, particularly for re biotools:primaryContact "Tomaz Curk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation , @@ -445475,7 +472358,7 @@ The analysis of genomic data can be an intimidating process, particularly for re sc:url "https://mathgen.stats.ox.ac.uk/genetics_software/snptest/snptest.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -445490,7 +472373,7 @@ The analysis of genomic data can be an intimidating process, particularly for re sc:url "https://www.hgsc.bcm.edu/software/snptools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -445509,14 +472392,14 @@ The analysis of genomic data can be an intimidating process, particularly for re a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_2006" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3293 ; @@ -445535,7 +472418,7 @@ The analysis of genomic data can be an intimidating process, particularly for re sc:url "http://cge.cbs.dtu.dk/services/snpTree/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -445549,7 +472432,7 @@ The analysis of genomic data can be an intimidating process, particularly for re sc:url "http://pevsnerlab.kennedykrieger.org/SNPtrio.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0199, @@ -445570,7 +472453,7 @@ The analysis of genomic data can be an intimidating process, particularly for re "Taner Z Sen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, edam:topic_0625, @@ -445589,7 +472472,7 @@ snpXplorer is an online open source web-server to explore associations from Geno sc:url "http://snpxplorer.eu.ngrok.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -445612,7 +472495,7 @@ snpXplorer is an online open source web-server to explore associations from Geno biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -445633,7 +472516,7 @@ snpXplorer is an online open source web-server to explore associations from Geno sc:url "https://github.com/snr-vis/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0097, @@ -445649,7 +472532,7 @@ snpXplorer is an online open source web-server to explore associations from Geno sc:url "http://www.ccmb.res.in/rakeshmishra/snsalign-tool.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3293, @@ -445665,7 +472548,7 @@ snpXplorer is an online open source web-server to explore associations from Geno sc:url "http://bs.ipm.ir/softwares/snsa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3067, edam:topic_3304, edam:topic_3382, @@ -445690,7 +472573,7 @@ SNT is ImageJ's framework for semi-automated tracing, visualization, quantitativ sc:url "https://imagej.net/SNT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_2640, @@ -445706,7 +472589,7 @@ SNT is ImageJ's framework for semi-automated tracing, visualization, quantitativ sc:url "http://www.cs.helsinki.fi/en/gsa/snv-ppilp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation "pubmed:21813454" ; @@ -445721,7 +472604,7 @@ SNT is ImageJ's framework for semi-automated tracing, visualization, quantitativ biotools:primaryContact "Wei Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2640, @@ -445741,7 +472624,7 @@ SNT is ImageJ's framework for semi-automated tracing, visualization, quantitativ biotools:primaryContact "Contact" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation , @@ -445759,7 +472642,7 @@ SNT is ImageJ's framework for semi-automated tracing, visualization, quantitativ biotools:primaryContact "SOAP Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation , @@ -445777,7 +472660,7 @@ SNT is ImageJ's framework for semi-automated tracing, visualization, quantitativ sc:url "http://soap.genomics.org.cn/soapaligner.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3673 ; @@ -445793,7 +472676,7 @@ SNT is ImageJ's framework for semi-automated tracing, visualization, quantitativ "Tak-Wah Lam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0621 ; @@ -445804,7 +472687,7 @@ SNT is ImageJ's framework for semi-automated tracing, visualization, quantitativ sc:url "http://soapdb.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation "pubmed:20019144" ; @@ -445819,7 +472702,7 @@ SNT is ImageJ's framework for semi-automated tracing, visualization, quantitativ biotools:primaryContact "SOAP Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -445841,7 +472724,7 @@ SNT is ImageJ's framework for semi-automated tracing, visualization, quantitativ "Tak-Wah Lam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0114, edam:topic_3170, @@ -445858,7 +472741,7 @@ http://soap.genomics.org.cn/SOAPfusion.html""" ; biotools:primaryContact "SOAP Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation , @@ -445873,7 +472756,7 @@ http://soap.genomics.org.cn/SOAPfusion.html""" ; sc:url "http://soap.genomics.org.cn/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0637, edam:topic_3168, @@ -445897,7 +472780,7 @@ SOAPMetaS has been tested in the environments of local, Spark standalone cluster sc:url "https://github.com/BGI-flexlab/SOAPMetaS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -445916,7 +472799,7 @@ SOAPMetaS has been tested in the environments of local, Spark standalone cluster "Qiang Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2815, @@ -445931,7 +472814,7 @@ SOAPMetaS has been tested in the environments of local, Spark standalone cluster biotools:primaryContact "SOAP Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3320 ; sc:citation , @@ -445949,7 +472832,7 @@ SOAPMetaS has been tested in the environments of local, Spark standalone cluster sc:url "http://soap.genomics.org.cn/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation , @@ -445963,7 +472846,7 @@ SOAPMetaS has been tested in the environments of local, Spark standalone cluster sc:url "http://soap.genomics.org.cn/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0632, edam:topic_2830, @@ -445983,7 +472866,7 @@ SOAPTyping is a novel HLA genotyping tool capable of producing accurate predicti sc:url "https://github.com/BGI-flexlab/SOAPTyping" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0089, @@ -446002,7 +472885,7 @@ SOAPTyping is a novel HLA genotyping tool capable of producing accurate predicti biotools:primaryContact "GitHub Issues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -446021,7 +472904,7 @@ SOAPTyping is a novel HLA genotyping tool capable of producing accurate predicti biotools:primaryContact "Zoltan Szallasi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation , @@ -446041,8 +472924,27 @@ SOAPTyping is a novel HLA genotyping tool capable of producing accurate predicti sc:url "http://baderlab.org/Software/SocialNetworkApp" ; biotools:primaryContact "Victor Kofia" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3386, + edam:topic_3406, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9348686", + "pubmed:35921355" ; + sc:description "An R package for determining the social hierarchy of animals using data from individual electronic bins." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "socialh" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://cran.r-project.org/web/packages/socialh/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -446060,7 +472962,7 @@ SOAPTyping is a novel HLA genotyping tool capable of producing accurate predicti sc:url "http://coiledcoils.chm.bris.ac.uk/socket/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, @@ -446081,7 +472983,7 @@ SOAPTyping is a novel HLA genotyping tool capable of producing accurate predicti biotools:primaryContact "Steven J.M. Jones" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3295 ; @@ -446098,7 +473000,7 @@ SOAPTyping is a novel HLA genotyping tool capable of producing accurate predicti biotools:primaryContact "Nicholas H. Bergman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0219, @@ -446116,7 +473018,7 @@ SOAPTyping is a novel HLA genotyping tool capable of producing accurate predicti sc:url "http://babylone.ulb.ac.be/SODa/index3.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0621, @@ -446134,14 +473036,14 @@ SOAPTyping is a novel HLA genotyping tool capable of producing accurate predicti a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_2814, @@ -446162,8 +473064,20 @@ SOAPTyping is a novel HLA genotyping tool capable of producing accurate predicti sc:url "http://protein.bio.unipd.it/soda/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3391 ; + sc:description "SODAR (system for omics data access and retrieval) is a software package for teh management of meta and mass data for (multi) omics experiments. Users can model their experiments using the ISA-tab (Investigation-Study-Assay) data model using SODAR's web based user interface. SODAR integrates with the the iRODS (integrated rules oriented data system) software for mass data management." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SODAR" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/bihealth/sodar-server" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275, edam:topic_3510, @@ -446178,7 +473092,7 @@ SOAPTyping is a novel HLA genotyping tool capable of producing accurate predicti sc:url "http://140.113.239.45/sodock/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0154, edam:topic_0203, @@ -446197,7 +473111,7 @@ Optimise your protein coding sequences using smarter tools and algorithms!""" ; sc:url "https://tisigner.com/sodope" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2275, @@ -446211,7 +473125,7 @@ Optimise your protein coding sequences using smarter tools and algorithms!""" ; sc:url "https://code.google.com/p/soesa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Plug-in" ; sc:applicationSubCategory edam:topic_2229, @@ -446231,7 +473145,7 @@ Optimise your protein coding sequences using smarter tools and algorithms!""" ; biotools:primaryContact "Theo Lasser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0634, @@ -446251,7 +473165,7 @@ Optimise your protein coding sequences using smarter tools and algorithms!""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -446264,18 +473178,8 @@ Optimise your protein coding sequences using smarter tools and algorithms!""" ; sc:softwareHelp ; sc:url "https://liberles.cst.temple.edu/Software/Softparsmap/index.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0209, - edam:topic_2258, - edam:topic_2840 ; - sc:citation , - "pubmed:31525295" ; - sc:description "> LOW CONFIDENCE! | Small Dataset Curator and Small Dataset Modeler. Integration of Data Curation, Exhaustive Double Cross-Validation, and a Set of Optimal Model Selection Techniques | DTC lab - Software Tools - DTC lab is working in the field of molecular modelling mainly using different QSAR methodologies in various diverse area such as drug designing, toxicity, anti-oxidant studies etc" ; - sc:name "software tools" ; - sc:url "https://dtclab.webs.com/software-tools" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3299, edam:topic_3372 ; @@ -446287,7 +473191,7 @@ This tool is a follow-up to our work on code quality in the field of Bioinformat sc:url "https://github.com/adrianzap/SoftWipe/wiki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -446307,7 +473211,7 @@ This tool is a follow-up to our work on code quality in the field of Bioinformat biotools:primaryContact "Tom Carroll" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3314, edam:topic_3810 ; @@ -446320,7 +473224,7 @@ This tool is a follow-up to our work on code quality in the field of Bioinformat sc:url "https://github.com/bulksoil/SoilDomestication" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -446337,7 +473241,7 @@ This tool is a follow-up to our work on code quality in the field of Bioinformat biotools:primaryContact "Tomislav Hengl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092 ; sc:citation ; @@ -446354,7 +473258,7 @@ This tool is a follow-up to our work on code quality in the field of Bioinformat biotools:primaryContact "Tomislav Hengl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -446376,7 +473280,7 @@ This tool is a follow-up to our work on code quality in the field of Bioinformat biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:citation , @@ -446393,7 +473297,7 @@ This tool is a follow-up to our work on code quality in the field of Bioinformat sc:url "http://solar-eclipse-genetics.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769 ; sc:citation ; @@ -446408,7 +473312,7 @@ Solar3D is a software application designed to interactively calculate solar irra sc:url "https://github.com/jian9695/Solar3D" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -446426,7 +473330,7 @@ Solar3D is a software application designed to interactively calculate solar irra biotools:primaryContact "Hugues Richard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3572 ; @@ -446444,7 +473348,7 @@ Solar3D is a software application designed to interactively calculate solar irra biotools:primaryContact "Murray P. Cox" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080, @@ -446458,7 +473362,7 @@ Solar3D is a software application designed to interactively calculate solar irra biotools:primaryContact "SeqWare Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_3673 ; @@ -446471,7 +473375,7 @@ Solar3D is a software application designed to interactively calculate solar irra sc:url "https://solgenomics.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0622, @@ -446491,22 +473395,22 @@ Solar3D is a software application designed to interactively calculate solar irra a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation , @@ -446524,14 +473428,14 @@ Solar3D is a software application designed to interactively calculate solar irra a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3572 ; sc:citation , @@ -446549,14 +473453,14 @@ Solar3D is a software application designed to interactively calculate solar irra a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3572 ; sc:citation , @@ -446570,7 +473474,7 @@ Solar3D is a software application designed to interactively calculate solar irra biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080 ; @@ -446583,7 +473487,7 @@ Solar3D is a software application designed to interactively calculate solar irra biotools:primaryContact "Thermo Fisher help desk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, edam:topic_3474, @@ -446599,7 +473503,7 @@ Solar3D is a software application designed to interactively calculate solar irra sc:url "https://github.com/calico/solo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -446614,7 +473518,7 @@ Solar3D is a software application designed to interactively calculate solar irra sc:url "http://sourceforge.net/projects/solodel/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3336, @@ -446631,7 +473535,7 @@ Solar3D is a software application designed to interactively calculate solar irra biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_2275, @@ -446647,7 +473551,7 @@ Solar3D is a software application designed to interactively calculate solar irra sc:url "http://solubis.switchlab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, edam:topic_0736, @@ -446665,7 +473569,7 @@ Protein solubility is adapted to endogeneous protein abundance in the cell where sc:url "https://solubis.switchlab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0736, edam:topic_3538 ; @@ -446685,14 +473589,13 @@ SolupHred is the first phenomenological predictor that considers protein environ a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1524" ; - sc:name "Protein solubility" ; - sc:sameAs "http://edamontology.org/data_1524" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1524" ; + sc:name "Protein solubility" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -446726,7 +473629,7 @@ The predictor is in its current version based on random forest regression model biotools:primaryContact "SoluProt team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0625, edam:topic_0780, @@ -446751,7 +473654,7 @@ A growing collection of datasets, data-mining tools (under development) and gene sc:url "https://www.plantbreeding.wur.nl/Solyntus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -446766,7 +473669,7 @@ A growing collection of datasets, data-mining tools (under development) and gene sc:url "http://www.cbcb.umd.edu/finishing/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_2640, @@ -446786,8 +473689,32 @@ Note that the somalier relate command runs extremely quickly (< 2 seconds for 60 sc:name "somalier" ; sc:url "http://github.com/brentp/somalier" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0199, + edam:topic_0634, + edam:topic_2640, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC8728264", + "pubmed:34634815" ; + sc:description "A database of somatic mutations in normal human tissues." ; + sc:featureList edam:operation_0224, + edam:operation_3196, + edam:operation_3227, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:name "SomaMutDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://vijglab.einsteinmed.org/SomaMutDB" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -446804,7 +473731,7 @@ Note that the somalier relate command runs extremely quickly (< 2 seconds for 60 sc:url "http://bakerlab.berkeley.edu/somart-webserver-mirna-sirna-analysis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2640 ; @@ -446814,7 +473741,7 @@ Note that the somalier relate command runs extremely quickly (< 2 seconds for 60 sc:url "https://github.com/genome/somatic-sniper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -446835,8 +473762,30 @@ Note that the somalier relate command runs extremely quickly (< 2 seconds for 60 sc:url "http://bioconductor.org/packages/release/bioc/html/SomaticSignatures.html" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0199, + edam:topic_0654, + edam:topic_3277, + edam:topic_3474 ; + sc:citation , + "pubmed:35258549" ; + sc:description "SomaticSiMu generates single and double base pair substitutions, and single base pair insertions and deletions of biologically representative mutation signature probabilities and combinations." ; + sc:featureList edam:operation_0337, + edam:operation_2995, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-NC-4.0" ; + sc:name "SomaticSiMu" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/HillLab/SomaticSiMu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -446854,7 +473803,7 @@ Note that the somalier relate command runs extremely quickly (< 2 seconds for 60 biotools:primaryContact "Celine S. Hong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -446873,7 +473822,7 @@ Note that the somalier relate command runs extremely quickly (< 2 seconds for 60 sc:url "http://bioinf.nuigalway.ie/sombrero/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2269, edam:topic_3308 ; @@ -446889,7 +473838,7 @@ Algorithm for finding gene spatial pattern based on Gaussian process accelerated sc:url "https://pypi.org/project/somde" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_1775 ; sc:author "Peter Hoenigschmid" ; @@ -446910,14 +473859,12 @@ Algorithm for finding gene spatial pattern based on Gaussian process accelerated a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2538" ; - sc:name "Mutation identifier" ; - sc:sameAs "http://edamontology.org/data_2538" ] ; + sc:additionalType "http://edamontology.org/data_2538" ; + sc:name "Mutation identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1246" ; - sc:name "Sequence cluster (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1246" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1246" ; + sc:name "Sequence cluster (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640 ; sc:citation ; @@ -446932,7 +473879,7 @@ Algorithm for finding gene spatial pattern based on Gaussian process accelerated sc:url "http://bioinformatics.intec.ugent.be/sominaclust" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3295, edam:topic_3474 ; @@ -446954,7 +473901,7 @@ DNA N4-methylcytosine (4mC) modification occurs mainly in prokaryotic DNA.""" ; sc:url "http://www.insect-genome.com/SOMM4mC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0820, edam:topic_2814, @@ -446968,7 +473915,7 @@ DNA N4-methylcytosine (4mC) modification occurs mainly in prokaryotic DNA.""" ; sc:url "http://www.csbio.sjtu.edu.cn/bioinf/SOMPNN/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0820, @@ -446984,7 +473931,7 @@ DNA N4-methylcytosine (4mC) modification occurs mainly in prokaryotic DNA.""" ; sc:url "http://www.csbio.sjtu.edu.cn/bioinf/SOMRuler/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053, @@ -447000,7 +473947,7 @@ DNA N4-methylcytosine (4mC) modification occurs mainly in prokaryotic DNA.""" ; sc:url "https://github.com/kylessmith/SomVarIUS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3474, @@ -447020,7 +473967,7 @@ DNA N4-methylcytosine (4mC) modification occurs mainly in prokaryotic DNA.""" ; biotools:primaryContact "David L. Stern" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3412, edam:topic_3452, edam:topic_3474, @@ -447043,7 +473990,7 @@ Gallbladder Tumor, Stone in Gallbladder ... sc:url "http://www.sono.gallery" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3067, edam:topic_3384, edam:topic_3393 ; @@ -447056,7 +474003,7 @@ Gallbladder Tumor, Stone in Gallbladder ... sc:url "http://www.castlemountain.dk/atlas/index.php?page=mulrecon&mulreconPage=sonoviewer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0659, @@ -447080,7 +474027,7 @@ Gallbladder Tumor, Stone in Gallbladder ... sc:url "https://github.com/eltonjrv/microbiome.westernu/tree/SOP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168 ; @@ -447095,8 +474042,30 @@ Gallbladder Tumor, Stone in Gallbladder ... sc:softwareVersion "1.4.6" ; sc:url "http://www.physics.rutgers.edu/~anirvans/SOPRA/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0780, + edam:topic_3053, + edam:topic_3489, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC8752523", + "pubmed:35015132" ; + sc:description "A web-based portal for sorghum genetic information and community advancement." ; + sc:featureList edam:operation_0525, + edam:operation_2421, + edam:operation_3208 ; + sc:isAccessibleForFree true ; + sc:name "SorghumBase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://sorghumbase.org/guides" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, @@ -447119,14 +474088,14 @@ Gallbladder Tumor, Stone in Gallbladder ... a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -447145,7 +474114,7 @@ Gallbladder Tumor, Stone in Gallbladder ... biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3308 ; @@ -447161,7 +474130,7 @@ Gallbladder Tumor, Stone in Gallbladder ... sc:url "http://bioinfo.lifl.fr/RNA/sortmerna/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0749, @@ -447184,8 +474153,29 @@ Gallbladder Tumor, Stone in Gallbladder ... "Windows" ; sc:url "https://github.com/JacksonLab/SorTn-seq" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0634, + edam:topic_0821, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8703055", + "pubmed:34976319" ; + sc:description "The first machine learning based predictor to identify bacterial sortases and their classes using sequence-derived information." ; + sc:featureList edam:operation_0267, + edam:operation_0303, + edam:operation_0310 ; + sc:isAccessibleForFree true ; + sc:name "SortPred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://procarb.org/sortpred" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -447207,7 +474197,7 @@ Gallbladder Tumor, Stone in Gallbladder ... sc:url "https://sorva.genome.ucla.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3315, edam:topic_3474 ; @@ -447223,7 +474213,7 @@ SOS is a research oriented software platform for Metaheuristic Optimisation (Sto sc:url "https://sites.google.com/site/facaraff/research/sos" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -447246,18 +474236,18 @@ SOS is a research oriented software platform for Metaheuristic Optimisation (Sto a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -447272,10 +474262,9 @@ SOS is a research oriented software platform for Metaheuristic Optimisation (Sto a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3308 ; sc:description "Quantify, profile and remove ambient mRNA contamination (the \"soup\") from droplet based single cell RNA-seq experiments." ; @@ -447286,7 +474275,7 @@ SOS is a research oriented software platform for Metaheuristic Optimisation (Sto sc:url "https://github.com/constantAmateur/SoupX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -447310,14 +474299,14 @@ SOS is a research oriented software platform for Metaheuristic Optimisation (Sto a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ] ; + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experiment report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_2060" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3301, @@ -447340,10 +474329,10 @@ SOS is a research oriented software platform for Metaheuristic Optimisation (Sto a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Nucleic acid sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3307 ; @@ -447361,7 +474350,7 @@ SOS is a research oriented software platform for Metaheuristic Optimisation (Sto biotools:primaryContact "C. Titus Brown" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -447384,7 +474373,7 @@ SOS is a research oriented software platform for Metaheuristic Optimisation (Sto biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -447407,7 +474396,7 @@ SOS is a research oriented software platform for Metaheuristic Optimisation (Sto "Yungang Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -447430,7 +474419,7 @@ SOS is a research oriented software platform for Metaheuristic Optimisation (Sto sc:url "https://github.com/almeidasilvaf/SoyFungiGCN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3332, edam:topic_3569 ; @@ -447444,7 +474433,7 @@ SOS is a research oriented software platform for Metaheuristic Optimisation (Sto sc:url "http://stoop.ini.uzh.ch/research/clustering" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , "pubmed:32649282" ; @@ -447458,7 +474447,7 @@ This paper presents a new Self-growing and Pruning Generative Adversarial Networ sc:url "https://github.com/Lambert-chen/SPGAN.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, edam:topic_0634, @@ -447473,7 +474462,7 @@ This paper presents a new Self-growing and Pruning Generative Adversarial Networ sc:url "http://pmglab.top/spa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0082, @@ -447491,7 +474480,7 @@ This paper presents a new Self-growing and Pruning Generative Adversarial Networ sc:url "http://ligin.weizmann.ac.il/space/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -447509,7 +474498,7 @@ This paper presents a new Self-growing and Pruning Generative Adversarial Networ "lhahn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, edam:topic_3170 ; @@ -447525,7 +474514,7 @@ We develop SpaceLog that employs log penalty within the framework of an earlier sc:url "https://github.com/wuqian77/SpaceLog" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -447549,7 +474538,7 @@ We develop SpaceLog that employs log penalty within the framework of an earlier sc:url "https://metaspace2020.eu/project/Rappez_2021_SpaceM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3365, @@ -447565,8 +474554,29 @@ We develop SpaceLog that employs log penalty within the framework of an earlier ; sc:url "http://spacem3.gforge.inria.fr/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3170, + edam:topic_3308, + edam:topic_3512 ; + sc:citation ; + sc:description "Processing and analysis of large-scale spatial transcriptomics data." ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_3933 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "spacemake" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/rajewsky-lab/spacemake" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -447589,7 +474599,7 @@ We develop SpaceLog that employs log penalty within the framework of an earlier "Gregory Ryslik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -447603,14 +474613,14 @@ We develop SpaceLog that employs log penalty within the framework of an earlier a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Sequence search results" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -447638,7 +474648,7 @@ We develop SpaceLog that employs log penalty within the framework of an earlier sc:url "http://tppms.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -447661,7 +474671,7 @@ We develop SpaceLog that employs log penalty within the framework of an earlier "Igor Berezovsky" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0769, @@ -447681,56 +474691,43 @@ We develop SpaceLog that employs log penalty within the framework of an earlier "Windows" ; sc:url "https://github.com/grybnicky/Spacer2PAM" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3056, + edam:topic_3958 ; + sc:description "SPACNACS is a crowdsourcing initiative to provide information about Copy Number Variations of the Spanish population to the scientific/medical community." ; + sc:license "GPL-2.0" ; + sc:name "SPACNACS" ; + sc:softwareHelp ; + sc:url "http://csvs.clinbioinfosspa.es/spacnacs" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation , @@ -447745,7 +474742,7 @@ We develop SpaceLog that employs log penalty within the framework of an earlier sc:url "http://cab.spbu.ru/software/spades/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2269, @@ -447763,8 +474760,31 @@ We develop SpaceLog that employs log penalty within the framework of an earlier sc:softwareHelp ; sc:url "http://ebe.ulb.ac.be/ebe/SPADS.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_2640, + edam:topic_3170, + edam:topic_3308, + edam:topic_3474 ; + sc:citation , + "pubmed:34711970" ; + sc:description "Integrating gene expression, spatial location and histology to identify spatial domains and spatially variable genes by graph convolutional network." ; + sc:featureList edam:operation_0313, + edam:operation_3223, + edam:operation_3436, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SpaGCN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/jianhuupenn/SpaGCN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, edam:topic_3500, @@ -447785,7 +474805,7 @@ Python implementation can be found in the 'SpaGE' folder. The SpaGE function tak sc:url "https://github.com/tabdelaal/SpaGE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3308, edam:topic_3382, @@ -447806,7 +474826,7 @@ Generate spatial gene expression network from in situ transcriptomic data and tr sc:url "https://github.com/wahlby-lab/spage2vec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -447825,7 +474845,7 @@ Generate spatial gene expression network from in situ transcriptomic data and tr sc:url "http://spainudp.isciii.es" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0607, edam:topic_3071, @@ -447844,7 +474864,7 @@ Generate spatial gene expression network from in situ transcriptomic data and tr biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -447861,8 +474881,28 @@ Generate spatial gene expression network from in situ transcriptomic data and tr sc:softwareHelp ; sc:url "https://www.lisanwanglab.org/SPAR/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_3068, + edam:topic_3303, + edam:topic_3474 ; + sc:citation ; + sc:description "An interactive tool to visualize the impact of the SPARC program." ; + sc:featureList edam:operation_0337, + edam:operation_2421, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SPARClink" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://fairdataihub.org/sparclink" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -447886,7 +474926,7 @@ Generate spatial gene expression network from in situ transcriptomic data and tr sc:url "http://csb.cs.mcgill.ca/sparcs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2258, edam:topic_2275, @@ -447902,7 +474942,7 @@ Generate spatial gene expression network from in situ transcriptomic data and tr biotools:primaryContact "Laeeq Ahmed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, edam:topic_3512 ; @@ -447918,7 +474958,7 @@ SparK will exctract gene and transcript information from column 3 of the gff fil sc:url "https://github.com/harbourlab/SparK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2258, @@ -447937,7 +474977,7 @@ SparK will exctract gene and transcript information from column 3 of the gff fil biotools:primaryContact "Marco Capuccini" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, @@ -447960,8 +475000,25 @@ SparK will exctract gene and transcript information from column 3 of the gff fil ; sc:url "https://github.com/xzhoulab/SPARK" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0622, + edam:topic_2815 ; + sc:citation , + "pmcid:PMC9310413", + "pubmed:35879669" ; + sc:description "Spark based genome compression for large collections of genomes." ; + sc:featureList edam:operation_3211 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SparkGC" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/haichangyao/SparkGC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, edam:topic_3173, @@ -447976,7 +475033,7 @@ SparK will exctract gene and transcript information from column 3 of the gff fil sc:url "https://bitbucket.org/wanglab-upenn/SparkINFERNO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, edam:topic_3170, @@ -447994,7 +475051,7 @@ The rapid proliferation of low-cost RNA-seq data has resulted in a growing inter sc:url "https://github.com/SaiyiW/SparkRA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3070, @@ -448011,7 +475068,7 @@ The rapid proliferation of low-cost RNA-seq data has resulted in a growing inter sc:url "http://sparqlgraph.i-med.ac.at/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2640, @@ -448030,22 +475087,22 @@ The rapid proliferation of low-cost RNA-seq data has resulted in a growing inter a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1465" ; - sc:name "RNA structure" ; - sc:sameAs "http://edamontology.org/data_1465" ], + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ], + sc:additionalType "http://edamontology.org/data_1465" ; + sc:encodingFormat "http://edamontology.org/format_3466" ; + sc:name "RNA structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097 ; @@ -448072,7 +475129,7 @@ The rapid proliferation of low-cost RNA-seq data has resulted in a growing inter "Sebastian Will" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697 ; @@ -448093,7 +475150,7 @@ The rapid proliferation of low-cost RNA-seq data has resulted in a growing inter "George Weingart" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -448111,7 +475168,7 @@ The rapid proliferation of low-cost RNA-seq data has resulted in a growing inter biotools:primaryContact "Curtis Huttenhower" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -448125,8 +475182,30 @@ The rapid proliferation of low-cost RNA-seq data has resulted in a growing inter sc:url "https://github.com/henryxushi/SparseIso" ; biotools:primaryContact "Jianhua Xuan" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_2885, + edam:topic_3337, + edam:topic_3517 ; + sc:citation ; + sc:description "An efficient genome-wide fine-mapping method integrating summary statistics and functional annotations." ; + sc:featureList edam:operation_3196, + edam:operation_3226, + edam:operation_3557, + edam:operation_3661 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SparsePro" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/zhwm/SparsePro" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3063 ; @@ -448143,7 +475222,7 @@ The rapid proliferation of low-cost RNA-seq data has resulted in a growing inter biotools:primaryContact "Daniele Ramazzotti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308 ; @@ -448172,7 +475251,7 @@ The rapid proliferation of low-cost RNA-seq data has resulted in a growing inter "Tracy K. Teal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0084, @@ -448192,7 +475271,7 @@ The rapid proliferation of low-cost RNA-seq data has resulted in a growing inter sc:url "http://spartaabc.tau.ac.il/webserver" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -448212,7 +475291,7 @@ The rapid proliferation of low-cost RNA-seq data has resulted in a growing inter biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0204, @@ -448235,7 +475314,7 @@ The rapid proliferation of low-cost RNA-seq data has resulted in a growing inter sc:url "https://github.com/osmanbeyoglulab/SPaRTAN/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3293, @@ -448249,7 +475328,7 @@ The rapid proliferation of low-cost RNA-seq data has resulted in a growing inter sc:url "http://www2.imm.dtu.dk/~gigu/Spasiba/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3170, edam:topic_3308, @@ -448276,7 +475355,7 @@ Dissect your samples into segments in order to compare different aspects across sc:url "https://themilolab.github.io/SPATA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, edam:topic_0780, @@ -448301,7 +475380,7 @@ The script folder contain a script that allow the user to perform analyses of ti sc:url "https://github.com/ICRISAT-GEMS/SpaTemHTP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3299, @@ -448319,7 +475398,7 @@ A generic tool for manifold analysis. It allows to infer a relevant transition o sc:url "https://cran.r-project.org/web/packages/spathial/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -448334,26 +475413,8 @@ A generic tool for manifold analysis. It allows to infer a relevant transition o sc:url "https://www.mathworks.com/matlabcentral/fileexchange/12269-spatial-activity-of-an-image" ; biotools:primaryContact "Bjoern Eskofier" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Command-line tool" ; - sc:applicationSubCategory edam:topic_0099, - edam:topic_3170, - edam:topic_3308 ; - sc:citation ; - sc:description "Spatial TRanscrIptomics DEconvolution by topic modeling (STRIDE), is a computational method to decompose cell types from spatial mixtures by leveraging topic profiles trained from single-cell transcriptomics. Besides the cell-type composition deconvolution, STRIDE also provides several downstream analysis functions, including signature (i.e., topic) detection and visualization, spatial clustering and domain identification based on neighborhood cell populations and reconstruction of three-dimensional architecture from sequential ST slides of the same tissue." ; - sc:featureList edam:operation_3629, - edam:operation_3907 ; - sc:isAccessibleForFree true ; - sc:license "GPL-3.0" ; - sc:name "STRIDE" ; - sc:operatingSystem "Linux", - "Mac", - "Windows" ; - sc:url "https://github.com/DongqingSun96/STRIDE" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3170, edam:topic_3308 ; @@ -448372,14 +475433,13 @@ SpatialCPie is an R package designed to facilitate cluster evaluation for spatia a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -448401,8 +475461,28 @@ SpatialCPie is an R package designed to facilitate cluster evaluation for spatia sc:url "https://github.com/Teichlab/SpatialDE" ; biotools:primaryContact "Valentine Svensson" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3170, + edam:topic_3308 ; + sc:citation ; + sc:description "Fast and localized variance component analysis of spatial transcriptomics.)" ; + sc:featureList edam:operation_0313, + edam:operation_0314, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SpatialDE2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/PMBio/SpatialDE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -448421,8 +475501,28 @@ Defines S4 classes for storing data for spatial experiments. Main examples are r sc:name "SpatialExperiment" ; sc:url "https://bioconductor.org/packages/SpatialExperiment" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pubmed:35258565" ; + sc:description "Quantification and visualization of the tumor microenvironment heterogeneity using spatial transcriptomics." ; + sc:featureList edam:operation_0337, + edam:operation_3629, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "spatialGE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/FridleyLab/spatialGE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170, @@ -448439,8 +475539,31 @@ Defines S4 classes for storing data for spatial experiments. Main examples are r sc:softwareHelp ; sc:url "http://bioconductor.org/packages/spatialLIBD" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3382, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC8652029", + "pubmed:34734969" ; + sc:description "R package and Shiny application for visualization and analysis of immunofluorescence data." ; + sc:featureList edam:operation_0337, + edam:operation_3443, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "spatialTIME" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://github.com/FridleyLab/spatialTIME" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0160, edam:topic_0610, @@ -448459,7 +475582,7 @@ Handling and Analyzing Spatio-Temporal Data.""" ; sc:url "https://cran.r-project.org/web/views/SpatioTemporal.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0602, @@ -448478,7 +475601,7 @@ Handling and Analyzing Spatio-Temporal Data.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2640, @@ -448496,7 +475619,7 @@ Handling and Analyzing Spatio-Temporal Data.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -448516,7 +475639,7 @@ Handling and Analyzing Spatio-Temporal Data.""" ; biotools:primaryContact "Gregory Nuel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3512, @@ -448533,7 +475656,7 @@ Handling and Analyzing Spatio-Temporal Data.""" ; sc:url "http://www.nongnu.org/spatter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0621, @@ -448550,8 +475673,54 @@ Handling and Analyzing Spatio-Temporal Data.""" ; sc:url "https://spatzie.mit.edu" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_3120, + edam:topic_3170, + edam:topic_3320, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9458456", + "pubmed:35993808" ; + sc:description "Performance evaluation of differential splicing analysis methods and splicing analytics platform construction." ; + sc:featureList edam:operation_0264, + edam:operation_0433, + edam:operation_0446, + edam:operation_3227, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:name "SPCards" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.genemed.tech/spcards/analysis" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3170, + edam:topic_3308, + edam:topic_3315, + edam:topic_3474 ; + sc:citation ; + sc:description "A Spatial and Pattern Combined Smoothing Method for Spatial Transcriptomic Expression." ; + sc:featureList edam:operation_0313, + edam:operation_3223, + edam:operation_3359 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SPCS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/Usos/SPCS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -448562,8 +475731,29 @@ Handling and Analyzing Spatio-Temporal Data.""" ; sc:softwareVersion "20131201" ; sc:url "http://pengqiu.gatech.edu/software/SPD/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9383414", + "pubmed:35990886" ; + sc:description "A plain CNN-based model using the symmetric positive definite matrices for cross-subject EEG classification with meta-transfer-learning." ; + sc:featureList edam:operation_3454, + edam:operation_3891, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SPD-CNN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sabinechen/SPD-CNN-Using-Meta-Transfer-Learing-EEG-Cross-Subject-learning" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3168, edam:topic_3174, @@ -448581,7 +475771,7 @@ The rapid and accurate diagnosis of swine diseases is indispensable for reducing sc:url "http://spdatabase.com:2080/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0780, edam:topic_3168, @@ -448595,7 +475785,7 @@ The rapid and accurate diagnosis of swine diseases is indispensable for reducing sc:url "https://github.com/simon19891216/SPDEv1.2.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, edam:topic_0154, @@ -448613,16 +475803,39 @@ SPDH ├─conf #configuration file ├─datasets #All data │ ├─train_seq sc:name "SPDH" ; sc:url "https://github.com/xialab-ahu/SPDH" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0130, + edam:topic_0209, + edam:topic_0736, + edam:topic_0820 ; + sc:citation , + "pmcid:PMC9436118", + "pubmed:35994486" ; + sc:description "Sampling protein ensembles and conformational heterogeneity with Alphafold2." ; + sc:featureList edam:operation_0474, + edam:operation_3891, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SPEACH_AF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/RSvan/SPEACH_AF" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3488" ; - sc:name "NMR spectrum" ; - sc:sameAs "http://edamontology.org/data_3488" ] ; + sc:additionalType "http://edamontology.org/data_3488" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "NMR spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3172, @@ -448643,7 +475856,7 @@ SPDH ├─conf #configuration file ├─datasets #All data │ ├─train_seq biotools:primaryContact "Charlie Beirnaert" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, edam:topic_3068, @@ -448660,8 +475873,31 @@ SPDH ├─conf #configuration file ├─datasets #All data │ ├─train_seq ; sc:url "http://research.libd.org/SPEAQeasy" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0199, + edam:topic_0622, + edam:topic_0749 ; + sc:citation , + "pmcid:PMC9344845", + "pubmed:35695776" ; + sc:description "SPEAR is an annotation tool for SARS-CoV-2 genomes, it provides comprehensive annotation of all protein products, in particular, Spike (S) mutations are annotated with a range of scores that provide indications of their likely effects on ACE2 binding, and likely contribution to immune escape." ; + sc:featureList edam:operation_0558, + edam:operation_3192, + edam:operation_3218, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SPEAR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/m-crown/SPEAR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3810, edam:topic_3943 ; @@ -448677,7 +475913,7 @@ SPDH ├─conf #configuration file ├─datasets #All data │ ├─train_seq sc:url "https://github.com/maizeatlas/spears" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0218, edam:topic_3172, @@ -448697,7 +475933,7 @@ Analysis and benchmarking of mass spectra similarity measures using gnps data se sc:url "https://github.com/iomega/spec2vec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -448710,8 +475946,26 @@ Analysis and benchmarking of mass spectra similarity measures using gnps data se sc:softwareHelp ; sc:url "http://tools.proteomecenter.org/SpecArray.php" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_3071, + edam:topic_3474 ; + sc:citation , + "pubmed:35930941" ; + sc:description "A relational database for archiving biomolecular NMR spectral data." ; + sc:featureList edam:operation_0224 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SpecDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.rpi.edu/RPIBioinformatics/SpecDB" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3173, edam:topic_3574, @@ -448731,18 +475985,17 @@ Analysis and benchmarking of mass spectra similarity measures using gnps data se a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1868" ; - sc:name "Taxon" ; - sc:sameAs "http://edamontology.org/data_1868" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1868" ; + sc:name "Taxon" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0622, @@ -448766,7 +476019,7 @@ Analysis and benchmarking of mass spectra similarity measures using gnps data se biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -448784,7 +476037,7 @@ Analysis and benchmarking of mass spectra similarity measures using gnps data se sc:url "http://proteomics.ucsd.edu/software-tools/specialize/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3293, @@ -448800,7 +476053,7 @@ Analysis and benchmarking of mass spectra similarity measures using gnps data se sc:url "http://www.fos.auckland.ac.nz/~howardross/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0749, edam:topic_0769, @@ -448822,7 +476075,7 @@ The SpeciesPrimer pipeline is intended to help researchers finding specific prim sc:url "http://primer3.ut.ee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, @@ -448841,8 +476094,27 @@ The SpeciesPrimer pipeline is intended to help researchers finding specific prim sc:url "https://github.com/BenoitMorel/GeneRax" ; biotools:primaryContact "Benoit Morel" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3170, + edam:topic_3308 ; + sc:citation ; + sc:description "The speckle package currently contains functions to analyse differences in cell type proportions in single cell RNA-seq data, and to classify cells as male or female. As our research into specialised analyses of single cell data continues we anticipate that the package will be updated with new functions." ; + sc:featureList edam:operation_0314, + edam:operation_3659, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "speckle" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Oshlack/speckle" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -448863,7 +476135,7 @@ The SpeciesPrimer pipeline is intended to help researchers finding specific prim biotools:primaryContact "Ashish Meshram" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -448886,14 +476158,12 @@ The SpeciesPrimer pipeline is intended to help researchers finding specific prim a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2979" ; - sc:name "Peptide property" ; - sc:sameAs "http://edamontology.org/data_2979" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2979" ; + sc:name "Peptide property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation ; @@ -448908,8 +476178,28 @@ The SpeciesPrimer pipeline is intended to help researchers finding specific prim sc:softwareVersion "1" ; sc:url "http://co.bmc.lu.se/speclust/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8555789", + "pubmed:34714871" ; + sc:description "Deep cross-modal similarity network for mass spectrometry data based peptide deductions." ; + sc:featureList edam:operation_2421, + edam:operation_3631, + edam:operation_3860 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SpeCollate" ; + sc:operatingSystem "Linux" ; + sc:url "https://deepspecs.github.io/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -448929,7 +476219,7 @@ The SpeciesPrimer pipeline is intended to help researchers finding specific prim biotools:primaryContact "Florence Cavalli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2814, edam:topic_3170, @@ -448957,7 +476247,7 @@ A non-parameteric method to identify tissue-specific molecular features with une sc:url "http://specs.cmgg.be" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, edam:topic_3382, @@ -448973,7 +476263,7 @@ This Github contains 'SpecSeg', an open source calcium imaging processing toolbo sc:url "https://github.com/Leveltlab/SpectralSegmentation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0625, edam:topic_2229, @@ -448993,14 +476283,13 @@ Spectacle and cellcuratoR were developed by an interdisciplinary team within the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3483" ; - sc:name "Spectrum" ; - sc:sameAs "http://edamontology.org/data_3483" ] ; + sc:additionalType "http://edamontology.org/data_3483" ; + sc:name "Spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0078, @@ -449017,7 +476306,7 @@ Spectacle and cellcuratoR were developed by an interdisciplinary team within the biotools:primaryContact "Ryan Peckner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2229, edam:topic_3170, @@ -449035,7 +476324,7 @@ Specter is a novel computational method for clustering large-scale single cell R sc:url "https://github.com/canzarlab/Specter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3934 ; @@ -449046,7 +476335,7 @@ Specter is a novel computational method for clustering large-scale single cell R biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0621, edam:topic_3940 ; @@ -449066,7 +476355,7 @@ SpectralTAD is an R package designed to identify Topologically Associated Domain sc:url "http://bioconductor.org/packages/SpectralTAD/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2533, edam:topic_3053, @@ -449082,7 +476371,7 @@ SpectralTAD is an R package designed to identify Topologically Associated Domain sc:url "http://sourceforge.net/projects/spectraltdf/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -449098,7 +476387,7 @@ SpectralTAD is an R package designed to identify Topologically Associated Domain sc:url "http://www.peptideatlas.org/spectrast/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0108, @@ -449118,7 +476407,7 @@ SpectralTAD is an R package designed to identify Topologically Associated Domain sc:url "https://github.com/mills-lab/spectre" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, edam:topic_3934 ; @@ -449139,7 +476428,7 @@ A computational toolkit in R for the integration, exploration, and analysis of h sc:url "https://github.com/immunedynamics/spectre" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3293, @@ -449157,7 +476446,7 @@ A computational toolkit in R for the integration, exploration, and analysis of h biotools:primaryContact "Sarah Bastkowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0622, @@ -449172,7 +476461,7 @@ A computational toolkit in R for the integration, exploration, and analysis of h sc:url "https://github.com/fenderglass/SpectroGene" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3474, edam:topic_3577 ; @@ -449188,14 +476477,14 @@ A computational toolkit in R for the integration, exploration, and analysis of h a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3382, @@ -449207,7 +476496,7 @@ A computational toolkit in R for the integration, exploration, and analysis of h sc:url "http://omics.pnl.gov/software/spectrumlook" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -449225,7 +476514,7 @@ A computational toolkit in R for the integration, exploration, and analysis of h sc:url "https://github.com/compomics/spectrum_similarity" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, edam:topic_3520 ; @@ -449238,8 +476527,27 @@ A computational toolkit in R for the integration, exploration, and analysis of h sc:name "spectrum_utils" ; sc:url "https://github.com/bittremieux/spectrum_utils" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0610, + edam:topic_0637, + edam:topic_0780, + edam:topic_3500 ; + sc:citation , + "pubmed:35094502" ; + sc:description "An R Shiny application to assess how methodological choices and taxon sampling can affect Generalized Mixed Yule Coalescent output and interpretation." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SPEDE-sampler" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/clarkevansteenderen/spede_sampler_R" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0176, @@ -449261,7 +476569,7 @@ A computational toolkit in R for the integration, exploration, and analysis of h biotools:primaryContact "SPEDRE Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -449282,8 +476590,35 @@ A computational toolkit in R for the integration, exploration, and analysis of h sc:url "http://speed.sys-bio.net/" ; biotools:primaryContact "Nils Blüthgen" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Nucleic acid sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0955" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Data index" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workbench" ; + sc:applicationSubCategory edam:topic_0622 ; + sc:citation , + "pmcid:PMC4589466", + "pubmed:26258291" ; + sc:description "A flexible framework for rapid genome analysis and interpretation" ; + sc:featureList edam:operation_0310, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SpeedSeq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/hall-lab/speedseq" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -449299,7 +476634,7 @@ A computational toolkit in R for the integration, exploration, and analysis of h biotools:primaryContact "Jeff Orchard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3520 ; @@ -449313,8 +476648,29 @@ A computational toolkit in R for the integration, exploration, and analysis of h sc:url "https://www.mathworks.com/matlabcentral/fileexchange/15164-speedyga-a-fast-simple-genetic-algorithm" ; biotools:primaryContact "Keki Burjorjee" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0632, + edam:topic_0749, + edam:topic_3299, + edam:topic_3895 ; + sc:citation , + "pubmed:35727444" ; + sc:description "An Automated, High-Throughput Platform for the Preparation of Bespoke Ultralarge Variant Libraries for Directed Evolution." ; + sc:featureList edam:operation_0310, + edam:operation_3237 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SpeedyGenesXL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/neilswainston/SpeedyGenesXL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -449334,7 +476690,7 @@ A computational toolkit in R for the integration, exploration, and analysis of h biotools:primaryContact "Saikat Chakrabarti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -449351,14 +476707,14 @@ A computational toolkit in R for the integration, exploration, and analysis of h a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2013" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602 ; @@ -449377,7 +476733,7 @@ A computational toolkit in R for the integration, exploration, and analysis of h biotools:primaryContact "Xinyi YANG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -449398,7 +476754,7 @@ A computational toolkit in R for the integration, exploration, and analysis of h sc:url "http://spencer.renlab.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -449413,8 +476769,31 @@ A computational toolkit in R for the integration, exploration, and analysis of h sc:softwareHelp ; sc:url "http://gpcr.biocomp.unibo.it/cgi/predictors/spep/pred_spepcgi.cgi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_0601, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8896601", + "pubmed:34978568" ; + sc:description "Quality Assessment of Peptide Tandem Mass Spectra with Deep Learning." ; + sc:featureList edam:operation_3631, + edam:operation_3767, + edam:operation_3860 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SPEQ" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/sor8sh/SPEQ" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0089, @@ -449433,7 +476812,7 @@ A computational toolkit in R for the integration, exploration, and analysis of h sc:url "http://www.sailing.cs.cmu.edu/main/?page_id=511" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0634, @@ -449452,7 +476831,7 @@ Signaling pathway analysis methods are commonly used to explain biological behav sc:url "https://github.com/ZhenshenBao/SPFA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, edam:topic_3411 ; @@ -449468,7 +476847,7 @@ This package implements a hierarchical Bayesian logistic regression analysis to sc:url "https://github.com/warrenjl/SpGPCW" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -449486,7 +476865,7 @@ This package implements a hierarchical Bayesian logistic regression analysis to biotools:primaryContact "Patrick Granton" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, edam:topic_0166, @@ -449507,7 +476886,7 @@ spherecon.py -i /Path/To/Input/File [-o /Path/To/Output/File] [-c chain] [-r res sc:url "https://github.com/kalininalab/spherecon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3474, edam:topic_3520 ; @@ -449520,7 +476899,7 @@ Non-rigid cortical registration is an important and challenging task due to the sc:url "https://github.com/voxelmorph/spheremorph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -449539,7 +476918,7 @@ Non-rigid cortical registration is an important and challenging task due to the biotools:primaryContact "Xuan Vinh Nguyen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3068, edam:topic_3305, @@ -449556,7 +476935,7 @@ Advances in the health sciences rely on sharing research and data through public sc:url "https://spi-hub.app.vumc.org/tutorials" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -449576,7 +476955,7 @@ Advances in the health sciences rely on sharing research and data through public biotools:primaryContact "Adi Laurentiu Tarca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, edam:topic_3308, @@ -449593,8 +476972,32 @@ R package for the analysis of OPAL multiplex immunohistochemistry images.""" ; sc:name "SPIAT" ; sc:url "https://github.com/cancer-evolution/SPIAT" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2229, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC8728228", + "pubmed:34747477" ; + sc:description "The Swiss Portal for Immune Cell Analysis (SPICA) is a web resource dedicated to the exploration and analysis of single-cell RNA-seq data of immune cells." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3223 ; + sc:isAccessibleForFree true ; + sc:name "SPICA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://spica.unil.ch" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2229, @@ -449610,7 +477013,7 @@ R package for the analysis of OPAL multiplex immunohistochemistry images.""" ; biotools:primaryContact "Joshua Nozzi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -449628,7 +477031,7 @@ R package for the analysis of OPAL multiplex immunohistochemistry images.""" ; biotools:primaryContact "B. A. Vandenberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_2258, @@ -449644,7 +477047,7 @@ R package for the analysis of OPAL multiplex immunohistochemistry images.""" ; biotools:primaryContact "Achim Zielesny" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814 ; @@ -449658,7 +477061,7 @@ R package for the analysis of OPAL multiplex immunohistochemistry images.""" ; sc:url "http://zhanglab.ccmb.med.umich.edu/SPICKER/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -449680,7 +477083,7 @@ R package for the analysis of OPAL multiplex immunohistochemistry images.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/spicyR.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0602, @@ -449697,13 +477100,17 @@ R package for the analysis of OPAL multiplex immunohistochemistry images.""" ; "Iñaki F. Trocóniz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0611, edam:topic_1317, edam:topic_2269 ; - sc:citation ; + sc:citation , + , + "pmcid:PMC2737740", + "pubmed:19180078", + "pubmed:8742743" ; sc:description "Image processing system for electron microscopy." ; sc:featureList edam:operation_0297, edam:operation_2238, @@ -449720,7 +477127,7 @@ R package for the analysis of OPAL multiplex immunohistochemistry images.""" ; biotools:primaryContact "ArDean Leith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3053, @@ -449736,7 +477143,7 @@ R package for the analysis of OPAL multiplex immunohistochemistry images.""" ; sc:url "http://spider.r-forge.r-project.org/SpiderWebSite/spider.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2269, @@ -449758,34 +477165,34 @@ R package for the analysis of OPAL multiplex immunohistochemistry images.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0990" ; - sc:name "Compound name" ; - sc:sameAs "http://edamontology.org/data_0990" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_3326" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_0990" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Compound name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1173" ; - sc:name "ChemSpider ID" ; - sc:sameAs "http://edamontology.org/data_1173" ] ; + sc:additionalType "http://edamontology.org/data_1173" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "ChemSpider ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1086" ; - sc:name "Compound identifier" ; - sc:sameAs "http://edamontology.org/data_1086" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0990" ; - sc:name "Compound name" ; - sc:sameAs "http://edamontology.org/data_0990" ], + sc:additionalType "http://edamontology.org/data_0990" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Compound name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1086" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Compound identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3172 ; @@ -449802,7 +477209,7 @@ R package for the analysis of OPAL multiplex immunohistochemistry images.""" ; sc:url "http://lababi.bioprocess.org/index.php/lababi-software/80-spidermass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0204, @@ -449822,7 +477229,7 @@ R package for the analysis of OPAL multiplex immunohistochemistry images.""" ; biotools:primaryContact "Claudia Cava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, edam:topic_3170, @@ -449840,7 +477247,7 @@ SpiderSeqR accelerates and simplifies genomic research by offering a new framewo sc:url "https://github.com/ss-lab-cancerunit/SpiderSeqR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0601, edam:topic_3169, @@ -449863,7 +477270,7 @@ SpiderSeqR accelerates and simplifies genomic research by offering a new framewo sc:url "https://github.com/eblancoga/spikChIP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0219, @@ -449885,7 +477292,7 @@ SpiderSeqR accelerates and simplifies genomic research by offering a new framewo biotools:primaryContact "SPIKE Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0769, edam:topic_3304 ; @@ -449900,7 +477307,7 @@ Spike sorting is a crucial but time-intensive step in electrophysiological studi sc:url "https://spikeforest.flatironinstitute.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518, @@ -449919,7 +477326,7 @@ Spike sorting is a crucial but time-intensive step in electrophysiological studi biotools:primaryContact "Enrico Carlon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, @@ -449938,7 +477345,7 @@ Spike sorting is a crucial but time-intensive step in electrophysiological studi . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0654, @@ -449956,10 +477363,10 @@ Spike sorting is a crucial but time-intensive step in electrophysiological studi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3299 ; sc:citation , @@ -449977,7 +477384,7 @@ Spike sorting is a crucial but time-intensive step in electrophysiological studi "Anna Kedzierska" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_2269, edam:topic_2828 ; @@ -449998,7 +477405,7 @@ Next generation of Sparse Pattern INDexing method.""" ; sc:url "https://github.com/lixx11/SPIND-TC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0610, @@ -450024,14 +477431,14 @@ Next generation of Sparse Pattern INDexing method.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0140 ; @@ -450049,8 +477456,55 @@ Next generation of Sparse Pattern INDexing method.""" ; sc:softwareVersion "4.1" ; sc:url "http://cbs.dtu.dk/services/SpindleP/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0659, + edam:topic_2640, + edam:topic_3315, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9073480", + "pubmed:35524174" ; + sc:description "An R-based tool to highlight key RNA interactions in complex biological networks." ; + sc:featureList edam:operation_0463, + edam:operation_2426, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "SPINNAKER" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sportingCode/SPINNAKER.git" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_3172, + edam:topic_3372, + edam:topic_3444, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8650269", + "pubmed:34875998" ; + sc:description "A novel NMR scripting system to implement artificial intelligence and advanced applications." ; + sc:featureList edam:operation_2939, + edam:operation_3891, + edam:operation_3960 ; + sc:isAccessibleForFree true ; + sc:license "EPL-1.0" ; + sc:name "SpinSPJ" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://www.spinstudioj.net/spinspj" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -450072,7 +477526,7 @@ Next generation of Sparse Pattern INDexing method.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091 ; sc:description "Visualize data on spirals." ; @@ -450083,18 +477537,16 @@ Next generation of Sparse Pattern INDexing method.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2343" ; - sc:name "Pathway ID (KEGG)" ; - sc:sameAs "http://edamontology.org/data_2343" ], + sc:additionalType "http://edamontology.org/data_2099" ; + sc:name "Name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2099" ; - sc:name "Name" ; - sc:sameAs "http://edamontology.org/data_2099" ] ; + sc:additionalType "http://edamontology.org/data_2343" ; + sc:name "Pathway ID (KEGG)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -450116,7 +477568,7 @@ Next generation of Sparse Pattern INDexing method.""" ; biotools:primaryContact "Jittisak Senachak" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3304, edam:topic_3318, @@ -450135,14 +477587,14 @@ The Spike Sequence mime (SpiSeMe) package provides C++, Matlab and Python functi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3110" ; - sc:name "Raw microarray data" ; - sc:sameAs "http://edamontology.org/data_3110" ] ; + sc:additionalType "http://edamontology.org/data_3110" ; + sc:encodingFormat "http://edamontology.org/format_1637" ; + sc:name "Raw microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -450160,7 +477612,7 @@ The Spike Sequence mime (SpiSeMe) package provides C++, Matlab and Python functi biotools:primaryContact "Matthew N McCall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -450178,7 +477630,7 @@ The Spike Sequence mime (SpiSeMe) package provides C++, Matlab and Python functi sc:url "http://raetschlab.org/suppl/spladder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -450200,7 +477652,7 @@ The Spike Sequence mime (SpiSeMe) package provides C++, Matlab and Python functi biotools:primaryContact "Luke Zappia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2640, edam:topic_3170, @@ -450222,7 +477674,7 @@ Sensitive to the overlap of genomic elements.""" ; sc:url "https://github.com/vrmelo/SPLICE-q" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0621, edam:topic_3320, @@ -450244,14 +477696,13 @@ The accurate identification of the exon and intron boundaries is critical for th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1009" ; - sc:name "Protein name" ; - sc:sameAs "http://edamontology.org/data_1009" ] ; + sc:additionalType "http://edamontology.org/data_1009" ; + sc:name "Protein name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0114, @@ -450270,7 +477721,7 @@ The accurate identification of the exon and intron boundaries is critical for th biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3047 ; sc:citation ; @@ -450287,8 +477738,35 @@ The accurate identification of the exon and intron boundaries is critical for th sc:url "http://srv00.recas.ba.infn.it/SpliceAidF/" ; biotools:primaryContact "Graziano Pesole" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0780, + edam:topic_3170, + edam:topic_3320, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8609763", + "pubmed:34814826" ; + sc:description "SPLICEATOR is an eukaryotic splice sites prediction program. It is based on convolutional neural network architecture. A model has been built for each type of splice site (Donor and Acceptor)." ; + sc:featureList edam:operation_0362, + edam:operation_0433, + edam:operation_0446 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Spliceator" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.lbgi.fr/spliceator/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0121, @@ -450305,7 +477783,7 @@ The accurate identification of the exon and intron boundaries is critical for th sc:url "http://proteomics.ucsd.edu/software-tools/splicedb-splice-graph-proteomics-tools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3170, @@ -450319,7 +477797,7 @@ The accurate identification of the exon and intron boundaries is critical for th biotools:primaryContact "Esmaeil Ebrahimie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, @@ -450341,7 +477819,7 @@ The accurate identification of the exon and intron boundaries is critical for th biotools:primaryContact "Juan Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3320, @@ -450360,7 +477838,7 @@ The accurate identification of the exon and intron boundaries is critical for th biotools:primaryContact "Laurent Gautier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3320 ; sc:citation ; @@ -450374,7 +477852,7 @@ The accurate identification of the exon and intron boundaries is critical for th biotools:primaryContact "Asa Ben-Hur" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320, @@ -450389,14 +477867,13 @@ The accurate identification of the exon and intron boundaries is critical for th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation ; @@ -450412,7 +477889,7 @@ The accurate identification of the exon and intron boundaries is critical for th sc:url "http://bioinformatics.psb.ugent.be/software/details/SpliceMachine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation "pubmed:20371516" ; @@ -450426,7 +477903,7 @@ The accurate identification of the exon and intron boundaries is critical for th biotools:primaryContact "Kin Fai Au" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3320 ; sc:citation "pubmed:24363378" ; @@ -450441,7 +477918,7 @@ The accurate identification of the exon and intron boundaries is critical for th biotools:primaryContact "Eric Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_2815, @@ -450463,7 +477940,7 @@ The accurate identification of the exon and intron boundaries is critical for th biotools:primaryContact "spliceport Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170, @@ -450483,7 +477960,7 @@ The accurate identification of the exon and intron boundaries is critical for th "Kristoffer Vitting-Seerup" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -450505,7 +477982,7 @@ The accurate identification of the exon and intron boundaries is critical for th biotools:primaryContact "Wolfgang Kaisers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320 ; @@ -450519,7 +477996,7 @@ The accurate identification of the exon and intron boundaries is critical for th biotools:primaryContact "SpliceTrap Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_0654, @@ -450536,7 +478013,7 @@ The accurate identification of the exon and intron boundaries is critical for th sc:url "http://www.bioinformatics-brazil.org/splicingexpress" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, @@ -450553,7 +478030,7 @@ The accurate identification of the exon and intron boundaries is critical for th sc:url "http://www.ichip.de/software/SplicingCompass.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, @@ -450577,14 +478054,14 @@ The accurate identification of the exon and intron boundaries is critical for th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ] ; + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_3621" ; + sc:name "Gene transcript report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170, @@ -450604,7 +478081,7 @@ The accurate identification of the exon and intron boundaries is critical for th biotools:primaryContact "H. Pagès" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -450620,7 +478097,7 @@ The accurate identification of the exon and intron boundaries is critical for th sc:url "https://sourceforge.net/projects/splicingtypes/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3170 ; @@ -450640,7 +478117,7 @@ The accurate identification of the exon and intron boundaries is critical for th "SplicingViewer team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -450663,7 +478140,7 @@ The accurate identification of the exon and intron boundaries is critical for th biotools:primaryContact "Yuri Kapustin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -450683,7 +478160,7 @@ The accurate identification of the exon and intron boundaries is critical for th biotools:primaryContact "Herbert Braselmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0749, edam:topic_3517 ; @@ -450698,7 +478175,7 @@ Genome-wide association studies (GWAS) have been widely used to unravel connecti sc:url "https://exbio.wzw.tum.de/splink" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -450721,7 +478198,7 @@ Genome-wide association studies (GWAS) have been widely used to unravel connecti biotools:primaryContact "Diana Low" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -450743,7 +478220,7 @@ Genome-wide association studies (GWAS) have been widely used to unravel connecti . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0621, edam:topic_0632, @@ -450762,16 +478239,35 @@ Scripts and data used for the manuscript figures can be found in the splitFISH_m sc:name "split-FISH" ; sc:url "https://github.com/khchenLab/split-fish" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3063, + edam:topic_3384, + edam:topic_3474 ; + sc:citation , + "pubmed:35749336" ; + sc:description "A heterogeneity-aware federated deep learning method for medical imaging." ; + sc:featureList edam:operation_3359, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SplitAVG" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/zm17943/SplitAVG" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084 ; sc:description "Calculate the number of splits (edges) that differs for two trees." ; @@ -450785,7 +478281,7 @@ Scripts and data used for the manuscript figures can be found in the splitFISH_m biotools:primaryContact "Thomas Mailund" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -450799,7 +478295,7 @@ Scripts and data used for the manuscript figures can be found in the splitFISH_m sc:url "http://sourceforge.net/projects/splitmem/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -450819,7 +478315,7 @@ Scripts and data used for the manuscript figures can be found in the splitFISH_m biotools:primaryContact "Yan Y. Tseng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -450837,14 +478333,12 @@ Scripts and data used for the manuscript figures can be found in the splitFISH_m a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -450875,14 +478369,12 @@ Scripts and data used for the manuscript figures can be found in the splitFISH_m a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -450912,7 +478404,7 @@ Scripts and data used for the manuscript figures can be found in the splitFISH_m sc:url "http://emboss.open-bio.org/rel/rel6/apps/splitter.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -450931,7 +478423,7 @@ Scripts and data used for the manuscript figures can be found in the splitFISH_m biotools:primaryContact "Wolfgang Huber" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, edam:topic_2640, @@ -450952,7 +478444,7 @@ Our software SPM consists of three separate parts: intermediate file generation sc:url "https://github.com/Dalton386/SPM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0781, @@ -450968,7 +478460,7 @@ Our software SPM consists of three separate parts: intermediate file generation sc:url "http://p512.usc.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -450985,8 +478477,27 @@ Our software SPM consists of three separate parts: intermediate file generation sc:softwareVersion "1.0" ; sc:url "http://www.picb.ac.cn/ClinicalGenomicNTW/SPNConverter.html" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1193" ; + sc:encodingFormat "http://edamontology.org/format_3987" ; + sc:name "Tool name (FASTA)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0622 ; + sc:citation ; + sc:description "SIMD partial order alignment tool/library. Spoa (SIMD POA) is a c++ implementation of the partial order alignment (POA) algorithm" ; + sc:featureList edam:operation_0292 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Spoa" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/rvaser/spoa" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2269 ; sc:citation ; @@ -451000,7 +478511,7 @@ SPOC, short for Statistical Processing of cryo-EM maps, is a software package wh sc:url "https://github.com/MaximilianBeckers/SPOC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0625, edam:topic_0637, @@ -451020,7 +478531,7 @@ SpolLineages is a software tool mainly written in Java allowing to predict Mycob sc:url "https://github.com/dcouvin/SpolLineages" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -451040,7 +478551,7 @@ SpolLineages is a software tool mainly written in Java allowing to predict Mycob biotools:primaryContact "Markus List" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0099, @@ -451056,8 +478567,33 @@ SpolLineages is a software tool mainly written in Java allowing to predict Mycob sc:softwareHelp ; sc:url "http://spongescan.rc.ufl.edu/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_0769, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9004739", + "pubmed:35358200" ; + sc:description "The SPOROS pipeline is a read-based sequence analysis pipeline for studying 6mer Seed Toxicity in mouse and human RNA-seq data." ; + sc:featureList edam:operation_0463, + edam:operation_3192, + edam:operation_3196, + edam:operation_3792, + edam:operation_3933 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SPOROS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ebartom/SPOROS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -451074,7 +478610,7 @@ SpolLineages is a software tool mainly written in Java allowing to predict Mycob biotools:primaryContact "SPOT Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0736, @@ -451093,7 +478629,7 @@ SpolLineages is a software tool mainly written in Java allowing to predict Mycob . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0102, @@ -451113,8 +478649,35 @@ SpolLineages is a software tool mainly written in Java allowing to predict Mycob sc:softwareHelp ; sc:url "https://sparks-lab.org/server/spot-contact-single" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:citation , + "pubmed:28011771" ; + sc:description "SPOT-Disorder is a method used for predicting disordered regions in proteins. Initial studies indicate that the method is more accurate in predicting functional sites in disordered regions." ; + sc:isAccessibleForFree true ; + sc:name "SPOT-Disorder" ; + sc:operatingSystem "Linux" ; + sc:softwareVersion "v1.0" ; + sc:url "http://sparks-lab.org/server/spot-disorder/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:citation , + "pubmed:30395465" ; + sc:description "SPOT-Disorder-Single is a single-sequence method that is more accurate than SPOT-Disorder (a profile-based method) for proteins with few homologous sequences and comparable for proteins in predicting long-disordered regions." ; + sc:isAccessibleForFree true ; + sc:name "SPOT-Disorder-Single" ; + sc:operatingSystem "Linux" ; + sc:url "http://sparks-lab.org/server/spot-disorder-single/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0593, edam:topic_0602, @@ -451127,15 +478690,17 @@ SpolLineages is a software tool mainly written in Java allowing to predict Mycob sc:featureList edam:operation_0272, edam:operation_0470, edam:operation_3904 ; + sc:isAccessibleForFree true ; sc:name "SPOT-Disorder2" ; + sc:operatingSystem "Linux" ; sc:url "https://sparks-lab.org/server/spot-disorder2/" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:33704363" ; sc:description "Improved RNA Secondary Secondary Structure Prediction using Evolutionary Profile, Mutational Coupling and Two-dimensional Transfer Learning" ; @@ -451145,7 +478710,7 @@ SpolLineages is a software tool mainly written in Java allowing to predict Mycob sc:url "https://sparks-lab.org/server/spot-rna2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -451165,7 +478730,7 @@ SpolLineages is a software tool mainly written in Java allowing to predict Mycob biotools:primaryContact "Yaoqi Zhou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -451180,7 +478745,7 @@ SpolLineages is a software tool mainly written in Java allowing to predict Mycob sc:url "http://sparks-lab.org/yueyang/server/SPOT-Struct-DNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099 ; sc:citation ; @@ -451192,7 +478757,7 @@ SpolLineages is a software tool mainly written in Java allowing to predict Mycob sc:url "http://sparks-lab.org/yueyang/server/SPOT-Struct-RNA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -451213,7 +478778,7 @@ SpolLineages is a software tool mainly written in Java allowing to predict Mycob sc:url "https://frischknechtlab.shinyapps.io/SPOT/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3365, @@ -451232,7 +478797,7 @@ SpolLineages is a software tool mainly written in Java allowing to predict Mycob sc:url "http://bigwww.epfl.ch/algorithms/spotcaliper/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_1775, @@ -451248,7 +478813,7 @@ SpolLineages is a software tool mainly written in Java allowing to predict Mycob sc:url "http://hub.iis.sinica.edu.tw/spotlight/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Web application" ; @@ -451268,8 +478833,28 @@ The goal of SPOTlight is to provide a tool that enables the deconvolution of cel sc:name "SPOTlight" ; sc:url "http://mouse.brain-map.org/experiment/siv?id=69672462&imageId=69647545&initImage=ish&coordSystem=pixel&x=4464.5&y=3184.5&z=1" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0128, + edam:topic_0749, + edam:topic_3520 ; + sc:citation ; + sc:description "SpotLink enables sensitive and precise identification of site non-specific cross-links at the proteome scale." ; + sc:featureList edam:operation_2428, + edam:operation_3435, + edam:operation_3755 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SpotLink" ; + sc:operatingSystem "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/DICP1810/SpotLink" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -451287,10 +478872,10 @@ The goal of SPOTlight is to provide a tool that enables the deconvolution of cel a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_2350" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3307 ; sc:author ; @@ -451309,7 +478894,7 @@ SpotOn is a robust algorithm developed to identify and classify the interfacial biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_3474 ; @@ -451324,7 +478909,7 @@ SpotOn is a robust algorithm developed to identify and classify the interfacial sc:url "http://moreiralab.com/resources/spotone" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0610, edam:topic_2269, @@ -451344,7 +478929,7 @@ SpotOn is a robust algorithm developed to identify and classify the interfacial biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518, @@ -451363,7 +478948,7 @@ SpotOn is a robust algorithm developed to identify and classify the interfacial biotools:primaryContact "Chris Fraley" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3344, edam:topic_3372 ; @@ -451377,7 +478962,7 @@ SpotOn is a robust algorithm developed to identify and classify the interfacial sc:url "https://github.com/big-data-lab-team/spot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157, edam:topic_0199, @@ -451397,7 +478982,7 @@ SpotOn is a robust algorithm developed to identify and classify the interfacial biotools:primaryContact "Rick Twee-Hee Ong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3169 ; @@ -451412,7 +478997,7 @@ SpotOn is a robust algorithm developed to identify and classify the interfacial biotools:primaryContact "Peter J. Park" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3336, @@ -451429,14 +479014,12 @@ SpotOn is a robust algorithm developed to identify and classify the interfacial a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ] ; + sc:additionalType "http://edamontology.org/data_2295" ; + sc:name "Gene ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1075" ; - sc:name "Protein family identifier" ; - sc:sameAs "http://edamontology.org/data_1075" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1075" ; + sc:name "Protein family identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3299 ; @@ -451452,7 +479035,7 @@ SpotOn is a robust algorithm developed to identify and classify the interfacial sc:url "http://bioinformatics.psb.ugent.be/cgi-bin/SPPG/index.htpl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -451469,7 +479052,7 @@ SpotOn is a robust algorithm developed to identify and classify the interfacial sc:url "http://sppider.cchmc.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3365, @@ -451486,18 +479069,17 @@ SpotOn is a robust algorithm developed to identify and classify the interfacial a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2795" ; - sc:name "ORF identifier" ; - sc:sameAs "http://edamontology.org/data_2795" ], + sc:additionalType "http://edamontology.org/data_2093" ; + sc:name "Data reference" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2093" ; - sc:name "Data reference" ; - sc:sameAs "http://edamontology.org/data_2093" ] ; + sc:additionalType "http://edamontology.org/data_2795" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "ORF identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -451520,7 +479102,7 @@ SpotOn is a robust algorithm developed to identify and classify the interfacial sc:url "https://github.com/Arkadiy-Garber/SprayNPray" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0166, @@ -451540,7 +479122,7 @@ SpotOn is a robust algorithm developed to identify and classify the interfacial "Aykut Üren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0611, edam:topic_0769 ; @@ -451556,7 +479138,7 @@ SPREAD: A fully automated toolkit for single-particle cryo-EM data 3D reconstruc sc:url "http://www.csbio.sjtu.edu.cn/bioinf/SPREAD/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -451570,7 +479152,7 @@ SPREAD: A fully automated toolkit for single-particle cryo-EM data 3D reconstruc sc:url "http://dlin.web.unc.edu/software/spreg/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -451594,7 +479176,7 @@ SPREAD: A fully automated toolkit for single-particle cryo-EM data 3D reconstruc "Ying Chih Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -451610,8 +479192,30 @@ SPREAD: A fully automated toolkit for single-particle cryo-EM data 3D reconstruc sc:softwareHelp ; sc:url "http://www.r-sprint.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0154, + edam:topic_0601, + edam:topic_0736, + edam:topic_3474 ; + sc:citation , + "pubmed:35696081" ; + sc:description "Computational Prediction of N- and O-Linked Glycosylation Sites for Human and Mouse Proteins." ; + sc:featureList edam:operation_0267, + edam:operation_0417, + edam:operation_0474 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SPRINT-Gly" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://sparks-lab.org/server/sprint-gly/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -451628,7 +479232,7 @@ SPREAD: A fully automated toolkit for single-particle cryo-EM data 3D reconstruc biotools:primaryContact "Weidong Tian" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -451650,8 +479254,32 @@ SPREAD: A fully automated toolkit for single-particle cryo-EM data 3D reconstruc sc:url "http://mfrlab.org/grafss/sprite" ; biotools:primaryContact "Sprite Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0654, + edam:topic_0659, + edam:topic_0769, + edam:topic_3168 ; + sc:citation , + "pubmed:35013617" ; + sc:description "A genome-wide method for mapping higher-order 3D interactions in the nucleus using combinatorial split-and-pool barcoding." ; + sc:featureList edam:operation_1812, + edam:operation_3192, + edam:operation_3200, + edam:operation_3216 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SPRITE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/GuttmanLab/sprite-pipeline.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -451668,7 +479296,7 @@ SPREAD: A fully automated toolkit for single-particle cryo-EM data 3D reconstruc sc:url "https://github.com/zhangzhen/sprites" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -451692,7 +479320,7 @@ SPREAD: A fully automated toolkit for single-particle cryo-EM data 3D reconstruc biotools:primaryContact "Gianluca Pollastri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, @@ -451721,7 +479349,7 @@ Monitor progress in the Information textbox. The final database named final/comb sc:url "https://smith-chem-wisc.github.io/Spritz/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0130, @@ -451741,7 +479369,7 @@ Monitor progress in the Information textbox. The final database named final/comb sc:url "https://sbi.upf.edu/spserver/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, edam:topic_0622, @@ -451757,7 +479385,7 @@ Monitor progress in the Information textbox. The final database named final/comb sc:url "https://github.com/CenterForStatistics-UGent/SPsimSeq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3474 ; sc:citation , @@ -451771,7 +479399,7 @@ This repository contains the source code of the SPeeding Up the Detection of Non sc:url "https://github.com/jorrip/SPUDNIG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, edam:topic_3168, @@ -451790,7 +479418,7 @@ This repository contains the source code of the SPeeding Up the Detection of Non . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -451806,7 +479434,7 @@ This repository contains the source code of the SPeeding Up the Detection of Non sc:url "http://www.ibi.vu.nl/programs/spuncwww/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -451825,7 +479453,7 @@ This repository contains the source code of the SPeeding Up the Detection of Non biotools:primaryContact "Alex Bateman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_3306, @@ -451845,7 +479473,7 @@ Drug discovery is an academical and commercial process of global importance.""" sc:url "https://github.com/dqwei-lab/SPVec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0632, @@ -451861,7 +479489,7 @@ Drug discovery is an academical and commercial process of global importance.""" sc:url "http://www.stat.brown.edu/ZWU/research.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -451877,22 +479505,22 @@ Drug discovery is an academical and commercial process of global importance.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Expression data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3170, @@ -451915,7 +479543,7 @@ The pipeline performs the following analysis steps: 1) Index the genotype file, sc:url "https://github.com/guigolab/sqtlseeker2-nf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602 ; @@ -451936,7 +479564,7 @@ The pipeline performs the following analysis steps: 1) Index the genotype file, biotools:primaryContact "Martial Sankar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3050, edam:topic_3071, @@ -451954,7 +479582,7 @@ Squamatabase is a database of prey items recorded in diet samples from the world sc:url "https://github.com/blueraleigh/squamatabase" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3697, @@ -451971,7 +479599,7 @@ Squamatabase is a database of prey items recorded in diet samples from the world biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3174, @@ -451991,7 +479619,7 @@ Squamatabase is a database of prey items recorded in diet samples from the world sc:url "https://github.com/jtamames/SqueezeMeta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3570 ; sc:citation , @@ -452005,7 +479633,7 @@ We present an open-source program free to download for academic use with a full sc:url "https://wrap.warwick.ac.uk/129665/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -452025,8 +479653,31 @@ Squidpy is a tool for the analysis and visualization of spatial molecular data. sc:softwareHelp ; sc:url "https://github.com/theislab/squidpy" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_3173, + edam:topic_3174, + edam:topic_3175, + edam:topic_3519 ; + sc:citation , + "pmcid:PMC8548853", + "pubmed:34706748" ; + sc:description "SquiggleNet is a 1D ResNet based model to classify Oxford Nanopore raw electrical signals as target or non-target for Read-Until sequence enrichment or depletion." ; + sc:featureList edam:operation_0292, + edam:operation_3185, + edam:operation_3211 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SquiggleNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/welch-lab/SquiggleNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -452047,7 +479698,7 @@ Super-quick Information Content and Random Forest Learning for Splice Variants." sc:url "https://github.com/TheJacksonLaboratory/Squirls" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation "pubmed:19477687" ; @@ -452060,7 +479711,7 @@ Super-quick Information Content and Random Forest Learning for Splice Variants." biotools:primaryContact "Contact page" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation , @@ -452076,7 +479727,7 @@ Super-quick Information Content and Random Forest Learning for Splice Variants." sc:url "http://www.iins.u-bordeaux.fr/team-sibarita-sr-tesseler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -452101,7 +479752,7 @@ Super-quick Information Content and Random Forest Learning for Splice Variants." biotools:primaryContact "Rasko Leinonen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0209, edam:topic_0634, @@ -452115,7 +479766,7 @@ Super-quick Information Content and Random Forest Learning for Splice Variants." sc:url "http://ki.se/en/labmed/christian-giske-group#header-3" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -452132,7 +479783,7 @@ Super-quick Information Content and Random Forest Learning for Splice Variants." sc:url "https://trace.ncbi.nlm.nih.gov/Traces/sra/sra.cgi?view=toolkit_doc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -452152,7 +479803,7 @@ Super-quick Information Content and Random Forest Learning for Splice Variants." biotools:primaryContact "Jack Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0099, @@ -452169,7 +479820,7 @@ Super-quick Information Content and Random Forest Learning for Splice Variants." sc:url "http://www.cuilab.cn/sramp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -452193,7 +479844,7 @@ Super-quick Information Content and Random Forest Learning for Splice Variants." biotools:primaryContact "Charles Warden" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0219, @@ -452210,7 +479861,7 @@ Super-quick Information Content and Random Forest Learning for Splice Variants." biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0625, edam:topic_0769, @@ -452229,7 +479880,7 @@ sraX is designed to read assembled sequence files in FASTA format and systematic sc:url "https://github.com/lgpdevtools/srax" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0769, @@ -452252,7 +479903,7 @@ sraX is designed to read assembled sequence files in FASTA format and systematic sc:url "https://github.com/avigayel/SRCP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0128, @@ -452270,7 +479921,7 @@ sraX is designed to read assembled sequence files in FASTA format and systematic biotools:primaryContact "Shandar Ahmad" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3068, edam:topic_3474 ; @@ -452287,7 +479938,7 @@ Spectrum recognition based on computer vision: A tool for 13C and 1H NMR data ex sc:url "https://github.com/WJmodels/SRCV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3301, edam:topic_3324 ; @@ -452316,7 +479967,7 @@ Spectrum recognition based on computer vision: A tool for 13C and 1H NMR data ex biotools:primaryContact "Olivier Collin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -452335,8 +479986,43 @@ Spectrum recognition based on computer vision: A tool for 13C and 1H NMR data ex sc:url "https://cran.r-project.org/web/packages/sRDA/index.html" ; biotools:primaryContact "Attila Csala" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0209, + edam:topic_3474 ; + sc:citation , + "pubmed:35253843" ; + sc:description "An ensemble approach to predict binding hotspots in protein-RNA interactions based on SMOTE data balancing and random grouping feature selection strategies." ; + sc:featureList edam:operation_3901, + edam:operation_3937, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SREPRHot" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ChunhuaLiLab/SREPRHot" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:14976032" ; + sc:description "Spectral Repeat Finder (SRF) is a program to find repeats through an analysis of the power spectrum of a given DNA sequence." ; + sc:featureList edam:operation_2945 ; + sc:name "srf" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/srf/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -452353,8 +480039,29 @@ Spectrum recognition based on computer vision: A tool for 13C and 1H NMR data ex sc:softwareVersion "0.0-95" ; sc:url "http://www.cbcb.umd.edu/~hcorrada/secgen/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_2640, + edam:topic_3315, + edam:topic_3474, + edam:topic_3577 ; + sc:citation , + "pubmed:35471879" ; + sc:description "Predicting miRNA-gene relationships via embedding and LSTM ensemble." ; + sc:featureList edam:operation_2426, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SRG-vote" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Xshelton/SRG-vote" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0204, @@ -452374,7 +480081,7 @@ Spectrum recognition based on computer vision: A tool for 13C and 1H NMR data ex biotools:primaryContact "Isar Nassiri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -452391,7 +480098,7 @@ Spectrum recognition based on computer vision: A tool for 13C and 1H NMR data ex biotools:primaryContact "Csaba Magyar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -452407,8 +480114,31 @@ Spectrum recognition based on computer vision: A tool for 13C and 1H NMR data ex sc:softwareHelp ; sc:url "http://paed.hku.hk/genome/software/SRinversion/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_3170, + edam:topic_3173, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9010551", + "pubmed:35465158" ; + sc:description "This is an implementation of Systematic Random forest Integration to Qualitative threshold (SRIQ) clustering. SRIQ clusters by finding a core clusters of highly correlated observations, then spiralling out from them to create bigger clusters. SRIQ evaluates clustering solution stability on its own and won't need user input for what number of cluster solutions to be evaluated." ; + sc:featureList edam:operation_3223, + edam:operation_3432, + edam:operation_3463 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SRIQ" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/StaafLab/SRIQ" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0659, edam:topic_0780, @@ -452424,7 +480154,7 @@ Spectrum recognition based on computer vision: A tool for 13C and 1H NMR data ex sc:url "http://sris.itps.ncku.edu.tw/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:20932289" ; @@ -452439,7 +480169,7 @@ Spectrum recognition based on computer vision: A tool for 13C and 1H NMR data ex biotools:primaryContact "Admin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2269, @@ -452455,7 +480185,7 @@ Spectrum recognition based on computer vision: A tool for 13C and 1H NMR data ex sc:url "http://www.stat.purdue.edu/~chang54/SRMstats/Home.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0204 ; @@ -452473,7 +480203,7 @@ Spectrum recognition based on computer vision: A tool for 13C and 1H NMR data ex biotools:primaryContact "Bruno Costa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3295 ; @@ -452492,7 +480222,7 @@ Spectrum recognition based on computer vision: A tool for 13C and 1H NMR data ex biotools:primaryContact "Matthias Zytnicki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0654, @@ -452510,7 +480240,7 @@ Spectrum recognition based on computer vision: A tool for 13C and 1H NMR data ex sc:url "http://arep.med.harvard.edu/miRNA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -452527,7 +480257,7 @@ srnaMapper uses the bwa API, and the bwa index files. Use bwa index to generate sc:url "https://github.com/mzytnicki/srnaMapper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -452544,7 +480274,7 @@ srnaMapper uses the bwa API, and the bwa index files. Use bwa index to generate biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0659, edam:topic_0780, @@ -452562,7 +480292,7 @@ Some categories of small RNAs (sRNAs) in plants, such as microRNA (miRNAs), tran sc:url "http://www.bioinfolab.cn/sRNATD.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3320, edam:topic_3512 ; @@ -452578,8 +480308,23 @@ Some categories of small RNAs (sRNAs) in plants, such as microRNA (miRNAs), tran sc:url "http://sroogle.tau.ac.il" ; biotools:primaryContact "SROOGLE Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0092, + edam:topic_3308 ; + sc:author "jimmy" ; + sc:description "Here, we presented a freely accessible easy-to-use web server that integrated more than 120 commonly used data visualization and graphing functions together, including heatmap, venn diagram, volcano plot, bubble plot, chromsome plot, circos plot, scatter plot, .... It can be run easily with all Web browsers, with a user-friendly graphical interface, users can paste your data directly into the input box according to the defined file format. Modification operations can be easily performed, and graphs can be generated in real time. The resulting graphs can be downloaded in bitmap (PNG or TIFF) or vector (PDF or SVG) format in publication quality." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:name "SRplot" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.bioinformatics.com.cn/srplot" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0102, edam:topic_0196, @@ -452597,7 +480342,7 @@ Some categories of small RNAs (sRNAs) in plants, such as microRNA (miRNAs), tran sc:url "https://github.com/ncbi/SRPRISM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0637, edam:topic_0659, @@ -452619,8 +480364,22 @@ To run any of the analysis notebooks, you'll need the short-read-tax-assignment sc:name "srta-012" ; sc:url "http://bit.ly/srta-012" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation "pubmed:18928201" ; + sc:description "SVM-based method for the classification of protein sequence as secretory or non-secretory protein." ; + sc:featureList edam:operation_2945 ; + sc:name "srtpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/srtpred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154, edam:topic_0166, @@ -452638,7 +480397,7 @@ SS3D is a bioinformatics tool for combining sequence and structure alignment dat sc:url "https://github.com/0x462e41/SS3D/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, edam:topic_3170 ; @@ -452654,7 +480413,7 @@ liver_scrnaseq_analysis_111419.html""" ; sc:url "http://www.benoslab.pitt.edu/Software/ssnpa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation "pubmed:12824379" ; @@ -452672,7 +480431,7 @@ liver_scrnaseq_analysis_111419.html""" ; biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:11591649" ; @@ -452690,14 +480449,10 @@ liver_scrnaseq_analysis_111419.html""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], - [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation , @@ -452722,7 +480477,7 @@ liver_scrnaseq_analysis_111419.html""" ; "Zemin Ning" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -452741,18 +480496,18 @@ liver_scrnaseq_analysis_111419.html""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3181" ; - sc:name "Sequence assembly report" ; - sc:sameAs "http://edamontology.org/data_3181" ], + sc:additionalType "http://edamontology.org/data_3181" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence assembly report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168 ; @@ -452767,8 +480522,30 @@ liver_scrnaseq_analysis_111419.html""" ; sc:url "http://www.bcgsc.ca/platform/bioinfo/software/ssake" ; biotools:primaryContact "Rene Warren" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3168, + edam:topic_3308, + edam:topic_3512 ; + sc:citation ; + sc:description "A light-weight web app for rapid analysis of spatially resolved transcriptomics data." ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_3436, + edam:operation_3907 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SSAM-lite" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://ssam-lite.bihealth.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_2269, @@ -452782,8 +480559,27 @@ liver_scrnaseq_analysis_111419.html""" ; sc:softwareHelp ; sc:url "http://www.stat.osu.edu/~lkubatko/software.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_2269, + edam:topic_3324 ; + sc:citation ; + sc:description "Stochastic Simulation Algorithm for effective spreading dynamics on Time-evolving Adaptive NetworX (SSATAN-X)." ; + sc:featureList edam:operation_0244, + edam:operation_2426, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SSATAN-X" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/nmalysheva/SSATAN-X" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2229, @@ -452802,7 +480598,7 @@ liver_scrnaseq_analysis_111419.html""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0622, @@ -452819,7 +480615,7 @@ liver_scrnaseq_analysis_111419.html""" ; biotools:primaryContact "Nathan Mih" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -452838,7 +480634,7 @@ liver_scrnaseq_analysis_111419.html""" ; biotools:primaryContact "Richard Kennedy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0769, edam:topic_3168 ; @@ -452854,7 +480650,7 @@ There has been a significant improvement in protein residue contact prediction i sc:url "http://csbio.njust.edu.cn/bioinf/sscpred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -452873,7 +480669,7 @@ There has been a significant improvement in protein residue contact prediction i biotools:primaryContact "Yu Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3068, edam:topic_3678 ; @@ -452891,10 +480687,10 @@ bain is an abbreviation for BAyesian INformative hypothesis evaluation. It uses a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -452917,7 +480713,7 @@ bain is an abbreviation for BAyesian INformative hypothesis evaluation. It uses sc:url "http://10.life.nctu.edu.tw/SSE-PSSM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053, @@ -452935,7 +480731,7 @@ bain is an abbreviation for BAyesian INformative hypothesis evaluation. It uses sc:url "https://cbcl.ics.uci.edu/SSEA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -452953,7 +480749,7 @@ bain is an abbreviation for BAyesian INformative hypothesis evaluation. It uses sc:url "http://cluster.physics.iisc.ernet.in/ssep/options.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -452972,7 +480768,7 @@ bain is an abbreviation for BAyesian INformative hypothesis evaluation. It uses biotools:primaryContact "Danni Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0622, @@ -452996,7 +480792,7 @@ bain is an abbreviation for BAyesian INformative hypothesis evaluation. It uses sc:url "https://nibtehaz.github.io/SSG-LUGIA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -453012,7 +480808,7 @@ bain is an abbreviation for BAyesian INformative hypothesis evaluation. It uses sc:url "https://github.com/kanz76/SSI-DDI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0091, edam:topic_0154, @@ -453028,7 +480824,7 @@ bain is an abbreviation for BAyesian INformative hypothesis evaluation. It uses sc:url "https://github.com/rashmie/SSIF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203 ; @@ -453047,7 +480843,7 @@ bain is an abbreviation for BAyesian INformative hypothesis evaluation. It uses biotools:primaryContact "Gregory R. Warnes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0622, edam:topic_3277, @@ -453060,7 +480856,7 @@ bain is an abbreviation for BAyesian INformative hypothesis evaluation. It uses sc:url "https://idrblab.org/ssizer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0736, @@ -453075,7 +480871,7 @@ bain is an abbreviation for BAyesian INformative hypothesis evaluation. It uses biotools:primaryContact "Lei Xie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0601, edam:topic_3510 ; @@ -453090,8 +480886,34 @@ This package implements the SSKM_Succ algorithm incorporating K-means clustering sc:name "SSKM Succ" ; sc:url "https://github.com/yangyq505/SSKM_Succ.git" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "SMILES string" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2840, + edam:topic_3336, + edam:topic_3375, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8627024", + "pubmed:34838140" ; + sc:description "Chemical toxicity prediction based on semi-supervised learning and graph convolutional neural network." ; + sc:featureList edam:operation_2422, + edam:operation_3435, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:name "SSL-GCN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://app.cbbio.online/ssl-gcn/home" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "A data mining solution to map thousands of viral isolates (influenza, dengue and FMDV virus)." ; @@ -453104,7 +480926,7 @@ This package implements the SSKM_Succ algorithm incorporating K-means clustering biotools:primaryContact "Software Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0632, edam:topic_0654, @@ -453118,7 +480940,7 @@ This package implements the SSKM_Succ algorithm incorporating K-means clustering sc:url "http://ssmc-tl.com/Start.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, edam:topic_3295, @@ -453135,7 +480957,7 @@ Deconvolution of mouse transcriptomic data is challenged by the fact that mouse sc:url "https://github.com/xiaoyulu95/SSMD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3168, edam:topic_3474, @@ -453152,7 +480974,7 @@ Deconvolution of mouse transcriptomic data is challenged by the fact that mouse sc:url "https://github.com/GreenCUBIC/SSmiRNA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3050, edam:topic_3315, edam:topic_3573, @@ -453168,7 +480990,7 @@ Streams and rivers are biodiverse and provide valuable ecosystem services. Maint sc:url "https://github.com/apear9/SSNdesign" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0203, @@ -453183,7 +481005,7 @@ Streams and rivers are biodiverse and provide valuable ecosystem services. Maint sc:url "http://ssp.biocuckoo.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -453199,7 +481021,7 @@ Streams and rivers are biodiverse and provide valuable ecosystem services. Maint sc:url "http://abragam.med.utoronto.ca/~JFKlab/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -453220,7 +481042,7 @@ Streams and rivers are biodiverse and provide valuable ecosystem services. Maint biotools:primaryContact "Maarten van Iterson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation "pubmed:21149342" ; @@ -453234,7 +481056,7 @@ Streams and rivers are biodiverse and provide valuable ecosystem services. Maint biotools:primaryContact "SSPACE Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0623, @@ -453251,7 +481073,7 @@ Streams and rivers are biodiverse and provide valuable ecosystem services. Maint sc:url "http://www.bioinformatics.org/sspred/html/sspred.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -453270,22 +481092,22 @@ Streams and rivers are biodiverse and provide valuable ecosystem services. Maint a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2016" ; - sc:name "Amino acid property" ; - sc:sameAs "http://edamontology.org/data_2016" ], + sc:additionalType "http://edamontology.org/data_2016" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Amino acid property" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1520" ; - sc:name "Peptide hydrophobic moment" ; - sc:sameAs "http://edamontology.org/data_1520" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1520" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Peptide hydrophobic moment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -453301,7 +481123,7 @@ Streams and rivers are biodiverse and provide valuable ecosystem services. Maint sc:url "http://hs2.proteome.ca/SSRCalc/SSRCalc.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2229, @@ -453316,7 +481138,7 @@ Streams and rivers are biodiverse and provide valuable ecosystem services. Maint biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_2885, edam:topic_3168, @@ -453339,7 +481161,7 @@ You just need to select all of your fasta files from Trinity and run this softwa sc:url "https://github.com/byemaxx/SSREnricher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, edam:topic_0632, @@ -453356,8 +481178,33 @@ You just need to select all of your fasta files from Trinity and run this softwa sc:name "SSRMMD" ; sc:url "https://github.com/GouXiangJian/SSRMMD" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0097, + edam:topic_0659, + edam:topic_3512, + edam:topic_3542 ; + sc:citation , + "pmcid:PMC9136272", + "pubmed:35664227" ; + sc:description "A web tool for evaluating RNA secondary structure predictions based on species-specific functional interpretability." ; + sc:featureList edam:operation_0278, + edam:operation_0474, + edam:operation_0502, + edam:operation_0570, + edam:operation_2441 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "SSRTool" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cobisHSS0.im.nuk.edu.tw/SSRTool/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_1317 ; sc:citation , @@ -453372,8 +481219,27 @@ You just need to select all of your fasta files from Trinity and run this softwa sc:url "http://lcb.infotech.monash.edu.au/sstweb/Submission_page.html" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_3304, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8603828", + "pubmed:34803591" ; + sc:description "Supervised Spike Timing Dependent Plasticity for Efficient Spiking Neural Network Training." ; + sc:featureList edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SSTDP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/MXHX7199/SNN-SSTDP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -453395,7 +481261,7 @@ You just need to select all of your fasta files from Trinity and run this softwa biotools:primaryContact "SStructView Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0659, @@ -453415,7 +481281,7 @@ You just need to select all of your fasta files from Trinity and run this softwa biotools:primaryContact "Diana Low" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0601, edam:topic_0749, @@ -453437,7 +481303,7 @@ You just need to select all of your fasta files from Trinity and run this softwa sc:url "https://github.com/FrietzeLabUVM/ssvQC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0622, @@ -453453,7 +481319,7 @@ You just need to select all of your fasta files from Trinity and run this softwa sc:url "http://blog.gkno.me/post/42508822069/ssw-library" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2640, @@ -453470,7 +481336,7 @@ You just need to select all of your fasta files from Trinity and run this softwa sc:url "https://github.com/sheilagaynor/STAAR_workflow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3308, @@ -453485,8 +481351,28 @@ The human brain is the most complex organ consisting of billions of neuronal and sc:name "STAB" ; sc:url "http://stab.comp-sysbio.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0632, + edam:topic_3303, + edam:topic_3474 ; + sc:citation , + "pubmed:34750606" ; + sc:description "A stacked ensemble predictor based on biLSTM and attention mechanism for accelerated discovery of antibacterial peptides." ; + sc:featureList edam:operation_0321, + edam:operation_0407, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:name "StaBle-ABPpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://stable-abppred.anvil.app" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_2269 ; @@ -453501,7 +481387,7 @@ The human brain is the most complex organ consisting of billions of neuronal and sc:url "http://cran.r-project.org/web/packages/stabs/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2269 ; @@ -453520,7 +481406,7 @@ The human brain is the most complex organ consisting of billions of neuronal and sc:url "http://www.cbil.upenn.edu/STAC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, edam:topic_3170, @@ -453536,7 +481422,7 @@ Integrating scRNA-seq data using STACAS and Seurat 3.""" ; sc:url "https://github.com/carmonalab/STACAS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -453551,7 +481437,7 @@ Integrating scRNA-seq data using STACAS and Seurat 3.""" ; sc:url "http://bioinfo3d.cs.tau.ac.il/staccato/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0202, @@ -453567,8 +481453,71 @@ Identifying Cell-Penetrating Peptides and Their Uptake Efficiency.""" ; sc:name "StackCPPred" ; sc:url "https://github.com/Excelsior511/StackCPPred" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0154, + edam:topic_3474 ; + sc:citation , + "pubmed:34883239" ; + sc:description "A novel computational approach for accurate prediction of dipeptidyl peptidase IV (DPP-IV) inhibitory peptides." ; + sc:featureList edam:operation_3631 ; + sc:isAccessibleForFree true ; + sc:name "StackDPPIV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://pmlabstack.pythonanywhere.com/StackDPPIV" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_2229, + edam:topic_3173, + edam:topic_3474, + edam:topic_3940 ; + sc:citation , + "pmcid:PMC9277947", + "pubmed:35820811" ; + sc:description "Identification of cell line-specific enhancer-promoter interactions based on stacking ensemble learning." ; + sc:featureList edam:operation_0267, + edam:operation_0440, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "StackEPI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/20032303092/StackEPI.git" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2258, + edam:topic_2275, + edam:topic_3474 ; + sc:citation , + "pubmed:34622387" ; + sc:description "A web-based integrative machine-learning framework for large-scale identification of hepatitis C virus NS5B inhibitors." ; + sc:featureList edam:operation_3454, + edam:operation_3899, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "StackHCV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://camt.pythonanywhere.com/StackHCV" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2830, @@ -453587,7 +481536,7 @@ Identifying Cell-Penetrating Peptides and Their Uptake Efficiency.""" ; "Watshara Shoombuatong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, edam:topic_0154, @@ -453605,7 +481554,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:url "https://github.com/QUST-AIBBDRC/StackPPI/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3295, edam:topic_3320, @@ -453620,7 +481569,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:url "https://github.com/QUST-AIBBDRC/StackRAM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3056 ; @@ -453635,7 +481584,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:url "http://catchenlab.life.illinois.edu/stacks/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -453652,7 +481601,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a biotools:primaryContact "Otto Manneberg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196 ; @@ -453671,7 +481620,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a biotools:primaryContact "Forum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3071, @@ -453688,7 +481637,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:url "http://staden.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -453709,8 +481658,30 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:url "http://staden.sourceforge.net/" ; biotools:primaryContact "Forum" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0605, + edam:topic_3170, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8571400", + "pubmed:34786208" ; + sc:description "A novel computational approachfor accurate prediction of m5C site." ; + sc:featureList edam:operation_0417, + edam:operation_3927, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Staem5" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Cxd-626/Staem5.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0797 ; @@ -453726,7 +481697,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a biotools:primaryContact "James C. Schnable" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -453745,7 +481716,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a biotools:primaryContact "Koen Van den Berge" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0769, @@ -453765,10 +481736,10 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0121, @@ -453789,7 +481760,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:url "http://thegleelab.org/STALLION" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, edam:topic_0659, @@ -453803,7 +481774,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:url "http://mir.rnanut.net/stam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -453826,7 +481797,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a biotools:primaryContact "Shaun Mahony" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -453843,7 +481814,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:url "http://www.compbio.dundee.ac.uk/software.html#3Dstructure" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0654, @@ -453862,7 +481833,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:url "http://kiwi.cs.dal.ca/Software/index.php/STAMP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -453878,7 +481849,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -453900,14 +481871,14 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168 ; @@ -453927,38 +481898,38 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622 ; @@ -453977,7 +481948,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -454001,7 +481972,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a biotools:primaryContact "Benedikt Zacher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -454020,7 +481991,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a biotools:primaryContact "Jan Motl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -454039,7 +482010,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a biotools:primaryContact "Jeremy Leipzig" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0821, edam:topic_3172, @@ -454056,7 +482027,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:url "https://github.com/LewisLabUCSD/StanDep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3365, @@ -454082,7 +482053,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a biotools:primaryContact "Catherine A. Ball" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0218, @@ -454107,7 +482078,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:url "http://stanza.run/bio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0593, @@ -454129,7 +482100,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a biotools:primaryContact "STAP Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308 ; @@ -454152,7 +482123,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a biotools:primaryContact "rna-styar team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0114, edam:topic_3170 ; sc:description "STAR-Fusion, a method that is both fast and accurate in identifying fusion transcripts from RNA-Seq data" ; @@ -454161,7 +482132,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:url "https://github.com/STAR-Fusion/STAR-Fusion" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3071, @@ -454180,7 +482151,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a biotools:primaryContact "Wei Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, edam:topic_3315, @@ -454196,14 +482167,14 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3523, @@ -454222,7 +482193,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a biotools:primaryContact "Juliane Siebourg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0154, @@ -454243,8 +482214,28 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:softwareHelp ; sc:url "http://starbase.sysu.edu.cn/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_2269, + edam:topic_3168 ; + sc:citation ; + sc:description "BEAST 2 based package for Bayesian multispecies coalescent (MSC) analyses using efficient and parallelised MCMC operators." ; + sc:featureList edam:operation_0544, + edam:operation_0547, + edam:operation_0551, + edam:operation_2238 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "StarBeast3" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/rbouckaert/starbeast3" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0204, @@ -454263,7 +482254,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a biotools:primaryContact "Claudia Cava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0659, @@ -454279,8 +482270,20 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:url "https://github.com/LosicLab/STARChip" ; biotools:primaryContact "Nicholas K Akers" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "A method for the integration of spatial information in spatial transcriptomics data clustering." ; + sc:featureList edam:operation_0313 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Stardust" ; + sc:softwareHelp ; + sc:softwareVersion "1.0" ; + sc:url "https://github.com/InfOmics/stardust" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2269, @@ -454295,7 +482298,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:url "http://www.cs.cmu.edu/~ckingsf/software/starfish/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0140, edam:topic_0154, @@ -454313,7 +482316,7 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:url "https://github.com/ntcockroft/STarFish" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -454331,8 +482334,31 @@ Protein-protein interactions (PPIs) are involved with most cellular activities a sc:url "https://stargazer.gs.washington.edu/stargazerweb/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_3298, + edam:topic_3336, + edam:topic_3373 ; + sc:citation , + "pmcid:PMC9197487", + "pubmed:35711912" ; + sc:description "A Hybrid Intelligence Platform for Drug Target Prioritization and Digital Drug Repositioning Using Streamlit." ; + sc:featureList edam:operation_3226, + edam:operation_3436, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "StarGazer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/AstraZeneca/StarGazer" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3170, edam:topic_3308, @@ -454350,7 +482376,7 @@ starmap is a web-based VR-enabled tool which combines a 3D scatter plot with sta sc:url "https://holab-hku.github.io/starmapVR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3125, @@ -454374,7 +482400,7 @@ starmap is a web-based VR-enabled tool which combines a 3D scatter plot with sta biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0736, @@ -454387,10 +482413,10 @@ starmap is a web-based VR-enabled tool which combines a 3D scatter plot with sta "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://crdd.osdd.net/raghava/starpdb/index.php" . + sc:url "http://webs.iiitd.edu.in/raghava/starpdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071, @@ -454409,7 +482435,7 @@ starmap is a web-based VR-enabled tool which combines a 3D scatter plot with sta biotools:primaryContact "Benedikt Zacher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0097, edam:topic_3169, edam:topic_3170, @@ -454435,7 +482461,7 @@ starrpeaker --prefix --chromsize -- sc:url "http://github.com/gersteinlab/starrpeaker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0610, @@ -454457,7 +482483,7 @@ starrpeaker --prefix --chromsize -- sc:url "https://github.com/GatorSense/STARSEED" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """Prepare the input directory for 'ASA3P', creating automatically a _config.xls_ file from the reads provided. Requires one or more reference files (.gbk recommended) and a directory with FASTQ files (.fq or .fastq, gzipped). Metadata can be supplied via command line or with a JSON file.""" ; @@ -454465,7 +482491,7 @@ Metadata can be supplied via command line or with a JSON file.""" ; sc:url "http://github.com/quadram-institute-bioscience/start-asap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0593, edam:topic_0736, @@ -454490,7 +482516,7 @@ The database of hydrogen/deuterium exchange data on protein folding and stabilit sc:url "http://start2fold.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0622, edam:topic_3125, @@ -454505,14 +482531,13 @@ The database of hydrogen/deuterium exchange data on protein folding and stabilit a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation ; @@ -454528,7 +482553,7 @@ The database of hydrogen/deuterium exchange data on protein folding and stabilit sc:url "http://bioinformatics.psb.ugent.be/software/details/StartScan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3068 ; @@ -454541,7 +482566,7 @@ The database of hydrogen/deuterium exchange data on protein folding and stabilit sc:url "http://www.biosoft.com/w/stat200.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -454563,7 +482588,7 @@ The database of hydrogen/deuterium exchange data on protein folding and stabilit sc:url "https://webs.iiitd.edu.in/raghava/stat3in/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation , "pmcid:PMC7540394", @@ -454579,14 +482604,14 @@ statcheck is a free, open source R package that can be used to automatically ext a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1636" ; - sc:name "Heat map" ; - sc:sameAs "http://edamontology.org/data_1636" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1636" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Heat map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3366, @@ -454607,7 +482632,7 @@ statcheck is a free, open source R package that can be used to automatically ext "Patricia Sebastián-León" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, edam:topic_3169, @@ -454625,7 +482650,7 @@ StatHub - consistent rules-based chromatin state annotations across Roadmap, ENC sc:url "http://www.statehub.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -454636,8 +482661,28 @@ StatHub - consistent rules-based chromatin state annotations across Roadmap, ENC sc:operatingSystem "Linux" ; sc:url "http://bio.cs.washington.edu/software/alignment_quality" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0621, + edam:topic_3520 ; + sc:citation , + "pubmed:34600153" ; + sc:description "Systematic integration and evaluation of statistical approaches for detecting differential expression in label-free quantitative proteomics." ; + sc:featureList edam:operation_3557, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "StatsPro" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/YanglabWCH/StatsPro/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0605, edam:topic_2269, edam:topic_3303 ; @@ -454655,7 +482700,7 @@ StatTag is a free plug-in for conducting reproducible research and creating dyna sc:url "https://github.com/StatTag/StatTag" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3172, @@ -454677,7 +482722,7 @@ StatTag is a free plug-in for conducting reproducible research and creating dyna biotools:primaryContact "Hemi Luan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -454692,8 +482737,31 @@ StatTag is a free plug-in for conducting reproducible research and creating dyna sc:softwareHelp ; sc:url "http://www.stavrox.com/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3170, + edam:topic_3308, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9055051", + "pubmed:35487922" ; + sc:description "Reference-free cell type deconvolution of multi-cellular pixel-resolution spatially resolved transcriptomics data." ; + sc:featureList edam:operation_0313, + edam:operation_0314, + edam:operation_3629 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "STdeconvolve" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/JEFworks-Lab/STdeconvolve" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -454712,7 +482780,7 @@ StatTag is a free plug-in for conducting reproducible research and creating dyna sc:url "https://steadycellphenotype.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0781, @@ -454730,8 +482798,52 @@ StatTag is a free plug-in for conducting reproducible research and creating dyna biotools:primaryContact "Cindy Santander", "Philippe Gambron" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_2830, + edam:topic_3174, + edam:topic_3293, + edam:topic_3837 ; + sc:citation , + "pmcid:PMC8785982", + "pubmed:35083165" ; + sc:description "Clustering and Serotyping of Shigatoxin producing E. coli (STEC) using genomic cluster specific markers" ; + sc:featureList edam:operation_0525, + edam:operation_0553, + edam:operation_2421, + edam:operation_3227, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "STECFinder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/LanLab/STECFinder" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2229, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9154219", + "pubmed:35435214" ; + sc:description "Fast 2D Template Detection with Accurate Orientation Estimation." ; + sc:featureList edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Steer nDetect" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Biomedical-Imaging-Group/Steer-n-Detect" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3068, @@ -454746,7 +482858,7 @@ StegArmory is an image-based steganography utility that can be used to embed and sc:url "https://github.com/MarkoH17/StegArmory" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3056, @@ -454764,7 +482876,7 @@ StegArmory is an image-based steganography utility that can be used to embed and biotools:primaryContact "Daniel Schlauch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, @@ -454782,7 +482894,7 @@ StegArmory is an image-based steganography utility that can be used to embed and sc:url "http://fraenkel.mit.edu/steinernet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, edam:topic_2269 ; @@ -454799,7 +482911,7 @@ Species tree estimation is frequently based on phylogenomic approaches that use sc:url "https://islamazhar.github.io/STELAR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3572 ; @@ -454816,7 +482928,7 @@ Species tree estimation is frequently based on phylogenomic approaches that use sc:url "http://www.seqan.de/projects/stellar/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -454833,14 +482945,12 @@ Species tree estimation is frequently based on phylogenomic approaches that use a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3307, edam:topic_3344 ; @@ -454861,10 +482971,9 @@ Species tree estimation is frequently based on phylogenomic approaches that use a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3307, @@ -454886,7 +482995,7 @@ Species tree estimation is frequently based on phylogenomic approaches that use biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3335, edam:topic_3421, @@ -454910,7 +483019,7 @@ Species tree estimation is frequently based on phylogenomic approaches that use sc:url "https://bzxzmu.shinyapps.io/STEMI-with-Hyperuricemia-intrahospital-mortality/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -454932,7 +483041,7 @@ Species tree estimation is frequently based on phylogenomic approaches that use sc:url "http://pughlab.mbg.cornell.edu/stencil/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0798, edam:topic_3299, @@ -454948,7 +483057,7 @@ Species tree estimation is frequently based on phylogenomic approaches that use biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -454961,7 +483070,7 @@ Species tree estimation is frequently based on phylogenomic approaches that use sc:url "http://bioinfo.cs.technion.ac.il/stepgram/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3512, @@ -454980,7 +483089,7 @@ Species tree estimation is frequently based on phylogenomic approaches that use biotools:primaryContact "Yuanyuan Xiao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -454995,7 +483104,7 @@ Species tree estimation is frequently based on phylogenomic approaches that use sc:url "http://cbb.pnnl.gov/portal/software/stepp.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -455013,7 +483122,7 @@ Species tree estimation is frequently based on phylogenomic approaches that use biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640 ; @@ -455031,7 +483140,7 @@ Species tree estimation is frequently based on phylogenomic approaches that use biotools:primaryContact "Askar Obulkasim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0130, @@ -455050,7 +483159,7 @@ Visualization in three-dimensional (3D) space is a standard and critical process sc:url "https://github.com/bioinfoDZ/Stereo3D" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -455066,7 +483175,7 @@ Visualization in three-dimensional (3D) space is a standard and critical process biotools:primaryContact "Elena Stavrovskaya" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Workbench" ; sc:applicationSubCategory edam:topic_0154, @@ -455086,7 +483195,7 @@ Visualization in three-dimensional (3D) space is a standard and critical process sc:url "https://github.com/HuanLab/SteroidXtract" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0781, edam:topic_2259, @@ -455106,18 +483215,18 @@ Visualization in three-dimensional (3D) space is a standard and critical process a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2830 ; sc:citation ; @@ -455133,7 +483242,7 @@ Visualization in three-dimensional (3D) space is a standard and critical process sc:url "https://github.com/Benjamin-Vincent-Lab/stig" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0798, edam:topic_3382 ; sc:citation , @@ -455148,7 +483257,7 @@ With a simple system of menus, you can design and run tests to assess perceptual sc:url "http://www.stimuliapp.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -455178,7 +483287,7 @@ With a simple system of menus, you can design and run tests to assess perceptual biotools:primaryContact "Neshich G." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -455199,7 +483308,7 @@ With a simple system of menus, you can design and run tests to assess perceptual biotools:primaryContact "Alberto MR Dávila" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3315, edam:topic_3384, @@ -455218,38 +483327,38 @@ This work demonstrates how computational and physical modelling of the positron a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0990" ; - sc:name "Compound name" ; - sc:sameAs "http://edamontology.org/data_0990" ], + sc:additionalType "http://edamontology.org/data_2299" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ], + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_3468" ; + sc:name "Small molecule structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ], + sc:additionalType "http://edamontology.org/data_1009" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1009" ; - sc:name "Protein name" ; - sc:sameAs "http://edamontology.org/data_1009" ] ; + sc:additionalType "http://edamontology.org/data_0990" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Compound name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2042" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Evidence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2042" ; - sc:name "Evidence" ; - sc:sameAs "http://edamontology.org/data_2042" ], + sc:additionalType "http://edamontology.org/data_0954" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database cross-mapping" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0954" ; - sc:name "Database cross-mapping" ; - sc:sameAs "http://edamontology.org/data_0954" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal", "Web application" ; @@ -455293,14 +483402,14 @@ This work demonstrates how computational and physical modelling of the positron a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2958" ; - sc:name "Nucleic acid melting curve" ; - sc:sameAs "http://edamontology.org/data_2958" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2958" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid melting curve" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654 ; sc:author "Eivind Hovig", @@ -455326,8 +483435,31 @@ This work demonstrates how computational and physical modelling of the positron sc:url "http://stitchprofiles.uio.no/" ; biotools:primaryContact "Eivind Hovig" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0621, + edam:topic_2830, + edam:topic_3168, + edam:topic_3512 ; + sc:citation , + "pubmed:35325179" ; + sc:description "Stitching coding TCR nucleotide sequences from V/J/CDR3 information." ; + sc:featureList edam:operation_0232, + edam:operation_3192, + edam:operation_3196, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "Stitchr" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/JamieHeather/stitchr" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Suite", "Web application", @@ -455352,7 +483484,7 @@ St. Jude Cloud is a pediatric catastrophic disease data sharing ecosystem create sc:url "https://www.stjude.cloud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0196, @@ -455366,7 +483498,7 @@ St. Jude Cloud is a pediatric catastrophic disease data sharing ecosystem create biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2229, edam:topic_2640, @@ -455384,7 +483516,7 @@ a downstream analysis toolkit for Spatial Transcriptomics data.""" ; sc:url "https://stlearn.readthedocs.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -455399,7 +483531,7 @@ a downstream analysis toolkit for Spatial Transcriptomics data.""" ; sc:url "https://github.com/Ejmric/STMF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610 ; sc:citation ; sc:description "Exploratory movement analysis and report building with R package stmove | Abstract Background As GPS tags and data loggers have become lighter, cheaper, and longer-lasting, there has been a growing influx of data on animal movement. Simultaneously, methods of analyses and software to apply such methods to movement data have expanded dramatically. Even so, for many interdisciplinary researchers and managers without familiarity with the field of movement ecology and the open-source tools that have been developed, the analysis of movement data has remained an overwhelming challenge. Description Here we present stmove , an R package designed to take individual relocation data and generate a visually rich report containing a set of preliminary results that ecologists and managers can use to guide further exploration of their data" ; @@ -455407,8 +483539,32 @@ a downstream analysis toolkit for Spatial Transcriptomics data.""" ; sc:name "stmove" ; sc:url "https://github.com/dpseidel/stmove" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_3050, + edam:topic_3299, + edam:topic_3500, + edam:topic_3697, + edam:topic_3855 ; + sc:citation , + "pmcid:PMC8629388", + "pubmed:34780461" ; + sc:description "Welcome to Stoat, the environmental data annotation tool, a data fusion engine design to annotate biodiversity records with environmental remote sensing products. This tutorial provides a step-by-step guide to using the tools to explore, upload, manage, annotate, and download data." ; + sc:featureList edam:operation_2422, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "STOAT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://mol.org/stoat" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2259, edam:topic_2269, @@ -455424,7 +483580,7 @@ a downstream analysis toolkit for Spatial Transcriptomics data.""" ; sc:url "http://sourceforge.net/p/stochdecomp/wiki/Home/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -455442,7 +483598,7 @@ a downstream analysis toolkit for Spatial Transcriptomics data.""" ; sc:url "https://CRAN.R-project.org/package=stochprofML" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0160, @@ -455458,7 +483614,7 @@ a downstream analysis toolkit for Spatial Transcriptomics data.""" ; sc:url "http://bs.ipm.ir/softwares/ston/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0749, @@ -455477,7 +483633,7 @@ StoneMod is the database of kidney stone (nephrolithiasis or urolithiasis) modul sc:url "https://www.stonemod.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0218, edam:topic_2269, @@ -455495,7 +483651,7 @@ StoneMod is the database of kidney stone (nephrolithiasis or urolithiasis) modul sc:url "https://huggingface.co/stonkgs/stonkgs-150k" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2258, edam:topic_2840, edam:topic_3343, @@ -455509,7 +483665,7 @@ The STopTox app is a fast, reliable, and user-friendly tool available as an alte sc:url "https://stoptox.mml.unc.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0621, edam:topic_3050, @@ -455528,7 +483684,7 @@ Teleost fishes show the most outstanding reproductive diversity of all vertebrat sc:url "http://www.storefish.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -455543,7 +483699,7 @@ Teleost fishes show the most outstanding reproductive diversity of all vertebrat sc:url "http://www.biw.kuleuven.be/logt/STORM.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, @@ -455563,7 +483719,7 @@ Teleost fishes show the most outstanding reproductive diversity of all vertebrat biotools:primaryContact "Rengasayee Veeraraghavan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3384, edam:topic_3474 ; @@ -455577,7 +483733,7 @@ Teleost fishes show the most outstanding reproductive diversity of all vertebrat sc:url "https://github.com/yoterel/STORM-Net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3303, edam:topic_3810, @@ -455597,14 +483753,14 @@ This repository provides code for Valeri, Collins, et al. 2019.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_3747" ; + sc:name "Protein report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_3747" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -455626,7 +483782,7 @@ This repository provides code for Valeri, Collins, et al. 2019.""" ; sc:url "http://tppms.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170, @@ -455644,7 +483800,7 @@ This repository provides code for Valeri, Collins, et al. 2019.""" ; biotools:primaryContact "Rui Jiang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3299, @@ -455665,7 +483821,7 @@ This repository provides code for Valeri, Collins, et al. 2019.""" ; biotools:primaryContact "Ilya Y. Zhbannikov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602 ; sc:citation , "pubmed:31449021" ; @@ -455674,7 +483830,7 @@ This repository provides code for Valeri, Collins, et al. 2019.""" ; sc:url "https://github.com/ashleylqx/STRA-Net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3300, @@ -455693,7 +483849,7 @@ This repository provides code for Valeri, Collins, et al. 2019.""" ; biotools:primaryContact "D. Thurtle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -455719,7 +483875,7 @@ This repository provides code for Valeri, Collins, et al. 2019.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -455738,24 +483894,44 @@ StrainFLAIR (STRAIN-level proFiLing using vArIation gRaph) is a tool for strain sc:name "StrainFLAIR" ; sc:url "http://github.com/kevsilva/StrainFLAIR" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3174, + edam:topic_3277, + edam:topic_3697, + edam:topic_3837 ; + sc:citation , + "pmcid:PMC8900328", + "pubmed:35255937" ; + sc:description "A toolkit to track and characterize low-abundance strains in complex microbial communities." ; + sc:featureList edam:operation_3227, + edam:operation_3472, + edam:operation_3840 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "StrainGE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/broadinstitute/strainge" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2912" ; - sc:name "Strain accession" ; - sc:sameAs "http://edamontology.org/data_2912" ] ; + sc:additionalType "http://edamontology.org/data_2912" ; + sc:name "Strain accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2912" ; - sc:name "Strain accession" ; - sc:sameAs "http://edamontology.org/data_2912" ], + sc:additionalType "http://edamontology.org/data_2912" ; + sc:name "Strain accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3473 ; @@ -455770,8 +483946,78 @@ StrainFLAIR (STRAIN-level proFiLing using vArIation gRaph) is a tool for strain sc:softwareHelp ; sc:url "http://www.straininfo.net/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0622, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC8771625", + "pubmed:35057847" ; + sc:description "Full-length de novo viral haplotype reconstruction from noisy long reads." ; + sc:featureList edam:operation_0487, + edam:operation_0524, + edam:operation_0525, + edam:operation_3192, + edam:operation_3644 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Strainline" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/HaploKit/Strainline" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0632, + edam:topic_2885, + edam:topic_3174, + edam:topic_3697, + edam:topic_3837 ; + sc:citation ; + sc:description "Accurate strain-level microbiome composition analysis from short reads." ; + sc:featureList edam:operation_3196, + edam:operation_3435, + edam:operation_3472 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "StrainScan" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/liaoherui/strainScan" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0196, + edam:topic_3174, + edam:topic_3697, + edam:topic_3837 ; + sc:citation , + "pubmed:35776122" ; + sc:description "StrainXpress is a de novo assembly method which base on overlap-layout-consensus (OLC) paradigm and can fast and accurately assemble high complexity metagenome sequencing data at strain resolution." ; + sc:featureList edam:operation_0310, + edam:operation_3219, + edam:operation_3472 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "StrainXpress" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/HaploKit/StrainXpress" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0625, @@ -455790,7 +484036,7 @@ STRait Razor Online (SRO) serves as the user-interface (UI) for analyzing sequen sc:url "https://www.unthsc.edu/straitrazor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, @@ -455815,7 +484061,7 @@ STRait Razor Online (SRO) serves as the user-interface (UI) for analyzing sequen "Strand NGS Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0097, @@ -455837,7 +484083,7 @@ STRait Razor Online (SRO) serves as the user-interface (UI) for analyzing sequen biotools:primaryContact "Christoph Gille" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, @@ -455859,7 +484105,7 @@ STRait Razor Online (SRO) serves as the user-interface (UI) for analyzing sequen biotools:primaryContact "Liang Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3512 ; @@ -455872,7 +484118,7 @@ STRait Razor Online (SRO) serves as the user-interface (UI) for analyzing sequen sc:url "https://github.com/ruolin/strawberry" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -455891,7 +484137,7 @@ STRait Razor Online (SRO) serves as the user-interface (UI) for analyzing sequen biotools:primaryContact "Denis C. Bauer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3071 ; @@ -455909,7 +484155,7 @@ STRait Razor Online (SRO) serves as the user-interface (UI) for analyzing sequen biotools:primaryContact "Martin Morgan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation "pubmed:22581179" ; @@ -455922,7 +484168,7 @@ STRait Razor Online (SRO) serves as the user-interface (UI) for analyzing sequen biotools:primaryContact "Christopher T. Saunders" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, @@ -455941,7 +484187,7 @@ STRait Razor Online (SRO) serves as the user-interface (UI) for analyzing sequen biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3070, edam:topic_3336, @@ -455956,7 +484202,7 @@ STRait Razor Online (SRO) serves as the user-interface (UI) for analyzing sequen sc:url "http://www.pharmbioinf.uni-freiburg.de/streptomedb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2885, @@ -455978,22 +484224,18 @@ Dashnow, Harriet, Monkol Lek, Belinda Phipson, Andreas Halman, Simon Sadedin, An a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -456023,7 +484265,7 @@ Dashnow, Harriet, Monkol Lek, Belinda Phipson, Andreas Halman, Simon Sadedin, An sc:url "http://emboss.open-bio.org/rel/rel6/apps/stretcher.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -456039,23 +484281,22 @@ Dashnow, Harriet, Monkol Lek, Belinda Phipson, Andreas Halman, Simon Sadedin, An a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "EMBOSS", - "Web Production" ; - sc:citation ; + "Job Dispatcher" ; + sc:citation , + ; sc:description "Improved version of the Needleman-Wunsch algorithm that allows rapid global alignment of two larger sequences." ; sc:featureList edam:operation_0491, edam:operation_0496 ; - sc:name "stretcher (EBI)" ; + sc:name "Stretcher (EBI)" ; sc:operatingSystem "Linux", "Mac", "Windows" ; @@ -456064,10 +484305,10 @@ Dashnow, Harriet, Monkol Lek, Belinda Phipson, Andreas Halman, Simon Sadedin, An ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/psa/emboss_stretcher/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -456079,7 +484320,7 @@ Dashnow, Harriet, Monkol Lek, Belinda Phipson, Andreas Halman, Simon Sadedin, An sc:url "http://genius.embnet.dkfz-heidelberg.de/menu/hobit/embdoc/stretcher.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0654, @@ -456099,18 +484340,18 @@ Dashnow, Harriet, Monkol Lek, Belinda Phipson, Andreas Halman, Simon Sadedin, An a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -456129,7 +484370,7 @@ Dashnow, Harriet, Monkol Lek, Belinda Phipson, Andreas Halman, Simon Sadedin, An biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_1317, @@ -456148,7 +484389,7 @@ Dashnow, Harriet, Monkol Lek, Belinda Phipson, Andreas Halman, Simon Sadedin, An sc:url "http://webclu.bio.wzw.tum.de/stride/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2269, @@ -456162,7 +484403,7 @@ Dashnow, Harriet, Monkol Lek, Belinda Phipson, Andreas Halman, Simon Sadedin, An sc:url "https://github.com/ythuang0522/StriDe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -456180,7 +484421,7 @@ Dashnow, Harriet, Monkol Lek, Belinda Phipson, Andreas Halman, Simon Sadedin, An sc:url "https://github.com/DongqingSun96/STRIDE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0152, edam:topic_0153, edam:topic_0154, @@ -456197,7 +484438,7 @@ STRIDER, Steric hindrance estimater, is a web server which can estimate and repo sc:url "http://www.iith.ac.in/strider/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0097, @@ -456212,7 +484453,7 @@ STRIDER, Steric hindrance estimater, is a web server which can estimate and repo sc:url "http://www.tcoffee.org/Projects/strike/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128 ; @@ -456228,7 +484469,7 @@ STRIDER, Steric hindrance estimater, is a web server which can estimate and repo sc:url "http://string-db.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0128 ; sc:citation , @@ -456249,7 +484490,7 @@ STRIDER, Steric hindrance estimater, is a web server which can estimate and repo "Lars Juhl Jensen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0078, @@ -456270,7 +484511,7 @@ STRIDER, Steric hindrance estimater, is a web server which can estimate and repo biotools:primaryContact "Alexander Roth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -456286,7 +484527,7 @@ STRIDER, Steric hindrance estimater, is a web server which can estimate and repo sc:url "https://cran.r-project.org/web/packages/stringgaussnet/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2269, @@ -456300,7 +484541,7 @@ STRIDER, Steric hindrance estimater, is a web server which can estimate and repo sc:url "http://www.cs.tau.ac.il/~bchor/StringGraph/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, @@ -456318,7 +484559,7 @@ STRIDER, Steric hindrance estimater, is a web server which can estimate and repo biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308 ; @@ -456335,10 +484576,10 @@ STRIDER, Steric hindrance estimater, is a web server which can estimate and repo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_3462" ; + sc:name "Nucleic acid sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Database portal", "Desktop application" ; @@ -456346,8 +484587,9 @@ STRIDER, Steric hindrance estimater, is a web server which can estimate and repo edam:topic_2533, edam:topic_2885, edam:topic_3071 ; - sc:citation ; - sc:description "A graphical application for enhanced genotyping of pathogenic short tandem repeats in sequencing data" ; + sc:citation , + "pubmed:35395114" ; + sc:description "A graphical application for detecting known pathogenic short tandem repeats in sequencing data" ; sc:featureList edam:operation_0564, edam:operation_3196 ; sc:isAccessibleForFree true ; @@ -456360,7 +484602,7 @@ STRIDER, Steric hindrance estimater, is a web server which can estimate and repo sc:url "https://stripy.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "STRling (pronounced like “sterling”) is a method to detect large STR expansions from short-read sequencing data. It is capable of detecting novel STR expansions, that is expansions where there is no STR in the reference genome at that position (or a different repeat unit from what is in the reference). It can also detect STR expansions that are annotated in the reference genome. STRling uses kmer counting to recover mis-mapped STR reads. It then uses soft-clipped reads to precisely discover the position of the STR expansion in the reference genome." ; sc:featureList edam:operation_0379 ; sc:name "STRling" ; @@ -456368,7 +484610,7 @@ STRIDER, Steric hindrance estimater, is a web server which can estimate and repo sc:url "https://github.com/quinlan-lab/STRling" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099 ; sc:citation ; @@ -456385,7 +484627,7 @@ STRIDER, Steric hindrance estimater, is a web server which can estimate and repo sc:url "http://www.cs.bgu.ac.il/~vaksler/STRMS.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -456402,7 +484644,7 @@ A repository for generating strobemers and evaluation.""" ; sc:url "https://github.com/ksahlin/strobemers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3063, @@ -456421,7 +484663,7 @@ A repository for generating strobemers and evaluation.""" ; biotools:primaryContact "Sadiq Saleh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3168, @@ -456443,7 +484685,7 @@ A repository for generating strobemers and evaluation.""" ; sc:url "https://github.com/chrisquince/STRONG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0749, edam:topic_2259, @@ -456464,7 +484706,7 @@ StrongestPath is a Cytoscape 3 application that enables to look for one or more sc:url "http://github.com/zmousavian/StrongestPath" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3673 ; @@ -456477,7 +484719,7 @@ StrongestPath is a Cytoscape 3 application that enables to look for one or more biotools:primaryContact "Haixu Tang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0632, @@ -456498,7 +484740,7 @@ StrongestPath is a Cytoscape 3 application that enables to look for one or more sc:url "https://github.com/unique379r/strspy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2269, edam:topic_3172, @@ -456523,8 +484765,28 @@ An extensive set of data (pre-)processing and analysis methods and tools for met sc:name "struct" ; sc:url "http://bioconductor.org/packages/struct" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_2269, + edam:topic_3056 ; + sc:citation , + "pmcid:PMC8963280", + "pubmed:35080599" ; + sc:description "A Rcpp package for ancestry profile and population structure inference from F4 statistics." ; + sc:featureList edam:operation_0337, + edam:operation_3658 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Struct-f4" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bitbucket.org/plibradosanz/structf4/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0128, edam:topic_0154, @@ -456544,7 +484806,7 @@ Struct2Graph uses two graph convolutional networks (GCNs) with weight sharing, a sc:url "https://github.com/baranwa2/Struct2Graph" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -456567,7 +484829,7 @@ Struct2Graph uses two graph convolutional networks (GCNs) with weight sharing, a biotools:primaryContact "Struct2Net Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -456584,7 +484846,7 @@ Struct2Graph uses two graph convolutional networks (GCNs) with weight sharing, a sc:url "http://www.zbh.uni-hamburg.de/?id=271" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0769 ; sc:citation , @@ -456598,7 +484860,7 @@ Information visualization research has developed powerful systems that enable us sc:url "https://www.lri.fr/~fanis/StructGraphics/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -456618,12 +484880,54 @@ Information visualization research has developed powerful systems that enable us sc:url "http://dgkontopoulos.io/Structuprint/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0166, + edam:topic_0736, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC9319604", + "pubmed:35881481" ; + sc:description "A web server for exploring a database of and generating protein structural features from human cell lines and tissues." ; + sc:featureList edam:operation_0303, + edam:operation_0570, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "structural signatures" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://structural-server.kinametrix.com/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; - sc:citation "pmcid:PMC1461096", - "pubmed:10835412" ; + sc:citation , + , + , + , + , + "pmcid:PMC1461096", + "pmcid:PMC1462648", + "pmcid:PMC1974779", + "pmcid:PMC3518025", + "pubmed:10835412", + "pubmed:12930761", + "pubmed:15969739", + "pubmed:18784791", + "pubmed:21564903" ; sc:description "The program structureis a free software package for using multi-locus genotype data to investigate population structure. Its uses include inferring the presence of distinct populations, assigning individuals to populations, studying hybrid zones, identifying migrants and admixed individuals, and estimating population allele frequencies in situations where many individuals are migrants or admixed." ; sc:featureList edam:operation_3197 ; sc:license "Not licensed" ; @@ -456633,7 +484937,7 @@ Information visualization research has developed powerful systems that enable us sc:url "http://web.stanford.edu/group/pritchardlab/structure.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0166, @@ -456652,8 +484956,34 @@ Information visualization research has developed powerful systems that enable us biotools:primaryContact "Miguel Vazquez", "Support" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2909" ; + sc:name "Organism name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0128, + edam:topic_0199, + edam:topic_0601, + edam:topic_2640 ; + sc:citation , + "pubmed:35751824" ; + sc:description "Annotating Cancer-Related Variants at Protein-Protein Interface with Structure-PPi." ; + sc:featureList edam:operation_0417, + edam:operation_0495, + edam:operation_3226, + edam:operation_3227, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:name "Structure-PPi" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://rbbt.bsc.es/StructurePPI/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_1317 ; sc:citation ; @@ -456672,14 +485002,14 @@ Information visualization research has developed powerful systems that enable us a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1461" ; - sc:name "Protein-ligand complex" ; - sc:sameAs "http://edamontology.org/data_1461" ] ; + sc:additionalType "http://edamontology.org/data_1461" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein-ligand complex" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2087" ; - sc:name "Molecular property" ; - sc:sameAs "http://edamontology.org/data_2087" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2087" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Molecular property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3332, @@ -456695,7 +485025,7 @@ Information visualization research has developed powerful systems that enable us sc:url "http://proteinsplus.zbh.uni-hamburg.de/#structureprofiler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -456710,7 +485040,7 @@ Information visualization research has developed powerful systems that enable us sc:url "http://www.sailing.cs.cmu.edu/main/?page_id=483" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0099, @@ -456727,7 +485057,7 @@ Information visualization research has developed powerful systems that enable us sc:url "https://binkley2.ncifcrf.gov/users/bshapiro/structurelab/structureLab.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Library" ; @@ -456751,7 +485081,7 @@ Studying biomolecular interactions is a crucial but challenging task. Due to the sc:url "http://compbio.utep.edu/static/downloads/script-for-munipulation2.zip" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_2885, @@ -456773,7 +485103,7 @@ StructuRly is an R package containing a shiny application to produce detailed an sc:url "https://nicocriscuolo.shinyapps.io/StructuRly/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3569 ; @@ -456792,8 +485122,33 @@ StructuRly is an R package containing a shiny application to produce detailed an sc:url "https://cran.r-project.org/web/packages/strum/index.html" ; biotools:primaryContact . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_3063, + edam:topic_3175, + edam:topic_3325, + edam:topic_3574, + edam:topic_3958 ; + sc:citation ; + sc:description "Method that predicts the pathogenicity of deletions and duplications that affect one or more exons." ; + sc:featureList edam:operation_2238, + edam:operation_3226 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "StrVCTVRE" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:url "https://strvctvre.berkeley.edu/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -456807,7 +485162,7 @@ StructuRly is an R package containing a shiny application to produce detailed an sc:url "http://athena.bioc.uvic.ca/tools/STS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3360, @@ -456823,7 +485178,7 @@ StructuRly is an R package containing a shiny application to produce detailed an sc:url "http://www.stse-software.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -456847,18 +485202,15 @@ StructuRly is an R package containing a shiny application to produce detailed an a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -456887,8 +485239,30 @@ StructuRly is an R package containing a shiny application to produce detailed an sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/stssearch.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3384, + edam:topic_3397, + edam:topic_3421, + edam:topic_3444, + edam:topic_3452 ; + sc:citation , + "pmcid:PMC8782222", + "pubmed:35064372" ; + sc:description "An Open Science Cloud-Based Medical Imaging Analysis Platform." ; + sc:featureList edam:operation_0337, + edam:operation_1812, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:name "Studierfenster" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://studierfenster.icg.tugraz.at" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3304, edam:topic_3474 ; @@ -456901,7 +485275,7 @@ Prediction settings with multiple studies have become increasingly common. Ensem sc:url "https://github.com/gloewing/studyStrap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3170, edam:topic_3308, @@ -456922,7 +485296,7 @@ Welcome to the STUtility web site. STUtility is an R-package with the goal of pr sc:url "https://ludvigla.github.io/STUtility_web_site/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0593, @@ -456942,7 +485316,7 @@ Welcome to the STUtility web site. STUtility is an R-package with the goal of pr biotools:primaryContact "Tobias Henn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3053, @@ -456956,8 +485330,22 @@ Welcome to the STUtility web site. STUtility is an R-package with the goal of pr sc:softwareHelp ; sc:url "http://www-rcf.usc.edu/~fsun/Programs/SubGSEWebPages/SubGSEMain.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:citation , + "pubmed:26207919" ; + sc:description "Signaling-pathway impact analysis (SPIA) is one such method and combines both the classical enrichment analysis and the actual perturbation on a given pathway. Because this method focuses on a single pathway, its resolution generally is not very high because the differentially expressed genes may be enriched in a local region of the pathway. In the present work, to identify cancer-related pathways, we incorporated a recent subpathway analysis method into the SPIA method to form the “sub-SPIA method.”" ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "sub-SPIA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/eshinesimida/subpathway-analysis" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0780 ; @@ -456985,7 +485373,7 @@ Welcome to the STUtility web site. STUtility is an R-package with the goal of pr "Sandra Tanz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -457000,8 +485388,53 @@ Welcome to the STUtility web site. STUtility is an R-package with the goal of pr sc:softwareHelp ; sc:url "http://subacon.plantenergy.uwa.edu.au//SUBAcon.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0769, + edam:topic_2229, + edam:topic_3520 ; + sc:citation , + "pubmed:35732783" ; + sc:description "Integrated workflow for robust spatial proteomics by mass spectrometry." ; + sc:featureList edam:operation_0337, + edam:operation_2489, + edam:operation_3860 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "SubCellBarCode" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://www.subcellbarcode.org" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0121, + edam:topic_0140, + edam:topic_0203, + edam:topic_2229 ; + sc:citation ; + sc:description "SubcellulaRVis simplifies visualization of protein enrichment in subcellular compartments." ; + sc:featureList edam:operation_0337, + edam:operation_2489, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "Other" ; + sc:name "SubcellulaRVis" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/JoWatson2011/subcellularvis" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0140, @@ -457019,7 +485452,7 @@ Welcome to the STUtility web site. STUtility is an R-package with the goal of pr biotools:primaryContact "Pufeng Du" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0108, edam:topic_0749, @@ -457037,7 +485470,7 @@ The SubFeat is an extensive Python-based tool for generating various numerical f sc:url "https://github.com/fazlulhaquejony/SubFeat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3512 ; @@ -457050,7 +485483,7 @@ The SubFeat is an extensive Python-based tool for generating various numerical f sc:url "https://github.com/Kingsford-Group/subgraphquant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2640, edam:topic_3168 ; @@ -457069,7 +485502,7 @@ Model for Identifying Tumor Subclones R Package. sc:url "https://dceg.cancer.gov/tools/analysis/subhmm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168, @@ -457086,7 +485519,7 @@ Model for Identifying Tumor Subclones R Package. biotools:primaryContact "Dr Wei Shi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -457102,7 +485535,7 @@ Model for Identifying Tumor Subclones R Package. sc:url "http://www.mcisb.org/resources/subliminal/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, edam:topic_2640 ; @@ -457120,7 +485553,7 @@ SubMARine is a polynomial-time algorithm that reconstructs cancer evolutionary h sc:url "https://github.com/morrislab/submarine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0199, @@ -457138,8 +485571,27 @@ SubMARine is a polynomial-time algorithm that reconstructs cancer evolutionary h biotools:primaryContact "Johnson N.", "Kuang R." . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0780, + edam:topic_3295, + edam:topic_3299 ; + sc:citation , + "pubmed:35460274" ; + sc:description "A robust allopolyploid subgenome phasing method based on subgenome-specific k-mers." ; + sc:featureList edam:operation_3454, + edam:operation_3472 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SubPhaser" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/zhangrengang/SubPhaser" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -457156,7 +485608,7 @@ SubMARine is a polynomial-time algorithm that reconstructs cancer evolutionary h sc:url "http://bioinfo.ncu.edu.cn/SubPhosPred.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3168, @@ -457179,7 +485631,7 @@ SubMARine is a polynomial-time algorithm that reconstructs cancer evolutionary h biotools:primaryContact "Dr Wei Shi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3382, edam:topic_3520 ; @@ -457196,7 +485648,7 @@ This repository contains the subs2vec module, a number of Python 3.7 scripts and sc:url "https://github.com/jvparidon/subs2vec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -457216,7 +485668,7 @@ This repository contains the subs2vec module, a number of Python 3.7 scripts and "John D. Storey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -457238,7 +485690,7 @@ This repository contains the subs2vec module, a number of Python 3.7 scripts and biotools:primaryContact "The Parkinson Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -457254,8 +485706,31 @@ This repository contains the subs2vec module, a number of Python 3.7 scripts and sc:url "https://www.mathworks.com/matlabcentral/fileexchange/50091-subspaceem-a-fast-maximum-a-posteriori-algorithm-for-cryo-em-single-particle-reconstruction" ; biotools:primaryContact "Nicha Dvornek" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0621, + edam:topic_3293, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC8728116", + "pubmed:34664671" ; + sc:description "The current state of SubtiWiki, the database for the model organism Bacillus subtilis." ; + sc:featureList edam:operation_0435, + edam:operation_1781, + edam:operation_3208 ; + sc:isAccessibleForFree true ; + sc:name "SubtiWiki" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://subtiwiki.uni-goettingen.de/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0659, @@ -457275,7 +485750,7 @@ Subtype-GAN is a cancer subtype framework based on multi-omics profiles. The inp sc:url "https://github.com/haiyang1986/Subtype-GAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -457299,7 +485774,7 @@ A systematic biology tool was developed to prioritize cancer subtype-specific dr sc:url "https://CRAN.R-project.org/package=SubtypeDrug" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0081, @@ -457319,7 +485794,7 @@ A systematic biology tool was developed to prioritize cancer subtype-specific dr biotools:primaryContact "Scott Barlowe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -457333,7 +485808,7 @@ A systematic biology tool was developed to prioritize cancer subtype-specific dr sc:url "http://kiharalab.org/subalignment/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -457353,7 +485828,7 @@ A systematic biology tool was developed to prioritize cancer subtype-specific dr "JianDing Qiu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3315, edam:topic_3379, edam:topic_3419 ; @@ -457369,7 +485844,7 @@ Sudden gains are large and stable improvements in an outcome variable between co sc:url "https://milanwiedemann.shinyapps.io/shinygains/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -457383,8 +485858,30 @@ Sudden gains are large and stable improvements in an outcome variable between co sc:url "https://github.com/genometools/genometools" ; biotools:primaryContact "GenomeTools Forum" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3170, + edam:topic_3308, + edam:topic_3512, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC9194947", + "pubmed:35722206" ; + sc:description "Sufficient principal component regression for pattern discovery in transcriptomic data." ; + sc:featureList edam:operation_2939, + edam:operation_3659, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SuffPCR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/dajmcdon/suffpcr" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -457401,7 +485898,7 @@ Sudden gains are large and stable improvements in an outcome variable between co sc:url "https://github.com/LieberInstitute/SUFI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0122, @@ -457423,8 +485920,29 @@ Sudden gains are large and stable improvements in an outcome variable between co sc:url "https://sugarbind.expasy.org" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0081, + edam:topic_0089, + edam:topic_0102, + edam:topic_3070 ; + sc:citation , + "pmcid:PMC8659005", + "pubmed:34885724" ; + sc:description "A Web-Based Database Search Tool with Editing Glycan Structures." ; + sc:featureList edam:operation_1812, + edam:operation_2421, + edam:operation_3096 ; + sc:isAccessibleForFree true ; + sc:name "SugarDrawer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://glycoinfo.gitlab.io/sugardrawer/sugar-drawer-pages/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, edam:topic_3520 ; @@ -457442,7 +485960,7 @@ SugarPy facilitates the glycan database independent, discovery-driven identifica sc:url "https://github.com/SugarPy/SugarPy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_2269 ; @@ -457458,7 +485976,7 @@ An R package for the SUGS and SUGS VarSel algorithms""" ; sc:url "https://github.com/ococrook/sugsvarsel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -457472,7 +485990,7 @@ An R package for the SUGS and SUGS VarSel algorithms""" ; sc:url "http://compbio.med.wayne.edu/software/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -457487,8 +486005,29 @@ An R package for the SUGS and SUGS VarSel algorithms""" ; sc:softwareHelp ; sc:url "http://bioinfolab.unl.edu/~canderson/SuiteMSA/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_2640, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC9009674", + "pubmed:35377867" ; + sc:description "Selecting the number of mutational signatures through cross-validation." ; + sc:featureList edam:operation_0303, + edam:operation_3227, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SUITOR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/binzhulab/SUITOR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0749, @@ -457503,7 +486042,7 @@ An R package for the SUGS and SUGS VarSel algorithms""" ; sc:url "http://www.evolutionarygenomics.com/ProgramsData/SULDEX/SULDEX.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0176 ; sc:citation ; @@ -457518,7 +486057,7 @@ An R package for the SUGS and SUGS VarSel algorithms""" ; biotools:primaryContact "Philippe B. Wilson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -457536,7 +486075,7 @@ An R package for the SUGS and SUGS VarSel algorithms""" ; biotools:primaryContact "Cao Xiao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3307 ; sc:description "This package defines the BenchDesign and SummarizedBenchmark classes for building, executing, and evaluating benchmark experiments of computational methods. The SummarizedBenchmark class extends the RangedSummarizedExperiment object, and is designed to provide infrastructure to store and compare the results of applying different methods to a shared data set." ; @@ -457554,14 +486093,14 @@ An R package for the SUGS and SUGS VarSel algorithms""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -457580,7 +486119,7 @@ An R package for the SUGS and SUGS VarSel algorithms""" ; biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_0821, @@ -457598,8 +486137,29 @@ Cellular metabolites are generated by a complex network of biochemical reactions sc:name "SUMMER" ; sc:url "http://summer.salk.edu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3295, + edam:topic_3337, + edam:topic_3360, + edam:topic_3517 ; + sc:citation , + "pubmed:35947748" ; + sc:description "A Mendelian randomization interactive server to systematically evaluate the causal effects of risk factors and circulating biomarkers on pan-cancer survival" ; + sc:featureList edam:operation_0224, + edam:operation_3431, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "SUMMER" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://njmu-edu.cn:3838/SUMMER/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -457624,7 +486184,7 @@ Estimating ancestry structure and adjusting allele frequencies for heterogeneous sc:url "http://shiny.clas.ucdenver.edu/Summix" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -457642,7 +486202,7 @@ Estimating ancestry structure and adjusting allele frequencies for heterogeneous biotools:primaryContact "Jian-Ding Qiu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -457665,7 +486225,7 @@ Estimating ancestry structure and adjusting allele frequencies for heterogeneous biotools:primaryContact "Jian Ren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0154, edam:topic_2269, @@ -457680,31 +486240,8 @@ Estimating ancestry structure and adjusting allele frequencies for heterogeneous sc:name "sumrep" ; sc:url "https://github.com/matsengrp/sumrep" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0084, - edam:topic_0154, - edam:topic_2269, - edam:topic_2830 ; - sc:citation , - "pmcid:PMC6838214", - "pubmed:31736960" ; - sc:description """A Summary Statistic Framework for Immune Receptor Repertoire Comparison and Model Validation. - -Summary statistics for repertoires. - -sumrep is a package for summarizing, visualizing, and comparing immune receptor repertoires. It contains dozens of different summary statistics to be applied on various levels of assumptions, from raw query reads to inferred phylogenies, as well as easy and principled ways to plot and compare repertoires. It currently supports the IgH, IgL, IgK, TRA, and TRB loci. - -A summary statistic framework for BCR and TCR repertoires. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/sumrep""" ; - sc:featureList edam:operation_0337, - edam:operation_2428, - edam:operation_3695 ; - sc:name "sumrep_autogenerated" ; - sc:url "https://github.com/matsengrp/sumrep" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -457720,7 +486257,7 @@ A summary statistic framework for BCR and TCR repertoires. sc:url "http://www.jurgott.org/linkage/sumstat.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275 ; sc:citation ; @@ -457733,7 +486270,7 @@ A summary statistic framework for BCR and TCR repertoires. sc:url "http://degradolab.org/suns/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -457749,7 +486286,7 @@ A summary statistic framework for BCR and TCR repertoires. biotools:primaryContact "Mathieu Lemire" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -457770,7 +486307,7 @@ A summary statistic framework for BCR and TCR repertoires. biotools:primaryContact "James Collier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269 ; @@ -457787,7 +486324,7 @@ A summary statistic framework for BCR and TCR repertoires. "Xing Qiu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -457803,7 +486340,7 @@ A summary statistic framework for BCR and TCR repertoires. sc:url "http://edwards.sdsu.edu/superfocus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0128, @@ -457829,8 +486366,30 @@ A summary statistic framework for BCR and TCR repertoires. sc:softwareHelp ; sc:url "https://sites.google.com/view/supercomplex/super-complex-v3-0" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0209, + edam:topic_2258, + edam:topic_2275, + edam:topic_3047, + edam:topic_3474 ; + sc:citation , + "pubmed:35062020" ; + sc:description "Out-of-the-box deep learning prediction of quantum-mechanical partial charges by graph representation and transfer learning." ; + sc:featureList edam:operation_2476, + edam:operation_3891, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "SuperAtomicCharge" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/zjujdj/SuperAtomicCharge" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, @@ -457845,7 +486404,7 @@ A summary statistic framework for BCR and TCR repertoires. sc:url "https://github.com/BelenJM/supeRbaits" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -457871,7 +486430,7 @@ A summary statistic framework for BCR and TCR repertoires. "Stefan Guenther" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0821, edam:topic_3375, @@ -457892,7 +486451,7 @@ Drug metabolism via the cytochrome P450 system has emerged as an important deter sc:url "http://insilico-cyp.charite.de/SuperCYPsPred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0623, @@ -457914,7 +486473,7 @@ Drug metabolism via the cytochrome P450 system has emerged as an important deter biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0199, edam:topic_0622, @@ -457940,7 +486499,7 @@ SuperFreq analyses and filters somatic SNVs and short indels, calls copy numbers sc:url "https://gitlab.wehi.edu.au/flensburg.c/SuperFreqPaper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -457964,7 +486523,7 @@ SuperFreq analyses and filters somatic SNVs and short indels, calls copy numbers sc:url "https://github.com/qlu-lab/SUPERGNOVA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -457978,7 +486537,7 @@ SuperFreq analyses and filters somatic SNVs and short indels, calls copy numbers sc:url "http://tools.proteomecenter.org/wiki/index.php?title=Software:SuperHirn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -457999,7 +486558,7 @@ Code is available by request.""" ; sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=33552964" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -458016,7 +486575,7 @@ Code is available by request.""" ; sc:url "http://bioinformatics.charite.de/superimpose" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -458031,7 +486590,7 @@ Code is available by request.""" ; sc:url "http://www.cs.technion.ac.il/labs/cbl/superlink/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0153, @@ -458055,22 +486614,18 @@ Code is available by request.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ], + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -458100,7 +486655,7 @@ Code is available by request.""" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/supermatcher.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Finds a match of a large sequence against one or more sequences." ; @@ -458111,7 +486666,7 @@ Code is available by request.""" ; sc:url "http://genius.embnet.dkfz-heidelberg.de/menu/hobit/embdoc/supermatcher.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -458127,7 +486682,7 @@ Code is available by request.""" ; biotools:primaryContact "Shengrui Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite", "Workflow" ; @@ -458149,7 +486704,7 @@ Code is available by request.""" ; biotools:primaryContact "David B. Jaffe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2269, @@ -458166,7 +486721,7 @@ Code is available by request.""" ; sc:url "http://www-stat.stanford.edu/~tibs/superpc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3301, @@ -458184,7 +486739,7 @@ Code is available by request.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2269, edam:topic_3678 ; @@ -458198,7 +486753,7 @@ Code is available by request.""" ; sc:url "https://huygens.science.uva.nl/SuperPlotsOfData/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -458220,7 +486775,7 @@ Code is available by request.""" ; biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081 ; sc:citation ; @@ -458236,7 +486791,7 @@ Code is available by request.""" ; sc:url "http://cbm.bio.uniroma2.it/superpose3D" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -458261,7 +486816,7 @@ Code is available by request.""" ; "Priyanka Banerjee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3053, @@ -458277,7 +486832,7 @@ Code is available by request.""" ; sc:url "http://www.uea.ac.uk/computing/superq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -458295,7 +486850,7 @@ Code is available by request.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation "pubmed:20410051" ; @@ -458309,7 +486864,7 @@ Code is available by request.""" ; biotools:primaryContact "Mockler Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3170, @@ -458328,7 +486883,7 @@ Code is available by request.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0152, @@ -458351,7 +486906,7 @@ Code is available by request.""" ; "Priyanka Banerjee (Data / Toxicity prediction related queries)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -458373,8 +486928,30 @@ Code is available by request.""" ; sc:url "http://bioinformatics.charite.de/supertarget/" ; biotools:primaryContact "Robert Preissner" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0202, + edam:topic_0602, + edam:topic_3292, + edam:topic_3373, + edam:topic_3407 ; + sc:citation , + "pubmed:34656056" ; + sc:description "A biocultural database combining biological pathways and historical linguistic data of Chinese Materia Medica for drug development." ; + sc:featureList edam:operation_2421, + edam:operation_3660, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:name "SuperTCM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://tcm.charite.de/supertcm" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084 ; sc:citation ; @@ -458389,7 +486966,7 @@ Code is available by request.""" ; biotools:primaryContact "SuperTree Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "Supervised Fuzzy Clustering for the Identification of Fuzzy Classifiers. Each rule can represent more than one classes with different probabilities." ; @@ -458404,7 +486981,7 @@ Code is available by request.""" ; biotools:primaryContact "Janos Abonyi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, edam:topic_3474 ; @@ -458416,7 +486993,7 @@ Code is available by request.""" ; sc:url "https://github.com/krishnanlab/GenePlexus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3308, edam:topic_3320 ; @@ -458441,7 +487018,7 @@ Code is available by request.""" ; biotools:primaryContact "SUPPA Users group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -458464,7 +487041,7 @@ Code is available by request.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -458479,7 +487056,7 @@ Code is available by request.""" ; sc:url "http://kiharalab.org/suprb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3370, @@ -458493,7 +487070,7 @@ Code is available by request.""" ; sc:url "http://itg.beckman.illinois.edu/technology_development/software_development/suprim/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -458517,7 +487094,7 @@ Code is available by request.""" ; sc:url "https://github.com/Meiomap/SureTypeSCR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, edam:topic_3170, @@ -458536,7 +487113,7 @@ The Statistical Utility for RBP Functions (SURF) is an integrative analysis fram sc:url "https://github.com/keleslab/surf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_2229, @@ -458554,8 +487131,31 @@ SurfaceGenie is a web-application for computing the GenieScore , a prioritizatio sc:name "SurfaceGenie" ; sc:url "http://www.cellsurfer.net/surfacegenie" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0166, + edam:topic_0820, + edam:topic_2229, + edam:topic_3320 ; + sc:citation , + "pubmed:35678367" ; + sc:description "An R/Bioconductor package to benchmark surface protein isoforms by rapid prediction and visualization of transmembrane topologies." ; + sc:featureList edam:operation_0264, + edam:operation_0269, + edam:operation_2241 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "surfaltr" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://bioconductor.org/packages/surfaltr" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, edam:topic_3315, @@ -458571,8 +487171,29 @@ Dynamic FBA for use with COBRAPy metabolic models.""" ; sc:name "surfinFBA" ; sc:url "https://github.com/jdbrunner/surfin_fba" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0130, + edam:topic_0166, + edam:topic_0749 ; + sc:citation ; + sc:description "SURFMAP is a free standalone and easy-to-use software that enables the fast and automated 2-D projection of either predefined features of protein surface (electrostatic potential, Kyte-Doolittle hydrophobicity, Wimley-White hydrophobicity, stickiness and surface relief) or any descriptor encoded in the temperature factor column of a PDB file. The 2-D maps computed by SURFMAP can be used to analyze and/or compare protein surface properties." ; + sc:featureList edam:operation_0387, + edam:operation_2429, + edam:operation_3666, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "SURFMAP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/i2bc/SURFMAP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0166, edam:topic_3382 ; sc:citation ; @@ -458585,7 +487206,7 @@ Dynamic FBA for use with COBRAPy metabolic models.""" ; sc:url "https://github.com/yamule/SurfStamp-public/releases" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154 ; @@ -458602,7 +487223,7 @@ Dynamic FBA for use with COBRAPy metabolic models.""" ; sc:url "http://pmbm.ippt.gov.pl/services/surpresi/cgi-bin/prediction.py" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -458619,7 +487240,7 @@ Dynamic FBA for use with COBRAPy metabolic models.""" ; sc:url "http://sysbio3.fhms.surrey.ac.uk/sfba/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -458632,8 +487253,49 @@ Dynamic FBA for use with COBRAPy metabolic models.""" ; "Windows" ; sc:url "http://works.bepress.com/veera/1/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3379, + edam:topic_3474, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC9338425", + "pubmed:35906887" ; + sc:description "Comprehensive benchmarking study of survival analysis methods using both omics data and clinical data." ; + sc:featureList edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "SurvBenchmark" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/SydneyBioX/SurvBenchmark_package" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_2640, + edam:topic_3379 ; + sc:citation , + "pmcid:PMC8829729", + "pubmed:34870495" ; + sc:description "A class of two-sample nonparametric statistics for binary and time-to-event outcomes." ; + sc:featureList edam:operation_2238, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SurvBin" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/MartaBofillRoig/SurvBin" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0199, edam:topic_2640, @@ -458652,7 +487314,7 @@ survClust is an outcome weighted supervised clustering algorithm, designed to cl sc:url "https://github.com/arorarshi/survClust" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0634, @@ -458677,7 +487339,7 @@ survClust is an outcome weighted supervised clustering algorithm, designed to cl "Markus Schroeder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation ; @@ -458695,7 +487357,7 @@ survClust is an outcome weighted supervised clustering algorithm, designed to cl biotools:primaryContact "Roman Laskowski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation ; @@ -458709,7 +487371,7 @@ survClust is an outcome weighted supervised clustering algorithm, designed to cl biotools:primaryContact "Hong Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3678 ; @@ -458726,7 +487388,7 @@ survClust is an outcome weighted supervised clustering algorithm, designed to cl biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170, @@ -458741,8 +487403,30 @@ survClust is an outcome weighted supervised clustering algorithm, designed to cl sc:name "SurVirus" ; sc:url "https://github.com/kensung-lab/SurVirus" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_2640, + edam:topic_3170, + edam:topic_3308, + edam:topic_3360 ; + sc:citation ; + sc:description "A web portal for single-cell data, gene-ratio, and cell composition-based survival analyses." ; + sc:featureList edam:operation_0314, + edam:operation_3463, + edam:operation_3503, + edam:operation_3766 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Survival Genie" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bbisr.shinyapps.winship.emory.edu/SurvivalGenie/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3053, @@ -458758,7 +487442,7 @@ survClust is an outcome weighted supervised clustering algorithm, designed to cl sc:url "http://www.nas.boku.ac.at/nuwi/the-survival-kit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0208, edam:topic_3056, @@ -458777,7 +487461,7 @@ survClust is an outcome weighted supervised clustering algorithm, designed to cl biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -458797,7 +487481,7 @@ survClust is an outcome weighted supervised clustering algorithm, designed to cl biotools:primaryContact "Hamzah Syed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2640, edam:topic_3295, @@ -458815,19 +487499,8 @@ The functional elements associated with DNA methylation, for example enhancer re sc:name "SurvivalMeth" ; sc:url "http://bio-bigdata.hrbmu.edu.cn/survivalmeth" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3403, - edam:topic_3421 ; - sc:citation , - "pmcid:PMC6655526", - "pubmed:31386011" ; - sc:description "> LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'Survivorship care planning neuro-oncology', 'survivorship care plans', 'survivorship care planning', 'survivorship care' | Survivorship care planning in neuro-oncology | The Neuro-Oncology Patient Survivorship Care Plan | Cancer patient survivorship has become a significant topic within oncology for both adult and pediatric patients" ; - sc:name "survivorship care plan" ; - sc:url "https://www.soc-neuro-onc.org/SNO/Resources/Survivorship_Care_Plan.aspx" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -458844,7 +487517,7 @@ The functional elements associated with DNA methylation, for example enhancer re sc:url "http://bioinformatica.mty.itesm.mx:8080/Biomatec/Survmicro.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -458867,7 +487540,7 @@ The functional elements associated with DNA methylation, for example enhancer re biotools:primaryContact "Han Liang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -458886,8 +487559,31 @@ The functional elements associated with DNA methylation, for example enhancer re sc:url "http://bioconductor.org/packages/release/bioc/html/Sushi.html" ; biotools:primaryContact "Douglas H Phanstiel" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0130, + edam:topic_0154, + edam:topic_0199, + edam:topic_3474, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC8495037", + "pubmed:34667533" ; + sc:description "Structure-guided machine learning prediction of drug resistance mutations in Abelson 1 kinase." ; + sc:featureList edam:operation_0331, + edam:operation_0478, + edam:operation_2575 ; + sc:isAccessibleForFree true ; + sc:name "SUSPECT-ABL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://biosig.unimelb.edu.au/suspect_abl/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, edam:topic_0199, @@ -458905,7 +487601,7 @@ The functional elements associated with DNA methylation, for example enhancer re sc:url "http://biosig.unimelb.edu.au/suspect_pza/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -458924,22 +487620,22 @@ The functional elements associated with DNA methylation, for example enhancer re a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence coordinates" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0091, @@ -458966,25 +487662,28 @@ The functional elements associated with DNA methylation, for example enhancer re sc:softwareVersion "1.0.0", "1.1.0", "1.1.1", - "1.1.2" ; + "1.1.2", + "1.1.3", + "1.2.0", + "1.2.1" ; sc:url "https://www.research-software.nl/software/sv-callers" ; biotools:primaryContact , . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0091, @@ -459011,7 +487710,7 @@ The functional elements associated with DNA methylation, for example enhancer re . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, edam:topic_3512, @@ -459033,7 +487732,7 @@ SV-HotSpot uses bedTools (https://github.com/arq5x/bedtools2) for various overla sc:url "https://github.com/ChrisMaherLab/SV-HotSpot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3063, @@ -459059,18 +487758,18 @@ Source code and documentation:https://github.com/jbelyeu/SV-plaudit.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3572 ; @@ -459090,7 +487789,7 @@ Source code and documentation:https://github.com/jbelyeu/SV-plaudit.""" ; "W. Evan Johnson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, edam:topic_3056, @@ -459109,7 +487808,7 @@ Sudden cardiac death (SCD) is an important cause of mortality worldwide. It acco sc:url "http://svad.mbc.nctu.edu.tw/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -459131,8 +487830,32 @@ Sudden cardiac death (SCD) is an important cause of mortality worldwide. It acco biotools:primaryContact , "Lailatul Hidayah" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_3175, + edam:topic_3512, + edam:topic_3673, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9047340", + "pubmed:35484572" ; + sc:description "Efficient and accurate pathogenicity prediction of coding and regulatory structural variants in long-read genome sequencing." ; + sc:featureList edam:operation_3226, + edam:operation_3227, + edam:operation_3461, + edam:operation_3675 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SvAnna" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/TheJacksonLaboratory/SvAnn" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, @@ -459156,7 +487879,7 @@ Sudden cardiac death (SCD) is an important cause of mortality worldwide. It acco sc:url "https://github.com/PapenfussLab/svaNUMT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3170 ; @@ -459175,7 +487898,7 @@ varieties, after adjusting for hidden subject-specific effects of residual heter biotools:primaryContact "Sutirtha Chakraborty" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -459195,7 +487918,7 @@ varieties, after adjusting for hidden subject-specific effects of residual heter biotools:primaryContact "Sutirtha Chakraborty" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, @@ -459216,8 +487939,29 @@ varieties, after adjusting for hidden subject-specific effects of residual heter "Windows" ; sc:url "https://github.com/PapenfussLab/svaRetro" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0203, + edam:topic_0625, + edam:topic_3168, + edam:topic_3263 ; + sc:citation ; + sc:description "Secure Variant Annotation and Aggregation Tool." ; + sc:featureList edam:operation_3196, + edam:operation_3227, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SVAT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/harmancilab/SVAT" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_1775, @@ -459233,7 +487977,7 @@ varieties, after adjusting for hidden subject-specific effects of residual heter sc:url "https://bitbucket.org/andrea/svd-phy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation "pubmed:20639544" ; @@ -459247,26 +487991,26 @@ varieties, after adjusting for hidden subject-specific effects of residual heter a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -459287,50 +488031,50 @@ varieties, after adjusting for hidden subject-specific effects of residual heter a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_1317 ; @@ -459350,42 +488094,42 @@ varieties, after adjusting for hidden subject-specific effects of residual heter a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence trace" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_1317 ; @@ -459406,7 +488150,7 @@ varieties, after adjusting for hidden subject-specific effects of residual heter biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -459420,7 +488164,7 @@ varieties, after adjusting for hidden subject-specific effects of residual heter sc:url "http://public.lanl.gov/mewall/svdman/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0637, @@ -459434,7 +488178,7 @@ varieties, after adjusting for hidden subject-specific effects of residual heter sc:url "http://www.stat.osu.edu/~lkubatko/software/SVDquartets/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Suite" ; sc:applicationSubCategory edam:topic_0203, @@ -459454,7 +488198,7 @@ varieties, after adjusting for hidden subject-specific effects of residual heter biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640, @@ -459472,7 +488216,7 @@ varieties, after adjusting for hidden subject-specific effects of residual heter sc:url "https://github.com/Majid1292/SVFS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, edam:topic_2640, @@ -459491,7 +488235,7 @@ a machine learning framework to quantify the pathogenicity of structural variant sc:url "https://github.com/gersteinlab/SVFX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -459507,7 +488251,7 @@ a machine learning framework to quantify the pathogenicity of structural variant sc:url "https://github.com/lfpaulin/SVhound" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0625, edam:topic_2885, @@ -459525,8 +488269,31 @@ SVIM-asm (pronounced SWIM-assem) is a structural variant caller for haploid or d sc:name "SVIM-asm" ; sc:url "http://github.com/eldariont/svim-asm" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_0625, + edam:topic_2885, + edam:topic_3175, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC8671832", + "pubmed:34925449" ; + sc:description "A Comprehensive Topologically Associated Domain-Based Clinical Outcome Prediction Tool for Balanced and Unbalanced Structural Variants." ; + sc:featureList edam:operation_2422, + edam:operation_3196, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SVInterpreter" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/DGRC-PT/SVInterpreter" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3170, @@ -459546,7 +488313,7 @@ SVIM-asm (pronounced SWIM-assem) is a structural variant caller for haploid or d biotools:primaryContact "Artyom Egorov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -459563,7 +488330,7 @@ SVIM-asm (pronounced SWIM-assem) is a structural variant caller for haploid or d "Xuefeng Cui" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, @@ -459579,7 +488346,7 @@ SVIM-asm (pronounced SWIM-assem) is a structural variant caller for haploid or d biotools:primaryContact "Shakoor Tanoli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -459603,7 +488370,7 @@ SVIM-asm (pronounced SWIM-assem) is a structural variant caller for haploid or d "SVM team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3070, @@ -459622,7 +488389,7 @@ SVIM-asm (pronounced SWIM-assem) is a structural variant caller for haploid or d biotools:primaryContact "Ke Yan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -459640,7 +488407,7 @@ SVIM-asm (pronounced SWIM-assem) is a structural variant caller for haploid or d sc:url "http://web.macam.ac.il/~myousef/MyTools/SVM-RNE.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation ; @@ -459657,14 +488424,14 @@ SVIM-asm (pronounced SWIM-assem) is a structural variant caller for haploid or d a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169 ; @@ -459682,7 +488449,7 @@ SVIM-asm (pronounced SWIM-assem) is a structural variant caller for haploid or d biotools:primaryContact "Guidantonio Malagoli Tagliazucchi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, @@ -459703,7 +488470,7 @@ SVIM-asm (pronounced SWIM-assem) is a structural variant caller for haploid or d "Yadong Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation "pubmed:21194472" ; @@ -459717,14 +488484,12 @@ SVIM-asm (pronounced SWIM-assem) is a structural variant caller for haploid or d a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -459736,7 +488501,7 @@ SVIM-asm (pronounced SWIM-assem) is a structural variant caller for haploid or d sc:url "http://www.sbc.su.se/%7Epierre/svmhc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0749, @@ -459755,7 +488520,7 @@ SVIM-asm (pronounced SWIM-assem) is a structural variant caller for haploid or d sc:url "https://github.com/UMCUGenetics/svMIL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2815, @@ -459771,7 +488536,7 @@ SVIM-asm (pronounced SWIM-assem) is a structural variant caller for haploid or d biotools:primaryContact "Ruibin Xi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -459793,7 +488558,7 @@ SVIM-asm (pronounced SWIM-assem) is a structural variant caller for haploid or d "Dr. Zheng Yuan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0166, edam:topic_0621, @@ -459816,8 +488581,33 @@ In this work, we developed a new method to predict antigenic epitope with lastes sc:name "SVMTriP" ; sc:url "http://sysbio.unl.edu/SVMTriP" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0153, + edam:topic_0160, + edam:topic_0601, + edam:topic_0821 ; + sc:citation , + "pubmed:35662454" ; + sc:description "A Web Server Detecting Co- and Post-translational Myristoylation in Proteins." ; + sc:featureList edam:operation_0417, + edam:operation_0418, + edam:operation_0422 ; + sc:isAccessibleForFree true ; + sc:name "SVMyr" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://busca.biocomp.unibo.it/lipipred" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -459834,7 +488624,7 @@ In this work, we developed a new method to predict antigenic epitope with lastes sc:url "http://www.niehs.nih.gov/research/resources/software/biostatistics/svn/index.cfm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3175, @@ -459856,7 +488646,7 @@ In this work, we developed a new method to predict antigenic epitope with lastes sc:url "http://easy.ce.sharif.edu/svnn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2640, edam:topic_2885, @@ -459874,7 +488664,7 @@ svpluscnv is an R package designed for integrative analyses of somatic DNA copy sc:url "https://github.com/ccbiolab/svpluscnv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3175, edam:topic_3325, @@ -459891,7 +488681,7 @@ svpluscnv is an R package designed for integrative analyses of somatic DNA copy biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3168, @@ -459907,7 +488697,7 @@ svpluscnv is an R package designed for integrative analyses of somatic DNA copy biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2533, @@ -459921,7 +488711,7 @@ svpluscnv is an R package designed for integrative analyses of somatic DNA copy sc:url "http://www.engr.uconn.edu/~jiz08001/svseq2.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -459941,7 +488731,7 @@ svpluscnv is an R package designed for integrative analyses of somatic DNA copy biotools:primaryContact "Ira Hall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -459956,7 +488746,7 @@ svpluscnv is an R package designed for integrative analyses of somatic DNA copy sc:url "http://svviz.github.io/svviz/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, edam:topic_3175, @@ -459979,7 +488769,7 @@ SVXplorer accepts a BAM file of target as input and outputs a BEDPE file (and an sc:url "https://github.com/kunalkathuria/SVXplorer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3305, edam:topic_3390 ; @@ -459991,7 +488781,7 @@ SVXplorer accepts a BAM file of target as input and outputs a BEDPE file (and an sc:url "https://github.com/kmuthusi/generic-sas-macros" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -460013,7 +488803,7 @@ SVXplorer accepts a BAM file of target as input and outputs a BEDPE file (and an biotools:primaryContact "Han Liang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3569 ; @@ -460026,7 +488816,7 @@ SVXplorer accepts a BAM file of target as input and outputs a BEDPE file (and an sc:url "http://code.google.com/p/swalign/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -460049,7 +488839,7 @@ SVXplorer accepts a BAM file of target as input and outputs a BEDPE file (and an sc:url "https://atifrahman.github.io/SWALO/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -460069,7 +488859,7 @@ SVXplorer accepts a BAM file of target as input and outputs a BEDPE file (and an . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0602, @@ -460082,7 +488872,7 @@ SVXplorer accepts a BAM file of target as input and outputs a BEDPE file (and an sc:url "http://www.sinhalab.net/software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3512 ; @@ -460098,7 +488888,7 @@ swan is a tool for visualizing and analyzing transcript isoforms.""" ; sc:url "https://pypi.org/project/swan-vis/1.0/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -460113,14 +488903,14 @@ swan is a tool for visualizing and analyzing transcript isoforms.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1235" ; - sc:name "Sequence cluster" ; - sc:sameAs "http://edamontology.org/data_1235" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1235" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence cluster" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3047, @@ -460142,7 +488932,7 @@ swan is a tool for visualizing and analyzing transcript isoforms.""" ; sc:url "https://github.com/torognes/swarm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0602, edam:topic_2275, @@ -460159,7 +488949,7 @@ Swarm-CG is designed for automatically optimizing the bonded terms of a MARTINI- sc:url "http://www.github.com/GMPavanLab/SwarmCG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2275 ; sc:citation ; @@ -460173,7 +488963,7 @@ Swarm-CG is designed for automatically optimizing the bonded terms of a MARTINI- sc:url "http://bmm.cancerresearchuk.org/~SwarmDock/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, edam:topic_3324 ; @@ -460187,7 +488977,7 @@ SwarmTCR predicts T-cell receptor (TCR) specificity using the 'distance' between sc:url "https://github.com/thecodingdoc/SwarmTCR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -460206,14 +488996,14 @@ SwarmTCR predicts T-cell receptor (TCR) specificity using the 'distance' between a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3110" ; - sc:name "Raw microarray data" ; - sc:sameAs "http://edamontology.org/data_3110" ] ; + sc:additionalType "http://edamontology.org/data_3110" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Raw microarray data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Processed microarray data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3520 ; @@ -460233,7 +489023,7 @@ SwarmTCR predicts T-cell receptor (TCR) specificity using the 'distance' between biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -460252,7 +489042,7 @@ SwarmTCR predicts T-cell receptor (TCR) specificity using the 'distance' between biotools:primaryContact "Jemma Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229 ; sc:citation , "pmcid:PMC6977721", @@ -460272,7 +489062,7 @@ Fix structures with zero size diameter.""" ; sc:url "https://github.com/dohalloran/SWC_BATCH_CHECK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -460291,7 +489081,7 @@ We report a sample-wise Convex Analysis of Mixtures (swCAM) method that can esti sc:url "https://github.com/Lululuella/swCAM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:32554025" ; sc:description """An RPackage for Stepped Wedge Trial Design and Analysis. @@ -460303,7 +489093,7 @@ Stepped wedge trials (SWTs) are a type of cluster-randomized trial that are comm sc:url "https://rdrr.io/cran/swCRTdesign/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -460317,7 +489107,7 @@ Stepped wedge trials (SWTs) are a type of cluster-randomized trial that are comm sc:url "http://bioinformatics.cribi.unipd.it/cuda/swcuda.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3295 ; @@ -460332,8 +489122,29 @@ Stepped wedge trials (SWTs) are a type of cluster-randomized trial that are comm biotools:primaryContact "BingYu Chen", "Dongsheng Huang" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_2815, + edam:topic_3379 ; + sc:citation , + "pmcid:PMC8665077", + "pubmed:34818620" ; + sc:description "A SAS macro and an R package for power calculations in stepped wedge cluster randomized trials." ; + sc:featureList edam:operation_3432, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "swdpwr" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://jiachenchen322.shinyapps.io/swdpwr_shinyapp/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3127, @@ -460349,7 +489160,7 @@ Stepped wedge trials (SWTs) are a type of cluster-randomized trial that are comm sc:url "http://bioinformatics.org/sweblast/wiki/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation , @@ -460364,7 +489175,7 @@ Stepped wedge trials (SWTs) are a type of cluster-randomized trial that are comm sc:url "https://github.com/alachins/sweed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:description "Allows large-scale analysis of haplotype structure in genomes for the primary purpose of detecting evidence of natural selection. Primarily, it uses the Long Range Haplotype (LRH) test to look for alleles of high frequency with long-range linkage disequilibrium (LD), which suggest the haplotype rapidly rose to high frequency before recombination could break down associations with nearby markers" ; @@ -460376,7 +489187,7 @@ Stepped wedge trials (SWTs) are a type of cluster-randomized trial that are comm sc:url "http://archive.broadinstitute.org/mpg/sweep/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_0102, @@ -460397,7 +489208,7 @@ Stepped wedge trials (SWTs) are a type of cluster-randomized trial that are comm "Qianjun Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -460410,7 +489221,7 @@ Stepped wedge trials (SWTs) are a type of cluster-randomized trial that are comm sc:url "http://people.binf.ku.dk/rasmus/webpage/sf.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -460425,7 +489236,7 @@ Stepped wedge trials (SWTs) are a type of cluster-randomized trial that are comm sc:url "https://github.com/amberjoybarton/sweetD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2275 ; sc:description "Automate work of rendering and animating molecules." ; @@ -460437,7 +489248,7 @@ Stepped wedge trials (SWTs) are a type of cluster-randomized trial that are comm sc:url "http://rodomontano.altervista.org/engSweetMG.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3474, @@ -460457,7 +489268,7 @@ Stepped wedge trials (SWTs) are a type of cluster-randomized trial that are comm sc:url "https://sweetpea-org.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3176, @@ -460472,14 +489283,12 @@ Stepped wedge trials (SWTs) are a type of cluster-randomized trial that are comm a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2906" ; - sc:name "Peptide ID" ; - sc:sameAs "http://edamontology.org/data_2906" ] ; + sc:additionalType "http://edamontology.org/data_2906" ; + sc:name "Peptide ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2979" ; - sc:name "Peptide property" ; - sc:sameAs "http://edamontology.org/data_2979" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2979" ; + sc:name "Peptide property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation ; @@ -460494,7 +489303,7 @@ Stepped wedge trials (SWTs) are a type of cluster-randomized trial that are comm sc:url "http://www.swepep.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3068, edam:topic_3315 ; @@ -460516,10 +489325,10 @@ Stepped wedge trials (SWTs) are a type of cluster-randomized trial that are comm a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Experiment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3520 ; @@ -460549,7 +489358,7 @@ Stepped wedge trials (SWTs) are a type of cluster-randomized trial that are comm biotools:primaryContact "Jiří Vohradský" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Kim R. Rasmussen" ; @@ -460568,7 +489377,7 @@ Stepped wedge trials (SWTs) are a type of cluster-randomized trial that are comm sc:url "https://bibiserv.cebitec.uni-bielefeld.de/swift" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3444, edam:topic_3474, edam:topic_3500 ; @@ -460581,7 +489390,7 @@ In the screening phase of systematic review, researchers use detailed inclusion sc:url "https://www.sciome.com/swift-activescreener/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -460596,7 +489405,7 @@ In the screening phase of systematic review, researchers use detailed inclusion biotools:primaryContact "GitHub Issues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_3172, @@ -460616,7 +489425,7 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta sc:url "https://mtefagh.github.io/swiftcore/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0625, @@ -460634,7 +489443,7 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta sc:url "https://github.com/sportingCode/SWIMmeR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0621 ; @@ -460654,22 +489463,18 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:name "Sequence alignment (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1384" ; + sc:name "Sequence alignment (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3047 ; @@ -460689,62 +489494,55 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ], + sc:additionalType "http://edamontology.org/data_2791" ; + sc:name "Reference map name (SWISS-2DPAGE)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2374" ; - sc:name "Spot serial number" ; - sc:sameAs "http://edamontology.org/data_2374" ], + sc:additionalType "http://edamontology.org/data_2791" ; + sc:name "Reference map name (SWISS-2DPAGE)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_2374" ; + sc:name "Spot serial number" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2374" ; - sc:name "Spot serial number" ; - sc:sameAs "http://edamontology.org/data_2374" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2791" ; - sc:name "Reference map name (SWISS-2DPAGE)" ; - sc:sameAs "http://edamontology.org/data_2791" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_0989" ; + sc:name "Protein identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2791" ; - sc:name "Reference map name (SWISS-2DPAGE)" ; - sc:sameAs "http://edamontology.org/data_2791" ] ; + sc:additionalType "http://edamontology.org/data_2374" ; + sc:name "Spot serial number" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ], + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Experiment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ], + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experiment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ], + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Experiment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ], + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Experiment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ], + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Experiment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ], + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Experiment report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Experiment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -460759,7 +489557,7 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta sc:url "http://www.expasy.org/ch2d/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -460785,30 +489583,27 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2291" ; - sc:name "UniProt ID" ; - sc:sameAs "http://edamontology.org/data_2291" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ], + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0082, @@ -460830,7 +489625,7 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -460854,7 +489649,7 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta biotools:primaryContact "Feedback Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0091 ; @@ -460870,7 +489665,7 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta biotools:primaryContact "Support form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0122, @@ -460887,40 +489682,48 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2291" ; - sc:name "UniProt ID" ; - sc:sameAs "http://edamontology.org/data_2291" ], + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1477" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, edam:topic_0602, edam:topic_2275, edam:topic_2814 ; - sc:citation "pubmed:12824332", + sc:citation , + , + , + , + "pmcid:PMC4086089", + "pmcid:PMC5210589", + "pmcid:PMC6030848", + "pubmed:12824332", "pubmed:14681401", "pubmed:16301204", "pubmed:16381875", + "pubmed:19517507", + "pubmed:24782522", + "pubmed:27899672", + "pubmed:29788355", "pubmed:9322042", "pubmed:9504803" ; sc:description "SWISS-MODEL is a fully automated protein structure homology-modelling server, accessible via the ExPASy web server, or from the program DeepView (Swiss Pdb-Viewer). The purpose of this server is to make Protein Modelling accessible to all biochemists and molecular biologists worldwide." ; @@ -460936,14 +489739,12 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2301" ; - sc:name "SMILES string" ; - sc:sameAs "http://edamontology.org/data_2301" ] ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2258 ; @@ -460960,7 +489761,7 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta sc:url "http://www.swissadme.ch/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2258, @@ -460975,8 +489776,31 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta sc:url "http://www.swissbioisostere.ch/" ; biotools:primaryContact "SwissBioisostere Contact" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0637, + edam:topic_2229, + edam:topic_3382, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9216577", + "pubmed:35411389" ; + sc:description "Interactive library of cell images for the visualization of subcellular location data." ; + sc:featureList edam:operation_0337, + edam:operation_2421, + edam:operation_2489 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-4.0" ; + sc:name "SwissBioPics" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.swissbiopics.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0121, @@ -460996,7 +489820,7 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta sc:url "http://www.swissdock.ch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0154, @@ -461013,18 +489837,18 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_3816" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3871" ; - sc:name "Forcefield parameters" ; - sc:sameAs "http://edamontology.org/data_3871" ], + sc:additionalType "http://edamontology.org/data_3871" ; + sc:encodingFormat "http://edamontology.org/format_3883" ; + sc:name "Forcefield parameters" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3872" ; - sc:name "Topology data" ; - sc:sameAs "http://edamontology.org/data_3872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3872" ; + sc:encodingFormat "http://edamontology.org/format_3887" ; + sc:name "Topology data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176 ; sc:citation , @@ -461037,7 +489861,7 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta sc:url "http://swissparam.ch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -461057,7 +489881,7 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta sc:url "http://swissregulon.unibas.ch/sr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0121, @@ -461071,14 +489895,12 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2301" ; - sc:name "SMILES string" ; - sc:sameAs "http://edamontology.org/data_2301" ] ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0209, edam:topic_2258 ; @@ -461095,7 +489917,7 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta sc:url "http://www.swisssimilarity.ch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -461119,7 +489941,7 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation ; @@ -461133,46 +489955,37 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2099" ; - sc:name "Name" ; - sc:sameAs "http://edamontology.org/data_2099" ], + sc:additionalType "http://edamontology.org/data_1153" ; + sc:name "OMIM ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ], + sc:additionalType "http://edamontology.org/data_1009" ; + sc:name "Protein name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1150" ; - sc:name "Disease ID" ; - sc:sameAs "http://edamontology.org/data_1150" ], + sc:additionalType "http://edamontology.org/data_1150" ; + sc:name "Disease ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2291" ; - sc:name "UniProt ID" ; - sc:sameAs "http://edamontology.org/data_2291" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1153" ; - sc:name "OMIM ID" ; - sc:sameAs "http://edamontology.org/data_1153" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_1177" ; + sc:name "MeSH concept ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1009" ; - sc:name "Protein name" ; - sc:sameAs "http://edamontology.org/data_1009" ], + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1177" ; - sc:name "MeSH concept ID" ; - sc:sameAs "http://edamontology.org/data_1177" ], + sc:additionalType "http://edamontology.org/data_2099" ; + sc:name "Name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ] ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -461193,14 +490006,14 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -461223,7 +490036,7 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta "Wikum Dinalankara" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -461244,7 +490057,7 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta biotools:primaryContact "Kieran Campbell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -461260,7 +490073,7 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta sc:url "https://genome.unc.edu/pubsup/SWITCHdna/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3047, edam:topic_3314 ; @@ -461272,7 +490085,7 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta sc:url "https://switches.ncbs.res.in" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -461295,8 +490108,35 @@ swiftcore is a tool for the context-specific reconstruction of genome-scale meta "Windows" ; sc:url "https://github.com/zuozhaorui/SWnet.git" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3021" ; + sc:name "UniProt accession" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0130, + edam:topic_0196, + edam:topic_0736, + edam:topic_3542 ; + sc:citation , + "pmcid:PMC9252838", + "pubmed:35580056" ; + sc:description "SWift and Optimized Recognition of protein Domains." ; + sc:featureList edam:operation_0303, + edam:operation_0320, + edam:operation_0390, + edam:operation_2488 ; + sc:isAccessibleForFree true ; + sc:license "CECILL-2.1" ; + sc:name "SWORD2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.dsimb.inserm.fr/SWORD2" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0128, edam:topic_0130, @@ -461313,7 +490153,7 @@ SWOTein method evaluates the contribution of each residue in a protein (or prote sc:url "http://babylone.ulb.ac.be/SWOTein" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -461331,7 +490171,7 @@ SWOTein method evaluates the contribution of each residue in a protein (or prote biotools:primaryContact "Synamatrix Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, @@ -461346,7 +490186,7 @@ SWOTein method evaluates the contribution of each residue in a protein (or prote sc:url "http://www.ikmb.uni-kiel.de/resources/download-tools/software/sxtestplate" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0622, @@ -461374,7 +490214,7 @@ SWOTein method evaluates the contribution of each residue in a protein (or prote biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3047, edam:topic_3292, @@ -461392,7 +490232,7 @@ SYnthetic BAyesian classifier (SYBA) is a Python package for the classification sc:url "https://github.com/lich-uct/syba" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -461406,7 +490246,7 @@ SYnthetic BAyesian classifier (SYBA) is a Python package for the classification sc:url "http://sybil.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259 ; @@ -461424,18 +490264,15 @@ SYnthetic BAyesian classifier (SYBA) is a Python package for the classification a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1597" ; - sc:name "Codon usage table" ; - sc:sameAs "http://edamontology.org/data_1597" ] ; + sc:additionalType "http://edamontology.org/data_1597" ; + sc:name "Codon usage table" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1600" ; - sc:name "Codon usage bias plot" ; - sc:sameAs "http://edamontology.org/data_1600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1600" ; + sc:name "Codon usage bias plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -461466,7 +490303,7 @@ SYnthetic BAyesian classifier (SYBA) is a Python package for the classification sc:url "http://emboss.open-bio.org/rel/rel6/apps/syco.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3334, @@ -461483,7 +490320,7 @@ SYnthetic BAyesian classifier (SYBA) is a Python package for the classification biotools:primaryContact "Joergen Kornfeld" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3053, @@ -461499,7 +490336,7 @@ SYnthetic BAyesian classifier (SYBA) is a Python package for the classification sc:url "http://www.ellispatrick.com/r-packages/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -461520,7 +490357,7 @@ SYnthetic BAyesian classifier (SYBA) is a Python package for the classification biotools:primaryContact "Prof. Dr. Stefan Stevanovic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -461536,7 +490373,7 @@ SYnthetic BAyesian classifier (SYBA) is a Python package for the classification sc:url "http://www-test.ebi.ac.uk/enright/sylamer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0804, edam:topic_3382, edam:topic_3934 ; @@ -461552,7 +490389,7 @@ SYnthetic BAyesian classifier (SYBA) is a Python package for the classification sc:url "https://github.com/gjbaker/sylaras" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0203, @@ -461572,7 +490409,7 @@ SYnthetic BAyesian classifier (SYBA) is a Python package for the classification biotools:primaryContact "Anton Enright" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293, @@ -461588,7 +490425,7 @@ SYnthetic BAyesian classifier (SYBA) is a Python package for the classification sc:url "http://www.sylvx.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654 ; @@ -461606,7 +490443,7 @@ SYnthetic BAyesian classifier (SYBA) is a Python package for the classification sc:url "http://www.agcol.arizona.edu/software/symap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0610, @@ -461626,7 +490463,7 @@ SYnthetic BAyesian classifier (SYBA) is a Python package for the classification "Pim Bongaerts" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0780, @@ -461646,7 +490483,7 @@ SYnthetic BAyesian classifier (SYBA) is a Python package for the classification biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0769, @@ -461662,16 +490499,37 @@ Filter contamination from filial tgs long reads or stlfr co-barcode-reads by par sc:name "Symbiont-Screener" ; sc:url "https://github.com/BGI-Qingdao/Symbiont-Screener" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_3382, + edam:topic_3474, + edam:topic_3934 ; + sc:citation , + "pmcid:PMC9160162", + "pubmed:35663891" ; + sc:description "A Machine Learning Object Detection Tool for Polyploid Independent Estimates of Endosymbiont Population Size." ; + sc:featureList edam:operation_3196, + edam:operation_3553, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "SymbiQuant" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/WilsonLabMiami/SymbiQuant" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:author "Christoforos Nikolau", @@ -461692,7 +490550,7 @@ Filter contamination from filial tgs long reads or stlfr co-barcode-reads by par biotools:primaryContact "Sonja Althammer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0166, @@ -461715,7 +490573,7 @@ Filter contamination from filial tgs long reads or stlfr co-barcode-reads by par biotools:primaryContact "Byungkook Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0602, @@ -461739,7 +490597,7 @@ It contains 499 herbs registered in the Chinese pharmacopoeia with 19,595 ingred sc:url "http://www.symmap.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0082, @@ -461762,7 +490620,7 @@ It contains 499 herbs registered in the Chinese pharmacopoeia with 19,595 ingred biotools:primaryContact "SymmDock Administrator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3318, edam:topic_3384 ; @@ -461776,8 +490634,31 @@ The current assessment of patients with craniofacial asymmetries is accomplished sc:softwareVersion "1.0" ; sc:url "https://github.com/ealho/SymMetric_v1.0" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0102, + edam:topic_0625, + edam:topic_0634, + edam:topic_2229 ; + sc:citation , + "pmcid:PMC8497570", + "pubmed:34620862" ; + sc:description "Efficient and precise single-cell reference atlas mapping with Symphony." ; + sc:featureList edam:operation_0224, + edam:operation_2429, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Symphony" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/immunogenomics/symphony" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2269, edam:topic_3063 ; @@ -461792,7 +490673,7 @@ Symptoma is a Digital Health Assistant & Symptom Checker. Patients and doctors e sc:url "https://www.symptoma.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -461810,7 +490691,7 @@ Symptoma is a Digital Health Assistant & Symptom Checker. Patients and doctors e sc:url "https://bitbucket.org/jstahlecker/syn-view/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -461832,7 +490713,7 @@ Symptoma is a Digital Health Assistant & Symptom Checker. Patients and doctors e sc:url "https://github.com/GB3Trinity/SynapseJ" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -461854,7 +490735,7 @@ Symptoma is a Digital Health Assistant & Symptom Checker. Patients and doctors e "Sebastian Gibb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3474, edam:topic_3512 ; @@ -461870,7 +490751,7 @@ BACKGROUND:Assembly and function of neuronal synapses require the coordinated ex sc:url "http://synapticgenes.bnd.edu.uy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -461887,7 +490768,7 @@ BACKGROUND:Assembly and function of neuronal synapses require the coordinated ex biotools:primaryContact "Martin Skjelvareid" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3053, @@ -461902,8 +490783,29 @@ BACKGROUND:Assembly and function of neuronal synapses require the coordinated ex sc:softwareHelp ; sc:url "https://sites.google.com/site/synbadm/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0769, + edam:topic_3895 ; + sc:citation , + "pmcid:PMC8944294", + "pubmed:35350192" ; + sc:description "Biologist-friendly tool for batch operations on SBOL designs with Excel inputs." ; + sc:featureList edam:operation_0337, + edam:operation_2422, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "SynBio2Easy" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BioRDM/synbio2easy" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -461920,8 +490822,57 @@ BACKGROUND:Assembly and function of neuronal synapses require the coordinated ex sc:url "https://github.com/Global-Biofoundries-Alliance/SynBioPython" ; biotools:primaryContact "Chueh Loo Poh" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1045" ; + sc:name "Species name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0219, + edam:topic_3068, + edam:topic_3301, + edam:topic_3912 ; + sc:citation , + "pmcid:PMC9107733", + "pubmed:35568950" ; + sc:description "A microbial strain database of manually curated CRISPR/Cas genetic manipulation system information for biomanufacturing." ; + sc:featureList edam:operation_0224, + edam:operation_3096, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:name "SynBioStrainFinder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://design.rxnfinder.org/biosynstrain/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0593, + edam:topic_2830, + edam:topic_3306, + edam:topic_3930 ; + sc:citation , + "pmcid:PMC8728148", + "pubmed:34664670" ; + sc:description "SYNBIP is a SBP database that UNIQUE in (a) comprehensively describing thousands of SBPs from the perspectives of scaffolds, biophysical & functional properties, etc.; (b) panoramically illustrating the binding targets & the broad application of each SBP; and (c) enabling the sequence-based similarity search against all SBPs and their binding targets." ; + sc:featureList edam:operation_0239, + edam:operation_0479, + edam:operation_2421, + edam:operation_3092, + edam:operation_3216 ; + sc:isAccessibleForFree true ; + sc:name "SYNBIP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://idrblab.org/synbip/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0160, @@ -461938,8 +490889,48 @@ BACKGROUND:Assembly and function of neuronal synapses require the coordinated ex sc:url "http://www.lcqb.upmc.fr/CHROnicle/SynChro.html" ; biotools:primaryContact "Gilles Fischer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0199, + edam:topic_2640 ; + sc:citation ; + sc:description "Parameterized syncmer schemes improve long-read mapping." ; + sc:featureList edam:operation_3198, + edam:operation_3216, + edam:operation_3472 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "syncmer_mapping" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Shamir-Lab/syncmer_mapping" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_3379, + edam:topic_3382, + edam:topic_3393, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9255576", + "pubmed:35787575" ; + sc:description "A solution to image-guided synchrotron radiotherapy for quality assurance and pre-clinical trials." ; + sc:featureList edam:operation_3435, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "SyncMRT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/stylekilla/syncmrt" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3452 ; sc:description "SyncX CT Aligner is a computer method to compensate for the vibration of the rotational holder by aligning neighboring X-ray images." ; @@ -461953,7 +490944,7 @@ BACKGROUND:Assembly and function of neuronal synapses require the coordinated ex sc:url "http://people.cs.nctu.edu.tw/~chengchc/SCTA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0219, @@ -461969,7 +490960,7 @@ BACKGROUND:Assembly and function of neuronal synapses require the coordinated ex sc:url "http://llama.mshri.on.ca/synergizer/doc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0208, edam:topic_2640, edam:topic_3172, @@ -461987,7 +490978,7 @@ BACKGROUND:Assembly and function of neuronal synapses require the coordinated ex sc:url "http://SYNERGxDB.ca/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0209, edam:topic_3375 ; @@ -462004,7 +490995,7 @@ A python package to calculate, analyze, and visualize drug combination synergy a sc:url "https://pypi.org/project/synergy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0219, edam:topic_0621, @@ -462024,7 +491015,7 @@ SynergyAge database hosts high-quality, manually curated information about the s sc:url "http://www.synergyage.info" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Web application" ; sc:applicationSubCategory edam:topic_3307 ; @@ -462043,7 +491034,7 @@ SynergyAge database hosts high-quality, manually curated information about the s biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3336, edam:topic_3374, @@ -462063,7 +491054,7 @@ SynergyFinder front-end web application source code.""" ; sc:url "https://synergyfinder.fimm.fi/synergy/202102251238133261/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -462086,7 +491077,7 @@ SynergyFinder front-end web application source code.""" ; sc:url "http://www.synergyfinderplus.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0622 ; @@ -462104,7 +491095,7 @@ SynergyFinder front-end web application source code.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0196, @@ -462123,7 +491114,7 @@ SynergyFinder front-end web application source code.""" ; biotools:primaryContact "Rhys A. Farrer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0128, @@ -462143,7 +491134,7 @@ SynergyFinder front-end web application source code.""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -462163,7 +491154,7 @@ SynergyFinder front-end web application source code.""" ; biotools:primaryContact "Chunxuan Shao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0108, @@ -462180,7 +491171,7 @@ SynergyFinder front-end web application source code.""" ; sc:url "http://synlinker.syncti.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -462196,7 +491187,7 @@ SynergyFinder front-end web application source code.""" ; sc:url "http://jong2.pythonanywhere.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0621, @@ -462215,7 +491206,7 @@ SynergyFinder front-end web application source code.""" ; biotools:primaryContact "Ovcharenko I." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3306, @@ -462233,7 +491224,7 @@ SynergyFinder front-end web application source code.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, edam:topic_3053 ; @@ -462246,7 +491237,7 @@ SynergyFinder front-end web application source code.""" ; sc:url "http://ksamuk.github.io/syntR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -462269,7 +491260,7 @@ SynergyFinder front-end web application source code.""" ; sc:url "https://github.com/YuYaoYang2333/SyntaLinker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, @@ -462286,7 +491277,7 @@ SynergyFinder front-end web application source code.""" ; sc:url "http://www.chemoprofiling.org/cgi-bin/GEO/cancertarget/web_run_CT.EXAMPLES.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -462305,7 +491296,7 @@ SynergyFinder front-end web application source code.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -462328,7 +491319,7 @@ SynergyFinder front-end web application source code.""" ; sc:url "http://gamcil.github.io/synthaser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Workflow" ; @@ -462347,7 +491338,7 @@ SynergyFinder front-end web application source code.""" ; sc:url "https://github.com/james-guevara/synthdnm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3053 ; @@ -462363,7 +491354,7 @@ SynergyFinder front-end web application source code.""" ; sc:url "http://visualization.ritchielab.psu.edu/synthesis_views/plot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -462382,8 +491373,26 @@ SynergyFinder front-end web application source code.""" ; sc:url "https://www.mathworks.com/matlabcentral/fileexchange/48915-synthetic-bright-field-microscopy-image-generator" ; biotools:primaryContact "Patrik Malm" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0209, + edam:topic_3303, + edam:topic_3343 ; + sc:citation , + "pubmed:34723532" ; + sc:description "Open-source tool for synthons-based library design." ; + sc:featureList edam:operation_3216 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "SynthI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Laboratoire-de-Chemoinformatique/SynthI" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3067, edam:topic_3384, @@ -462400,7 +491409,7 @@ SynergyFinder front-end web application source code.""" ; sc:url "https://martinos.org/malte/synthmorph/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0082, @@ -462413,8 +491422,25 @@ SynergyFinder front-end web application source code.""" ; sc:name "SynthQA" ; sc:url "https://github.com/Cao-Labs/SynthQA.git" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3067, + edam:topic_3384, + edam:topic_3444 ; + sc:citation , + "pubmed:35842095" ; + sc:description "The removal of non-brain signal from magnetic resonance imaging (MRI) data, known as skull-stripping, is an integral component of many neuroimage analysis streams. Despite their abundance, popular classical skull-stripping methods are usually tailored to images with specific acquisition properties, namely near-isotropic resolution and T1-weighted (T1w) MRI contrast, which are prevalent in research settings. As a result, existing tools tend to adapt poorly to other image types, such as stacks of thick slices acquired with fast spin-echo (FSE) MRI that are common in the clinic. While learning-based approaches for brain extraction have gained traction in recent years, these methods face a similar burden, as they are only effective for image types seen during the training procedure. To achieve robust skull-stripping across a landscape of imaging protocols, we introduce SynthStrip, a rapid, learning-based brain-extraction tool" ; + sc:featureList edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:name "SynthStrip" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://w3id.org/synthstrip" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0208, edam:topic_2640, @@ -462433,14 +491459,14 @@ SynToxProfiler: an interactive analysis tool for drug combination prioritization a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3474 ; sc:citation ; @@ -462456,7 +491482,7 @@ SynToxProfiler: an interactive analysis tool for drug combination prioritization sc:url "http://bioinformatics.intec.ugent.be/kmarchal/SynTReN/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0637, @@ -462476,22 +491502,22 @@ SynToxProfiler: an interactive analysis tool for drug combination prioritization a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0797, @@ -462512,8 +491538,31 @@ SynToxProfiler: an interactive analysis tool for drug combination prioritization sc:softwareVersion "1" ; sc:url "http://genopole.pasteur.fr/SynTView/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0203, + edam:topic_2885, + edam:topic_3068, + edam:topic_3577 ; + sc:citation , + "pubmed:35612222" ; + sc:description "Designing an Optimal Expansion Method to Improve the Recall of a Genomic Variant Curation-Support Service." ; + sc:featureList edam:operation_0479, + edam:operation_2422, + edam:operation_3225, + edam:operation_3227, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:name "SynVar" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://goldorak.hesge.ch/synvar/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -462535,7 +491584,7 @@ SynToxProfiler: an interactive analysis tool for drug combination prioritization "Zishuo Zeng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -462557,8 +491606,28 @@ SynToxProfiler: an interactive analysis tool for drug combination prioritization sc:softwareHelp ; sc:url "http://synwiki.uni-goettingen.de/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0632, + edam:topic_2885, + edam:topic_3174, + edam:topic_3673 ; + sc:citation ; + sc:description "This is a set of command line tools to compute a cover for a set of reference sequences using short bait strings." ; + sc:featureList edam:operation_0363, + edam:operation_3211, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "syotti" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/jnalanko/syotti" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -462580,7 +491649,7 @@ SynToxProfiler: an interactive analysis tool for drug combination prioritization sc:url "https://github.com/skhalighicase/SYS-Mut" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259 ; sc:author "Damjana Rozman", @@ -462605,7 +491674,7 @@ SynToxProfiler: an interactive analysis tool for drug combination prioritization biotools:primaryContact "Miha Moškon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2259 ; sc:citation "pubmed:25399028" ; @@ -462617,7 +491686,7 @@ SynToxProfiler: an interactive analysis tool for drug combination prioritization sc:url "http://www.theosysbio.bio.ic.ac.uk/resources/sysbions/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Library", "Web application" ; @@ -462635,7 +491704,7 @@ SynToxProfiler: an interactive analysis tool for drug combination prioritization sc:url "http://Sysrev.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, edam:topic_3053, @@ -462657,7 +491726,7 @@ To download sysSVM2, clone this repository. sysSVM2 is implemented in R. In this sc:url "https://github.com/ciccalab/sysSVM2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3391 ; sc:description "Platform for collaborative research, enabling sharing of workflows and computational tools tailored for lead compound discovery in infectious diseases through four main technical objectives: Access to large shared collections of compounds, assays and knowledge; Access to computational tools that can be tailored for lead compound discovery in infectious diseases; A systems biology approach to infectious diseases drug discovery; Sharing specialised analytical workflows." ; @@ -462670,14 +491739,14 @@ To download sysSVM2, clone this repository. sysSVM2 is implemented in R. In this a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169, @@ -462699,7 +491768,7 @@ To download sysSVM2, clone this repository. sysSVM2 is implemented in R. In this biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3315, @@ -462716,7 +491785,7 @@ To download sysSVM2, clone this repository. sysSVM2 is implemented in R. In this biotools:primaryContact "Ilya Chorny" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation "pubmed:20818383" ; @@ -462729,7 +491798,7 @@ To download sysSVM2, clone this repository. sysSVM2 is implemented in R. In this biotools:primaryContact "Syzygy Help" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0176, @@ -462746,8 +491815,33 @@ To download sysSVM2, clone this repository. sysSVM2 is implemented in R. In this sc:softwareHelp ; sc:url "https://sites.google.com/site/tanalystprogram/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0202, + edam:topic_3336, + edam:topic_3373, + edam:topic_3378 ; + sc:citation , + "pmcid:PMC8533369", + "pubmed:34679164" ; + sc:description "Mining drug-target and drug-adverse drug reaction databases to identify target-adverse drug reaction relationships." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3431, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "T-ARDIS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.bioinsilico.org/T-ARDIS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053, @@ -462762,7 +491856,7 @@ To download sysSVM2, clone this repository. sysSVM2 is implemented in R. In this sc:url "http://www.helsinki.fi/bsg/software/T-BAPS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0097, @@ -462777,7 +491871,7 @@ To download sysSVM2, clone this repository. sysSVM2 is implemented in R. In this biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2830, edam:topic_3382, @@ -462800,7 +491894,7 @@ Classifying T cell activity in autofluorescence intensity images with convolutio sc:url "https://github.com/gitter-lab/t-cell-classification" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2885, edam:topic_3168 ; @@ -462815,7 +491909,7 @@ T-CNV is a Python library and command-line software toolkit to infer and visuali sc:url "https://github.com/Top-Gene/T-CNV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -462839,7 +491933,7 @@ T-CNV is a Python library and command-line software toolkit to infer and visuali sc:url "https://t-cov.hse.ru" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0798 ; sc:citation "pubmed:21177644" ; @@ -462852,7 +491946,7 @@ T-CNV is a Python library and command-line software toolkit to infer and visuali biotools:primaryContact "Anna-Sophie Fiston-Lavier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -462870,7 +491964,7 @@ T-CNV is a Python library and command-line software toolkit to infer and visuali biotools:primaryContact "Anna-Sophie Fiston-Lavier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621 ; @@ -462889,7 +491983,7 @@ T-CNV is a Python library and command-line software toolkit to infer and visuali biotools:primaryContact "Harmen J. Bussemaker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -462910,7 +492004,7 @@ T-CNV is a Python library and command-line software toolkit to infer and visuali biotools:primaryContact "roepcke@molgen.mpg.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, @@ -462933,7 +492027,7 @@ T-CNV is a Python library and command-line software toolkit to infer and visuali biotools:primaryContact "Vladimir Makarenkov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0078, @@ -462951,7 +492045,7 @@ T-CNV is a Python library and command-line software toolkit to infer and visuali biotools:primaryContact "Cedric Notredame" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0199, @@ -462978,7 +492072,7 @@ Quality control using infoMeasures.R. Evaluation of method and parameter choices sc:url "https://github.com/systemsgenomics/t-sne.cancermaps" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2269, @@ -462997,7 +492091,7 @@ Quality control using infoMeasures.R. Evaluation of method and parameter choices biotools:primaryContact "Dr. Soumya Banerjee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, edam:topic_0659, @@ -463012,7 +492106,7 @@ Quality control using infoMeasures.R. Evaluation of method and parameter choices sc:url "https://weon.readthedocs.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -463036,7 +492130,7 @@ Quality control using infoMeasures.R. Evaluation of method and parameter choices "Oliver S. Burren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3179 ; @@ -463050,16 +492144,39 @@ Quality control using infoMeasures.R. Evaluation of method and parameter choices sc:softwareVersion "1.3" ; sc:url "http://timat2.sourceforge.net/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0634, + edam:topic_2269, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC8796375", + "pubmed:34755844" ; + sc:description "A powerful test for differentially expressed gene pathways via graph-informed structural equation modeling." ; + sc:featureList edam:operation_3223, + edam:operation_3435, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "T2-DAG" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Jin93/T2DAG" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -463069,7 +492186,7 @@ Quality control using infoMeasures.R. Evaluation of method and parameter choices sc:url "http://www.pepchem.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -463088,7 +492205,7 @@ Quality control using infoMeasures.R. Evaluation of method and parameter choices "Pedro M. Martínez García" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3301 ; @@ -463106,7 +492223,7 @@ Quality control using infoMeasures.R. Evaluation of method and parameter choices biotools:primaryContact "Yejun Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -463128,7 +492245,7 @@ Quality control using infoMeasures.R. Evaluation of method and parameter choices "Wishart Lab's twitter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3474, edam:topic_3510 ; @@ -463142,8 +492259,33 @@ Type IV secreted effectors (T4SEs) can be translocated into the cytosol of host sc:name "T4SE-XGB" ; sc:url "https://github.com/CT001002/T4SE-XGB" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0203, + edam:topic_0621, + edam:topic_0623, + edam:topic_3474 ; + sc:citation , + "pubmed:34657153" ; + sc:description "A bioinformatics tool for genome-scale prediction of bacterial type IV secreted effectors using pre-trained protein language model." ; + sc:featureList edam:operation_0474, + edam:operation_3092, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:name "T4SEfinder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://tool2-mml.sjtu.edu.cn/T4SEfinder_TAPE/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3375, @@ -463159,7 +492301,7 @@ Type IV secreted effectors (T4SEs) can be translocated into the cytosol of host sc:url "http://www.genome.duke.edu/labs/YouLab/software/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2640, edam:topic_3336 ; @@ -463172,7 +492314,7 @@ Type IV secreted effectors (T4SEs) can be translocated into the cytosol of host sc:url "https://github.com/Lowpassfilter/tCNNS-Project" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -463195,7 +492337,7 @@ Type IV secreted effectors (T4SEs) can be translocated into the cytosol of host biotools:primaryContact "Lei Xie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_2640, @@ -463214,7 +492356,7 @@ tRFexplorer is a public database through which users may display the expression sc:url "https://trfexplorer.cloud/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, @@ -463233,7 +492375,7 @@ tRFexplorer is a public database through which users may display the expression biotools:primaryContact "Stella Gao" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3382, @@ -463254,60 +492396,8 @@ tRFexplorer is a public database through which users may display the expression sc:url "http://trna.ucsc.edu/tRNAviz/summary/" ; biotools:primaryContact . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0203, - edam:topic_2640, - edam:topic_3170 ; - sc:citation , - "pubmed:31432762" ; - sc:description "> NAME (tRic) SIMILAR TO (PUB. DIFFERENT) bio.tools/tric (TRIC) | a user-friendly data portal to explore the expression landscape of tRNAs in human cancers | The TRIC refers to \"tRNA in cancers\". Transfer RNAs (tRNAs) play essential roles in tumorigenesis. The database tRNA in Cancer (TRIC) show the dynamic landscape of tRNAs expression across 31 cancer types and more than 10000 samples from The Cancer Genome Atlas (TCGA). Here we systematically analyzed tRNA expression profiles at gene, codon and amino acid levels and the functional consequence (e.g. patient tumor stage, subtype, and survival). We also try to connect the differentially expression of tRNA and the translational control in tumor" ; - sc:featureList edam:operation_0464, - edam:operation_2962, - edam:operation_2964 ; - sc:name "tRic_autogenerated" ; - sc:url "https://hanlab.uth.edu/tRic/" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2830, - edam:topic_3382, - edam:topic_3474 ; - sc:citation ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'autofluorescence', 'CNNs', 'pre-trained', 'CNN' | Classifying T cell activity in autofluorescence intensity images with convolutional neural networks | Jupyter notebooks demonstrating a microscopy machine learning image analysis workflow | This repository contains code and data for the manuscript: | Classifying T cell activity in autofluorescence intensity images with convolutional neural networks. Zijie J Wang, Alex J Walsh, Melissa C Skala, Anthony Gitter. bioRxiv 2019. doi:10.1101/737346" ; - sc:featureList edam:operation_3552 ; - sc:license "BSD-3-Clause-Clear" ; - sc:name "t cell classification" ; - sc:url "https://github.com/gitter-lab/t-cell-classification" . - - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2229, - edam:topic_2830, - edam:topic_3382, - edam:topic_3407, - edam:topic_3474 ; - sc:citation , - "pubmed:31661592" ; - sc:description """Classifying T cell activity in autofluorescence intensity images with convolutional neural networks. - -Jupyter notebooks demonstrating a microscopy machine learning image analysis workflow. - -This repository contains code and data for the manuscript:. - -Classifying T cell activity in autofluorescence intensity images with convolutional neural networks. Zijie J Wang, Alex J Walsh, Melissa C Skala, Anthony Gitter. bioRxiv 2019. doi:10.1101/737346. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/t_cell_classification. - -||| COMMON LINK WITH (PUB. & NAME DIFFERENT) bio.tools/t_cell_classification (GITHUB.COM/gitter-lab/t-cell-classification). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'CNNs', 'autofluorescence', 'previously-extracted', 'antigen-induced'""" ; - sc:featureList edam:operation_0337, - edam:operation_3443, - edam:operation_3704 ; - sc:license "BSD-3-Clause-Clear" ; - sc:name "t cell classification_autogenerated" ; - sc:url "https://github.com/gitter-lab/t-cell-classification" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3452, @@ -463324,7 +492414,7 @@ Classifying T cell activity in autofluorescence intensity images with convolutio "Zhenmei Yu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0659 ; sc:citation ; @@ -463339,7 +492429,7 @@ Classifying T cell activity in autofluorescence intensity images with convolutio biotools:primaryContact "Forum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3382, edam:topic_3474 ; @@ -463354,7 +492444,7 @@ Classifying T cell activity in autofluorescence intensity images with convolutio sc:url "https://github.com/MPBA/TAASRAD19" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0219, @@ -463370,7 +492460,7 @@ Classifying T cell activity in autofluorescence intensity images with convolutio sc:url "http://tab2mage.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -463391,14 +492481,12 @@ Classifying T cell activity in autofluorescence intensity images with convolutio a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123 ; sc:citation ; @@ -463415,7 +492503,7 @@ Classifying T cell activity in autofluorescence intensity images with convolutio biotools:primaryContact "Pier Paolo Olimpieri" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """Tabix indexes a TAB-delimited genome position file in.tab.bgz and creates an index file (in.tab.bgz.tbi or in.tab.bgz.csi) when region is absent from the command-line. The input data file must be position sorted and compressed by bgzip which has a gzip(1) like interface. After indexing, tabix is able to quickly retrieve data lines overlapping regions specified in the format "chr:beginPos-endPos". (Coordinates specified in this region format are 1-based and inclusive.) @@ -463427,7 +492515,7 @@ The tabix (.tbi) and BAI index formats can handle individual chromosomes up to 5 sc:url "http://www.htslib.org/doc/tabix.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:description "Take the output from MLINK or LINKMAP and tabulate it in a more easily digestible form. It can also produce files suitable for graphing lod scores and for input to HOMOG, BTEST and FASTMAP." ; @@ -463440,14 +492528,14 @@ The tabix (.tbi) and BAI index formats can handle individual chromosomes up to 5 a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2066" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3336, edam:topic_3379 ; @@ -463471,7 +492559,7 @@ The tabix (.tbi) and BAI index formats can handle individual chromosomes up to 5 biotools:primaryContact "Nikola Milosevic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3379 ; sc:citation , @@ -463484,7 +492572,7 @@ The tabix (.tbi) and BAI index formats can handle individual chromosomes up to 5 sc:url "https://esm.uoi.gr/shiny/tableone/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196 ; @@ -463499,7 +492587,7 @@ The tabix (.tbi) and BAI index formats can handle individual chromosomes up to 5 sc:url "http://www.personal.psu.edu/jhm10/Vera/SoftwareC.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -463516,7 +492604,7 @@ The tabix (.tbi) and BAI index formats can handle individual chromosomes up to 5 biotools:primaryContact "June Johnston" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0128, @@ -463537,7 +492625,7 @@ Select species: Homo sapiens (Human) Mus musculus (Mouse).""" ; sc:url "http://iomics.ugent.be/tabloidproteome" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -463550,8 +492638,32 @@ Select species: Homo sapiens (Human) Mus musculus (Mouse).""" ; sc:softwareHelp ; sc:url "http://bio.cs.put.poznan.pl/programs/5191f1e39dfb89a857000001" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0659, + edam:topic_2229, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9294414", + "pubmed:35753698" ; + sc:description "A novel approach for accurate prediction of cell-specific long noncoding RNAs subcellular localization." ; + sc:featureList edam:operation_2489, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:name "TACOS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://balalab-skku.org/TACOS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -463568,7 +492680,7 @@ Select species: Homo sapiens (Human) Mus musculus (Mouse).""" ; biotools:primaryContact "Yoichi Takenaka" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0203, @@ -463588,7 +492700,7 @@ Select species: Homo sapiens (Human) Mus musculus (Mouse).""" ; sc:url "http://jbirc.jbic.or.jp/tact/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3382, @@ -463604,7 +492716,7 @@ Select species: Homo sapiens (Human) Mus musculus (Mouse).""" ; sc:url "http://www.tactics-toolbox.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0154, @@ -463625,7 +492737,7 @@ This code finds the locations of possible cryptic pockets within MD trajectories sc:url "https://github.com/Albert-Lau-Lab/tactics_protein_analysis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3382, edam:topic_3421 ; @@ -463642,7 +492754,7 @@ Tactics is a prototype application for assigning target coordinates to locations sc:url "https://github.com/atamai/tactics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -463659,22 +492771,8 @@ Tactics is a prototype application for assigning target coordinates to locations sc:url "https://www.mathworks.com/matlabcentral/fileexchange/39920-tactics-toolbox" ; biotools:primaryContact "Raz Shimoni" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3068 ; - sc:citation , - "pmcid:PMC6891499", - "pubmed:31752187" ; - sc:description """Proposal of the Tactile Glove Device. - -A tactile glove that let's you touch a virtual object and interact with it. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'tactile'""" ; - sc:license "MIT" ; - sc:name "tactile glove" ; - sc:url "https://github.com/danielholanda/Tactile-Glove" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3518 ; @@ -463688,32 +492786,39 @@ A tactile glove that let's you touch a virtual object and interact with it. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_1240" ; + sc:encodingFormat "http://edamontology.org/format_1957" ; + sc:name "PCR primers" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1240" ; - sc:name "PCR primers" ; - sc:sameAs "http://edamontology.org/data_1240" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_3917" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Count matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3917" ; - sc:name "Count matrix" ; - sc:sameAs "http://edamontology.org/data_3917" ], + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3707" ; - sc:name "Biodiversity data" ; - sc:sameAs "http://edamontology.org/data_3707" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3707" ; + sc:name "Biodiversity data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3697 ; + sc:author "Gerrit Botha", + "Jessica Holmes", + "Katie Lennard", + "Lindsay Clark" ; + sc:contributor "Gerrit Botha", + "Jessica Holmes", + "Katie Lennard", + "Lindsay Clark" ; sc:description "Targeted Amplicon Diversity Analysis - a DADA2-focused Nextflow workflow for any targeted amplicon region. Microbiome, amplicon analysis, 16S, 18S, ITS, COI, PacBio, Shoreline, Loop" ; sc:featureList edam:operation_3192, edam:operation_3237, @@ -463723,10 +492828,34 @@ A tactile glove that let's you touch a virtual object and interact with it. sc:name "TADA" ; sc:operatingSystem "Linux", "Mac" ; - sc:url "https://github.com/h3abionet/TADA" . + sc:url "https://github.com/h3abionet/TADA" ; + biotools:primaryContact "Christopher Fields" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_3474, + edam:topic_3512, + edam:topic_3673, + edam:topic_3958 ; + sc:citation , + "pmcid:PMC8886976", + "pubmed:35232478" ; + sc:description "Machine learning tool for functional annotation-based prioritisation of pathogenic CNVs." ; + sc:featureList edam:operation_3225, + edam:operation_3226, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "TADA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/jakob-he/TADA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0154, @@ -463745,7 +492874,7 @@ A tactile glove that let's you touch a virtual object and interact with it. biotools:primaryContact "Hong-Yu OU" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation , "pubmed:32252545" ; @@ -463760,14 +492889,14 @@ A topologically associated domain (TAD) is a self-interacting genomic block. Det a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0848" ; - sc:name "Raw sequence" ; - sc:sameAs "http://edamontology.org/data_0848" ] ; + sc:additionalType "http://edamontology.org/data_0848" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Raw sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -463786,7 +492915,7 @@ A topologically associated domain (TAD) is a self-interacting genomic block. Det biotools:primaryContact "Marc A. Marti-Renom" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0654, edam:topic_3170, @@ -463804,8 +492933,31 @@ TADCompare is an R package for differential Topologically Associated Domain (TAD sc:name "TADCompare" ; sc:url "https://github.com/dozmorovlab/TADCompare" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_0625, + edam:topic_3169, + edam:topic_3175, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9252839", + "pubmed:35524567" ; + sc:description "A web server facilitating the clinical diagnosis by pathogenicity assessment of structural variations disarranging 3D chromatin structure." ; + sc:featureList edam:operation_0337, + edam:operation_2436, + edam:operation_3226 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "TADeus2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://tadeus2.mimuw.edu.pl" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, edam:topic_0654, @@ -463825,8 +492977,30 @@ TADpole is a computational tool designed to identify and analyze the entire hier sc:name "TADpole" ; sc:url "https://github.com/3DGenomes/TADpole" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0621, + edam:topic_0749, + edam:topic_3169 ; + sc:citation , + "pmcid:PMC8892791", + "pubmed:35236295" ; + sc:description "A versatile regression framework for TAD identification, differential analysis and rearranged 3D genome prediction." ; + sc:featureList edam:operation_3435, + edam:operation_3501, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "TADreg" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/raphaelmourad/TADreg" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -463842,7 +493016,7 @@ TADpole is a computational tool designed to identify and analyze the entire hier sc:url "http://compbio.cs.brown.edu/projects/tadtree/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0637, @@ -463858,7 +493032,7 @@ TADpole is a computational tool designed to identify and analyze the entire hier sc:url "http://cals.arizona.edu/~anling/software.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3174, @@ -463872,7 +493046,7 @@ TADpole is a computational tool designed to identify and analyze the entire hier sc:url "http://omics.informatics.indiana.edu/TAG/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -463886,7 +493060,7 @@ TADpole is a computational tool designed to identify and analyze the entire hier sc:url "https://code.google.com/p/tag-db/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0654, @@ -463909,7 +493083,7 @@ TADpole is a computational tool designed to identify and analyze the entire hier sc:url "https://github.com/zhoujj2013/Tag-seq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3308 ; @@ -463926,7 +493100,7 @@ TADpole is a computational tool designed to identify and analyze the entire hier biotools:primaryContact "Schmieder R." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -463942,7 +493116,7 @@ TADpole is a computational tool designed to identify and analyze the entire hier sc:url "http://sourceforge.net/projects/tagcna/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3572 ; sc:citation "pubmed:19737799" ; @@ -463955,7 +493129,7 @@ TADpole is a computational tool designed to identify and analyze the entire hier biotools:primaryContact "TagDust Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -463974,7 +493148,7 @@ TADpole is a computational tool designed to identify and analyze the entire hier biotools:primaryContact "Timo Lassmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -463990,7 +493164,7 @@ TADpole is a computational tool designed to identify and analyze the entire hier sc:url "https://github.com/pelinakan/UBD.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121 ; @@ -464005,7 +493179,7 @@ TADpole is a computational tool designed to identify and analyze the entire hier biotools:primaryContact "ExPASy helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0654, @@ -464018,8 +493192,32 @@ TADpole is a computational tool designed to identify and analyze the entire hier sc:softwareHelp ; sc:url "http://dlin.web.unc.edu/software/tagimpute-2/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0621, + edam:topic_0637, + edam:topic_2814, + edam:topic_3366 ; + sc:citation , + "pmcid:PMC8541804", + "pubmed:34688246" ; + sc:description "Data(base) integration using the data warehousing approach." ; + sc:featureList edam:operation_0478, + edam:operation_2406, + edam:operation_2421, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "TAGOPSIN" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareHelp ; + sc:url "https://github.com/ebundhoo/TAGOPSIN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3053 ; sc:description "Time-series Analysis for Gene Set analyses gene set enrichment for expression time series, which can incorporate existing knowledge and analyze the dynamic property of a group of genes that have functional or structural associations." ; @@ -464030,7 +493228,7 @@ TADpole is a computational tool designed to identify and analyze the entire hier sc:url "http://bioinfo.au.tsinghua.edu.cn/software/TAGS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, edam:topic_3170, @@ -464049,30 +493247,30 @@ We introduce TagSeqTools as a flexible, general pipeline for facilitating the id a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3671" ; - sc:name "Text" ; - sc:sameAs "http://edamontology.org/data_3671" ], + sc:additionalType "http://edamontology.org/data_3671" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_3671" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Text" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0218 ; @@ -464093,7 +493291,7 @@ We introduce TagSeqTools as a flexible, general pipeline for facilitating the id biotools:primaryContact "tagtog" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "This algorithm provides the Orthogonal(Taguchi) Array with inputs: Q (the number of the levels) and N (the number of the factors)." ; sc:isAccessibleForFree true ; @@ -464105,8 +493303,37 @@ We introduce TagSeqTools as a flexible, general pipeline for facilitating the id sc:url "https://www.mathworks.com/matlabcentral/fileexchange/71628-taguchiarray" ; biotools:primaryContact "Chixin Xiao" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_0769, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9014879", + "pubmed:35181644" ; + sc:description "A Pipeline for Sequencing-Based Analysis of Non-Polyadenylated RNA 3’ End Processing." ; + sc:featureList edam:operation_0363, + edam:operation_0496, + edam:operation_3192, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Tailer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/TimNicholsonShaw/tailer" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091 ; sc:citation ; @@ -464117,7 +493344,7 @@ We introduce TagSeqTools as a flexible, general pipeline for facilitating the id sc:url "https://github.com/adnaniazi/tailfindr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0605, @@ -464136,7 +493363,7 @@ It's easiest to install Tailor with the help of the devtools package.""" ; sc:url "http://www.github.com/matei-ionita/Tailor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0082, edam:topic_3047, @@ -464155,7 +493382,7 @@ It's easiest to install Tailor with the help of the devtools package.""" ; . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3386, edam:topic_3500 ; @@ -464170,7 +493397,7 @@ The tail immersion assay is a widely used method for measuring acute thermal pai sc:url "https://github.com/chen42/openbehavior/tree/master/tailTimer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation "pubmed:19535537" ; @@ -464183,7 +493410,7 @@ The tail immersion assay is a widely used method for measuring acute thermal pai biotools:primaryContact "Schmidt B" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -464205,16 +493432,38 @@ The tail immersion assay is a widely used method for measuring acute thermal pai biotools:primaryContact "General comments or questions", "Seed or DNA stock questions (donations, availability, orders, etc)" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0622, + edam:topic_3303, + edam:topic_3337, + edam:topic_3673, + edam:topic_3958 ; + sc:citation ; + sc:description "Complete genomic profiles of 1,496 Taiwanese reveal curated medical insights." ; + sc:featureList edam:operation_3196, + edam:operation_3211, + edam:operation_3225, + edam:operation_3227, + edam:operation_3675 ; + sc:isAccessibleForFree true ; + sc:name "TaiwanGenomes" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://genomes.tw" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation ; @@ -464232,7 +493481,7 @@ The tail immersion assay is a widely used method for measuring acute thermal pai biotools:primaryContact "Claire Lemaitre" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, edam:topic_3308, @@ -464248,7 +493497,7 @@ TALC: Transcription-Aware Long Read Correction.""" ; sc:url "https://gitlab.igh.cnrs.fr/lbroseus/TALC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0089, edam:topic_0621, @@ -464270,7 +493519,7 @@ Output label: hierarchical nodes on directed graphs.""" ; sc:url "https://github.com/Shen-Lab/TALE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -464291,7 +493540,7 @@ Output label: hierarchical nodes on directed graphs.""" ; biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0749, @@ -464310,7 +493559,7 @@ Output label: hierarchical nodes on directed graphs.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, edam:topic_2229, @@ -464326,8 +493575,26 @@ talklr (intercellular crossTALK using Ligand-Receptor)uses Kullback-Leibler dive sc:name "talklr" ; sc:url "https://yuliangwang.shinyapps.io/talklr/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0610, + edam:topic_0780, + edam:topic_3071 ; + sc:citation , + "pubmed:35703577" ; + sc:description "A global tree allometry and crown architecture database." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Tallo" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/selva-lab-repo/TALLO" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -464345,7 +493612,7 @@ talklr (intercellular crossTALK using Ligand-Receptor)uses Kullback-Leibler dive "Julien JORDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation "pubmed:18976482" ; @@ -464359,7 +493626,7 @@ talklr (intercellular crossTALK using Ligand-Receptor)uses Kullback-Leibler dive biotools:primaryContact "Doreen Ware" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, edam:topic_0637, @@ -464381,7 +493648,7 @@ When you run TAMA based on the species rank analysis using the included example sc:url "https://github.com/jkimlab/TAMA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_0196, @@ -464401,7 +493668,7 @@ When you run TAMA based on the species rank analysis using the included example biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3053, @@ -464416,14 +493683,14 @@ When you run TAMA based on the species rank analysis using the included example a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3711" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -464439,7 +493706,7 @@ When you run TAMA based on the species rank analysis using the included example sc:url "http://tools.proteomecenter.org/wiki/index.php?title=Software:Tandem2XML" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0621 ; @@ -464453,8 +493720,30 @@ When you run TAMA based on the species rank analysis using the included example sc:name "TandemTools" ; sc:url "https://github.com/ablab/TandemTools" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_2885, + edam:topic_3518, + edam:topic_3676 ; + sc:citation , + "pubmed:36040167" ; + sc:description "Tangent normalization for somatic copy-number inference in cancer genome analysis." ; + sc:featureList edam:operation_0484, + edam:operation_3435, + edam:operation_3918 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Tangent" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/broadinstitute/tangent" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -464472,7 +493761,7 @@ When you run TAMA based on the species rank analysis using the included example biotools:primaryContact "Fuchou Tang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0634, edam:topic_3474 ; @@ -464488,7 +493777,7 @@ Predictive capabilities of TANGLE are demonstrated here with an application on t sc:url "https://github.com/samuelefiorini/tangle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -464504,7 +493793,7 @@ Predictive capabilities of TANGLE are demonstrated here with an application on t sc:url "http://tango.crg.es/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Plug-in" ; sc:applicationSubCategory edam:topic_0622, @@ -464527,7 +493816,7 @@ Predictive capabilities of TANGLE are demonstrated here with an application on t "Thomas Boudier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0654, @@ -464541,7 +493830,7 @@ Predictive capabilities of TANGLE are demonstrated here with an application on t sc:url "http://www.lsi.upc.edu/~valiente/tango/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053, @@ -464556,7 +493845,7 @@ Predictive capabilities of TANGLE are demonstrated here with an application on t sc:url "https://github.com/jiantao/Tangram#readme" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, @@ -464575,7 +493864,7 @@ Predictive capabilities of TANGLE are demonstrated here with an application on t biotools:primaryContact "Dr. Han Liang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2640, @@ -464595,7 +493884,7 @@ Predictive capabilities of TANGLE are demonstrated here with an application on t biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation ; @@ -464612,7 +493901,7 @@ Predictive capabilities of TANGLE are demonstrated here with an application on t biotools:primaryContact "Silvio C.E. Tosatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -464626,7 +493915,7 @@ Predictive capabilities of TANGLE are demonstrated here with an application on t biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3474, edam:topic_3794 ; @@ -464642,7 +493931,7 @@ With the widespread usage of Web applications, the security issues of source cod sc:url "https://github.com/das-lab/TAP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Suite" ; sc:applicationSubCategory edam:topic_0108, @@ -464662,7 +493951,7 @@ TAPAS is a collection of algorithms and software tools that are developed by the biotools:primaryContact "Klaas E. Stephan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0621, @@ -464681,7 +493970,7 @@ Tapestry is a tool to validate and edit small eukaryotic genome assemblies using sc:url "https://anaconda.org/bioconda/tapestry" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0166, @@ -464698,14 +493987,13 @@ Tapestry is a tool to validate and edit small eukaryotic genome assemblies using a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation ; @@ -464722,14 +494010,14 @@ Tapestry is a tool to validate and edit small eukaryotic genome assemblies using a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1212" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Laurent Gautier" ; @@ -464748,7 +494036,7 @@ Tapestry is a tool to validate and edit small eukaryotic genome assemblies using biotools:primaryContact "Ole Lund" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, edam:topic_3308, @@ -464773,7 +494061,7 @@ TappAS is a bioinformatics application containing a wide range of analyses to ev sc:url "https://app.tappas.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -464787,11 +494075,11 @@ TappAS is a bioinformatics application containing a wide range of analyses to ev "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/tappred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/tappred/" ; biotools:primaryContact "Dr G P S Raghava" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2830, @@ -464810,7 +494098,7 @@ Paste a single sequence or several sequences in FASTA format to use the predicto sc:url "https://tapredictor.herokuapp.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3673 ; sc:citation "pubmed:21672185" ; @@ -464826,7 +494114,7 @@ Paste a single sequence or several sequences in FASTA format to use the predicto biotools:primaryContact "TAPyR Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0128, @@ -464844,8 +494132,63 @@ Network alignment (NA) aims to find a node mapping between compared networks tha sc:name "TARA" ; sc:url "http://www.nd.edu/~cone/TARA/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence assembly" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Matrix" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2084" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Nucleic acid report" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2855" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Distance matrix" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3914" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Quality control report" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3301, + edam:topic_3339 ; + sc:author , + "Esperanza López", + "Luis Chapado" ; + sc:description "cg/wgMLST allele calling software, schema evaluation and allele distance estimation for outbreak reserch." ; + sc:featureList edam:operation_0289, + edam:operation_0495, + edam:operation_2478, + edam:operation_3209, + edam:operation_3840 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Taranis" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:softwareVersion "2.0.1" ; + sc:url "https://github.com/BU-ISCIII/taranis" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0219, @@ -464874,7 +494217,7 @@ Network alignment (NA) aims to find a node mapping between compared networks tha biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -464895,7 +494238,7 @@ Network alignment (NA) aims to find a node mapping between compared networks tha biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pmcid:PMC5499541", "pubmed:28402514" ; @@ -464907,7 +494250,7 @@ Network alignment (NA) aims to find a node mapping between compared networks tha sc:url "http://repeatexplorer.org/?page_id=826" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -464923,7 +494266,7 @@ Network alignment (NA) aims to find a node mapping between compared networks tha sc:url "http://www.dddc.ac.cn/tarfisdock/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, edam:topic_0769 ; @@ -464936,7 +494279,7 @@ The on-going data-science and AI revolution offers researchers with fresh set of sc:url "https://github.com/bengeof/Target2DeNovoDrug" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, @@ -464958,7 +494301,7 @@ The on-going data-science and AI revolution offers researchers with fresh set of biotools:primaryContact "Alona Sosinsky" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0128, @@ -464976,7 +494319,7 @@ The on-going data-science and AI revolution offers researchers with fresh set of "Jun Hu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2269, @@ -464993,18 +494336,8 @@ A DNA-binding protein identification method via using sequence-driven features." sc:name "TargetDBP+" ; sc:url "http://csbio.njust.edu.cn/bioinf/targetdbpplus/" . - a sc:SoftwareApplication ; - sc:description "CD Genomics provides high-quality data and integrated bioinformatics analyses services for targeted bisulfite sequencing including bisulfite conversion, primer/probe design and validation, hybridization/PCR amplification, library preparation, DNA sequencing and data analysis. CD Genomics uses both commercially designed capture arrays and custom-designed capture libraries to fully meet your research objectives. Please feel free to contact us for more information. We look forward to cooperating with you in the near future." ; - sc:name "Targeted Bisulfite Sequencing" ; - sc:url "https://www.cd-genomics.com/Targeted-Bisulfite-Sequencing.html" . - - a sc:SoftwareApplication ; - sc:description "Targeted RNA-sequencing selects and sequences subset transcripts of interests, increasing the coverage of a focused set of RNA sequences. It is an accurate method that generates genomic and gene-expression information of specific genome regions. The specific RNA sequences analysis enables RNA-Seq with high sensitivity and cost-effective access to NGS. By either targeted capture enrichment or amplicon-based approaches, Targeted RNA-Seq measures dozens to thousands of targets simultaneously. Enrichment assays also is a tool to identify both known and novel gene fusion partners in many sample types." ; - sc:name "Targeted RNA Sequencing" ; - sc:url "https://www.cd-genomics.com/targeted-rna-sequencing.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -465021,8 +494354,37 @@ A DNA-binding protein identification method via using sequence-driven features." sc:url "http://research.ics.aalto.fi/mi/software/rex12/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0204, + edam:topic_0602, + edam:topic_0659, + edam:topic_0749, + edam:topic_2229 ; + sc:citation , + "pmcid:PMC8946727", + "pubmed:35350773" ; + sc:description "A comprehensive web-atlas for p53, p63, and cell cycle-dependent gene regulation." ; + sc:featureList edam:operation_0314, + edam:operation_1781, + edam:operation_2437 ; + sc:isAccessibleForFree true ; + sc:name "TargetGeneReg" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "2.0" ; + sc:url "http://www.TargetGeneReg.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097 ; @@ -465038,7 +494400,7 @@ A DNA-binding protein identification method via using sequence-driven features." sc:url "http://app1.bioinformatics.mdanderson.org/tarhub/_design/basic/docs.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3512 ; sc:citation "pubmed:15980559" ; @@ -465054,7 +494416,7 @@ A DNA-binding protein identification method via using sequence-driven features." biotools:primaryContact "Dr. X. (Jack) Min" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3336 ; @@ -465074,7 +494436,7 @@ A DNA-binding protein identification method via using sequence-driven features." sc:url "http://targetmine.mizuguchilab.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0199, edam:topic_0209, @@ -465091,16 +494453,38 @@ TargetMM: Missense mutation is one kind of Single Nucleotide Variations, which m sc:name "TargetMM" ; sc:url "https://github.com/sera616/TargetMM.git" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_3170, + edam:topic_3452, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pubmed:34677573" ; + sc:description "Functional microRNA Target Prediction with Deep Neural Networks." ; + sc:featureList edam:operation_0463, + edam:operation_3359, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "TargetNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/mswzeus/TargetNet" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -465120,7 +494504,7 @@ TargetMM: Missense mutation is one kind of Single Nucleotide Variations, which m biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -465136,7 +494520,7 @@ TargetMM: Missense mutation is one kind of Single Nucleotide Variations, which m sc:url "http://mirna.imbb.forth.gr/Targetprofiler.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0154, @@ -465158,7 +494542,7 @@ TargetMM: Missense mutation is one kind of Single Nucleotide Variations, which m biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0128, @@ -465175,7 +494559,7 @@ TargetMM: Missense mutation is one kind of Single Nucleotide Variations, which m biotools:primaryContact "Dong-Jun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0659, @@ -465191,7 +494575,7 @@ TargetMM: Missense mutation is one kind of Single Nucleotide Variations, which m sc:url "http://liubioinfolab.org/targetS/mirna.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0659 ; @@ -465209,7 +494593,7 @@ TargetMM: Missense mutation is one kind of Single Nucleotide Variations, which m biotools:primaryContact "Yue Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3172 ; @@ -465229,7 +494613,7 @@ TargetMM: Missense mutation is one kind of Single Nucleotide Variations, which m biotools:primaryContact "Alvaro Cuadros-Inostroza" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -465245,7 +494629,7 @@ TargetMM: Missense mutation is one kind of Single Nucleotide Variations, which m sc:url "https://github.com/Eitan177/targetSeqView" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0202, edam:topic_2640, edam:topic_3336, @@ -465265,7 +494649,7 @@ You have reached the TargetTranslator, an interactive tool that enables the crea sc:url "http://targettranslator.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -465278,7 +494662,7 @@ You have reached the TargetTranslator, an interactive tool that enables the crea sc:url "http://www.csbio.sjtu.edu.cn:8080/TargetVita/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -465294,7 +494678,7 @@ You have reached the TargetTranslator, an interactive tool that enables the crea sc:url "http://www.compbio.dundee.ac.uk/taro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, edam:topic_2640, @@ -465312,7 +494696,7 @@ You have reached the TargetTranslator, an interactive tool that enables the crea sc:url "https://github.com/tcashby/tarpan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -465327,22 +494711,22 @@ You have reached the TargetTranslator, an interactive tool that enables the crea a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3620" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3168, @@ -465363,7 +494747,7 @@ You have reached the TargetTranslator, an interactive tool that enables the crea biotools:primaryContact "Gabriela Merino" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3168, @@ -465380,7 +494764,7 @@ You have reached the TargetTranslator, an interactive tool that enables the crea biotools:primaryContact "Sampson MG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -465396,7 +494780,7 @@ You have reached the TargetTranslator, an interactive tool that enables the crea sc:url "http://c2s2.yale.edu/software/TARV/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation "pubmed:2059814" ; @@ -465410,7 +494794,7 @@ You have reached the TargetTranslator, an interactive tool that enables the crea biotools:primaryContact "Author" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2269, @@ -465429,7 +494813,7 @@ You have reached the TargetTranslator, an interactive tool that enables the crea biotools:primaryContact "Contact Form (Lee A. D. Cooper)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3676 ; sc:citation "pubmed:21589938" ; @@ -465442,14 +494826,13 @@ You have reached the TargetTranslator, an interactive tool that enables the crea a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0114, edam:topic_3511 ; @@ -465467,7 +494850,7 @@ You have reached the TargetTranslator, an interactive tool that enables the crea biotools:primaryContact "Placeholder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0102, @@ -465485,7 +494868,7 @@ You have reached the TargetTranslator, an interactive tool that enables the crea sc:url "http://www.maizegenetics.net/tassel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, edam:topic_3382, @@ -465502,7 +494885,7 @@ You have reached the TargetTranslator, an interactive tool that enables the crea sc:url "https://tinyurl.com/TasselNetV2plus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3293, edam:topic_3943 ; @@ -465523,7 +494906,7 @@ This R package uses maximum likelihood methods to construct species trees from g sc:url "https://github.com/hillarykoch/TASTI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -465545,7 +494928,7 @@ This R package uses maximum likelihood methods to construct species trees from g biotools:primaryContact "Takeshi Itoh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -465565,14 +494948,14 @@ This R package uses maximum likelihood methods to construct species trees from g a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0160 ; @@ -465593,7 +494976,7 @@ This R package uses maximum likelihood methods to construct species trees from g biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -465613,7 +494996,7 @@ This R package uses maximum likelihood methods to construct species trees from g biotools:primaryContact "Samuel Cooper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3068, edam:topic_3071 ; @@ -465633,7 +495016,7 @@ A spreadsheet (Tautomer_database_release_3a.xlsx file) with 5,977 structures ext sc:url "https://cactus.nci.nih.gov/download/tautomer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2258, edam:topic_3068 ; @@ -465645,7 +495028,7 @@ Predict tautomers based on 80+ rules.""" ; sc:url "https://cactus.nci.nih.gov/tautomerizer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2259, @@ -465663,7 +495046,7 @@ Predict tautomers based on 80+ rules.""" ; sc:url "http://bioputer.mimuw.edu.pl/tav4sb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0769, @@ -465682,7 +495065,7 @@ Predict tautomers based on 80+ rules.""" ; sc:url "https://taverna.incubator.apache.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0769, @@ -465696,7 +495079,7 @@ Predict tautomers based on 80+ rules.""" ; sc:url "http://ms-utils.org/Taverna/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -465718,7 +495101,7 @@ Predict tautomers based on 80+ rules.""" ; biotools:primaryContact "taveRNA team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3293, @@ -465735,7 +495118,7 @@ Predict tautomers based on 80+ rules.""" ; sc:url "https://knightlab.ucsd.edu/wordpress/?p=194" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_1775, @@ -465751,7 +495134,7 @@ Predict tautomers based on 80+ rules.""" ; sc:url "http://tax4fun.gobics.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0659, @@ -465771,7 +495154,7 @@ Predict tautomers based on 80+ rules.""" ; biotools:primaryContact "Bernd Wemheuer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0637 ; sc:citation ; @@ -465791,7 +495174,7 @@ Predict tautomers based on 80+ rules.""" ; biotools:primaryContact "Zachary Foster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174, edam:topic_3293, @@ -465815,7 +495198,7 @@ Taxallnomy is an extension of NCBI Taxonomy in which all taxa comprising it are sc:url "http://bioinfo.icb.ufmg.br/taxallnomy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3050, edam:topic_3697 ; @@ -465831,7 +495214,7 @@ Taxallnomy is an extension of NCBI Taxonomy in which all taxa comprising it are sc:url "http://www.taxamat.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0637, @@ -465848,7 +495231,7 @@ Taxallnomy is an extension of NCBI Taxonomy in which all taxa comprising it are biotools:primaryContact "Johannes Droege" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0637, @@ -465864,10 +495247,9 @@ Taxallnomy is an extension of NCBI Taxonomy in which all taxa comprising it are a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2858" ; - sc:name "Ontology concept" ; - sc:sameAs "http://edamontology.org/data_2858" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2858" ; + sc:name "Ontology concept" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637 ; sc:citation , @@ -465898,10 +495280,9 @@ Taxallnomy is an extension of NCBI Taxonomy in which all taxa comprising it are a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2858" ; - sc:name "Ontology concept" ; - sc:sameAs "http://edamontology.org/data_2858" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2858" ; + sc:name "Ontology concept" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637 ; sc:citation , @@ -465932,10 +495313,9 @@ Taxallnomy is an extension of NCBI Taxonomy in which all taxa comprising it are a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2858" ; - sc:name "Ontology concept" ; - sc:sameAs "http://edamontology.org/data_2858" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2858" ; + sc:name "Ontology concept" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637 ; sc:citation , @@ -465966,10 +495346,9 @@ Taxallnomy is an extension of NCBI Taxonomy in which all taxa comprising it are a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2858" ; - sc:name "Ontology concept" ; - sc:sameAs "http://edamontology.org/data_2858" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2858" ; + sc:name "Ontology concept" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637 ; sc:citation , @@ -466000,10 +495379,9 @@ Taxallnomy is an extension of NCBI Taxonomy in which all taxa comprising it are a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2858" ; - sc:name "Ontology concept" ; - sc:sameAs "http://edamontology.org/data_2858" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2858" ; + sc:name "Ontology concept" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637 ; sc:citation , @@ -466033,7 +495411,7 @@ Taxallnomy is an extension of NCBI Taxonomy in which all taxa comprising it are sc:url "http://emboss.open-bio.org/rel/rel6/apps/taxgetup.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3314, @@ -466049,28 +495427,12 @@ Taxallnomy is an extension of NCBI Taxonomy in which all taxa comprising it are sc:url "https://www.mathworks.com/matlabcentral/fileexchange/9732-taxi-movement-of-bacteria-to-the-food" ; biotools:primaryContact "Shmuel Ben-Ezra" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0749, - edam:topic_3318, - edam:topic_3335 ; - sc:citation , - "pmcid:PMC6798948" ; - sc:description """2460 Qualitative study of obesity risk perception, knowledge, and behavior among Hispanic taxi drivers in New York. - -OBJECTIVES SPECIFIC AIMS: To access obesity risk perceptions, knowledge and behaviors of Hispanic taxi cab drivers and develop a better understanding of the factors that influence health outcomes in this population. METHODS STUDY POPULATION: Focus groups were conducted at NYC H+H Lincoln, where subjects were screened and recruited from taxi bases with the help of the local Federation of Taxi Drivers. This was done by utilizing flyers, messages through taxi-base radios, and referrals from livery cab drivers. Approval from the local Institutional Review Board was obtained. The research investigators, developed a structured focus group procedural protocol of open-ended interview questions related to cardiovascular disease. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'taxi cab drivers NYC', 'taxi cab drivers', 'NYC Latino taxi cab drivers', 'drivers'""" ; - sc:name "taxi drivers" ; - sc:url "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6798948/" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, @@ -466089,7 +495451,7 @@ OBJECTIVES SPECIFIC AIMS: To access obesity risk perceptions, knowledge and beha sc:url "https://doi.org/10.1101/2021.07.30.454505" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0637 ; @@ -466113,7 +495475,7 @@ OBJECTIVES SPECIFIC AIMS: To access obesity risk perceptions, knowledge and beha biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0602, @@ -466135,7 +495497,7 @@ OBJECTIVES SPECIFIC AIMS: To access obesity risk perceptions, knowledge and beha biotools:primaryContact "Webmaster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0637, @@ -466153,8 +495515,30 @@ OBJECTIVES SPECIFIC AIMS: To access obesity risk perceptions, knowledge and beha sc:url "https://bitbucket.org/dbeisser/taxmapper" ; biotools:primaryContact "Daniela Beisser" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:name "Taxonomy" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0637 ; + sc:citation ; + sc:description "R package to merge the NCBI taxonomy and the GBIF backbone taxonomy" ; + sc:featureList edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "CC0-1.0" ; + sc:name "Taxonbridge" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://CRAN.R-project.org/package=taxonbridge" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0637, @@ -466172,7 +495556,7 @@ OBJECTIVES SPECIFIC AIMS: To access obesity risk perceptions, knowledge and beha "Hong Ren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, edam:topic_3474, @@ -466190,7 +495574,7 @@ An ensemble learning based method for training Convolutional Neural Networks on sc:url "https://github.com/divya031090/TaxoNN_OTU" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0622, @@ -466207,14 +495591,14 @@ An ensemble learning based method for training Convolutional Neural Networks on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "DNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3174 ; sc:citation ; @@ -466231,18 +495615,18 @@ An ensemble learning based method for training Convolutional Neural Networks on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3299 ; @@ -466262,14 +495646,14 @@ An ensemble learning based method for training Convolutional Neural Networks on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3168 ; @@ -466286,7 +495670,7 @@ An ensemble learning based method for training Convolutional Neural Networks on biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0654, edam:topic_3050 ; @@ -466304,7 +495688,7 @@ TaxonTableTools (TTT) aims to provide easy-to-use tools for biologists and non-b sc:url "https://github.com/TillMacher/TaxonTableTools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0091, edam:topic_0637, @@ -466325,18 +495709,18 @@ The output is a NEX format tree file configured to be opened in FigTree, that us a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0637, @@ -466354,8 +495738,28 @@ The output is a NEX format tree file configured to be opened in FigTree, that us sc:url "https://github.com/C3BI-pasteur-fr/taxo_pack" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:citation , + "pmcid:PMC6591855", + "pubmed:31234910" ; + sc:description "A tool for drug resistance prediction from _M. tuberculosis_ genomic data (sequencing reads, alignments or variants)." ; + sc:featureList edam:operation_3482 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "tb-profiler" ; + sc:operatingSystem "Linux" ; + sc:softwareVersion "4.1.1-1", + "4.2.0" ; + sc:url "https://github.com/jodyphelan/TBProfiler" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -466374,12 +495778,12 @@ The output is a NEX format tree file configured to be opened in FigTree, that us "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/tbbpred/" ; + sc:url "http://webs.iiitd.edu.in/raghava/tbbpred/" ; biotools:primaryContact "Dr G.P.S.Raghava", "Ms. Navjyot Kaur" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3304, edam:topic_3384, @@ -466396,7 +495800,7 @@ Functional magnetic resonance imaging provides rich spatio-temporal data of huma sc:url "https://miplab.epfl.ch/index.php/software/tbcaps" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0659, edam:topic_0749, @@ -466417,7 +495821,7 @@ This database contains T-box riboswitch fold prediction, tRNA pairs from host or sc:url "https://tbdb.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0769, @@ -466432,8 +495836,30 @@ This database contains T-box riboswitch fold prediction, tRNA pairs from host or sc:url "https://github.com/Croxa/tbg-tools" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0196, + edam:topic_0203, + edam:topic_0632, + edam:topic_0780 ; + sc:citation , + "pubmed:35670735" ; + sc:description "A comprehensive genome platform for Brassicaceae plants." ; + sc:featureList edam:operation_0308, + edam:operation_0525, + edam:operation_0544, + edam:operation_0553 ; + sc:isAccessibleForFree true ; + sc:name "TBGR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.tbgr.org.cn" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099 ; @@ -466447,8 +495873,47 @@ This database contains T-box riboswitch fold prediction, tRNA pairs from host or sc:softwareHelp ; sc:url "http://rna.physics.missouri.edu/MCTBI/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Feature table" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Workflow" ; + sc:applicationSubCategory edam:topic_0219 ; + sc:description "Tbl2asn is a command-line program that automates the creation of sequence records for submission to GenBank. It uses many of the same functions as Genome Workbench but is driven generally by data files. Tbl2asn generates .sqn files for submission to GenBank." ; + sc:featureList edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:name "tbl2asn" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://www.ncbi.nlm.nih.gov/genbank/tbl2asn2/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3068 ; + sc:description "Convert a table into GFF3. This is not a very complex or advanced tool, it won't produce GFF with hierarchy, just flat gff3 which may be sufficient for visualisation purposes." ; + sc:featureList edam:operation_3434 ; + sc:isAccessibleForFree true ; + sc:name "tbl2gff3" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://usegalaxy.org.au/root?tool_id=toolshed.g2.bx.psu.edu%2Frepos%2Fiuc%2Ftbl2gff3%2Ftbl2gff3%2F1.2" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053, @@ -466462,8 +495927,33 @@ This database contains T-box riboswitch fold prediction, tRNA pairs from host or sc:softwareHelp ; sc:url "http://isu.indstate.edu/ybai2/Tbl2KnownGene/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0203, + edam:topic_0602, + edam:topic_0625, + edam:topic_2885 ; + sc:citation , + "pmcid:PMC9387650", + "pubmed:35977827" ; + sc:description "Telescoping bimodal latent Dirichlet allocation to identify expression QTLs across tissues." ; + sc:featureList edam:operation_0282, + edam:operation_2436, + edam:operation_3192, + edam:operation_3196, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "TBLDA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/gewirtz/TBLDA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0140, edam:topic_2275 ; @@ -466482,8 +495972,22 @@ ClusPro should only be used for noncommercial purposes.""" ; sc:name "TBM" ; sc:url "https://tbm.cluspro.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation ; + sc:description "TBpred is a prediction server that predicts four subcellular localization (cytoplasmic, integral membrane, secretory and membrane attached by lipid anchor) of mycobacterial proteins" ; + sc:featureList edam:operation_2945 ; + sc:name "tbpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/tbpred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0623, edam:topic_3168 ; @@ -466496,7 +496000,7 @@ ClusPro should only be used for noncommercial purposes.""" ; sc:url "https://github.com/CJ-Chen/TBtools/releases" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3304, edam:topic_3308, @@ -466512,7 +496016,7 @@ ClusPro should only be used for noncommercial purposes.""" ; sc:url "https://github.com/Soulnature/TCA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -466534,14 +496038,13 @@ ClusPro should only be used for noncommercial purposes.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2756" ; - sc:name "TCID" ; - sc:sameAs "http://edamontology.org/data_2756" ] ; + sc:additionalType "http://edamontology.org/data_2756" ; + sc:name "TCID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623, edam:topic_0820 ; @@ -466559,7 +496062,7 @@ ClusPro should only be used for noncommercial purposes.""" ; biotools:primaryContact "Prof. Milton H. Saier, Jr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -466575,7 +496078,7 @@ ClusPro should only be used for noncommercial purposes.""" ; sc:url "http://www.compgenome.org/TCGA-Assembler/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0196, @@ -466595,7 +496098,7 @@ ClusPro should only be used for noncommercial purposes.""" ; "Yuan Ji" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -466611,7 +496114,7 @@ ClusPro should only be used for noncommercial purposes.""" ; sc:url "http://www.liuzlab.org/TCGA2STAT/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_2640 ; sc:citation ; @@ -466626,7 +496129,7 @@ ClusPro should only be used for noncommercial purposes.""" ; sc:url "https://wiki.nci.nih.gov/display/TCGA/TCGA+DCC+Web+Service+User's+Guide" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -466649,7 +496152,7 @@ ClusPro should only be used for noncommercial purposes.""" ; "Tiago Chedraoui Silva" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -466677,7 +496180,7 @@ ClusPro should only be used for noncommercial purposes.""" ; biotools:primaryContact "Tiago C. Silva" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3307 ; sc:description "A suite of helper functions for checking and manipulating TCGA data including data obtained from the curatedTCGAData experiment package. These functions aim to simplify and make working with TCGA data more manageable." ; @@ -466694,10 +496197,10 @@ ClusPro should only be used for noncommercial purposes.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3786" ; - sc:name "Query script" ; - sc:sameAs "http://edamontology.org/data_3786" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3786" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Query script" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0602, @@ -466722,7 +496225,7 @@ ClusPro should only be used for noncommercial purposes.""" ; sc:url "http://viroblast.pungentdb.org.cn/TCM-Blast/viroblast.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0154, edam:topic_0602, @@ -466740,24 +496243,42 @@ Traditional Chinese medicine (TCM) has been widely used in China and show effect sc:name "TCMIO" ; sc:url "http://tcmio.xielab.net" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0780, + edam:topic_3303, + edam:topic_3373, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9113410", + "pubmed:35591924" ; + sc:description "An integrative database for traditional Chinese medicine plant genomes." ; + sc:featureList edam:operation_2421, + edam:operation_3208, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:name "TCMPG" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://cbcb.cdutcm.edu.cn/TCMPG/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0914" ; - sc:name "Codon usage data" ; - sc:sameAs "http://edamontology.org/data_0914" ], + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_0914" ; + sc:name "Codon usage data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ], + sc:additionalType "http://edamontology.org/data_1276" ; + sc:name "Nucleic acid features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2160" ; - sc:name "Fickett testcode plot" ; - sc:sameAs "http://edamontology.org/data_2160" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2160" ; + sc:name "Fickett testcode plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0623 ; sc:citation , @@ -466787,7 +496308,7 @@ Traditional Chinese medicine (TCM) has been widely used in China and show effect sc:url "http://emboss.open-bio.org/rel/rel6/apps/tcode.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -466810,16 +496331,37 @@ Traditional Chinese medicine (TCM) has been widely used in China and show effect "Ulf Schaefer", "Vladimir B. Bajic" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0749, + edam:topic_3169, + edam:topic_3295, + edam:topic_3674 ; + sc:citation , + "pmcid:PMC8728270", + "pubmed:34718747" ; + sc:description "A comprehensive database for decoding the regulatory transcription co-factors in human and mouse." ; + sc:featureList edam:operation_1781, + edam:operation_2436, + edam:operation_2437 ; + sc:isAccessibleForFree true ; + sc:name "TcoFBase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://tcof.liclab.net/TcoFbase" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -466841,7 +496383,7 @@ Traditional Chinese medicine (TCM) has been widely used in China and show effect biotools:primaryContact "Cedric Notredame" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2830, @@ -466861,7 +496403,7 @@ Traditional Chinese medicine (TCM) has been widely used in China and show effect biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0632, edam:topic_2275, @@ -466885,7 +496427,7 @@ tcr_mhci_pos selection [,mhc_a=None [,tcr_a = None [,tcr_b = None [,mhc_a_init=1 sc:url "https://tcr3d.ibbr.umd.edu/tcr_com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2830, @@ -466907,7 +496449,7 @@ tcr_mhci_pos selection [,mhc_a=None [,tcr_a = None [,tcr_b = None [,mhc_a_init=1 sc:url "https://github.com/PaccMann/TITAN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, edam:topic_0605, @@ -466922,7 +496464,7 @@ tcr_mhci_pos selection [,mhc_a=None [,tcr_a = None [,tcr_b = None [,mhc_a_init=1 sc:url "http://opig.stats.ox.ac.uk/webapps/stcrpred/TCRBuilder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0625, @@ -466942,7 +496484,7 @@ TCRD is the central resource behind the Illuminating the Druggable Genome Knowle sc:url "http://juniper.health.unm.edu/tcrd/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0804, edam:topic_2229, edam:topic_3170 ; @@ -466958,7 +496500,7 @@ TCRdb contains more than 277 million highly reliable TCR sequences from over 826 sc:url "http://bioinfo.life.hust.edu.cn/TCRdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2269, @@ -466979,7 +496521,7 @@ TCRdb contains more than 277 million highly reliable TCR sequences from over 826 "Harri Lähdesmäki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2830, edam:topic_3324, @@ -466995,7 +496537,7 @@ TCRdb contains more than 277 million highly reliable TCR sequences from over 826 sc:url "http://tools.iedb.org/tcrmatch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2830 ; @@ -467008,7 +496550,7 @@ TCRdb contains more than 277 million highly reliable TCR sequences from over 826 biotools:primaryContact "Ragul Gowthaman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -467027,7 +496569,7 @@ TCRdb contains more than 277 million highly reliable TCR sequences from over 826 sc:url "https://www.github.com/amoesch/TCRpair" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -467044,7 +496586,7 @@ TCRdb contains more than 277 million highly reliable TCR sequences from over 826 sc:url "http://darwin.uvigo.es/software/tcs.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3168, @@ -467060,7 +496602,7 @@ TCRdb contains more than 277 million highly reliable TCR sequences from over 826 sc:url "http://tcoffee.crg.cat/apps/tcoffee/do:core" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -467076,7 +496618,7 @@ TCRdb contains more than 277 million highly reliable TCR sequences from over 826 sc:url "http://cibio.up.pt/software/tcsBU/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3169, @@ -467097,7 +496639,7 @@ TCRdb contains more than 277 million highly reliable TCR sequences from over 826 biotools:primaryContact "Mengjun Wu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602 ; @@ -467115,7 +496657,7 @@ TCRdb contains more than 277 million highly reliable TCR sequences from over 826 biotools:primaryContact "Zoppoli Pietro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, edam:topic_3382 ; @@ -467131,8 +496673,29 @@ a TDA analysis and visualization tool, by importing the data and metadata, and c sc:name "TDAview" ; sc:url "https://voineagulab.github.io/TDAview/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_3304, + edam:topic_3334, + edam:topic_3360, + edam:topic_3419, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9198070", + "pubmed:35701407" ; + sc:description "The two decades brainclinics research archive for insights in neurophysiology (TDBRAIN) database." ; + sc:featureList edam:operation_2428 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "TDBRAIN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BCD-gitprojects/TDBRAIN/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3342 ; @@ -467141,7 +496704,7 @@ a TDA analysis and visualization tool, by importing the data and metadata, and c sc:url "https://datacatalog.elixir-luxembourg.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -467162,7 +496725,7 @@ a TDA analysis and visualization tool, by importing the data and metadata, and c biotools:primaryContact "TDR-Target Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0634, @@ -467177,12 +496740,79 @@ a TDA analysis and visualization tool, by importing the data and metadata, and c sc:softwareHelp ; sc:url "http://people.virginia.edu/~wc9c/TDTPC/Download.htm" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0204, + edam:topic_0602, + edam:topic_0749, + edam:topic_0780 ; + sc:citation , + "pubmed:35713985" ; + sc:description "Web server tool for the analysis of transcription factor binding sites in plants." ; + sc:featureList edam:operation_0372, + edam:operation_0445 ; + sc:isAccessibleForFree true ; + sc:name "TDTHub" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://acrab.cnb.csic.es/TDTHub/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3304, + edam:topic_3384, + edam:topic_3419, + edam:topic_3474 ; + sc:citation , + "pubmed:34761367" ; + sc:description "An Ensemble of Transfer Hierarchical Graph Convolutional Networks for Disorder Diagnosis." ; + sc:featureList edam:operation_3435, + edam:operation_3927, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "TE-HI-GCN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/llt1836/TE-HI-GCN" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0769, + edam:topic_0798, + edam:topic_3295, + edam:topic_3299 ; + sc:citation , + "pmcid:PMC9004194", + "pubmed:35413944" ; + sc:description "Calculate TE density for every gene in a genome, along sliding windows, upstream, intragenically, and downstream of genes, and correctly allocate TE density values to a gene along TE Order and Superfamily identities. Our main goal in writing this tool was to provide a clear and concise pipeline/metric to aid in the study of TE presence relative to genes." ; + sc:featureList edam:operation_0314, + edam:operation_0335, + edam:operation_3196 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "TE Density" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sjteresi/TE_Density" . + a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web service" ; sc:applicationSubCategory edam:topic_0749, @@ -467209,7 +496839,7 @@ a TDA analysis and visualization tool, by importing the data and metadata, and c sc:url "http://www.teaas.cn/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091, @@ -467222,7 +496852,7 @@ a TDA analysis and visualization tool, by importing the data and metadata, and c biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0780, edam:topic_3170, @@ -467241,7 +496871,7 @@ Tea plant (Camellia sinensis) is one of the world’s most important beverage cr sc:url "http://teacon.wchoda.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -467256,7 +496886,7 @@ Tea plant (Camellia sinensis) is one of the world’s most important beverage cr sc:url "https://code.google.com/p/teak/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0780, edam:topic_3300, edam:topic_3315, @@ -467281,7 +496911,7 @@ Implements models of leaf temperature using energy balance""" ; sc:url "https://github.com/cdmuir/tealeaves-ms" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -467303,7 +496933,7 @@ Implements models of leaf temperature using energy balance""" ; biotools:primaryContact "Joaquín Dopazo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_2229, edam:topic_2885, @@ -467322,7 +496952,7 @@ Tea is a highly cross-pollinated, woody, perennial tree. High heterozygosity com sc:url "http://indianteagenome.in:8080/teamid/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0219, edam:topic_3068, edam:topic_3303, @@ -467340,8 +496970,29 @@ Tea is a highly cross-pollinated, woody, perennial tree. High heterozygosity com sc:name "TeamTat" ; sc:url "https://www.teamtat.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0601, + edam:topic_0602, + edam:topic_0625 ; + sc:citation , + "pubmed:35759515" ; + sc:description "Upstream and Downstream Proteomics Analysis." ; + sc:featureList edam:operation_0417, + edam:operation_2436, + edam:operation_3645 ; + sc:isAccessibleForFree true ; + sc:name "TeaProt" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://tea.coffeeprot.com/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218 ; sc:author "Andrés Cañada" ; @@ -467359,7 +497010,7 @@ Tea is a highly cross-pollinated, woody, perennial tree. High heterozygosity com "Martin Krallinger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -467374,10 +497025,9 @@ Tea is a highly cross-pollinated, woody, perennial tree. High heterozygosity com a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_2229, @@ -467398,8 +497048,44 @@ Tea is a highly cross-pollinated, woody, perennial tree. High heterozygosity com sc:softwareHelp ; sc:url "https://github.com/Galaxeee/TedSim" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3299 ; + sc:citation , + "pmcid:PMC8636989", + "pubmed:34870190" ; + sc:description "Task-based Extensible Evolutionary algorithm Platform for Optimization and Real-time Testing." ; + sc:featureList edam:operation_0479 ; + sc:isAccessibleForFree true ; + sc:name "Teeport" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://teeport.ml/tasks" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_3170, + edam:topic_3308, + edam:topic_3577 ; + sc:citation , + "pubmed:35426914" ; + sc:description "Estimation of Treatment EFFects on transcriptomic data using causal random forest." ; + sc:featureList edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "teff" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://teff-package.github.io" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0769, edam:topic_0798, @@ -467418,7 +497104,7 @@ TEfinder uses discordant reads to detect novel transposable element insertion ev sc:url "https://github.com/VistaSohrab/TEfinder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0621, edam:topic_0625, @@ -467436,7 +497122,7 @@ TEfinder uses discordant reads to detect novel transposable element insertion ev sc:url "https://github.com/darioelias/TEGA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -467452,7 +497138,7 @@ TEfinder uses discordant reads to detect novel transposable element insertion ev sc:url "https://tavazoielab.c2b2.columbia.edu/TEISER/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, edam:topic_0659, @@ -467474,7 +497160,7 @@ Tejaas is based on the hypothesis that a trans-eQTL should regulate the expressi sc:url "https://github.com/soedinglab/tejaas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3263, edam:topic_3300 ; @@ -467494,7 +497180,7 @@ Telegram Survey Bot is free software: you can redistribute it and/or modify it u sc:url "https://github.com/Raze97/Telegram-Survey-Bot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2259 ; sc:description "Read/write functions for Telemac hydrodynamic model files (both Selafin and Leonard formats)" ; @@ -467507,24 +497193,8 @@ Telegram Survey Bot is free software: you can redistribute it and/or modify it u sc:url "https://www.mathworks.com/matlabcentral/fileexchange/25021-telemac-tools" ; biotools:primaryContact "Thomas Benson" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3063, - edam:topic_3263, - edam:topic_3403 ; - sc:citation "pmcid:PMC6813662", - "pubmed:31642860" ; - sc:description """contributions, difficulties and key factors for implementation in the prison setting. - -Information and communication technologies are transforming the way we understand health, via a hyper-connected world in which patients, professionals and society take on new challenges and roles. This change is creating an ecosystem called connected health, in which telemedicine acquires special importance when distance (not only geographical), is a critical factor. It can respond to financial, social or safety needs or questions of dignity, as is the case with prisoners when they are transferred handcuffed and under custody to hospitals. Bringing health services closer to patients who cannot autonomously travel contributes towards humanising healthcare. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'prison'""" ; - sc:name "telemedicine" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31642860" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -467538,7 +497208,7 @@ Information and communication technologies are transforming the way we understan sc:url "http://sourceforge.net/p/telescoper/wiki/Home/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3379, edam:topic_3412 ; @@ -467552,8 +497222,52 @@ Information and communication technologies are transforming the way we understan sc:url "https://tellaprialbi.37binary.com" ; biotools:primaryContact . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2182" ; + sc:name "Sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0798 ; + sc:description "TElocal is a tool that utilizes both uniquely and ambiguously mapped reads to quantify transposable element expression at the locus level. TElocal takes RNA-seq (and similar data) and annotates reads to both genes & transposable elements." ; + sc:featureList edam:operation_2495 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "TElocal" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://hammelllab.labsites.cshl.edu/software/#TElocal" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0196, + edam:topic_0621, + edam:topic_3360 ; + sc:citation , + "pmcid:PMC8963315", + "pubmed:35022670" ; + sc:description "A method for reporting chromosome-specific telomere lengths from long reads." ; + sc:featureList edam:operation_0310, + edam:operation_3182, + edam:operation_3198 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Telogator" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/zstephens/telogator" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3383, @@ -467570,7 +497284,7 @@ Information and communication technologies are transforming the way we understan sc:url "http://bioinformatics.fccc.edu/software/OpenSource/telometric/telometric.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0632, @@ -467587,8 +497301,32 @@ Information and communication technologies are transforming the way we understan sc:url "https://www.mathworks.com/matlabcentral/fileexchange/44573-telotool-terminal-restriction-fragment-analysis" ; biotools:primaryContact "Janett Göhring" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0194, + edam:topic_0196, + edam:topic_0621, + edam:topic_2229, + edam:topic_3500 ; + sc:citation ; + sc:description "Local assembly of long reads enables phylogenomics of transposable elements in a polyploid cell line." ; + sc:featureList edam:operation_0310, + edam:operation_3180, + edam:operation_3192, + edam:operation_3198, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "BSD-2-Clause" ; + sc:name "TELR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/bergmanlab/telr" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2885, @@ -467603,7 +497341,7 @@ Information and communication technologies are transforming the way we understan sc:url "https://github.com/JialiUMassWengLab/TEMP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0621, @@ -467624,7 +497362,7 @@ TEMP2 is an algorithm for detecting transposon insertions using short-read whole sc:url "https://github.com/weng-lab/TEMP2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3299, edam:topic_3474 ; @@ -467638,7 +497376,7 @@ TEMP2 is an algorithm for detecting transposon insertions using short-read whole sc:url "https://drive.google.com/drive/folders/15WULR5__6k47iRotRPl3H7ghi3RpeNXH" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -467656,7 +497394,7 @@ TEMP2 is an algorithm for detecting transposon insertions using short-read whole sc:url "http://www.templateflow.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3295, @@ -467676,7 +497414,7 @@ TEMP2 is an algorithm for detecting transposon insertions using short-read whole sc:url "https://github.com/pkhoueiry/TempoMAGE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, edam:topic_0637, @@ -467691,7 +497429,7 @@ TEMP2 is an algorithm for detecting transposon insertions using short-read whole sc:url "http://togodb.org/db/tempura" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -467707,7 +497445,7 @@ TEMP2 is an algorithm for detecting transposon insertions using short-read whole sc:url "https://sites.google.com/site/cosbyntu/softwares/tenet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, edam:topic_2229, @@ -467725,7 +497463,7 @@ A tool for reconstructing Transfer Entropy-based causal gene NETwork from pseudo sc:url "https://github.com/neocaleb/TENET" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0659, @@ -467747,7 +497485,7 @@ While working on transcripts such as CDS, alternative splicing, circular RNAs or sc:url "http://webtom.cabgrid.res.in/tissue_enrich/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3316 ; sc:citation ; @@ -467760,7 +497498,7 @@ While working on transcripts such as CDS, alternative splicing, circular RNAs or biotools:primaryContact "Laura Frølich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3360, edam:topic_3474 ; @@ -467779,7 +497517,7 @@ TensorFlow is an end-to-end open source platform for machine learning. It has a sc:url "https://www.tensorflow.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2269, edam:topic_3304 ; @@ -467793,7 +497531,7 @@ TensorFlow is an end-to-end open source platform for machine learning. It has a sc:url "https://github.com/EtienneCmb/tensorpac" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0780, edam:topic_3071, @@ -467808,7 +497546,7 @@ The Tenuipalpidae is one of the most important families of phytophagous mites. S sc:url "https://www.tenuipalpidae.ibilce.unesp.br/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3308 ; @@ -467826,7 +497564,7 @@ The Tenuipalpidae is one of the most important families of phytophagous mites. S biotools:primaryContact "VJ Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3068, @@ -467844,7 +497582,7 @@ Documenting Contributions to Scientific Scholarly Output with CRediT.""" ; sc:url "https://martonbalazskovacs.shinyapps.io/tenzing/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3510, @@ -467860,7 +497598,7 @@ Documenting Contributions to Scientific Scholarly Output with CRediT.""" ; sc:url "http://tools.iedb.org/tepitool/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3053, @@ -467879,7 +497617,7 @@ Documenting Contributions to Scientific Scholarly Output with CRediT.""" ; biotools:primaryContact "Manuela Hummel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3293, @@ -467893,7 +497631,7 @@ Documenting Contributions to Scientific Scholarly Output with CRediT.""" ; sc:url "http://mbb.univ-montp2.fr/MBB/download_sources/16__TERA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3047, @@ -467917,7 +497655,7 @@ Documenting Contributions to Scientific Scholarly Output with CRediT.""" ; sc:url "https://github.com/mourelatos-lab/TERA-Seq_manuscript" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation ; @@ -467933,7 +497671,7 @@ Documenting Contributions to Scientific Scholarly Output with CRediT.""" ; sc:url "http://abria.github.io/TeraStitcher/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, edam:topic_0621, @@ -467949,7 +497687,7 @@ Documenting Contributions to Scientific Scholarly Output with CRediT.""" ; sc:url "https://github.com/muriloHoracio/TERL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3473 ; sc:citation ; @@ -467964,7 +497702,7 @@ Documenting Contributions to Scientific Scholarly Output with CRediT.""" ; sc:url "http://www.nactem.ac.uk/software/termine" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, edam:topic_3303, @@ -467981,8 +497719,29 @@ Terminology is the most basic information that researchers and literature analys sc:name "TermInformer" ; sc:url "https://github.com/prayagtiwari/TermInformer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_3063, + edam:topic_3068, + edam:topic_3315 ; + sc:citation , + "pubmed:35612097" ; + sc:description "Detecting Semantic Differences in HL7 FHIR CodeSystems." ; + sc:featureList edam:operation_0224, + edam:operation_0337, + edam:operation_3096 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "TerminoDiff" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/itcr-uni-luebeck/TerminoDiff" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_3510 ; @@ -467994,18 +497753,18 @@ Terminology is the most basic information that researchers and literature analys a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ], + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene expression matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_3033" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -468027,7 +497786,7 @@ Terminology is the most basic information that researchers and literature analys biotools:primaryContact "Matthew N. McCall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, edam:topic_3047, @@ -468046,7 +497805,7 @@ Terpenome defines as all terpenoid-like and terpenoid-derived compounds, includi sc:url "http://terokit.qmclab.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3174, edam:topic_3697, @@ -468064,7 +497823,7 @@ Microbiome studies focused on the genetic potential of microbial communities (me sc:url "https://webapp.ufz.de/tmdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -468081,13 +497840,36 @@ Microbiome studies focused on the genetic potential of microbial communities (me sc:url "http://www.sailing.cs.cmu.edu/main/?page_id=444" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "TESLATOTO Merupakan Bandar Togel Online terpercaya dengan diskon mencapai 66% menyediakan beragam jenis permainan hanya menggunakan 1 userid" ; sc:name "TeslaToto" ; sc:url "https://139.59.99.87/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0769, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pubmed:35876845" ; + sc:description "Consensus-specific quantification of transposable element expression preventing biases from exonized fragments." ; + sc:featureList edam:operation_3192, + edam:operation_3198, + edam:operation_3223, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "TEspeX" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/fansalon/TEspeX/tree/fansalon/TEspeX" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3293, @@ -468104,7 +497886,7 @@ Microbiome studies focused on the genetic potential of microbial communities (me sc:url "http://cran.r-project.org/web/packages/TESS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:32873432" ; sc:description "A Novel MATLAB Program for Automated Tessitura Analysis." ; @@ -468116,7 +497898,7 @@ Microbiome studies focused on the genetic potential of microbial communities (me sc:url "https://github.com/Allerseelen/Tessa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3384, @@ -468136,7 +497918,7 @@ Microbiome studies focused on the genetic potential of microbial communities (me "M. Bardies" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3385, @@ -468154,7 +497936,7 @@ Microbiome studies focused on the genetic potential of microbial communities (me biotools:primaryContact "Miklos Erdelyi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -468171,8 +497953,30 @@ Microbiome studies focused on the genetic potential of microbial communities (me biotools:primaryContact "Hao Lin", "Lin Ding Group" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0203, + edam:topic_0602, + edam:topic_3173, + edam:topic_3400 ; + sc:citation , + "pmcid:PMC9264601", + "pubmed:35799269" ; + sc:description "Identification of a cytokine-dominated immunosuppressive class in squamous cell lung carcinoma with implications for immunotherapy resistance." ; + sc:featureList edam:operation_2436, + edam:operation_3223, + edam:operation_3463 ; + sc:isAccessibleForFree true ; + sc:name "tex" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://liwzlab.cn/tex" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3068 ; sc:description "Query PubMed and store references in BibTeX format." ; @@ -468186,7 +497990,7 @@ Microbiome studies focused on the genetic potential of microbial communities (me sc:url "http://www.bioinformatics.org/texmed/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0218, @@ -468203,16 +498007,58 @@ Microbiome studies focused on the genetic potential of microbial communities (me sc:softwareHelp ; sc:url "https://cloud.r-project.org/package=text" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_3068, + edam:topic_3384, + edam:topic_3444, + edam:topic_3474 ; + sc:citation , + "pubmed:35914394" ; + sc:description "A transformer-Based neural language model that synthesizes brain activation maps from free-form text queries." ; + sc:featureList edam:operation_0224, + edam:operation_3908, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Text2Brain" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://braininterpreter.com" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0622, + edam:topic_3372 ; + sc:citation , + "pmcid:PMC9135226", + "pubmed:35617194" ; + sc:description "Simplifying the definition and parsing of text formats in bioinformatics." ; + sc:featureList edam:operation_0335, + edam:operation_1812, + edam:operation_3096 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "TextFormats" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/ggonnella/textformats" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -468243,14 +498089,12 @@ Microbiome studies focused on the genetic potential of microbial communities (me a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3756" ; - sc:name "Localisation score" ; - sc:sameAs "http://edamontology.org/data_3756" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3756" ; + sc:name "Localisation score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -468279,17 +498123,51 @@ Microbiome studies focused on the genetic potential of microbial communities (me sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/textsearch.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2269, - edam:topic_3379 ; - sc:citation , - "pubmed:31373358" ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | A general semiparametric Bayesian discrete-time recurrent events model | Event time variables are often recorded in a discrete fashion, especially in the case of patient-reported outcomes. This work is motivated by a study of illicit drug users, in which time to drug use cessation has been recorded as a number of whole months. Existing approaches for handling such discrete data include treating the survival times as continuous (with adjustments for inevitable tied outcomes), or using discrete models that omit important features like random effects. We provide a general Bayesian discrete-time proportional hazards model, incorporating a number of features popular in continuous-time models such as competing risks and frailties. Our model also provides flexible baseline hazards for time effects, as well as generalized additive models style semiparametric incorporation of other time-varying covariates" ; - sc:name "textttbrea" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31373358" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0749, + edam:topic_2229, + edam:topic_2640, + edam:topic_3068 ; + sc:citation , + "pmcid:PMC8728118", + "pubmed:34986601" ; + sc:description "A comprehensive manually curated database for transcription factors and related markers in specific cell and tissue types in human." ; + sc:featureList edam:operation_0224, + edam:operation_0415, + edam:operation_3778 ; + sc:isAccessibleForFree true ; + sc:name "TF-Marker" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bio.liclab.net/TF-Marker/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_3384, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9156873", + "pubmed:35636345" ; + sc:description "A practical introduction to EEG Time-Frequency Principal Components Analysis (TF-PCA)." ; + sc:featureList edam:operation_2939, + edam:operation_3891, + edam:operation_3960 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "TF-PCA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/NDCLab/tfpca-tutorial" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0204, edam:topic_0749, @@ -468312,7 +498190,7 @@ Paste input genes below or upload a gene set file to get started. Clicking the d sc:url "http://bioinformatics.psb.ugent.be/webtools/TF2Network/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, edam:topic_3047, @@ -468327,7 +498205,7 @@ Paste input genes below or upload a gene set file to get started. Clicking the d sc:url "https://github.com/canisw/tf3p" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0659 ; @@ -468342,7 +498220,7 @@ Paste input genes below or upload a gene set file to get started. Clicking the d sc:url "http://tfam.lcb.uu.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, edam:topic_3474 ; @@ -468356,7 +498234,7 @@ Paste input genes below or upload a gene set file to get started. Clicking the d sc:url "https://github.com/SchulzLab/TFAnalysis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269 ; @@ -468375,7 +498253,7 @@ Paste input genes below or upload a gene set file to get started. Clicking the d biotools:primaryContact "Liuba Nausicaa Martino" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -468391,7 +498269,7 @@ Paste input genes below or upload a gene set file to get started. Clicking the d sc:url "http://tfbind.hgc.jp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -468407,7 +498285,7 @@ Paste input genes below or upload a gene set file to get started. Clicking the d sc:url "http://tfbs.genereg.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -468429,7 +498307,7 @@ Paste input genes below or upload a gene set file to get started. Clicking the d biotools:primaryContact "TFBScluster Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0203, @@ -468446,14 +498324,14 @@ Paste input genes below or upload a gene set file to get started. Clicking the d a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0749 ; @@ -468475,7 +498353,7 @@ Paste input genes below or upload a gene set file to get started. Clicking the d biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0602, @@ -468495,7 +498373,7 @@ Paste input genes below or upload a gene set file to get started. Clicking the d biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2815, @@ -468514,10 +498392,9 @@ Paste input genes below or upload a gene set file to get started. Clicking the d a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation , @@ -468547,7 +498424,7 @@ Paste input genes below or upload a gene set file to get started. Clicking the d sc:url "http://emboss.open-bio.org/rel/rel6/apps/tfextract.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, @@ -468568,7 +498445,7 @@ Paste input genes below or upload a gene set file to get started. Clicking the d biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3169 ; @@ -468585,7 +498462,7 @@ Paste input genes below or upload a gene set file to get started. Clicking the d biotools:primaryContact "Alberto Marchesi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -468598,7 +498475,7 @@ Paste input genes below or upload a gene set file to get started. Clicking the d sc:url "http://homepages.inf.ed.ac.uk/s0976841/TFInfer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, edam:topic_3169, @@ -468611,10 +498488,9 @@ Paste input genes below or upload a gene set file to get started. Clicking the d a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0958" ; - sc:name "Tool metadata" ; - sc:sameAs "http://edamontology.org/data_0958" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0958" ; + sc:name "Tool metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -468644,7 +498520,7 @@ Paste input genes below or upload a gene set file to get started. Clicking the d sc:url "http://emboss.open-bio.org/rel/rel6/apps/tfm.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -468663,7 +498539,7 @@ Paste input genes below or upload a gene set file to get started. Clicking the d biotools:primaryContact "TFM-explorer team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3068, edam:topic_3318, @@ -468681,7 +498557,7 @@ PIV(Particle Image Velocimetry), Traction force microscopy, Template matching (O sc:url "https://sites.google.com/site/qingzongtseng/tfm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -468696,7 +498572,7 @@ PIV(Particle Image Velocimetry), Traction force microscopy, Template matching (O sc:url "http://maya.ccg.unam.mx/~tfmodell/tutorial.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0204, edam:topic_0621, @@ -468715,7 +498591,7 @@ TFmotifView is a web server that allows to study the distribution of known trans sc:url "http://bardet.u-strasbg.fr/tfmotifview/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0099, @@ -468731,7 +498607,7 @@ TFmotifView is a web server that allows to study the distribution of known trans sc:url "https://evryrna.ibisc.univ-evry.fr/evryrna/tfold" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3292, edam:topic_3295, @@ -468753,7 +498629,7 @@ TFPred is a webserver for the identification of transcription factors and transc sc:url "http://lin-group.cn/server/TFPred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0203, @@ -468773,18 +498649,15 @@ TFPred is a webserver for the identification of transcription factors and transc a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ], + sc:additionalType "http://edamontology.org/data_0896" ; + sc:name "Protein report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3512 ; sc:citation , @@ -468813,8 +498686,26 @@ TFPred is a webserver for the identification of transcription factors and transc sc:softwareVersion "r6" ; sc:url "http://emboss.open-bio.org/rel/rel6/apps/tfscan.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3053, + edam:topic_3307 ; + sc:citation , + "pmcid:PMC5175166", + "pubmed:28000771" ; + sc:description "Transcription Factor Target Enrichment Analysis" ; + sc:name "TFTA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/babelomics/TFTEA" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0204, @@ -468837,7 +498728,7 @@ TFPred is a webserver for the identification of transcription factors and transc sc:url "https://github.com/rasma774/Tftenricher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3308 ; sc:description "Package to work with TF data." ; @@ -468853,7 +498744,7 @@ TFPred is a webserver for the identification of transcription factors and transc biotools:primaryContact "Shweta Gopaulakrishnan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0208, edam:topic_2640, @@ -468874,8 +498765,31 @@ Cancer is one of the leading causes of death globally and is expected to be the sc:name "TG-LASSO" ; sc:url "https://github.com/emad2/TG-LASSO" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_3170, + edam:topic_3308, + edam:topic_3315, + edam:topic_3318 ; + sc:citation , + "pmcid:PMC9041782", + "pubmed:35706920" ; + sc:description "Temporal gene coexpression network analysis using a low-rank plus sparse framework." ; + sc:featureList edam:operation_2426, + edam:operation_3463, + edam:operation_3766 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "TGCnA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/QiZhangStat/TGCnA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, edam:topic_0769, @@ -468905,7 +498819,7 @@ Cancer is one of the leading causes of death globally and is expected to be the sc:url "http://tgex.genecards.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0199, @@ -468927,14 +498841,14 @@ Cancer is one of the leading causes of death globally and is expected to be the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3477" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0196 ; @@ -468952,7 +498866,7 @@ Cancer is one of the leading causes of death globally and is expected to be the biotools:primaryContact "Yannick Wurm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -468968,7 +498882,7 @@ Cancer is one of the leading causes of death globally and is expected to be the sc:url "https://gph.niid.go.jp/tgs-tb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3474, @@ -468987,7 +498901,7 @@ Cancer is one of the leading causes of death globally and is expected to be the sc:url "https://github.com/violet-sto/TGSA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3170, @@ -469009,7 +498923,7 @@ Third generation sequencing can de novo detect long reads of several thousand ba sc:url "https://github.com/BioinformaticsSTU/TGStools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_0654, @@ -469032,7 +498946,7 @@ Third generation sequencing can de novo detect long reads of several thousand ba biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3056, edam:topic_3293, @@ -469056,7 +498970,7 @@ The primary application of THD is the quantitative analysis and identification o sc:url "https://github.com/rasigadelab/thd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -469076,7 +498990,7 @@ The primary application of THD is the quantitative analysis and identification o biotools:primaryContact "Hideaki Sugawara" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation , @@ -469093,7 +499007,7 @@ The primary application of THD is the quantitative analysis and identification o biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -469109,10 +499023,10 @@ The primary application of THD is the quantitative analysis and identification o a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0077 ; sc:author "Micha Sammeth" ; @@ -469133,14 +499047,13 @@ The primary application of THD is the quantitative analysis and identification o a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Micha Sammeth" ; @@ -469160,7 +499073,7 @@ The primary application of THD is the quantitative analysis and identification o biotools:primaryContact "Micha Sammeth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0797, @@ -469179,14 +499092,14 @@ The primary application of THD is the quantitative analysis and identification o a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3005" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_3005" ; + sc:name "Experimental measurement" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0622, @@ -469224,7 +499137,7 @@ The primary application of THD is the quantitative analysis and identification o sc:url "https://hyperbrowser.uio.no" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -469244,8 +499157,47 @@ The primary application of THD is the quantitative analysis and identification o sc:url "http://www.thebiogrid.org/" ; biotools:primaryContact "BioGRID Support" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Data" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application", + "Web application" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3383, + edam:topic_3474 ; + sc:citation ; + sc:description "The Image Data Explorer (IDE) is a web application that integrates interactive linked visualization of images and derived data points with exploratory data analysis methods, annotation, classification and feature selection functionalities. A cloud deployment is accessible at https://shiny-portal.embl.de/shinyapps/app/01_image-data-explorer." ; + sc:featureList edam:operation_0226, + edam:operation_2939, + edam:operation_2940, + edam:operation_2943, + edam:operation_2945, + edam:operation_3432, + edam:operation_3552, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "The Image Data Explorer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "v1.3.2" ; + sc:url "https://git.embl.de/heriche/image-data-explorer" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation ; @@ -469262,7 +499214,7 @@ The primary application of THD is the quantitative analysis and identification o biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -469298,7 +499250,7 @@ The primary application of THD is the quantitative analysis and identification o sc:url "http://www.ithanet.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -469319,7 +499271,7 @@ The primary application of THD is the quantitative analysis and identification o biotools:primaryContact "IMP Bioinformatics Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Library" ; sc:applicationSubCategory edam:topic_0154, @@ -469346,7 +499298,7 @@ The primary application of THD is the quantitative analysis and identification o sc:url "http://www.oglcnac.mcw.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0140, edam:topic_0621, edam:topic_0625, @@ -469371,7 +499323,7 @@ Cell cycle-specific analysis of protein localization and abundance, with gene ex sc:url "http://TheCellVision.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0203, @@ -469387,7 +499339,7 @@ Cell cycle-specific analysis of protein localization and abundance, with gene ex sc:url "http://metadb.bmes.nthu.edu.tw/theme/home.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0637, edam:topic_0659, @@ -469406,7 +499358,7 @@ themetagenomics provides functions to explore topics generated from 16S rRNA seq sc:url "https://cran.r-project.org/package=themetagenomics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814, @@ -469423,14 +499375,14 @@ themetagenomics provides functions to explore topics generated from 16S rRNA seq a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -469444,16 +499396,50 @@ themetagenomics provides functions to explore topics generated from 16S rRNA seq sc:softwareHelp ; sc:url "https://sourceforge.net/projects/protms/files/theospec/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "A webserver for the prediction of T-helper cell Epitopes." ; + sc:featureList edam:operation_2945 ; + sc:name "thepred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/thepred/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3336, + edam:topic_3373, + edam:topic_3375, + edam:topic_3379 ; + sc:citation , + "pmcid:PMC8728281", + "pubmed:34718717" ; + sc:description "Facilitating drug discovery with enriched comparative data of targeted agents." ; + sc:featureList edam:operation_2421, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:name "Therapeutic target database" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://idrblab.org/ttd/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:name "Mass spectrometry data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_3702" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -469469,7 +499455,7 @@ themetagenomics provides functions to explore topics generated from 16S rRNA seq sc:url "https://github.com/compomics/thermo-msf-parser" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0632, @@ -469484,8 +499470,51 @@ themetagenomics provides functions to explore topics generated from 16S rRNA seq sc:url "https://github.com/drmaize/ThermoAlign" ; biotools:primaryContact "Randall J. Wisser" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_3068, + edam:topic_3297, + edam:topic_3300, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC9089862", + "pubmed:35536846" ; + sc:description "A database of the phylogeny and physiology of thermophilic and hyperthermophilic organisms." ; + sc:featureList edam:operation_0335, + edam:operation_2421, + edam:operation_2422, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:name "ThermoBase" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://togodb.org/db/thermobase" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0123, + edam:topic_0128, + edam:topic_0130 ; + sc:citation , + "pmcid:PMC8963285", + "pubmed:35020787" ; + sc:description "A webserver to predict protein thermal stability." ; + sc:featureList edam:operation_0248, + edam:operation_0276 ; + sc:isAccessibleForFree true ; + sc:name "Thermometer" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://service.tartaglialab.com/new_submission/thermometer_file" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, edam:topic_0199, @@ -469502,7 +499531,7 @@ themetagenomics provides functions to explore topics generated from 16S rRNA seq sc:url "http://biosig.unimelb.edu.au/thermomutdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0199, edam:topic_0736, @@ -469524,7 +499553,7 @@ ThermoNet is a computational framework for quantitative prediction of the change sc:url "https://github.com/gersteinlab/ThermoNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -469541,7 +499570,7 @@ ThermoNet is a computational framework for quantitative prediction of the change biotools:primaryContact "Hao Lin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Web application" ; sc:applicationSubCategory edam:topic_0130, @@ -469562,30 +499591,27 @@ ThermoNet is a computational framework for quantitative prediction of the change a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2737" ; - sc:name "FIG ID" ; - sc:sameAs "http://edamontology.org/data_2737" ], + sc:additionalType "http://edamontology.org/data_2737" ; + sc:name "FIG ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2737" ; - sc:name "FIG ID" ; - sc:sameAs "http://edamontology.org/data_2737" ], + sc:additionalType "http://edamontology.org/data_2737" ; + sc:name "FIG ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2737" ; - sc:name "FIG ID" ; - sc:sameAs "http://edamontology.org/data_2737" ] ; + sc:additionalType "http://edamontology.org/data_2737" ; + sc:name "FIG ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2711" ; - sc:name "Genome report" ; - sc:sameAs "http://edamontology.org/data_2711" ], + sc:additionalType "http://edamontology.org/data_2711" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Genome report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0797 ; sc:citation , @@ -469601,7 +499627,7 @@ ThermoNet is a computational framework for quantitative prediction of the change sc:url "http://www.theseed.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, edam:topic_0602, @@ -469617,8 +499643,35 @@ Estimating efficacy of gene-target-disease associations is a fundamental step in sc:name "ThETA" ; sc:url "https://github.com/vittoriofortino84/ThETA" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0194, + edam:topic_0621, + edam:topic_0769, + edam:topic_3315 ; + sc:citation ; + sc:description "Tree House Explorer (THEx) is a novel genome browser for exploring phylogenetic and genomic data in one succinct place." ; + sc:featureList edam:operation_0323, + edam:operation_0325, + edam:operation_0567, + edam:operation_3208, + edam:operation_3216 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "THEx" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/harris-2374/THEx" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3316, edam:topic_3382 ; @@ -469636,7 +499689,7 @@ To develop an automated retina layer thickness measurement tool for the ImageJ p sc:url "https://github.com/DanielMaidana/ThicknessTool" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3304, @@ -469656,7 +499709,7 @@ To develop an automated retina layer thickness measurement tool for the ImageJ p "Martin N. Hebart" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0637, edam:topic_3174, @@ -469672,7 +499725,7 @@ To develop an automated retina layer thickness measurement tool for the ImageJ p sc:url "http://github.com/phiweger/thinspace" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, edam:topic_3303, @@ -469687,8 +499740,24 @@ To develop an automated retina layer thickness measurement tool for the ImageJ p sc:name "ThorAxe" ; sc:url "http://www.lcqb.upmc.fr/ThorAxe" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC5536290", + "pubmed:28759605" ; + sc:description "THPdb is a comprehensive database based on approved and approved/investigational therapeutic peptides compiling important information about these peptides, like their description, sequence, indication, mechanism of action, pharmacodynamics, toxicity, metabolism, absorption, half life, volume of distribution, clearance rate, patent information, interaction with other drugs, targets, physicochemical properties, etc." ; + sc:featureList edam:operation_2945 ; + sc:name "thpdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/thpdb/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -469710,7 +499779,7 @@ To develop an automated retina layer thickness measurement tool for the ImageJ p biotools:primaryContact "THREaD Mapper support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -469726,7 +499795,7 @@ To develop an automated retina layer thickness measurement tool for the ImageJ p sc:url "http://bioinf.cs.ucl.ac.uk/?id=747" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_2814, edam:topic_3474 ; @@ -469744,7 +499813,7 @@ We propose a new template-based modelling method called ThreaderAI to improve pr sc:url "https://github.com/ShenLab/ThreaderAI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0160, @@ -469762,7 +499831,7 @@ We propose a new template-based modelling method called ThreaderAI to improve pr biotools:primaryContact "Sam Meyer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0736, @@ -469779,10 +499848,10 @@ We propose a new template-based modelling method called ThreaderAI to improve pr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0196, @@ -469800,7 +499869,7 @@ We propose a new template-based modelling method called ThreaderAI to improve pr sc:url "http://zhanglab.ccmb.med.umich.edu/ThreaDomEx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -469816,7 +499885,7 @@ We propose a new template-based modelling method called ThreaderAI to improve pr biotools:primaryContact "Paul Stothard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "This tool can convert 3-letter amino acid codes to 1-letter amino acid codes and inversely." ; @@ -469830,7 +499899,7 @@ We propose a new template-based modelling method called ThreaderAI to improve pr biotools:primaryContact "Three to One support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3055 ; @@ -469848,7 +499917,7 @@ We propose a new template-based modelling method called ThreaderAI to improve pr biotools:primaryContact "David Bryant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2640, edam:topic_3382 ; @@ -469862,8 +499931,30 @@ The automatic segmentation of polyp in endoscopy images is crucial for early dia sc:name "ThresholdNet" ; sc:url "https://github.com/Guo-Xiaoqing/ThresholdNet" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0108, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pubmed:35662472" ; + sc:description "A New Approach for Accurate Prediction of Human RNA N7-Methylguanosine Sites." ; + sc:featureList edam:operation_2409 ; + sc:isAccessibleForFree true ; + sc:name "THRONE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://thegleelab.org/THRONE/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0219, edam:topic_0780 ; @@ -469880,7 +499971,7 @@ The automatic segmentation of polyp in endoscopy images is crucial for early dia sc:url "http://thairicestarch.kku.ac.th" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0621, @@ -469895,7 +499986,7 @@ The automatic segmentation of polyp in endoscopy images is crucial for early dia biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, edam:topic_3295 ; @@ -469910,7 +500001,7 @@ THUNDER is a deconvolution method specifically tailored to address unique challe sc:url "https://github.com/brycerowland/thundeR.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3383, @@ -469927,7 +500018,7 @@ THUNDER is a deconvolution method specifically tailored to address unique challe sc:url "http://zitmen.github.io/thunderstorm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0154, @@ -469949,7 +500040,7 @@ THUNDER is a deconvolution method specifically tailored to address unique challe biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation , "pmcid:PMC6713979", @@ -469960,8 +500051,21 @@ THUNDER is a deconvolution method specifically tailored to address unique challe sc:name "thurstonianIRT" ; sc:url "https://github.com/paul-buerkner/thurstonianIRT" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "This web server allows browsing, searching and fetching of the Biomarkers data related to ThyCanBio database." ; + sc:featureList edam:operation_2945 ; + sc:name "thycanbio" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/thycanbio/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0623, @@ -469985,7 +500089,7 @@ THUNDER is a deconvolution method specifically tailored to address unique challe "Peter Reilly" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0099, @@ -470000,7 +500104,7 @@ THUNDER is a deconvolution method specifically tailored to address unique challe sc:url "http://sourceforge.net/projects/ti2biop/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3474 ; sc:citation ; @@ -470011,7 +500115,7 @@ THUNDER is a deconvolution method specifically tailored to address unique challe sc:url "https://galaxyproject.eu/tiaas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2885, @@ -470033,7 +500137,7 @@ THUNDER is a deconvolution method specifically tailored to address unique challe biotools:primaryContact "D. Hong" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0621, @@ -470061,7 +500165,7 @@ In the Polish translation of the Harry Potter book series, the Sorting Hat (whic sc:url "https://ibe-uw.github.io/tiara" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0621, @@ -470081,7 +500185,7 @@ In the Polish translation of the Harry Potter book series, the Sorting Hat (whic biotools:primaryContact "TiCo Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3423 ; @@ -470094,7 +500198,7 @@ In the Polish translation of the Harry Potter book series, the Sorting Hat (whic sc:url "https://tictrainer.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0089, @@ -470115,12 +500219,35 @@ In the Polish translation of the Harry Potter book series, the Sorting Hat (whic sc:softwareHelp ; sc:url "http://www.ieom-tm.com/tidb" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_3474, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8969291", + "pubmed:35354356" ; + sc:description "TIDD is a universal post-processing tool which supports confident peptide identifications regardless of the search engine adopted." ; + sc:featureList edam:operation_3643, + edam:operation_3644, + edam:operation_3649 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "TIDD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/HanyangBISLab/TIDD.git" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script" ; sc:applicationSubCategory edam:topic_3175, @@ -470138,7 +500265,7 @@ In the Polish translation of the Harry Potter book series, the Sorting Hat (whic "Jesper Eisfeldt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, edam:topic_3170, @@ -470158,7 +500285,7 @@ We validated TIDE performance on predicting anti-PD1 and anti-CTLA4 response acr sc:url "http://tide.dfci.harvard.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3170, @@ -470172,7 +500299,7 @@ We validated TIDE performance on predicting anti-PD1 and anti-CTLA4 response acr biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -470194,7 +500321,7 @@ A reliable alternative to popular microbiome analysis R packages. We provide sta sc:url "https://github.com/CharlieCarpenter/tidyMicro" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -470211,7 +500338,7 @@ A reliable alternative to popular microbiome analysis R packages. We provide sta biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, edam:topic_0659, @@ -470228,7 +500355,7 @@ The Tumor IsomiR Encyclopedia (TIE) is a dynamic tool that allows researchers to sc:url "https://github.com/Gu-Lab-RBL-NCI/TIE-database/wiki" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -470248,8 +500375,20 @@ The Tumor IsomiR Encyclopedia (TIE) is a dynamic tool that allows researchers to biotools:primaryContact , . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "Application of TieDIE to The Cancer Genome Atlas and a breast cancer cell line dataset identified key signaling pathways, with examples impinging on MYC activity. Interlinking genes are predicted to correspond to essential components of cancer signaling and may provide a mechanistic explanation of tumor character and suggest subtype-specific drug targets." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "TieDie" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/epaull/TieDIE" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0203, edam:topic_0602, @@ -470265,7 +500404,7 @@ TiFoSi (Tissues: Forces & Signalling) is a computational tool to simulate the ce sc:url "http://tifosi.thesimbiosys.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0625, edam:topic_0769, @@ -470286,18 +500425,16 @@ Beta coefficients require units and thus are not comparable between non-converti a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ], + sc:additionalType "http://edamontology.org/data_3273" ; + sc:name "Sample ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3273" ; - sc:name "Sample ID" ; - sc:sameAs "http://edamontology.org/data_3273" ], + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Genotype/phenotype report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:name "Gene expression profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -470319,7 +500456,7 @@ Beta coefficients require units and thus are not comparable between non-converti sc:url "https://www.synapse.org/TIGAR_V2_Resource_GTExV8" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -470337,7 +500474,7 @@ Beta coefficients require units and thus are not comparable between non-converti sc:url "http://www.bme.virginia.edu/csbl/Downloads1-tiger.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -470355,8 +500492,33 @@ Beta coefficients require units and thus are not comparable between non-converti sc:url "https://github.com/TheKorenLab/TIGER" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0196, + edam:topic_3170, + edam:topic_3308, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8958329", + "pubmed:35355524" ; + sc:description "Tiglon enables accurate transcriptome assembly via integrating mappings of different aligners." ; + sc:featureList edam:operation_0523, + edam:operation_0525, + edam:operation_2429, + edam:operation_3258 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Tiglon" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/yutingsdu/Tiglon-v.1.1.git" ; + biotools:primaryContact "Ting Yu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3175 ; @@ -470375,7 +500537,7 @@ Beta coefficients require units and thus are not comparable between non-converti biotools:primaryContact "BC Cancer Canada's Michael Smith Genome Sciences Centre" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -470399,7 +500561,7 @@ Beta coefficients require units and thus are not comparable between non-converti biotools:primaryContact "johnq@tigr.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0160, @@ -470419,18 +500581,18 @@ Beta coefficients require units and thus are not comparable between non-converti a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_1638" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_3111" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Processed microarray data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3111" ; - sc:name "Processed microarray data" ; - sc:sameAs "http://edamontology.org/data_3111" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -470452,7 +500614,7 @@ Beta coefficients require units and thus are not comparable between non-converti biotools:primaryContact "Antti Honkela" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -470469,14 +500631,13 @@ Beta coefficients require units and thus are not comparable between non-converti a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1141" ; - sc:name "TIGRFam ID" ; - sc:sameAs "http://edamontology.org/data_1141" ] ; + sc:additionalType "http://edamontology.org/data_1141" ; + sc:name "TIGRFam ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1354" ; - sc:name "Sequence profile" ; - sc:sameAs "http://edamontology.org/data_1354" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1354" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0623 ; @@ -470494,7 +500655,7 @@ Beta coefficients require units and thus are not comparable between non-converti sc:url "http://tigrfams.jcvi.org/cgi-bin/index.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382, @@ -470507,8 +500668,30 @@ Beta coefficients require units and thus are not comparable between non-converti sc:softwareHelp ; sc:url "http://ibios.dkfz.de/tbi/index.php/software/further-software/99-tikal" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0769, + edam:topic_2640, + edam:topic_3360, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC8889499", + "pubmed:35251953" ; + sc:description "Deep Learning-Based Mapping of Tumor Infiltrating Lymphocytes in Whole Slide Images of 23 Types of Cancer." ; + sc:featureList edam:operation_2429, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "TIL classification" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ShahiraAbousamra/til_classification" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3179 ; sc:citation ; @@ -470525,7 +500708,7 @@ Beta coefficients require units and thus are not comparable between non-converti sc:url "http://www.bioinformatics.csiro.au/tilehmm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3572 ; sc:citation "pubmed:18507856" ; @@ -470535,7 +500718,7 @@ Beta coefficients require units and thus are not comparable between non-converti sc:url "http://denverlab.science.oregonstate.edu/tileqc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -470555,7 +500738,7 @@ Beta coefficients require units and thus are not comparable between non-converti biotools:primaryContact "Zhenyu Xu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -470570,8 +500753,28 @@ Beta coefficients require units and thus are not comparable between non-converti sc:softwareHelp ; sc:url "http://tilingscan.uv.es/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9293566", + "pubmed:35859930" ; + sc:description "Transformer in M-Net for Retinal Vessel Segmentation." ; + sc:featureList edam:operation_3443, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "TiM-Net" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ZX-ECJTU/TiM-Net" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3518 ; @@ -470586,7 +500789,7 @@ Beta coefficients require units and thus are not comparable between non-converti biotools:primaryContact "TiMAT2 Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3344 ; @@ -470603,7 +500806,7 @@ Beta coefficients require units and thus are not comparable between non-converti biotools:primaryContact "ryan muddiman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085 ; sc:citation , @@ -470623,7 +500826,7 @@ Beta coefficients require units and thus are not comparable between non-converti biotools:primaryContact "Chiara Romualdi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654 ; @@ -470638,7 +500841,7 @@ Beta coefficients require units and thus are not comparable between non-converti sc:url "http://aimed11.unipv.it/TimeClust/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3518 ; @@ -470656,7 +500859,7 @@ Beta coefficients require units and thus are not comparable between non-converti biotools:primaryContact "Yu Chuan Tai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -470679,7 +500882,7 @@ Beta coefficients require units and thus are not comparable between non-converti sc:url "https://github.com/nesscoder/TimeCycle-data" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3383, @@ -470695,7 +500898,7 @@ Beta coefficients require units and thus are not comparable between non-converti sc:url "http://www.informatik.uni-ulm.de/ni/mitarbeiter/HKestler/tla/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0204, @@ -470718,7 +500921,7 @@ TimelessFlex is a flexible framework for investigating chromatin state trajector sc:url "https://github.com/henriettemiko/TimelessFlex" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -470736,7 +500939,7 @@ Build, manage and visualize temporal multilayer networks, as well as extract act sc:url "https://apps.cytoscape.org/apps/TimeNexus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, @@ -470756,7 +500959,7 @@ Build, manage and visualize temporal multilayer networks, as well as extract act sc:url "http://github.com/abodein/timeOmics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, edam:topic_0749, @@ -470779,7 +500982,7 @@ Analyzing time series differential gene expression and other multi-omics data is sc:url "https://github.com/ashleymaeconard/TIMEOR.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, edam:topic_3170, @@ -470799,18 +501002,15 @@ Tumor progression and the efficacy of immunotherapy are strongly influenced by t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ], + sc:additionalType "http://edamontology.org/data_0920" ; + sc:name "Genotype/phenotype report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2523" ; - sc:name "Phylogenetic data" ; - sc:sameAs "http://edamontology.org/data_2523" ] ; + sc:additionalType "http://edamontology.org/data_2523" ; + sc:name "Phylogenetic data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Plug-in" ; sc:applicationSubCategory edam:topic_0092, @@ -470833,7 +501033,7 @@ Tumor progression and the efficacy of immunotherapy are strongly influenced by t biotools:primaryContact "Maia Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, edam:topic_3382 ; @@ -470846,7 +501046,7 @@ Tumor progression and the efficacy of immunotherapy are strongly influenced by t sc:url "https://github.com/cbg-ethz/timeseriesNEM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0621, edam:topic_3382 ; @@ -470858,7 +501058,7 @@ Tumor progression and the efficacy of immunotherapy are strongly influenced by t sc:url "http://vis4sense.github.io/timesets" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -470876,13 +501076,38 @@ Tumor progression and the efficacy of immunotherapy are strongly influenced by t "Windows" ; sc:url "https://github.com/GuanLab/timesias.git" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0659, + edam:topic_3170, + edam:topic_3308, + edam:topic_3518 ; + sc:citation , + "pmcid:PMC8775016", + "pubmed:35052413" ; + sc:description "A Web Service for Analysing Time Course Transcriptome Data with Multiple Conditions." ; + sc:featureList edam:operation_0315, + edam:operation_2436, + edam:operation_3223, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:name "TimesVector-web" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://cobi.knu.ac.kr/webserv/TimesVector-web" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0637, edam:topic_3293 ; - sc:citation "pubmed:21622662" ; + sc:citation , + "pubmed:21622662", + "pubmed:28387841" ; sc:description "A public resource for knowledge on the timescale and evolutionary history of life.A search utility allows exploration of the thousands of divergence times among organisms in the published literature. A tree-based (hierarchical) system is used to identify all published molecular time estimates bearing on the divergence of two chosen taxa, such as species, compute summary statistics, and present the results." ; sc:featureList edam:operation_0324, edam:operation_2421 ; @@ -470894,7 +501119,7 @@ Tumor progression and the efficacy of immunotherapy are strongly influenced by t sc:url "http://www.timetree.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3170, edam:topic_3300, @@ -470914,7 +501139,7 @@ TimeTrial is an interactive application for the design and optimization of omic sc:url "https://nesscoder.shinyapps.io/TimeTrial_Synthetic/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, @@ -470934,7 +501159,7 @@ TimeTrial is an interactive application for the design and optimization of omic biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -470951,7 +501176,7 @@ TimeTrial is an interactive application for the design and optimization of omic biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0804, edam:topic_2640, @@ -470969,7 +501194,7 @@ TimeTrial is an interactive application for the design and optimization of omic biotools:primaryContact "Zlatko Trajanoski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -470989,20 +501214,53 @@ TimeTrial is an interactive application for the design and optimization of omic biotools:primaryContact , "Daryl Shanley" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description """Timothy is a novel large scale parallel computational model allowing 3-D simulations of cell colonies growing and interacting with variable environment in previously unavailable tissue scale. +The cells are modeled as individuals located in the lattice-free 3-D space. The model incorporates cellular environment modelled in a continuous manner, mathematical description based on partial differential equations is formulated for selected important components of the environment. Discrete and continuous formulations are efficiently coupled in one model and allow considerations on different scales: sub-cellular, cellular and tissue scale. +High parallel scalability achieved allows simulation of up to 109 individual cells. This large scale computational approach allows for simulations to be carried out over realistic spatial scales up to 1cm in size i.e. the tissue scale.""" ; + sc:isAccessibleForFree true ; + sc:license "gnuplot" ; + sc:name "Timothy" ; + sc:operatingSystem "Linux" ; + sc:softwareHelp ; + sc:softwareVersion "0.9" ; + sc:url "https://timothy.icm.edu.pl/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0769, + edam:topic_3520 ; + sc:citation , + "pubmed:35758608" ; + sc:description "A workflow to convert trapped ion mobility data to open data formats." ; + sc:featureList edam:operation_0335, + edam:operation_1812 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "TIMSCONVER" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/gtluu/timsconvert" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_1638" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1669" ; - sc:name "P-value" ; - sc:sameAs "http://edamontology.org/data_1669" ], + sc:additionalType "http://edamontology.org/data_1669" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "P-value" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -471021,7 +501279,7 @@ TimeTrial is an interactive application for the design and optimization of omic biotools:primaryContact "Bjarne Johannessen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_2840 ; @@ -471039,7 +501297,7 @@ TinderMIX is a new computational framework for dose- and time- dependent gene ex sc:url "https://github.com/grecolab/TinderMIX" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, edam:topic_2229, @@ -471054,7 +501312,7 @@ TinderMIX is a new computational framework for dose- and time- dependent gene ex sc:url "https://github.com/FelixMoelder/ting" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3308, edam:topic_3474 ; @@ -471072,7 +501330,7 @@ These instructions show how to use TinGa on an example single cell dataset and h sc:url "https://github.com/Helena-todd/TinGa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3299, @@ -471091,14 +501349,14 @@ These instructions show how to use TinGa on an example single cell dataset and h a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1442" ; - sc:name "Phylogenetic tree distances" ; - sc:sameAs "http://edamontology.org/data_1442" ], + sc:additionalType "http://edamontology.org/data_1442" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Phylogenetic tree distances" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0769, @@ -471123,7 +501381,7 @@ These instructions show how to use TinGa on an example single cell dataset and h sc:url "https://jennahamlin.github.io/tinselR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0632 ; @@ -471144,7 +501402,7 @@ These instructions show how to use TinGa on an example single cell dataset and h "Robson da Silva Lopes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174, @@ -471160,7 +501418,7 @@ These instructions show how to use TinGa on an example single cell dataset and h sc:url "http://www.cs.utexas.edu/users/phylo/software/sepp/tipp-submission/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0749, @@ -471176,7 +501434,7 @@ These instructions show how to use TinGa on an example single cell dataset and h sc:url "http://megraw.cgrb.oregonstate.edu/software/TIPR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0621, @@ -471194,7 +501452,7 @@ These instructions show how to use TinGa on an example single cell dataset and h biotools:primaryContact "Rosalba Lepore" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3337, @@ -471209,8 +501467,31 @@ These instructions show how to use TinGa on an example single cell dataset and h sc:softwareHelp ; sc:url "http://www.msysbio.com/tiquant" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:name "Gene expression profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3053, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC9252797", + "pubmed:35554556" ; + sc:description "A web server for screening gene signatures to predict Tumor immunotherapy response." ; + sc:featureList edam:operation_0252, + edam:operation_0314, + edam:operation_2454 ; + sc:isAccessibleForFree true ; + sc:name "TIRSF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://tirsf.renlab.org/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0749, edam:topic_0769, @@ -471229,7 +501510,7 @@ The TA are distributed relatively evenly along genome. The Mariner-based transpo sc:url "https://bit.ly/gxy-tis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -471246,7 +501527,7 @@ The TA are distributed relatively evenly along genome. The Mariner-based transpo biotools:primaryContact "Jacob J Michaelson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, edam:topic_2640, @@ -471265,7 +501546,7 @@ Tumor Immune Single-cell Hub (TISCH) is a scRNA-seq database focusing on tumor m sc:url "http://tisch.comp-genomics.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0154, @@ -471284,7 +501565,7 @@ Tumor Immune Single-cell Hub (TISCH) is a scRNA-seq database focusing on tumor m biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Script" ; sc:applicationSubCategory edam:topic_0203, @@ -471307,7 +501588,7 @@ Tumor Immune Single-cell Hub (TISCH) is a scRNA-seq database focusing on tumor m sc:url "https://github.com/zexian/TISMO_data" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -471328,7 +501609,7 @@ Tumor Immune Single-cell Hub (TISCH) is a scRNA-seq database focusing on tumor m biotools:primaryContact "Safee U Chaudhary" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168 ; @@ -471344,16 +501625,59 @@ Tumor Immune Single-cell Hub (TISCH) is a scRNA-seq database focusing on tumor m sc:url "http://bioconductor.org/packages/release/bioc/html/TissueEnrich.html" ; biotools:primaryContact "Ashish Jain" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0625, + edam:topic_3308 ; + sc:citation , + "pubmed:35662455" ; + sc:description "Database of protein-protein interactions across adult and embryonic human tissues" ; + sc:featureList edam:operation_0224, + edam:operation_3630 ; + sc:isAccessibleForFree true ; + sc:name "TissueNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://netbio.bgu.ac.il/tissuenet3" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0634, + edam:topic_2229, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8728275", + "pubmed:34850130" ; + sc:description "A database of human tissue functional gene networks built with a large compendium of curated RNA-seq data." ; + sc:featureList edam:operation_0314, + edam:operation_1781, + edam:operation_2437, + edam:operation_3463, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:name "TissueNexus" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.diseaselinks.com/TissueNexus/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:name "Gene identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1087" ; - sc:name "Ontology concept ID" ; - sc:sameAs "http://edamontology.org/data_1087" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1087" ; + sc:name "Ontology concept ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0203, @@ -471373,12 +501697,42 @@ Tumor Immune Single-cell Hub (TISCH) is a scRNA-seq database focusing on tumor m biotools:primaryContact "Jan Gorodkin", "Lars Juhl Jensen" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Gene expression profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3170, + edam:topic_3308, + edam:topic_3388, + edam:topic_3518 ; + sc:citation , + "pubmed:35511320" ; + sc:description "A web tool for rank-based transcriptome representation and its applications in molecular medicine." ; + sc:featureList edam:operation_0314, + edam:operation_2436, + edam:operation_3503 ; + sc:isAccessibleForFree true ; + sc:name "TissueSpace" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinformatics.fafu.edu.cn/tissuespace/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3382 ; sc:citation , + , "pmcid:PMC7520034", "pubmed:32449759" ; sc:description """TissUUmaps is an interactive visualization of large-scale spatial gene expression and tissue morphology data. @@ -471391,13 +501745,17 @@ TissUUmaps allows the display of tissue slide images and uses an overlay to disp sc:featureList edam:operation_0571, edam:operation_3443, edam:operation_3802 ; + sc:isAccessibleForFree true ; sc:license "GPL-3.0" ; sc:name "TissUUmaps" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; sc:softwareHelp ; - sc:url "http://github.com/wahlby-lab/TissUUmaps" . + sc:url "https://tissuumaps.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -471424,7 +501782,7 @@ TissUUmaps allows the display of tissue slide images and uses an overlay to disp "Sohrab P Shah" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3375, edam:topic_3379 ; @@ -471437,7 +501795,7 @@ TissUUmaps allows the display of tissue slide images and uses an overlay to disp sc:url "https://github.com/gunhanb/TITEPK_sequential" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3361, edam:topic_3489 ; sc:citation , @@ -471455,7 +501813,7 @@ Titta is a toolbox for using eye trackers from Tobii Pro AB with Python, specifi sc:url "https://github.com/dcnieho/Titta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3305, edam:topic_3324 ; @@ -471469,7 +501827,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label sc:url "https://github.com/elkebir-group/TiTUS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3382, edam:topic_3520 ; @@ -471484,7 +501842,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label sc:url "https://github.com/tjubiit/TJU-DHD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -471504,7 +501862,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label biotools:primaryContact "J. Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Used to perform clustering on fasta formatted sequences." ; @@ -471516,7 +501874,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label sc:url "https://genome.uiowa.edu/home.old/pubsoft/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -471530,8 +501888,21 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label sc:softwareHelp ; sc:url "http://www.jurgott.org/linkage/tlinkage.htm" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "Prediction of inhibitors against human tlr4" ; + sc:featureList edam:operation_2945 ; + sc:name "tlr4hi" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/tlr4hi/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "TLS Motion Determination analyzes a macromolecular crystal structure for evidence of flexibility, e.g. local or inter-domain motions. It does this by partitioning individual chains into multiple segments that are modeled as rigid bodies undergoing TLS (Translation/Libration/Screw) vibrational motion. It generates all possible partitions up to a maximum number of segments." ; @@ -471545,7 +501916,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label biotools:primaryContact "Ethan Merritt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -471565,7 +501936,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label "Garima Singh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814 ; @@ -471579,7 +501950,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label sc:url "http://zhanglab.ccmb.med.umich.edu/TM-score/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -471602,7 +501973,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3518 ; sc:description "It is for Tissue MicroArrays (TMA’s). Patients, specimens, blocks, slides, cores, images, and scores can all be stored and viewed. Features include advanced security, custom dynamic fields, and an image analysis program." ; @@ -471616,7 +501987,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label sc:url "http://tmaj.pathology.jhmi.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102 ; @@ -471634,7 +502005,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label biotools:primaryContact "GitHub Issues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2258, edam:topic_2640, edam:topic_3369 ; @@ -471647,7 +502018,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label sc:url "http://tmap.gdb.tools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0634, @@ -471664,7 +502035,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label sc:url "http://www.engr.uconn.edu/~ywu/TMARG.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation ; @@ -471676,7 +502047,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label sc:url "http://web.njit.edu/~wangj/tmatch.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2269, @@ -471692,7 +502063,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label sc:url "http://wpicr.wpic.pitt.edu/WPICCompGen/tmax.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -471709,8 +502080,32 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label sc:name "TMB-Hunt" ; sc:url "http://bmbpcu36.leeds.ac.uk/~andy/betaBarrel/AACompPred/aaTMB_Hunt.cgi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_0736, + edam:topic_0820, + edam:topic_3510 ; + sc:citation , + "pmcid:PMC9358067", + "pubmed:35941534" ; + sc:description "Transmembrane proteins predicted through Language Model embeddings." ; + sc:featureList edam:operation_0269, + edam:operation_0408, + edam:operation_0474, + edam:operation_2241 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "TMbed" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/BernhoferM/TMbed" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -471727,8 +502122,30 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label sc:name "TMBETA-NET" ; sc:url "http://psfs.cbrc.jp/tmbeta-net/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0622, + edam:topic_3360, + edam:topic_3673, + edam:topic_3676 ; + sc:citation , + "pubmed:34927668" ; + sc:description "Bioinformatic tool to optimize TMB estimation and predictive power." ; + sc:featureList edam:operation_3435, + edam:operation_3675, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "TMBleR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://acc-bioinfo.github.io/TMBleR/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0610, edam:topic_2269, @@ -471745,7 +502162,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label biotools:primaryContact "Kasper Kristensen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0122, edam:topic_0820, @@ -471762,7 +502179,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label biotools:primaryContact "Gábor E Tusnády" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2640, @@ -471786,7 +502203,7 @@ TiTUS is a code that takes as input a timed pathogen phylogeny with leaves label sc:url "https://github.com/DongqiangZeng0808/TMEscore" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, edam:topic_3170 ; @@ -471801,7 +502218,7 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse sc:url "https://github.com/shooshtarilab/TMExplorer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0736, @@ -471819,7 +502236,7 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse biotools:primaryContact "Andrew Kernytsky" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -471836,8 +502253,21 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse sc:softwareVersion "20101215" ; sc:url "http://webclu.bio.wzw.tum.de/tmhcon/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "The server will predict MHC Class I and II binding peptides. The prediction based on the virtual and quantitative matrices." ; + sc:featureList edam:operation_2945 ; + sc:name "tmhcpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/tmhcpred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -471854,18 +502284,18 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ], + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2305" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application", "Web service" ; @@ -471890,14 +502320,12 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -471909,7 +502337,7 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse sc:url "http://www.sbc.su.se/%7Emelen/TMHMMfix/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0736, edam:topic_0820, edam:topic_3318 ; @@ -471924,7 +502352,7 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse sc:url "http://tmhop.weizmann.ac.il" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269 ; @@ -471941,7 +502369,7 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse biotools:primaryContact "Monica Golumbeanu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0736, @@ -471957,7 +502385,7 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse sc:url "http://tmkinkpredictor.mbi.ucla.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -471974,8 +502402,30 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse sc:url "http://weilab.math.msu.edu/TML/TML-MP/" ; biotools:primaryContact "Guo-Wei Wei" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0202, + edam:topic_3303, + edam:topic_3308 ; + sc:citation , + "pubmed:34933331" ; + sc:description "A transcriptome-based multi-scale network pharmacology platform for herbal medicine." ; + sc:featureList edam:operation_0314 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "TMNP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.bcxnfz.top/TMNP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0166, @@ -471995,7 +502445,7 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse biotools:primaryContact "Li Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0153, @@ -472017,7 +502467,7 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse biotools:primaryContact "Ting-Yi Sung" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0622, @@ -472036,7 +502486,7 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0736, @@ -472053,7 +502503,7 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse biotools:primaryContact "TMPred Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0196, @@ -472069,7 +502519,7 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse sc:url "http://prime.ibn.a-star.edu.sg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3314, edam:topic_3318, @@ -472084,18 +502534,17 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1192" ; - sc:name "Tool name (BLAST)" ; - sc:sameAs "http://edamontology.org/data_1192" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_1192" ; + sc:encodingFormat "http://edamontology.org/format_2064" ; + sc:name "Tool name (BLAST)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0820 ; sc:author "Michael Bernhofer" ; @@ -472111,7 +502560,7 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse sc:url "https://github.com/Rostlab/TMSEG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0736, edam:topic_0820, @@ -472128,7 +502577,7 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse sc:url "http://lmc.uab.es/tmsnp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0157, @@ -472150,7 +502599,7 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse biotools:primaryContact "TMSOC Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, @@ -472166,7 +502615,7 @@ TMExplorer (Tumour Microenvironment Explorer) is a curated collection of scRNAse sc:url "https://www.ncbi.nlm.nih.gov/research/bionlp/Tools/tmvar/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, edam:topic_0625, @@ -472186,8 +502635,31 @@ Transposon-sequencing (TnSeq) and genome-scale constraint-based metabolic modell sc:name "Tn-Core" ; sc:url "http://combo.dbe.unifi.it/tncore" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_0622, + edam:topic_2640, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8484710", + "pubmed:34603338" ; + sc:description "A Machine Learning Model to Predict the Triple Negative Breast Cancer Immune Subtype." ; + sc:featureList edam:operation_0313, + edam:operation_0314, + edam:operation_3463, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:name "TNBCIS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://immunotypes.shinyapps.io/TNBCIS/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0749, @@ -472203,8 +502675,32 @@ Transposon-sequencing (TnSeq) and genome-scale constraint-based metabolic modell sc:url "https://tncentral.proteininformationresource.org/" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_0780, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8482286", + "pubmed:34630945" ; + sc:description "tncRNA Toolkit is a pipeline, designed for convenient identification of tncRNAs. It identifies the tncRNAs using small RNA sequencing datasets. It also provides detailed information related to each tncRNA entry viz. tncRNA type, tRNA information, position on tRNA, strand, sequence, length, read count, RPM and modification site." ; + sc:featureList edam:operation_0464, + edam:operation_2929, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "tncRNAs" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://nipgr.ac.in/tncRNA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3305, @@ -472224,8 +502720,21 @@ Transposon-sequencing (TnSeq) and genome-scale constraint-based metabolic modell sc:softwareHelp ; sc:url "https://compbio.engr.uconn.edu/software/TNet/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "A webserver for prediction of TNF inducing epitopes." ; + sc:featureList edam:operation_2945 ; + sc:name "tnfepitope" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/tnfepitope/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0176, @@ -472240,7 +502749,7 @@ Transposon-sequencing (TnSeq) and genome-scale constraint-based metabolic modell sc:url "http://ub.cbm.uam.es/software/tnm.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3295, @@ -472261,7 +502770,7 @@ differential gene expression analysis in Tumor, Normal and Metastatic tissues."" "Áron Bartha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation ; @@ -472275,7 +502784,7 @@ differential gene expression analysis in Tumor, Normal and Metastatic tissues."" sc:url "http://tnrs.iplantcollaborative.org/about.html#api" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -472292,7 +502801,7 @@ differential gene expression analysis in Tumor, Normal and Metastatic tissues."" biotools:primaryContact "Jialin Ma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0769, edam:topic_0780, @@ -472315,7 +502824,7 @@ TOA aims to establish workflows geared towards plant species that automate the e sc:url "https://github.com/GGFHF/TOA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0194, edam:topic_0780, @@ -472344,7 +502853,7 @@ With over 30,000 species, it is an understatement to say that there is much to d sc:url "https://carolinafishes.github.io/software/TOAST/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0780, edam:topic_3170, @@ -472361,7 +502870,7 @@ With over 30,000 species, it is an understatement to say that there is much to d sc:url "https://nextstrain.nrcnvwa.nl/ToBRFV/20191231" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0749, @@ -472377,8 +502886,29 @@ With over 30,000 species, it is an understatement to say that there is much to d sc:softwareHelp ; sc:url "https://yiplab.cse.cuhk.edu.hk/toehold/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0780, + edam:topic_3125, + edam:topic_3512, + edam:topic_3895 ; + sc:citation ; + sc:description "Toeholder is a tool that can efficiently design toehold riboswitches for the detection of a target gene." ; + sc:featureList edam:operation_0479, + edam:operation_2428, + edam:operation_2476 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Toeholder" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/igem-ulaval/toeholder" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0121, @@ -472396,7 +502926,7 @@ With over 30,000 species, it is an understatement to say that there is much to d sc:url "https://bitbucket.org/cmriprocan/toffee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -472415,7 +502945,7 @@ With over 30,000 species, it is an understatement to say that there is much to d biotools:primaryContact "Dariya Malyarenko" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3047, @@ -472436,8 +502966,30 @@ With over 30,000 species, it is an understatement to say that there is much to d sc:url "http://bioconductor.org/packages/release/bioc/html/tofsims.html" ; biotools:primaryContact "Lorenz Gerber" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3385, + edam:topic_3452 ; + sc:citation , + "pmcid:PMC9070706", + "pubmed:35511025" ; + sc:description "A fast, versatile and user-friendly image processing toolkit for computed tomography." ; + sc:featureList edam:operation_0337, + edam:operation_2422, + edam:operation_3443, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "tofu" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ufo-kit/tofu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -472452,8 +503004,38 @@ With over 30,000 species, it is an understatement to say that there is much to d sc:url "https://github.com/SouthGreenPlatform/TOGGLE" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2610" ; + sc:name "Ensembl ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0203, + edam:topic_0736, + edam:topic_3068, + edam:topic_3277 ; + sc:citation , + "pubmed:35801937" ; + sc:description "An exploratory ID converter to bridge biological datasets." ; + sc:featureList edam:operation_0250, + edam:operation_1777, + edam:operation_3197, + edam:operation_3282 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "TogoID" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://togoid.dbcls.jp/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -472477,7 +503059,7 @@ With over 30,000 species, it is an understatement to say that there is much to d biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0781 ; @@ -472492,7 +503074,7 @@ With over 30,000 species, it is an understatement to say that there is much to d sc:url "http://togows.dbcls.jp/site/en/soap.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0611, edam:topic_1317 ; @@ -472509,18 +503091,17 @@ With over 30,000 species, it is an understatement to say that there is much to d a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ], + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Protein sequence (raw)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3712" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -472536,7 +503117,7 @@ With over 30,000 species, it is an understatement to say that there is much to d sc:url "https://github.com/CMRose3355/TomahaqCompanionProgram" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -472559,7 +503140,7 @@ With over 30,000 species, it is an understatement to say that there is much to d biotools:primaryContact "@TOME team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -472575,7 +503156,7 @@ With over 30,000 species, it is an understatement to say that there is much to d biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3382, @@ -472594,7 +503175,7 @@ With over 30,000 species, it is an understatement to say that there is much to d sc:url "https://sourceforge.net/projects/tomoj/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3452 ; sc:citation , @@ -472609,7 +503190,7 @@ With over 30,000 species, it is an understatement to say that there is much to d sc:url "http://web.cmb.usc.edu/people/alber/Software/tomominer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3393, edam:topic_3452, edam:topic_3500 ; @@ -472623,7 +503204,7 @@ TomoMQA is written in MATLAB and contains three steps for analysis: (a) open the sc:url "http://www.tomomqa.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3452 ; @@ -472641,7 +503222,7 @@ TomoMQA is written in MATLAB and contains three steps for analysis: (a) open the biotools:primaryContact "Daniil Kazantsev" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0659, @@ -472658,8 +503239,22 @@ TomoMQA is written in MATLAB and contains three steps for analysis: (a) open the sc:url "http://www4a.biotec.or.th/GI/tools/toner" ; biotools:primaryContact "Jittima Piriyapongsa" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0769 ; + sc:description "CLI tool to verify workflow reproducibility." ; + sc:license "Apache-2.0" ; + sc:name "Tonkaz" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "0.2.3" ; + sc:url "https://github.com/sapporo-wes/tonkaz" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3316, edam:topic_3474 ; @@ -472671,21 +503266,21 @@ TomoMQA is written in MATLAB and contains three steps for analysis: (a) open the sc:url "https://github.com/anuprulez/galaxy_tool_recommendation" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "A model is developed to recommend tools, by analysing workflows composed by researchers on the European Galaxy server, using a deep learning approach. The model is used to recommend tools in Galaxy." ; sc:name "Tool recommender system in Galaxy using deep learning" ; sc:url "https://github.com/anuprulez/galaxy_tool_recommendation" . a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3424" ; - sc:name "Raw image" ; - sc:sameAs "http://edamontology.org/data_3424" ] ; + sc:additionalType "http://edamontology.org/data_3424" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Raw image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Workflow" ; sc:applicationSubCategory edam:topic_0602, @@ -472705,10 +503300,10 @@ TomoMQA is written in MATLAB and contains three steps for analysis: (a) open the a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3750" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0091 ; @@ -472728,7 +503323,7 @@ TomoMQA is written in MATLAB and contains three steps for analysis: (a) open the "Kenzo-Hugo Hillion" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -472744,7 +503339,7 @@ TomoMQA is written in MATLAB and contains three steps for analysis: (a) open the biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3408 ; @@ -472759,7 +503354,7 @@ TomoMQA is written in MATLAB and contains three steps for analysis: (a) open the biotools:primaryContact "Alip" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "A set of Matlab functions which are designed to help clinicians and researchers use GEANT4 or TOPAS" ; sc:isAccessibleForFree true ; @@ -472773,30 +503368,30 @@ TomoMQA is written in MATLAB and contains three steps for analysis: (a) open the a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1274" ; - sc:name "Map" ; - sc:sameAs "http://edamontology.org/data_1274" ], + sc:additionalType "http://edamontology.org/data_1274" ; + sc:encodingFormat "http://edamontology.org/format_2376" ; + sc:name "Map" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1600" ; - sc:name "Codon usage bias plot" ; - sc:sameAs "http://edamontology.org/data_1600" ], + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ], + sc:additionalType "http://edamontology.org/data_2082" ; + sc:encodingFormat "http://edamontology.org/format_3750" ; + sc:name "Matrix" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3108" ; - sc:name "Experimental measurement" ; - sc:sameAs "http://edamontology.org/data_3108" ] ; + sc:additionalType "http://edamontology.org/data_1600" ; + sc:encodingFormat "http://edamontology.org/format_3773" ; + sc:name "Codon usage bias plot" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1394" ; - sc:name "Alignment score or penalty" ; - sc:sameAs "http://edamontology.org/data_1394" ], + sc:additionalType "http://edamontology.org/data_1394" ; + sc:encodingFormat "http://edamontology.org/format_2350" ; + sc:name "Alignment score or penalty" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1347" ; - sc:name "Dirichlet distribution" ; - sc:sameAs "http://edamontology.org/data_1347" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1347" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Dirichlet distribution" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "toolstools" ; sc:featureList edam:operation_2928, edam:operation_2945 ; @@ -472804,7 +503399,7 @@ TomoMQA is written in MATLAB and contains three steps for analysis: (a) open the sc:url "https://www.autohome.com.cn/beijing/#pvareaid=3311664" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0632, edam:topic_3168, @@ -472825,7 +503420,7 @@ You need to have Google Chrome or Safari browser only.""" ; sc:url "http://baddna.uga.edu/tools-taggi.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0769, @@ -472843,7 +503438,7 @@ You need to have Google Chrome or Safari browser only.""" ; biotools:primaryContact "Stefano Menegon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, edam:topic_3308, @@ -472865,8 +503460,32 @@ An R wrapper for using 'TooManyCells', a command line program for clustering, vi sc:name "TooManyCells" ; sc:url "https://github.com/faryabib/too-many-cells" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0199, + edam:topic_3337, + edam:topic_3577, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC9247832", + "pubmed:35504290" ; + sc:description "A tool to explore linkage disequilibrium with TOPMed whole-genome sequence data." ; + sc:featureList edam:operation_0487, + edam:operation_0488, + edam:operation_3196, + edam:operation_3226 ; + sc:isAccessibleForFree true ; + sc:name "TOP-LD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://topld.genetics.unc.edu/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3383, @@ -472883,22 +503502,22 @@ An R wrapper for using 'TooManyCells', a command line program for clustering, vi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -472921,14 +503540,12 @@ An R wrapper for using 'TooManyCells', a command line program for clustering, vi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -472945,38 +503562,34 @@ An R wrapper for using 'TooManyCells', a command line program for clustering, vi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2789" ; - sc:name "Protein ID (TopDB)" ; - sc:sameAs "http://edamontology.org/data_2789" ], + sc:additionalType "http://edamontology.org/data_2789" ; + sc:name "Protein ID (TopDB)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2789" ; - sc:name "Protein ID (TopDB)" ; - sc:sameAs "http://edamontology.org/data_2789" ], + sc:additionalType "http://edamontology.org/data_2789" ; + sc:name "Protein ID (TopDB)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2789" ; - sc:name "Protein ID (TopDB)" ; - sc:sameAs "http://edamontology.org/data_2789" ], + sc:additionalType "http://edamontology.org/data_2789" ; + sc:name "Protein ID (TopDB)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2789" ; - sc:name "Protein ID (TopDB)" ; - sc:sameAs "http://edamontology.org/data_2789" ] ; + sc:additionalType "http://edamontology.org/data_2789" ; + sc:name "Protein ID (TopDB)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0820 ; sc:citation ; @@ -472990,7 +503603,7 @@ An R wrapper for using 'TooManyCells', a command line program for clustering, vi sc:url "http://toPDB.enzim.hu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -473007,8 +503620,29 @@ An R wrapper for using 'TooManyCells', a command line program for clustering, vi sc:url "http://bioconductor.org/packages/release/bioc/html/topdownr.html" ; biotools:primaryContact "Sebastian Gibb" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0218, + edam:topic_0634, + edam:topic_3473, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9369716", + "pubmed:35951425" ; + sc:description "TopEx is a natural language processing application developed to facilitate the exploration of topics and key words in a set of texts through a user interface that requires no programming or natural language processing knowledge, thus enhancing the ability of nontechnical researchers to explore and analyze textual data." ; + sc:featureList edam:operation_0306, + edam:operation_0337, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:name "TopEx" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://topex.cctr.vcu.edu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -473030,7 +503664,7 @@ An R wrapper for using 'TooManyCells', a command line program for clustering, vi biotools:primaryContact "TopFIND team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0089, @@ -473052,28 +503686,51 @@ An R wrapper for using 'TooManyCells', a command line program for clustering, vi sc:url "http://bioconductor.org/packages/release/bioc/html/topGO.html" ; biotools:primaryContact "Adrian Alexa" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_0196, + edam:topic_0199, + edam:topic_3168, + edam:topic_3943 ; + sc:citation , + "pmcid:PMC8687460", + "pubmed:34931186" ; + sc:description "Rapid inference of key phylogenetic structures from common haplotypes in large genome collections with limited diversity." ; + sc:featureList edam:operation_0323, + edam:operation_0487, + edam:operation_3227, + edam:operation_3745 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "TopHap" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/SayakaMiura/TopHap" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2749" ; - sc:name "Genome identifier" ; - sc:sameAs "http://edamontology.org/data_2749" ] ; + sc:additionalType "http://edamontology.org/data_2749" ; + sc:name "Genome identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3170, @@ -473094,7 +503751,7 @@ An R wrapper for using 'TooManyCells', a command line program for clustering, vi biotools:primaryContact "Daehwan Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0114, @@ -473113,7 +503770,7 @@ An R wrapper for using 'TooManyCells', a command line program for clustering, vi biotools:primaryContact "Daehwan Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3307 ; sc:citation ; @@ -473125,54 +503782,54 @@ An R wrapper for using 'TooManyCells', a command line program for clustering, vi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2306" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1932" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0924" ; - sc:name "Sequence trace" ; - sc:sameAs "http://edamontology.org/data_0924" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0924" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence trace" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation , @@ -473200,8 +503857,24 @@ An R wrapper for using 'TooManyCells', a command line program for clustering, vi sc:url "http://ccb.jhu.edu/software/tophat/index.shtml" ; biotools:primaryContact "Galaxy Support Team" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC5809007", + "pubmed:29432422" ; + sc:description "TopicalPdb: Database of Topically Administered Peptide." ; + sc:featureList edam:operation_2945 ; + sc:name "topicalpdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/topicalpdb/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, edam:topic_0749, @@ -473220,7 +503893,7 @@ Topicnet uses a method called TopicNet that applies latent Dirichlet allocation sc:url "https://github.com/gersteinlab/topicnet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3382 ; @@ -473235,7 +503908,7 @@ Topicnet uses a method called TopicNet that applies latent Dirichlet allocation biotools:primaryContact "Sergey N. Krylov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -473258,7 +503931,7 @@ Topicnet uses a method called TopicNet that applies latent Dirichlet allocation biotools:primaryContact "TopMatch Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -473278,7 +503951,7 @@ Knowledge of protein structures is essential to understand proteins' functions, sc:url "https://cpclab.uni-duesseldorf.de/topsuite/standalone_download.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0820 ; @@ -473290,7 +503963,7 @@ Knowledge of protein structures is essential to understand proteins' functions, sc:url "http://www.sacs.ucsf.edu/TOPO2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3303, edam:topic_3386, @@ -473311,7 +503984,7 @@ Log in as the admin user that was created as part of the sample data set: email: sc:url "https://github.com/UCSF-MS-DCC/TopoDB" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, edam:topic_2259, @@ -473330,7 +504003,7 @@ Topological filtering method: model space exploration for ODE models based on ap sc:url "https://gitlab.com/csb.ethz/TopoFilter" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3068, edam:topic_3360, @@ -473347,14 +504020,14 @@ An oncologist-led effort in cataloguing literature evidence for streamlining the sc:url "https://topograph.info/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, edam:topic_0602, - edam:topic_2229, - edam:topic_3557 ; + edam:topic_2229 ; sc:citation "pubmed:20335277" ; + sc:contributor "Natalio Krasnogor" ; sc:description "Web-application dedicated to the computation and visualization of network topological properties for gene and protein sets in molecular interaction networks. Different topological characteristics, such as the centrality of nodes in the network or their tendency to form clusters, can be computed and compared with those of known cellular pathways and processes (Gene Ontology, BioCarta, KEGG, among others)." ; sc:featureList edam:operation_0276, edam:operation_0277, @@ -473367,11 +504040,10 @@ An oncologist-led effort in cataloguing literature evidence for streamlining the "Windows" ; sc:softwareHelp ; sc:url "http://www.topogsa.net" ; - biotools:primaryContact "Alfonso Valencia", - "Natalio Krasnogor" . + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0166, @@ -473390,7 +504062,7 @@ An oncologist-led effort in cataloguing literature evidence for streamlining the biotools:primaryContact "Leandro Martinez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085 ; sc:citation , @@ -473410,7 +504082,7 @@ An oncologist-led effort in cataloguing literature evidence for streamlining the biotools:primaryContact "Chiara Romualdi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0736, edam:topic_3306 ; @@ -473425,7 +504097,7 @@ An oncologist-led effort in cataloguing literature evidence for streamlining the sc:url "https://topoly.cent.uw.edu.pl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3047, edam:topic_3382 ; @@ -473442,8 +504114,30 @@ The algorithm searches recursively for files within a user-defined directory. Th sc:name "TopoStats" ; sc:url "https://github.com/afmstats/TopoStats" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_2640, + edam:topic_3512, + edam:topic_3577, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC9035726", + "pubmed:35479398" ; + sc:description "Tumor online prognostic analysis platform for prognostic feature selection and clinical patient subgroup selection." ; + sc:featureList edam:operation_1781, + edam:operation_3223, + edam:operation_3503 ; + sc:isAccessibleForFree true ; + sc:name "ToPP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.biostatistics.online/topp/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0602, @@ -473464,7 +504158,7 @@ The algorithm searches recursively for files within a user-defined directory. Th biotools:primaryContact "Anil Jegga" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -473489,22 +504183,22 @@ The algorithm searches recursively for files within a user-defined directory. Th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0121, @@ -473529,7 +504223,7 @@ The algorithm searches recursively for files within a user-defined directory. Th biotools:primaryContact "Xiaowen Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -473554,14 +504248,12 @@ The algorithm searches recursively for files within a user-defined directory. Th a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1096" ; - sc:name "Sequence accession (protein)" ; - sc:sameAs "http://edamontology.org/data_1096" ] ; + sc:additionalType "http://edamontology.org/data_1096" ; + sc:name "Sequence accession (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1238" ; - sc:name "Proteolytic digest" ; - sc:sameAs "http://edamontology.org/data_1238" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1238" ; + sc:name "Proteolytic digest" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -473572,8 +504264,33 @@ The algorithm searches recursively for files within a user-defined directory. Th sc:softwareVersion "1" ; sc:url "http://iomics.ugent.be/toppr/home.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0736, + edam:topic_0820, + edam:topic_3474, + edam:topic_3542 ; + sc:citation , + "pubmed:34663069" ; + sc:description "TopProperty is a meta-predictor that combines outputs of 27 primary predictors using two ensembles of deep neural networks to predict secondary structure, solvent accessibility, transmembrane topology and membrane exposure for both transmembrane and globular proteins. TopProperty is trained on datasets without bias towards a high number of sequence homologs and the predictions are significantly better than all primary predictors on all quality metrics. TopProperty eliminates the need for protein type- or property-tailored tools, especifically for transmembrane proteins." ; + sc:featureList edam:operation_0269, + edam:operation_0303, + edam:operation_0408, + edam:operation_0477, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "TopProperty" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://cpclab.uni-duesseldorf.de/topsuite/topproperty.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2814 ; sc:citation ; @@ -473584,7 +504301,7 @@ The algorithm searches recursively for files within a user-defined directory. Th sc:url "http://www.bioinformatics.leeds.ac.uk/TOPS/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0122, @@ -473604,7 +504321,7 @@ The algorithm searches recursively for files within a user-defined directory. Th biotools:primaryContact "Adam Godzik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "TopSearch is a new powerful gateway to protein structures and their structural relationships. Given a query structure the search engine instantly returns a list of known protein structures sorted by structural similarity. TopSearch operates on three structural levels: chains, biological assemblies and quaternary structures, and asymmetric units." ; @@ -473618,7 +504335,7 @@ The algorithm searches recursively for files within a user-defined directory. Th biotools:primaryContact "TopSearch Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_2814, @@ -473634,7 +504351,7 @@ The algorithm searches recursively for files within a user-defined directory. Th sc:url "http://web.mpiib-berlin.mpg.de/pdbs/2d-page/downloads.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite", "Web application" ; sc:applicationSubCategory edam:topic_0082, @@ -473652,8 +504369,31 @@ The algorithm searches recursively for files within a user-defined directory. Th sc:name "TopSuite" ; sc:url "https://cpclab.uni-duesseldorf.de/topsuite/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0621, + edam:topic_3957 ; + sc:citation , + "pmcid:PMC9235477", + "pubmed:35758793" ; + sc:description "Integrating a global view into sequence-based PPI prediction." ; + sc:featureList edam:operation_2464, + edam:operation_2492, + edam:operation_3094, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Topsy-Turvy" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://topsyturvy.csail.mit.edu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0593, edam:topic_0602, @@ -473669,7 +504409,7 @@ The algorithm searches recursively for files within a user-defined directory. Th sc:url "http://aiqm.github.io/torchani/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3384, edam:topic_3444, @@ -473692,7 +504432,7 @@ The algorithm searches recursively for files within a user-defined directory. Th sc:url "http://torchio.rtfd.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0736, @@ -473711,7 +504451,7 @@ The algorithm searches recursively for files within a user-defined directory. Th biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -473734,7 +504474,7 @@ The algorithm searches recursively for files within a user-defined directory. Th biotools:primaryContact "Sharon Bruckner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621 ; sc:citation ; @@ -473748,7 +504488,7 @@ TQMD is a tool which downloads, stores and produces lists of dereplicated prokar sc:url "https://bitbucket.org/phylogeno/tqmd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Torrent Suite Software and Torrent Server provide simple, automated sequencing data analysis and storage solutions" ; sc:featureList edam:operation_0292, edam:operation_3227 ; @@ -473756,7 +504496,7 @@ TQMD is a tool which downloads, stores and produces lists of dereplicated prokar sc:url "https://github.com/iontorrent/TS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, @@ -473771,7 +504511,7 @@ TQMD is a tool which downloads, stores and produces lists of dereplicated prokar biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, edam:topic_3047, @@ -473788,7 +504528,7 @@ TQMD is a tool which downloads, stores and produces lists of dereplicated prokar sc:url "https://github.com/PfizerRD/TorsionNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3304, @@ -473806,7 +504546,7 @@ TQMD is a tool which downloads, stores and produces lists of dereplicated prokar sc:url "https://github.com/tne-lab/TORTE" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0108, @@ -473828,13 +504568,8 @@ TQMD is a tool which downloads, stores and produces lists of dereplicated prokar sc:name "Total Variational Inference" ; sc:url "https://scvi-tools.org/" . - a sc:SoftwareApplication ; - sc:description "CD genomics combines proven ribosomal reduction library preparation chemistries and illumina NGS technology into a single, streamlined protocol. Ribo-Zero ribosomal RNA reduction chemistry minimizes ribosomal contamination and maximizes the percentage of uniquely mapped reads. With the consistent robust performance, total RNA-seq covers both mRNA and a broad range of ncRNA species of interest, including long noncoding RNA (lncRNA), small nuclear (snRNA), small nucleolar (snoRNA), and other RNA species." ; - sc:name "Total RNA Sequencing" ; - sc:url "https://www.cd-genomics.com/total-rna-sequencing.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3316 ; sc:author "Perforce Software, Inc." ; @@ -473851,7 +504586,7 @@ TQMD is a tool which downloads, stores and produces lists of dereplicated prokar biotools:primaryContact "Perforce Software, Inc." . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053 ; @@ -473869,8 +504604,30 @@ TQMD is a tool which downloads, stores and produces lists of dereplicated prokar sc:url "https://totem.software/login/?backlink=iplpf&_fid=t22e" ; biotools:primaryContact "Nikola Tom" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0602, + edam:topic_3172, + edam:topic_3407 ; + sc:citation , + "pmcid:PMC8905348", + "pubmed:35281848" ; + sc:description "Identifying Active Reactions During the Transient State for Metabolic Perturbations." ; + sc:featureList edam:operation_3660, + edam:operation_3799, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Totoro" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.inria.fr/erable/totoro" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -473890,8 +504647,37 @@ TQMD is a tool which downloads, stores and produces lists of dereplicated prokar sc:url "http://www.esat.kuleuven.ac.be/~saerts/software/toucan.php" ; biotools:primaryContact "Aerts S." . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "Tourmaline is an amplicon sequence processing workflow for Illumina sequence data that uses QIIME 2 and the software packages it wraps. Tourmaline manages commands, inputs, and outputs using the Snakemake workflow management system." ; + sc:license "BSD-3-Clause" ; + sc:name "Tourmaline" ; + sc:url "https://github.com/aomlomics/tourmaline" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_2840, + edam:topic_3360, + edam:topic_3474, + edam:topic_3500, + edam:topic_3679 ; + sc:citation , + "pubmed:34971401" ; + sc:description "An Artificial Intelligence Approach Alternative to Animal Studies." ; + sc:featureList edam:operation_0314, + edam:operation_0315, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Tox-GAN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/XC-NCTR/Tox-GAN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -473909,7 +504695,7 @@ TQMD is a tool which downloads, stores and produces lists of dereplicated prokar sc:url "https://sandbox.ntp.niehs.nih.gov/bodymap/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_3170, @@ -473928,8 +504714,34 @@ TQMD is a tool which downloads, stores and produces lists of dereplicated prokar sc:url "https://github.com/pedronachtigall/ToxCodAn" ; biotools:primaryContact "Pedro G Nachtigall" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:encodingFormat "http://edamontology.org/format_1196" ; + sc:name "Small molecule structure" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_3047, + edam:topic_3336, + edam:topic_3379, + edam:topic_3474 ; + sc:citation , + "pubmed:35998885" ; + sc:description "Comprehensive prediction of small molecule toxicity profiles." ; + sc:featureList edam:operation_2423 ; + sc:isAccessibleForFree true ; + sc:name "toxCSM" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://biosig.lab.uq.edu.au/toxcsm" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0634, edam:topic_0736, @@ -473945,8 +504757,34 @@ TQMD is a tool which downloads, stores and produces lists of dereplicated prokar sc:name "ToxDL" ; sc:url "http://www.csbio.sjtu.edu.cn/bioinf/ToxDL/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0121, + edam:topic_0154, + edam:topic_0634, + edam:topic_3474 ; + sc:citation , + "pubmed:34999757" ; + sc:description "A generic webserver for peptide toxicity prediction" ; + sc:featureList edam:operation_0267, + edam:operation_0278, + edam:operation_0303 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ToxIBTL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://server.wei-group.net/ToxIBTL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, edam:topic_0602, @@ -473967,7 +504805,7 @@ A statistical analysis package for use exploring the relationship between toxici sc:url "http://toxicodb.ca" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, edam:topic_2258, @@ -473990,16 +504828,65 @@ Example: Common name: Aflatoxin : CAS number: 65195-55-3: InChI key: JLWQFKMKUKQ sc:name "ToxinDB" ; sc:url "http://www.rxnfinder.org/toxindb/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:25555724" ; + sc:description "ToxinPred is an in silico method, which is developed to predict and design toxic/non-toxic peptides. This server is specifically developed for predicting toxicity of peptides or for designing peptides with desired toxicity." ; + sc:featureList edam:operation_2945 ; + sc:name "toxinpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/toxinpred/index.html" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0160, + edam:topic_2840, + edam:topic_3379, + edam:topic_3474 ; + sc:citation , + "pubmed:35595541" ; + sc:description "A webserver for designing and predicting toxic and non-toxic proteins." ; + sc:featureList edam:operation_0239, + edam:operation_3092, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ToxinPred2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://webs.iiitd.edu.in/raghava/toxinpred2/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:description "ToxiPred: A server for prediction of aqueous toxicity of small chemical molecules in T. pyriformis" ; + sc:featureList edam:operation_2945 ; + sc:name "toxipred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/toxipred/" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ] ; + sc:additionalType "http://edamontology.org/data_2295" ; + sc:name "Gene ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation ; @@ -474013,7 +504900,7 @@ Example: Common name: Aflatoxin : CAS number: 65195-55-3: InChI key: JLWQFKMKUKQ sc:url "http://toxodb.org/toxo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -474032,16 +504919,31 @@ ToxPanel is a web-based platform to calculate activation scores for liver and ki sc:name "ToxPanel" ; sc:url "https://toxpanel.bhsai.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0769, + edam:topic_2840 ; + sc:citation ; + sc:description "The ToxPi framework provides a method for transparently integrating and visualizing data across disparate information domains and is often used to determine risk values for the data being analyzed." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ToxPiGIS Toolkit" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Jonathon-Fleming/ToxPi-GIS" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_2840 ; @@ -474055,8 +504957,30 @@ ToxPanel is a web-based platform to calculate activation scores for liver and ki sc:url "http://toxsign.genouest.org" ; biotools:primaryContact "Chalmel Frédéric" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2301" ; + sc:name "SMILES string" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0634, + edam:topic_2840, + edam:topic_3172, + edam:topic_3297 ; + sc:citation , + "pubmed:35900148" ; + sc:description "ToxSTAR is a platform to predict human toxicity caused by drugs and chemicals through integration of biotechnology (BT) and information technology (IT)." ; + sc:featureList edam:operation_2423 ; + sc:isAccessibleForFree true ; + sc:name "ToxSTAR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://toxstar.kitox.re.kr/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, edam:topic_3063, @@ -474070,7 +504994,7 @@ Venom is a mixture of substances produced by a venomous organism aiming at preyi sc:url "https://github.com/meahmadi/ToxVec" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0128, @@ -474089,7 +505013,7 @@ Thermal Profiling Meltome Analysis Program.""" ; sc:url "https://www.gitlab.com/ChemBioHub/tpmap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation ; @@ -474102,7 +505026,7 @@ Thermal Profiling Meltome Analysis Program.""" ; sc:url "http://pbil.univ-lyon1.fr/software/tpms/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3336, @@ -474123,8 +505047,59 @@ Thermal Profiling Meltome Analysis Program.""" ; sc:url "https://bioconductor.org/packages/TPP/" ; biotools:primaryContact "Dorothee Childs" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0077, + edam:topic_0082, + edam:topic_0154, + edam:topic_3373, + edam:topic_3474 ; + sc:citation , + "pubmed:35389426" ; + sc:description "Therapeutic peptides prediction by adaptive multi-view tensor learning model." ; + sc:featureList edam:operation_0475, + edam:operation_3092, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "BSD-2-Clause" ; + sc:name "TPpred-ATMV" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/cokeyk/TPpred-ATMV" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_2269 ; + sc:citation ; + sc:description "A tool for prior elicitation and obtaining posterior distributions of true disease prevalence." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "tPRiors" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://doi.org/10.21203/RS.3.RS-1019762/V1" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:citation , + "pmcid:PMC6295338", + "pubmed:30257219" ; + sc:description "TPS is a tool for combining time series global phosphoproteomic data and protein-protein interaction networks to reconstruct the vast signaling pathways that control post-translational modifications." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "TPS" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/koksal/tps" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0203, @@ -474149,7 +505124,7 @@ Thermal Profiling Meltome Analysis Program.""" ; sc:url "https://brpnci.shinyapps.io/TPWshiny/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269 ; sc:description "tpWY (t-statistics, p-values, and Westfall and Young step-down method) consists of software to implement the methods illustrated by Dudoit et al. (2000) to compute unadjusted and adjusted p-values for the t-statistics derived from a collection of two-channel microarray experiments" ; @@ -474163,7 +505138,7 @@ Thermal Profiling Meltome Analysis Program.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084 ; sc:citation ; @@ -474180,7 +505155,7 @@ Thermal Profiling Meltome Analysis Program.""" ; biotools:primaryContact "Christian N. S. Pedersen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0091, edam:topic_2885, @@ -474197,7 +505172,7 @@ TRansfer Learning for Antibiotic Resistance Gene Classification (TRAC) is a neur sc:url "https://github.com/nafizh/TRAC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3173, @@ -474218,7 +505193,7 @@ TRansfer Learning for Antibiotic Resistance Gene Classification (TRAC) is a neur biotools:primaryContact "Esti Yeger-Lotem" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -474234,7 +505209,7 @@ TRansfer Learning for Antibiotic Resistance Gene Classification (TRAC) is a neur sc:url "http://bioinformaticstools.mayo.edu/research/trace-rrbs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation "pubmed:17490482" ; @@ -474248,7 +505223,7 @@ TRansfer Learning for Antibiotic Resistance Gene Classification (TRAC) is a neur biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2229, edam:topic_3170 ; @@ -474261,7 +505236,7 @@ TRansfer Learning for Antibiotic Resistance Gene Classification (TRAC) is a neur sc:url "https://github.com/LiuzLab/TraceQC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3293 ; @@ -474275,8 +505250,25 @@ TRansfer Learning for Antibiotic Resistance Gene Classification (TRAC) is a neur sc:softwareHelp ; sc:url "http://tree.bio.ed.ac.uk/software/tracer/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_3304, + edam:topic_3421, + edam:topic_3444 ; + sc:citation ; + sc:description "TRACER-3D is a useful toolbox for visualizing the trajectories of recording electrodes(e.g Neuropixels) through different sub-regions of the rat brain." ; + sc:featureList edam:operation_3890 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "TRACER" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Whitlock-Group/TRACER" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:description "A hybrid pipeline for reconstruction and analysis of viral and host genomes at multi-organ level." ; sc:isAccessibleForFree true ; @@ -474287,7 +505279,7 @@ TRansfer Learning for Antibiotic Resistance Gene Classification (TRAC) is a neur sc:url "https://github.com/viromelab/tracespipe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3305, @@ -474303,7 +505295,7 @@ TRansfer Learning for Antibiotic Resistance Gene Classification (TRAC) is a neur biotools:primaryContact "Kevin Chng" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2229, edam:topic_3382 ; @@ -474316,7 +505308,7 @@ TRansfer Learning for Antibiotic Resistance Gene Classification (TRAC) is a neur sc:url "https://github.com/Trackosome" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -474339,7 +505331,7 @@ TRansfer Learning for Antibiotic Resistance Gene Classification (TRAC) is a neur biotools:primaryContact "Tom Carroll" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -474361,7 +505353,7 @@ TRansfer Learning for Antibiotic Resistance Gene Classification (TRAC) is a neur biotools:primaryContact "Jianhong Ou" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3382 ; @@ -474378,7 +505370,7 @@ TRansfer Learning for Antibiotic Resistance Gene Classification (TRAC) is a neur biotools:primaryContact "Pierre Gönczy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3384, edam:topic_3444 ; @@ -474391,7 +505383,7 @@ TRansfer Learning for Antibiotic Resistance Gene Classification (TRAC) is a neur sc:url "https://github.com/MIC-DKFZ/TractSeg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0625, edam:topic_0769, @@ -474408,7 +505400,7 @@ TRansfer Learning for Antibiotic Resistance Gene Classification (TRAC) is a neur sc:url "https://github.com/eatkinson/Tractor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0736, @@ -474421,7 +505413,7 @@ TRansfer Learning for Antibiotic Resistance Gene Classification (TRAC) is a neur sc:url "http://bioportal.weizmann.ac.il/tracts/tracts.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0625, edam:topic_2229, @@ -474437,7 +505429,7 @@ The tracking view is where you will spend most of your time. It provides means f sc:url "https://tracurate.gitlab.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0769, edam:topic_3170, @@ -474464,7 +505456,7 @@ tradeSeq provides a flexible method for discovering genes that are differentiall sc:url "https://github.com/statOmics/tradeSeq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -474484,7 +505476,7 @@ tradeSeq provides a flexible method for discovering genes that are differentiall biotools:primaryContact "Anil Jegga" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, @@ -474498,7 +505490,7 @@ tradeSeq provides a flexible method for discovering genes that are differentiall sc:url "https://github.com/TheRocinante-lab/TrainSel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0611, @@ -474516,7 +505508,7 @@ tradeSeq provides a flexible method for discovering genes that are differentiall biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3293, @@ -474534,7 +505526,7 @@ tradeSeq provides a flexible method for discovering genes that are differentiall biotools:primaryContact "Alice McHardy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0625, @@ -474553,7 +505545,7 @@ tradeSeq provides a flexible method for discovering genes that are differentiall sc:url "http://traitrate.tau.ac.il/prop" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2269, @@ -474573,7 +505565,7 @@ tradeSeq provides a flexible method for discovering genes that are differentiall biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -474590,7 +505582,7 @@ tradeSeq provides a flexible method for discovering genes that are differentiall biotools:primaryContact "Lorenzo Gatti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0154, @@ -474618,18 +505610,15 @@ tradeSeq provides a flexible method for discovering genes that are differentiall a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_1384" ; + sc:name "Sequence alignment (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Sequence alignment (protein)" ; - sc:sameAs "http://edamontology.org/data_1384" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -474660,7 +505649,7 @@ tradeSeq provides a flexible method for discovering genes that are differentiall sc:url "http://emboss.open-bio.org/rel/rel6/apps/tranalign.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Align nucleic coding regions given the aligned proteins." ; @@ -474674,7 +505663,7 @@ tradeSeq provides a flexible method for discovering genes that are differentiall sc:url "http://genius.embnet.dkfz-heidelberg.de/menu/hobit/embdoc/tranalign.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:citation ; sc:description "TRAnsforming Nested Collections Efficiently (TraNCE) is a compilation framework that auto- mates the difficulties of designing distributed analyses with complex, biomedical data types." ; @@ -474686,14 +505675,14 @@ tradeSeq provides a flexible method for discovering genes that are differentiall a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2546" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_2055" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0196, @@ -474710,7 +505699,7 @@ tradeSeq provides a flexible method for discovering genes that are differentiall biotools:primaryContact "Readman Chiu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3047 ; sc:author "Ketil Malde" ; @@ -474728,14 +505717,13 @@ tradeSeq provides a flexible method for discovering genes that are differentiall a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2725" ; - sc:name "Ensembl transcript ID" ; - sc:sameAs "http://edamontology.org/data_2725" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2725" ; + sc:name "Ensembl transcript ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -474761,7 +505749,7 @@ tradeSeq provides a flexible method for discovering genes that are differentiall sc:url "https://github.com/ShihChingYu/TransAT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170, edam:topic_3308 ; @@ -474780,7 +505768,7 @@ RNA-seq technology is widely used in various transcriptomic studies and provides sc:url "https://sourceforge.net/projects/transcriptomeassembly/files/TransBorrow" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0154, edam:topic_0659, @@ -474797,18 +505785,18 @@ RNA-seq technology is widely used in various transcriptomic studies and provides a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2730" ; - sc:name "COGEME unisequence ID" ; - sc:sameAs "http://edamontology.org/data_2730" ] ; + sc:additionalType "http://edamontology.org/data_2730" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "COGEME unisequence ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2161" ; - sc:name "Sequence similarity plot" ; - sc:sameAs "http://edamontology.org/data_2161" ], + sc:additionalType "http://edamontology.org/data_2161" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence similarity plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application", "Web application" ; @@ -474829,7 +505817,7 @@ RNA-seq technology is widely used in various transcriptomic studies and provides biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0625, edam:topic_2229, @@ -474845,7 +505833,7 @@ RNA-seq technology is widely used in various transcriptomic studies and provides sc:url "http://github.com/nsuhasj/Transcompp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0099, @@ -474863,7 +505851,7 @@ RNA-seq technology is widely used in various transcriptomic studies and provides sc:url "http://www-labgtp.na.icar.cnr.it/Transcriptator/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2259, @@ -474884,7 +505872,7 @@ RNA-seq technology is widely used in various transcriptomic studies and provides biotools:primaryContact "Diego Morais" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0749, edam:topic_3170, @@ -474902,14 +505890,8 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr sc:name "TranscriptomeReconstructoR" ; sc:url "https://github.com/Maxim-Ivanov/TranscriptomeReconstructoR" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:description "CD Genomics proprietary GenSeqTM Technology provides Transcriptomic Data Analysis service. We have extensive experience in helping solve a wide variety of bioinformatics problems, large and small." ; - sc:name "Transcriptomic Data Analysis" ; - sc:url "https://www.cd-genomics.com/Transcriptomic-Data-Analysis.html" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3169, @@ -474934,14 +505916,12 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:name "Protein sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -474972,14 +505952,12 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_0080 ; @@ -475001,7 +505979,7 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr biotools:primaryContact "Web Production" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -475024,8 +506002,42 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr sc:url "http://www.gene-regulation.com/pub/databases.html#transfac" ; biotools:primaryContact "Webmaster" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "Tool for prediction of transcription factor given a protein sequence" ; + sc:featureList edam:operation_2945 ; + sc:name "transfacpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/transfacpred/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3337, + edam:topic_3384, + edam:topic_3474, + edam:topic_3517 ; + sc:citation ; + sc:description "Repository for transferGWAS, a deep learning method for performing genome-wide association studies on full medical imaging data." ; + sc:featureList edam:operation_3791, + edam:operation_3920, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "transferGWAS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/mkirchler/transferGWAS/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -475047,7 +506059,7 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr biotools:primaryContact "Nils Bluethgen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -475070,7 +506082,7 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr biotools:primaryContact "Jérôme Waldispühl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_3336, @@ -475087,7 +506099,7 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr sc:url "https://github.com/lifanchen-simm/transformerCPI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3382, @@ -475106,8 +506118,33 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr "Windows" ; sc:url "https://github.com/trueto/transformers_sklearn" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1936" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3320, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9048660", + "pubmed:35244144" ; + sc:description "A web application for the design of mammalian transgenes." ; + sc:featureList edam:operation_0446, + edam:operation_2428, + edam:operation_2962 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Transgene-design" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://transgene-design.bath.ac.uk" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -475123,7 +506160,7 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr sc:url "https://github.com/COL-IU/TransGeneScan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_0798, @@ -475140,7 +506177,7 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0121, @@ -475158,7 +506195,7 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr biotools:primaryContact "ExPASy helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -475181,7 +506218,7 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr "Toma Tebaldi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -475202,7 +506239,7 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr biotools:primaryContact "TranslatorX Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0108, @@ -475226,7 +506263,7 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr sc:url "http://bio-bigdata.hrbmu.edu.cn/TransLnc/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3303 ; @@ -475246,8 +506283,28 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr sc:softwareVersion "16.1" ; sc:url "http://transmartfoundation.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0203, + edam:topic_3170 ; + sc:citation , + "pubmed:35858749" ; + sc:description "TransMeta is an assembler that can simultaneously assemble RNA-seq reads of multiple samples. TransMeta can output a unified set of meta-annotations(GTF format) for all samples in an RNA-seq experiment and use the information from all the samples to generate a set of transcripts for each individual sample. TransMeta constructs the novel vector-weighted splicing graph model, in which the edges and nodes are weighted by vectors rather than single numbers with the element in kth position of the vectors being the corresponding weight in sample k. And TransMeta employs a cosine-similarity based combing strategy and label setting algorithm to recover the transcripts. TransMeta takes a file that lists the alignment files(Bam format) of multiple RNA-seq samples as input, and outputs all assembled candidate transcripts in GTF format." ; + sc:featureList edam:operation_0310, + edam:operation_3563, + edam:operation_3800 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "TransMeta" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/yutingsdu/TransMeta" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -475270,7 +506327,7 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr biotools:primaryContact "Dr. Qinghua Cui" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3179 ; @@ -475282,7 +506339,7 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr sc:url "http://wanglab.ucsd.edu/star/download.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3077, edam:topic_3336, @@ -475298,7 +506355,7 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr sc:url "https://github.com/MPI-Dortmund/transphire" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0622, @@ -475316,7 +506373,7 @@ TranscriptomeReconstructoR is an R package for data-driven annotation of transcr sc:url "https://github.com/xavierdidelot/transphylo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library", "Workflow" ; @@ -475337,7 +506394,7 @@ TransPi is based on the scientific workflow manager Nextflow. It is designed to sc:url "https://github.com/palmuc/TransPi.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0820, @@ -475355,24 +506412,8 @@ TransPi is based on the scientific workflow manager Nextflow. It is designed to sc:softwareHelp ; sc:url "http://github.com/cristealab/TRANSPIRE_JASMS2020" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3418, - edam:topic_3421, - edam:topic_3422 ; - sc:citation , - "pubmed:31743564" ; - sc:description """Assessing the acceptability and efficacy of teens taking charge. - -This hub offers information and tools to help teens understand what to expect before, during and after kidney transplant surgery. You will learn how you will be assessed for surgery and what to do while waiting for your transplant. You will also learn about adjusting to life with your new kidney, for example how to manage your medications, make healthy lifestyle choices, handle stress and make decisions that set you up for long-term success. - -||| NAME (transplant) SIMILAR TO (PUB. DIFFERENT) bio.tools/Transplant (Transplant). - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Participants-kidney'""" ; - sc:name "transplant_autogenerated" ; - sc:url "https://teens.aboutkidshealth.ca/kidneytransplant" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0602 ; @@ -475388,7 +506429,7 @@ This hub offers information and tools to help teens understand what to expect be sc:url "https://github.com/labbit-eu/transport_tools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, edam:topic_0622, @@ -475406,7 +506447,7 @@ This hub offers information and tools to help teens understand what to expect be sc:url "https://github.com/FenyoLab/transposcope" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -475421,7 +506462,7 @@ This hub offers information and tools to help teens understand what to expect be sc:url "http://sestaton.github.io/Transposome/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0637, @@ -475438,7 +506479,7 @@ This hub offers information and tools to help teens understand what to expect be sc:url "https://cellgeni.cog.sanger.ac.uk/browser.html?shared=transposonultimate/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3308 ; @@ -475452,7 +506493,7 @@ This hub offers information and tools to help teens understand what to expect be sc:url "https://bioinformatics.cs.vt.edu/zhanglab/software/transps/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0749, edam:topic_2229, @@ -475471,8 +506512,26 @@ Starting cell population: Select or upload a tab-separated file with the single- sc:name "TransSynW" ; sc:url "https://transsynw.lcsb.uni.lu/" . + a sc:SoftwareApplication ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:applicationSubCategory edam:topic_0749 ; + sc:citation , + "pmcid:PMC1852404", + "pubmed:17313685" ; + sc:description "TransTermHP finds rho-independent transcription terminators in bacterial genomes. Each terminator found by the program is assigned a confidence value that estimates its probability of being a true terminator" ; + sc:featureList edam:operation_0438 ; + sc:isAccessibleForFree true ; + sc:name "TransTermHP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://transterm.cbcb.umd.edu/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -475495,7 +506554,7 @@ Starting cell population: Select or upload a tab-separated file with the single- biotools:primaryContact "Julius Muller" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3067, @@ -475511,7 +506570,7 @@ Starting cell population: Select or upload a tab-separated file with the single- sc:url "https://github.com/JLiangLab/TransVW" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, edam:topic_0602, @@ -475527,7 +506586,7 @@ Starting cell population: Select or upload a tab-separated file with the single- sc:url "https://github.com/qiaoliuhub/drug_combination" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, edam:topic_3071, @@ -475538,7 +506597,7 @@ Starting cell population: Select or upload a tab-separated file with the single- sc:url "https://github.com/sgi-drylab/trantrace" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157, edam:topic_2885, @@ -475553,7 +506612,7 @@ Starting cell population: Select or upload a tab-separated file with the single- sc:url "http://www.coccidia.icb.usp.br/trap/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0749, edam:topic_3168, @@ -475569,7 +506628,7 @@ Starting cell population: Select or upload a tab-separated file with the single- sc:url "https://github.com/TerminatorJ/CRISPR-TRAP-seq.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -475594,14 +506653,13 @@ Finding genes associated with Mendelian disorders can often be challenging.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ] ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0907" ; + sc:name "Protein family report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0797 ; @@ -475620,22 +506678,22 @@ Finding genes associated with Mendelian disorders can often be challenging.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ], + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Gene expression profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_2628" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "BioGRID interaction ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2628" ; - sc:name "BioGRID interaction ID" ; - sc:sameAs "http://edamontology.org/data_2628" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3308 ; @@ -475656,7 +506714,7 @@ Finding genes associated with Mendelian disorders can often be challenging.""" ; biotools:primaryContact "Markus Wolfien" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_3125, @@ -475679,7 +506737,7 @@ Finding genes associated with Mendelian disorders can often be challenging.""" ; "Daria Kokh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -475700,7 +506758,7 @@ Finding genes associated with Mendelian disorders can often be challenging.""" ; biotools:primaryContact "Jae Hyun Lim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0199, edam:topic_0820, @@ -475718,22 +506776,22 @@ Finding genes associated with Mendelian disorders can often be challenging.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1017" ; - sc:name "Sequence range" ; - sc:sameAs "http://edamontology.org/data_1017" ], + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "DNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_1017" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence range" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0951" ; - sc:name "Statistical estimate score" ; - sc:sameAs "http://edamontology.org/data_0951" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0951" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Statistical estimate score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2885, @@ -475752,8 +506810,31 @@ Finding genes associated with Mendelian disorders can often be challenging.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/traseR.html" ; biotools:primaryContact "li chen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_2229, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8900372", + "pubmed:35255944" ; + sc:description "Inferring cell-cell interactions from pseudotime ordering of scRNA-Seq data." ; + sc:featureList edam:operation_0313, + edam:operation_0314, + edam:operation_3216, + edam:operation_3890 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "TraSig" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/doraadong/TraSig" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -475772,7 +506853,7 @@ Finding genes associated with Mendelian disorders can often be challenging.""" ; "Richard Elias" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -475795,7 +506876,7 @@ Finding genes associated with Mendelian disorders can often be challenging.""" ; "Mirana Ramialison" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157, @@ -475810,8 +506891,32 @@ Finding genes associated with Mendelian disorders can often be challenging.""" ; sc:softwareHelp ; sc:url "http://bioinfo.montp.cnrs.fr/?r=TRDistiller" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_0769, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC9063265", + "pubmed:35501677" ; + sc:description "R-based GUI package analyzing tRNA expression profiles from small RNA sequencing data." ; + sc:featureList edam:operation_0314, + edam:operation_0464, + edam:operation_3192, + edam:operation_3800 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "tReasure" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://treasure.pmrc.re.kr" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2269, @@ -475828,7 +506933,7 @@ Finding genes associated with Mendelian disorders can often be challenging.""" ; sc:url "http://www.hanzhang.name/softwares/treat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3325, edam:topic_3404, @@ -475850,8 +506955,29 @@ Finding genes associated with Mendelian disorders can often be challenging.""" ; sc:url "http://treatable-id.org" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_3063, + edam:topic_3303 ; + sc:citation ; + sc:description "An R package to analyze treatment patterns of a study population of interest." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "TreatmentPatterns" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://github.com/mi-erasmusmc/TreatmentPatterns" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3293, @@ -475867,7 +506993,7 @@ Finding genes associated with Mendelian disorders can often be challenging.""" ; sc:url "https://cbcl.ics.uci.edu//doku.php/software#tree-hmm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -475890,7 +507016,7 @@ Finding genes associated with Mendelian disorders can often be challenging.""" ; "Heiko A. Schmidt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "simple GUI tool for clusterization of data" ; sc:featureList edam:operation_3432, @@ -475905,7 +507031,7 @@ Finding genes associated with Mendelian disorders can often be challenging.""" ; biotools:primaryContact "W.M. Saj" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3293, edam:topic_3305 ; @@ -475921,8 +507047,27 @@ Finding genes associated with Mendelian disorders can often be challenging.""" ; sc:name "tree shape statistics" ; sc:url "https://github.com/WGS-TB/TreeShapeStats" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3305 ; + sc:citation , + "pubmed:34864914" ; + sc:description "The TreeAndLeaf package combines unrooted and force-directed graph algorithms in order to layout binary trees, aiming to represent multiple layers of information onto dendrogram leaves." ; + sc:featureList edam:operation_2938, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:license "Artistic-2.0" ; + sc:name "TreeAndLeaf" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://bioconductor.org/packages/TreeAndLeaf/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0621, edam:topic_0769, @@ -475944,14 +507089,12 @@ This python script can be used to infer species trees and phylogenetic networks a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3299 ; sc:citation "pubmed:7828077" ; @@ -475967,7 +507110,7 @@ This python script can be used to infer species trees and phylogenetic networks sc:url "http://bioinformatics.psb.ugent.be/software/details/TREECON" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -475988,7 +507131,7 @@ This python script can be used to infer species trees and phylogenetic networks biotools:primaryContact "TreeDet Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -476006,14 +507149,14 @@ This python script can be used to infer species trees and phylogenetic networks a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1707" ; - sc:name "Phylogenetic tree image" ; - sc:sameAs "http://edamontology.org/data_1707" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1707" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Phylogenetic tree image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0084 ; @@ -476033,14 +507176,12 @@ This python script can be used to infer species trees and phylogenetic networks a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0858" ; - sc:name "Sequence signature matches" ; - sc:sameAs "http://edamontology.org/data_0858" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0858" ; + sc:name "Sequence signature matches" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0084, @@ -476063,7 +507204,7 @@ This python script can be used to infer species trees and phylogenetic networks biotools:primaryContact "Fabian Schreiber" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -476079,7 +507220,7 @@ This python script can be used to infer species trees and phylogenetic networks sc:url "http://hulab.ucf.edu/software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -476097,26 +507238,26 @@ This python script can be used to infer species trees and phylogenetic networks a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_3159" ; + sc:name "Phylogenetic tree" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1707" ; - sc:name "Phylogenetic tree image" ; - sc:sameAs "http://edamontology.org/data_1707" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3751" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1707" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Phylogenetic tree image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_3050, @@ -476147,7 +507288,7 @@ This python script can be used to infer species trees and phylogenetic networks biotools:primaryContact "Ben Stöver" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0749, edam:topic_3474 ; @@ -476174,7 +507315,7 @@ treeheatr incorporates a heatmap at the terminal node of your decision tree. The sc:url "https://trang1618.github.io/treeheatr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, edam:topic_0780 ; @@ -476189,7 +507330,7 @@ treeheatr incorporates a heatmap at the terminal node of your decision tree. The sc:url "https://github.com/JLSteenwyk/treehouse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation ; @@ -476209,29 +507350,8 @@ treeheatr incorporates a heatmap at the terminal node of your decision tree. The sc:url "http://bioconductor.org/packages/release/bioc/html/treeio.html" ; biotools:primaryContact "Guangchuang Yu" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0080, - edam:topic_0084 ; - sc:citation , - "pubmed:31633786" ; - sc:description """an R package for phylogenetic tree input and output with richly annotated and associated data. - -Base Classes and Functions for Phylogenetic Tree Input and Output. - -'treeio' is an R package to make it easier to import and store phylogenetic tree with associated data; and to link external data from different sources to phylogeny. It also supports exporting phylogenetic tree with heterogeneous associated data to a single tree file and can be served as a platform for merging tree with associated data and converting file formats. - -||| NAME EQUAL TO (PUB. DIFFERENT) bio.tools/treeio""" ; - sc:featureList edam:operation_0323, - edam:operation_0326, - edam:operation_0551, - edam:operation_0558, - edam:operation_0567 ; - sc:license "Artistic-2.0" ; - sc:name "treeio_autogenerated" ; - sc:url "https://www.bioconductor.org/packages/treeio/" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0637 ; @@ -476247,8 +507367,30 @@ Base Classes and Functions for Phylogenetic Tree Input and Output. biotools:primaryContact "Bug report", "Mailing list" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0084, + edam:topic_2815, + edam:topic_3943 ; + sc:citation , + "pmcid:PMC9447925", + "pubmed:35984845" ; + sc:description "TreeKnit is a Julia package that performs the inference of Ancestral Reassortment Graph for segmented genomes (typically, human influenza)." ; + sc:featureList edam:operation_0323, + edam:operation_0326, + edam:operation_0567 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "TreeKnit" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/PierreBarrat/TreeKnit" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -476264,7 +507406,7 @@ Base Classes and Functions for Phylogenetic Tree Input and Output. sc:url "http://treeko.cgenomics.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3055 ; @@ -476280,7 +507422,7 @@ Base Classes and Functions for Phylogenetic Tree Input and Output. sc:url "https://sph.umich.edu/csg/software_pages/treeld.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0081, @@ -476298,7 +507440,7 @@ This repository contains code to simulate a series of sequence alignments and es sc:url "https://github.com/caitlinch/treelikeness" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3053, @@ -476318,7 +507460,7 @@ This repository contains code to simulate a series of sequence alignments and es biotools:primaryContact "Dominic J. Bennett" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, edam:topic_0625, @@ -476337,7 +507479,7 @@ TreeMap prioritizes putative causal variants in cis-eQTL accounting for multisit sc:url "https://github.com/liliulab/treemap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -476351,7 +507493,7 @@ TreeMap prioritizes putative causal variants in cis-eQTL accounting for multisit sc:url "https://bitbucket.org/nygcresearch/treemix/wiki/Home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -476368,7 +507510,7 @@ TreeMap prioritizes putative causal variants in cis-eQTL accounting for multisit sc:url "http://treerefiner.stanford.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0084, @@ -476391,7 +507533,7 @@ TreeMap prioritizes putative causal variants in cis-eQTL accounting for multisit biotools:primaryContact "S. Woolley" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3293, @@ -476408,7 +507550,7 @@ TreeMap prioritizes putative causal variants in cis-eQTL accounting for multisit sc:url "https://code.google.com/p/treesample/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0602, edam:topic_3174, @@ -476427,8 +507569,27 @@ If you are working with a particularly complex reference package, from an orthol sc:name "TreeSAPP" ; sc:url "https://github.com/hallamlab/TreeSAPP" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_3293 ; + sc:citation ; + sc:description "R package for phylogenetic tree search under custom optimality criteria" ; + sc:featureList edam:operation_0323, + edam:operation_0326, + edam:operation_0567 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "TreeSearch" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://ms609.github.io/TreeSearch/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_2269, @@ -476445,8 +507606,29 @@ If you are working with a particularly complex reference package, from an orthol sc:softwareHelp ; sc:url "http://cran.r-project.org/web/packages/TreeSim/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0625, + edam:topic_3336, + edam:topic_3474, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC8753810", + "pubmed:35016609" ; + sc:description "A modified decision tree approach to improve the prediction and mutation discovery for drug resistance in Mycobacterium tuberculosis." ; + sc:featureList edam:operation_3196, + edam:operation_3226, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Treesist-TB" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/WDee/Treesist-TB" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0092, @@ -476464,7 +507646,7 @@ If you are working with a particularly complex reference package, from an orthol biotools:primaryContact "Rod Page" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3293, @@ -476480,7 +507662,7 @@ If you are working with a particularly complex reference package, from an orthol sc:url "http://pengqiu.gatech.edu/software/TreeVis/index.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3293, edam:topic_3474, @@ -476497,7 +507679,7 @@ If you are working with a particularly complex reference package, from an orthol biotools:primaryContact "Xavier Didelot" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3344, @@ -476515,7 +507697,7 @@ If you are working with a particularly complex reference package, from an orthol biotools:primaryContact "Jenny" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pmcid:PMC6961062", "pubmed:31956739" ; @@ -476528,7 +507710,7 @@ The electrophysiological classification of tremors can be a key element in the d sc:url "https://electrophysiology.shinyapps.io/Tremoroton/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -476548,7 +507730,7 @@ The electrophysiological classification of tremors can be a key element in the d biotools:primaryContact "Paul Shannon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_3365, @@ -476568,7 +507750,7 @@ The electrophysiological classification of tremors can be a key element in the d sc:url "https://biochem.missouri.edu/trend/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3295, edam:topic_3308, @@ -476589,46 +507771,45 @@ This work contains a number of TREND-seq datasets investigating transcriptome-wi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_2385" ; + sc:name "RefSeq accession (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1900" ; - sc:name "NCBI locus tag" ; - sc:sameAs "http://edamontology.org/data_1900" ], + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2385" ; - sc:name "RefSeq accession (protein)" ; - sc:sameAs "http://edamontology.org/data_2385" ], + sc:additionalType "http://edamontology.org/data_1900" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "NCBI locus tag" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Protein sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1384" ; - sc:name "Protein sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1384" ], + sc:additionalType "http://edamontology.org/data_1384" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_1910" ; + sc:name "Phylogenetic tree" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0085, @@ -476653,7 +507834,7 @@ This work contains a number of TREND-seq datasets investigating transcriptome-wi sc:url "http://trend.evobionet.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0769, @@ -476667,7 +507848,7 @@ This work contains a number of TREND-seq datasets investigating transcriptome-wi sc:url "https://github.com/reconhub/trendbreaker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Workbench" ; sc:applicationSubCategory edam:topic_0203, @@ -476686,14 +507867,14 @@ This work contains a number of TREND-seq datasets investigating transcriptome-wi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2032" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0607, @@ -476714,7 +507895,7 @@ This work contains a number of TREND-seq datasets investigating transcriptome-wi biotools:primaryContact "Daniel Edsgärd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation ; @@ -476731,7 +507912,7 @@ This work contains a number of TREND-seq datasets investigating transcriptome-wi biotools:primaryContact "Rhonda Bacher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -476745,7 +507926,7 @@ This work contains a number of TREND-seq datasets investigating transcriptome-wi sc:url "http://sourceforge.net/p/treq/home/Home/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -476760,7 +507941,7 @@ This work contains a number of TREND-seq datasets investigating transcriptome-wi sc:url "http://bioinformatics.rutgers.edu/Software/TreqCG/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation "pubmed:26137847" ; @@ -476772,7 +507953,7 @@ This work contains a number of TREND-seq datasets investigating transcriptome-wi biotools:primaryContact "Ioannis Kavakiotis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3053, @@ -476788,7 +507969,7 @@ This work contains a number of TREND-seq datasets investigating transcriptome-wi sc:url "http://annelida.de/research/bioinformatics/software/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3295, @@ -476808,7 +507989,7 @@ This work contains a number of TREND-seq datasets investigating transcriptome-wi sc:url "https://bioconductor.org/packages/release/bioc/html/TRESS.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0621, edam:topic_3382, @@ -476828,7 +508009,7 @@ This work contains a number of TREND-seq datasets investigating transcriptome-wi sc:url "http://trex.run" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -476846,7 +508027,7 @@ This work contains a number of TREND-seq datasets investigating transcriptome-wi sc:url "http://tandem.bu.edu/trf/trf.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0659, @@ -476864,7 +508045,7 @@ tRFs are 14-32 base long single-stranded RNA derived from mature or precursor tR sc:url "http://genome.bioch.virginia.edu/trfdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -476883,7 +508064,7 @@ tRFs are 14-32 base long single-stranded RNA derived from mature or precursor tR sc:url "http://rna-informatics.uga.edu/?f=software&p=TRFolder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, edam:topic_3794 ; @@ -476897,7 +508078,7 @@ tRFs are 14-32 base long single-stranded RNA derived from mature or precursor tR sc:url "http://www.rnanut.net/tRFTar/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0659, @@ -476913,7 +508094,7 @@ tRFs are 14-32 base long single-stranded RNA derived from mature or precursor tR sc:url "http://trftars.cmuzhenninglab.org:3838/tar/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -476937,7 +508118,7 @@ Simulate genotypes for case-parent triads, case-control, and quantitative trait sc:url "https://cran.r-project.org/web/packages/TriadSim/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, edam:topic_0622, @@ -476957,7 +508138,7 @@ The Throughput Ranking by Iterative Analysis of Genomic Enrichment (TRIAGE) plat sc:url "https://triage.niaid.nih.gov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -476973,7 +508154,7 @@ The Throughput Ranking by Iterative Analysis of Genomic Enrichment (TRIAGE) plat sc:url "http://sourceforge.net/projects/triagetools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_2640, edam:topic_3360, @@ -476989,7 +508170,7 @@ The Throughput Ranking by Iterative Analysis of Genomic Enrichment (TRIAGE) plat sc:url "http://www.trialdesign.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -477005,7 +508186,7 @@ The Throughput Ranking by Iterative Analysis of Genomic Enrichment (TRIAGE) plat biotools:primaryContact "Sergey Makarov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -477020,7 +508201,7 @@ The Throughput Ranking by Iterative Analysis of Genomic Enrichment (TRIAGE) plat sc:url "http://proteomics.ethz.ch/tric/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2640, edam:topic_3170 ; @@ -477035,14 +508216,13 @@ The Throughput Ranking by Iterative Analysis of Genomic Enrichment (TRIAGE) plat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ] ; + sc:additionalType "http://edamontology.org/data_2295" ; + sc:name "Gene ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation , @@ -477059,26 +508239,26 @@ The Throughput Ranking by Iterative Analysis of Genomic Enrichment (TRIAGE) plat a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Nucleic acid sequence alignment" ; - sc:sameAs "http://edamontology.org/data_1383" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Nucleic acid sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2012" ; - sc:name "Sequence coordinates" ; - sc:sameAs "http://edamontology.org/data_2012" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2012" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence coordinates" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_0157 ; sc:author ; @@ -477095,7 +508275,7 @@ The Throughput Ranking by Iterative Analysis of Genomic Enrichment (TRIAGE) plat sc:url "https://github.com/davidebolo1993/TRiCoLOR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3170, @@ -477113,7 +508293,7 @@ The Throughput Ranking by Iterative Analysis of Genomic Enrichment (TRIAGE) plat biotools:primaryContact "Loyal A. Goff" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0634, @@ -477131,7 +508311,7 @@ Calculation of gene TRID weights from a gene expression matrix.""" ; sc:url "https://github.com/shannjiang/TRID" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0154, @@ -477146,8 +508326,43 @@ Calculation of gene TRID weights from a gene expression matrix.""" ; sc:softwareHelp ; sc:url "http://mathdamp.iab.keio.ac.jp/tridamp/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0954" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Database cross-mapping" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0954" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Database cross-mapping" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script", + "Workflow" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_3320, + edam:topic_3512 ; + sc:author ; + sc:citation , + "pmcid:PMC8140736", + "pubmed:34046593" ; + sc:contributor ; + sc:description "TRIFID is an ML-based tool trained on the evidence of large-scale proteomics analysis and evolutionary, structural, annotation, splicing, and RNA-seq based features to classify the biologically important splice isoforms." ; + sc:featureList edam:operation_0361, + edam:operation_0362, + edam:operation_3225, + edam:operation_3672 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "TRIFID" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareHelp ; + sc:softwareVersion "1.0.0" ; + sc:url "https://gitlab.com/bu_cnio/trifid" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3056 ; @@ -477164,26 +508379,23 @@ Calculation of gene TRID weights from a gene expression matrix.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ], + sc:additionalType "http://edamontology.org/data_1234" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (nucleic acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1234" ; - sc:name "Sequence set (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1234" ], + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1463" ; - sc:name "Small molecule structure" ; - sc:sameAs "http://edamontology.org/data_1463" ] ; + sc:additionalType "http://edamontology.org/data_1463" ; + sc:name "Small molecule structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0962" ; - sc:name "Small molecule report" ; - sc:sameAs "http://edamontology.org/data_0962" ], + sc:additionalType "http://edamontology.org/data_0962" ; + sc:name "Small molecule report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0209, edam:topic_0602, @@ -477205,7 +508417,7 @@ Calculation of gene TRID weights from a gene expression matrix.""" ; biotools:primaryContact "Alain Goossens" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0749, @@ -477230,14 +508442,14 @@ Calculation of gene TRID weights from a gene expression matrix.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1949" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1961" ; + sc:name "Sequence set" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0194, @@ -477264,7 +508476,7 @@ Calculation of gene TRID weights from a gene expression matrix.""" ; biotools:primaryContact "Diogo Silva" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0602, @@ -477287,7 +508499,7 @@ Calculation of gene TRID weights from a gene expression matrix.""" ; biotools:primaryContact "John D. Storey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0089, @@ -477306,7 +508518,7 @@ Feature selection is a relevant step in the analysis of single-cell RNA sequenci sc:url "https://gitlab.com/alexmascension/triku" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0602, @@ -477322,7 +508534,7 @@ Feature selection is a relevant step in the analysis of single-cell RNA sequenci sc:url "https://www.uea.ac.uk/computing/TriLoNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "A wrapper tool around Cutadapt and FastQC to consistently apply quality and adapter trimming to FastQ files, with some extra functionality for MspI-digested RRBS-type (Reduced Representation Bisufite-Seq) libraries." ; @@ -477336,18 +508548,18 @@ Feature selection is a relevant step in the analysis of single-cell RNA sequenci a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -477368,18 +508580,17 @@ Feature selection is a relevant step in the analysis of single-cell RNA sequenci a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ], + sc:additionalType "http://edamontology.org/data_1916" ; + sc:encodingFormat "http://edamontology.org/format_1998" ; + sc:name "Alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1916" ; - sc:name "Alignment" ; - sc:sameAs "http://edamontology.org/data_1916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -477399,14 +508610,12 @@ Feature selection is a relevant step in the analysis of single-cell RNA sequenci a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3511 ; sc:citation , @@ -477439,22 +508648,22 @@ Feature selection is a relevant step in the analysis of single-cell RNA sequenci a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1933" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -477471,7 +508680,7 @@ Feature selection is a relevant step in the analysis of single-cell RNA sequenci biotools:primaryContact "Anthony Bolger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3300, edam:topic_3336, @@ -477491,14 +508700,12 @@ TrimNet can accurately complete multiple molecular properties prediction tasks w a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -477530,22 +508737,22 @@ TrimNet can accurately complete multiple molecular properties prediction tasks w a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; @@ -477564,14 +508771,12 @@ TrimNet can accurately complete multiple molecular properties prediction tasks w a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -477601,7 +508806,7 @@ TrimNet can accurately complete multiple molecular properties prediction tasks w sc:url "http://emboss.open-bio.org/rel/rel6/apps/trimspace.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -477617,12 +508822,17 @@ TrimNet can accurately complete multiple molecular properties prediction tasks w sc:url "https://sourceforge.net/projects/trinculo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3308, edam:topic_3512 ; - sc:citation "pubmed:21572440" ; + sc:citation , + , + "pmcid:PMC3571712", + "pmcid:PMC3875132", + "pubmed:21572440", + "pubmed:23845962" ; sc:description "Trinity is a transcriptome assembler which relies on three different tools, inchworm an assembler, chrysalis which pools contigs and butterfly which amongst others compacts a graph resulting from butterfly with reads." ; sc:featureList edam:operation_3258 ; sc:name "Trinity" ; @@ -477633,7 +508843,7 @@ TrimNet can accurately complete multiple molecular properties prediction tasks w "Nir Friedman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Suite" ; sc:applicationSubCategory edam:topic_0203, @@ -477648,7 +508858,7 @@ TrimNet can accurately complete multiple molecular properties prediction tasks w sc:url "https://github.com/Trinotate/Trinotate.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -477671,7 +508881,7 @@ TrimNet can accurately complete multiple molecular properties prediction tasks w biotools:primaryContact "Holger Schwender" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -477688,7 +508898,7 @@ TrimNet can accurately complete multiple molecular properties prediction tasks w "Wei Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053, @@ -477702,7 +508912,7 @@ TrimNet can accurately complete multiple molecular properties prediction tasks w sc:url "https://github.com/yongzhuang/TrioCNV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -477725,7 +508935,7 @@ TrimNet can accurately complete multiple molecular properties prediction tasks w sc:url "https://github.com/yongzhuang/TrioCNV2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2533, @@ -477739,8 +508949,31 @@ TrimNet can accurately complete multiple molecular properties prediction tasks w sc:softwareHelp ; sc:url "http://genome.sph.umich.edu/wiki/Triodenovo" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0622, + edam:topic_3055, + edam:topic_3168 ; + sc:citation , + "pmcid:PMC8607709", + "pubmed:34809557" ; + sc:description "Using Mendelian inheritance logic to improve genomic phasing of trios" ; + sc:featureList edam:operation_0487, + edam:operation_3196, + edam:operation_3435, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "trioPhaser" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/dmiller903/trioPhaser" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3676 ; @@ -477756,7 +508989,7 @@ TrimNet can accurately complete multiple molecular properties prediction tasks w sc:url "http://www.bytebucket.org/vda-lab/triovis/wiki/Home" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -477778,7 +509011,7 @@ TrimNet can accurately complete multiple molecular properties prediction tasks w "Ju-Hong Jeon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, edam:topic_3512, @@ -477791,7 +509024,7 @@ TrimNet can accurately complete multiple molecular properties prediction tasks w sc:url "https://fgr.hms.harvard.edu/trip-in-vivo-fly-rnai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053 ; @@ -477809,7 +509042,7 @@ TrimNet can accurately complete multiple molecular properties prediction tasks w biotools:primaryContact "Support Forum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0621, @@ -477837,7 +509070,7 @@ This record is maintained by: bcondon ORCID , spficklin , mestato.""" ; sc:url "https://github.com/NAL-i5K/tripal_eutils" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3489, edam:topic_3810 ; @@ -477855,7 +509088,7 @@ This record is maintained by: bcondon ORCID , spficklin , mestato.""" ; sc:url "https://github.com/tripal/tripal_galaxy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -477876,7 +509109,7 @@ This record is maintained by: bcondon ORCID , spficklin , mestato.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3489 ; @@ -477894,8 +509127,55 @@ This record is maintained by: bcondon ORCID , spficklin , mestato.""" ; sc:url "https://github.com/tripal/tripal_elasticsearch" ; biotools:primaryContact "Margaret Staton" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0989" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein identifier" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0128 ; + sc:description "Predict RNA binding proteins from sequences using string kernel SVMs." ; + sc:featureList edam:operation_1777 ; + sc:isAccessibleForFree true ; + sc:name "TriPepSVM" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/marsicoLab/TriPepSVM" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0203, + edam:topic_0621, + edam:topic_3512, + edam:topic_3518 ; + sc:citation ; + sc:description "TripletGO is an algorithm for predicting Gene Ontology (GO) of genes. It consists of four pipelines to detect GO terms through (1) expression profile similarity based on triplet network, (2) genetic sequence alignment, (3) protein sequence alignment, and (4) naïve probability. The final function insights are a combination of the four pipelines through neural network" ; + sc:featureList edam:operation_0314, + edam:operation_2436, + edam:operation_3672 ; + sc:isAccessibleForFree true ; + sc:name "TripletGO" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://zhanglab.ccmb.med.umich.edu/TripletGO/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, edam:topic_0736, @@ -477916,7 +509196,7 @@ TripletRes is a method for protein inter-residue contact prediction. For a query sc:url "https://zhanglab.ccmb.med.umich.edu/TripletRes/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -477940,7 +509220,7 @@ TripletRes is a method for protein inter-residue contact prediction. For a query biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, edam:topic_0659, @@ -477962,38 +509242,38 @@ TriplexFPP is an integrated program for DNA:RNA triplex prediction. It contains a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2342" ; - sc:name "Pathway or network name" ; - sc:sameAs "http://edamontology.org/data_2342" ], + sc:additionalType "http://edamontology.org/data_2342" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Pathway or network name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2909" ; - sc:name "Organism name" ; - sc:sameAs "http://edamontology.org/data_2909" ], + sc:additionalType "http://edamontology.org/data_2909" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Organism name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2355" ; - sc:name "RNA family identifier" ; - sc:sameAs "http://edamontology.org/data_2355" ], + sc:additionalType "http://edamontology.org/data_2299" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene name" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2299" ; - sc:name "Gene name" ; - sc:sameAs "http://edamontology.org/data_2299" ] ; + sc:additionalType "http://edamontology.org/data_2355" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "RNA family identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ], + sc:additionalType "http://edamontology.org/data_2166" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Sequence composition plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Database search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2166" ; - sc:name "Sequence composition plot" ; - sc:sameAs "http://edamontology.org/data_2166" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2140" ; - sc:name "Concentration" ; - sc:sameAs "http://edamontology.org/data_2140" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2140" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Concentration" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0099, @@ -478014,8 +509294,49 @@ TriplexFPP is an integrated program for DNA:RNA triplex prediction. It contains sc:url "https://triplexrna.org" ; biotools:primaryContact "Andrea Bagnacani" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2830 ; + sc:citation , + "pmcid:PMC7525938", + "pubmed:32993478" ; + sc:description "T-cell Receptor/Immunoglobulin Profiler (TRIP)" ; + sc:featureList edam:operation_2403 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "tripr" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "1.0" ; + sc:url "https://github.com/BiodataAnalysisGroup/TRIP" ; + biotools:primaryContact . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0194, + edam:topic_3053, + edam:topic_3293 ; + sc:citation , + "pubmed:34978565" ; + sc:description "Completing Gene Trees Without Species Trees in Sub-quadratic Time." ; + sc:featureList edam:operation_0544, + edam:operation_0553, + edam:operation_3478, + edam:operation_3942 ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "tripVote" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/uym2/tripVote" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Workflow" ; sc:applicationSubCategory edam:topic_0085, @@ -478036,7 +509357,7 @@ Triti-Map could efficiently explore trait-related genes or functional elements n sc:url "https://github.com/fei0810/Triti-Map" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3055, edam:topic_3298, @@ -478053,14 +509374,12 @@ Triti-Map could efficiently explore trait-related genes or functional elements n a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1759" ; - sc:name "PDB model number" ; - sc:sameAs "http://edamontology.org/data_1759" ] ; + sc:additionalType "http://edamontology.org/data_1759" ; + sc:name "PDB model number" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3332 ; sc:citation ; @@ -478081,7 +509400,7 @@ Triti-Map could efficiently explore trait-related genes or functional elements n biotools:primaryContact "Martin Prokop" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3500 ; @@ -478100,7 +509419,7 @@ Triti-Map could efficiently explore trait-related genes or functional elements n biotools:primaryContact "TriTrypDB Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, edam:topic_3169, @@ -478117,20 +509436,8 @@ Long noncoding RNAs (lncRNAs) have been proven to play important roles in transc sc:name "TRlnc" ; sc:url "http://bio.licpathway.net/TRlnc" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0108, - edam:topic_0749, - edam:topic_3512 ; - sc:citation , - "pmcid:PMC6755087", - "pubmed:31428787" ; - sc:description "> MEDIUM CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'katA katB', 'katB' | tRNA m7G46 methyltransferase, plays a role in hydrogen peroxide resistance and positively modulates the translation of katA and katB mRNAs in Pseudomonas aeruginosa | Cellular response to oxidative stress is a crucial mechanism that promotes the survival of Pseudomonas aeruginosa during infection. However, the translational regulation of oxidative stress response remains largely unknown. Here, we reveal a tRNA modification-mediated translational response to H2O2 in P. aeruginosa. We demonstrated that the P. aeruginosa trmB gene encodes a tRNA guanine (46)-N7-methyltransferase that catalyzes the formation of m7G46 in the tRNA variable loop. Twenty-three tRNA substrates of TrmB with a guanosine residue at position 46 were identified, including 11 novel tRNA substrates. We showed that loss of trmB had a strong negative effect on the translation of Phe- and Asp-enriched mRNAs" ; - sc:featureList edam:operation_3501 ; - sc:name "trmB" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31428787" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0219, @@ -478148,8 +509455,24 @@ Long noncoding RNAs (lncRNAs) have been proven to play important roles in transc sc:url "http://trna.nagahama-i-bio.ac.jp" ; biotools:primaryContact "tRNADB-CE Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC4287530", + "pubmed:25272949" ; + sc:description "The tRNAmod is a web-server for the prediction of transfer RNA (tRNA) modifications. Post-transcriptional modifications of tRNA plays a major role in their functionality." ; + sc:featureList edam:operation_2945 ; + sc:name "trnamod" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/trnamod/index.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0099, @@ -478167,12 +509490,15 @@ Long noncoding RNAs (lncRNAs) have been proven to play important roles in transc "Magdalena Machnicka" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, edam:topic_0622 ; - sc:citation "pubmed:27174935" ; + sc:citation , + "pmcid:PMC146525", + "pubmed:27174935", + "pubmed:9023104" ; sc:description "A program for improved detection of transfer RNA genes in genomic sequence." ; sc:featureList edam:operation_0253, edam:operation_0464 ; @@ -478184,7 +509510,7 @@ Long noncoding RNAs (lncRNAs) have been proven to play important roles in transc sc:url "http://trna.ucsc.edu/tRNAscan-SE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070 ; sc:description "The package imports the result of tRNAscan-SE as a GRanges object." ; @@ -478200,8 +509526,30 @@ Long noncoding RNAs (lncRNAs) have been proven to play important roles in transc sc:url "http://bioconductor.org/packages/release/bioc/html/tRNAscanImport.html" ; biotools:primaryContact "Felix GM Ernst" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pubmed:35389452" ; + sc:description "tRNAstudio is a tool designed to analyze small RNA-seq datasets (single-end or paired-end data) in order to characterize tRNAs. It includes a specific mapping workflow and extracts information on tRNA gene expression (DESeq2 and Iso-tRNA-CP), classification of sequencing reads likely derived from precursor tRNAs (pre-tRNAs) or mature tRNAs (processed tRNAs), tRNA gene sequence coverage, and post-transcriptional tRNA modification levels." ; + sc:featureList edam:operation_0464, + edam:operation_2939, + edam:operation_3185, + edam:operation_3192, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "tRNAstudio" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:url "https://github.com/GeneTranslationLab-IRB/tRNAstudio" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0654, @@ -478221,7 +509569,7 @@ Long noncoding RNAs (lncRNAs) have been proven to play important roles in transc biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3293, @@ -478241,7 +509589,7 @@ Long noncoding RNAs (lncRNAs) have been proven to play important roles in transc biotools:primaryContact "Jingyi Jessica Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3308 ; @@ -478256,7 +509604,7 @@ Long noncoding RNAs (lncRNAs) have been proven to play important roles in transc biotools:primaryContact "TromER Helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3168 ; @@ -478279,26 +509627,8 @@ Long noncoding RNAs (lncRNAs) have been proven to play important roles in transc sc:url "https://sites.google.com/site/troncopackage/" ; biotools:primaryContact "Marco Antoniotti" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_2269 ; - sc:citation , - ; - sc:description """Modelling lake trophic state. - -Hollister, J. W., W. B . Milstead, B. J. Kreakie. (2016). Modeling Lake Trophic State: A Random Forest Approach. Ecosphere 7:3 10.1002/ecs2.1321. - -This repository contains all the materials needed to reproduce Hollister et al. (2015) Modeling Lake Trophic State: A Random Forest Approach. These materials are presented as an R Package which contains code used for analyses, code used to develop figures, raw data used for all analysese, and a package vignette that contains the accepted, unformatted version of the manuscript. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'Modelling lake trophic state', 'trophic state', 'universally', 'situ'""" ; - sc:featureList edam:operation_0451, - edam:operation_0452, - edam:operation_3659 ; - sc:name "trophic" ; - sc:url "https://github.com/USEPA/LakeTrophicModelling" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -478311,8 +509641,59 @@ This repository contains all the materials needed to reproduce Hollister et al. sc:softwareHelp ; sc:url "http://sourceforge.net/projects/trowel-ec/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0602, + edam:topic_3172, + edam:topic_3407, + edam:topic_3697 ; + sc:citation , + "pmcid:PMC8777792", + "pubmed:35050132" ; + sc:description "TrpNet is a comprehensive resource for researchers to visually explore, search, or predict tryptophan metabolism within the context of human and mouse gut microbiome." ; + sc:featureList edam:operation_3660, + edam:operation_3891, + edam:operation_3929 ; + sc:isAccessibleForFree true ; + sc:name "TrpNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.trpnet.ca" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0130, + edam:topic_0154, + edam:topic_0736, + edam:topic_3474 ; + sc:citation , + , + "pmcid:PMC8693034", + "pubmed:34719864", + "pubmed:34759384" ; + sc:description "trRosetta is an algorithm for fast and accurate protein structure prediction." ; + sc:featureList edam:operation_0267, + edam:operation_0303, + edam:operation_0474, + edam:operation_2476, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:name "trRosetta" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://yanglab.nankai.edu.cn/trRosetta/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, edam:topic_2885 ; @@ -478328,7 +509709,7 @@ TRTools includes a variety of utilities for filtering, quality control and analy sc:url "https://github.com/gymreklab/TRTools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0196, @@ -478344,7 +509725,7 @@ TRTools includes a variety of utilities for filtering, quality control and analy sc:url "http://bioinfolab.uncc.edu/TruHmm_package/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3170, @@ -478360,7 +509741,7 @@ TRTools includes a variety of utilities for filtering, quality control and analy biotools:primaryContact "Florian G Pflug" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -478381,7 +509762,7 @@ TRTools includes a variety of utilities for filtering, quality control and analy biotools:primaryContact "Teng Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -478397,7 +509778,7 @@ TRTools includes a variety of utilities for filtering, quality control and analy sc:url "http://www.ibi.vu.nl/programs/trustwww/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, @@ -478415,7 +509796,7 @@ TRTools includes a variety of utilities for filtering, quality control and analy biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -478440,7 +509821,7 @@ All datasets are available in this drive directory.""" ; sc:url "http://github.com/theislab/trvae" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -478464,7 +509845,7 @@ All datasets are available in this drive directory.""" ; sc:url "http://github.com/rrwick/Trycycler-paper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3047, edam:topic_3068 ; @@ -478479,7 +509860,7 @@ TrypInDB is a searchable online resource of small molecule inhibitors having a v sc:url "http://trypindb.biomedinformri.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_0634, @@ -478504,7 +509885,7 @@ tpc -p 1000 -i toy_samples.txt -t traitmatrix.txt -n 1 -o p_values.txt.""" ; sc:url "https://github.com/Jianjun-CN/c-code-for-TS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -478514,24 +509895,8 @@ tpc -p 1000 -i toy_samples.txt -t traitmatrix.txt -n 1 -o p_values.txt.""" ; sc:operatingSystem "Windows" ; sc:url "http://bio.cs.put.poznan.pl/programs/519227aa9dfb895744000001" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0593, - edam:topic_0820, - edam:topic_2229 ; - sc:citation , - "pubmed:31839257" ; - sc:description """Identifying Heteroprotein Complexes in the Nuclear Envelope. - -The nucleus is delineated by the nuclear envelope (NE), which is a double membrane barrier composed of the inner and outer nuclear membranes as well as a ∼40-nm wide lumen. In addition to its barrier function, the NE acts as a critical signaling node for a variety of cellular processes, which are mediated by protein complexes within this subcellular compartment. Although fluorescence fluctuation spectroscopy is a powerful tool for characterizing protein complexes in living cells, it was recently demonstrated that conventional fluorescence fluctuation spectroscopy methods are not suitable for applications in the NE because of the presence of slow nuclear membrane undulations. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'DC tsMSQ', 'DC'""" ; - sc:name "tsMSQ" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31839257" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -478553,7 +509918,7 @@ The nucleus is delineated by the nuclear envelope (NE), which is a double membra biotools:primaryContact "Zhicheng Ji" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -478573,7 +509938,7 @@ The nucleus is delineated by the nuclear envelope (NE), which is a double membra sc:url "https://github.com/Gaius-Augustus/TSEBRA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0128, @@ -478597,7 +509962,7 @@ The nucleus is delineated by the nuclear envelope (NE), which is a double membra biotools:primaryContact "Jose Maria González-Izarzugaza" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_2885, @@ -478615,7 +509980,7 @@ The nucleus is delineated by the nuclear envelope (NE), which is a double membra sc:url "http://github.com/labASIMBTFWang/TSETA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0659, edam:topic_0749, @@ -478632,7 +509997,7 @@ The nucleus is delineated by the nuclear envelope (NE), which is a double membra "David H Ardell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3324, edam:topic_3474 ; @@ -478648,7 +510013,7 @@ The nucleus is delineated by the nuclear envelope (NE), which is a double membra biotools:primaryContact "Alexander D. Becker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -478665,7 +510030,7 @@ The nucleus is delineated by the nuclear envelope (NE), which is a double membra biotools:primaryContact "Runxuan Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3500 ; @@ -478679,8 +510044,29 @@ The nucleus is delineated by the nuclear envelope (NE), which is a double membra sc:softwareHelp ; sc:url "https://www.github.com/zygurt/TSM" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_0659, + edam:topic_2640, + edam:topic_3335, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8479276", + "pubmed:34631283" ; + sc:description "Target and symptom-based computational model for miRNA-disease-association prediction." ; + sc:featureList edam:operation_0463, + edam:operation_3792 ; + sc:isAccessibleForFree true ; + sc:name "TSMDA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://biosig.unimelb.edu.au/tsmda/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -478706,7 +510092,7 @@ TSMiner provides a network map with extensive interactive visualization operatio sc:url "https://github.com/free1234hm/tsminer-tool.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -478733,8 +510119,32 @@ TSMiner provides a network map with extensive interactive visualization operatio "Windows" ; sc:url "http://biopharm.zju.edu.cn/tsnad/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0128, + edam:topic_0154, + edam:topic_0659, + edam:topic_3511, + edam:topic_3512 ; + sc:citation , + "pubmed:35753699" ; + sc:description "Predicting type-specific nucleic acid binding residues via an ensemble approach." ; + sc:featureList edam:operation_0415, + edam:operation_0420, + edam:operation_3900, + edam:operation_3901, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "TSNAPred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/niewenjuan-csu/TSNAPred" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -478750,7 +510160,7 @@ TSMiner provides a network map with extensive interactive visualization operatio sc:url "http://dibernardo.tigem.it/softwares/time-series-network-identification-tsni" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, edam:topic_3379 ; @@ -478765,7 +510175,7 @@ R code for simulation and trial implementation of the TSNP design.""" ; sc:url "https://github.com/yongzang2020/TSNP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -478787,7 +510197,7 @@ R code for simulation and trial implementation of the TSNP design.""" ; biotools:primaryContact "Jeffrey T. Leek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3512 ; @@ -478802,7 +510212,7 @@ tspex is a tool that allows easy computation of a variety of tissue-specificity sc:url "https://apcamargo.github.io/tspex/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -478820,7 +510230,7 @@ tspex is a tool that allows easy computation of a variety of tissue-specificity biotools:primaryContact "J. Grey Monroe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102, @@ -478834,8 +510244,21 @@ tspex is a tool that allows easy computation of a variety of tissue-specificity sc:name "TSPORTNet" ; sc:url "https://github.com/liuyi1989/TSPORTNet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "This server allows you to predict the 3D structure of proteins from its amino acid sequence. Its based upon a composite approach, incorporating homology and ab-inito based methods." ; + sc:featureList edam:operation_2945 ; + sc:name "tsppred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/tsppred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -478862,7 +510285,7 @@ tspex is a tool that allows easy computation of a variety of tissue-specificity biotools:primaryContact "COSPI Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0128, @@ -478880,7 +510303,7 @@ tspex is a tool that allows easy computation of a variety of tissue-specificity sc:url "https://github.com/liulifenyf/TSPTFBS" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, edam:topic_0659, @@ -478897,7 +510320,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a sc:url "http://www.tsrbase.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0203, @@ -478917,7 +510340,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a biotools:primaryContact "R. Taylor Raborn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0634, @@ -478939,8 +510362,30 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a "Windows" ; sc:url "https://zentnerlab.github.io/TSRexploreR/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0659, + edam:topic_2640, + edam:topic_3170, + edam:topic_3308, + edam:topic_3794 ; + sc:citation , + "pmcid:PMC8728237", + "pubmed:34755848" ; + sc:description "A comprehensive platform for decoding human tsRNA expression, functions and prognostic value by high-throughput small RNA-Seq and CLIP-Seq data." ; + sc:featureList edam:operation_0314, + edam:operation_2436, + edam:operation_3680 ; + sc:isAccessibleForFree true ; + sc:name "tsRFun" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://rna.sysu.edu.cn/tsRFun/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0203, @@ -478965,7 +510410,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a sc:url "https://github.com/GiantSpaceRobot/tsRNAsearch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_3168, @@ -478986,7 +510431,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0749, @@ -479002,7 +510447,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a sc:url "http://www.clipz.unibas.ch/downloads/TSSer/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0621, edam:topic_0749, @@ -479021,7 +510466,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a biotools:primaryContact "Alan Mitchell Durham" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0080, @@ -479042,8 +510487,59 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a sc:url "http://bioconductor.org/packages/release/bioc/html/TSSi.html" ; biotools:primaryContact "Julian Gehring" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3005" ; + sc:name "Expression data" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2371" ; + sc:name "ASTD ID (tss)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC3656092", + "pubmed:23696746" ; + sc:description "TSSpredator, a Java program for the automated detection and classification of TSS from RNA-seq data. TSSpredator reads RNA-seq data in the form of simple wiggle files and performs a genome wide comparative prediction of TSS, for example between different growth conditions." ; + sc:featureList edam:operation_0438, + edam:operation_2454, + edam:operation_3208 ; + sc:isAccessibleForFree true ; + sc:name "TSSpredator" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + ; + sc:url "https://uni-tuebingen.de/fakultaeten/mathematisch-naturwissenschaftliche-fakultaet/fachbereiche/informatik/lehrstuehle/integrative-transkriptomik/software/tsspredator" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0749, + edam:topic_3170, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8598296", + "pubmed:34805991" ; + sc:description "An R package for comprehensive analyses of TSS sequencing data." ; + sc:featureList edam:operation_2422, + edam:operation_2939, + edam:operation_3799, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "TSSr" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Linlab-slu/TSSr" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -479059,7 +510555,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a sc:url "https://git.lumc.nl/j.f.j.laros/tssv/blob/master/README.md" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_0780, edam:topic_3810 ; @@ -479069,7 +510565,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a sc:url "https://github.com/reumandc/tsvr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -479088,7 +510584,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a sc:url "https://github.com/ChaissonLab/TT-Mars.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -479109,7 +510605,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a biotools:primaryContact "Feng Zhu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, edam:topic_0659, @@ -479125,7 +510621,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a sc:url "http://db.idrblab.net/ttd/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3518 ; sc:description "It is a clustering method that groups together samples with the same deviation in comparison to a control group. It is specially useful when the data is small. It is parameter free." ; @@ -479144,7 +510640,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a biotools:primaryContact "Rachel Jeitziner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -479161,7 +510657,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a sc:url "http://ggeda.bii.a-star.edu.sg/~piroonj/TTS_mapping/TTS_mapping.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -479188,7 +510684,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a sc:url "http://www.bio-server.cn/TTSurv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_3304, edam:topic_3379 ; @@ -479200,14 +510696,13 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1097" ; - sc:name "Sequence accession (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1097" ] ; + sc:additionalType "http://edamontology.org/data_1097" ; + sc:name "Sequence accession (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation , @@ -479222,7 +510717,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a sc:url "http://genolist.pasteur.fr/TubercuList/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209 ; @@ -479237,8 +510732,31 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a sc:softwareVersion "1.4.3" ; sc:url "http://tuberq.proteinq.com.ar/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_2885, + edam:topic_3174, + edam:topic_3305, + edam:topic_3489 ; + sc:citation , + "pmcid:PMC9281601", + "pubmed:35846888" ; + sc:description "Enabling fast and accurate record linkage of large-scale health-related administrative databases through a DNA-encoded approach." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3432 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Tucuxi-BLAST" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/csbl-br/tucuxi_blast" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3474, edam:topic_3577 ; @@ -479251,7 +510769,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a sc:url "https://github.com/CSB5/TUGDA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -479266,8 +510784,43 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a sc:url "http://training.genouest.org/claroline/claroline/learnPath/learningPathList.php?cidReset=true&cidReq=TUIUIU" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_2640, + edam:topic_3299, + edam:topic_3474 ; + sc:citation ; + sc:description "Inferring ongoing cancer evolution from single tumour biopsies using synthetic supervised learning." ; + sc:featureList edam:operation_3625, + edam:operation_3629 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "TumE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/tomouellette/TumE" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC3327652", + "pubmed:22523575" ; + sc:description "TumorHoPe is a manually curated comprehensive database containing 744 entries of experimentally characterized tumor homing peptides." ; + sc:featureList edam:operation_2945 ; + sc:name "tumorhope" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/tumorhope/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -479281,10 +510834,10 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://crdd.osdd.net/raghava/tumorhpd/" . + sc:url "http://webs.iiitd.edu.in/raghava/tumorhpd/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2229, @@ -479301,7 +510854,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a sc:url "https://github.com/mustonen-group/contrasting-cytotoxic-cytostatic" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0160, @@ -479320,7 +510873,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a "Jian Huang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -479343,7 +510896,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a biotools:primaryContact "Maarten van Iterson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0625, @@ -479360,7 +510913,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -479376,7 +510929,7 @@ The tsRBase is a comprehensive database of tsRNA sequence, expression features a sc:url "https://code.google.com/p/ensemble-of-filters/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, edam:topic_0659, @@ -479400,7 +510953,7 @@ To install, run TuxNet-MacStandaloneInstaller.app in the TuxNet-MacStandalone di sc:url "https://rspurney.github.io/TuxNet/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -479418,14 +510971,14 @@ To install, run TuxNet-MacStandaloneInstaller.app in the TuxNet-MacStandalone di a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3712" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3572 ; @@ -479445,7 +510998,7 @@ To install, run TuxNet-MacStandaloneInstaller.app in the TuxNet-MacStandalone di "Joao Paulo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -479470,7 +511023,7 @@ To install, run TuxNet-MacStandaloneInstaller.app in the TuxNet-MacStandalone di biotools:primaryContact "Kevin Rue-Albrecht" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0128, edam:topic_3299, @@ -479488,7 +511041,7 @@ Time wrapping algorithm for aligning dynamic networks.""" ; sc:url "https://github.com/screamer/twadn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -479513,7 +511066,7 @@ Time wrapping algorithm for aligning dynamic networks.""" ; biotools:primaryContact "Juan R Gonzalez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -479535,8 +511088,29 @@ Time wrapping algorithm for aligning dynamic networks.""" ; "Shrabanti Chowdhury", "Stephanie C. Hicks" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0593, + edam:topic_3315, + edam:topic_3372, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC8719779", + "pubmed:34972160" ; + sc:description "A Python package for calibrating forces in single-molecule video-tracking experiments." ; + sc:featureList edam:operation_0244, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Tweezepy" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ianlmorgan/tweezepy" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -479552,7 +511126,7 @@ Time wrapping algorithm for aligning dynamic networks.""" ; sc:url "http://acgt.cs.tau.ac.il/twigs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -479574,7 +511148,7 @@ Time wrapping algorithm for aligning dynamic networks.""" ; biotools:primaryContact "Stefanie Scheid" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0128, @@ -479590,8 +511164,32 @@ Time wrapping algorithm for aligning dynamic networks.""" ; sc:softwareHelp ; sc:url "http://www.ruppweb.org/twilight/default.htm" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0097, + edam:topic_0659, + edam:topic_2229, + edam:topic_3315, + edam:topic_3944 ; + sc:citation , + "pmcid:PMC8580257", + "pubmed:34714829" ; + sc:description "Analysis toolkit for two sequence groups within an MSA." ; + sc:featureList edam:operation_0292, + edam:operation_0323, + edam:operation_0448, + edam:operation_0510 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "TwinCons" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/LDWLab/TwinCons" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -479610,7 +511208,7 @@ Time wrapping algorithm for aligning dynamic networks.""" ; biotools:primaryContact "Michael Brent" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0621, edam:topic_0749 ; @@ -479627,7 +511225,7 @@ This package aims at simulating the Transcription-Supercoiling Coupling (TSC) an sc:url "https://github.com/sammeyer2017/TwisTranscripT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2229, edam:topic_3170, @@ -479644,13 +511242,13 @@ twosigma is an R package for differential expression (DE) analysis and gene set sc:url "https://github.com/edvanburen/twosigma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "get information about sequences in a .2bit file" ; sc:name "twobitinfo" ; sc:url "http://hgdownload.cse.ucsc.edu/admin/exe/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154 ; sc:citation , @@ -479671,14 +511269,12 @@ twosigma is an R package for differential expression (DE) analysis and gene set a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation , @@ -479708,7 +511304,7 @@ twosigma is an R package for differential expression (DE) analysis and gene set sc:url "http://emboss.open-bio.org/rel/rel6/apps/twofeat.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053, @@ -479722,7 +511318,7 @@ twosigma is an R package for differential expression (DE) analysis and gene set sc:url "http://www.well.ox.ac.uk/~mfarrall/twoloc.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3170, edam:topic_3308 ; @@ -479736,7 +511332,7 @@ twosigma is an R package for differential expression (DE) analysis and gene set sc:url "https://bioconductor.org/packages/tximeta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0769, @@ -479760,7 +511356,7 @@ twosigma is an R package for differential expression (DE) analysis and gene set biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622 ; sc:description "This package provides interfaces to genomic metadata employed in regulatory network creation, with a focus on noSQL solutions. Currently quantitative representations of eQTLs, DnaseI hypersensitivity sites and digital genomic footprints are assembled using an out-of-memory extension of the RaggedExperiment API." ; @@ -479777,14 +511373,13 @@ twosigma is an R package for differential expression (DE) analysis and gene set a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1772" ; + sc:name "Score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -479804,7 +511399,7 @@ twosigma is an R package for differential expression (DE) analysis and gene set sc:url "http://www.inforstation.com/webservers/TYLER/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -479822,7 +511417,7 @@ twosigma is an R package for differential expression (DE) analysis and gene set sc:url "http://tyna.gersteinlab.org/tyna/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0769 ; @@ -479842,7 +511437,7 @@ twosigma is an R package for differential expression (DE) analysis and gene set biotools:primaryContact "Duncan Temple Lang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -479856,7 +511451,7 @@ twosigma is an R package for differential expression (DE) analysis and gene set sc:url "http://ai.stanford.edu/~flannick/typhon/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3383 ; sc:citation ; @@ -479866,8 +511461,28 @@ twosigma is an R package for differential expression (DE) analysis and gene set sc:name "tysserand" ; sc:url "https://github.com/VeraPancaldiLab/tysserand" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_3071, + edam:topic_3895 ; + sc:citation , + "pubmed:35226470" ; + sc:description "A Python Tool Enabling Better Annotation Practices for Synthetic Biology Data-Sharing." ; + sc:featureList edam:operation_0362, + edam:operation_0558, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "Tyto" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/SynBioDex/tyto" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3263, edam:topic_3489 ; sc:citation , @@ -479877,29 +511492,8 @@ twosigma is an R package for differential expression (DE) analysis and gene set sc:name "u-ANT" ; sc:url "https://github.com/CrisesUrv/microaggregation-based_anonymization_tool." . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0610, - edam:topic_3068, - edam:topic_3077 ; - sc:citation , - "pmcid:PMC6764284", - "pubmed:31616330" ; - sc:description """A Tool to Study Intra-individual Processes of Early School Leaving and Its Prevention Using Multiple Informants. - -u-can-act – Voorkom voortijdig schoolverlaten. - -Inzichten vanuit de wetenschap richten zich tot nu toe voornamelijk op groepsrisicofactoren van schooluitval, wij willen inzicht geven in individuele processen. - -Wij ontdekken de werkzame ingrediënten van effectieve jongerenbegeleiding door zowel begeleiders als jongeren gedurende een langere tijd te volgen. Hiermee helpen wij begeleidingsinitiatieven om hun begeleiding te professionaliseren en te verbeteren. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'u-can-act'""" ; - sc:featureList edam:operation_3283, - edam:operation_3436 ; - sc:name "u-can-act platform" ; - sc:url "http://u-can-act.com" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3050, edam:topic_3382, edam:topic_3474 ; @@ -479913,7 +511507,7 @@ Wij ontdekken de werkzame ingrediënten van effectieve jongerenbegeleiding door sc:url "https://github.com/u-infuse/u-infuse" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0749, edam:topic_3382 ; @@ -479928,7 +511522,7 @@ Wij ontdekken de werkzame ingrediënten van effectieve jongerenbegeleiding door sc:url "https://github.com/DanuserLab/u-shape3D" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3382 ; sc:citation , @@ -479942,7 +511536,7 @@ Code of U2Fusion: a unified unsupervised image fusion network for multiple image sc:url "https://github.com/hanna-xu/U2Fusion" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0769, edam:topic_3512 ; @@ -479956,7 +511550,7 @@ Code of U2Fusion: a unified unsupervised image fusion network for multiple image sc:url "https://github.com/Biochemistry1-FFM/uORF-Tools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:description "Compare two unpaired ROC curves." ; sc:isAccessibleForFree true ; @@ -479970,7 +511564,7 @@ Code of U2Fusion: a unified unsupervised image fusion network for multiple image biotools:primaryContact "Giuseppe Cardillo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, edam:topic_0769, @@ -479990,7 +511584,7 @@ The uap package is a framework to configure, run, and control large data multi-s sc:url "https://github.com/yigbt/uap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0780, edam:topic_3810 ; @@ -480002,7 +511596,7 @@ The uap package is a framework to configure, run, and control large data multi-s sc:url "https://github.com/andersst91/UAStools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0781, @@ -480021,7 +511615,7 @@ The uap package is a framework to configure, run, and control large data multi-s biotools:primaryContact "Atul Kamboj" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0194, edam:topic_0769, edam:topic_3293 ; @@ -480037,8 +511631,32 @@ The uap package is a framework to configure, run, and control large data multi-s sc:url "http://leb.snu.ac.kr/ubcg2" ; biotools:primaryContact "Jongsik Chun" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_0602, + edam:topic_2229, + edam:topic_3520 ; + sc:citation , + "pmcid:PMC9004656", + "pubmed:35139152" ; + sc:description "A Bioinformatic Strategy to Elucidate Ubiquitin E3 Ligase Activities in Quantitative Proteomics Study." ; + sc:featureList edam:operation_0417, + edam:operation_3435, + edam:operation_3501, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "UbE3-APA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Chenlab-UMN/Ub-E3-ligase-Activity-Profiling-Analysis" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0637, edam:topic_0749, @@ -480055,7 +511673,7 @@ The uap package is a framework to configure, run, and control large data multi-s sc:url "https://github.com/ProbstLab/uBin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -480074,7 +511692,7 @@ The uap package is a framework to configure, run, and control large data multi-s biotools:primaryContact "Lee TY" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0601, @@ -480093,7 +511711,7 @@ The uap package is a framework to configure, run, and control large data multi-s biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814, @@ -480109,7 +511727,7 @@ The uap package is a framework to configure, run, and control large data multi-s sc:url "http://www.ubpred.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2229, edam:topic_3382 ; @@ -480122,7 +511740,7 @@ The uap package is a framework to configure, run, and control large data multi-s sc:url "https://github.com/bionanoimaging/UC2-GIT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -480142,8 +511760,32 @@ The uap package is a framework to configure, run, and control large data multi-s "Windows" ; sc:url "https://sauravsaha.shinyapps.io/ucarechemsuite2/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0194, + edam:topic_0196, + edam:topic_0769, + edam:topic_3293 ; + sc:citation , + "pmcid:PMC8683391", + "pubmed:34934383" ; + sc:description "A software package for automating and simplifying the analysis of ultraconserved elements (UCEs)." ; + sc:featureList edam:operation_0310, + edam:operation_0323, + edam:operation_3192 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "UCEasy" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/uceasy/uceasy" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3053 ; @@ -480156,7 +511798,7 @@ The uap package is a framework to configure, run, and control large data multi-s biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -480179,7 +511821,7 @@ The uap package is a framework to configure, run, and control large data multi-s biotools:primaryContact "K. Bryson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "This tool has multiple functions, including: Protein Structure Prediction, Protein Sequence Analysis, Genome Analysis, Protein Structure Classification, Transmembrane Protein Modelling." ; @@ -480193,7 +511835,7 @@ The uap package is a framework to configure, run, and control large data multi-s sc:url "http://bioinf.cs.ucl.ac.uk/web_servers/web_services/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0781, @@ -480216,7 +511858,7 @@ The uap package is a framework to configure, run, and control large data multi-s "Phillip Bredahl Mogensen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0621, @@ -480241,7 +511883,7 @@ All tables in the Genome Browser are freely usable for any purpose except as ind sc:url "https://hgdownload.soe.ucsc.edu/downloads.html#gbdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0622, @@ -480265,7 +511907,7 @@ All tables in the Genome Browser are freely usable for any purpose except as ind "Genomics Browser Forum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -480274,15 +511916,40 @@ All tables in the Genome Browser are freely usable for any purpose except as ind edam:topic_0625, edam:topic_3325, edam:topic_3366 ; - sc:citation , + sc:citation , + , + , + , + , + , , , + , + , + , + , + , + , + , + "pmcid:PMC186604", "pmcid:PMC2808870", "pmcid:PMC3245018", "pmcid:PMC3245183", + "pubmed:12045153", + "pubmed:12519945", + "pubmed:16381938", + "pubmed:18086701", + "pubmed:18996895", "pubmed:19906737", + "pubmed:20959295", "pubmed:22075998", - "pubmed:22086951" ; + "pubmed:22086951", + "pubmed:23155063", + "pubmed:24270787", + "pubmed:25428374", + "pubmed:26590259", + "pubmed:27899642", + "pubmed:30407534" ; sc:description "Large database of publicly available sequence and annotation data along with an integrated tool set for examining and comparing the genomes of organisms, aligning sequence to genomes, and displaying and sharing users own annotation data." ; sc:featureList edam:operation_0292, edam:operation_0308, @@ -480300,7 +511967,7 @@ All tables in the Genome Browser are freely usable for any purpose except as ind biotools:primaryContact "Brooke Rhead" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -480320,7 +511987,7 @@ All tables in the Genome Browser are freely usable for any purpose except as ind sc:url "http://sysbio.soe.ucsc.edu/nets" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2640, edam:topic_3071 ; @@ -480339,7 +512006,7 @@ Provides a web app for downloading, analyzing and visualizing datasets from UCSC sc:url "https://github.com/openbiox/UCSCXenaShiny" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2640 ; @@ -480356,7 +512023,7 @@ Provides a web app for downloading, analyzing and visualizing datasets from UCSC sc:url "https://github.com/ropensci/UCSCXenaTools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0154, edam:topic_0218, @@ -480373,7 +512040,7 @@ Provides a web app for downloading, analyzing and visualizing datasets from UCSC sc:url "https://github.com/nstrodt/UDSMProt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0632, edam:topic_3318 ; @@ -480386,14 +512053,14 @@ Automation framework for conducting ultrafast electron microscopy experiments. T a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2877" ; - sc:name "Protein complex" ; - sc:sameAs "http://edamontology.org/data_2877" ] ; + sc:additionalType "http://edamontology.org/data_2877" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein complex" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2856" ; - sc:name "Structural distance matrix" ; - sc:sameAs "http://edamontology.org/data_2856" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2856" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Structural distance matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_2814 ; @@ -480410,13 +512077,16 @@ Automation framework for conducting ultrafast electron microscopy experiments. T sc:url "https://github.com/pepamengual/UEP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3293, edam:topic_3299 ; - sc:citation , + sc:citation , + , + "pmcid:PMC3670741", "pmcid:PMC5850222", + "pubmed:23418397", "pubmed:29077904" ; sc:description "Improving the Ultrafast Bootstrap Approximation." ; sc:featureList edam:operation_0324 ; @@ -480428,8 +512098,28 @@ Automation framework for conducting ultrafast electron microscopy experiments. T sc:url "http://www.iqtree.org/" ; biotools:primaryContact "Le Sy Vinh" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2815, + edam:topic_3444, + edam:topic_3474 ; + sc:citation , + "pubmed:35373388" ; + sc:description "High fidelity deep learning-based MRI reconstruction with instance-wise discriminative feature matching loss." ; + sc:featureList edam:operation_3435, + edam:operation_3443, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "UFLoss" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/mikgroup/UFLoss" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0128, edam:topic_0625, @@ -480446,7 +512136,7 @@ Automation framework for conducting ultrafast electron microscopy experiments. T sc:url "http://apps.cytoscape.org/apps/ufo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0659, @@ -480464,7 +512154,7 @@ Abstract For many RNA molecules, the secondary structure is essential for the co sc:url "https://ufold.ics.uci.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3053, @@ -480480,7 +512170,7 @@ Abstract For many RNA molecules, the secondary structure is essential for the co sc:url "http://ugahash.uni-frankfurt.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -480498,7 +512188,7 @@ Abstract For many RNA molecules, the secondary structure is essential for the co biotools:primaryContact "UGENE Tech Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0114 ; @@ -480514,7 +512204,7 @@ Abstract For many RNA molecules, the secondary structure is essential for the co sc:url "https://genome.uiowa.edu/home.old/pubsoft/clustering/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3070, @@ -480532,7 +512222,7 @@ Abstract For many RNA molecules, the secondary structure is essential for the co biotools:primaryContact "Malcolm McLean" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0114, edam:topic_3053 ; @@ -480545,7 +512235,7 @@ Abstract For many RNA molecules, the secondary structure is essential for the co sc:url "https://genome.uiowa.edu/home.old/pubsoft/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, @@ -480565,8 +512255,46 @@ Helix UK Biobank browser.""" ; sc:name "UK Biobank" ; sc:url "https://ukb.research.helix.com" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web service" ; + sc:applicationSubCategory edam:topic_3305, + edam:topic_3324, + edam:topic_3337, + edam:topic_3379, + edam:topic_3419 ; + sc:citation ; + sc:description "The United Kingdom Research study into Ethnicity And COVID-19 outcomes in Healthcare workers (UK-REACH)." ; + sc:featureList edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "UK-REACH" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://www.uk-reach.org" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0625, + edam:topic_3337, + edam:topic_3517 ; + sc:citation , + "pubmed:34737426" ; + sc:description "A generalized linear mixed model association tool for biobank-scale data." ; + sc:featureList edam:operation_3196, + edam:operation_3557, + edam:operation_3791 ; + sc:isAccessibleForFree true ; + sc:name "UKB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://fastgwa.info/ukbimpbin" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_3063, @@ -480584,7 +512312,7 @@ UK Biobank self reported medications are represented in UK Biobank as a list of sc:url "https://github.com/PhilAppleby/ukbb-srmed/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3337, edam:topic_3452 ; @@ -480596,8 +512324,31 @@ UK Biobank self reported medications are represented in UK Biobank as a list of sc:name "UKBCC" ; sc:url "https://pypi.org/project/ukbcc" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_3335, + edam:topic_3337, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9234069", + "pubmed:35769930" ; + sc:description "An R package for phenotyping health-related outcomes in the UK Biobank." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ukbpheno" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/niekverw/ukbpheno" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -480621,7 +512372,7 @@ UK Biobank self reported medications are represented in UK Biobank as a list of biotools:primaryContact "Ken Hanscombe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0634, edam:topic_2640, @@ -480635,7 +512386,7 @@ UK Biobank self reported medications are represented in UK Biobank as a list of sc:url "https://github.com/Singh-Lab/uKIN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0749, @@ -480656,7 +512407,7 @@ UK Biobank self reported medications are represented in UK Biobank as a list of biotools:primaryContact "Help desk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation ; @@ -480676,10 +512427,10 @@ UK Biobank self reported medications are represented in UK Biobank as a list of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2545" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2229, @@ -480702,7 +512453,7 @@ UK Biobank self reported medications are represented in UK Biobank as a list of sc:url "https://github.com/ulelab/ultraplex" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091, @@ -480720,7 +512471,7 @@ UK Biobank self reported medications are represented in UK Biobank as a list of biotools:primaryContact "Pu-Feng Du" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0605, edam:topic_3070, @@ -480739,7 +512490,7 @@ UK Biobank self reported medications are represented in UK Biobank as a list of biotools:primaryContact "Sverre Holm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -480756,7 +512507,7 @@ UK Biobank self reported medications are represented in UK Biobank as a list of biotools:primaryContact "Diego Miguez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -480772,7 +512523,7 @@ UK Biobank self reported medications are represented in UK Biobank as a list of sc:url "http://www.lcqb.upmc.fr/ulysses/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -480789,7 +512540,7 @@ UK Biobank self reported medications are represented in UK Biobank as a list of biotools:primaryContact "Kathrin Fenner, EAWAG-BBD Director" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -480807,7 +512558,7 @@ UK Biobank self reported medications are represented in UK Biobank as a list of biotools:primaryContact "Kathrin Fenner, EAWAG-BBD Director" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -480830,7 +512581,7 @@ UK Biobank self reported medications are represented in UK Biobank as a list of sc:url "https://github.com/Wang-Jinyue/UMAP-DBP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0199, @@ -480855,7 +512606,7 @@ UK Biobank self reported medications are represented in UK Biobank as a list of biotools:primaryContact "Christophe Béroud" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -480875,8 +512626,31 @@ UK Biobank self reported medications are represented in UK Biobank as a list of biotools:primaryContact "Christophe Beroud", "David Salgado" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0769, + edam:topic_3050, + edam:topic_3174, + edam:topic_3837 ; + sc:citation , + "pmcid:PMC9188040", + "pubmed:35689184" ; + sc:description "A taxonomic classifier for shotgun metagenomics reads" ; + sc:featureList edam:operation_0337, + edam:operation_2495, + edam:operation_3460 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "UMGAP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://unipept.ugent.be/umgap" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0632, edam:topic_0749, @@ -480894,7 +512668,7 @@ This pipeline is used for UMI-ATAC-seq raw data processing, including removing t sc:url "https://github.com/tzhu-bio/UMI-ATAC-seq" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_2885, edam:topic_3168 ; @@ -480910,7 +512684,7 @@ Abstract Motivation With Next Generation Sequencing becoming more affordable eve sc:url "https://gitlab.com/vincent-sater/umigen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3168, @@ -480928,7 +512702,7 @@ Abstract Motivation With Next Generation Sequencing becoming more affordable eve biotools:primaryContact "Ian Sudbery" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -480947,7 +512721,7 @@ Abstract Motivation With Next Generation Sequencing becoming more affordable eve biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0128, @@ -480963,7 +512737,7 @@ Abstract Motivation With Next Generation Sequencing becoming more affordable eve sc:url "http://github.com/shion-h/Umibato" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "UMIc is an alignment free framework serving as a pre-processing step of FASTQ files for deduplication and correction of reads building consensus sequences from each UMI. The tool takes into account the frequency and the Phred quality of nucleotides and the distances between the UMIs and the actual sequences, and produces FASTQ files that contain the corrected sequences (without the UMI) and their quality." ; sc:isAccessibleForFree true ; @@ -480974,16 +512748,36 @@ Abstract Motivation With Next Generation Sequencing becoming more affordable eve sc:url "https://github.com/BiodataAnalysisGroup/UMIc" ; biotools:primaryContact . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0654, + edam:topic_0769 ; + sc:citation , + "pubmed:36031761" ; + sc:description "Software for Consensus Read Generation, Error Correction, and Visualization Using Unique Molecular Identifiers." ; + sc:featureList edam:operation_0337, + edam:operation_3227, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "UMIErrorCorrect" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/tobbeost/umierrorcorrect" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3496" ; - sc:name "RNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3496" ] ; + sc:additionalType "http://edamontology.org/data_3496" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "RNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170 ; @@ -480998,7 +512792,7 @@ Abstract Motivation With Next Generation Sequencing becoming more affordable eve biotools:primaryContact "Valentine Svensson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0218, edam:topic_3303, @@ -481012,7 +512806,7 @@ Abstract Motivation With Next Generation Sequencing becoming more affordable eve sc:url "https://snlt.vicomtech.org/umlsmapper" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3063, edam:topic_3379, @@ -481027,8 +512821,34 @@ Abstract Motivation With Next Generation Sequencing becoming more affordable eve sc:url "https://cran.r-project.org/package=Umpire" ; biotools:primaryContact . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0121, + edam:topic_0154, + edam:topic_2275, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC8658322", + "pubmed:34884927" ; + sc:description "A New Approach for Accurate Prediction of Umami Peptides Using Feature Representation Learning." ; + sc:featureList edam:operation_0418, + edam:operation_0477, + edam:operation_3631 ; + sc:isAccessibleForFree true ; + sc:name "UMPred-FRL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://pmlabstack.pythonanywhere.com/UMPred-FRL" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0611 ; @@ -481047,7 +512867,7 @@ Abstract Motivation With Next Generation Sequencing becoming more affordable eve biotools:primaryContact "Timothy C. Bates" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0082, @@ -481066,7 +512886,7 @@ Abstract Motivation With Next Generation Sequencing becoming more affordable eve sc:url "http://www.unafold.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0634, edam:topic_3396, @@ -481082,7 +512902,7 @@ Abstract Motivation With Next Generation Sequencing becoming more affordable eve sc:url "http://jafarilab.com/unaprod/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, edam:topic_3174, @@ -481099,7 +512919,7 @@ Abstract Motivation With Next Generation Sequencing becoming more affordable eve sc:url "http://github.com/skovaka/UNCALLED" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3517 ; @@ -481118,7 +512938,7 @@ Abstract Motivation With Next Generation Sequencing becoming more affordable eve sc:url "https://yunliweb.its.unc.edu/UNCcombo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0602, @@ -481134,8 +512954,30 @@ Abstract Motivation With Next Generation Sequencing becoming more affordable eve sc:softwareHelp ; sc:url "http://people.cryst.bbk.ac.uk/~ubcg66a/uncoupler_summary.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0625, + edam:topic_2830, + edam:topic_3170, + edam:topic_3308 ; + sc:citation ; + sc:description "Characterising single circulating tumor cell transcriptomes." ; + sc:featureList edam:operation_2436, + edam:operation_3196, + edam:operation_3432, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "unCTC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/SaritaPoonia/unCTC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0749, edam:topic_2229, @@ -481156,7 +512998,7 @@ This exposes the given port, and then the uncurl-app website can be visited in t sc:url "https://uncurl.cs.washington.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -481176,7 +513018,7 @@ This exposes the given port, and then the uncurl-app website can be visited in t biotools:primaryContact "Matteo Comin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation ; @@ -481192,7 +513034,7 @@ This exposes the given port, and then the uncurl-app website can be visited in t biotools:primaryContact "Matteo Comin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation ; @@ -481209,14 +513051,14 @@ This exposes the given port, and then the uncurl-app website can be visited in t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_2056" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_2056" ; + sc:name "Gene expression matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2640, @@ -481237,7 +513079,7 @@ This exposes the given port, and then the uncurl-app website can be visited in t biotools:primaryContact "Niya Wang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -481254,14 +513096,14 @@ Unfazed is a command-line tool to determine the parental gamete of origin for de a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3712" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3654" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -481274,7 +513116,7 @@ Unfazed is a command-line tool to determine the parental gamete of origin for de sc:url "https://code.google.com/p/unfinnigan/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0602 ; @@ -481287,7 +513129,7 @@ Unfazed is a command-line tool to determine the parental gamete of origin for de sc:url "http://www.cs.rpi.edu/~zaki/www-new/pmwiki.php/Software/Software#toc34" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3300, edam:topic_3304, edam:topic_3382 ; @@ -481319,7 +513161,7 @@ Model specification using R-style formulas (EEG~1+face+age).""" ; sc:url "http://www.unfoldtoolbox.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3572 ; sc:description "Unfold and show the content of the given structure. UNFOLD_STRUCTURE(STRUCT) shows recursively the content of the given structure STRUCT. Clean and generic implementation which can be easily extended, e.g. for structures containing cells." ; @@ -481333,41 +513175,8 @@ Model specification using R-style formulas (EEG~1+face+age).""" ; sc:url "https://www.mathworks.com/matlabcentral/fileexchange/31808-unfold-structures" ; biotools:primaryContact "Thomas Schaffter" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3300, - edam:topic_3304, - edam:topic_3382 ; - sc:citation , - "pmcid:PMC6815663", - "pubmed:31660265" ; - sc:description """an integrated toolbox for overlap correction, non-linear modeling, and regression-based EEG analysis. - -A matlab EEG toolbox to perform overlap correction and non-linear & linear regression. - -EEG Deconvolution Toolbox — Unfold EEG Toolbox. - -Unfold - EEG Deconvolution Toolbox. - -A toolbox for deconvolution of overlapping EEG (Pupil, LFP etc.) signals and (non)-linear modeling. - -A toolbox for deconvolution of overlapping EEG signals and (non)-linear modeling. - -git clone https://github.com/unfoldtoolbox/unfold. - -If you use the toolbox, please cite us as: Ehinger BV & Dimigen O, Unfold: An integrated toolbox for overlap correction, non-linear modeling, and regression-based EEG analysis, bioRxiv, https://doi.org/10.1101/360156. - -Model specification using R-style formulas (EEG~1+face+age). - -||| NAME (unfold) SIMILAR TO (PUB. DIFFERENT) bio.tools/unfold (UNFOLD)""" ; - sc:featureList edam:operation_0408, - edam:operation_3629, - edam:operation_3659 ; - sc:license "GPL-3.0" ; - sc:name "unfold_autogenerated" ; - sc:url "http://www.unfoldtoolbox.org" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_3292, @@ -481386,7 +513195,7 @@ Model specification using R-style formulas (EEG~1+face+age). biotools:primaryContact "Rohan Dandage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0097, @@ -481404,7 +513213,7 @@ Model specification using R-style formulas (EEG~1+face+age). biotools:primaryContact "Kristopher White" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0602, edam:topic_0634, @@ -481420,7 +513229,7 @@ Model specification using R-style formulas (EEG~1+face+age). sc:url "https://github.com/wangxlab/uniConSig" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -481436,7 +513245,7 @@ Model specification using R-style formulas (EEG~1+face+age). sc:url "http://sacan.biomed.drexel.edu/unialign" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, edam:topic_3169, @@ -481460,14 +513269,12 @@ This API provides an easy-to-use REST web interface to query/retrieve data from a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3425" ; - sc:name "Carbohydrate property" ; - sc:sameAs "http://edamontology.org/data_3425" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3425" ; + sc:name "Carbohydrate property" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0152 ; sc:citation ; @@ -481482,7 +513289,7 @@ This API provides an easy-to-use REST web interface to query/retrieve data from sc:url "http://unicarb-db.biomedicine.gu.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0122, @@ -481513,18 +513320,15 @@ This API provides an easy-to-use REST web interface to query/retrieve data from a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2019" ; - sc:name "Map data" ; - sc:sameAs "http://edamontology.org/data_2019" ], + sc:additionalType "http://edamontology.org/data_2019" ; + sc:name "Map data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3736" ; - sc:name "Ecological data" ; - sc:sameAs "http://edamontology.org/data_3736" ], + sc:additionalType "http://edamontology.org/data_2019" ; + sc:name "Map data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2019" ; - sc:name "Map data" ; - sc:sameAs "http://edamontology.org/data_2019" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3736" ; + sc:name "Ecological data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0610 ; sc:contributor "František Mastil", @@ -481545,7 +513349,7 @@ This API provides an easy-to-use REST web interface to query/retrieve data from sc:url "https://www.unicatdb.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, @@ -481560,14 +513364,14 @@ This API provides an easy-to-use REST web interface to query/retrieve data from a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0848" ; - sc:name "Raw sequence" ; - sc:sameAs "http://edamontology.org/data_0848" ] ; + sc:additionalType "http://edamontology.org/data_0848" ; + sc:encodingFormat "http://edamontology.org/format_2571" ; + sc:name "Raw sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0925" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Sequence assembly" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -481588,16 +513392,37 @@ This API provides an easy-to-use REST web interface to query/retrieve data from sc:url "https://github.com/rrwick/Unicycler" ; biotools:primaryContact "Ryan R. Wick" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0602, + edam:topic_2229, + edam:topic_3170, + edam:topic_3474 ; + sc:citation ; + sc:description "UNIFAN (Unsupervised Single-cell Functional Annotation) simultaneously clusters and annotates cells with known biological processes (including pathways)." ; + sc:featureList edam:operation_0337, + edam:operation_3432, + edam:operation_3672 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "UNIFAN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/doraadong/UNIFAN" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3519 ; @@ -481617,18 +513442,16 @@ This API provides an easy-to-use REST web interface to query/retrieve data from a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2594" ; - sc:name "UniGene taxon" ; - sc:sameAs "http://edamontology.org/data_2594" ], + sc:additionalType "http://edamontology.org/data_1104" ; + sc:name "Sequence cluster ID (UniGene)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1104" ; - sc:name "Sequence cluster ID (UniGene)" ; - sc:sameAs "http://edamontology.org/data_1104" ] ; + sc:additionalType "http://edamontology.org/data_2594" ; + sc:name "UniGene taxon" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3134" ; - sc:name "Gene transcript report" ; - sc:sameAs "http://edamontology.org/data_3134" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3134" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene transcript report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0623, @@ -481643,7 +513466,7 @@ This API provides an easy-to-use REST web interface to query/retrieve data from sc:url "http://www.ncbi.nlm.nih.gov/sites/entrez?db=UniGene" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0152, @@ -481665,14 +513488,14 @@ The LectomeXplore database provides predicted lectin domains (reversible carbohy a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2618" ; - sc:name "Protein modification ID" ; - sc:sameAs "http://edamontology.org/data_2618" ] ; + sc:additionalType "http://edamontology.org/data_2618" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein modification ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0844" ; - sc:name "Molecular mass" ; - sc:sameAs "http://edamontology.org/data_0844" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0844" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecular mass" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0601, @@ -481688,7 +513511,7 @@ The LectomeXplore database provides predicted lectin domains (reversible carbohy sc:url "http://www.unimod.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -481704,7 +513527,7 @@ The LectomeXplore database provides predicted lectin domains (reversible carbohy sc:url "http://bibiserv.techfak.uni-bielefeld.de/dcj/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -481718,18 +513541,15 @@ The LectomeXplore database provides predicted lectin domains (reversible carbohy a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -481759,7 +513579,7 @@ The LectomeXplore database provides predicted lectin domains (reversible carbohy sc:url "http://emboss.open-bio.org/rel/rel6/apps/union.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0108, edam:topic_2229, @@ -481778,10 +513598,10 @@ UnionCom software is available on the Python package index (PyPI), latest versio a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0623 ; sc:citation ; @@ -481797,7 +513617,7 @@ UnionCom software is available on the Python package index (PyPI), latest versio biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, edam:topic_3170, @@ -481816,18 +513636,15 @@ UniPath provides robust statistical methods to represent every single cell using a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0769, @@ -481851,22 +513668,22 @@ UniPath provides robust statistical methods to represent every single cell using a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1179" ; - sc:name "NCBI taxonomy ID" ; - sc:sameAs "http://edamontology.org/data_1179" ], + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "Protein sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_1179" ; + sc:encodingFormat "http://edamontology.org/format_1964" ; + sc:name "NCBI taxonomy ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3021" ; - sc:name "UniProt accession" ; - sc:sameAs "http://edamontology.org/data_3021" ], + sc:additionalType "http://edamontology.org/data_3021" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "UniProt accession" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1179" ; - sc:name "NCBI taxonomy ID" ; - sc:sameAs "http://edamontology.org/data_1179" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1179" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "NCBI taxonomy ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation , @@ -481890,18 +513707,18 @@ UniPath provides robust statistical methods to represent every single cell using a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3028" ; - sc:name "Taxonomy" ; - sc:sameAs "http://edamontology.org/data_3028" ], + sc:additionalType "http://edamontology.org/data_2589" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Hierarchy" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2589" ; - sc:name "Hierarchy" ; - sc:sameAs "http://edamontology.org/data_2589" ] ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Taxonomy" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0637 ; @@ -481924,7 +513741,7 @@ UniPath provides robust statistical methods to represent every single cell using biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -481938,7 +513755,7 @@ UniPath provides robust statistical methods to represent every single cell using sc:url "http://www5.esu.edu/cpsc/bioinfo/software/UNIPOP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0769, @@ -481955,7 +513772,7 @@ UniPath provides robust statistical methods to represent every single cell using sc:url "http://uniprime.batlab.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -481976,13 +513793,40 @@ UniPath provides robust statistical methods to represent every single cell using biotools:primaryContact "Bulyk Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0621, edam:topic_3068, edam:topic_3520 ; sc:citation , + , + , + , + , + , + , + , + , + , + , + , + , + , + "pmcid:PMC3245120", + "pubmed:14681372", + "pubmed:15608167", + "pubmed:16381842", + "pubmed:17142230", + "pubmed:18045787", + "pubmed:18836194", + "pubmed:19843607", + "pubmed:21447597", + "pubmed:22102590", + "pubmed:23161681", + "pubmed:27899622", + "pubmed:29425356", + "pubmed:30395287", "pubmed:33237286" ; sc:description """The universal protein knowledgebase in 2021. @@ -481997,14 +513841,12 @@ You are using a version of browser that may not display all the features of this a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -482026,14 +513868,12 @@ You are using a version of browser that may not display all the features of this a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0857" ; + sc:name "Sequence search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Xavier Watkins" ; @@ -482055,7 +513895,7 @@ You are using a version of browser that may not display all the features of this biotools:primaryContact "Xavier Watkins" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3345 ; sc:description "Maps identifiers to or from UniProtKB." ; @@ -482072,7 +513912,7 @@ You are using a version of browser that may not display all the features of this biotools:primaryContact "Xavier Watkins" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121, @@ -482106,7 +513946,7 @@ You are using a version of browser that may not display all the features of this biotools:primaryContact "UniProt Helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0601, edam:topic_0602, @@ -482132,7 +513972,7 @@ You are using a version of browser that may not display all the features of this biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -482152,7 +513992,7 @@ You are using a version of browser that may not display all the features of this biotools:primaryContact "S. Mika" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -482176,7 +514016,7 @@ You are using a version of browser that may not display all the features of this biotools:primaryContact "'Raik Otto'" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0085 ; sc:citation ; @@ -482186,106 +514026,98 @@ You are using a version of browser that may not display all the features of this a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2348" ; - sc:name "Sequence cluster ID (UniRef90)" ; - sc:sameAs "http://edamontology.org/data_2348" ], + sc:additionalType "http://edamontology.org/data_2347" ; + sc:name "Sequence cluster ID (UniRef100)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2349" ; - sc:name "Sequence cluster ID (UniRef50)" ; - sc:sameAs "http://edamontology.org/data_2349" ], + sc:additionalType "http://edamontology.org/data_2348" ; + sc:name "Sequence cluster ID (UniRef90)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2348" ; - sc:name "Sequence cluster ID (UniRef90)" ; - sc:sameAs "http://edamontology.org/data_2348" ], + sc:additionalType "http://edamontology.org/data_2349" ; + sc:name "Sequence cluster ID (UniRef50)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2349" ; - sc:name "Sequence cluster ID (UniRef50)" ; - sc:sameAs "http://edamontology.org/data_2349" ], + sc:additionalType "http://edamontology.org/data_2349" ; + sc:name "Sequence cluster ID (UniRef50)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2349" ; - sc:name "Sequence cluster ID (UniRef50)" ; - sc:sameAs "http://edamontology.org/data_2349" ], + sc:additionalType "http://edamontology.org/data_2347" ; + sc:name "Sequence cluster ID (UniRef100)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2347" ; - sc:name "Sequence cluster ID (UniRef100)" ; - sc:sameAs "http://edamontology.org/data_2347" ], + sc:additionalType "http://edamontology.org/data_2348" ; + sc:name "Sequence cluster ID (UniRef90)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2348" ; - sc:name "Sequence cluster ID (UniRef90)" ; - sc:sameAs "http://edamontology.org/data_2348" ], + sc:additionalType "http://edamontology.org/data_2349" ; + sc:name "Sequence cluster ID (UniRef50)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2347" ; - sc:name "Sequence cluster ID (UniRef100)" ; - sc:sameAs "http://edamontology.org/data_2347" ], + sc:additionalType "http://edamontology.org/data_2349" ; + sc:name "Sequence cluster ID (UniRef50)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2348" ; - sc:name "Sequence cluster ID (UniRef90)" ; - sc:sameAs "http://edamontology.org/data_2348" ], + sc:additionalType "http://edamontology.org/data_2348" ; + sc:name "Sequence cluster ID (UniRef90)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2349" ; - sc:name "Sequence cluster ID (UniRef50)" ; - sc:sameAs "http://edamontology.org/data_2349" ], + sc:additionalType "http://edamontology.org/data_2347" ; + sc:name "Sequence cluster ID (UniRef100)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2347" ; - sc:name "Sequence cluster ID (UniRef100)" ; - sc:sameAs "http://edamontology.org/data_2347" ], + sc:additionalType "http://edamontology.org/data_2348" ; + sc:name "Sequence cluster ID (UniRef90)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2347" ; - sc:name "Sequence cluster ID (UniRef100)" ; - sc:sameAs "http://edamontology.org/data_2347" ] ; + sc:additionalType "http://edamontology.org/data_2347" ; + sc:name "Sequence cluster ID (UniRef100)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_2376" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_2376" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_2376" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ], + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence cluster (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1245" ; - sc:name "Sequence cluster (protein)" ; - sc:sameAs "http://edamontology.org/data_1245" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1245" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence cluster (protein)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0114 ; - sc:citation ; + sc:citation , + , + "pmcid:PMC4375400", + "pubmed:17379688", + "pubmed:25398609" ; sc:description "Clustered sets of sequences from UniProt Knowledgebase (including splice variants and isoforms) and selected UniParc records, in order to obtain complete coverage of sequence space at several resolutions while hiding redundant sequences (but not their descriptions) from view." ; sc:featureList edam:operation_0224 ; sc:name "UniProt Reference Clusters (UniRef)" ; @@ -482296,7 +514128,7 @@ You are using a version of browser that may not display all the features of this sc:url "http://www.uniprot.org/uniref/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -482317,20 +514149,30 @@ You are using a version of browser that may not display all the features of this a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2390" ; - sc:name "UNITE accession" ; - sc:sameAs "http://edamontology.org/data_2390" ] ; + sc:additionalType "http://edamontology.org/data_2390" ; + sc:name "UNITE accession" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Sequence report" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; - sc:applicationSubCategory edam:topic_0654 ; + sc:applicationSubCategory edam:topic_0654, + edam:topic_3572 ; sc:citation ; - sc:description "rDNA sequence database focused on ectomycorrhizal asco- and basidiomycetes." ; - sc:featureList edam:operation_0224 ; - sc:name "UNITE rDNA" ; + sc:description "UNITE is a database and sequence management environment centered on the eukaryotic nuclear ribosomal ITS region. All eukaryotic ITS sequences from the International Nucleotide Sequence Database Collaboration are clustered to approximately the species level (distance between species in steps of 0.5%), and all such species hypotheses are given a DOI to facilitate unambiguous scientific communication and data assembly." ; + sc:featureList edam:operation_0224, + edam:operation_0346, + edam:operation_0566, + edam:operation_3200, + edam:operation_3460 ; + sc:isAccessibleForFree true ; + sc:license "CC-BY-SA-4.0" ; + sc:name "UNITE database" ; sc:operatingSystem "Linux", "Mac", "Windows" ; @@ -482339,14 +514181,13 @@ You are using a version of browser that may not display all the features of this a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1033" ; - sc:name "Ensembl gene ID" ; - sc:sameAs "http://edamontology.org/data_1033" ] ; + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0114 ; sc:citation ; @@ -482360,7 +514201,7 @@ You are using a version of browser that may not display all the features of this sc:url "http://unitrap.crg.es/about.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0659, edam:topic_3125, @@ -482382,7 +514223,7 @@ You are using a version of browser that may not display all the features of this biotools:primaryContact "Yulia A. Medvedeva" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -482402,7 +514243,7 @@ Single-cell RNA-sequencing analysis to quantify RNA molecules in individual cell sc:url "https://github.com/minoda-lab/universc" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_3077, edam:topic_3382 ; @@ -482418,7 +514259,7 @@ Deep Learning for Hyperspectral Fluorescence Lifetime Image (HFLI) Unmixing.""" sc:url "https://github.com/jasontsmith2718/UNMIX-ME" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3315, @@ -482437,7 +514278,7 @@ Deep Learning for Hyperspectral Fluorescence Lifetime Image (HFLI) Unmixing.""" biotools:primaryContact "UNO Biomechanics" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3170 ; @@ -482452,8 +514293,32 @@ Deep Learning for Hyperspectral Fluorescence Lifetime Image (HFLI) Unmixing.""" sc:url "http://sourceforge.net/projects/unoseq/" ; biotools:primaryContact "Fabian Birzele" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0203, + edam:topic_2229, + edam:topic_3170, + edam:topic_3940 ; + sc:citation , + "pmcid:PMC9295346", + "pubmed:35854350" ; + sc:description "Integration of single-cell multi-omics data by regression analysis on unpaired observations." ; + sc:featureList edam:operation_0313, + edam:operation_0314, + edam:operation_0441, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "UnpairReg" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Durenlab/UnpairReg" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -482469,18 +514334,17 @@ Deep Learning for Hyperspectral Fluorescence Lifetime Image (HFLI) Unmixing.""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "PDB ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0593, @@ -482496,7 +514360,7 @@ Deep Learning for Hyperspectral Fluorescence Lifetime Image (HFLI) Unmixing.""" "Cezary Czaplewski" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168 ; @@ -482508,7 +514372,7 @@ Deep Learning for Hyperspectral Fluorescence Lifetime Image (HFLI) Unmixing.""" sc:url "http://www.zbh.uni-hamburg.de/forschung/arbeitsgruppe-genominformatik/software/unwords.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3360, edam:topic_3678 ; @@ -482524,7 +514388,7 @@ Deep Learning for Hyperspectral Fluorescence Lifetime Image (HFLI) Unmixing.""" sc:url "http://59.108.16.249/biomarker/web/indexdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3516, edam:topic_3518 ; @@ -482537,7 +514401,7 @@ Deep Learning for Hyperspectral Fluorescence Lifetime Image (HFLI) Unmixing.""" sc:url "https://cran.r-project.org/package=updog" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3293 ; sc:citation "pmcid:PMC2658875", @@ -482552,7 +514416,7 @@ Deep Learning for Hyperspectral Fluorescence Lifetime Image (HFLI) Unmixing.""" sc:url "http://web.njit.edu/~wangj/updown.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0203, @@ -482575,14 +514439,14 @@ neXtProt Ensemble Id Gene Name GO Term GO Id MSIG Term Disease Chromosome.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2974" ; - sc:name "Protein sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2974" ] ; + sc:additionalType "http://edamontology.org/data_2974" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Protein sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1270" ; - sc:name "Feature table" ; - sc:sameAs "http://edamontology.org/data_1270" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1270" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Feature table" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121 ; sc:author "Dr. Michael Kohl" ; @@ -482598,8 +514462,27 @@ neXtProt Ensemble Id Gene Name GO Term GO Id MSIG Term Disease Chromosome.""" ; sc:url "https://www.ruhr-uni-bochum.de/mpc/software/legacy/index.html.en#UPF" ; biotools:primaryContact "PD Dr. Martin Eisenacher" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0601, + edam:topic_0780, + edam:topic_3474 ; + sc:citation , + "pubmed:34903012" ; + sc:description "A ubiquitylation predictor for plant through combining sequence information and random forest." ; + sc:featureList edam:operation_0417 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "UPFPSR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ysw-sunshine/UPFPSR" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -482622,7 +514505,7 @@ neXtProt Ensemble Id Gene Name GO Term GO Id MSIG Term Disease Chromosome.""" ; sc:url "https://github.com/harbourlab/UPhyloplot2/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0625, @@ -482639,21 +514522,21 @@ neXtProt Ensemble Id Gene Name GO Term GO Id MSIG Term Disease Chromosome.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2886" ; - sc:name "Protein sequence record" ; - sc:sameAs "http://edamontology.org/data_2886" ] ; + sc:additionalType "http://edamontology.org/data_2886" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0907" ; - sc:name "Protein family report" ; - sc:sameAs "http://edamontology.org/data_0907" ], + sc:additionalType "http://edamontology.org/data_0857" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Sequence search results" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0857" ; - sc:name "Sequence search results" ; - sc:sameAs "http://edamontology.org/data_0857" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0907" ; + sc:name "Protein family report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0085 ; sc:author ; + sc:citation ; sc:description "UniProt Id Mapping through API" ; sc:featureList edam:operation_3282, edam:operation_3672 ; @@ -482663,11 +514546,11 @@ neXtProt Ensemble Id Gene Name GO Term GO Id MSIG Term Disease Chromosome.""" ; sc:operatingSystem "Linux", "Mac" ; sc:softwareHelp ; - sc:softwareVersion "1.2.0" ; + sc:softwareVersion "1.7.4" ; sc:url "https://github.com/iquasere/UPIMAPI" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2229, edam:topic_2269, @@ -482691,7 +514574,7 @@ MaBoSS is a C++ software for simulating continuous/discrete time Markov processe sc:url "https://maboss.curie.fr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0123, @@ -482707,7 +514590,7 @@ MaBoSS is a C++ software for simulating continuous/discrete time Markov processe sc:url "http://uproc.gobics.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2269 ; @@ -482722,7 +514605,7 @@ MaBoSS is a C++ software for simulating continuous/discrete time Markov processe biotools:primaryContact "Nils Gehlenborg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0099, @@ -482740,24 +514623,8 @@ MaBoSS is a C++ software for simulating continuous/discrete time Markov processe sc:url "https://github.com/uQlust" ; biotools:primaryContact "Support" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0102, - edam:topic_0610, - edam:topic_3305, - edam:topic_3810 ; - sc:citation ; - sc:description """Annually Modelling Built-settlements between Remotely-sensed Observations Using Relative Changes in Subnational Populations and Lights at Night. - -Mapping settlement extents at the annual time step has a wide variety of applications in demography, public health, sustainable development, and many other fields. Recently, while more multitemporal urban feature or human settlement datasets have become available, issues still exist in remotely-sensed imagery due to coverage, adverse atmospheric conditions, and expenses involved in producing such feature sets. These challenges make it difficult to increase temporal coverage while maintaining high fidelity in the spatial resolution. Here we demonstrate an interpolative and flexible modeling framework for producing annual built-settlement extents. - -||| HOMEPAGE BROKEN!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'interpolative', 'dasymetric', 'remotely-sensed', 'remotely-sensed imagery'""" ; - sc:name "urban" ; - sc:url "https://www.merriamwebster.com/dictionary/urban" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3390, edam:topic_3399, @@ -482781,7 +514648,7 @@ National Center for Health Statistics (NCHS) data systems are often used to stud sc:url "https://www.cdc.gov/nchs/data_access/urban_rural.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2259, @@ -482799,14 +514666,12 @@ National Center for Health Statistics (NCHS) data systems are often used to stud a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -482836,7 +514701,7 @@ National Center for Health Statistics (NCHS) data systems are often used to stud sc:url "http://emboss.open-bio.org/rel/rel6/apps/urlget.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, edam:topic_3168 ; @@ -482849,7 +514714,7 @@ National Center for Health Statistics (NCHS) data systems are often used to stud sc:url "https://drive5.com/urmap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, @@ -482863,7 +514728,7 @@ National Center for Health Statistics (NCHS) data systems are often used to stud sc:url "http://biozon.org/ftp/software/urms/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3168, @@ -482879,7 +514744,7 @@ National Center for Health Statistics (NCHS) data systems are often used to stud biotools:primaryContact "Mario Looso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3572 ; @@ -482894,7 +514759,7 @@ National Center for Health Statistics (NCHS) data systems are often used to stud sc:url "https://lbbe.univ-lyon1.fr/-UrQt-.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -482918,18 +514783,18 @@ Leveraging gene expression profiles of thousands of tissue and disease samples b a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3483" ; - sc:name "Spectrum" ; - sc:sameAs "http://edamontology.org/data_3483" ], + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; + sc:additionalType "http://edamontology.org/data_3483" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -482958,8 +514823,40 @@ Leveraging gene expression profiles of thousands of tissue and disease samples b sc:softwareVersion "0.6.8" ; sc:url "https://github.com/ursgal/ursgal" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1465" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "RNA structure" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0097, + edam:topic_0099, + edam:topic_0654, + edam:topic_2275 ; + sc:citation , + "pubmed:36038728" ; + sc:description "Universal structure alignments of proteins, nucleic acids, and macromolecular complexes." ; + sc:featureList edam:operation_0491, + edam:operation_0502, + edam:operation_0503, + edam:operation_0504, + edam:operation_0510 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "US-align" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://zhanggroup.org/US-align/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3474, @@ -482979,7 +514876,7 @@ Leveraging gene expression profiles of thousands of tissue and disease samples b "Tiejun Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154 ; sc:citation ; @@ -482996,8 +514893,30 @@ The Universal Spectrum Explorer (USE) is a web-based tool based for cross-resour sc:softwareHelp ; sc:url "https://github.com/kusterlab/universal_spectrum_explorer" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0634, + edam:topic_3315, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9060239", + "pubmed:35506043" ; + sc:description "Extending U-Net Network for Improved Nuclei Instance Segmentation Accuracy in Histopathology Images." ; + sc:featureList edam:operation_3435, + edam:operation_3436, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "USE-Net" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/CIVA-Lab/USE-Net" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -483017,7 +514936,7 @@ The Universal Spectrum Explorer (USE) is a web-based tool based for cross-resour sc:url "http://www.drive5.com/usearch/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3170, @@ -483034,7 +514953,7 @@ The Universal Spectrum Explorer (USE) is a web-based tool based for cross-resour biotools:primaryContact "David Nix" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0781, edam:topic_3315, @@ -483056,7 +514975,7 @@ ushr is an open-source R package that models the decline of HIV during ART using sc:url "https://github.com/SineadMorris/ushr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, edam:topic_3474, @@ -483074,7 +514993,7 @@ ushr is an open-source R package that models the decline of HIV during ART using sc:url "https://github.com/mikpom/uslcount" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_2830, @@ -483093,7 +515012,7 @@ USMPep is a simple recurrent neural network for MHC binding affinity prediction sc:url "https://github.com/nstrodt/USMPep" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -483114,7 +515033,7 @@ USMPep is a simple recurrent neural network for MHC binding affinity prediction biotools:primaryContact "Hao Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3077, edam:topic_3304, edam:topic_3382 ; @@ -483129,7 +515048,7 @@ Selective Plane Illumination Microscopy (SPIM) is a fluorescence imaging techniq sc:url "https://uspim.org/#/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -483145,7 +515064,7 @@ Selective Plane Illumination Microscopy (SPIM) is a fluorescence imaging techniq sc:url "http://usr.marseille.inserm.fr/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0781, @@ -483161,7 +515080,7 @@ Selective Plane Illumination Microscopy (SPIM) is a fluorescence imaging techniq sc:url "https://swinepathogendb.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3361 ; sc:citation ; @@ -483176,7 +515095,7 @@ UST is a bioinformatics tool for constructing a spectrum-preserving string set ( sc:url "https://github.com/medvedevgroup/UST/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, edam:topic_2640, @@ -483194,7 +515113,7 @@ UST is a bioinformatics tool for constructing a spectrum-preserving string set ( sc:url "https://github.com/chenlabgccri/UT-AIM250" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3303, edam:topic_3422 ; @@ -483209,7 +515128,7 @@ UST is a bioinformatics tool for constructing a spectrum-preserving string set ( biotools:primaryContact "Guy L. Reed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -483225,7 +515144,7 @@ UST is a bioinformatics tool for constructing a spectrum-preserving string set ( sc:url "http://utgenome.org/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Plug-in" ; sc:applicationSubCategory edam:topic_0621, @@ -483247,7 +515166,7 @@ UST is a bioinformatics tool for constructing a spectrum-preserving string set ( sc:url "https://github.com/KDDComplexNetworkAnalysis/UTLDR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0605 ; sc:citation , @@ -483262,8 +515181,25 @@ UST is a bioinformatics tool for constructing a spectrum-preserving string set ( sc:softwareVersion "1.4.5" ; sc:url "http://utopia.cs.man.ac.uk/utopia/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3384, + edam:topic_3444, + edam:topic_3452 ; + sc:citation , + "pubmed:34973607" ; + sc:description "Anomaly detection and localization with U-Transformer." ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "UTRAD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/gordon-chenmo/UTRAD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -483281,7 +515217,7 @@ A VEP Plugin to annotate high-impact five prime UTR variants either creating new sc:url "https://github.com/ImperialCardioGenetics/UTRannotator" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3308 ; @@ -483299,7 +515235,7 @@ A VEP Plugin to annotate high-impact five prime UTR variants either creating new biotools:primaryContact "Graziano Pesole" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3047, edam:topic_3308 ; @@ -483317,7 +515253,7 @@ A VEP Plugin to annotate high-impact five prime UTR variants either creating new biotools:primaryContact "Graziano Pesole" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -483332,14 +515268,13 @@ A VEP Plugin to annotate high-impact five prime UTR variants either creating new a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2975" ; - sc:name "Nucleic acid sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_2975" ] ; + sc:additionalType "http://edamontology.org/data_2975" ; + sc:name "Nucleic acid sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0920" ; - sc:name "Genotype/phenotype report" ; - sc:sameAs "http://edamontology.org/data_0920" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0920" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Genotype/phenotype report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0622, @@ -483349,13 +515284,14 @@ A VEP Plugin to annotate high-impact five prime UTR variants either creating new edam:topic_3168 ; sc:author , ; - sc:citation , + sc:citation , + , + , , , , , , - , , , , @@ -483366,7 +515302,9 @@ A VEP Plugin to annotate high-impact five prime UTR variants either creating new "pubmed:29757994", "pubmed:30835266", "pubmed:33471068", - "pubmed:33802899" ; + "pubmed:33802899", + "pubmed:34153841", + "pubmed:34488035" ; sc:contributor ; sc:description "Bioinformatics pipeline for the analysis of next-generation sequencing data derived from intra-host viral populations." ; sc:featureList edam:operation_0292, @@ -483379,18 +515317,22 @@ A VEP Plugin to annotate high-impact five prime UTR variants either creating new "Mac" ; sc:softwareHelp , , + , + , , - , - , - , , , ; + sc:softwareVersion "v1.0", + "v2.0", + "v2.99.0", + "v2.99.1", + "v2.99.2" ; sc:url "https://cbg-ethz.github.io/V-pipe/" ; biotools:primaryContact "V-pipe Dev Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_2229, @@ -483409,7 +515351,7 @@ To facilitate the interpretation of surrogate variables detected by algorithms i sc:url "https://vsva.jax.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3174 ; @@ -483424,7 +515366,7 @@ To facilitate the interpretation of surrogate variables detected by algorithms i biotools:primaryContact "Martin Hartmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3174, @@ -483444,7 +515386,7 @@ To facilitate the interpretation of surrogate variables detected by algorithms i sc:url "https://bitbucket.org/MAVERICLab/vcontact2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation "pubmed:19079253" ; @@ -483454,7 +515396,7 @@ To facilitate the interpretation of surrogate variables detected by algorithms i sc:url "http://archive.broadinstitute.org/crd/vaal-manual" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation "pubmed:21700266" ; @@ -483466,7 +515408,7 @@ To facilitate the interpretation of surrogate variables detected by algorithms i biotools:primaryContact "Mark Yandell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3301, @@ -483481,7 +515423,7 @@ To facilitate the interpretation of surrogate variables detected by algorithms i sc:url "https://github.com/sgoodswe/vacceed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0804, edam:topic_2640, @@ -483499,8 +515441,24 @@ To facilitate the interpretation of surrogate variables detected by algorithms i biotools:primaryContact "Joachim von Eichborn", "Robert Preissner" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC4515643", + "pubmed:26212482" ; + sc:description "‘VaccineDA’ has been made available to the scientific community as a webserver in order to assist the experimentalists in designing better IMODN based adjuvants using sequence information of the oligonucleotides." ; + sc:featureList edam:operation_2945 ; + sc:name "vaccineda" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/vaccineda/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0780, @@ -483515,7 +515473,7 @@ DSL provide the help to new learner of bioinformatics, genomics and personalized sc:url "http://www.deepaklab.com/vacpred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Workflow" ; sc:applicationSubCategory edam:topic_0121, @@ -483536,8 +515494,24 @@ DSL provide the help to new learner of bioinformatics, genomics and personalized sc:url "https://sourceforge.net/projects/vacsol/" ; biotools:primaryContact "Muhammad Rizwan" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC6190870", + "pubmed:30356876" ; + sc:description "VacTarBac is a platform which stores vaccine candidate against several pathogenic bacteria." ; + sc:featureList edam:operation_2945 ; + sc:name "vactarbac" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/vactarbac/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0176, @@ -483556,7 +515530,7 @@ DSL provide the help to new learner of bioinformatics, genomics and personalized biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -483579,7 +515553,7 @@ DSL provide the help to new learner of bioinformatics, genomics and personalized biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3170, @@ -483595,7 +515569,7 @@ DSL provide the help to new learner of bioinformatics, genomics and personalized biotools:primaryContact "Dr. Andrea Mariani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -483621,7 +515595,7 @@ VADT performs various filtering steps of a VCF file before testing for ASE. The sc:url "https://github.com/mjtiv/VADT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, edam:topic_3308, @@ -483638,26 +515612,8 @@ Recent advances in deep learning have offered solutions to many biomedical tasks sc:name "VAECox" ; sc:url "https://github.com/dmis-lab/VAECox" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0654, - edam:topic_3168, - edam:topic_3173, - edam:topic_3315 ; - sc:citation ; - sc:description """Efficient duplicate rate estimation from subsamples of sequencing libraries. - -In high-throughput sequencing (HTS) projects, the sequenced fragments’ duplicate rate is a key quality metric. A high duplicate rate may arise from a low amount of input DNA and many PCR cycles. Many methods for downstream analyses require that duplicates be removed. If the duplicate rate is high, most of the sequencing effort and money spent would have been in vain. Therefore, it is of considerable interest to estimate the duplicate rate after sequencing only a small subsample at low depth (multiplexed with other libraries) for quality control before running the full experiment. In this article, we provide an elementary mathematical framework and an efficient computational approach based on quadratic and linear optimization to estimate the true duplicate rate from a small subsample. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'up-sampling', 'duplicate', 'inverts', 'subsample'""" ; - sc:featureList edam:operation_2426 ; - sc:license "MIT" ; - sc:name "vain" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.1298V2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3174, edam:topic_3305, @@ -483671,7 +515627,7 @@ In high-throughput sequencing (HTS) projects, the sequenced fragments’ duplica sc:url "http://github.com/ravel-lab/VALENCIA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, edam:topic_3320, @@ -483694,7 +515650,7 @@ Alternative splicing produces a variety of different protein products from a giv sc:url "https://cran.r-project.org/web/packages/VALERIE/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0196, @@ -483709,7 +515665,7 @@ Alternative splicing produces a variety of different protein products from a giv biotools:primaryContact "Maryland Bioinformatics Labs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0654 ; @@ -483725,14 +515681,14 @@ Alternative splicing produces a variety of different protein products from a giv a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1539" ; - sc:name "Protein structural quality report" ; - sc:sameAs "http://edamontology.org/data_1539" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1539" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein structural quality report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0154 ; @@ -483759,7 +515715,7 @@ Alternative splicing produces a variety of different protein products from a giv "Primacy Contact" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -483783,7 +515739,7 @@ Alternative splicing produces a variety of different protein products from a giv sc:url "http://valispec.cryst.bbk.ac.uk/circularDichroism/ValiDichro/upload.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3170, edam:topic_3320, @@ -483806,10 +515762,10 @@ Information Theory is proven to accurately predict the impact a mutation has on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3583" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0749, edam:topic_2885, @@ -483832,14 +515788,12 @@ Information Theory is proven to accurately predict the impact a mutation has on a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0092 ; sc:author "Vladimír Horský" ; @@ -483856,7 +515810,7 @@ Information Theory is proven to accurately predict the impact a mutation has on sc:url "http://webchem.ncbr.muni.cz/ValTrendsDB/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0203, @@ -483872,7 +515826,7 @@ Information Theory is proven to accurately predict the impact a mutation has on sc:url "http://www.math.unipa.it/~raffaele/valworkbench/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0602, edam:topic_0625, @@ -483892,7 +515846,7 @@ Distribution of squared modified Mahalanobis distances computed using the VAM me sc:url "http://www.dartmouth.edu/~hrfrost/VAM" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0196, @@ -483914,7 +515868,7 @@ Vamb is a metagenomic binner which feeds sequence composition information from a sc:url "https://github.com/RasmussenLab/vamb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -483935,7 +515889,7 @@ Vamb is a metagenomic binner which feeds sequence composition information from a biotools:primaryContact "Carol Kling" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -483953,7 +515907,7 @@ Variant Annotation Method Pointing to Interesting Regulatory Effects.""" ; sc:url "http://shiny.bios.unc.edu/vampire/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, edam:topic_0625, @@ -483970,7 +515924,7 @@ Variant Annotation Method Pointing to Interesting Regulatory Effects.""" ; sc:url "https://github.com/jiwoongbio/VAMPr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3056, @@ -483990,7 +515944,7 @@ Variant Annotation Method Pointing to Interesting Regulatory Effects.""" ; biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3375 ; sc:citation , @@ -484007,7 +515961,7 @@ Variant Annotation Method Pointing to Interesting Regulatory Effects.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -484024,7 +515978,7 @@ Variant Annotation Method Pointing to Interesting Regulatory Effects.""" ; sc:url "http://agbi.techfak.uni-bielefeld.de/vanesa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -484049,7 +516003,7 @@ Variant Annotation Method Pointing to Interesting Regulatory Effects.""" ; biotools:primaryContact "Robert Scharpf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0199, @@ -484067,7 +516021,7 @@ Variant Annotation Method Pointing to Interesting Regulatory Effects.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0102, @@ -484090,7 +516044,7 @@ Variant Annotation Method Pointing to Interesting Regulatory Effects.""" ; sc:url "http://mulinlab.org/vportal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -484110,7 +516064,7 @@ Variant Annotation Method Pointing to Interesting Regulatory Effects.""" ; sc:url "https://www.cls.uni-konstanz.de/software/vanted/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -484132,7 +516086,7 @@ Variant Annotation Method Pointing to Interesting Regulatory Effects.""" ; biotools:primaryContact "VAP Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3308, edam:topic_3673 ; @@ -484147,7 +516101,7 @@ Variant Annotation Method Pointing to Interesting Regulatory Effects.""" ; sc:url "https://modupeore.github.io/VAP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_3673 ; @@ -484162,7 +516116,7 @@ Variant Annotation Method Pointing to Interesting Regulatory Effects.""" ; sc:url "https://github.com/connor-lab/vapor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -484181,7 +516135,7 @@ Variant Annotation Method Pointing to Interesting Regulatory Effects.""" ; "Kathleen Fisch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0199, edam:topic_1775, @@ -484197,7 +516151,7 @@ Variant Annotation Method Pointing to Interesting Regulatory Effects.""" ; biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0218, edam:topic_0634, @@ -484218,7 +516172,7 @@ Enter a chemical or protein/gene and let Vapur find related bio-molecules in 150 sc:url "https://tabilab.cmpe.boun.edu.tr/vapur/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, edam:topic_2885, @@ -484235,14 +516189,14 @@ Enter a chemical or protein/gene and let Vapur find related bio-molecules in 150 a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3053, @@ -484269,10 +516223,10 @@ Enter a chemical or protein/gene and let Vapur find related bio-molecules in 150 a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3015" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:author "Ketil Malde" ; @@ -484291,7 +516245,7 @@ Enter a chemical or protein/gene and let Vapur find related bio-molecules in 150 biotools:primaryContact "Ketil Malde" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0769, edam:topic_2640, @@ -484308,7 +516262,7 @@ Next-generation sequencing (NGS) is increasingly being adopted as a valuable met sc:url "https://github.com/nccl-jmli/VarBen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3169, @@ -484330,7 +516284,7 @@ Next-generation sequencing (NGS) is increasingly being adopted as a valuable met sc:url "https://github.com/aryarm/varCA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0196, edam:topic_2885, @@ -484349,7 +516303,7 @@ Reporting of a single nucleotide variant (SNV) follows the Sequence Variant Nome sc:url "https://github.com/caggtaagtat/VarConTables" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -484367,14 +516321,14 @@ Reporting of a single nucleotide variant (SNV) follows the Sequence Variant Nome a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description "VarDict is an ultra sensitive variant caller for both single and paired sample variant calling from BAM files. VarDict implements several novel features such as amplicon bias aware variant calling from targeted sequencing experiments, rescue of long indels by realigning bwa soft clipped reads and better scalability than many Java based variant callers." ; sc:featureList edam:operation_3227 ; @@ -484383,14 +516337,14 @@ Reporting of a single nucleotide variant (SNV) follows the Sequence Variant Nome a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -484408,10 +516362,10 @@ Reporting of a single nucleotide variant (SNV) follows the Sequence Variant Nome a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2534" ; - sc:name "Sequence attribute" ; - sc:sameAs "http://edamontology.org/data_2534" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2534" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence attribute" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Plug-in" ; sc:applicationSubCategory edam:topic_0622, @@ -484433,7 +516387,7 @@ Reporting of a single nucleotide variant (SNV) follows the Sequence Variant Nome sc:url "https://github.com/frankMusacchia/VarGenius-HZD" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0097, @@ -484447,8 +516401,32 @@ Reporting of a single nucleotide variant (SNV) follows the Sequence Variant Nome sc:softwareHelp ; sc:url "https://sites.google.com/site/geraldweberufmg/vargibbs" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2885, + edam:topic_3337, + edam:topic_3360, + edam:topic_3517 ; + sc:citation ; + sc:description "Hypothesis-free detection of gene-interaction effects on biomarker concentration in UK Biobank using variance prioritisation." ; + sc:featureList edam:operation_0282, + edam:operation_0337, + edam:operation_3659, + edam:operation_3791 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "varGWAS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/MRCIEU/varGWAS" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0203, edam:topic_0623, @@ -484465,7 +516443,7 @@ Varia is a tool to predict var genes based on short 150-200 base pair sequences sc:url "https://github.com/GCJMackenzie/Varia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0153, edam:topic_3055, edam:topic_3298, @@ -484481,14 +516459,14 @@ Varia is a tool to predict var genes based on short 150-200 base pair sequences a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3112" ; - sc:name "Gene expression matrix" ; - sc:sameAs "http://edamontology.org/data_3112" ] ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_2058" ; + sc:name "Gene expression matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -484511,10 +516489,9 @@ Varia is a tool to predict var genes based on short 150-200 base pair sequences a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0622 ; @@ -484534,7 +516511,7 @@ Varia is a tool to predict var genes based on short 150-200 base pair sequences biotools:primaryContact "babelomics@cipf.es (Francisco García)" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "A scalable, parallel and efficient implementation of pre-processing and variant calling workflows on cluster environments for next generation sequencing data." ; sc:featureList edam:operation_2945 ; sc:name "VariantCalling-at-Scale" ; @@ -484542,7 +516519,7 @@ Varia is a tool to predict var genes based on short 150-200 base pair sequences sc:url "https://github.com/abs-tudelft/variant-calling-at-scale" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -484563,14 +516540,14 @@ Varia is a tool to predict var genes based on short 150-200 base pair sequences a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2885, @@ -484593,7 +516570,7 @@ Varia is a tool to predict var genes based on short 150-200 base pair sequences biotools:primaryContact "Valerie Obenchain" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -484608,7 +516585,7 @@ Varia is a tool to predict var genes based on short 150-200 base pair sequences sc:url "https://github.com/jwalabroad/VariantBam" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation "pubmed:20626889" ; @@ -484623,14 +516600,14 @@ Varia is a tool to predict var genes based on short 150-200 base pair sequences a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2885 ; @@ -484651,7 +516628,7 @@ Varia is a tool to predict var genes based on short 150-200 base pair sequences biotools:primaryContact "Robert Castelo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -484669,13 +516646,13 @@ Varia is a tool to predict var genes based on short 150-200 base pair sequences biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "VariantSpark is a tailored Apache Spark-based machine learning framework that creates insights from high-dimensional data, including genomics and clinical data. VariantSpark’s machine learning method overcomes the limitation of traditional approaches that requires data to be eliminated or identifying only independent markers. Especially complex events are triggered by multiple contributing factors. VariantSpark is able to detect such sets of interacting features thereby identifying more accurate predictive markers. VariantSpark builds on the Random Forest Machine Learning method, which allows to interrogate the tree-based models and identify which features contributed in what proportion to the overall prediction outcome. We also provide a visualization engine that shows the interplay between features and their label association." ; sc:name "VariantSpark" ; sc:url "https://bioinformatics.csiro.au/variantspark/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, edam:topic_3474, @@ -484694,7 +516671,7 @@ variant-spark is a scalable toolkit for genome-wide association studies optimize sc:url "https://bioinformatics.csiro.au/variantspark/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -484715,7 +516692,7 @@ variant-spark is a scalable toolkit for genome-wide association studies optimize biotools:primaryContact "Michael Lawrence" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2885 ; @@ -484733,14 +516710,14 @@ variant-spark is a scalable toolkit for genome-wide association studies optimize a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -484776,7 +516753,7 @@ variant-spark is a scalable toolkit for genome-wide association studies optimize sc:url "http://www.bioinformatics.nl/cgi-bin/emboss/variationget" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3175 ; sc:citation "pubmed:19447966" ; @@ -484790,7 +516767,7 @@ variant-spark is a scalable toolkit for genome-wide association studies optimize biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_2885, @@ -484810,7 +516787,7 @@ variant-spark is a scalable toolkit for genome-wide association studies optimize biotools:primaryContact "VARID support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_2229, @@ -484827,7 +516804,7 @@ variant-spark is a scalable toolkit for genome-wide association studies optimize sc:url "https://github.com/dgrun/VarID_analysis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -484850,7 +516827,7 @@ An integrated database of variants and gene expression profiles for genetic dise sc:url "http://varied.cgm.ntu.edu.tw/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, edam:topic_0622, @@ -484869,7 +516846,7 @@ A tool for variant filtering.""" ; sc:url "https://github.com/bioxsjtu/VariFAST" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -484886,8 +516863,36 @@ A tool for variant filtering.""" ; sc:softwareHelp ; sc:url "http://bioinformatics.ua.pt/software/variobox/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2295" ; + sc:name "Gene ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0203, + edam:topic_0634, + edam:topic_2640, + edam:topic_3068 ; + sc:citation , + "pmcid:PMC9048643", + "pubmed:35274687" ; + sc:description "A high recall search engine to support the curation of genomic variants." ; + sc:featureList edam:operation_2421, + edam:operation_2422, + edam:operation_3226, + edam:operation_3435, + edam:operation_3504 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Variomes" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://candy.hesge.ch/Variomes" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -484907,7 +516912,7 @@ A tool for variant filtering.""" ; sc:url "http://grch38.genepipe.ncgm.sinica.edu.tw/variowatch/main.do" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0749, edam:topic_2640 ; @@ -484920,7 +516925,7 @@ A tool for variant filtering.""" ; sc:url "https://varlociraptor.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0602, @@ -484942,7 +516947,7 @@ A tool for variant filtering.""" ; biotools:primaryContact "Mark Wass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, edam:topic_0625, @@ -484959,7 +516964,7 @@ Population studies such as GWAS have identified a variety of genomic variants as sc:url "https://github.com/daifengwanglab/Varmole" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -484979,7 +516984,7 @@ Population studies such as GWAS have identified a variety of genomic variants as biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -485004,11 +517009,16 @@ Population studies such as GWAS have identified a variety of genomic variants as sc:url "https://github.com/UIUCSinhaLab/VarSAn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2885, edam:topic_3168 ; - sc:citation "pubmed:19542151" ; + sc:citation , + , + "pmcid:PMC2734323", + "pmcid:PMC3290792", + "pubmed:19542151", + "pubmed:22300766" ; sc:description "VarScan, an open source tool for variant detection that is compatible with several short read align-ers." ; sc:featureList edam:operation_3227 ; sc:name "VarScan" ; @@ -485020,7 +517030,7 @@ Population studies such as GWAS have identified a variety of genomic variants as biotools:primaryContact "Support Forum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0199, @@ -485037,7 +517047,7 @@ Population studies such as GWAS have identified a variety of genomic variants as sc:url "http://research.nhgri.nih.gov/software/VarSifter/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -485060,7 +517070,7 @@ Population studies such as GWAS have identified a variety of genomic variants as biotools:primaryContact "Saphetor SA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, edam:topic_2640 ; @@ -485075,7 +517085,7 @@ Please enter your mutation's gene name, peptide change, and coding strand change sc:url "https://varstack.brown.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -485095,7 +517105,7 @@ VarWatch is a tool for professional human geneticists, genetic counselors and re sc:url "https://github.com/broderF/varwatch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -485114,7 +517124,7 @@ VarWatch is a tool for professional human geneticists, genetic counselors and re biotools:primaryContact "Kevin Y Yip" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0166, edam:topic_0736 ; @@ -485133,7 +517143,7 @@ VarWatch is a tool for professional human geneticists, genetic counselors and re sc:url "https://www.vasp.at" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -485153,7 +517163,7 @@ VarWatch is a tool for professional human geneticists, genetic counselors and re biotools:primaryContact "Stephen HBryant" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Suite" ; sc:applicationSubCategory edam:topic_2885 ; @@ -485172,14 +517182,14 @@ VarWatch is a tool for professional human geneticists, genetic counselors and re a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1025" ; - sc:name "Gene identifier" ; - sc:sameAs "http://edamontology.org/data_1025" ] ; + sc:additionalType "http://edamontology.org/data_1025" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2080" ; - sc:name "Database search results" ; - sc:sameAs "http://edamontology.org/data_2080" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2080" ; + sc:encodingFormat "http://edamontology.org/format_2060" ; + sc:name "Database search results" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3170, edam:topic_3320 ; @@ -485197,7 +517207,7 @@ VarWatch is a tool for professional human geneticists, genetic counselors and re sc:url "http://vastdb.crg.eu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, @@ -485218,7 +517228,7 @@ VarWatch is a tool for professional human geneticists, genetic counselors and re sc:url "http://opengenetics.ca/2015/02/25/variant-assessment-tool-vat/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:author "Colby Chiang" ; @@ -485229,8 +517239,36 @@ VarWatch is a tool for professional human geneticists, genetic counselors and re sc:url "https://github.com/cc2qe/vawk" ; biotools:primaryContact "Colby Chiang" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2291" ; + sc:name "UniProt ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_2830, + edam:topic_3324, + edam:topic_3379, + edam:topic_3474, + edam:topic_3966 ; + sc:citation , + "pubmed:35381451" ; + sc:description "A web-based deep learning server to identify potential vaccine candidates." ; + sc:featureList edam:operation_0252, + edam:operation_0416, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:name "Vaxi-DL" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://vac.kamalrawal.in/vaxidl/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2830, edam:topic_3324, edam:topic_3379, @@ -485249,7 +517287,7 @@ Vaxign-ML (Vaxign - Machine Learning) is a machine learning-based vaccine candid sc:url "http://www.violinet.org/vaxign/vaxign-ml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, @@ -485271,8 +517309,24 @@ Vaxign-ML (Vaxign - Machine Learning) is a machine learning-based vaccine candid biotools:primaryContact "Guanming Wu", "Yongqun He" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC6029051", + "pubmed:29970096" ; + sc:description "A website for designing peptide based vaccine adjuvants." ; + sc:featureList edam:operation_2945 ; + sc:name "vaxinpad" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/vaxinpad/index.php" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -485295,7 +517349,7 @@ to the full posterior.""" ; biotools:primaryContact "Nicola Lama" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0625, @@ -485317,7 +517371,7 @@ VBT provides a set of tools that is used for aligner/variant calling benchmarkin sc:url "https://github.com/sbg/VBT-TrioAnalysis.git" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation "pubmed:17893086" ; @@ -485333,7 +517387,7 @@ VBT provides a set of tools that is used for aligner/variant calling benchmarkin biotools:primaryContact "William Jeck" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3316, @@ -485354,7 +517408,7 @@ VBT provides a set of tools that is used for aligner/variant calling benchmarkin sc:url "https://github.com/abs-tudelft/variant-calling-at-scale" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation ; @@ -485368,7 +517422,7 @@ VBT provides a set of tools that is used for aligner/variant calling benchmarkin sc:url "https://www.tzv.fal.de/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:description "Python tool to convert vcf files to Arlequin format." ; @@ -485380,7 +517434,7 @@ VBT provides a set of tools that is used for aligner/variant calling benchmarkin sc:url "https://www.dropbox.com/s/otui4ea6finnecs/VCF2Arlequin_Sept%202016.7z?dl=0" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0780, @@ -485401,7 +517455,7 @@ VBT provides a set of tools that is used for aligner/variant calling benchmarkin biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -485416,7 +517470,7 @@ VBT provides a set of tools that is used for aligner/variant calling benchmarkin sc:url "http://alleleseq.gersteinlab.org/tools.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2640, @@ -485436,7 +517490,7 @@ VBT provides a set of tools that is used for aligner/variant calling benchmarkin biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, @@ -485457,7 +517511,7 @@ VBT provides a set of tools that is used for aligner/variant calling benchmarkin sc:url "https://github.com/frankvogt/vcf2gwas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Script" ; sc:applicationSubCategory edam:topic_0199, @@ -485477,8 +517531,63 @@ VBT provides a set of tools that is used for aligner/variant calling benchmarkin ; sc:url "https://bitbucket.org/dalloliogm/vcf2networks" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Protein sequence" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0080, + edam:topic_0121, + edam:topic_3577, + edam:topic_3676, + edam:topic_3922 ; + sc:citation ; + sc:description "Generating sample-specific FASTA files from a consequence called VCF-file and a reference proteome." ; + sc:featureList edam:operation_3227, + edam:operation_3359, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "VCF2Prot" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/ikmb/vcf2prot" . + + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Script" ; + sc:applicationSubCategory edam:topic_0622 ; + sc:author ; + sc:description "A Python script that converts genomic variant data encoded in VCF format into a tab-separated values file." ; + sc:featureList edam:operation_3434 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "vcf2tsv" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareHelp ; + sc:softwareVersion "0.3.7.1" ; + sc:url "https://github.com/sigven/vcf2tsv" ; + biotools:primaryContact . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Set of tools for vcf file manipulation." ; @@ -485493,18 +517602,18 @@ VBT provides a set of tools that is used for aligner/variant calling benchmarkin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0080 ; @@ -485524,22 +517633,22 @@ VBT provides a set of tools that is used for aligner/variant calling benchmarkin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3002" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Annotation track" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3002" ; - sc:name "Annotation track" ; - sc:sameAs "http://edamontology.org/data_3002" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -485560,14 +517669,14 @@ VBT provides a set of tools that is used for aligner/variant calling benchmarkin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -485588,18 +517697,18 @@ VBT provides a set of tools that is used for aligner/variant calling benchmarkin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0199, @@ -485620,7 +517729,7 @@ VBT provides a set of tools that is used for aligner/variant calling benchmarkin biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0219 ; @@ -485636,7 +517745,7 @@ VBT provides a set of tools that is used for aligner/variant calling benchmarkin biotools:primaryContact "Brent Pedersen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0625, edam:topic_0769, @@ -485659,14 +517768,14 @@ VCFdbR was designed with Linux-based high performance computing clusters in mind a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ] ; + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "File name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "File name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Pierre Lindenbaum" ; @@ -485689,14 +517798,14 @@ VCFdbR was designed with Linux-based high performance computing clusters in mind a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ] ; + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "File name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1050" ; - sc:name "File name" ; - sc:sameAs "http://edamontology.org/data_1050" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1050" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "File name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Pierre Lindenbaum" ; @@ -485718,7 +517827,7 @@ VCFdbR was designed with Linux-based high performance computing clusters in mind biotools:primaryContact "Pierre Lindenbaum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_3071 ; @@ -485735,7 +517844,7 @@ VCFdbR was designed with Linux-based high performance computing clusters in mind biotools:primaryContact "GitHub Issues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -485756,7 +517865,7 @@ VCFdbR was designed with Linux-based high performance computing clusters in mind biotools:primaryContact "Brian J. Knaus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation ; sc:description """how to squeeze a VCF file. @@ -485768,7 +517877,7 @@ VCFShark is a tool to compress any VCF file. It achieves compression ratios up t sc:url "https://github.com/refresh-bio/vcfshark" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199 ; sc:citation , @@ -485788,7 +517897,7 @@ VCFShark is a tool to compress any VCF file. It achieves compression ratios up t biotools:primaryContact "Mailing list" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -485808,14 +517917,14 @@ VCFShark is a tool to compress any VCF file. It achieves compression ratios up t a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1930" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3071, @@ -485834,7 +517943,7 @@ VCFShark is a tool to compress any VCF file. It achieves compression ratios up t biotools:primaryContact "Galaxy Support Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, edam:topic_2640, @@ -485855,7 +517964,7 @@ An interactive Rshiny tool designed to support the evaluation of somatic mutatio sc:url "https://github.com/BrianOSullivanGit/vcfView" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -485874,7 +517983,7 @@ An interactive Rshiny tool designed to support the evaluation of somatic mutatio "Nelson Leung-Sang Tang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3068, edam:topic_3315, @@ -485893,7 +518002,7 @@ Simulate and visualize predictions of bacterial killing based on the kinetics of sc:url "https://combat-bacteria.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2275 ; sc:description "Independently developed extension for Vina, a program for flexible ligand docking. Carry out high-throughput screening of compound libraries with Vina and cluster resulting PDB files of ligands by binding energies and by binding positions. Results processing functions do not require Vina installed. Screening scale is unlimited." ; @@ -485903,8 +518012,26 @@ Simulate and visualize predictions of bacterial killing based on the kinetics of sc:softwareHelp ; sc:url "http://biochemlabsolutions.com/Molecule%20Docking/Molecule_Docking.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3382 ; + sc:citation , + "pubmed:35081029" ; + sc:description "Visual Compensation Restoration Network for No-Reference Image Quality Assessment." ; + sc:featureList edam:operation_3443, + edam:operation_3925, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "VCRNet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/NUIST-Videocoding/VCRNet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3170 ; sc:citation ; @@ -485917,7 +518044,7 @@ Simulate and visualize predictions of bacterial killing based on the kinetics of biotools:primaryContact "Lindsay G. Cowell" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2830, @@ -485933,7 +518060,7 @@ Simulate and visualize predictions of bacterial killing based on the kinetics of biotools:primaryContact "Fabio Luciani" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170 ; @@ -485948,14 +518075,14 @@ Simulate and visualize predictions of bacterial killing based on the kinetics of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080 ; @@ -485974,7 +518101,7 @@ Simulate and visualize predictions of bacterial killing based on the kinetics of biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_2640, edam:topic_2830, @@ -485992,7 +518119,7 @@ Simulate and visualize predictions of bacterial killing based on the kinetics of sc:url "https://bitbucket.org/kirbyvisp/vdjview" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0804, @@ -486011,7 +518138,7 @@ Simulate and visualize predictions of bacterial killing based on the kinetics of biotools:primaryContact "Mikhail Shugay" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_0780, @@ -486029,7 +518156,7 @@ Simulate and visualize predictions of bacterial killing based on the kinetics of sc:url "https://github.com/caurwx1/VDPtools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0637, edam:topic_3077, @@ -486045,7 +518172,7 @@ Simulate and visualize predictions of bacterial killing based on the kinetics of biotools:primaryContact "Alejandro A Schäffer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3307, @@ -486062,7 +518189,7 @@ Simulate and visualize predictions of bacterial killing based on the kinetics of sc:url "http://www.complex.iastate.edu/download/Vect/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0659, @@ -486088,14 +518215,13 @@ Simulate and visualize predictions of bacterial killing based on the kinetics of a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2759" ; - sc:name "Gene ID (VectorBase)" ; - sc:sameAs "http://edamontology.org/data_2759" ] ; + sc:additionalType "http://edamontology.org/data_2759" ; + sc:name "Gene ID (VectorBase)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2749" ; - sc:name "Genome identifier" ; - sc:sameAs "http://edamontology.org/data_2749" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2749" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Genome identifier" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0114, @@ -486116,7 +518242,7 @@ Simulate and visualize predictions of bacterial killing based on the kinetics of "VectorBase contact email" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -486134,7 +518260,7 @@ Simulate and visualize predictions of bacterial killing based on the kinetics of sc:url "http://www.vectorfriends.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0602, edam:topic_0634, @@ -486148,8 +518274,30 @@ VectorInfo is a freely accessible web resource, emphasised on medically importan sc:name "VectorInfo" ; sc:url "http://vectorinfo.icmr.org.in/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0610, + edam:topic_3305, + edam:topic_3500, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC8906066", + "pubmed:35284881" ; + sc:description "A local scale operational management tool for entomological monitoring, to support vector control activities in Greece and the Mediterranean Basin." ; + sc:featureList edam:operation_0224, + edam:operation_2428, + edam:operation_3454 ; + sc:isAccessibleForFree true ; + sc:name "VectorMap-GR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://vectormap.si.edu/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -486170,18 +518318,15 @@ VectorInfo is a freely accessible web resource, emphasised on medically importan a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -486212,7 +518357,7 @@ VectorInfo is a freely accessible web resource, emphasised on medically importan sc:url "http://emboss.open-bio.org/rel/rel6/apps/vectorstrip.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3512 ; @@ -486229,10 +518374,10 @@ VectorInfo is a freely accessible web resource, emphasised on medically importan a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3117" ; - sc:name "Microarray hybridisation data" ; - sc:sameAs "http://edamontology.org/data_3117" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3117" ; + sc:encodingFormat "http://edamontology.org/format_2056" ; + sc:name "Microarray hybridisation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2533, @@ -486253,7 +518398,7 @@ VectorInfo is a freely accessible web resource, emphasised on medically importan biotools:primaryContact "Sandro Morganella" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2269, edam:topic_3343 ; @@ -486275,7 +518420,7 @@ Necessary (2) Preferences (0) Statistics (4) Marketing (0) Unclassified (0).""" sc:url "https://www.vegahub.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, edam:topic_2258, @@ -486289,7 +518434,7 @@ Necessary (2) Preferences (0) Statistics (4) Marketing (0) Unclassified (0).""" sc:url "http://www.vegazz.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0621, @@ -486311,10 +518456,10 @@ Necessary (2) Preferences (0) Statistics (4) Marketing (0) Unclassified (0).""" a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3117" ; - sc:name "Microarray hybridisation data" ; - sc:sameAs "http://edamontology.org/data_3117" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3117" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Microarray hybridisation data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2533, @@ -486335,7 +518480,7 @@ Necessary (2) Preferences (0) Statistics (4) Marketing (0) Unclassified (0).""" biotools:primaryContact "Sandro Morganella" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0769, edam:topic_3304, @@ -486355,7 +518500,7 @@ The veganbagel script takes a directory with DICOM files of a non-enhanced 3D T1 sc:url "https://github.com/BrainImAccs/veganbagel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0623, @@ -486373,8 +518518,28 @@ The veganbagel script takes a directory with DICOM files of a non-enhanced 3D T1 biotools:primaryContact "A. Mishra", "S. MacGregor" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_3382, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC9352751", + "pubmed:35927555" ; + sc:description "Near-real-time MODIS-derived vegetation index data products and online services for CONUS based on NASA LANCE." ; + sc:featureList edam:operation_3431, + edam:operation_3435, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "VegScape" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://nassgeodata.gmu.edu/VegScape/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, @@ -486398,7 +518563,7 @@ The veganbagel script takes a directory with DICOM files of a non-enhanced 3D T1 sc:url "https://github.com/clay001/Velo-Predictor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2229, @@ -486417,7 +518582,7 @@ VeloSim is a simulation package that generates single-cell RNA Sequencing data f sc:url "https://github.com/PeterZZQ/VeloSim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -486433,30 +518598,25 @@ VeloSim is a simulation package that generates single-cell RNA Sequencing data f a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_2573" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2337" ; - sc:name "Resource metadata" ; - sc:sameAs "http://edamontology.org/data_2337" ] ; + sc:additionalType "http://edamontology.org/data_2337" ; + sc:name "Resource metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2337" ; - sc:name "Resource metadata" ; - sc:sameAs "http://edamontology.org/data_2337" ], + sc:additionalType "http://edamontology.org/data_0925" ; + sc:name "Sequence assembly" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ], + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0925" ; - sc:name "Sequence assembly" ; - sc:sameAs "http://edamontology.org/data_0925" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2337" ; + sc:name "Resource metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:citation , @@ -486473,7 +518633,7 @@ VeloSim is a simulation package that generates single-cell RNA Sequencing data f biotools:primaryContact "Daniel Zerbino" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -486489,10 +518649,10 @@ VeloSim is a simulation package that generates single-cell RNA Sequencing data f a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622 ; @@ -486515,7 +518675,7 @@ VeloSim is a simulation package that generates single-cell RNA Sequencing data f "Torsten Seemann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "vembrane allows to simultaneously filter variants based on any INFO field, CHROM, POS, REF, ALT, QUAL, and the annotation field ANN. When filtering based on ANN, annotation entries are filtered first. If no annotation entry remains, the entire variant is deleted." ; sc:featureList edam:operation_3675 ; sc:name "vembrane" ; @@ -486523,7 +518683,7 @@ VeloSim is a simulation package that generates single-cell RNA Sequencing data f sc:url "https://github.com/vembrane/vembrane" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -486534,7 +518694,7 @@ VeloSim is a simulation package that generates single-cell RNA Sequencing data f sc:url "http://portugene.com/vems.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_3170, @@ -486552,8 +518712,36 @@ A collection of 1298 publicly available soybean RNAseq samples. sc:name "venanciogroup" ; sc:url "http://venanciogroup.uenf.br/resources/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1027" ; + sc:name "Gene ID (NCBI)" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1033" ; + sc:name "Ensembl gene ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3170, + edam:topic_3308, + edam:topic_3320, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC9082955", + "pubmed:35534820" ; + sc:description "Genome-wide identification of associations between enhancer and alternative splicing in human and mouse." ; + sc:featureList edam:operation_0264, + edam:operation_0446, + edam:operation_3800 ; + sc:isAccessibleForFree true ; + sc:name "VEnAS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://venas.iis.sinica.edu.tw/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3366 ; sc:description "With this tool you can calculate the intersection(s) of list of elements. It will generate a textual output indicating which elements are in each intersection or are unique to a certain list. If the number of lists is lower than 6 it will also produce a graphical output in the form of a venn diagram. You have the choice between symmetric (default) or non symmetric venn diagrams. Currently you are able to calculate the intersections of at maximum 30 lists." ; @@ -486569,7 +518757,7 @@ A collection of 1298 publicly available soybean RNAseq samples. biotools:primaryContact "Lieven Sterck" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0797, edam:topic_3053 ; @@ -486587,8 +518775,30 @@ A collection of 1298 publicly available soybean RNAseq samples. sc:url "https://github.com/linguoliang/VennPainter/" ; biotools:primaryContact "Wei Zhou" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0121, + edam:topic_0154, + edam:topic_0769, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pubmed:35727542" ; + sc:description "An Automated Bioinformatic Pipeline for Identification of Disulfide-Rich Peptides from Venom Arsenals." ; + sc:featureList edam:operation_0418, + edam:operation_3192, + edam:operation_3631 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "VenomFlow" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://venomflow.github.io/Venom_Flow/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0637, edam:topic_3068, @@ -486607,7 +518817,7 @@ venoMS is a free database for low molecular mass compounds found in spider venom sc:url "http://www.venoms.ch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121 ; sc:description "VenomZone is a free web resource that provides information on venoms from six animal taxa (snakes, scorpions, spiders, cone snails, sea anemones and insects), as well as on their targets. Information can be browsed through pages on taxonomy, activity and venom protein families and all these pages link to related venom/toxin protein information from the manually curated UniProtKB/Swiss-Prot database." ; @@ -486621,7 +518831,7 @@ venoMS is a free database for low molecular mass compounds found in spider venom biotools:primaryContact "ExPASy helpdesk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3305, edam:topic_3418, @@ -486639,8 +518849,31 @@ Ventiliser is a tool for segmenting pressure and flow waveforms from ventilators sc:name "Ventiliser" ; sc:url "https://github.com/barrinalo/Ventiliser" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0130, + edam:topic_0154, + edam:topic_0199, + edam:topic_0601, + edam:topic_0736 ; + sc:citation , + "pubmed:35662467" ; + sc:description "Elucidating the Impact of Amino Acid Variants on Protein Function Beyond Structure Destabilisation." ; + sc:featureList edam:operation_0321, + edam:operation_0331, + edam:operation_0417, + edam:operation_3096 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Venus" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://venus.cmd.ox.ac.uk" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Script", "Web application", @@ -486664,7 +518897,7 @@ Ventiliser is a tool for segmenting pressure and flow waveforms from ventilators biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0634, edam:topic_3360, @@ -486681,7 +518914,7 @@ VEPAD is a tool for scoring the effect of Single Nucleotide Variants with respec sc:url "http://web.iitm.ac.in/bioinfo2/vepad/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0199, @@ -486696,7 +518929,7 @@ VEPAD is a tool for scoring the effect of Single Nucleotide Variants with respec biotools:primaryContact "Andrew Brown" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2269, @@ -486713,7 +518946,7 @@ VEPAD is a tool for scoring the effect of Single Nucleotide Variants with respec sc:url "http://db.systemsbiology.net/software/VERAandSAM/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3314 ; sc:citation ; @@ -486721,37 +518954,19 @@ VEPAD is a tool for scoring the effect of Single Nucleotide Variants with respec sc:name "verdedb" ; sc:url "http://www.verdedb.org" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0634, - edam:topic_2640, - edam:topic_3421 ; - sc:citation , - "pubmed:31804269" ; - sc:description """Compliance With Preoperative Elements of the American Society of Colon and Rectal Surgeons Rectal Cancer Surgery Checklist Improves Pathologic and Postoperative Outcomes. - -BACKGROUND:In 2016, the American Society of Colon and Rectal Surgeons published a rectal cancer surgery checklist composed of the essential elements of preoperative, intraoperative, and postoperative care for patients undergoing rectal cancer surgery. OBJECTIVE:The purpose of this study was to assess whether compliance with preoperative checklist elements was associated with improved pathologic and 30-day postoperative outcomes after rectal cancer surgery. DESIGN:This was a retrospective cohort study. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'cumplimiento de seis elementos preoperatorios', 'lista de verificacion de cirugia', 'B80', 'la lista de verificacion'""" ; - sc:featureList edam:operation_3659 ; - sc:name "verificacion los pacientes con cumplimiento" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31804269" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3498" ; - sc:name "Sequence variations" ; - sc:sameAs "http://edamontology.org/data_3498" ], + sc:additionalType "http://edamontology.org/data_3498" ; + sc:encodingFormat "http://edamontology.org/format_3016" ; + sc:name "Sequence variations" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "Sequence alignment (nucleic acid)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3572 ; @@ -486772,7 +518987,7 @@ BACKGROUND:In 2016, the American Society of Colon and Rectal Surgeons published "verifyBamID Google Group" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -486790,8 +519005,28 @@ BACKGROUND:In 2016, the American Society of Colon and Rectal Surgeons published sc:url "http://bioinfo.dcc.ufmg.br/vermont/" ; biotools:primaryContact "Alexandre V. Fassio" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0160, + edam:topic_0166 ; + sc:citation , + "pubmed:34791045" ; + sc:description "A Tool for Mining Fuzzy Network Motifs in RNA." ; + sc:featureList edam:operation_0239, + edam:operation_0245, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Vernal" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://vernal.cs.mcgill.ca" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_3382, edam:topic_3520 ; @@ -486805,7 +519040,7 @@ BACKGROUND:In 2016, the American Society of Colon and Rectal Surgeons published sc:url "http://www.github.com/ethz-asl/versavis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, edam:topic_0659, @@ -486821,7 +519056,7 @@ BACKGROUND:In 2016, the American Society of Colon and Rectal Surgeons published sc:url "http://www.targetscan.org/vert_71/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3382 ; @@ -486837,7 +519072,7 @@ BACKGROUND:In 2016, the American Society of Colon and Rectal Surgeons published "Thomas Dandekar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0153, edam:topic_3448 ; @@ -486855,7 +519090,7 @@ BACKGROUND:In 2016, the American Society of Colon and Rectal Surgeons published sc:url "https://vesicleviewer.dmarquardt.ca/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0219, @@ -486872,7 +519107,7 @@ BACKGROUND:In 2016, the American Society of Colon and Rectal Surgeons published biotools:primaryContact "Hadi Valadi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0622, @@ -486890,7 +519125,7 @@ BACKGROUND:In 2016, the American Society of Colon and Rectal Surgeons published biotools:primaryContact "Elena Peterson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0621, edam:topic_0623, @@ -486914,7 +519149,7 @@ We have written a manual that will take you through the process step by step. Th sc:url "http://www.mol-evol.org/VESPA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0085, edam:topic_0780, @@ -486935,7 +519170,7 @@ We have written a manual that will take you through the process step by step. Th sc:url "http://vespucci.colombos.fmach.it/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, edam:topic_3382, @@ -486952,7 +519187,7 @@ We have written a manual that will take you through the process step by step. Th sc:url "http://DISCOtechnologies.org/VesSAP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3318, @@ -486970,8 +519205,31 @@ We have written a manual that will take you through the process step by step. Th sc:url "https://www.mathworks.com/matlabcentral/fileexchange/36031-vessel-branch-segmentation" ; biotools:primaryContact "Hiroshi Kawaguchi" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0769, + edam:topic_3063, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9046271", + "pubmed:35497491" ; + sc:description "Open-source analysis and visualization of segmented vasculature datasets with VesselVio." ; + sc:featureList edam:operation_0337, + edam:operation_3553, + edam:operation_3799, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "VesselVio" ; + sc:operatingSystem "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://jacobbumgarner.github.io/VesselVio/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3304, @@ -486995,7 +519253,7 @@ Sketching and building three-dimensional representations of the vascular morphol sc:url "https://github.com/BlueBrain/VessMorphoVis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0099, edam:topic_2229, @@ -487013,7 +519271,7 @@ Sketching and building three-dimensional representations of the vascular morphol "Kyoung Jae Won" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3302, edam:topic_3382, @@ -487029,7 +519287,7 @@ Fecal examination is an important component of routine companion animal wellness sc:url "https://www.vetscanimagyst.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -487046,7 +519304,7 @@ Fecal examination is an important component of routine companion animal wellness biotools:primaryContact "Arnaud Droit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -487067,7 +519325,7 @@ Fecal examination is an important component of routine companion animal wellness biotools:primaryContact "Jian Yang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, edam:topic_3316, @@ -487082,8 +519340,58 @@ Fecal examination is an important component of routine companion animal wellness sc:name "VFFVA" ; sc:url "https://github.com/marouenbg/VFFVA" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0097, + edam:topic_0099, + edam:topic_0166, + edam:topic_0769 ; + sc:citation , + "pubmed:35758624" ; + sc:description "A web server for RNA 3D structure prediction from sequences." ; + sc:featureList edam:operation_0278, + edam:operation_0279, + edam:operation_0474, + edam:operation_2441, + edam:operation_4009 ; + sc:isAccessibleForFree true ; + sc:name "Vfold-Pipeline" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://rna.physics.missouri.edu/vfoldPipeline/index.html. a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0082, + edam:topic_0097, + edam:topic_0099, + edam:topic_3318 ; + sc:citation , + "pmcid:PMC8925972", + "pubmed:35058350" ; + sc:description "Predicting 2D structures of Multi-strand RNA complexes" ; + sc:featureList edam:operation_0278, + edam:operation_0303, + edam:operation_2441 ; + sc:isAccessibleForFree true ; + sc:name "VfoldMCPX" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://rna.physics.missouri.edu/vfoldMCPX2" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:citation , "pubmed:32946405" ; sc:description """Vulnerability Prediction-Assisted Evolutionary Fuzzing for Binary Programs. @@ -487093,7 +519401,7 @@ Fuzzing is a technique of finding bugs by executing a target program recurrently sc:url "https://github.com/guidovranken/vfuzz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "variation graph data structures, interchange formats, alignment, genotyping, and variant calling methods" ; sc:featureList edam:operation_3209 ; sc:name "vg" ; @@ -487101,7 +519409,7 @@ Fuzzing is a technique of finding bugs by executing a target program recurrently sc:url "https://github.com/vgteam/vg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -487118,7 +519426,7 @@ Fuzzing is a technique of finding bugs by executing a target program recurrently sc:url "https://github.com/vgteam/vg_wdl" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622, @@ -487134,7 +519442,7 @@ Fuzzing is a technique of finding bugs by executing a target program recurrently sc:url "http://genetics.cs.ucla.edu/vga/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0659, @@ -487151,7 +519459,7 @@ Fuzzing is a technique of finding bugs by executing a target program recurrently biotools:primaryContact "Han Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0196, @@ -487175,7 +519483,7 @@ Fuzzing is a technique of finding bugs by executing a target program recurrently sc:url "https://github.com/pauloluniyi/VGEA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0108, @@ -487196,7 +519504,7 @@ As an essential task in protein structure and function prediction, protein fold sc:url "http://csbio.njust.edu.cn/bioinf/vggfold/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0081, @@ -487210,10 +519518,10 @@ As an essential task in protein structure and function prediction, protein fold "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/vgichan/" . + sc:url "http://webs.iiitd.edu.in/raghava/vgichan/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654 ; @@ -487232,7 +519540,7 @@ As an essential task in protein structure and function prediction, protein fold sc:url "http://athena.bioc.uvic.ca/virology-ca-tools/vgo/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3305, @@ -487251,7 +519559,7 @@ As an essential task in protein structure and function prediction, protein fold biotools:primaryContact "Vladimir Shchur" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, edam:topic_2269 ; @@ -487274,14 +519582,14 @@ Furthermore, vhcub uses ggplot to visualize two important plots named ENc-GC3 pl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2538" ; - sc:name "Mutation identifier" ; - sc:sameAs "http://edamontology.org/data_2538" ] ; + sc:additionalType "http://edamontology.org/data_2538" ; + sc:encodingFormat "http://edamontology.org/format_2206" ; + sc:name "Mutation identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0896" ; - sc:name "Protein report" ; - sc:sameAs "http://edamontology.org/data_0896" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0896" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Protein report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -487306,7 +519614,7 @@ Furthermore, vhcub uses ggplot to visualize two important plots named ENc-GC3 pl biotools:primaryContact "Silvio C.E. Tosatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0623, edam:topic_3174, @@ -487321,7 +519629,7 @@ Furthermore, vhcub uses ggplot to visualize two important plots named ENc-GC3 pl sc:url "https://github.com/LaboratorioBioinformatica/vHULK" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, edam:topic_3168 ; @@ -487337,7 +519645,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a sc:url "https://bitbucket.org/bfreirec1/viadbg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382 ; sc:description "Volume Integration and Alignment System integrates tiled optical sections obtained from Laser Scanning Microscopy into a single volumetric dataset." ; @@ -487350,7 +519658,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a sc:url "http://research.mssm.edu/cnic/tools-vias.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3337, @@ -487364,7 +519672,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a biotools:primaryContact "Hans Neubauer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0781, edam:topic_3174 ; @@ -487382,7 +519690,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a biotools:primaryContact "Adam Rivers" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0623, @@ -487396,10 +519704,10 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://www.imtech.res.in/raghava/vicmpred/" . + sc:url "http://webs.iiitd.edu.in/raghava/vicmpred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081 ; sc:citation ; @@ -487417,7 +519725,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a biotools:primaryContact "Silvio C.E. Tosatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0622, @@ -487434,7 +519742,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a biotools:primaryContact "Jan Meier-Kolthoff" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0637, @@ -487450,7 +519758,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a biotools:primaryContact "Sejal Modha" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -487468,7 +519776,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0781 ; sc:citation , @@ -487485,7 +519793,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a sc:url "http://www.biochem.ucl.ac.uk/bsm/virus_database/VIDA3/VIDA.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170 ; @@ -487504,7 +519812,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a biotools:primaryContact "Brandon Monier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0804 ; @@ -487522,7 +519830,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2840, edam:topic_3047, @@ -487539,7 +519847,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a sc:url "https://livertox.univie.ac.at" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0154, @@ -487562,7 +519870,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -487584,7 +519892,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a biotools:primaryContact "Vienna RNA Package Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -487606,7 +519914,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a biotools:primaryContact "Judith Ivansits" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, edam:topic_0099 ; @@ -487628,7 +519936,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a "Ronny Lorenz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3169, @@ -487651,7 +519959,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a "Fabian Amman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3168, @@ -487668,7 +519976,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a biotools:primaryContact "Shaojun Xie" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3444 ; @@ -487683,7 +519991,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a sc:url "http://itg.beckman.illinois.edu/technology_development/software_development/viewit/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0203, @@ -487701,20 +520009,30 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a sc:url "http://www.jcvi.org/vigor" ; biotools:primaryContact "Support" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3303, - edam:topic_3382, - edam:topic_3395 ; - sc:citation , - "pmcid:PMC6684753", - "pubmed:31417899" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'bioprinting', 'Ultra-Low-Cost 3D Bioprinting', 'bioprinter' | Modification and Application of an Off-the-Shelf Desktop 3D-Printer for Biofabrication | This is \"low-cost bioprinter\" by Daniel Gilbert on Vimeo, the home for high quality videos and the people who love them | This is \"syringe carrier\" by Daniel Gilbert on Vimeo, the home for high quality videos and the people who love them | This is \"Line Video\" by Daniel Gilbert on Vimeo, the home for high quality videos and the people who love them | This is \"FAU Video\" by Daniel Gilbert on Vimeo, the home for high quality videos and the people who love them | Vimeo and its partners use cookies to personalize your experience, serve relevant ads, and understand how people are using our services. To learn more or change your preferences, visit our Cookie Policy" ; - sc:featureList edam:operation_3216 ; - sc:name "vimeo" ; - sc:url "https://vimeo.com/274482794" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_2885, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9191213", + "pubmed:35575313" ; + sc:description "An R package VIGoR for joint estimation of multiple linear learners with variational Bayesian inference." ; + sc:featureList edam:operation_3196, + edam:operation_3659, + edam:operation_3936 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "VIGoR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/Onogi/VIGoR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, edam:topic_0749, @@ -487731,7 +520049,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a sc:url "http://bmtongji.cn/ViMIC/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0102, @@ -487751,7 +520069,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a biotools:primaryContact "Marc Descrimes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2640, @@ -487770,20 +520088,8 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a biotools:primaryContact , . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3305, - edam:topic_3399, - edam:topic_3414 ; - sc:citation , - "pmcid:PMC6745057", - "pubmed:31517967" ; - sc:description "> VERY_LOW CONFIDENCE! | > HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'sexual violence youth violence bullying', 'violence youth violence bullying', 'sexual violence youth violence', 'violence youth violence' | Co-occurrence of Violence-Related Risk and Protective Behaviors and Adult Support Among Male Youth in Urban Neighborhoods | Importance:Male youth in lower-resource neighborhoods bear a disproportionate burden of violence involvement, but little is known about clusters of specific violence-related behaviors to inform cross-cutting interventions that address multiple forms of violence. Objective:To examine associations between adult support and patterns of violence and risk or protective behavior co-occurrence among male youths in urban neighborhoods. Design, Setting, and Participants:Cross-sectional analysis of baseline and end-of-program data from a recently completed cluster-randomized sexual violence prevention trial across 20 lower-resource neighborhoods" ; - sc:featureList edam:operation_3659 ; - sc:name "violence youth violence bullying perpetration" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31517967" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2885 ; @@ -487800,7 +520106,7 @@ RNA viruses exhibit a high mutation rate and thus they exist in infected cells a biotools:primaryContact "Yang Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0634, edam:topic_3053, @@ -487816,7 +520122,7 @@ The American College of Medical Genetics and Genomics, and the Association for M sc:url "http://hearing.genetics.bgi.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0204, @@ -487841,7 +520147,7 @@ The American College of Medical Genetics and Genomics, and the Association for M biotools:primaryContact "Mariano J Alvarez" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0781 ; sc:citation , @@ -487859,8 +520165,30 @@ The American College of Medical Genetics and Genomics, and the Association for M sc:softwareHelp ; sc:url "http://viperdb.scripps.edu/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0634, + edam:topic_3474, + edam:topic_3577, + edam:topic_3930 ; + sc:citation , + "pubmed:35598327" ; + sc:description "A gene-specific single nucleotide variant pathogenicity prediction tool for primary immunodeficiency diseases." ; + sc:featureList edam:operation_0331, + edam:operation_3461, + edam:operation_3920 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "VIPPID" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://mylab.shinyapps.io/VIPPID/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application", "Workbench" ; @@ -487885,26 +520213,26 @@ The American College of Medical Genetics and Genomics, and the Association for M a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ] ; + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence set (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script", "Web service" ; sc:applicationSubCategory edam:topic_0092, @@ -487937,12 +520265,12 @@ The American College of Medical Genetics and Genomics, and the Association for M sc:provider "Veit Schwämmle" ; sc:softwareHelp ; sc:softwareVersion "1.0" ; - sc:url "http://computproteomics.bmb.sdu.dk:8192/app_direct/VIQoR/" ; + sc:url "http://computproteomics.bmb.sdu.dk:443/app_direct/VIQoR/" ; biotools:primaryContact "Vasileios Tsiamis", "Veit Schwämmle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0654, @@ -487955,8 +520283,29 @@ The American College of Medical Genetics and Genomics, and the Association for M sc:softwareHelp ; sc:url "http://sourceforge.net/projects/viquas/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Script" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_3168, + edam:topic_3299 ; + sc:citation , + "pubmed:35853050" ; + sc:description "De Novo Viral Quasispecies Reconstruction Using Unitig-Based Flow Networks." ; + sc:featureList edam:operation_0487, + edam:operation_0524, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ViQUF" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/borjaf696/ViQUF" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0102, @@ -487983,18 +520332,30 @@ The American College of Medical Genetics and Genomics, and the Association for M sc:url "http://athena.bioc.uvic.ca/" ; biotools:primaryContact "Viral Bioinformatics Resource Center" . - a sc:SoftwareApplication ; - sc:description "Viral genome sequencing is a fast and efficient method for research on viral replication, packaging, function of terminase, transcription regulation, and metabolism of host cell. CD genomics platform holds great potential for viral genome sequencing. A comprehensive virus sequences will facilitate interpretation of viral metagenomics data by providing reference genomes, lead to a better understanding of virus diversity, ecology, adaptation and evolution, and enable the prediction of emerging infectious diseases caused by viruses. CD genomics can deliver high quality sequencing data for your virus genome of interest. Contact us for assistance in configuring your project." ; - sc:name "Viral Genome Sequencing" ; - sc:url "https://www.cd-genomics.com/Viral-Genome-Sequencing.html" . - - a sc:SoftwareApplication ; - sc:description "Apart from the qualified viral metagenomic sequencing, we provide assistance, including the experimental design, the determination of the appropriate sequencing platform, software tools, and analysis methodologies, to accommodate your project. If you have additional requirements or questions, please do not hesitate to contact us, our experienced specialists would like to help you to solve your questions." ; - sc:name "Viral Metagenomic" ; - sc:url "https://www.cd-genomics.com/Viral-Metagenomic-Sequencing.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0078, + edam:topic_0154, + edam:topic_0637, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC8757699", + "pubmed:35047951" ; + sc:description "A centralized datasource for all data relevant for the understanding of viral fusion peptides." ; + sc:featureList edam:operation_0416, + edam:operation_2575, + edam:operation_3935 ; + sc:isAccessibleForFree true ; + sc:name "ViralFP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://viralfp.bio.di.uminho.pt/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0114, @@ -488014,7 +520375,7 @@ The American College of Medical Genetics and Genomics, and the Association for M biotools:primaryContact "Marco Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0154, edam:topic_0602, @@ -488033,10 +520394,10 @@ ViralLink is a systems biology workflow which reconstructs and analyses networks a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3497" ; - sc:name "DNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3497" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3497" ; + sc:encodingFormat "http://edamontology.org/format_2545" ; + sc:name "DNA sequence (raw)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -488052,7 +520413,7 @@ ViralLink is a systems biology workflow which reconstructs and analyses networks sc:url "http://www.biobix.be/viralmbd/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0099, @@ -488069,7 +520430,7 @@ ViralLink is a systems biology workflow which reconstructs and analyses networks sc:url "http://csb.cse.yzu.edu.tw/viralmir/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -488090,7 +520451,7 @@ Importantly, ViralMSA differs significantly from VIRULIGN, a codon-correct refer sc:url "https://github.com/niemasd/ViralMSA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0632, @@ -488110,7 +520471,7 @@ Importantly, ViralMSA differs significantly from VIRULIGN, a codon-correct refer "P. O. Vidalain" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:description "ViralPhos is a web server for identifying potential virus phosphorylation sites with substrate motifs." ; @@ -488123,7 +520484,7 @@ Importantly, ViralMSA differs significantly from VIRULIGN, a codon-correct refer sc:url "http://csb.cse.yzu.edu.tw/ViralPhos/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0736, @@ -488139,7 +520500,7 @@ Importantly, ViralMSA differs significantly from VIRULIGN, a codon-correct refer sc:url "http://scratch.proteomics.ics.uci.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0621, edam:topic_3174, @@ -488156,8 +520517,35 @@ ViralRecall is a flexible command-line tool for detecting signatures of giant vi sc:softwareVersion "2.0" ; sc:url "https://github.com/faylward/viralrecall" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "ViraVacDB is a repository of human vaccines developed against viral diseases." ; + sc:featureList edam:operation_2945 ; + sc:name "viralvacdb" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/viralvacdb/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Script" ; + sc:applicationSubCategory edam:topic_0622 ; + sc:description """viralVerify classifies contigs (output of metaviralSPAdes or other assemblers) as viral, non-viral or uncertain, based on gene content. Also for non-viral contigs it can optionally provide plasmid/non-plasmid classification. + +viralVerify predicts genes in the contig using Prodigal in the metagenomic mode, runs hmmsearch on the predicted proteins and classifies the contig as vrial or non-viral by applying the Naive Bayes classifier (NBC). For the set of predicted HMMs, viralVerify uses trained NBC to classify this set to be viral or chromosomal.""" ; + sc:name "viralverify" ; + sc:operatingSystem "Linux", + "Mac" ; + sc:softwareVersion "1.1" ; + sc:url "https://github.com/ablab/viralVerify" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0121, @@ -488176,7 +520564,7 @@ ViralRecall is a flexible command-line tool for detecting signatures of giant vi sc:url "http://viralzone.expasy.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0781, @@ -488194,22 +520582,20 @@ ViralRecall is a flexible command-line tool for detecting signatures of giant vi a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0872" ; - sc:name "Phylogenetic tree" ; - sc:sameAs "http://edamontology.org/data_0872" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0872" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Phylogenetic tree" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0781, edam:topic_3174, @@ -488230,7 +520616,7 @@ It is designed to identify viruses in plant metagenomic data but it can be used biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -488249,7 +520635,7 @@ It is designed to identify viruses in plant metagenomic data but it can be used biotools:primaryContact "Altti Ilari Maarala" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0622, @@ -488271,7 +520657,7 @@ It is designed to identify viruses in plant metagenomic data but it can be used sc:url "http://virclust.icbm.de" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0140, edam:topic_0154, @@ -488293,8 +520679,32 @@ Vitiligo Information resource (VIRdb) is a comprehensive database which s sc:name "VIRdb" ; sc:url "http://www.vitiligoinfores.com/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0219, + edam:topic_3168, + edam:topic_3299 ; + sc:citation , + "pubmed:35904541" ; + sc:description "An Interactive Application for Analysis of Viral Recombination Data." ; + sc:featureList edam:operation_0451, + edam:operation_3431, + edam:operation_3695 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ViReMaShiny" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://routhlab.shinyapps.io/ViReMaShiny/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3293, edam:topic_3305 ; @@ -488308,8 +520718,21 @@ This repository contains a report on SARS-CoV-2 generated by ViReport using data sc:name "ViReport" ; sc:url "https://github.com/mirandajsong/ViReport-SARS-CoV-2" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:description "VirFacPred is developed for predicting virulent proteins. It utilizes wide range of information and techniques for prediction that includes machine learning techniques, BLAST, and MERCI." ; + sc:featureList edam:operation_2945 ; + sc:name "virfacpred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/virfacpred/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -488328,7 +520751,7 @@ This repository contains a report on SARS-CoV-2 generated by ViReport using data sc:url "http://whipple.cs.vt.edu/virgoperl/welcome.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3174, edam:topic_3420, edam:topic_3697, @@ -488349,7 +520772,7 @@ Analysis of metagenomic and metatranscriptomic data is complicated and typically sc:url "http://virgo.igs.umaryland.edu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal", "Database portal", "Web service" ; @@ -488379,7 +520802,7 @@ Analysis of metagenomic and metatranscriptomic data is complicated and typically biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3170, edam:topic_3174, @@ -488397,7 +520820,7 @@ Analysis of metagenomic and metatranscriptomic data is complicated and typically sc:url "https://github.com/jnoms/virID" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0622, edam:topic_0769 ; @@ -488411,8 +520834,34 @@ Comparative phage genome analysis tool.""" ; sc:name "VIRIDIC" ; sc:url "http://viridic.icbm.de" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1234" ; + sc:name "Sequence set (nucleic acid)" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3028" ; + sc:name "Taxonomy" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0781, + edam:topic_3174 ; + sc:citation , + "pmcid:PMC6086868", + "pubmed:30097567" ; + sc:description "VirMAP a tool that merge nucleotide and protein information to taxonomically classify viral reconstructions independent of genome coverage or read overlap" ; + sc:featureList edam:operation_0232, + edam:operation_3435, + edam:operation_3460 ; + sc:isAccessibleForFree true ; + sc:license "AGPL-3.0" ; + sc:name "VirMAP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/cmmr/VirMAP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_2885, @@ -488429,8 +520878,58 @@ Comparative phage genome analysis tool.""" ; sc:softwareVersion "1.1.1" ; sc:url "http://sourceforge.net/p/virmid/wiki/Home/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library", + "Web application" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0622, + edam:topic_0769, + edam:topic_0781, + edam:topic_2640 ; + sc:citation , + "pubmed:35612221" ; + sc:description "A Bioinformatics Pipeline for Identifying Viral Insertion in Human Host Genome." ; + sc:featureList edam:operation_0337, + edam:operation_2422, + edam:operation_3196, + edam:operation_3218 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "viroCapt" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://shiny.maximewack.com/viroCapt_MIE" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0196, + edam:topic_0780, + edam:topic_2814, + edam:topic_3170 ; + sc:citation , + "pmcid:PMC8728161", + "pubmed:34751403" ; + sc:description "ViroidDB is the most comprehensive collection of viroid, satellite RNA, retrozyme, and deltavirus genome sequences available on the internet." ; + sc:featureList edam:operation_0278, + edam:operation_0292, + edam:operation_0337, + edam:operation_0502, + edam:operation_2422 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "ViroidDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://viroids.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0781, edam:topic_3174, @@ -488449,7 +520948,7 @@ Comparative phage genome analysis tool.""" ; biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, edam:topic_3299, @@ -488465,8 +520964,25 @@ Influenza viruses are persistently threatening public health, causing annual epi sc:name "VirPreNet" ; sc:url "https://github.com/Rayin-saber/VirPreNet" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3174, + edam:topic_3474, + edam:topic_3837 ; + sc:citation , + "pubmed:35316191" ; + sc:description "Identifying Bacteriophages from Metagenomes by Combining Convolutional Neural Network and Gene Information." ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "virSearcher" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/DrJackson18/virSearcher" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0219, @@ -488487,7 +521003,7 @@ Influenza viruses are persistently threatening public health, causing annual epi biotools:primaryContact "Dr. Manoj Kumar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168, edam:topic_3174, @@ -488504,7 +521020,7 @@ The output of VirStrain contains two files. The first is a report file in text f sc:url "https://github.com/liaoherui/VirStrain" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_3318, edam:topic_3474 ; @@ -488520,8 +521036,56 @@ The output of VirStrain contains two files. The first is a report file in text f ; sc:url "http://www.virtualacoustics.org/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3108" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Experimental measurement" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation ; + sc:description "Software to perform human in silico drug trials in populations of human cardiac cell models, based on ion channel information." ; + sc:featureList edam:operation_2426 ; + sc:isAccessibleForFree false ; + sc:license "Proprietary" ; + sc:name "Virtual Assay" ; + sc:operatingSystem "Windows" ; + sc:softwareHelp ; + sc:softwareVersion "3.2" ; + sc:url "https://www.cs.ox.ac.uk/ccs/virtual-assay/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0749, + edam:topic_3169, + edam:topic_3170, + edam:topic_3308, + edam:topic_3940 ; + sc:citation , + "pmcid:PMC9185870", + "pubmed:35681170" ; + sc:description "Predicting transcription factor binding by learning from the transcriptome." ; + sc:featureList edam:operation_0445, + edam:operation_2575, + edam:operation_3222, + edam:operation_3431 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Virtual ChIP-seq" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://virchip.hoffmanlab.org" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3070 ; sc:author "Tomas Kulhanek" ; @@ -488542,7 +521106,7 @@ The output of VirStrain contains two files. The first is a report file in text f biotools:primaryContact "Tomas Kulhanek" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0780, @@ -488562,7 +521126,7 @@ The output of VirStrain contains two files. The first is a report file in text f sc:url "http://altb.asu.ru" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0208, @@ -488583,7 +521147,7 @@ The output of VirStrain contains two files. The first is a report file in text f "Zhoufang Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0637, @@ -488605,7 +521169,7 @@ The output of VirStrain contains two files. The first is a report file in text f biotools:primaryContact "Rasmus Wernersson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0077, edam:topic_3374, @@ -488625,18 +521189,18 @@ The output of VirStrain contains two files. The first is a report file in text f a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_0883" ; + sc:encodingFormat "http://edamontology.org/format_3816" ; + sc:name "Structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0883" ; - sc:name "Structure" ; - sc:sameAs "http://edamontology.org/data_0883" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_3307, edam:topic_3314, @@ -488658,7 +521222,7 @@ The output of VirStrain contains two files. The first is a report file in text f biotools:primaryContact "Pau Andrio" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0820, @@ -488679,7 +521243,7 @@ The output of VirStrain contains two files. The first is a report file in text f "Robert Preissner" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, edam:topic_0769, @@ -488696,8 +521260,30 @@ Virus transcript detection and quantification using normal human RNAseq. VIRTUS sc:name "VIRTUS" ; sc:url "https://github.com/yyoshiaki/VIRTUS" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0199, + edam:topic_3299, + edam:topic_3305 ; + sc:citation , + "pubmed:35040923" ; + sc:description "Direct comparison of SARS-CoV-2 genomes and genetic variants in space and time." ; + sc:featureList edam:operation_2422, + edam:operation_3226, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "Apache-2.0" ; + sc:name "ViruClust" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://gmql.eu/viruclust/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_0625, @@ -488717,7 +521303,7 @@ Only data from one single isolate should be uploaded. If raw sequencing reads ar sc:url "http://cge.cbs.dtu.dk/services/VirulenceFinder/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, edam:topic_0634, @@ -488738,7 +521324,7 @@ Virus-CKB is a knowledgebase for COVID-19 and similar viral infection research t sc:url "https://www.cbligand.org/g/virus-ckb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0625, @@ -488759,7 +521345,7 @@ Virus-CKB is a knowledgebase for COVID-19 and similar viral infection research t biotools:primaryContact "Tulio de Oliveira" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -488776,7 +521362,7 @@ Virus-CKB is a knowledgebase for COVID-19 and similar viral infection research t sc:url "http://bioinformatics.org/virusbanker/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659, edam:topic_0781, @@ -488795,7 +521381,7 @@ VirusCircBase(1.1), is a comprehensive database of circular RNA molecules encode sc:url "http://www.computationalbiology.cn/ViruscircBase/home.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3068, edam:topic_3263, @@ -488811,7 +521397,7 @@ The Coronavirus Disease 2019 (COVID-19) pandemic poses a huge threat to human pu sc:url "https://db.cngb.org/virus/virus" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0781 ; sc:citation ; @@ -488820,12 +521406,60 @@ The Coronavirus Disease 2019 (COVID-19) pandemic poses a huge threat to human pu sc:name "VirusHunter" ; sc:url "http://pathology.wustl.edu/VirusHunter/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0199, + edam:topic_0769, + edam:topic_0781, + edam:topic_3305 ; + sc:citation , + "pmcid:PMC9245481", + "pubmed:35822801" ; + sc:description "A Tool for Customized SARS-CoV-2 Data Analysis. Comparative analysis and effective visualization of viral nucleotide and amino acid variants." ; + sc:featureList edam:operation_0337, + edam:operation_2421, + edam:operation_2422, + edam:operation_3197 ; + sc:isAccessibleForFree true ; + sc:name "VirusLab" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://viruslab.quantiaconsulting.com/viruslab/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_0621, + edam:topic_0749, + edam:topic_2830, + edam:topic_3534 ; + sc:citation , + "pmcid:PMC8479994", + "pubmed:34614039" ; + sc:description "Metal binding sites, antigen epitopes, and drug binding sites are viral protein hotspots that control how viruses interact with their hosts. Like Google maps organizes and annotates points of interest on the planet, virus-M-E-D (Metal binding sites, antigenic Epitopes, and Drug binding sites) recognizes the relative locations of individual hotspots of viral proteins, and depicts a collection of maps upon which newly-characterized functional sites can be marked as they are being discovered. While we define drug as small molecule compounds collected by the DrugBank database, other small molecules binders observed in complex viral protein structures were also cataloged." ; + sc:featureList edam:operation_0252, + edam:operation_0416, + edam:operation_0480, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:name "virusMED" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://virusmed.biocloud.top" . + a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_3158" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0781 ; @@ -488851,22 +521485,19 @@ The Coronavirus Disease 2019 (COVID-19) pandemic poses a huge threat to human pu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ], + sc:additionalType "http://edamontology.org/data_2526" ; + sc:name "Text data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:name "Protein interaction data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ], + sc:additionalType "http://edamontology.org/data_0906" ; + sc:name "Protein interaction data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0906" ; - sc:name "Protein interaction data" ; - sc:sameAs "http://edamontology.org/data_0906" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0906" ; + sc:encodingFormat "http://edamontology.org/format_3158" ; + sc:name "Protein interaction data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0781 ; @@ -488887,7 +521518,7 @@ The Coronavirus Disease 2019 (COVID-19) pandemic poses a huge threat to human pu biotools:primaryContact "Luana Licata" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, @@ -488908,7 +521539,7 @@ The Coronavirus Disease 2019 (COVID-19) pandemic poses a huge threat to human pu . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622 ; @@ -488924,7 +521555,7 @@ The Coronavirus Disease 2019 (COVID-19) pandemic poses a huge threat to human pu biotools:primaryContact "Xiaoping Su" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0196, @@ -488946,7 +521577,7 @@ The Coronavirus Disease 2019 (COVID-19) pandemic poses a huge threat to human pu biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0219, @@ -488973,7 +521604,7 @@ The database is centered on sequences, described from their biological, technolo biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0154, @@ -488998,14 +521629,13 @@ The database is centered on sequences, described from their biological, technolo a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3494" ; - sc:name "DNA sequence" ; - sc:sameAs "http://edamontology.org/data_3494" ] ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_2545" ; + sc:name "DNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:name "Sequence set" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -489020,7 +521650,7 @@ The database is centered on sequences, described from their biological, technolo sc:url "https://sourceforge.net/projects/virtools/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0637, edam:topic_0781, @@ -489036,7 +521666,7 @@ The database is centered on sequences, described from their biological, technolo sc:url "http://virxicon.cs.put.poznan.pl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0202, @@ -489065,7 +521695,7 @@ The database is centered on sequences, described from their biological, technolo biotools:primaryContact "VisANT Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, edam:topic_0769, @@ -489082,7 +521712,7 @@ Here we took a step forward to interpret the learned features from deep neural n sc:url "https://github.com/qid12/visar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3382, edam:topic_3518 ; @@ -489097,8 +521727,31 @@ VisBicluster is an interactive, web based visualization technique designed to an sc:name "VisBicluster" ; sc:url "http://vis.usal.es/~visusal/visbicluster" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3295, + edam:topic_3382, + edam:topic_3697, + edam:topic_3934 ; + sc:citation , + "pmcid:PMC8557071", + "pubmed:34715773" ; + sc:description "ViSCAR is a set of methods and corresponding functions, to visually explore and correlate single-cell attributes generated from the image processing of complex bacterial single-cell movies. It can be used to model and visualize the spatiotemporal evolution of attributes at different levels of the microbial community organization (i.e., cell population, colony, generation, etc.), to discover possible epigenetic information transfer across cell generations, infer mathematical and statistical models describing various stochastic phenomena (e.g., cell growth, cell division), and even identify and auto-correct errors introduced unavoidably during the bioimage analysis of a dense movie with thousands of overcrowded cells in the microscope's field of view." ; + sc:featureList edam:operation_0337, + edam:operation_3435, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "ViSCAR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://gitlab.com/ManolakosLab/viscar" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -489117,7 +521770,7 @@ VisBicluster is an interactive, web based visualization technique designed to an sc:url "http://bio.math-inf.uni-greifswald.de/viscose/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3810 ; sc:citation , @@ -489132,7 +521785,7 @@ Many variables of interest in agricultural or economical surveys have skewed dis sc:url "https://lyux.shinyapps.io/viscover/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -489148,7 +521801,7 @@ Many variables of interest in agricultural or economical surveys have skewed dis biotools:primaryContact "Computational Bioinformatics and Bioimaging Laboratory" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -489165,7 +521818,7 @@ Many variables of interest in agricultural or economical surveys have skewed dis sc:url "https://sourceforge.net/projects/visen/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_0160, @@ -489184,7 +521837,7 @@ Interactions between proteins and non-proteic small molecule ligands play import sc:url "http://vagner.dti.ufv.br/visgremlin4" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0166, @@ -489198,7 +521851,7 @@ Interactions between proteins and non-proteic small molecule ligands play import sc:url "http://kiharalab.org/VisGrid/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_1775, @@ -489218,7 +521871,7 @@ Interactions between proteins and non-proteic small molecule ligands play import biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3301 ; @@ -489235,7 +521888,7 @@ Interactions between proteins and non-proteic small molecule ligands play import biotools:primaryContact "Andreas Henschel" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -489252,7 +521905,7 @@ Interactions between proteins and non-proteic small molecule ligands play import sc:url "http://visibioweb.patika.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3407 ; @@ -489269,8 +521922,28 @@ Interactions between proteins and non-proteic small molecule ligands play import sc:softwareHelp ; sc:url "http://www.visinets.com/index.htm" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pubmed:35077359" ; + sc:description "A Permutable MLP-Like Architecture for Visual Recognition." ; + sc:featureList edam:operation_0337, + edam:operation_2475, + edam:operation_3436 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Vision Permutator" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Andrew-Qibin/VisionPermutator" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -489286,14 +521959,35 @@ Interactions between proteins and non-proteic small molecule ligands play import sc:softwareHelp ; sc:url "http://visionet.erc.monash.edu.au/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3382, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9279291", + "pubmed:35831385" ; + sc:description "VisionTool is a python toolbox for pose estimation on videos containing actions. It is powered with a simple and intuititive Graphical User Interface (GUI) to allow a complete analysis from annotation to semantic features detection (e.g., joint position estimation)." ; + sc:featureList edam:operation_1812, + edam:operation_3443, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "VisionTool" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Malga-Vision/VisionTool.git" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "VisIt is an Open Source, interactive, scalable, visualization, animation and analysis tool." ; sc:name "VisIt" ; sc:url "https://wci.llnl.gov/simulation/computer-codes/visit" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -489310,7 +522004,7 @@ Interactions between proteins and non-proteic small molecule ligands play import biotools:primaryContact "Sara Brin Rosenthal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0102, @@ -489328,7 +522022,7 @@ Interactions between proteins and non-proteic small molecule ligands play import biotools:primaryContact "Joaquín Dopazo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0769, @@ -489344,7 +522038,7 @@ Interactions between proteins and non-proteic small molecule ligands play import sc:url "https://github.com/MunzT/VisME" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0196, @@ -489357,8 +522051,24 @@ Interactions between proteins and non-proteic small molecule ligands play import sc:softwareHelp ; sc:url "http://alan.cs.gsu.edu/NGS/?q=content/vispa" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3382, + edam:topic_3474 ; + sc:citation ; + sc:description "A computer-vision-based representation system for individual images and concept prototypes, with large-scale evaluation." ; + sc:featureList edam:operation_0337, + edam:operation_3443 ; + sc:isAccessibleForFree true ; + sc:name "ViSpa" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://vispa.fritzguenther.de" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -489378,7 +522088,7 @@ Interactions between proteins and non-proteic small molecule ligands play import biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0099 ; @@ -489398,8 +522108,31 @@ Interactions between proteins and non-proteic small molecule ligands play import sc:softwareHelp ; sc:url "http://vispr-online.weililab.org" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0736, + edam:topic_0780, + edam:topic_3512, + edam:topic_3945 ; + sc:citation , + "pmcid:PMC9235191", + "pubmed:35761171" ; + sc:description "An interactive Shiny/R application for displaying protein domains with transcriptional features." ; + sc:featureList edam:operation_0224, + edam:operation_0303, + edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "VisProDom" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://whweve.shinyapps.io/VisProDom" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -489416,7 +522149,7 @@ Interactions between proteins and non-proteic small molecule ligands play import sc:url "http://www.uea.ac.uk/computing/phylogenetics-software-visrd" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Suite" ; sc:applicationSubCategory edam:topic_3308 ; @@ -489432,7 +522165,7 @@ Interactions between proteins and non-proteic small molecule ligands play import biotools:primaryContact "Forum" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0102, @@ -489477,7 +522210,7 @@ Interactions between proteins and non-proteic small molecule ligands play import biotools:primaryContact "Vista Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0607, @@ -489500,7 +522233,7 @@ Interactions between proteins and non-proteic small molecule ligands play import sc:url "https://enhancer.lbl.gov/frnt_page_n.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0769, edam:topic_2830, @@ -489518,7 +522251,7 @@ VisTCR is an open source software that provides an interactive visualization of sc:url "https://github.com/qingshanni/VisTCR" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3170, @@ -489538,7 +522271,7 @@ VisTCR is an open source software that provides an interactive visualization of sc:url "http://research.libd.org/VistoSeg" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3170, @@ -489555,7 +522288,7 @@ VisTCR is an open source software that provides an interactive visualization of biotools:primaryContact "Lan Huong Nguyen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382 ; sc:description "It uses OpenGL textures to generate a 3D visualization of confocal and wide field fluorescence microscopy images. Custom color palettes can be applied to grey value images. AVI movies can be created with a build in script engine." ; @@ -489566,7 +522299,7 @@ VisTCR is an open source software that provides an interactive visualization of sc:url "http://freeware.ronhoebe.com/free/Visual3D.asp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2275, @@ -489583,7 +522316,7 @@ VisTCR is an open source software that provides an interactive visualization of sc:url "http://cpclab.uni-duesseldorf.de/software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0091, @@ -489603,7 +522336,7 @@ VisTCR is an open source software that provides an interactive visualization of biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2259 ; sc:citation ; @@ -489614,8 +522347,28 @@ VisTCR is an open source software that provides an interactive visualization of sc:softwareHelp ; sc:url "http://millar.bio.ed.ac.uk/PEBrown/vt/Tools.htm" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_2269, + edam:topic_3382 ; + sc:citation , + "pubmed:35445697" ; + sc:description "Visualizing Motility and Morphology Statistics on Images in R." ; + sc:featureList edam:operation_0337, + edam:operation_3553, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "VisuStatR" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/grrchrr/VisuStatR/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -489630,8 +522383,47 @@ VisTCR is an open source software that provides an interactive visualization of sc:softwareHelp ; sc:url "http://sourceforge.net/projects/vitapad/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pmcid:PMC3577447", + "pubmed:23387468" ; + sc:description "VitaPred is a SVM (Support Vector Machines) based prediction method for the vitamin-interacting residues in protein sequences." ; + sc:featureList edam:operation_2945 ; + sc:name "vitapred" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/vitapred/" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_0196, + edam:topic_2269, + edam:topic_3304, + edam:topic_3382 ; + sc:citation , + "pmcid:PMC9038756", + "pubmed:35468989" ; + sc:description "Hidden Markov modeling for maximum probability neuron reconstruction." ; + sc:featureList edam:operation_0267, + edam:operation_0296, + edam:operation_3283, + edam:operation_3450 ; + sc:isAccessibleForFree true ; + sc:name "ViterBrain" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://brainlit.neurodata.io/viterbrain.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, edam:topic_3170, @@ -489653,18 +522445,16 @@ Vitiligo in-house expression data from lesional and non-lesional epidermal tissu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Gene expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Gene expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation ; @@ -489679,7 +522469,7 @@ Vitiligo in-house expression data from lesional and non-lesional epidermal tissu sc:url "http://bioinformatics.intec.ugent.be/kmarchal/ViTraM/Index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0749, edam:topic_3168 ; @@ -489695,7 +522485,7 @@ Vitiligo in-house expression data from lesional and non-lesional epidermal tissu sc:url "https://compbiocore.github.io/VariantVisualization.jl/latest/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3360, edam:topic_3372 ; @@ -489711,7 +522501,7 @@ An amendment to this paper has been published and can be accessed via the origin sc:url "https://sourceforge.net/projects/vivagen/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_2275, @@ -489729,7 +522519,7 @@ An amendment to this paper has been published and can be accessed via the origin sc:url "http://www.ebi.ac.uk/pdbe/vivaldi/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0781, @@ -489746,7 +522536,7 @@ An amendment to this paper has been published and can be accessed via the origin biotools:primaryContact "The ViVan team at Dr. Noam Shomron Lab" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3307, @@ -489764,7 +522554,7 @@ An amendment to this paper has been published and can be accessed via the origin . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0202, edam:topic_0749, edam:topic_3068 ; @@ -489776,7 +522566,7 @@ An amendment to this paper has been published and can be accessed via the origin sc:url "https://github.com/crepeia/wati" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_2885, edam:topic_3302 ; @@ -489788,7 +522578,7 @@ An amendment to this paper has been published and can be accessed via the origin sc:url "http://vivaxgen.menzies.edu.au/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0157, edam:topic_3302, @@ -489808,7 +522598,7 @@ An amendment to this paper has been published and can be accessed via the origin biotools:primaryContact "Sarah Auburn" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -489825,7 +522615,7 @@ An amendment to this paper has been published and can be accessed via the origin sc:url "https://github.com/modsim/vizardous" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_2885 ; sc:citation , @@ -489843,7 +522633,7 @@ An amendment to this paper has been published and can be accessed via the origin sc:url "https://www.cse.buffalo.edu/DBGROUP/bioinformatics/supplementary/vizstruct/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0084, @@ -489862,7 +522652,7 @@ An amendment to this paper has been published and can be accessed via the origin biotools:primaryContact "W. Gallin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0623, @@ -489881,8 +522671,23 @@ An amendment to this paper has been published and can be accessed via the origin sc:url "http://proto.informatics.jax.org/prototypes/vlad/" ; biotools:primaryContact "Carol J. Bult" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3307 ; + sc:citation , + "pubmed:33465550" ; + sc:description "A Web Resource For Designing Subunit Vaccine Candidates Against Lung Cancer Associated Viruses" ; + sc:featureList edam:operation_2945 ; + sc:name "vlcvirus" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://webs.iiitd.edu.in/raghava/vlcvirus/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -489906,7 +522711,7 @@ An amendment to this paper has been published and can be accessed via the origin "Sylvain Leonard" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3277, edam:topic_3306, edam:topic_3382 ; @@ -489921,7 +522726,7 @@ An important feature of vLUME the ability to perform local analysis on a subregi sc:url "https://github.com/lumevr/vLume_OpenSourcePlugins" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -489938,7 +522743,7 @@ An important feature of vLUME the ability to perform local analysis on a subregi biotools:primaryContact "Prof. Dr. Stefan Kurtz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2269, @@ -489958,7 +522763,7 @@ An important feature of vLUME the ability to perform local analysis on a subregi biotools:primaryContact "Raja H. Ali" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -489974,7 +522779,7 @@ An important feature of vLUME the ability to perform local analysis on a subregi biotools:primaryContact "Antoine Bruguier" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0199, @@ -489997,7 +522802,7 @@ An important feature of vLUME the ability to perform local analysis on a subregi biotools:primaryContact "Sanghyuk Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0157, @@ -490014,7 +522819,7 @@ An important feature of vLUME the ability to perform local analysis on a subregi sc:url "https://sites.google.com/a/codushlaine.com/colm-o-dushlaine/Data" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -490031,7 +522836,7 @@ An important feature of vLUME the ability to perform local analysis on a subregi sc:url "https://virology.uvic.ca/virology-ca-tools/vocs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0622, @@ -490050,7 +522855,7 @@ An important feature of vLUME the ability to perform local analysis on a subregi biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0781, edam:topic_2259 ; @@ -490065,7 +522870,7 @@ An important feature of vLUME the ability to perform local analysis on a subregi biotools:primaryContact "CUBE-AT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0202, edam:topic_2258 ; @@ -490081,8 +522886,27 @@ An important feature of vLUME the ability to perform local analysis on a subregi sc:url "http://voideditor.cs.man.ac.uk/" ; biotools:primaryContact "Lefteris Tatakis" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_3384, + edam:topic_3444 ; + sc:citation , + "pmcid:PMC9171328", + "pubmed:35685943" ; + sc:description "A New Online Pipeline for Whole Brain MRI Analysis." ; + sc:featureList edam:operation_3435, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:name "vol2Brain" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://volbrain.upv.es" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -490100,7 +522924,7 @@ An important feature of vLUME the ability to perform local analysis on a subregi sc:url "http://www.fc.up.pt/PortoBioComp/Software/Volarea/Home.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0203, edam:topic_0622 ; @@ -490116,7 +522940,7 @@ A Shiny App for making Volcano plots.""" ; sc:url "http://goedhart.shinyapps.io/VolcaNoseR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382 ; sc:description "It is the universal solution for 3D analysis of fluorescence microscopy images.  A collection of high performance 3D imaging software products, Volocity lets you turn images into understanding, relate cellular structure to function and deliver quantitative measurements for publication." ; @@ -490128,7 +522952,7 @@ A Shiny App for making Volcano plots.""" ; sc:url "http://www.perkinelmer.co.uk/lab-solutions/resources/docs/BRO_VolocityBrochure_PerkinElmer.pdf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -490148,7 +522972,7 @@ A Shiny App for making Volcano plots.""" ; sc:url "https://github.com/fhaive/VOLTA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382 ; sc:description "Volume Browser created at the Pittsburgh Supercomputing Center (PSC) enables you to view large three dimensional images (datasets) over the internet. You can interact with with the image to view from any angle, or slice through it to see inside. You can also trace and label sections of the image. The PSC Volume Browser is a breathrough in 3D imaging because it allows you to view uncompressed datasets from a desktop computer that wouldn’t have the capability view such data on its own." ; @@ -490160,7 +522984,7 @@ A Shiny App for making Volcano plots.""" ; sc:url "http://www.nrbsc.org/vb/index.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3304, @@ -490180,7 +523004,7 @@ A Shiny App for making Volcano plots.""" ; biotools:primaryContact "Alice J. O'Toole" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, @@ -490197,7 +523021,7 @@ A Shiny App for making Volcano plots.""" ; sc:url "https://www2.informatik.uni-halle.de:8443/VOMBAT/faces/pages/choose.jsp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3168, @@ -490210,7 +523034,7 @@ A Shiny App for making Volcano plots.""" ; sc:url "http://www.omicsbio.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0804, edam:topic_3421, @@ -490227,7 +523051,7 @@ A Shiny App for making Volcano plots.""" ; sc:url "https://github.com/stanleyn/VoPo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0130, edam:topic_0736, @@ -490243,7 +523067,7 @@ VoroCNN is a novel method for local residue-level quality assessment of protein sc:url "https://team.inria.fr/nano-d/software/vorocnn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -490266,7 +523090,7 @@ VoroCNN is a novel method for local residue-level quality assessment of protein sc:url "https://bioinformatics.lt/wtsam/vorocontacts" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0736 ; @@ -490281,7 +523105,7 @@ VoroCNN is a novel method for local residue-level quality assessment of protein sc:url "http://www.bti.vu.lt/en/departments/department-of-bioinformatics/software/voromqa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0081, @@ -490306,7 +523130,7 @@ VoroCNN is a novel method for local residue-level quality assessment of protein sc:url "https://github.com/krother/Voronoia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0209, edam:topic_0602, @@ -490324,7 +523148,7 @@ VoroCNN is a novel method for local residue-level quality assessment of protein sc:url "http://vphylomm.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2814, @@ -490341,8 +523165,32 @@ VoroCNN is a novel method for local residue-level quality assessment of protein sc:softwareHelp ; sc:url "http://www.bioinformatik.uni-frankfurt.de/tools/vplg/index.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0622, + edam:topic_0769, + edam:topic_3673, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC8576923", + "pubmed:34749640" ; + sc:description "A test bench for variant prioritization methods" ; + sc:featureList edam:operation_3225, + edam:operation_3226, + edam:operation_3227 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "VPMBench" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/IDEA-PRIO/VPMBench" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0121, edam:topic_0154, @@ -490359,8 +523207,49 @@ In viruses, posttranslational modifications (PTMs) are essential for their life sc:name "VPTMdb" ; sc:url "http://vptmdb.com:8787/VPTMdb/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3384, + edam:topic_3474 ; + sc:citation , + "pubmed:35727773" ; + sc:description "Conditional Triplet Mixup for Medical Visual Question Answering." ; + sc:featureList edam:operation_0337 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "VQAMix" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/haifangong/VQAMix" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_0621, + edam:topic_3174, + edam:topic_3474, + edam:topic_3697 ; + sc:citation , + "pubmed:35544285" ; + sc:description "vRhyme enables binning of viral genomes from metagenomes." ; + sc:featureList edam:operation_3192, + edam:operation_3198, + edam:operation_3216, + edam:operation_3798 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "vRhyme" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/AnantharamanLab/vRhyme" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_3361, edam:topic_3474 ; @@ -490373,8 +523262,25 @@ visualization charts augmented-reality data-visualization virtual-reality webxr sc:name "VRIA" ; sc:url "https://github.com/vriajs" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0085, + edam:topic_0092 ; + sc:citation ; + sc:description """VRMLGen is a free software package for 3D data visualisation on the web. It supports VRML and LiveGraphics3D formats. The package runs within the R environment for statistical computing and is available for download from CRAN. It is licensed under the terms of GNU GPL version 2 (or later). +VRMLGen can be used to generate 3D line and bar charts, scatter plots with density estimation contour surfaces, visualizations of height maps, parametric functions and 3D object models.""" ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "VRMLGen" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "1.4.9" ; + sc:url "https://ico2s.org/software/vrmlgen.html" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0153, edam:topic_0154, edam:topic_0199, @@ -490394,7 +523300,7 @@ VRmol is an easy-to-use web-based tool capable of visualizing and integratively sc:url "https://VRmol.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -490414,8 +523320,33 @@ VRmol is an easy-to-use web-based tool capable of visualizing and integratively sc:url "https://github.com/menchelab/VRNetzer" ; biotools:primaryContact . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0798, + edam:topic_3068, + edam:topic_3305 ; + sc:citation , + "pmcid:PMC9252795", + "pubmed:35524563" ; + sc:description "Detection of antibiotic resistance-associated mobilome in bacterial pathogens." ; + sc:featureList edam:operation_2422, + edam:operation_3461, + edam:operation_3482 ; + sc:isAccessibleForFree true ; + sc:name "VRprofile2" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://tool2-mml.sjtu.edu.cn/VRprofile" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_2885, edam:topic_3173, @@ -490434,18 +523365,18 @@ vSampler runs significantly faster than existing tools, supports both SNPs and i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3768" ; - sc:name "Clustered expression profiles" ; - sc:sameAs "http://edamontology.org/data_3768" ], + sc:additionalType "http://edamontology.org/data_3768" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Clustered expression profiles" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3932" ; - sc:name "Q-value" ; - sc:sameAs "http://edamontology.org/data_3932" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3932" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Q-value" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web service" ; sc:applicationSubCategory edam:topic_0121, @@ -490467,11 +523398,11 @@ vSampler runs significantly faster than existing tools, supports both SNPs and i "Mac", "Windows" ; sc:softwareHelp ; - sc:url "http://computproteomics.bmb.sdu.dk:8192/app_direct/VSClust/" ; + sc:url "http://computproteomics.bmb.sdu.dk/Apps/VSClust/" ; biotools:primaryContact "Veit Schwämmle" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2275, edam:topic_2814, @@ -490488,7 +523419,7 @@ vSampler runs significantly faster than existing tools, supports both SNPs and i sc:url "http://ub.cbm.uam.es/software/vsdmip/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -490506,18 +523437,15 @@ vSampler runs significantly faster than existing tools, supports both SNPs and i a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0865" ; - sc:name "Sequence similarity score" ; - sc:sameAs "http://edamontology.org/data_0865" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0865" ; + sc:name "Sequence similarity score" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3174 ; @@ -490536,7 +523464,7 @@ vSampler runs significantly faster than existing tools, supports both SNPs and i sc:url "https://github.com/torognes/vsearch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0622, edam:topic_3673, @@ -490551,20 +523479,29 @@ vSampler runs significantly faster than existing tools, supports both SNPs and i sc:name "VSeq-Toolkit" ; sc:url "https://github.com/CompMeth/VSeq-Toolkit" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:citation ; + sc:description "VSL2 is a predictor model that is applicable to disordered regions of any length and can accurately identify the short disordered regions that are often misclassified by other disorder predictors." ; + sc:isAccessibleForFree true ; + sc:name "VSL2" ; + sc:operatingSystem "Linux" ; + sc:url "http://www.ist.temple.edu/disprot/predictorVSL2.php" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2338" ; - sc:name "Ontology identifier" ; - sc:sameAs "http://edamontology.org/data_2338" ] ; + sc:additionalType "http://edamontology.org/data_2338" ; + sc:name "Ontology identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ], + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_3464" ; + sc:name "Ontology data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2353" ; - sc:name "Ontology data" ; - sc:sameAs "http://edamontology.org/data_2353" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2353" ; + sc:encodingFormat "http://edamontology.org/format_2376" ; + sc:name "Ontology data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0219, edam:topic_0621, @@ -490595,7 +523532,7 @@ This user interface is a JavaScript component that can be embedded in web apps w biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -490618,7 +523555,7 @@ This user interface is a JavaScript component that can be embedded in web apps w biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0593, edam:topic_0749, edam:topic_3169, @@ -490637,7 +523574,7 @@ Variance-stabilized signals (VSS) is a signal transformation approach used for e sc:url "https://github.com/faezeh-bayat/Variance-stabilized-units-for-sequencing-based-genomic-signals" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, @@ -490658,7 +523595,7 @@ Variance-stabilized signals (VSS) is a signal transformation approach used for e sc:url "https://github.com/vtman/VSTseed" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -490674,7 +523611,7 @@ Variance-stabilized signals (VSS) is a signal transformation approach used for e sc:url "http://genome.sph.umich.edu/wiki/Vt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3308 ; @@ -490688,7 +523625,7 @@ Variance-stabilized signals (VSS) is a signal transformation approach used for e sc:url "http://www.lstmed.ac.uk/vtbuilder" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3305, edam:topic_3322, edam:topic_3324 ; @@ -490701,8 +523638,31 @@ Repository for the code that simulates disease transmission among individuals."" sc:name "VTES" ; sc:url "https://github.com/sstagg/disease-transmission" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0099, + edam:topic_0781, + edam:topic_3308, + edam:topic_3324, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8728219", + "pubmed:34634807" ; + sc:description "A database for single-cell screening of virus target cells in the animal kingdom." ; + sc:featureList edam:operation_0224, + edam:operation_0314, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:name "VThunter" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://db.cngb.org/VThunter/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0769, @@ -490720,7 +523680,7 @@ Repository for the code that simulates disease transmission among individuals."" sc:url "http://varianttools.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -490742,7 +523702,7 @@ Repository for the code that simulates disease transmission among individuals."" biotools:primaryContact "VJ Carey" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, @@ -490764,7 +523724,7 @@ VTR is a WebTool for contacts alignments between proteins and others macromolecu sc:url "http://bioinfo.dcc.ufmg.br/vtr" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2259, @@ -490787,8 +523747,22 @@ VTR is a WebTool for contacts alignments between proteins and others macromolecu biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Web application" ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene name" ] ; + bsc:output [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_0984" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Molecule name" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Gene name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web API", + "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2640, edam:topic_3053 ; @@ -490803,18 +523777,21 @@ VTR is a WebTool for contacts alignments between proteins and others macromolecu sc:operatingSystem "Linux", "Mac", "Windows" ; + sc:provider "BU_CNIO", + "CNIO" ; sc:softwareHelp ; + sc:softwareVersion "v1.0.0b" ; sc:url "http://www.vulcanspot.org/" ; - biotools:primaryContact "Dr. Fátima Al-Shahrour" . + biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Improved long-read mapping and structural variant calling via dual-mode alignment" ; sc:name "Vulcan" ; sc:url "https://gitlab.com/treangenlab/vulcan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168, @@ -490830,7 +523807,7 @@ VTR is a WebTool for contacts alignments between proteins and others macromolecu sc:url "http://compbio.uthscsa.edu/W-ChIPeaks/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3169, @@ -490846,7 +523823,7 @@ VTR is a WebTool for contacts alignments between proteins and others macromolecu sc:url "http://compbio.uthscsa.edu/ChIPMotifs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3293, @@ -490865,7 +523842,7 @@ VTR is a WebTool for contacts alignments between proteins and others macromolecu biotools:primaryContact "Minh BQ" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0622 ; @@ -490880,7 +523857,7 @@ VTR is a WebTool for contacts alignments between proteins and others macromolecu sc:url "https://github.com/bioinfologics/w2rap-contigger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0097, @@ -490905,7 +523882,7 @@ VTR is a WebTool for contacts alignments between proteins and others macromolecu "Xiang-Jun Lu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_3168, @@ -490922,7 +523899,7 @@ VTR is a WebTool for contacts alignments between proteins and others macromolecu biotools:primaryContact "Mingyang Cai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -490945,7 +523922,7 @@ VTR is a WebTool for contacts alignments between proteins and others macromolecu sc:url "https://bqflab.github.io" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -490964,7 +523941,7 @@ VTR is a WebTool for contacts alignments between proteins and others macromolecu "Roman Schefzik" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -490981,7 +523958,7 @@ VTR is a WebTool for contacts alignments between proteins and others macromolecu sc:url "http://nuel.perso.math.cnrs.fr/#software" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -491001,7 +523978,7 @@ VTR is a WebTool for contacts alignments between proteins and others macromolecu biotools:primaryContact "Martin Kollmar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749, edam:topic_0780, @@ -491022,18 +523999,18 @@ VTR is a WebTool for contacts alignments between proteins and others macromolecu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ], + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "RNA sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1961" ; + sc:name "Sequence alignment" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_1961" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -491050,8 +524027,29 @@ VTR is a WebTool for contacts alignments between proteins and others macromolecu sc:url "http://genome.ku.dk/resources/war/" ; biotools:primaryContact "Stinus Lindgreen" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0634, + edam:topic_0749, + edam:topic_3577 ; + sc:citation , + "pmcid:PMC9321802", + "pubmed:35887531" ; + sc:description "Wet AMD Risk-Evaluation Tool as a Clinical Decision-Support System Integrating Genetic and Non-Genetic Factors." ; + sc:featureList edam:operation_3196, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "WARE" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/Andreater/WARE-AMD-Tool" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2814, edam:topic_3172, @@ -491068,18 +524066,18 @@ VTR is a WebTool for contacts alignments between proteins and others macromolecu a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1772" ; - sc:name "Score" ; - sc:sameAs "http://edamontology.org/data_1772" ], + sc:additionalType "http://edamontology.org/data_1772" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Score" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123 ; sc:citation ; @@ -491094,7 +524092,7 @@ In the corresponding publication we showed that WarPP is able to place 80% of wa sc:url "http://proteinsplus.zbh.uni-hamburg.de/#warpp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0610, @@ -491115,7 +524113,7 @@ In the corresponding publication we showed that WarPP is able to place 80% of wa biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -491131,8 +524129,28 @@ In the corresponding publication we showed that WarPP is able to place 80% of wa sc:softwareHelp ; sc:url "http://wasabiapp.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_3168, + edam:topic_3173, + edam:topic_3382, + edam:topic_3500 ; + sc:citation , + "pubmed:35412637" ; + sc:description "WashU Epigenome Browser is a web-based genomic data exploration tool that provides visualization, integration, and analysis of epigenomic datasets." ; + sc:featureList edam:operation_3208 ; + sc:isAccessibleForFree true ; + sc:license "Freeware" ; + sc:name "WashU Epigenome Browser" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/lidaof/eg-react" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0632, edam:topic_2885, @@ -491150,7 +524168,7 @@ In the corresponding publication we showed that WarPP is able to place 80% of wa biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0769, @@ -491175,7 +524193,7 @@ In the corresponding publication we showed that WarPP is able to place 80% of wa biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0654, edam:topic_0736, @@ -491190,16 +524208,39 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character sc:name "WASP" ; sc:url "https://github.com/WereszczynskiGroup/WASP" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Workflow" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2830, + edam:topic_3170, + edam:topic_3308, + edam:topic_3512 ; + sc:citation , + "pubmed:35674381" ; + sc:description "Workflow for the Association of T-cell receptors from 3' single-cell RNA-seq" ; + sc:featureList edam:operation_0337, + edam:operation_3695, + edam:operation_3933 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "WAT3R" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/mainciburu/WAT3R" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1537" ; - sc:name "Protein structure report" ; - sc:sameAs "http://edamontology.org/data_1537" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1537" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Protein structure report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_1317 ; sc:citation , @@ -491216,7 +524257,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character biotools:primaryContact "JIri Cerny" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Workflow management system for the automated and distributed analysis of large-scale experimental data" ; sc:name "Watchdog" ; sc:softwareVersion "1.2.5-2.0.6" ; @@ -491224,22 +524265,18 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -491270,23 +524307,22 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "EMBOSS", - "Web Production" ; - sc:citation ; + "Job Dispatcher" ; + sc:citation , + ; sc:description "Smith-Waterman local pairwise alignment of sequences." ; sc:featureList edam:operation_0491, edam:operation_0495 ; - sc:name "water (EBI)" ; + sc:name "Water (EBI)" ; sc:operatingSystem "Linux", "Mac", "Windows" ; @@ -491295,10 +524331,10 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character ; sc:softwareVersion "1" ; sc:url "http://www.ebi.ac.uk/Tools/psa/emboss_water/" ; - biotools:primaryContact "Web Production" . + biotools:primaryContact "Job Dispatcher Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -491313,7 +524349,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character sc:url "http://www.ebi.ac.uk/Tools/webservices/services/psa/emboss_water_rest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -491337,7 +524373,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_2269, edam:topic_3070, @@ -491357,7 +524393,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character biotools:primaryContact "Pierre Mégevand" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_1317, @@ -491374,14 +524410,14 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "RNA sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3495" ; - sc:name "RNA sequence" ; - sc:sameAs "http://edamontology.org/data_3495" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3495" ; + sc:encodingFormat "http://edamontology.org/format_2572" ; + sc:name "RNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0659, @@ -491404,7 +524440,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Library" ; sc:applicationSubCategory edam:topic_0099, @@ -491423,7 +524459,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character biotools:primaryContact "Li-Fang Chu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3382, @@ -491440,7 +524476,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character sc:url "https://github.com/CVI-SZU/WaveCNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2828, edam:topic_3365 ; @@ -491459,7 +524495,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character biotools:primaryContact "Alexei Buzmakov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3169, @@ -491475,7 +524511,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character sc:url "https://github.com/heejungshim/WaveQTL" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3053, @@ -491491,7 +524527,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character sc:url "http://bioinformatics.fccc.edu/software/OpenSource/waveread/index.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_3169, edam:topic_3176, @@ -491508,7 +524544,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character sc:url "https://rdrr.io/rforge/WaveSeqR/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -491531,7 +524567,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character biotools:primaryContact "Kristof De Beuf" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621, @@ -491547,7 +524583,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character sc:url "http://wavi.bioinfo.cnio.es" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0154, @@ -491568,7 +524604,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character biotools:primaryContact "Webmaster" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, edam:topic_3407 ; @@ -491581,8 +524617,31 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character sc:name "way2drug" ; sc:url "http://way2drug.com/mg2/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2885, + edam:topic_3056, + edam:topic_3337, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC9135724", + "pubmed:35618720" ; + sc:description "The Westlake BioBank for Chinese (WBBC) cohort is a population-based prospective study with its major purpose to better understand the effect of genetic and environmental factors on growth and development from youngster to elderly." ; + sc:featureList edam:operation_0484, + edam:operation_3196, + edam:operation_3557, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:name "WBBC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://wbbc.westlake.edu.cn/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3384, edam:topic_3474 ; @@ -491594,7 +524653,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character sc:url "https://github.com/hathawayxxh/WCE-AGDN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_3053 ; @@ -491609,7 +524668,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character sc:url "http://www.hpcf.upr.edu/~humberto/software/BPE/wclique/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0089, @@ -491625,7 +524684,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character sc:url "https://wcolite.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0736, @@ -491648,7 +524707,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character biotools:primaryContact "Byungwook Lee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0625, edam:topic_3384, edam:topic_3444, @@ -491665,7 +524724,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character sc:url "https://github.com/yangyuhui0129/wdcor" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -491682,7 +524741,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0634, @@ -491700,7 +524759,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character biotools:primaryContact "Qinghua Cui" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0196, @@ -491714,7 +524773,7 @@ Writhe Analysis Software Package (WASP) WASP is a software package for character sc:url "http://code.google.com/p/weav-assembler/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0605 ; @@ -491736,7 +524795,7 @@ documents.""" ; biotools:primaryContact "Seth Falcon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0623, edam:topic_3314, @@ -491753,22 +524812,20 @@ documents.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Text data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1394" ; - sc:name "Alignment score or penalty" ; - sc:sameAs "http://edamontology.org/data_1394" ], + sc:additionalType "http://edamontology.org/data_1394" ; + sc:name "Alignment score or penalty" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2526" ; - sc:name "Text data" ; - sc:sameAs "http://edamontology.org/data_2526" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2526" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Text data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0082, edam:topic_0097, @@ -491786,8 +524843,32 @@ documents.""" ; sc:url "http://beagle.bio.uniroma2.it/index.php" ; biotools:primaryContact "Eugenio Mattei" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3494" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "DNA sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0160, + edam:topic_0166, + edam:topic_3169 ; + sc:citation , + "pmcid:PMC9408884", + "pubmed:36012247" ; + sc:description "Web-MCOT Server for Motif Co-Occurrence Search in ChIP-Seq Data." ; + sc:featureList edam:operation_0238, + edam:operation_0239, + edam:operation_0445 ; + sc:isAccessibleForFree true ; + sc:name "Web-MCOT" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://webmcot.sysbio.cytogen.ru/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application", "Web service" ; @@ -491813,7 +524894,7 @@ documents.""" ; "Nicolas Kersten" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0097, edam:topic_0203, @@ -491829,7 +524910,7 @@ documents.""" ; sc:url "http://www.gsa.buffalo.edu/dna/dk/WEBTHERMODYN/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0166, edam:topic_3382 ; @@ -491845,7 +524926,7 @@ documents.""" ; sc:url "http://web3dmol.duapp.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API", "Web application" ; sc:applicationSubCategory edam:topic_3384 ; @@ -491862,7 +524943,7 @@ documents.""" ; sc:url "https://webrtc.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -491885,7 +524966,7 @@ documents.""" ; "Prof. Olson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0654, @@ -491905,7 +524986,7 @@ documents.""" ; biotools:primaryContact "Giulio Pavesi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -491920,7 +525001,7 @@ documents.""" ; biotools:primaryContact "Suzanna E Lewis" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0623, edam:topic_3512 ; @@ -491943,7 +525024,7 @@ documents.""" ; biotools:primaryContact "Augustus-web team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -491964,7 +525045,7 @@ documents.""" ; biotools:primaryContact "Colin A. Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3334, edam:topic_3407, @@ -491983,8 +525064,33 @@ documents.""" ; sc:url "http://www.webcmd.org/#!/" ; biotools:primaryContact "Support" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_0634, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pubmed:35610053" ; + sc:description "WebCSEA (Web-based Cell-type Specific Enrichment Analysis of Genes) provides a gene set query among a systematic collection of tissue-cell-type expression signatures." ; + sc:featureList edam:operation_0314, + edam:operation_0337, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "WebCSEA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://bioinfo.uth.edu/webcsea/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0082, @@ -492003,7 +525109,7 @@ documents.""" ; sc:url "http://feature.stanford.edu/webfeature/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0196, edam:topic_0621, @@ -492021,7 +525127,7 @@ documents.""" ; sc:url "http://www.webflags.se/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0082, @@ -492044,7 +525150,7 @@ documents.""" ; biotools:primaryContact "Contact form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -492072,7 +525178,7 @@ documents.""" ; "Zhiao Shi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, @@ -492093,7 +525199,7 @@ documents.""" ; biotools:primaryContact "Valakunja Nagaraja" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3053, @@ -492114,7 +525220,7 @@ documents.""" ; biotools:primaryContact "Liang Sun" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -492131,7 +525237,7 @@ documents.""" ; sc:url "http://www.bioinfolab.org/software/webgmap" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web API" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0780, @@ -492149,7 +525255,7 @@ documents.""" ; biotools:primaryContact "Lakshmi Attigala" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602 ; @@ -492166,18 +525272,18 @@ documents.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3808" ; - sc:name "EM Micrograph" ; - sc:sameAs "http://edamontology.org/data_3808" ] ; + sc:additionalType "http://edamontology.org/data_3808" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "EM Micrograph" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0611, @@ -492203,7 +525309,7 @@ Fly along neurons or create segmentations, all from your browser.""" ; sc:url "https://webknossos.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0091, @@ -492221,7 +525327,7 @@ Fly along neurons or create segmentations, all from your browser.""" ; biotools:primaryContact "WebLab Team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -492239,7 +525345,7 @@ Fly along neurons or create segmentations, all from your browser.""" ; sc:url "http://weblogo.berkeley.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -492259,8 +525365,30 @@ Fly along neurons or create segmentations, all from your browser.""" ; ; sc:url "http://weblogo.threeplusone.com" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool", + "Web application" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0602, + edam:topic_2269 ; + sc:citation , + "pmcid:PMC8651056", + "pubmed:34888352" ; + sc:description "A Web Interface for Simulating Boolean Models Stochastically." ; + sc:featureList edam:operation_0244, + edam:operation_2426, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "LGPL-3.0" ; + sc:name "WebMaBoSS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://webmaboss.vincent-noel.fr" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0157, @@ -492278,7 +525406,7 @@ Fly along neurons or create segmentations, all from your browser.""" ; biotools:primaryContact "Can Alkan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2229, edam:topic_3308, edam:topic_3372 ; @@ -492293,18 +525421,17 @@ Shiny app to run MCP-counter and mMCP-counter.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3546" ; - sc:name "Image metadata" ; - sc:sameAs "http://edamontology.org/data_3546" ] ; + sc:additionalType "http://edamontology.org/data_3546" ; + sc:encodingFormat "http://edamontology.org/format_3591" ; + sc:name "Image metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:name "Image" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3382 ; @@ -492325,7 +525452,7 @@ Shiny app to run MCP-counter and mMCP-counter.""" ; biotools:primaryContact "Johan Lundin" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, @@ -492350,34 +525477,34 @@ Shiny app to run MCP-counter and mMCP-counter.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1460" ; - sc:name "Protein structure" ; - sc:sameAs "http://edamontology.org/data_1460" ], + sc:additionalType "http://edamontology.org/data_0886" ; + sc:encodingFormat "http://edamontology.org/format_2200" ; + sc:name "Structure alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0886" ; - sc:name "Structure alignment" ; - sc:sameAs "http://edamontology.org/data_0886" ] ; + sc:additionalType "http://edamontology.org/data_1460" ; + sc:encodingFormat "http://edamontology.org/format_1476" ; + sc:name "Protein structure" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_0889" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Structural profile" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0889" ; - sc:name "Structural profile" ; - sc:sameAs "http://edamontology.org/data_0889" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1354" ; - sc:name "Sequence profile" ; - sc:sameAs "http://edamontology.org/data_1354" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1354" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0736, @@ -492411,7 +525538,7 @@ Shiny app to run MCP-counter and mMCP-counter.""" ; sc:url "http://apps.cbu.uib.no/webnma" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0123, edam:topic_0176, @@ -492429,7 +525556,7 @@ Shiny app to run MCP-counter and mMCP-counter.""" ; sc:url "http://apps.cbu.uib.no/webnma3/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -492454,14 +525581,13 @@ Shiny app to run MCP-counter and mMCP-counter.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0863" ; + sc:name "Sequence alignment" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Ari Loytynoja", @@ -492482,7 +525608,7 @@ Shiny app to run MCP-counter and mMCP-counter.""" ; biotools:primaryContact "Ari Loytynoja" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -492503,7 +525629,7 @@ Shiny app to run MCP-counter and mMCP-counter.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3168 ; @@ -492519,7 +525645,7 @@ Shiny app to run MCP-counter and mMCP-counter.""" ; sc:url "https://updeplasrv1.epfl.ch/prinses/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -492541,7 +525667,7 @@ Shiny app to run MCP-counter and mMCP-counter.""" ; biotools:primaryContact "Dmitry Grigorovich" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0130, edam:topic_0154, @@ -492561,7 +525687,7 @@ webPSN is a free web server for high throughput investigation of allosterism in sc:url "http://webpsn.hpc.unimore.it" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3382 ; @@ -492575,7 +525701,7 @@ webPSN is a free web server for high throughput investigation of allosterism in biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0654, edam:topic_2885, @@ -492591,7 +525717,7 @@ webPSN is a free web server for high throughput investigation of allosterism in sc:url "http://wsmartins.net/websat/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0621, @@ -492615,8 +525741,39 @@ webPSN is a free web server for high throughput investigation of allosterism in sc:url "http://www.webscipio.org" ; biotools:primaryContact "Dr. Martin Kollmar" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2299" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Gene name" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_3112" ; + sc:encodingFormat "http://edamontology.org/format_3916" ; + sc:name "Gene expression matrix" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2892" ; + sc:name "Cell type name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0769, + edam:topic_2229, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pubmed:35604082" ; + sc:description "An interactive web application for single-cell RNA-sequencing data and spatial transcriptomic data integration." ; + sc:featureList edam:operation_0314, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:name "webSCST" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.webscst.com" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0176, @@ -492635,7 +525792,7 @@ webPSN is a free web server for high throughput investigation of allosterism in biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0160, @@ -492651,8 +525808,55 @@ webPSN is a free web server for high throughput investigation of allosterism in sc:name "WebTraceMiner" ; sc:url "http://www.conifergdb.org/software/wtm1.2/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0634, + edam:topic_0769, + edam:topic_3308, + edam:topic_3517 ; + sc:citation , + "pmcid:PMC8728162", + "pubmed:34669946" ; + sc:description "The webTWAS integrates large number of GWAS summary level data for disease, and this number will be constantly increasing according to our timely curation. The webTWAS calculates the causal genes using single tissue expression imputation (MetaXcan and FUSION) or cross-tissue expression imputation (UTMOST) methods. Users can compare causal relations on gene-level and trait-level across studies of distinct sample size or population. In addition, users can upload their own GWAS summary statistic data and select the model to perform the customed TWAS analysis. Currently, we provide six models and the number of models will also be constantly increasing according to the development of TWAS research. The objective of this database is to ensure that its convenience and precision for researchers to select and prioritize causal genes for further study. In addition, our web could popularize TWAS in analysis by letting users easily applying TWAS tools online." ; + sc:featureList edam:operation_3196, + edam:operation_3501, + edam:operation_3557, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:name "webTWAS" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://www.webtwas.net" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0634, + edam:topic_0780, + edam:topic_2229, + edam:topic_3957 ; + sc:citation , + "pmcid:PMC9164323", + "pubmed:35658913" ; + sc:description "A host-pathogen interactome database for deciphering crucial molecular networks of wheat-common bunt cross-talk mechanisms." ; + sc:featureList edam:operation_2489, + edam:operation_2492, + edam:operation_3925 ; + sc:isAccessibleForFree true ; + sc:name "WeCoNET" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinfo.usu.edu/weconet/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -492670,7 +525874,7 @@ webPSN is a free web server for high throughput investigation of allosterism in biotools:primaryContact "rasool alturfi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170, @@ -492690,14 +525894,14 @@ webPSN is a free web server for high throughput investigation of allosterism in a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation ; @@ -492716,14 +525920,12 @@ webPSN is a free web server for high throughput investigation of allosterism in a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2070" ; - sc:name "Sequence motif (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_2070" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2070" ; + sc:name "Sequence motif (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160 ; sc:citation ; @@ -492741,7 +525943,7 @@ webPSN is a free web server for high throughput investigation of allosterism in "Giulio Pavesi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation "pubmed:26582928" ; @@ -492756,7 +525958,7 @@ webPSN is a free web server for high throughput investigation of allosterism in sc:url "http://weget.cmbi.umcn.nl/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089 ; sc:citation "pubmed:16845012" ; @@ -492774,7 +525976,7 @@ webPSN is a free web server for high throughput investigation of allosterism in biotools:primaryContact "WEGO Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0089, edam:topic_1775 ; @@ -492787,7 +525989,7 @@ webPSN is a free web server for high throughput investigation of allosterism in sc:url "https://gitlab.com/mreijnders/Wei2GO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0084, @@ -492814,7 +526016,7 @@ webPSN is a free web server for high throughput investigation of allosterism in "W. Bruno" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2269 ; sc:citation , @@ -492831,7 +526033,7 @@ webPSN is a free web server for high throughput investigation of allosterism in biotools:primaryContact "Douglas Brubaker" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -492847,18 +526049,29 @@ webPSN is a free web server for high throughput investigation of allosterism in sc:softwareHelp ; sc:url "https://www.compgen.pitt.edu/fdr/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3399, - edam:topic_3418, - edam:topic_3419 ; - sc:citation , - "pubmed:31368378" ; - sc:description "> HOMEPAGE MISSING! | > CORRECT NAME OF TOOL COULD ALSO BE 'well-being adolescents spina bifida', 'hindrances well-being adolescents spina bifida', 'adolescents spina bifida myelomeningocele', 'adolescents spina bifida' | South African adolescents living with spina bifida | Background: Spina bifida myelomeningocele is a major cause of disability among adolescents. However, little research is available in low-income nations such as South Africa. Investigating the contributors and hindrances to well-being in adolescents with spina bifida myelomeningocele may yield novel insights. In this study we included both adolescents and their primary caregivers to examine their perspectives on caring for and facilitating improvements in the life of the adolescents living with spina bifida myelomeningocele" ; - sc:name "well-being adolescents spina bifida myelomeningocele" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31368378" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_3315, + edam:topic_3473, + edam:topic_3474, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC7702535" ; + sc:description "Weka is a collection of machine learning algorithms for data mining tasks. It contains tools for data preparation, classification, regression, clustering, association rules mining, and visualization." ; + sc:featureList edam:operation_2426, + edam:operation_3432, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:name "Weka" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareVersion "3" ; + sc:url "https://www.cs.waikato.ac.nz/ml/weka/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_2840 ; @@ -492875,7 +526088,7 @@ Exposure to hydraulic fracturing fluid in drinking water increases the risk of m sc:url "http://WellExplorer.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3519, edam:topic_3523, @@ -492896,7 +526109,7 @@ Exposure to hydraulic fracturing fluid in drinking water increases the risk of m biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3170, @@ -492911,7 +526124,7 @@ Exposure to hydraulic fracturing fluid in drinking water increases the risk of m sc:url "http://www-rcf.usc.edu/~liangche/software.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3295, edam:topic_3399, edam:topic_3474 ; @@ -492927,7 +526140,7 @@ Exposure to hydraulic fracturing fluid in drinking water increases the risk of m sc:url "https://github.com/PfeiferLabTue/wenda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0593, edam:topic_1317 ; @@ -492945,7 +526158,7 @@ Exposure to hydraulic fracturing fluid in drinking water increases the risk of m sc:url "http://www.wenmr.eu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0176 ; sc:citation ; @@ -492961,14 +526174,14 @@ Exposure to hydraulic fracturing fluid in drinking water increases the risk of m a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid features" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1276" ; - sc:name "Nucleic acid features" ; - sc:sameAs "http://edamontology.org/data_1276" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1276" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Nucleic acid features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3168 ; sc:citation ; @@ -492986,7 +526199,7 @@ Exposure to hydraulic fracturing fluid in drinking water increases the risk of m biotools:primaryContact "Tiziana Castrignanò" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0176, edam:topic_2269, edam:topic_3332 ; @@ -493006,7 +526219,7 @@ The goal of the architecture is that it should be highly modular to allow extens sc:url "http://adicksonlab.github.io/wepy" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0082 ; sc:citation ; @@ -493020,7 +526233,7 @@ The goal of the architecture is that it should be highly modular to allow extens sc:url "http://pipe.scs.fsu.edu/wesa/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, edam:topic_3337, @@ -493038,7 +526251,7 @@ WEScall is a genotype calling pipeline for whole exome sequencing (WES) data. WE sc:url "https://github.com/dwuab/WEScall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -493058,7 +526271,7 @@ WEScall is a genotype calling pipeline for whole exome sequencing (WES) data. WE biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3168 ; sc:citation , @@ -493075,7 +526288,7 @@ homologous regions between the sequences to accelerate the alignment process. As sc:url "https://github.com/smarco/WFA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0607, @@ -493093,16 +526306,16 @@ homologous regions between the sequences to accelerate the alignment process. As biotools:primaryContact "Marco Enrico Piras" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0769, edam:topic_3295, edam:topic_3673, edam:topic_3674 ; - sc:citation ; - sc:description """an end-to-end analysis pipeline for whole genome bisulfite sequencing data. - -wg-blimp (Whole Genome BisuLfIte sequencing Methylation analysis Pipeline) can be utilised to analyse WGBS data. It performs alignment, qc, methylation calling, DMR calling, segmentation and annotation using a multitude of tools. First time using wg-blimp? We recommend having a look at our step-by-step guide""" ; + sc:citation , + "pmcid:PMC7195798", + "pubmed:32357829" ; + sc:description "wg-blimp (Whole Genome BisuLfIte sequencing Methylation analysis Pipeline) can be utilised to analyse WGBS data. It performs alignment, qc, methylation calling, DMR calling, segmentation and annotation using a multitude of tools. First time using wg-blimp? We recommend having a look at our step-by-step guide" ; sc:featureList edam:operation_3186, edam:operation_3206, edam:operation_3218 ; @@ -493111,7 +526324,7 @@ wg-blimp (Whole Genome BisuLfIte sequencing Methylation analysis Pipeline) can b sc:url "https://github.com/MarWoes/wg-blimp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0196, @@ -493129,7 +526342,7 @@ wg-blimp (Whole Genome BisuLfIte sequencing Methylation analysis Pipeline) can b sc:url "https://github.com/redsnic/WGA-LP" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -493146,7 +526359,7 @@ wg-blimp (Whole Genome BisuLfIte sequencing Methylation analysis Pipeline) can b sc:url "http://igm.cumc.columbia.edu/WGAViewer/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Suite" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3168, @@ -493161,7 +526374,7 @@ wg-blimp (Whole Genome BisuLfIte sequencing Methylation analysis Pipeline) can b sc:url "http://www.wgbssuite.org.uk/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203 ; sc:citation , @@ -493176,7 +526389,7 @@ wg-blimp (Whole Genome BisuLfIte sequencing Methylation analysis Pipeline) can b sc:url "https://cran.r-project.org/web/packages/WGCNA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0769, edam:topic_0780 ; @@ -493200,7 +526413,7 @@ Python package and command line interface (CLI) for the analysis of whole-genome biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3175, @@ -493222,7 +526435,7 @@ Python package and command line interface (CLI) for the analysis of whole-genome "Zhenxiang Xi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -493241,7 +526454,7 @@ Python package and command line interface (CLI) for the analysis of whole-genome biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0203, edam:topic_0622, @@ -493257,8 +526470,31 @@ WgLink is a novel tool using regularized regression to stitch together regional sc:name "WgLink" ; sc:url "https://github.com/theLongLab/wglink" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Script" ; + sc:applicationSubCategory edam:topic_0154, + edam:topic_2275, + edam:topic_3373, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9205061", + "pubmed:35715739" ; + sc:description "Sequence-based drug-target affinity prediction using weighted graph neural networks." ; + sc:featureList edam:operation_0272, + edam:operation_0474, + edam:operation_3092, + edam:operation_3938 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "WGNN-DTA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/595693085/WGNN-DTA" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091 ; sc:citation ; @@ -493273,7 +526509,7 @@ WgLink is a novel tool using regularized regression to stitch together regional biotools:primaryContact "Björn Nystedt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description """Wgsim is a small tool for simulating sequence reads from a reference genome. It is able to simulate diploid genomes with SNPs and insertion/deletion (INDEL) polymorphisms, and simulate reads with uniform substitution sequencing errors. @@ -493288,7 +526524,7 @@ that comes with the package.""" ; sc:url "https://github.com/lh3/wgsim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -493302,7 +526538,7 @@ that comes with the package.""" ; biotools:primaryContact "Yinan Li" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -493322,7 +526558,7 @@ that comes with the package.""" ; sc:url "http://zeeev.github.io/wham/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3517 ; sc:description "Designed for the calculation and association testing of stretches of homozygosity in genome-wide association data, as well as calculation of the intergrated haplotype score (iHS). Note that this tool is currently unpublished, and many of the website links are not fully updated." ; @@ -493335,7 +526571,7 @@ that comes with the package.""" ; sc:url "http://coruscant.itmat.upenn.edu/whamm/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0632, edam:topic_3474 ; @@ -493346,7 +526582,7 @@ that comes with the package.""" ; sc:url "https://pair-code.github.io/what-if-tool/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2814 ; @@ -493361,7 +526597,7 @@ that comes with the package.""" ; sc:url "http://swift.cmbi.ru.nl/gv/whatcheck/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -493383,7 +526619,7 @@ that comes with the package.""" ; biotools:primaryContact "Gert Vriend" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2275 ; sc:citation ; @@ -493397,16 +526633,20 @@ that comes with the package.""" ; sc:softwareVersion "1" ; sc:url "http://swift.cmbi.ru.nl/whatif/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:description "Web-based gene enrichment tools based on a huge underlying database of transcriptomic, proteomic (and other-omic) studies." ; + sc:name "Whatismygene" ; + sc:url "https://whatismygene.com" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:name "Report" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0972" ; - sc:name "Text mining report" ; - sc:sameAs "http://edamontology.org/data_0972" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0972" ; + sc:name "Text mining report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3473 ; @@ -493430,7 +526670,7 @@ that comes with the package.""" ; biotools:primaryContact "Jee-Hyub Kim" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0121, edam:topic_0199 ; @@ -493447,7 +526687,7 @@ WhatsGNU utilizes the natural variation in public databases to rank protein sequ sc:url "https://github.com/ahmedmagds/WhatsGNU" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_2885 ; @@ -493464,8 +526704,32 @@ WhatsGNU utilizes the natural variation in public databases to rank protein sequ sc:softwareVersion "0.13" ; sc:url "http://whatshap.readthedocs.io" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0622, + edam:topic_2269, + edam:topic_3517, + edam:topic_3676 ; + sc:citation , + "pubmed:34849577" ; + sc:description "Focused goodness of fit tests for gene set analyses." ; + sc:featureList edam:operation_2436, + edam:operation_3196, + edam:operation_3435, + edam:operation_3659, + edam:operation_3891 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "wHC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/mqzhanglab/wHC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation ; @@ -493481,7 +526745,7 @@ WhatsGNU utilizes the natural variation in public databases to rank protein sequ biotools:primaryContact "Australia" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -493497,8 +526761,43 @@ WhatsGNU utilizes the natural variation in public databases to rank protein sequ sc:softwareHelp ; sc:url "http://wge.ndsu.nodak.edu/wheatzapper/" . + a sc:SoftwareApplication ; + bsc:input [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1176" ; + sc:name "GO concept ID" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2757" ; + sc:name "Pfam domain name" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ], + [ a bsct:FormalParameter ; + sc:additionalType "http://edamontology.org/data_1893" ; + sc:name "Locus ID" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_0659, + edam:topic_0749, + edam:topic_3173, + edam:topic_3308 ; + sc:citation , + "pubmed:35660007" ; + sc:description "A database for comparative co-expression networks analysis of allohexaploid wheat and its progenitors." ; + sc:featureList edam:operation_0314, + edam:operation_2436, + edam:operation_3463, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:name "WheatCENet" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://bioinformatics.cau.edu.cn/WheatCENet" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0102, @@ -493522,7 +526821,7 @@ WhatsGNU utilizes the natural variation in public databases to rank protein sequ sc:url "http://www.wheatqtldb.net" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2815, edam:topic_3304 ; sc:citation , @@ -493536,7 +526835,7 @@ Feedback control theory has been extensively implemented to theoretically model sc:url "https://github.com/Doyle-Lab/WheelCon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0154, @@ -493553,7 +526852,7 @@ Feedback control theory has been extensively implemented to theoretically model sc:url "http://www.rothamsted.ac.uk/whets/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_3336, @@ -493571,10 +526870,9 @@ Feedback control theory has been extensively implemented to theoretically model a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3077 ; sc:citation , @@ -493604,7 +526902,7 @@ Feedback control theory has been extensively implemented to theoretically model sc:url "http://emboss.open-bio.org/rel/rel6/apps/whichdb.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3053, edam:topic_3500 ; @@ -493623,7 +526921,7 @@ Feedback control theory has been extensively implemented to theoretically model "Florentino Fernández Riverola" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0659, @@ -493642,7 +526940,7 @@ Feedback control theory has been extensively implemented to theoretically model biotools:primaryContact "Kunqi Chen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0091, @@ -493658,7 +526956,7 @@ Feedback control theory has been extensively implemented to theoretically model sc:url "http://whiteboard-class.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0634, @@ -493671,18 +526969,48 @@ Feedback control theory has been extensively implemented to theoretically model sc:url "https://covid19.who.int" ; biotools:primaryContact "Muhammad Irfan" . - a sc:SoftwareApplication ; - sc:description "As a leading provider of NGS services, CD Genomics is providing an integrated portfolio of methylation sequencing services. Whole genome bisulfite sequencing (WGBS) is an effective and reliable strategy to identify individually methylated cytosines on a genome-wide scale. With over 10 years of experience and the state-of-the-art next-generation sequencing platforms, we can totally meet your project requirements and budgets in the exploration of methylome." ; - sc:name "Whole Genome Bisulfite Sequencing (WGBS)" ; - sc:url "https://www.cd-genomics.com/Whole-Genome-Bisulfite-Sequencing.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2815, + edam:topic_3300, + edam:topic_3444 ; + sc:citation , + "pubmed:35998568" ; + sc:description "WHOle-brain CArdiac signal REgression from highly accelerated simultaneous multi-Slice fMRI acquisitions." ; + sc:featureList edam:operation_2422, + edam:operation_3443, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "WHOCARES" ; + sc:operatingSystem "Linux" ; + sc:url "https://github.com/gferrazzi/WHOCARES" . - a sc:SoftwareApplication ; - sc:description "CD Genomics provides whole-genome SNP genotyping for the overview of the entire genome by using both microarray technologies and high-throughput next-generation sequencing (NGS), enabling genome-wide discoveries and screening of the SNP loci. Genome-wide association studies with SNP markers are expected to allow identification of genetic variation that underlie complex disorders." ; - sc:name "Whole Genome SNP Genotyping" ; - sc:url "https://www.cd-genomics.com/Whole-Genome-SNP-Genotyping.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0114, + edam:topic_0621, + edam:topic_0780, + edam:topic_3174, + edam:topic_3500 ; + sc:citation ; + sc:description "Distinguishing eukaryotic and prokaryotic contigs in metagenomes based on gene structure." ; + sc:featureList edam:operation_0310, + edam:operation_2454, + edam:operation_3460, + edam:operation_3472 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "Whokaryote" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://git.wageningenur.nl/lotte.pronk/whokaryote" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_3172, edam:topic_3174, @@ -493698,7 +527026,7 @@ Feedback control theory has been extensively implemented to theoretically model sc:url "https://xmlin.shinyapps.io/whondrs/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation , @@ -493718,7 +527046,7 @@ Feedback control theory has been extensively implemented to theoretically model biotools:primaryContact "Ulrich Wittelsbuerger" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0610, edam:topic_3382 ; sc:citation ; @@ -493735,7 +527063,7 @@ WIAD presents a dynamic interface for a wide range of scientists in archeology, sc:url "http://wiad.science" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0605, @@ -493757,7 +527085,7 @@ Tcl/Tk commands, because the widget functionality is encapsulated in S4 classes biotools:primaryContact "Jianhua Zhang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654 ; sc:citation ; @@ -493772,14 +527100,14 @@ Tcl/Tk commands, because the widget functionality is encapsulated in S4 classes a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3710" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3652" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -493795,14 +527123,14 @@ Tcl/Tk commands, because the widget functionality is encapsulated in S4 classes a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3496" ; - sc:name "RNA sequence (raw)" ; - sc:sameAs "http://edamontology.org/data_3496" ] ; + sc:additionalType "http://edamontology.org/data_3496" ; + sc:encodingFormat "http://edamontology.org/format_3006" ; + sc:name "RNA sequence (raw)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2166" ; - sc:name "Sequence composition plot" ; - sc:sameAs "http://edamontology.org/data_2166" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2166" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Sequence composition plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -493824,7 +527152,7 @@ Tcl/Tk commands, because the widget functionality is encapsulated in S4 classes biotools:primaryContact "Kaur Alasoo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3169 ; @@ -493838,7 +527166,7 @@ Tcl/Tk commands, because the widget functionality is encapsulated in S4 classes sc:url "https://sites.google.com/site/anshulkundaje/projects/wiggler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204 ; @@ -493852,7 +527180,7 @@ Tcl/Tk commands, because the widget functionality is encapsulated in S4 classes sc:url "http://cyverseuk.org/applications/wigwams/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0749, edam:topic_2229, @@ -493869,7 +527197,7 @@ Tcl/Tk commands, because the widget functionality is encapsulated in S4 classes sc:url "https://www.wikidata.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -493886,23 +527214,46 @@ Tcl/Tk commands, because the widget functionality is encapsulated in S4 classes sc:name "WikiGene" ; sc:url "http://andromeda.gsf.de/wiki" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0091, + edam:topic_0108, + edam:topic_0602 ; + sc:citation , + "pmcid:PMC8756176", + "pubmed:34636843" ; + sc:description "WikiNetworks is a user-friendly Python package to process pathways from the WikiPathways database into machine-readable network representations." ; + sc:featureList edam:operation_0224, + edam:operation_3927, + edam:operation_3928 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "WikiNetworks" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://github.com/Thakar-Lab/wikinetworks" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0842" ; - sc:name "Identifier" ; - sc:sameAs "http://edamontology.org/data_0842" ] ; + sc:additionalType "http://edamontology.org/data_0842" ; + sc:name "Identifier" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3325 ; - sc:citation , + sc:citation , + , + , ; sc:description "WikiPathways is a database of biological pathways maintained by and for the scientific community." ; sc:featureList edam:operation_2422, @@ -493920,7 +527271,7 @@ Tcl/Tk commands, because the widget functionality is encapsulated in S4 classes "Martina Kutmon" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0602, edam:topic_3325 ; @@ -493944,7 +527295,7 @@ Tcl/Tk commands, because the widget functionality is encapsulated in S4 classes biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2269, @@ -493963,7 +527314,7 @@ Tcl/Tk commands, because the widget functionality is encapsulated in S4 classes biotools:primaryContact "Dr. Soumya Banerjee" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3053, edam:topic_3068, @@ -493983,7 +527334,7 @@ WilsonGen is a comprehensive resource of genetic variants in ATP7B gene manually sc:url "http://clingen.igib.res.in/WilsonGen/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, edam:topic_3292, @@ -493997,7 +527348,7 @@ WilsonGen is a comprehensive resource of genetic variants in ATP7B gene manually sc:url "http://winbest-kit.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091 ; sc:citation ; @@ -494012,7 +527363,7 @@ WilsonGen is a comprehensive resource of genetic variants in ATP7B gene manually sc:url "http://winbioinftools.codeplex.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2828 ; @@ -494031,7 +527382,7 @@ WilsonGen is a comprehensive resource of genetic variants in ATP7B gene manually sc:url "http://www.ysbl.york.ac.uk/~lohkamp/coot/wincoot.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168 ; sc:description "windowmasker identifies and masks highly repetitive DNA sequences in a genome, using only the sequence of the genome itself." ; @@ -494045,7 +527396,7 @@ WilsonGen is a comprehensive resource of genetic variants in ATP7B gene manually sc:url "http://nebc.nox.ac.uk/bioinformatics/docs/windowmasker.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3569, edam:topic_3570 ; @@ -494061,7 +527412,7 @@ Manual modeling of complicated insect wings presents considerable practical chal sc:url "https://wingquest.org/wingmesh/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3053 ; @@ -494074,8 +527425,21 @@ Manual modeling of complicated insect wings presents considerable practical chal sc:softwareVersion "2.0" ; sc:url "http://staff.ustc.edu.cn/~xuyun/winhap/WinHAP2.0.htm" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102 ; + sc:citation , + ; + sc:description "Winnowmap is a long-read mapping algorithm optimized for mapping ONT and PacBio reads to repetitive reference sequences. Winnowmap development began on top of minimap2 codebase, and since then we have incorporated the following two ideas to improve mapping accuracy within repeats" ; + sc:featureList edam:operation_0292 ; + sc:license "Not licensed" ; + sc:name "winnowmap" ; + sc:softwareVersion "2.03" ; + sc:url "https://github.com/marbl/Winnowmap" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3379, edam:topic_3418 ; sc:citation , @@ -494088,7 +527452,7 @@ This online monitoring system, following weight gain, for predicting developing sc:url "http://winrop.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2259, @@ -494102,7 +527466,7 @@ This online monitoring system, following weight gain, for predicting developing sc:url "http://www.winsaam.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0204, edam:topic_0749, @@ -494121,7 +527485,7 @@ Weighted, Imputed, Neighbor-regularized matrix TriFactorization, WINTF.""" ; sc:url "https://github.com/XieResearchGroup/WINTF" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0654, edam:topic_3391 ; @@ -494135,7 +527499,7 @@ Weighted, Imputed, Neighbor-regularized matrix TriFactorization, WINTF.""" ; sc:url "http://statgen.snu.ac.kr/wisard/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0654 ; @@ -494154,18 +527518,15 @@ Weighted, Imputed, Neighbor-regularized matrix TriFactorization, WINTF.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2977" ; - sc:name "Nucleic acid sequence" ; - sc:sameAs "http://edamontology.org/data_2977" ] ; + sc:additionalType "http://edamontology.org/data_2977" ; + sc:name "Nucleic acid sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ], + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1383" ; - sc:name "Sequence alignment (nucleic acid)" ; - sc:sameAs "http://edamontology.org/data_1383" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1383" ; + sc:name "Sequence alignment (nucleic acid)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080 ; sc:author "Ewan Birney", @@ -494186,7 +527547,7 @@ Weighted, Imputed, Neighbor-regularized matrix TriFactorization, WINTF.""" ; biotools:primaryContact "Web Production" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0634, @@ -494209,7 +527570,7 @@ Weighted, Imputed, Neighbor-regularized matrix TriFactorization, WINTF.""" ; biotools:primaryContact "Haja N. Kadarmideen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -494226,21 +527587,8 @@ Weighted, Imputed, Neighbor-regularized matrix TriFactorization, WINTF.""" ; sc:url "https://www.mathworks.com/matlabcentral/fileexchange/71956-wit-input-output" ; biotools:primaryContact "J. T. Holmi" . - a sc:SoftwareApplication ; - sc:citation , - "pubmed:31860131" ; - sc:description """the critical role of hair growth rate. J Forensic Sci 2019;54(5):1574-5 (https://doi.org/10.1111/1556-4029.14013). - -The following article from the Journal of Forensic Science, "Hair Analysis for Drug-Facilitated Crime: The Critical Role of Hair Growth Rate" by Koren G, Bellaish E, Maman K, published online on 3rd September 2019 (1) on Wiley Online Library has been withdrawn at the authors' request, and in agreement between the authors, the Journal's Editorial Office, and John Wiley & Sons, Inc. The withdrawal has been agreed to by all parties due to material included in the article being involved in current litigation. Reference 1. Koren G, Bellaish E, Maman K. Hair analysis for drug-facilitated crime: the critical role of hair growth rate. J Forensic Sci 2019;54(5):1574-5. https: doi.org 10.1111 1556-4029.14013. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'drug-facilitated crime', 'drug-facilitated', 'Bellaish', '2019;54(5):1574-5'""" ; - sc:name "withdrawal" ; - sc:url "https://www.ncbi.nlm.nih.gov/pubmed/?term=31860131" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -494257,7 +527605,7 @@ The following article from the Journal of Forensic Science, "Hair Analysis for D biotools:primaryContact "J. T. Holmi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0081, @@ -494280,7 +527628,7 @@ The following article from the Journal of Forensic Science, "Hair Analysis for D biotools:primaryContact "Gert Vriend" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0092, edam:topic_3382, edam:topic_3474 ; @@ -494301,7 +527649,7 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q sc:url "https://wiz.shef.ac.uk" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0622, @@ -494317,7 +527665,7 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q sc:url "http://kinmut2.bioinfo.cnio.es/KinMut2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0634, edam:topic_0781, @@ -494331,7 +527679,7 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q sc:url "http://www.gis.a-star.edu.sg/pathchip/WKL_readme.txt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0082, @@ -494347,7 +527695,7 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q sc:url "http://mouse.belozersky.msu.ru/~evgeniy/cgi-bin/wLake/wLake.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654, @@ -494363,7 +527711,7 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q sc:url "http://systemsbio.ucsd.edu/wmap/manual.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0634, @@ -494379,7 +527727,7 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q sc:url "http://combio.gist.ac.kr/WMAXC/WMAXC.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0203, @@ -494398,7 +527746,7 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0625, edam:topic_0654, @@ -494416,14 +527764,12 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1261" ; - sc:name "Sequence composition report" ; - sc:sameAs "http://edamontology.org/data_1261" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1261" ; + sc:name "Sequence composition report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3053 ; sc:citation , @@ -494453,7 +527799,7 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q sc:url "http://emboss.open-bio.org/rel/rel6/apps/wobble.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -494473,7 +527819,7 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q biotools:primaryContact "Kenta Nakai" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3055 ; sc:citation , @@ -494491,7 +527837,7 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0128, @@ -494511,10 +527857,10 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_3003" ; + sc:name "Gene expression profile" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3511 ; @@ -494531,7 +527877,7 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q biotools:primaryContact "Flavio Licciulli" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workflow" ; sc:applicationSubCategory edam:topic_0769 ; sc:citation ; @@ -494542,7 +527888,7 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -494559,14 +527905,12 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1261" ; - sc:name "Sequence composition report" ; - sc:sameAs "http://edamontology.org/data_1261" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1261" ; + sc:name "Sequence composition report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0157 ; sc:citation , @@ -494597,22 +527941,18 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0874" ; - sc:name "Comparison matrix" ; - sc:sameAs "http://edamontology.org/data_0874" ] ; + sc:additionalType "http://edamontology.org/data_0874" ; + sc:name "Comparison matrix" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -494644,26 +527984,21 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ], + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ], + sc:additionalType "http://edamontology.org/data_1381" ; + sc:name "Sequence alignment (pair)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1381" ; - sc:name "Sequence alignment (pair)" ; - sc:sameAs "http://edamontology.org/data_1381" ], + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1255" ; - sc:name "Sequence features" ; - sc:sameAs "http://edamontology.org/data_1255" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1255" ; + sc:name "Sequence features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0097 ; sc:citation , @@ -494693,7 +528028,7 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q sc:url "http://emboss.open-bio.org/rel/rel6/apps/wordmatch.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:description "Finds all exact matches of a given minimum size between 2 sequences displaying the start points in each sequence and the match length." ; @@ -494704,7 +528039,7 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q sc:url "http://genius.embnet.dkfz-heidelberg.de/menu/hobit/embdoc/wordmatch.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0203, @@ -494723,14 +528058,13 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1807" ; - sc:name "ORF name" ; - sc:sameAs "http://edamontology.org/data_1807" ] ; + sc:additionalType "http://edamontology.org/data_1807" ; + sc:name "ORF name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621 ; sc:citation , @@ -494746,7 +528080,7 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q sc:url "http://worfdb.dfci.harvard.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0769, edam:topic_3172, @@ -494760,14 +528094,13 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3488" ; - sc:name "NMR spectrum" ; - sc:sameAs "http://edamontology.org/data_3488" ], + sc:additionalType "http://edamontology.org/data_3488" ; + sc:name "NMR spectrum" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrum" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Mass spectrum" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Bioinformatics portal" ; sc:applicationSubCategory edam:topic_2259, edam:topic_3172, @@ -494806,28 +528139,8 @@ Wiz is a convienient tool for interactively plotting data. Wiz allows users to q , "Marie Tremblay-Franco" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0611, - edam:topic_0769, - edam:topic_3384, - edam:topic_3385, - edam:topic_3398 ; - sc:citation ; - sc:description """A workflow for characterizing nanoparticle monolayers for biosensors. - -A persistent challenge in materials science is the characterization of a large ensemble of heterogeneous nanostructures in a set of images. This often leads to practices such as manual particle counting, and sampling bias of a favorable region of the “best” image. Herein, we present the open-source software, imaging criteria and workflow necessary to fully characterize an ensemble of SEM nanoparticle images. Such characterization is critical to nanoparticle biosensors, whose performance and characteristics are determined by the distribution of the underlying nanoparticle film. - -||| HOMEPAGE MISSING!. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'nanoparticle', 'SEM' (bio.tools/sem), 'commonly-found', 'low-magnification'""" ; - sc:featureList edam:operation_3431, - edam:operation_3436, - edam:operation_3443 ; - sc:name "workflow characterizing nanoparticle monolayers biosensors" ; - sc:url "https://doi.org/10.7287/PEERJ.PREPRINTS.671V2" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API", "Web application" ; @@ -494854,7 +528167,7 @@ WorkflowHub aims to facilitate discovery and re-use of workflows in an accessibl biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0749, edam:topic_0769 ; @@ -494879,41 +528192,15 @@ Provides a workflow for your analysis projects by combining literate programming sc:name "workflowr" ; sc:url "https://github.com/jdblischak/workflowr" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0621, - edam:topic_0749, - edam:topic_0769 ; - sc:citation , - "pmcid:PMC6833990", - "pubmed:31723427" ; - sc:description """Creating and sharing reproducible research code the workflowr way. - -Organize your project into a research website. - -workflowr: organized + reproducible + shareable data science in R. - -The workflowr R package helps researchers organize their analyses in a way that promotes effective project management, reproducibility, collaboration, and sharing of results. Workflowr combines literate programming (knitr and rmarkdown) and version control (Git, via git2r) to generate a website containing time-stamped, versioned, and documented results. Any R user can quickly and easily adopt workflowr. - -A Framework for Reproducible and Collaborative Data Science. - -Provides a workflow for your analysis projects by combining literate programming ('knitr' and 'rmarkdown') and version control ('Git', via 'git2r') to generate a website containing time-stamped, versioned, and documented results""" ; - sc:featureList edam:operation_2422, - edam:operation_3096, - edam:operation_3454 ; - sc:license "MIT" ; - sc:name "workflowr_autogenerated" ; - sc:url "https://github.com/jdblischak/workflowr" . - a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1096" ; - sc:name "Sequence accession (protein)" ; - sc:sameAs "http://edamontology.org/data_1096" ] ; + sc:additionalType "http://edamontology.org/data_1096" ; + sc:name "Sequence accession (protein)" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2531" ; - sc:name "Experiment report" ; - sc:sameAs "http://edamontology.org/data_2531" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2531" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Experiment report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0121 ; sc:citation ; @@ -494926,7 +528213,7 @@ Provides a workflow for your analysis projects by combining literate programming sc:url "http://world-2dpage.expasy.org/repository/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0769, edam:topic_0780, edam:topic_3050 ; @@ -494943,30 +528230,27 @@ World Flora Online is an online flora of all known plants, available from a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ], + sc:additionalType "http://edamontology.org/data_0989" ; + sc:name "Protein identifier" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0989" ; - sc:name "Protein identifier" ; - sc:sameAs "http://edamontology.org/data_0989" ], + sc:additionalType "http://edamontology.org/data_2295" ; + sc:name "Gene ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2295" ; - sc:name "Gene ID" ; - sc:sameAs "http://edamontology.org/data_2295" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ], + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web API" ; sc:applicationSubCategory edam:topic_0621 ; @@ -494982,7 +528266,7 @@ World Flora Online is an online flora of all known plants, available from a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_3307, @@ -494998,7 +528282,7 @@ World Flora Online is an online flora of all known plants, available from a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3053, @@ -495017,7 +528301,7 @@ World Flora Online is an online flora of all known plants, available from a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0219, edam:topic_0602, @@ -495036,7 +528320,7 @@ World Flora Online is an online flora of all known plants, available from . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0602, @@ -495058,7 +528342,7 @@ World Flora Online is an online flora of all known plants, available from a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3382, edam:topic_3474 ; @@ -495073,8 +528357,27 @@ The "sample data" is used in the tutorials, it is a small video segment showing sc:name "WormPose" ; sc:url "https://iteal.github.io/wormpose/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Desktop application" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0621, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC9315411", + "pubmed:35903772" ; + sc:description "A software to track body length used to characterize a super red-shifted channelrhodopsin in Caenorhabditis elegans." ; + sc:featureList edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "WormRuler" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/dvettkoe/wormruler" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3473 ; @@ -495091,10 +528394,9 @@ The "sample data" is used in the tutorials, it is a small video segment showing a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0958" ; - sc:name "Tool metadata" ; - sc:sameAs "http://edamontology.org/data_0958" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0958" ; + sc:name "Tool metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219 ; sc:citation , @@ -495125,10 +528427,9 @@ The "sample data" is used in the tutorials, it is a small video segment showing a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0958" ; - sc:name "Tool metadata" ; - sc:sameAs "http://edamontology.org/data_0958" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0958" ; + sc:name "Tool metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219 ; sc:citation , @@ -495159,10 +528460,9 @@ The "sample data" is used in the tutorials, it is a small video segment showing a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0958" ; - sc:name "Tool metadata" ; - sc:sameAs "http://edamontology.org/data_0958" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0958" ; + sc:name "Tool metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -495193,10 +528493,9 @@ The "sample data" is used in the tutorials, it is a small video segment showing a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0958" ; - sc:name "Tool metadata" ; - sc:sameAs "http://edamontology.org/data_0958" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0958" ; + sc:name "Tool metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219 ; sc:citation , @@ -495227,10 +528526,9 @@ The "sample data" is used in the tutorials, it is a small video segment showing a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0958" ; - sc:name "Tool metadata" ; - sc:sameAs "http://edamontology.org/data_0958" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0958" ; + sc:name "Tool metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219 ; sc:citation , @@ -495261,10 +528559,9 @@ The "sample data" is used in the tutorials, it is a small video segment showing a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0958" ; - sc:name "Tool metadata" ; - sc:sameAs "http://edamontology.org/data_0958" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0958" ; + sc:name "Tool metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219 ; sc:citation , @@ -495295,10 +528592,9 @@ The "sample data" is used in the tutorials, it is a small video segment showing a sc:SoftwareApplication ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0958" ; - sc:name "Tool metadata" ; - sc:sameAs "http://edamontology.org/data_0958" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0958" ; + sc:name "Tool metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0219 ; sc:citation , @@ -495328,7 +528624,7 @@ The "sample data" is used in the tutorials, it is a small video segment showing sc:url "http://emboss.open-bio.org/rel/rel6/apps/wosstopic.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0194, edam:topic_2269 ; @@ -495345,7 +528641,7 @@ wQFM is a quartet amalgamation method of estimating species tree. It takes a set sc:url "https://github.com/Mahim1997/wQFM-2020" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0128, @@ -495364,7 +528660,7 @@ wQFM is a quartet amalgamation method of estimating species tree. It takes a set biotools:primaryContact "Mónika Bálint" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0080, @@ -495380,7 +528676,7 @@ wQFM is a quartet amalgamation method of estimating species tree. It takes a set sc:url "http://wregex.ehubio.es/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3374, edam:topic_3934 ; @@ -495397,62 +528693,62 @@ wQFM is a quartet amalgamation method of estimating species tree. It takes a set a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2968" ; - sc:name "Image" ; - sc:sameAs "http://edamontology.org/data_2968" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_1975" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ] ; + sc:additionalType "http://edamontology.org/data_2968" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Image" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0006" ; - sc:name "Data" ; - sc:sameAs "http://edamontology.org/data_0006" ], + sc:additionalType "http://edamontology.org/data_0006" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -495472,26 +528768,26 @@ wQFM is a quartet amalgamation method of estimating species tree. It takes a set a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1467" ; - sc:name "Protein chain" ; - sc:sameAs "http://edamontology.org/data_1467" ], + sc:additionalType "http://edamontology.org/data_2209" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mutation ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1127" ; - sc:name "PDB ID" ; - sc:sameAs "http://edamontology.org/data_1127" ], + sc:additionalType "http://edamontology.org/data_1467" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein chain" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1176" ; - sc:name "GO concept ID" ; - sc:sameAs "http://edamontology.org/data_1176" ], + sc:additionalType "http://edamontology.org/data_1176" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "GO concept ID" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2209" ; - sc:name "Mutation ID" ; - sc:sameAs "http://edamontology.org/data_2209" ] ; + sc:additionalType "http://edamontology.org/data_1127" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "PDB ID" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1622" ; - sc:name "Disease report" ; - sc:sameAs "http://edamontology.org/data_1622" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1622" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Disease report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application", "Web service" ; sc:applicationSubCategory edam:topic_0123, @@ -495517,8 +528813,28 @@ wQFM is a quartet amalgamation method of estimating species tree. It takes a set biotools:primaryContact , "Rita Casadio" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2269, + edam:topic_3474 ; + sc:citation , + "pmcid:PMC9037749", + "pubmed:35480046" ; + sc:description "Generalizable Beat-by-Beat Arrhythmia Detection by Using Weakly Supervised Deep Learning." ; + sc:featureList edam:operation_3435, + edam:operation_3436, + edam:operation_3937 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "WSDL-AD" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/sdnjly/WSDL-AD" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3071 ; @@ -495534,7 +528850,7 @@ wQFM is a quartet amalgamation method of estimating species tree. It takes a set sc:url "http://gmd.mpimp-golm.mpg.de/GoBioSpace.aspx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_2258 ; sc:description "These web services provide access to methods for matching user submitted spectra against the GMD." ; @@ -495548,7 +528864,7 @@ wQFM is a quartet amalgamation method of estimating species tree. It takes a set sc:url "http://gmd.mpimp-golm.mpg.de/webservices/wsLibrarySearch.asmx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_2258, edam:topic_3071 ; @@ -495564,7 +528880,7 @@ wQFM is a quartet amalgamation method of estimating species tree. It takes a set sc:url "http://gmd.mpimp-golm.mpg.de/webservices/wsPrediction.asmx" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0080 ; sc:citation ; @@ -495579,7 +528895,7 @@ wQFM is a quartet amalgamation method of estimating species tree. It takes a set sc:url "http://www.ebi.ac.uk/thornton-srv/databases/WSsas/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0605, edam:topic_3316 ; @@ -495595,7 +528911,7 @@ wQFM is a quartet amalgamation method of estimating species tree. It takes a set sc:url "https://github.com/ruanjue/wtdbg2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0654, edam:topic_3053, @@ -495613,7 +528929,7 @@ Perform the calculation of W-test, diagnostic checking, calculate minor allele f sc:url "https://CRAN.R-project.org/package=wtest" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0089 ; @@ -495625,7 +528941,7 @@ Perform the calculation of W-test, diagnostic checking, calculate minor allele f sc:url "https://evoldoers.github.io/wtfgo/web/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, @@ -495644,7 +528960,7 @@ For more than a decade, gene expression data sets have been used as basis for th sc:url "https://github.com/andrevo/DiffCoEx-WTO" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0637, edam:topic_0769, edam:topic_3837 ; @@ -495656,7 +528972,7 @@ For more than a decade, gene expression data sets have been used as basis for th sc:url "https://github.com/replikation/What_the_Phage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0099, @@ -495674,7 +528990,7 @@ For more than a decade, gene expression data sets have been used as basis for th sc:url "http://crispr.wustl.edu/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3303 ; sc:citation , "pmcid:PMC7606381", @@ -495689,7 +529005,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out sc:url "http://research.peds.wustl.edu/neat" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -495710,7 +529026,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out sc:url "http://www.zbh.uni-hamburg.de/wurst/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3343 ; sc:citation "pubmed:19429687" ; @@ -495724,8 +529040,32 @@ Many qualitative and quantitative metrics have been developed to analyze the out biotools:primaryContact "Michel Petitjean", "Pierre Tuffery" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0199, + edam:topic_0622, + edam:topic_3170, + edam:topic_3474, + edam:topic_3676 ; + sc:citation , + "pmcid:PMC9338606", + "pubmed:35906703" ; + sc:description "X-CAP is a GBT model that predicts the pathogenicity of single-nucleotide stopgain variants. This repository contains the trained model as well as code to run X-CAP on a VCF file of variants." ; + sc:featureList edam:operation_0331, + edam:operation_3196, + edam:operation_3227, + edam:operation_3461 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "X-CAP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/bejerano-lab/X-CAP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3169, @@ -495742,7 +529082,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out sc:url "https://github.com/ernstlab/X-CNN" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0625, @@ -495767,7 +529107,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out sc:url "http://www.unimd.org/XCNV" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0176, edam:topic_0769, @@ -495787,7 +529127,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0634, edam:topic_3053, @@ -495801,7 +529141,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out sc:url "http://dmpi.duke.edu/x-lrt" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0099, edam:topic_3168 ; @@ -495815,7 +529155,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out sc:url "http://genomicbiology.org/2011/02/15/x-mate/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3070, edam:topic_3344, @@ -495831,7 +529171,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out biotools:primaryContact "Christopher Hall" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0128, @@ -495851,7 +529191,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out sc:url "http://www.maayanlab.net/X2K" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0749 ; sc:citation , @@ -495865,7 +529205,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0625, @@ -495885,22 +529225,22 @@ Many qualitative and quantitative metrics have been developed to analyze the out a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3711" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -495917,7 +529257,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out sc:url "http://www.thegpm.org/hunter/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_3174, @@ -495931,7 +529271,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out sc:url "https://github.com/rdpstaff/Xander_assembler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_2828 ; sc:citation ; @@ -495947,7 +529287,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out biotools:primaryContact "V. S. Neverov" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0621, @@ -495966,7 +529306,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out biotools:primaryContact "Roy D. Welch" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0081, edam:topic_3382, @@ -495982,7 +529322,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out biotools:primaryContact "Ivan Štajduhar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_1317 ; sc:description "Generates Xaperones to facilitate the crystallization of proteins of interest." ; @@ -495992,7 +529332,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out sc:url "http://www.xaperones.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0769, @@ -496015,18 +529355,18 @@ Many qualitative and quantitative metrics have been developed to analyze the out a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ], + sc:additionalType "http://edamontology.org/data_0863" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Sequence alignment" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0863" ; - sc:name "Sequence alignment" ; - sc:sameAs "http://edamontology.org/data_0863" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3547" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -496046,7 +529386,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out biotools:primaryContact "Yuanhang Liu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0622, @@ -496065,7 +529405,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out biotools:primaryContact "Alberto Magi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -496081,7 +529421,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out sc:url "http://xcellerator.info/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0128, edam:topic_2814, @@ -496104,18 +529444,18 @@ Many qualitative and quantitative metrics have been developed to analyze the out a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3650" ; + sc:name "Mass spectrometry data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -496143,14 +529483,14 @@ Many qualitative and quantitative metrics have been developed to analyze the out a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3483" ; - sc:name "Spectrum" ; - sc:sameAs "http://edamontology.org/data_3483" ] ; + sc:additionalType "http://edamontology.org/data_3483" ; + sc:encodingFormat "http://edamontology.org/format_3245" ; + sc:name "Spectrum" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_2013" ; + sc:name "Pathway or network" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -496167,7 +529507,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out sc:url "http://xcmsonline.scripps.edu/landing_page.php?pgcontent=mainPage" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -496179,7 +529519,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out sc:url "https://goodlett.umaryland.edu/xcomb.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, @@ -496199,7 +529539,7 @@ Many qualitative and quantitative metrics have been developed to analyze the out sc:url "https://github.com/Proteomicslab57357/Xconnector" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -496223,8 +529563,31 @@ Many qualitative and quantitative metrics have been developed to analyze the out sc:url "http://bioconductor.org/packages/release/bioc/html/XDE.html" ; biotools:primaryContact "Robert Scharpf" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal" ; + sc:applicationSubCategory edam:topic_0602, + edam:topic_2229, + edam:topic_2640, + edam:topic_3172, + edam:topic_3930 ; + sc:citation , + "pmcid:PMC8669630", + "pubmed:34907160" ; + sc:description "A visualization platform for cell death molecular interactions." ; + sc:featureList edam:operation_0314, + edam:operation_3436, + edam:operation_3925, + edam:operation_3926 ; + sc:isAccessibleForFree true ; + sc:name "XDeathDB" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://pcm2019.shinyapps.io/XDeathDB/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3304, edam:topic_3382, edam:topic_3474, @@ -496244,7 +529607,7 @@ XDream (Extending DeepDream with real-time evolution for activity maximization i sc:url "https://github.com/willwx/XDream/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0092, @@ -496263,35 +529626,56 @@ XDream (Extending DeepDream with real-time evolution for activity maximization i sc:softwareVersion "1" ; sc:url "http://www.mpimf-heidelberg.mpg.de/~kabsch/xds/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0130, + edam:topic_0154, + edam:topic_0593, + edam:topic_0736, + edam:topic_3542 ; + sc:citation , + "pmcid:PMC8433119", + "pubmed:34527196" ; + sc:description "XEFoldMine (eXplainable EFoldMine). A website, where you can explore which amino acid residues in proteins that are predicted to be early folding, this in relation to the sequence fragment it occurs in, and the final secondary structure this fragment adopts in the protein (when folded)." ; + sc:featureList edam:operation_0303, + edam:operation_0474, + edam:operation_2415, + edam:operation_2488 ; + sc:isAccessibleForFree true ; + sc:name "XEFoldMine" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://xefoldmine.bio2byte.be/" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; - sc:additionalType "Desktop application" ; - sc:applicationSubCategory edam:topic_3053, - edam:topic_3292 ; - sc:author "Benjamin Dartigues", - "Emmanuel Bouilhol" ; - sc:citation ; - sc:contributor "CHen Zhui", + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0089, + edam:topic_0091, + edam:topic_0219 ; + sc:author "Benjamin Dartigues" ; + sc:contributor "Alexis Groppi", "Cecile Cabasson", + "Macha Nikolski", "Yves Gibon" ; - sc:description "Interactive timeline visualisation that enables the intuitive design of experiments in terms of growth conditions and sampling strategy using related Ontologies (Xeo, EnvO, EO) while the corresponding metadata are automatically stored in the background in Xeml standardized format, ready for data mining." ; - sc:featureList edam:operation_3559 ; + sc:description "The web application Linda offers a complete tool for entering and managing metadata associated with a phenotyping experiment on plants. It thus makes it possible to intuitively describe experimental related information such as, for example, the experimental design, the growth protocols, the environmental variable measurements, etc. Linda is coupled with a database that stores this information in a structured manneer using oriented graphs. This database uses reference ontologies (e.g., Plant Ontology, Crop Ontology, etc.) and standards dedicated to this type of experiment such as the Minimal Information About Plant Phenotyping Experiment (MIAPPE) standard. Data sharing is facilitated on the one hand by respecting the FAIR principles (Findable Accessible Interoperable Reusable) and oon the other hand, by exporting this metadata relating to the experiment in tabulated formats or formatted for submission in the international databases (ISA-tab)." ; + sc:featureList edam:operation_3431 ; sc:isAccessibleForFree true ; sc:license "MIT" ; - sc:name "XEML-Lab" ; + sc:name "Linda" ; sc:operatingSystem "Linux", - "Mac", - "Windows" ; + "Mac" ; sc:provider "Centre de Bioinformatique de Bordeaux (CBiB)", - "UMR 1332 - Biologie du Fruit et Pathologie", - "u-bordeaux.fr" ; - sc:softwareHelp ; + "UMR 1332 - Biologie du Fruit et Pathologie" ; + sc:softwareHelp ; sc:softwareVersion "1" ; - sc:url "https://github.com/cbib/XEML-Lab" ; + sc:url "https://services.cbib.u-bordeaux.fr/linda/" ; biotools:primaryContact "Benjamin Dartigues" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0203, @@ -496313,7 +529697,7 @@ XDream (Extending DeepDream with real-time evolution for activity maximization i biotools:primaryContact "Jeff B. Bowes" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0622, @@ -496334,7 +529718,7 @@ XDream (Extending DeepDream with real-time evolution for activity maximization i biotools:primaryContact "Eliot C. Bush" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0602, edam:topic_3172, @@ -496353,7 +529737,7 @@ XenoNet Web provides prediction web services for small molecule biochemistry. Xe sc:url "https://swami.wustl.edu/xenonet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, @@ -496372,7 +529756,7 @@ XenoNet Web provides prediction web services for small molecule biochemistry. Xe sc:url "http://swami.wustl.edu/xenosite" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0621, @@ -496390,7 +529774,7 @@ XenoNet Web provides prediction web services for small molecule biochemistry. Xe sc:url "http://www.xephir.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0108, edam:topic_0749, @@ -496407,7 +529791,7 @@ XG-ac4C: Identification of N4-acetylcytidine (ac4C) in mRNA by using eXtreme Gra sc:url "http://nsclbio.jbnu.ac.kr/tools/xgac4c/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0749, edam:topic_3308, edam:topic_3474, @@ -496425,7 +529809,7 @@ Recent studies have increasingly shown that the chemical modification of mRNA pl sc:url "http://flagship.erc.monash.edu/XG-m7G/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269, @@ -496445,7 +529829,7 @@ Recent studies have increasingly shown that the chemical modification of mRNA pl sc:url "https://github.com/lab319/XGBLC" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0121, @@ -496460,7 +529844,7 @@ Recent studies have increasingly shown that the chemical modification of mRNA pl sc:url "https://bitbucket.org/paiyetan/xglycscan/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0622, @@ -496481,7 +529865,7 @@ Recent studies have increasingly shown that the chemical modification of mRNA pl biotools:primaryContact "Julian C. Knight" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2275, @@ -496501,7 +529885,7 @@ Recent studies have increasingly shown that the chemical modification of mRNA pl . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_0625, @@ -496516,7 +529900,7 @@ Recent studies have increasingly shown that the chemical modification of mRNA pl sc:url "https://github.com/LiminLi-xjtu/XGSEA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0602 ; sc:author "Daniela Beisser", @@ -496551,7 +529935,7 @@ Recent studies have increasingly shown that the chemical modification of mRNA pl sc:url "https://github.com/ls-cwi/xheinz" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0654, @@ -496567,7 +529951,7 @@ Recent studies have increasingly shown that the chemical modification of mRNA pl sc:url "http://www.bioinfo.no/tools/xhm/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2828 ; @@ -496586,7 +529970,7 @@ Recent studies have increasingly shown that the chemical modification of mRNA pl sc:url "https://xia2.github.io/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Workflow" ; sc:applicationSubCategory edam:topic_0099, @@ -496603,7 +529987,7 @@ Recent studies have increasingly shown that the chemical modification of mRNA pl sc:url "https://github.com/HCGB-IGTP/XICRA" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0121 ; @@ -496622,14 +530006,14 @@ Recent studies have increasingly shown that the chemical modification of mRNA pl a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Expression data" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3308 ; @@ -496650,7 +530034,7 @@ Recent studies have increasingly shown that the chemical modification of mRNA pl "Sasha A. Singh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -496666,7 +530050,7 @@ Recent studies have increasingly shown that the chemical modification of mRNA pl sc:url "http://xip.hgc.jp/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application", "Web application" ; sc:applicationSubCategory edam:topic_3520 ; @@ -496683,7 +530067,7 @@ Recent studies have increasingly shown that the chemical modification of mRNA pl "Prof Juri Rappsilber" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -496699,7 +530083,7 @@ Recent studies have increasingly shown that the chemical modification of mRNA pl sc:url "http://tools.proteomecenter.org/XLink.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0081, edam:topic_0128, @@ -496714,7 +530098,7 @@ Recent studies have increasingly shown that the chemical modification of mRNA pl sc:url "http://www.beck.embl.de/XlinkAnalyzer.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0121, edam:topic_0128, @@ -496742,10 +530126,10 @@ XlinkCyNET is an open-source Java plugin that generates residue-to-residue conne a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2814 ; @@ -496765,7 +530149,7 @@ XlinkCyNET is an open-source Java plugin that generates residue-to-residue conne sc:url "http://xlinkdb.gs.washington.edu/xlinkdb/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_2814, @@ -496785,7 +530169,7 @@ Scoring for Crosslinks is performed using MNXL and Monolinks are scored by MoDS. sc:url "https://github.com/Topf-Lab/XLM-Tools" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_1317, edam:topic_2275, @@ -496799,8 +530183,32 @@ Scoring for Crosslinks is performed using MNXL and Monolinks are scored by MoDS. sc:softwareHelp ; sc:url "http://brucelab.gs.washington.edu/software.html" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0203, + edam:topic_0659, + edam:topic_3170, + edam:topic_3474, + edam:topic_3512 ; + sc:citation , + "pmcid:PMC9173695", + "pubmed:35685437" ; + sc:description "Interpretable Deep Learning Model Reveals Subsequences of Various Functions for Long Non-Coding RNA Identification." ; + sc:featureList edam:operation_0269, + edam:operation_0443, + edam:operation_3216, + edam:operation_3904 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "Xlnc1DCNN" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/cucpbioinfo/Xlnc1DCNN" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0654 ; @@ -496816,7 +530224,7 @@ Scoring for Crosslinks is performed using MNXL and Monolinks are scored by MoDS. sc:url "http://liulab.dfci.harvard.edu/WEBSITE/software.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0154, edam:topic_0199 ; @@ -496831,14 +530239,14 @@ Scoring for Crosslinks is performed using MNXL and Monolinks are scored by MoDS. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2887" ; - sc:name "Nucleic acid sequence record" ; - sc:sameAs "http://edamontology.org/data_2887" ] ; + sc:additionalType "http://edamontology.org/data_2887" ; + sc:encodingFormat "http://edamontology.org/format_3161" ; + sc:name "Nucleic acid sequence record" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2166" ; - sc:name "Sequence composition plot" ; - sc:sameAs "http://edamontology.org/data_2166" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2166" ; + sc:encodingFormat "http://edamontology.org/format_3617" ; + sc:name "Sequence composition plot" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0102 ; @@ -496858,7 +530266,7 @@ Scoring for Crosslinks is performed using MNXL and Monolinks are scored by MoDS. biotools:primaryContact "Chris Wirth" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092 ; @@ -496873,7 +530281,7 @@ Scoring for Crosslinks is performed using MNXL and Monolinks are scored by MoDS. biotools:primaryContact "R. Warren" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0611, edam:topic_0769, @@ -496885,17 +530293,16 @@ Scoring for Crosslinks is performed using MNXL and Monolinks are scored by MoDS. edam:operation_2409, edam:operation_3552 ; sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; sc:name "XMIPP" ; - sc:operatingSystem "Linux", - "Mac", - "Windows" ; - sc:provider "Instruct" ; - sc:softwareHelp ; - sc:softwareVersion "1" ; - sc:url "http://xmipp.cnb.csic.es/" . + sc:operatingSystem "Linux" ; + sc:provider "Instruct Image Processing Center (I2PC)" ; + sc:softwareHelp ; + sc:softwareVersion "3.22" ; + sc:url "http://xmipp.i2pc.es/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:description "XML2RAF is a Perl software to create RAF maps from PDB XML files.The Protein Data Bank provides XML files that include a mapping between the PDB-format records SEQRES (representing the sequence of the molecule used in an experiment) and ATOM (representing the atoms experimentally observed). These XML files (along with the PDB’s chemical dictionary) also provide information on the original identity of most residues prior to any post-translational modifications, including cyclizations." ; @@ -496909,14 +530316,14 @@ Scoring for Crosslinks is performed using MNXL and Monolinks are scored by MoDS. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3475" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:description "Utility to convert peptide identifications from one format to another." ; sc:featureList edam:operation_3434 ; sc:name "xml2tsv" ; @@ -496924,14 +530331,14 @@ Scoring for Crosslinks is performed using MNXL and Monolinks are scored by MoDS. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Database metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3071, @@ -496966,14 +530373,14 @@ Scoring for Crosslinks is performed using MNXL and Monolinks are scored by MoDS. a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Database metadata" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0957" ; - sc:name "Database metadata" ; - sc:sameAs "http://edamontology.org/data_0957" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0957" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Database metadata" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0091, edam:topic_3071, @@ -497007,7 +530414,7 @@ Scoring for Crosslinks is performed using MNXL and Monolinks are scored by MoDS. sc:url "http://www.bioinformatics.nl/cgi-bin/emboss/xmltext" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0092, edam:topic_2275, @@ -497022,7 +530429,7 @@ Scoring for Crosslinks is performed using MNXL and Monolinks are scored by MoDS. sc:url "http://bioserv.rpbs.univ-paris-diderot.fr/software/XmMol/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0622, edam:topic_2259, @@ -497041,7 +530448,7 @@ Scoring for Crosslinks is performed using MNXL and Monolinks are scored by MoDS. biotools:primaryContact "Ying-Wooi Wan" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0092, @@ -497063,7 +530470,7 @@ Scoring for Crosslinks is performed using MNXL and Monolinks are scored by MoDS. biotools:primaryContact "Karan Uppal" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3071, edam:topic_3379, edam:topic_3384 ; @@ -497078,8 +530485,30 @@ This plugin provides an additional REST API for XNAT 1.7, implementing the HL7 F sc:name "XNAT FHIR" ; sc:url "https://github.com/somnonetz/xnat-fhir-plugin" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_3379, + edam:topic_3384, + edam:topic_3444, + edam:topic_3452, + edam:topic_3954 ; + sc:citation , + "pubmed:35304674" ; + sc:description "XNAT for Preclinical Imaging Centers (XNAT-PIC) has been developed to expand XNAT's basic functionalities to preclinical imaging and consists of:" ; + sc:featureList edam:operation_3435, + edam:operation_3443, + edam:operation_3553 ; + sc:isAccessibleForFree true ; + sc:license "GPL-3.0" ; + sc:name "XNAT-PIC" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/szullino/XNAT-PIC" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3056 ; sc:citation , @@ -497094,7 +530523,7 @@ This plugin provides an additional REST API for XNAT 1.7, implementing the HL7 F sc:url "http://hgdp.uchicago.edu/Software/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0097, @@ -497110,7 +530539,7 @@ This plugin provides an additional REST API for XNAT 1.7, implementing the HL7 F sc:url "http://www.cs.ucdavis.edu/~gusfield/xparall/index.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -497126,50 +530555,50 @@ This plugin provides an additional REST API for XNAT 1.7, implementing the HL7 F a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_3244" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ], + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0928" ; - sc:name "Gene expression profile" ; - sc:sameAs "http://edamontology.org/data_0928" ] ; + sc:additionalType "http://edamontology.org/data_0928" ; + sc:encodingFormat "http://edamontology.org/format_1638" ; + sc:name "Gene expression profile" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2884" ; - sc:name "Plot" ; - sc:sameAs "http://edamontology.org/data_2884" ], + sc:additionalType "http://edamontology.org/data_1448" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Comparison matrix (nucleotide)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2600" ; - sc:name "Pathway or network" ; - sc:sameAs "http://edamontology.org/data_2600" ], + sc:additionalType "http://edamontology.org/data_1449" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Comparison matrix (amino acid)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3754" ; - sc:name "GO-term enrichment data" ; - sc:sameAs "http://edamontology.org/data_3754" ], + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_3764" ; + sc:name "Protein features" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ], + sc:additionalType "http://edamontology.org/data_2600" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Pathway or network" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2343" ; - sc:name "Pathway ID (KEGG)" ; - sc:sameAs "http://edamontology.org/data_2343" ], + sc:additionalType "http://edamontology.org/data_2048" ; + sc:encodingFormat "http://edamontology.org/format_3508" ; + sc:name "Report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1448" ; - sc:name "Comparison matrix (nucleotide)" ; - sc:sameAs "http://edamontology.org/data_1448" ], + sc:additionalType "http://edamontology.org/data_2343" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Pathway ID (KEGG)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1449" ; - sc:name "Comparison matrix (amino acid)" ; - sc:sameAs "http://edamontology.org/data_1449" ], + sc:additionalType "http://edamontology.org/data_2884" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "Plot" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2048" ; - sc:name "Report" ; - sc:sameAs "http://edamontology.org/data_2048" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3754" ; + sc:encodingFormat "http://edamontology.org/format_3603" ; + sc:name "GO-term enrichment data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3391 ; sc:author "Dr. Michael Kohl" ; @@ -497189,7 +530618,7 @@ This plugin provides an additional REST API for XNAT 1.7, implementing the HL7 F biotools:primaryContact "PD Dr. Martin Eisenacher" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Workbench" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0611, @@ -497207,7 +530636,7 @@ This plugin provides an additional REST API for XNAT 1.7, implementing the HL7 F sc:url "http://www.fei.com/applications/life-sciences/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0218, edam:topic_3068 ; @@ -497223,7 +530652,7 @@ This plugin provides an additional REST API for XNAT 1.7, implementing the HL7 F biotools:primaryContact "XplorMed Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_2269 ; @@ -497238,7 +530667,7 @@ This plugin provides an additional REST API for XNAT 1.7, implementing the HL7 F sc:url "https://genome.unc.edu/xpn/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0099, edam:topic_0203, edam:topic_0602, @@ -497257,14 +530686,14 @@ Python package for detection of differential RNA modifications from direct RNA s a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2603" ; - sc:name "Expression data" ; - sc:sameAs "http://edamontology.org/data_2603" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2603" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Expression data" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Desktop application" ; sc:applicationSubCategory edam:topic_0121, @@ -497282,7 +530711,7 @@ Python package for detection of differential RNA modifications from direct RNA s sc:url "http://tools.proteomecenter.org/XPRESS.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0203, edam:topic_2229, @@ -497306,7 +530735,7 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; sc:url "https://github.com/XPRESSyourself" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -497328,8 +530757,29 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; sc:url "http://bioconductor.org/packages/release/bioc/html/xps.html" ; biotools:primaryContact "Christian Stratowa" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_2885, + edam:topic_3517, + edam:topic_3577 ; + sc:citation , + "pubmed:35040939" ; + sc:description "Improving polygenic prediction by cross-population and cross-phenotype analysis." ; + sc:featureList edam:operation_3196, + edam:operation_3435, + edam:operation_3659 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "XPXP" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "http://github.com/YangLabHKUST/XPXP" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0092, edam:topic_0602, @@ -497348,7 +530798,7 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; sc:url "http://xpyder.sourceforge.net/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_2814, @@ -497365,7 +530815,7 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; sc:url "http://proteomics.ethz.ch/orinner/public/htdocs/xquest/xquest_review.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0084, edam:topic_3175, @@ -497385,10 +530835,10 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0611, @@ -497412,7 +530862,7 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; sc:url "http://biomine.cs.vcu.edu/servers/XRRPred/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3168, edam:topic_3524 ; @@ -497429,7 +530879,7 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; biotools:primaryContact "Diogo Pratas" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library", "Web application" ; sc:applicationSubCategory edam:topic_0084, @@ -497445,8 +530895,55 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; sc:softwareHelp ; sc:url "http://www.cs.hmc.edu/~hadas/xscape/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0625, + edam:topic_3337, + edam:topic_3518, + edam:topic_3673 ; + sc:citation , + "pmcid:PMC9344850", + "pubmed:35748697" ; + sc:description "A genotype compression tool for compressive genomics in large biobanks." ; + sc:featureList edam:operation_3196, + edam:operation_3211, + edam:operation_3557, + edam:operation_3802 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "XSI" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/rwk-unil/xSqueezeIt" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0625, + edam:topic_0780, + edam:topic_3500, + edam:topic_3810 ; + sc:citation , + "pmcid:PMC8982375", + "pubmed:35244161" ; + sc:description "A fast and user-friendly tool to simulate sequence data and complicated pedigree structures." ; + sc:featureList edam:operation_0487, + edam:operation_2426, + edam:operation_3927 ; + sc:isAccessibleForFree true ; + sc:license "GPL-2.0" ; + sc:name "XSim" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/reworkhow/XSim.jl" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0077, @@ -497464,10 +530961,9 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:name "Sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -497487,7 +530983,7 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; sc:url "https://meme-suite.org/meme/tools/xstreme" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_2814, edam:topic_3542 ; @@ -497506,7 +531002,7 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; sc:url "http://structure.bioc.cam.ac.uk/xsult/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_2640, edam:topic_3360, @@ -497524,7 +531020,7 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; sc:url "https://github.com/topycyao/Xsurv" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2640, @@ -497543,7 +531039,7 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; sc:url "http://www.bdxconsult.com/xSyn.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0602, @@ -497562,7 +531058,7 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0659 ; @@ -497580,18 +531076,18 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ] ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3247" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -497610,18 +531106,18 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3711" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3652" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3752" ; + sc:name "Peptide identification" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -497641,38 +531137,38 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1233" ; - sc:name "Sequence set (protein)" ; - sc:sameAs "http://edamontology.org/data_1233" ], + sc:additionalType "http://edamontology.org/data_1233" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set (protein)" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3653" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3655" ; + sc:name "Peptide identification" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0850" ; - sc:name "Sequence set" ; - sc:sameAs "http://edamontology.org/data_0850" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_2332" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3483" ; - sc:name "Spectrum" ; - sc:sameAs "http://edamontology.org/data_3483" ], + sc:additionalType "http://edamontology.org/data_0945" ; + sc:encodingFormat "http://edamontology.org/format_3711" ; + sc:name "Peptide identification" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ], + sc:additionalType "http://edamontology.org/data_3483" ; + sc:encodingFormat "http://edamontology.org/format_3604" ; + sc:name "Spectrum" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0945" ; - sc:name "Peptide identification" ; - sc:sameAs "http://edamontology.org/data_0945" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0850" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence set" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -497696,7 +531192,7 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; sc:url "http://pappso.inra.fr/bioinfo/xtandempipeline/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0199, @@ -497719,7 +531215,7 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; sc:url "https://github.com/parklab/xTea" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2259, @@ -497737,30 +531233,30 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ] ; + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide mass fingerprint" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0944" ; - sc:name "Peptide mass fingerprint" ; - sc:sameAs "http://edamontology.org/data_0944" ], + sc:additionalType "http://edamontology.org/data_2536" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry data" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2536" ; - sc:name "Mass spectrometry data" ; - sc:sameAs "http://edamontology.org/data_2536" ], + sc:additionalType "http://edamontology.org/data_0944" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Peptide mass fingerprint" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -497773,7 +531269,7 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; sc:url "http://www.ms-utils.org/Xtractor/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0622, @@ -497796,7 +531292,7 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; biotools:primaryContact "Hervé Pagès" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -497819,7 +531315,7 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; biotools:primaryContact "Dr. Abdullah Kahraman" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -497841,7 +531337,7 @@ A toolkit for navigating and analyzing gene expression datasets.""" ; sc:url "https://bammmotif.mpibpc.mpg.de/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3050, edam:topic_3382, edam:topic_3474 ; @@ -497856,7 +531352,7 @@ Forests, estimated to contain two thirds of the world's biodiversity, face exist sc:url "https://github.com/fpl-xylotron" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0084, edam:topic_0625, @@ -497876,7 +531372,7 @@ Forests, estimated to contain two thirds of the world's biodiversity, face exist biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0154, edam:topic_0769, @@ -497896,7 +531392,7 @@ This repository contains the software Y2H-SCORES and supporting code for the pub sc:url "https://github.com/Wiselab2/Y2H-SCORES" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0091, edam:topic_0769, @@ -497922,7 +531418,7 @@ This repository contains the software Y2H-SCORES and supporting code for the pub biotools:primaryContact "Yabi team" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0622, @@ -497939,7 +531435,7 @@ This repository contains the software Y2H-SCORES and supporting code for the pub sc:url "http://gobics.de/tech/yacop.php" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0196, edam:topic_3474 ; @@ -497958,14 +531454,14 @@ Long Read mapping tools provides all match they found in read dataset, for many a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Mass spectrometry spectra" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0943" ; - sc:name "Mass spectrometry spectra" ; - sc:sameAs "http://edamontology.org/data_0943" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0943" ; + sc:encodingFormat "http://edamontology.org/format_3651" ; + sc:name "Mass spectrometry spectra" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0121, edam:topic_3520 ; @@ -497981,7 +531477,7 @@ Long Read mapping tools provides all match they found in read dataset, for many sc:url "http://pcarvalho.com/patternlab/downloads/windows/yada/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0625, @@ -498001,8 +531497,25 @@ Long Read mapping tools provides all match they found in read dataset, for many "Meng-Jhun Jhou", "Wei-Sheng Wu" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0196, + edam:topic_3125 ; + sc:citation ; + sc:description "YaHS is scaffolding tool using Hi-C data. It relies on a new algorithm for contig joining detection which considers the topological distribution of Hi-C signals aiming to distinguish real interaction signals from mapping noises." ; + sc:featureList edam:operation_0524, + edam:operation_0525, + edam:operation_3216 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "YaHS" ; + sc:softwareHelp ; + sc:softwareVersion "1.0" ; + sc:url "https://github.com/c-zhou/yahs" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_2275, @@ -498017,28 +531530,18 @@ Long Read mapping tools provides all match they found in read dataset, for many sc:softwareHelp ; sc:url "http://wwwabi.snv.jussieu.fr/Yakusa/html/help_general.html" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_0196, - edam:topic_2885, - edam:topic_3168 ; - sc:citation , - "pubmed:31856669" ; - sc:description """Indexing k-mers in linear space for quality value compression. - -YALFF (Yet Another Lossy FASTQ Filter) is a smoother for FASTQ files which uses an FM-Index to store the k-mer database. The compressed index greatly reduces the amount of memory required compared to other tools such as QUARTZ. This is because the dictionary of k-mers can be linearized into contigs. - -||| CORRECT NAME OF TOOL COULD ALSO BE 'memory-inefficient', 'compressibility', 'dictionaries', 'worsened'""" ; - sc:featureList edam:operation_0484, - edam:operation_0524, - edam:operation_3196, - edam:operation_3211, - edam:operation_3472 ; + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:citation ; + sc:description "GPU-Powered Spheroid Models for Mesenchyme and Epithelium" ; + sc:isAccessibleForFree true ; sc:license "MIT" ; - sc:name "yalff_autogenerated" ; - sc:url "https://github.com/yhhshb/yalff" . + sc:name "yalla" ; + sc:softwareVersion "1.0" ; + sc:url "https://github.com/germannp/yalla" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0092, @@ -498063,10 +531566,9 @@ YALFF (Yet Another Lossy FASTQ Filter) is a smoother for FASTQ files which uses a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0849" ; - sc:name "Sequence record" ; - sc:sameAs "http://edamontology.org/data_0849" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0849" ; + sc:name "Sequence record" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3071 ; sc:citation , @@ -498096,7 +531598,7 @@ YALFF (Yet Another Lossy FASTQ Filter) is a smoother for FASTQ files which uses sc:url "http://emboss.open-bio.org/rel/rel6/apps/yank.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0160, edam:topic_3047, @@ -498116,7 +531618,7 @@ YALFF (Yet Another Lossy FASTQ Filter) is a smoother for FASTQ files which uses sc:url "http://www.github.com/bartongroup/yanocomp" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0769, edam:topic_3500 ; @@ -498133,7 +531635,7 @@ Welcome to the yaps repository. The yaps package is based on the original YAPS p sc:url "http://github.com/baktoft/yaps" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0199, @@ -498157,7 +531659,7 @@ Welcome to the yaps repository. The yaps package is based on the original YAPS p biotools:primaryContact "Daniel Huebschmann" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_0203, @@ -498179,7 +531681,7 @@ Welcome to the yaps repository. The yaps package is based on the original YAPS p biotools:primaryContact "Laurent Gatto" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0102 ; sc:citation ; @@ -498195,7 +531697,7 @@ Welcome to the yaps repository. The yaps package is based on the original YAPS p biotools:primaryContact "Enrico Siragusa" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_2269, @@ -498219,7 +531721,7 @@ Welcome to the yaps repository. The yaps package is based on the original YAPS p biotools:primaryContact "Joseph N Paulson" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0602, @@ -498243,7 +531745,7 @@ Welcome to the yaps repository. The yaps package is based on the original YAPS p "Yasara Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0196 ; sc:description "Performs comparative assembly of short reads using a reference genome, which can differ substantially from the genome being sequenced." ; @@ -498254,7 +531756,7 @@ Welcome to the yaps repository. The yaps package is based on the original YAPS p sc:url "http://www.bx.psu.edu/miller_lab/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web service" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -498274,7 +531776,7 @@ Welcome to the yaps repository. The yaps package is based on the original YAPS p biotools:primaryContact "Laurent Noe" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0632, edam:topic_0769, edam:topic_3474 ; @@ -498290,7 +531792,7 @@ Yass ver. 2.0 has now been released and is available in the master branch.""" ; sc:url "https://github.com/paninski-lab/yass" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_3070 ; sc:citation ; @@ -498307,14 +531809,13 @@ Yass ver. 2.0 has now been released and is available in the master branch.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1026" ; - sc:name "Gene symbol" ; - sc:sameAs "http://edamontology.org/data_1026" ] ; + sc:additionalType "http://edamontology.org/data_1026" ; + sc:name "Gene symbol" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0621 ; @@ -498331,7 +531832,7 @@ Yass ver. 2.0 has now been released and is available in the master branch.""" ; sc:url "http://ygob.ucd.ie/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -498353,7 +531854,7 @@ Yass ver. 2.0 has now been released and is available in the master branch.""" ; "Database interface related information" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0218, @@ -498374,7 +531875,7 @@ Yass ver. 2.0 has now been released and is available in the master branch.""" ; biotools:primaryContact "Web Service" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, edam:topic_3382, @@ -498391,14 +531892,13 @@ Yass ver. 2.0 has now been released and is available in the master branch.""" ; a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1807" ; - sc:name "ORF name" ; - sc:sameAs "http://edamontology.org/data_1807" ] ; + sc:additionalType "http://edamontology.org/data_1807" ; + sc:name "ORF name" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0916" ; - sc:name "Gene report" ; - sc:sameAs "http://edamontology.org/data_0916" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_0916" ; + sc:encodingFormat "http://edamontology.org/format_2331" ; + sc:name "Gene report" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0114, edam:topic_0621 ; @@ -498413,8 +531913,24 @@ Yass ver. 2.0 has now been released and is available in the master branch.""" ; sc:softwareHelp ; sc:url "http://yeastgfp.yeastgenome.org/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_2229, + edam:topic_3382 ; + sc:citation ; + sc:description "YeastMate is a tool for the automated detection and segmentation of S. cerevisae cells and their mating and budding events, as well as a subclassification of the cells involved in these events into mother and daughter cells." ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "YeastMate" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "https://github.com/hoerlteam/YeastMate" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2229, edam:topic_3382 ; @@ -498430,7 +531946,7 @@ YeastNet is a library for analysing live-cell fluorescence microscopy of budding sc:url "https://github.com/kaernlab/YeastNet" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0204, @@ -498451,7 +531967,7 @@ YeastNet is a library for analysing live-cell fluorescence microscopy of budding biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0204, edam:topic_0602, @@ -498472,7 +531988,7 @@ YeastNet is a library for analysing live-cell fluorescence microscopy of budding sc:url "http://yeastract-plus.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_3315, edam:topic_3318, @@ -498488,20 +532004,54 @@ Laboratory of the Physics of Biological Systems ‐ EPFL.""" ; sc:name "yeaz" ; sc:url "https://lpbs-nn.epfl.ch/" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_0769 ; + sc:citation ; + sc:description "CLI tool to support building and maintaining Yevis workflow registry." ; + sc:license "Apache-2.0" ; + sc:name "Yevis-cli" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + , + ; + sc:softwareVersion "0.5.4" ; + sc:url "https://github.com/sapporo-wes/yevis-cli" . + + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Web application" ; + sc:applicationSubCategory edam:topic_0769 ; + sc:citation ; + sc:description "Web application for browsing Yevis workflow registry." ; + sc:license "Apache-2.0" ; + sc:name "Yevis-web" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp , + , + ; + sc:softwareVersion "1.2.1" ; + sc:url "https://github.com/sapporo-wes/yevis-web" . + a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2044" ; - sc:name "Sequence" ; - sc:sameAs "http://edamontology.org/data_2044" ] ; + sc:additionalType "http://edamontology.org/data_2044" ; + sc:encodingFormat "http://edamontology.org/format_1929" ; + sc:name "Sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2955" ; - sc:name "Sequence report" ; - sc:sameAs "http://edamontology.org/data_2955" ], + sc:additionalType "http://edamontology.org/data_2955" ; + sc:encodingFormat "http://edamontology.org/format_2333" ; + sc:name "Sequence report" ], [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1277" ; - sc:name "Protein features" ; - sc:sameAs "http://edamontology.org/data_1277" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1277" ; + sc:encodingFormat "http://edamontology.org/format_2330" ; + sc:name "Protein features" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0160 ; @@ -498519,7 +532069,7 @@ Laboratory of the Physics of Biological Systems ‐ EPFL.""" ; biotools:primaryContact "Ramneek Gupta" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_3500 ; sc:citation "pubmed:20507917" ; @@ -498535,7 +532085,7 @@ Laboratory of the Physics of Biological Systems ‐ EPFL.""" ; sc:url "https://abi-services.informatik.uni-tuebingen.de/yloc/webloc.cgi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_3656 ; sc:citation ; @@ -498546,7 +532096,7 @@ Laboratory of the Physics of Biological Systems ‐ EPFL.""" ; sc:url "https://github.com/LancePalmerStJude/YODEL/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_0621, @@ -498564,7 +532114,7 @@ Laboratory of the Physics of Biological Systems ‐ EPFL.""" ; biotools:primaryContact "Jürg Bähler" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0621, edam:topic_2269, edam:topic_3125, @@ -498581,7 +532131,7 @@ In yORIpred, 40 optimal baseline models were constructed by exploring eight diff sc:url "http://thegleelab.org/yORIpred" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_3382, edam:topic_3383, @@ -498597,7 +532147,7 @@ In yORIpred, 40 optimal baseline models were constructed by exploring eight diff sc:url "http://www.youscope.org/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3299, edam:topic_3379, @@ -498618,7 +532168,7 @@ In yORIpred, 40 optimal baseline models were constructed by exploring eight diff sc:url "https://ready4-dev.github.io/youthu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -498641,10 +532191,9 @@ In yORIpred, 40 optimal baseline models were constructed by exploring eight diff a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1009" ; - sc:name "Protein name" ; - sc:sameAs "http://edamontology.org/data_1009" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1009" ; + sc:name "Protein name" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal", "Web application" ; sc:applicationSubCategory edam:topic_0153, @@ -498670,7 +532219,7 @@ In yORIpred, 40 optimal baseline models were constructed by exploring eight diff sc:url "http://cosbi7.ee.ncku.edu.tw/YPIBP/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0121, edam:topic_0203, edam:topic_0602, @@ -498688,7 +532237,7 @@ For each quantitative feature, YQFC provides three statistical tests (t-test, U sc:url "http://cosbi2.ee.ncku.edu.tw/YQFC/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0749, edam:topic_3305, @@ -498706,7 +532255,7 @@ The Youth Risk Behavior Surveillance System (YRBSS) monitors six types of health sc:url "https://www.cdc.gov/healthyyouth/data/yrbs/index.htm" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0114 ; sc:citation , @@ -498723,7 +532272,7 @@ The Youth Risk Behavior Surveillance System (YRBSS) monitors six types of health sc:url "http://www.plantgdb.org/prj/yrGATE/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3382 ; sc:citation , "pmcid:PMC7191716", @@ -498738,8 +532287,27 @@ the gaussian-sum finite impulse response filter used by YSMR.""" ; sc:name "YSMR" ; sc:url "https://github.com/schwanbeck/YSMR" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Library" ; + sc:applicationSubCategory edam:topic_0102, + edam:topic_0199, + edam:topic_0632, + edam:topic_3474 ; + sc:citation ; + sc:description "yuzu is a compressed-sensing based approach for quickly calculating in-silico mutagenesis saliency." ; + sc:featureList edam:operation_0307, + edam:operation_3435 ; + sc:isAccessibleForFree true ; + sc:license "MIT" ; + sc:name "Yuzu" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/kundajelab/yuzu" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_3361 ; sc:citation , "pmcid:PMC7485551", @@ -498750,7 +532318,7 @@ the gaussian-sum finite impulse response filter used by YSMR.""" ; sc:url "https://cler1.gitlab.io/ztree-unleashed-doc/docs/home/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0099, @@ -498767,7 +532335,7 @@ the gaussian-sum finite impulse response filter used by YSMR.""" ; biotools:primaryContact "AD Smith" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0092, @@ -498783,7 +532351,7 @@ the gaussian-sum finite impulse response filter used by YSMR.""" ; sc:url "http://www.uea.ac.uk/computing/zclass-zernike-class-" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0622, edam:topic_0654, @@ -498801,7 +532369,7 @@ the gaussian-sum finite impulse response filter used by YSMR.""" ; biotools:primaryContact "Feng-Biao Guo" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0082, @@ -498817,7 +532385,7 @@ the gaussian-sum finite impulse response filter used by YSMR.""" ; sc:url "http://zlab.umassmed.edu/zdock/index.shtml" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0199, edam:topic_0602, edam:topic_0749, @@ -498834,7 +532402,7 @@ the gaussian-sum finite impulse response filter used by YSMR.""" ; sc:url "https://github.com/rudi2013/ZDOG" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Web application" ; sc:applicationSubCategory edam:topic_0080, @@ -498856,7 +532424,7 @@ the gaussian-sum finite impulse response filter used by YSMR.""" ; "Ingemar André" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0130, edam:topic_0154, edam:topic_0623, @@ -498878,7 +532446,7 @@ The Zebra parameters can be classified into three sections: (1) select positions sc:url "https://biokinet.belozersky.msu.ru/zebra2" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0821, @@ -498901,7 +532469,7 @@ The Zebra parameters can be classified into three sections: (1) select positions biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3383 ; sc:citation ; @@ -498913,7 +532481,7 @@ The Zebra parameters can be classified into three sections: (1) select positions biotools:primaryContact "Darby Tien-Hao Chang" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0621, edam:topic_0625, @@ -498933,19 +532501,30 @@ The Zebra parameters can be classified into three sections: (1) select positions biotools:primaryContact "April DeLaurier", "Jared C. Talbot" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_2640, - edam:topic_3318, - edam:topic_3384 ; - sc:citation , - "pubmed:31461537" ; - sc:description "> VERY_LOW CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'kernels', 'dosimetry', 'dose', 'dose kernels' | Dose point kernels for 2,174 radionuclides | Dose point kernels for 2,174 radionuclides generated using MCNP v6.2. See accompanying article in Medical Physics for further details | February 13, 2019 Dataset Open Access | Graves, Stephen; Flynn, Ryan; Hyer, Daniel | [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2564036.svg)](https://doi.org/10.5281/zenodo.2564036) | Cite all versions? You can cite all versions by using the DOI 10.5281/zenodo.2564035. This DOI represents all versions, and will always resolve to the latest one. Read more" ; - sc:featureList edam:operation_3431 ; - sc:name "zenodo" ; - sc:url "https://zenodo.org/record/2564036" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Plug-in" ; + sc:applicationSubCategory edam:topic_0769, + edam:topic_2229, + edam:topic_3168, + edam:topic_3172, + edam:topic_3382 ; + sc:citation ; + sc:description "A 3D Image Segmentation and Parent to Child relation plugin for microscopy image analysis in napari" ; + sc:featureList edam:operation_0337, + edam:operation_3436, + edam:operation_3443, + edam:operation_3799 ; + sc:isAccessibleForFree true ; + sc:license "BSD-3-Clause" ; + sc:name "ZELDA" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/RoccoDAnt/napari-zelda" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0659, edam:topic_2640, edam:topic_3068, @@ -498963,7 +532542,7 @@ Rapidly accumulating literature has proven feasibility of the zebrafish xenograf sc:url "https://konulab.shinyapps.io/zenofishdb" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0108, edam:topic_0607, edam:topic_3383, @@ -498978,8 +532557,28 @@ ZeroCostDL4Mic is a toolbox for the training and implementation of common Deep L sc:name "ZeroCostDL4Mic" ; sc:url "https://github.com/HenriquesLab/ZeroCostDL4Mic/wiki" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Command-line tool" ; + sc:applicationSubCategory edam:topic_2640, + edam:topic_3170, + edam:topic_3308 ; + sc:citation , + "pmcid:PMC9310463", + "pubmed:35879727" ; + sc:description "Computational analysis of two-dimensional high-throughput data from multi-target screens and single-cell transcriptomics." ; + sc:featureList edam:operation_3435, + edam:operation_3501 ; + sc:isAccessibleForFree true ; + sc:license "Not licensed" ; + sc:name "ZetaSuite" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:url "https://github.com/YajingHao/ZetaSuite" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_2275 ; sc:description "A molecular visualization tool that supports PDB, MOL, MOL2/SYBYL and XYZ file formats. The rendering engine can output high quality molecular graphics." ; @@ -498993,7 +532592,7 @@ ZeroCostDL4Mic is a toolbox for the training and implementation of common Deep L sc:url "http://www.al-nasir.com/www/Jamie/Zeus/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0621, @@ -499014,7 +532613,7 @@ ZeroCostDL4Mic is a toolbox for the training and implementation of common Deep L sc:url "http://zfin.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0199, @@ -499032,7 +532631,7 @@ ZeroCostDL4Mic is a toolbox for the training and implementation of common Deep L biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0160, edam:topic_0196, @@ -499048,7 +532647,7 @@ ZeroCostDL4Mic is a toolbox for the training and implementation of common Deep L sc:url "http://zinc.genomecenter.ucdavis.edu:8080/Plone/zfn-scoresv6" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3170 ; @@ -499072,7 +532671,7 @@ ZeroCostDL4Mic is a toolbox for the training and implementation of common Deep L "Ron Ammar" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0622 ; sc:author ; @@ -499095,7 +532694,7 @@ No High Performance Computing needed. The pipeline works on laptop or desktop."" sc:url "https://github.com/laxeye/zga/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0203, edam:topic_0602, edam:topic_3170, @@ -499112,7 +532711,7 @@ A statistical differential expression analysis method that accounts for both dro sc:url "https://github.com/gefeizhang/ZIAQ" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0196, @@ -499132,7 +532731,7 @@ A statistical differential expression analysis method that accounts for both dro biotools:primaryContact "J.D. Sander" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0218, edam:topic_0602, edam:topic_3071, @@ -499149,7 +532748,7 @@ Zikv-CDB is a collaborative database. Our aim is to gather information about evi sc:url "http://www.zikaknowledgebase.eu" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0602, edam:topic_0749, edam:topic_3512 ; @@ -499161,7 +532760,7 @@ Zikv-CDB is a collaborative database. Our aim is to gather information about evi sc:url "https://zikavid.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Plug-in" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0092, @@ -499182,7 +532781,7 @@ Zikv-CDB is a collaborative database. Our aim is to gather information about evi "Paul Giresi" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3168, @@ -499203,7 +532802,7 @@ Zikv-CDB is a collaborative database. Our aim is to gather information about evi biotools:primaryContact "Davide Risso" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0203, edam:topic_3047, @@ -499220,7 +532819,7 @@ Zikv-CDB is a collaborative database. Our aim is to gather information about evi . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_2275, edam:topic_3047, @@ -499239,7 +532838,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin sc:url "http://zinc20.docking.org" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0078, edam:topic_0130, @@ -499263,7 +532862,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin biotools:primaryContact "Contact Form" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0078 ; sc:citation ; @@ -499278,7 +532877,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Database portal" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0209, @@ -499297,7 +532896,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin biotools:primaryContact "Alberto Massarotti" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0166, @@ -499319,7 +532918,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin biotools:primaryContact "ZINCPharmer Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0199, edam:topic_3053, @@ -499333,7 +532932,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin sc:url "http://www.cs.columbia.edu/~itsik/software/Zinfandel.html" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_2275 ; sc:citation , "pmcid:PMC7523679", @@ -499346,7 +532945,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin sc:url "https://github.com/weng-lab/zing" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Library" ; sc:applicationSubCategory edam:topic_3316 ; sc:description "Library for very fast likelihood computations for hidden Markov models." ; @@ -499362,7 +532961,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin biotools:primaryContact "Andreas Sand Pedersen" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0622, @@ -499377,18 +532976,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin sc:softwareHelp ; sc:url "http://cefg.uestc.edu.cn/Zisland_Explorer/" . - a sc:SoftwareApplication ; - sc:applicationSubCategory edam:topic_3067, - edam:topic_3304, - edam:topic_3314 ; - sc:citation , - "pubmed:31451738" ; - sc:description "> MEDIUM CONFIDENCE! | > CORRECT NAME OF TOOL COULD ALSO BE 'electrocorticographic', 'implanted', 'amplifiers', 'implanted electrocorticographic' | A library of human electrocorticographic data and analyses | A library of human electrocorticographic data and analyses in SearchWorks catalog | Stanford Libraries' official online search tool for books, media, journals, databases, government documents and more | Reporting from: https://searchworks.stanford.edu/view/zk881ps0522 | Electrophysiological data from implanted electrodes in the human brain are rare, and therefore scientific access to it has remained somewhat exclusive" ; - sc:name "zk881ps0522" ; - sc:url "https://searchworks.stanford.edu/view/zk881ps0522" . - a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool", "Library" ; sc:applicationSubCategory edam:topic_3372, @@ -499409,7 +532998,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin biotools:primaryContact "BioConductor Package Maintainer" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0077, edam:topic_0078, @@ -499426,7 +533015,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin sc:url "http://www.zmmsoft.com/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0602, edam:topic_2640, @@ -499442,7 +533031,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin biotools:primaryContact "Support" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0780, edam:topic_3047, @@ -499460,14 +533049,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0848" ; - sc:name "Raw sequence" ; - sc:sameAs "http://edamontology.org/data_0848" ] ; + sc:additionalType "http://edamontology.org/data_0848" ; + sc:encodingFormat "http://edamontology.org/format_2571" ; + sc:name "Raw sequence" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_1274" ; - sc:name "Map" ; - sc:sameAs "http://edamontology.org/data_1274" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_1274" ; + sc:encodingFormat "http://edamontology.org/format_2060" ; + sc:name "Map" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Desktop application" ; sc:applicationSubCategory edam:topic_0102, edam:topic_0622, @@ -499487,14 +533076,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_0968" ; - sc:name "Keyword" ; - sc:sameAs "http://edamontology.org/data_0968" ] ; + sc:additionalType "http://edamontology.org/data_0968" ; + sc:name "Keyword" ] ; bsc:output [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_3509" ; - sc:name "Ontology mapping" ; - sc:sameAs "http://edamontology.org/data_3509" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_3509" ; + sc:name "Ontology mapping" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0089, edam:topic_2259, @@ -499518,7 +533105,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin biotools:primaryContact . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0128, edam:topic_0602, @@ -499536,10 +533123,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2976" ; - sc:name "Protein sequence" ; - sc:sameAs "http://edamontology.org/data_2976" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2976" ; + sc:name "Protein sequence" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0154, edam:topic_0166, @@ -499561,7 +533147,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin sc:url "http://zoomQA.renzhitech.com" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0622 ; sc:citation ; @@ -499576,8 +533162,31 @@ ZINC is a free database of commercially-available compounds for virtual screenin "Marcelo Carazzole", "Ramon Vidal" . + a sc:SoftwareApplication ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "Database portal", + "Web application" ; + sc:applicationSubCategory edam:topic_0621, + edam:topic_0781, + edam:topic_3305, + edam:topic_3324, + edam:topic_3500 ; + sc:citation , + "pmcid:PMC8728136", + "pubmed:34634795" ; + sc:description "The database of zoonotic and vector-borne viruses." ; + sc:featureList edam:operation_0324, + edam:operation_2421 ; + sc:isAccessibleForFree true ; + sc:name "ZOVER" ; + sc:operatingSystem "Linux", + "Mac", + "Windows" ; + sc:softwareHelp ; + sc:url "http://www.mgc.ac.cn/ZOVER" . + a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0203, @@ -499598,7 +533207,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin biotools:primaryContact "Lisa Stubbs" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3524 ; sc:citation ; @@ -499612,10 +533221,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:SoftwareApplication ; bsc:input [ a bsct:FormalParameter ; - sc:identifier "http://edamontology.org/data_2082" ; - sc:name "Matrix" ; - sc:sameAs "http://edamontology.org/data_2082" ] ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + sc:additionalType "http://edamontology.org/data_2082" ; + sc:name "Matrix" ] ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_3473 ; sc:citation ; @@ -499632,7 +533240,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin sc:url "http://bioinformatics.psb.ugent.be/software/details/ZT" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Command-line tool" ; sc:applicationSubCategory edam:topic_0080, edam:topic_0102, @@ -499650,7 +533258,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin "Swati Parekh" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Script" ; sc:applicationSubCategory edam:topic_0196, edam:topic_0659, @@ -499673,12 +533281,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin sc:url "https://github.com/ndovro/ZWA/" . a sc:SoftwareApplication ; - dcterms:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; + dct:conformsTo "https://bioschemas.org/profiles/ComputationalTool/0.6-DRAFT" ; sc:additionalType "Web application" ; sc:applicationSubCategory edam:topic_0080, edam:topic_2269, edam:topic_3053 ; - sc:citation "pubmed:1661148" ; + sc:citation ; sc:description "Processes convenient and accurate zygosity probability calculation." ; sc:featureList edam:operation_0236 ; sc:name "ZygProb" ; @@ -499688,709 +533296,709 @@ ZINC is a free database of commercially-available compounds for virtual screenin sc:softwareHelp ; sc:url "http://neurogenetics.qimrberghofer.edu.au/ZygProb/" . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a sc:CreativeWork . + a . a sc:CreativeWork . @@ -500406,6 +534014,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500450,14 +534062,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500478,6 +534088,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500492,11 +534104,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500514,10 +534124,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500526,14 +534142,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -500550,8 +534166,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500562,6 +534192,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500574,14 +534208,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500594,6 +534228,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500628,17 +534266,21 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500648,8 +534290,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -500702,11 +534342,11 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500714,10 +534354,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -500738,8 +534374,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -500754,10 +534388,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500782,11 +534416,13 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500802,6 +534438,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500812,6 +534452,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500822,6 +534468,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500838,6 +534486,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500848,8 +534502,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -500862,8 +534514,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500884,6 +534542,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500894,20 +534554,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -500922,6 +534572,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500930,8 +534582,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500946,6 +534602,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500954,14 +534612,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -500976,12 +534642,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501016,10 +534686,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501044,6 +534720,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501092,6 +534770,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501102,6 +534784,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501112,12 +534800,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501228,10 +534922,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501292,6 +534990,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501310,10 +535014,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501334,6 +535042,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501360,12 +535070,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -501444,10 +535152,44 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501460,6 +535202,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501470,6 +535214,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501524,6 +535270,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501544,8 +535292,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -501562,6 +535308,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501578,6 +535326,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501594,8 +535344,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -501632,8 +535380,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501646,6 +535400,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501728,30 +535484,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -501770,6 +535510,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501780,11 +535522,11 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501804,18 +535546,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501824,8 +535566,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -501840,6 +535580,20 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501848,12 +535602,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -501878,19 +535626,27 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501900,7 +535656,13 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -501912,9 +535674,15 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -501926,9 +535694,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501938,13 +535706,13 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -501974,14 +535742,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -502018,28 +535790,50 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -502082,12 +535876,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -502098,6 +535898,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -502176,6 +535978,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -502208,7 +536012,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -502232,8 +536036,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -502254,6 +536056,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -502264,8 +536068,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -502276,8 +536078,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -502288,29 +536088,45 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -502326,31 +536142,25 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -502360,8 +536170,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -502380,6 +536188,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -502416,24 +536226,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -502460,6 +536264,24 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -502472,10 +536294,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -502500,6 +536318,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -502510,16 +536338,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -502568,7 +536392,49 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -502580,8 +536446,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -502684,47 +536548,99 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -502732,16 +536648,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -502752,7 +536662,11 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -502760,14 +536674,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -502778,7 +536694,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -502786,6 +536702,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -502794,8 +536712,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -502806,8 +536722,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -502822,9 +536736,11 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -502880,13 +536796,29 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -502904,12 +536836,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -502920,8 +536852,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -502930,6 +536860,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -502940,6 +536872,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -502964,11 +536898,15 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -502980,8 +536918,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -502994,7 +536930,15 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -503014,6 +536958,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503032,6 +536978,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503074,12 +537022,56 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503096,14 +537088,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -503114,8 +537106,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -503136,12 +537126,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -503154,16 +537148,30 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503186,10 +537194,28 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503202,6 +537228,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503214,6 +537242,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503234,6 +537264,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503256,12 +537290,30 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503288,12 +537340,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503312,15 +537374,19 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503334,10 +537400,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503348,11 +537414,11 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503360,18 +537426,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -503380,23 +537446,41 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -503426,6 +537510,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503456,10 +537548,26 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503496,8 +537604,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503532,6 +537644,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503540,8 +537654,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503610,6 +537730,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503618,6 +537740,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503636,6 +537760,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503666,10 +537792,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503680,16 +537814,26 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503712,6 +537856,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503726,6 +537872,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503740,6 +537888,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503810,6 +537962,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503830,6 +537984,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503852,6 +538008,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -503964,6 +538124,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504022,6 +538184,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504034,6 +538198,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504064,8 +538230,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504092,12 +538262,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504118,37 +538292,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504156,9 +538302,11 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504214,6 +538362,28 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504230,12 +538400,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -504248,8 +538414,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -504258,6 +538422,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504394,6 +538562,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504406,6 +538576,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504416,12 +538592,64 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504460,8 +538688,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504470,6 +538702,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504478,10 +538712,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -504492,10 +538722,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -504504,20 +538730,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -504556,16 +538776,24 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504578,6 +538806,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504588,8 +538822,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -504686,6 +538918,24 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504704,16 +538954,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -504730,12 +538974,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504756,6 +539002,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504770,8 +539022,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -504788,6 +539038,20 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504796,8 +539060,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -504812,6 +539074,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504832,6 +539096,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504876,6 +539142,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504896,10 +539164,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504912,6 +539184,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -504920,6 +539194,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505008,6 +539284,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505016,6 +539294,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505088,6 +539368,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505100,14 +539382,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -505128,17 +539402,23 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505158,6 +539438,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505244,16 +539526,32 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -505262,8 +539560,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -505274,6 +539570,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505296,31 +539598,29 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -505328,18 +539628,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -505400,6 +539698,34 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505408,10 +539734,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505450,42 +539776,40 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -505522,6 +539846,38 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505542,9 +539898,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505562,14 +539916,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -505578,8 +539932,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -505592,10 +539944,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -505618,8 +539966,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -505636,6 +539982,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505752,8 +540100,30 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505804,8 +540174,44 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505816,6 +540222,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505824,6 +540232,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505886,6 +540304,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505894,6 +540314,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -505902,22 +540324,26 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506010,6 +540436,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506026,6 +540454,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506064,6 +540494,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506108,14 +540540,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -506284,24 +540718,36 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506354,6 +540800,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506364,6 +540812,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506380,12 +540830,24 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506394,6 +540856,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506402,6 +540866,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506458,8 +540926,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506484,12 +540958,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506562,6 +541040,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506600,22 +541082,36 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506630,6 +541126,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506642,8 +541142,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506674,14 +541178,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -506692,6 +541192,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506706,6 +541208,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506714,10 +541220,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506730,28 +541242,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506794,6 +541296,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506804,14 +541308,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -506832,6 +541340,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506862,6 +541376,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506884,6 +541400,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506892,8 +541410,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -506904,6 +541420,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -506960,21 +541478,17 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -506990,28 +541504,24 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -507028,12 +541538,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -507042,22 +541556,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -507084,34 +541594,36 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -507158,33 +541670,35 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -507194,28 +541708,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -507234,22 +541738,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -507292,6 +541792,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -507310,6 +541812,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -507674,6 +542178,212 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -507694,8 +542404,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -507706,7 +542414,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -507718,10 +542426,32 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -508820,6 +543550,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509106,6 +543838,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509118,14 +543852,20 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509152,10 +543892,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509166,12 +543910,582 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509326,6 +544640,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509348,8 +544664,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509366,6 +544686,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509394,8 +544716,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509408,14 +544734,20 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509506,12 +544838,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509532,6 +544868,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509548,10 +544886,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509582,6 +544924,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509592,6 +544936,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509602,26 +544948,26 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -509630,11 +544976,13 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509642,12 +544990,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -509660,6 +545008,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509672,15 +545022,13 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509698,6 +545046,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509720,6 +545070,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509762,6 +545114,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509790,8 +545144,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -509800,6 +545152,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509812,7 +545166,11 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -509822,8 +545180,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -509836,20 +545192,24 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509864,12 +545224,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -509878,6 +545238,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509888,18 +545250,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -509912,6 +545278,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509924,15 +545292,13 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509942,6 +545308,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -509960,8 +545328,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -509974,6 +545340,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -510022,10 +545390,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -510034,16 +545408,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -510206,8 +545582,86 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -510226,8 +545680,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -510236,12 +545688,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -510254,23 +545706,21 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -510280,7 +545730,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -510348,6 +545798,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -510358,12 +545810,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -510384,28 +545842,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -510416,6 +545862,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -510438,7 +545886,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -510462,15 +545912,13 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -510480,12 +545928,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -510502,23 +545956,31 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -510556,15 +546018,21 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -510572,16 +546040,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -510594,6 +546060,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -510610,10 +546082,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -510632,6 +546100,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -510972,10 +546442,98 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511136,6 +546694,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511144,6 +546704,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511162,6 +546726,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511170,10 +546736,274 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511262,6 +547092,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511312,15 +547144,13 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511340,40 +547170,24 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -511504,18 +547318,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -511526,8 +547332,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -511548,6 +547352,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511560,8 +547366,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -511570,6 +547374,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511586,8 +547392,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -511622,14 +547426,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -511644,7 +547446,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511660,7 +547462,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -511674,27 +547478,23 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511750,53 +547550,61 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511806,17 +547614,29 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511824,6 +547644,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511836,15 +547660,19 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511852,6 +547680,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511864,6 +547698,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511872,12 +547712,24 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511900,6 +547752,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511910,12 +547764,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511924,6 +547784,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511946,20 +547808,30 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -511982,6 +547854,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512004,6 +547878,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512066,6 +547942,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512098,10 +547976,54 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512114,6 +548036,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512134,6 +548058,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512144,6 +548070,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512192,16 +548120,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512270,6 +548204,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512284,6 +548220,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512294,6 +548232,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512320,12 +548260,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512368,6 +548312,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512386,6 +548332,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512512,6 +548460,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512556,6 +548506,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512598,6 +548550,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512648,12 +548602,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512688,6 +548646,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512738,6 +548698,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512816,6 +548778,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512900,6 +548864,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512930,6 +548896,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -512974,6 +548942,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -513066,6 +549036,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -513144,6 +549116,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -513226,6 +549200,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -513236,6 +549212,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -513296,6 +549274,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -513376,6 +549356,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -513438,6 +549420,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -513662,6 +549646,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -513710,6 +549696,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -513740,12 +549728,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -513784,6 +549778,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -513858,6 +549854,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -514016,6 +550014,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -514378,8 +550378,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -514470,8 +550474,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -514780,6 +550782,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -514894,6 +550898,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515058,12 +551064,20 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515090,6 +551104,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515132,10 +551148,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515146,6 +551166,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515154,6 +551176,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515242,6 +551268,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515296,7 +551324,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -515306,12 +551336,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515324,16 +551364,26 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515342,16 +551392,30 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515364,14 +551428,24 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515384,6 +551458,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515418,14 +551494,26 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515434,22 +551522,38 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515478,12 +551582,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515510,8 +551620,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515522,6 +551640,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515532,6 +551652,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515554,6 +551676,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515568,12 +551692,20 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515598,12 +551730,20 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515612,6 +551752,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515644,6 +551786,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515652,6 +551796,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515664,6 +551810,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515680,6 +551830,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515694,14 +551848,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515730,6 +551892,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515742,6 +551906,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515768,9 +551934,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515818,6 +551984,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515848,12 +552016,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515916,16 +552088,26 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515942,6 +552124,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515950,6 +552136,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515964,8 +552152,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -515974,6 +552166,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516080,6 +552274,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516092,8 +552288,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516118,6 +552318,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516184,16 +552388,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516202,8 +552412,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516214,6 +552430,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516240,6 +552458,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516260,6 +552480,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516374,6 +552596,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516386,6 +552610,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516402,8 +552628,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516414,6 +552646,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516454,6 +552688,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516480,13 +552716,21 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -516526,6 +552770,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516552,6 +552798,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516560,12 +552808,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516678,6 +552932,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516690,14 +552946,30 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516780,8 +553052,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -516796,6 +553066,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516836,6 +553108,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516856,30 +553130,50 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516890,6 +553184,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516900,12 +553196,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516914,14 +553216,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -516934,64 +553244,38 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -517004,15 +553288,19 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -517034,6 +553322,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -517190,50 +553484,40 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -517246,8 +553530,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -517260,8 +553542,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -517272,8 +553552,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -517288,14 +553566,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -517320,28 +553596,20 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -517352,14 +553620,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -518402,8 +554668,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -518548,8 +554812,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -519342,8 +555604,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -519472,8 +555732,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -519556,8 +555814,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -519906,8 +556162,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -520320,8 +556574,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -520852,8 +557104,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -520894,6 +557144,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -521206,12 +557458,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -521228,12 +557484,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -521246,10 +557506,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -521258,6 +557526,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -521272,6 +557542,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -521284,6 +557556,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -521308,28 +557582,42 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -521342,16 +557630,394 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -521376,6 +558042,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -521386,8 +558054,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -521442,6 +558108,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -521706,27 +558374,21 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -521736,14 +558398,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -521770,26 +558428,24 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -521800,42 +558456,28 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -521850,8 +558492,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -521862,8 +558502,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -521872,10 +558510,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -521884,7 +558518,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -521900,9 +558534,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -521918,8 +558550,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -521928,24 +558558,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -521958,6 +558578,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -521974,8 +558596,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522002,6 +558622,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522046,22 +558668,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522076,14 +558694,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522100,22 +558714,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522126,12 +558732,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522156,8 +558766,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522168,6 +558776,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522176,34 +558786,26 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522214,8 +558816,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522226,8 +558826,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522246,28 +558844,26 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522284,8 +558880,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522302,8 +558896,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522324,6 +558916,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522332,16 +558926,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522350,6 +558942,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522358,8 +558952,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522370,15 +558962,13 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522398,7 +558988,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522418,26 +559008,20 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522464,9 +559048,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522474,20 +559058,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522518,12 +559094,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522538,7 +559110,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522558,8 +559130,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522596,8 +559166,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522612,15 +559186,15 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -522630,22 +559204,26 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522664,24 +559242,24 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522726,8 +559304,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522750,8 +559326,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522778,16 +559352,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522796,10 +559370,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522824,10 +559400,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522836,8 +559408,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -522886,6 +559456,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522924,16 +559502,26 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522962,6 +559550,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -522992,6 +559582,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523008,10 +559600,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523074,6 +559670,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523104,6 +559702,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523120,10 +559720,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523138,6 +559744,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523170,24 +559778,26 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523210,6 +559820,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523224,15 +559836,29 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -523244,6 +559870,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523264,8 +559892,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523274,6 +559906,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523290,8 +559924,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -523316,6 +559948,26 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523326,21 +559978,21 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523388,8 +560040,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -523402,8 +560052,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -523414,8 +560062,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -523492,9 +560138,37 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -523502,21 +560176,23 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523570,6 +560246,32 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523578,8 +560280,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -523614,8 +560314,28 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523644,9 +560364,19 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523656,8 +560386,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -523698,6 +560426,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523708,15 +560446,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523724,16 +560456,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -523752,6 +560478,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523774,6 +560506,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523782,14 +560516,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -523846,6 +560574,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523872,33 +560602,35 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -523908,8 +560640,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -523920,44 +560650,30 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -523970,12 +560686,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -523988,8 +560700,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -523998,15 +560708,17 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524022,12 +560734,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524038,8 +560752,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -524048,6 +560760,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524068,9 +560782,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524088,6 +560802,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524112,6 +560828,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524144,16 +560862,28 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524168,12 +560898,20 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524214,20 +560952,26 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524248,6 +560992,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524268,10 +561014,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524280,6 +561026,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524294,6 +561046,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524302,19 +561056,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524324,20 +561068,24 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524348,14 +561096,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -524380,6 +561124,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524412,6 +561160,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524420,10 +561170,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524436,6 +561186,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524460,6 +561212,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524484,8 +561238,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -524494,12 +561246,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -524512,12 +561260,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -524528,14 +561278,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -524560,13 +561310,13 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524584,6 +561334,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524598,17 +561350,15 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524618,9 +561368,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524632,9 +561382,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524660,22 +561410,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -524758,6 +561504,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524792,6 +561540,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524814,8 +561564,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524846,6 +561600,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524894,6 +561650,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -524918,6 +561676,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525012,6 +561772,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525068,8 +561830,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525078,12 +561844,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525198,6 +561968,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525206,6 +561978,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525224,6 +561998,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525248,6 +562024,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525266,6 +562046,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525280,6 +562062,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525300,6 +562084,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525332,6 +562118,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525346,6 +562134,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525354,6 +562146,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525408,6 +562202,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525416,6 +562212,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525478,16 +562276,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525516,6 +562320,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525526,6 +562332,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525562,6 +562370,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525588,7 +562398,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525600,6 +562410,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525608,6 +562420,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525618,8 +562432,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -525672,6 +562484,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -525752,14 +562566,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -525884,14 +562698,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -525910,9 +562720,13 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -525922,14 +562736,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -525980,30 +562794,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -526012,12 +562812,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -526032,12 +562832,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -526046,12 +562846,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -526086,10 +562882,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -526102,30 +562894,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -526138,6 +562922,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -526148,10 +562934,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -526160,8 +562942,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -526178,12 +562958,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -526210,6 +562986,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -526858,12 +563636,274 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -526874,6 +563914,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -526952,30 +563994,24 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -526992,16 +564028,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527016,8 +564050,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -527036,8 +564068,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -527186,10 +564216,56 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527204,21 +564280,27 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -527240,9 +564322,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527256,11 +564336,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527272,16 +564350,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527298,15 +564372,21 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -527316,6 +564396,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527330,18 +564416,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -527356,7 +564442,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527368,40 +564454,40 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527418,9 +564504,11 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527432,6 +564520,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527442,6 +564532,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527450,6 +564542,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527502,7 +564596,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527510,6 +564604,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527530,6 +564626,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527546,8 +564644,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -527566,14 +564662,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527684,10 +564782,80 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527710,6 +564878,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527750,11 +564920,17 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -527764,6 +564940,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527794,15 +564972,13 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527844,7 +565020,35 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -527858,11 +565062,19 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527872,33 +565084,35 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527914,6 +565128,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527934,6 +565150,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527980,6 +565198,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -527992,6 +565212,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -528016,6 +565238,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -528060,6 +565284,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -528196,6 +565422,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -528228,6 +565456,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -528458,6 +565688,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -528562,6 +565794,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -528576,6 +565810,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -528594,6 +565830,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -528766,8 +566006,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -528786,8 +566024,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -528802,10 +566038,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -528936,6 +566184,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529030,6 +566282,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529064,6 +566320,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529244,10 +566502,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529260,8 +566522,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529274,6 +566540,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529300,6 +566568,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529324,6 +566594,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529440,6 +566712,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529508,6 +566782,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529528,6 +566810,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529536,6 +566822,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529550,6 +566838,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529576,6 +566866,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529586,8 +566878,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -529598,50 +566888,50 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -529654,24 +566944,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -529714,12 +566998,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529786,6 +567074,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529820,10 +567110,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529836,10 +567134,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529850,6 +567152,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -529892,6 +567198,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530018,6 +567326,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530034,6 +567344,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530058,18 +567370,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530080,7 +567392,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530092,8 +567404,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -530104,6 +567414,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530144,6 +567456,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530180,8 +567494,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -530194,8 +567506,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -530210,8 +567520,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -530224,6 +567532,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530382,6 +567694,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530392,10 +567706,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530406,10 +567724,82 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530420,13 +567810,15 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530520,7 +567912,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530542,6 +567934,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530560,31 +567954,31 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530592,17 +567986,13 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530610,8 +568000,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -530626,14 +568014,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -530644,10 +568028,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -530740,6 +568120,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530792,8 +568174,70 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530832,6 +568276,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530866,8 +568312,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -530984,6 +568434,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531056,6 +568508,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531068,12 +568524,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531084,6 +568544,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531150,6 +568612,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531174,6 +568638,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531182,6 +568650,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531234,6 +568704,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531242,6 +568714,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531328,6 +568804,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531338,6 +568816,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531356,6 +568836,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531396,6 +568878,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531414,12 +568898,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531482,6 +568970,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531518,6 +569008,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531548,6 +569040,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531582,6 +569076,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531596,9 +569092,13 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531606,7 +569106,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531616,11 +569116,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531646,14 +569144,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531674,20 +569172,28 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531706,6 +569212,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531720,14 +569230,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531738,6 +569248,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531808,24 +569322,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -531844,6 +569350,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531852,17 +569360,15 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531880,6 +569386,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531892,12 +569400,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -531910,90 +569422,36 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -532040,6 +569498,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -532066,18 +569528,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -532088,12 +569544,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -532112,6 +569574,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -532120,6 +569584,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -532184,24 +569650,42 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -532380,6 +569864,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -532408,20 +569894,32 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -532438,22 +569936,20 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -532470,9 +569966,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -532486,7 +569980,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -532498,38 +569994,32 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -532542,14 +570032,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -532580,11 +570066,11 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -532616,40 +570102,28 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -532776,12 +570250,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -532794,36 +570264,30 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -532834,16 +570298,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -532864,31 +570330,21 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -532898,17 +570354,39 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -532956,6 +570434,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -532982,7 +570468,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -532998,14 +570486,38 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533018,20 +570530,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -533048,6 +570554,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533062,8 +570570,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -533076,22 +570582,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -533236,20 +570738,104 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533264,6 +570850,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533272,12 +570874,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -533316,6 +570928,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533330,38 +570958,62 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -533370,8 +571022,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -533396,6 +571046,30 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533418,13 +571092,19 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -533446,12 +571126,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -533468,7 +571158,13 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -533482,6 +571178,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533518,33 +571218,29 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533552,6 +571248,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533594,6 +571292,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533652,6 +571352,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533686,8 +571388,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533698,11 +571414,19 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533714,20 +571438,26 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533736,6 +571466,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533748,8 +571486,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -533772,13 +571508,23 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -533788,9 +571534,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533798,8 +571544,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -533844,18 +571588,50 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533872,6 +571648,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533882,9 +571668,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -533906,9 +571690,15 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -533916,32 +571706,28 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -533952,24 +571738,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534004,11 +571772,11 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534018,6 +571786,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534030,14 +571800,22 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534066,6 +571844,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534078,6 +571858,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534098,6 +571880,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534114,22 +571898,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534168,18 +571940,28 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534192,50 +571974,26 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534246,6 +572004,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534254,6 +572016,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534264,6 +572028,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534278,18 +572044,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534310,6 +572066,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534326,8 +572084,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534336,9 +572092,13 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534346,20 +572106,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534422,33 +572174,27 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534460,7 +572206,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534478,40 +572224,46 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534528,25 +572280,11 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534556,8 +572294,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534568,16 +572304,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534586,32 +572312,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534622,13 +572332,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534638,16 +572344,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534656,8 +572352,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534670,32 +572364,16 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534704,8 +572382,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534716,28 +572392,20 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534748,14 +572416,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534768,8 +572436,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534782,8 +572448,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -534814,12 +572478,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534856,6 +572526,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534902,6 +572578,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534910,6 +572588,34 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -534930,9 +572636,11 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -534944,16 +572652,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -535004,8 +572706,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -535090,2052 +572798,2167 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person, - . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Organization . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Organization . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -537145,6 +574968,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -537155,16 +574980,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -537173,9 +574992,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -537183,28 +575000,12 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -537213,6 +575014,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -537231,43 +575034,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -537289,6 +575058,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -537301,137 +575072,29 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -537441,40 +575104,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -537563,6 +575196,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -537579,8 +575214,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -537589,10 +575222,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -537619,8 +575256,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -537637,6 +575272,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -537651,8 +575288,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -537701,7 +575336,9 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . a sc:CreativeWork . @@ -537717,7 +575354,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -537725,22 +575362,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -537751,96 +575374,18 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -537855,16 +575400,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -537877,16 +575414,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -537921,66 +575448,14 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -538001,6 +575476,10 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -538015,55 +575494,11 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -538089,322 +575524,290 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . - - a sc:CreativeWork . - - a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a sc:CreativeWork . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a sc:CreativeWork . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a , + . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Organization, - schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . + + a . a sc:CreativeWork . @@ -538414,6 +575817,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -538426,8 +575831,6 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a sc:CreativeWork . - a sc:CreativeWork . a sc:CreativeWork . @@ -538462,6 +575865,8 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . + a sc:CreativeWork . + a sc:CreativeWork . a sc:CreativeWork . @@ -538472,71 +575877,79 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . + + a . + + a . + + a . + + a . a sc:CreativeWork . @@ -538574,45 +575987,57 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a schema:Person . + a . + + a . + + a . + + a . + + a . + + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . + + a . a sc:CreativeWork . @@ -538630,30 +576055,35 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person, - . + a . + + a . + + a . + + a . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . a sc:CreativeWork . @@ -538661,7 +576091,7 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a schema:Person . + a . a sc:CreativeWork . @@ -538669,11 +576099,11 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . a sc:CreativeWork . @@ -538683,11 +576113,11 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . + a . a sc:CreativeWork . @@ -538695,33 +576125,37 @@ ZINC is a free database of commercially-available compounds for virtual screenin a sc:CreativeWork . - a schema:Person . + a . a sc:CreativeWork . - a schema:Person . + a . - a schema:Person . + a . - a schema:Person . - - a schema:Person . + a . a sc:CreativeWork . - a schema:Person . + a . + + a . - a schema:Person . + a . + + a . a sc:CreativeWork . - a schema:Person . + a . + + a . - a schema:Organization . + a sc:CreativeWork . - a schema:Person . + a . - a schema:Person . + a . a sc:CreativeWork . diff --git a/config.py b/config.py index ccf6d0ae..8c39e471 100644 --- a/config.py +++ b/config.py @@ -10,6 +10,7 @@ class Config(object): # You have to config your apikey for bioportal in a separate .env file that must not be in git # e.g. BIOPORTAL_APIKEY='xxxxxx-xxxxx-xxxx-xxxx-xxxxxxxx' BIOPORTAL_APIKEY = environ.get("BIOPORTAL_APIKEY") + GITHUB_TOKEN = environ.get("GITHUB_TOKEN") DEBUG = False TESTING = False # SERVER_NAME = "0.0.0.0:5000" diff --git a/environment.yml b/environment.yml index 2daf708d..818e2ced 100644 --- a/environment.yml +++ b/environment.yml @@ -9,7 +9,7 @@ dependencies: - Flask-Cors==3.0.10 - Flask-SocketIO==5.1.1 - Flask-Caching==1.10.1 - - rdflib==6.1.1 + - rdflib==6.2.0 - rich==10.12.0 - pyshacl==0.17.3 - selenium==3.141.0 @@ -33,5 +33,6 @@ dependencies: - sphinx_rtd_theme - APScheduler - werkzeug==2.0.3 + - pyyaml - pip: - - extruct==0.13.0 + - extruct==0.13.0 diff --git a/launch_dev.sh b/launch_dev.sh index 9e9c908d..87a4134e 100755 --- a/launch_dev.sh +++ b/launch_dev.sh @@ -2,7 +2,25 @@ echo "ENV is set to: " export FLASK_ENV=development printenv FLASK_ENV + +if [ "$1" = 'bs_update' ] +then + update=True +else + update=False +fi + +echo $1 +echo $update + +# exec gunicorn 'app:app(update="$update")' #exec source activate fair-checker-webapp -exec gunicorn -b 0.0.0.0:5000 --reload --access-logfile - --error-logfile - app:app --worker-class eventlet -w 1 +exec gunicorn -b 0.0.0.0:5000 \ +--reload \ +--access-logfile \ +- --error-logfile - app:app \ +--worker-class eventlet \ +-w 1 \ +--timeout 120 # supervisord -c supervisord.conf #exec source activate fair-checker-webapp && python3 app.py diff --git a/metrics/FAIRMetricsFactory.py b/metrics/FAIRMetricsFactory.py index 61444d89..fec4e7d1 100644 --- a/metrics/FAIRMetricsFactory.py +++ b/metrics/FAIRMetricsFactory.py @@ -36,7 +36,7 @@ def get_metric( @staticmethod def get_FC_metrics(): - fc_metrics_list = { + fc_metrics = { F1A_Impl().get_name(): F1A_Impl(), F1B_Impl().get_name(): F1B_Impl(), F2A_Impl().get_name(): F2A_Impl(), @@ -49,6 +49,23 @@ def get_FC_metrics(): R12_Impl().get_name(): R12_Impl(), R13_Impl().get_name(): R13_Impl(), } + return fc_metrics + + @staticmethod + def get_FC_impl(web_resource=None): + fc_metrics_list = [ + F1A_Impl(web_resource), + F1B_Impl(web_resource), + F2A_Impl(web_resource), + F2B_Impl(web_resource), + A11_Impl(web_resource), + I1_Impl(web_resource), + I2_Impl(web_resource), + I3_Impl(web_resource), + R11_Impl(web_resource), + R12_Impl(web_resource), + R13_Impl(web_resource), + ] return fc_metrics_list @staticmethod diff --git a/metrics/FairCheckerExceptions.py b/metrics/FairCheckerExceptions.py index 301b8e4d..3c5f6acd 100644 --- a/metrics/FairCheckerExceptions.py +++ b/metrics/FairCheckerExceptions.py @@ -8,3 +8,15 @@ class NotYetImplementedException(FairCheckerException): """Base class for FAIR-Checker exceptions.""" pass + + +class BioschemasProfileException(FairCheckerException): + """Base class for FAIR-Checker exceptions.""" + + pass + + +class BioschemasProfileNotFoundException(BioschemasProfileException): + """Base class for FAIR-Checker exceptions.""" + + pass diff --git a/metrics/WebResource.py b/metrics/WebResource.py index c3e2cbb6..8965265b 100644 --- a/metrics/WebResource.py +++ b/metrics/WebResource.py @@ -16,9 +16,12 @@ ) import json import os +from json.decoder import JSONDecodeError from metrics.util import clean_kg_excluding_ns_prefix +logger = logging.getLogger("DEV") + class WebResource: prefs = { @@ -28,16 +31,11 @@ class WebResource: } base_path = Path(__file__).parent.parent # current directory - static_file_path = "file://" + str( - (base_path / "static/data/jsonldcontext.json").resolve() - ) chrome_options = Options() chrome_options.add_argument("--headless") chrome_options.add_argument("--no-sandbox") - # chrome_options.add_experimental_option( - # "prefs", prefs - # ) + proxy = os.getenv("HTTP_PROXY") if proxy: chrome_options.add_argument("--proxy-server=" + proxy) @@ -60,12 +58,12 @@ def __init__(self, url, rdf_graph=None) -> None: if rdf_graph is None: # get static RDF metadata (already available in html sources) kg_1 = self.extract_rdf_extruct(self.url) - - if "html" in self.content_type: - logging.info("Resource content_type is HTML") - # get dynamic RDF metadata (generated from JS) - kg_2 = WebResource.extract_rdf_selenium(self.url) - self.rdf = kg_1 + kg_2 + if self.content_type: + if ("html" in self.content_type) or ("ld+json" in self.content_type): + logging.info("Resource content_type is HTML") + # get dynamic RDF metadata (generated from JS) + kg_2 = WebResource.extract_rdf_selenium(self.url) + self.rdf = kg_1 + kg_2 else: self.rdf = kg_1 else: @@ -102,8 +100,10 @@ def retrieve_html_selenium(self): self.browser_selenium = browser def retrieve_html_request(self): - while True: + nb_retry = 0 + while nb_retry < 3: try: + nb_retry += 1 response = requests.get(url=self.url, timeout=10, verify=False) break except SSLError: @@ -121,8 +121,11 @@ def retrieve_html_request(self): # @staticmethod def extract_rdf_extruct(self, url) -> ConjunctiveGraph: - while True: + nb_retry = 0 + response = None + while nb_retry < 3: try: + nb_retry += 1 response = requests.get(url=url, timeout=10, verify=False) break except SSLError: @@ -135,6 +138,10 @@ def extract_rdf_extruct(self, url) -> ConjunctiveGraph: print("ConnectionError, retrying...") time.sleep(10) + if not response: + logger.error(f"Could not get HTML doc from {url}") + return ConjunctiveGraph() + self.status_code = response.status_code self.content_type = response.headers["Content-Type"] html_source = response.content @@ -143,53 +150,78 @@ def extract_rdf_extruct(self, url) -> ConjunctiveGraph: html_source, syntaxes=["microdata", "rdfa", "json-ld"], errors="ignore" ) - kg = ConjunctiveGraph() + kg_jsonld = ConjunctiveGraph() + + # kg = ConjunctiveGraph() if "json-ld" in data.keys(): for md in data["json-ld"]: - if "@context" in md.keys(): - if ("https://schema.org" in md["@context"]) or ( - "http://schema.org" in md["@context"] - ): - md["@context"] = self.static_file_path - kg.parse( - data=json.dumps(md, ensure_ascii=False), - format="json-ld", - publicID=url, - ) + + try: + kg_jsonld.parse( + data=md, + format="json-ld", + publicID=url, + ) + except UnicodeDecodeError as unicode_error: + logger.error( + f"Cannot parse RDF from {url} due to UnicodeDecodeError" + ) + logger.error(unicode_error) + except json.JSONDecodeError as json_error: + logger.error(f"Cannot parse RDF from {url} due to JSONDecodeError") + logger.error(json_error) + + kg_rdfa = ConjunctiveGraph() + if "rdfa" in data.keys(): for md in data["rdfa"]: - if "@context" in md.keys(): - if ("https://schema.org" in md["@context"]) or ( - "http://schema.org" in md["@context"] - ): - md["@context"] = self.static_file_path - kg.parse( - data=json.dumps(md, ensure_ascii=False), - format="json-ld", - publicID=url, - ) + + try: + kg_rdfa.parse( + data=json.dumps(md, ensure_ascii=False), + format="json-ld", + publicID=url, + ) + except UnicodeDecodeError as unicode_error: + logger.error( + f"Cannot parse RDF from {url} due to UnicodeDecodeError" + ) + logger.error(unicode_error) + except json.JSONDecodeError as json_error: + logger.error(f"Cannot parse RDF from {url} due to JSONDecodeError") + logger.error(json_error) + + kg_microdata = ConjunctiveGraph() if "microdata" in data.keys(): for md in data["microdata"]: - if "@context" in md.keys(): - if ("https://schema.org" in md["@context"]) or ( - "http://schema.org" in md["@context"] - ): - md["@context"] = self.static_file_path - kg.parse( - data=json.dumps(md, ensure_ascii=False), - format="json-ld", - publicID=url, - ) - - logging.debug(kg.serialize(format="turtle")) - kg.namespace_manager.bind("sc", URIRef("http://schema.org/")) - kg.namespace_manager.bind("bsc", URIRef("https://bioschemas.org/")) - kg.namespace_manager.bind("dct", URIRef("http://purl.org/dc/terms/")) + try: + kg_microdata.parse( + data=json.dumps(md, ensure_ascii=False), + format="json-ld", + publicID=url, + ) + except UnicodeDecodeError as unicode_error: + logger.error( + f"Cannot parse RDF from {url} due to UnicodeDecodeError" + ) + logger.error(unicode_error) + except json.JSONDecodeError as json_error: + logger.error(f"Cannot parse RDF from {url} due to JSONDecodeError") + logger.error(json_error) - return kg + kg_extruct = kg_jsonld + kg_rdfa + kg_microdata + + logging.debug(kg_extruct.serialize(format="turtle")) + + kg_extruct.namespace_manager.bind("sc", URIRef("http://schema.org/")) + kg_extruct.namespace_manager.bind("bsc", URIRef("https://bioschemas.org/")) + kg_extruct.namespace_manager.bind("dct", URIRef("http://purl.org/dc/terms/")) + + # print(len(kg_extruct)) + return kg_extruct @staticmethod def extract_rdf_selenium(url) -> ConjunctiveGraph: @@ -197,7 +229,6 @@ def extract_rdf_selenium(url) -> ConjunctiveGraph: browser = WebResource.WEB_BROWSER_HEADLESS browser.get(url) - # self.html_source = browser.page_source # browser.quit() logging.debug(type(browser.page_source)) logging.info(f"size of the parsed web page: {len(browser.page_source)}") @@ -213,20 +244,33 @@ def extract_rdf_selenium(url) -> ConjunctiveGraph: jsonld_string = tree.xpath('//script[@type="application/ld+json"]//text()') for json_ld_annots in jsonld_string: - jsonld = json.loads(json_ld_annots) - - if type(jsonld) == list: - jsonld = jsonld[0] - if "@context" in jsonld.keys(): - if "//schema.org" in jsonld["@context"]: - jsonld["@context"] = WebResource.static_file_path - kg.parse( - data=json.dumps(jsonld, ensure_ascii=False), - format="json-ld", - publicID=url, - ) + jsonld = {} + try: + jsonld = json.loads(json_ld_annots) + except JSONDecodeError as err: + print(err) + continue + + if jsonld is None: + continue + + try: + kg.parse( + data=json.dumps(jsonld, ensure_ascii=False), + format="json-ld", + publicID=url, + ) + except UnicodeDecodeError as unicode_error: + print(f"Cannot parse RDF from {url} due to UnicodeDecodeError") + logger.error( + f"Cannot parse RDF from {url} due to UnicodeDecodeError" + ) + logger.error(unicode_error) + except json.JSONDecodeError as json_error: + logger.error(f"Cannot parse RDF from {url} due to JSONDecodeError") + logger.error(json_error) logging.debug(f"{len(kg)} retrieved triples in KG") - logging.debug(kg.serialize(format="turtle")) + # logging.debug(kg.serialize(format="turtle")) except NoSuchElementException: logging.warning('Can\'t find "application/ld+json" content') diff --git a/notebooks/Check_Bioschemas_live_deploys.ipynb b/notebooks/Check_Bioschemas_live_deploys.ipynb new file mode 100644 index 00000000..187d07ec --- /dev/null +++ b/notebooks/Check_Bioschemas_live_deploys.ipynb @@ -0,0 +1,299 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 4, + "id": "7dd4a930", + "metadata": {}, + "outputs": [], + "source": [ + "import sys\n", + "sys.path.append(\"../\")\n", + "\n", + "import requests\n", + "import random\n", + "import json\n", + "from tqdm.notebook import tqdm\n", + "import pandas as pd\n", + "from metrics.WebResource import WebResource" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "d035e081", + "metadata": {}, + "outputs": [], + "source": [ + "def get_live_deploys_urls():\n", + " results = []\n", + " live_deploys_remote_file = \"https://raw.githubusercontent.com/BioSchemas/bioschemas.github.io/master/_data/live_deployments.json\"\n", + " res = requests.get(live_deploys_remote_file)\n", + " live_deploys = res.json()\n", + " for r in random.sample(live_deploys[\"resources\"], 5):\n", + " #for r in live_deploys[\"resources\"]:\n", + " results.append(r[\"url\"])\n", + " return results\n", + "\n", + "def test_ld_bioschemas_annot():\n", + " res = get_live_deploys_urls()\n", + " errors = []\n", + " results = []\n", + " \n", + " i = 0\n", + " for r in tqdm(res):\n", + " #for r in reversed(res):\n", + " row = {}\n", + " status_code = requests.head(r).status_code\n", + " print(r)\n", + " row['url'] = r\n", + " print(\"Status code: \" + str(status_code))\n", + " row['status code'] = str(status_code)\n", + " try :\n", + " kg = WebResource(r).get_rdf()\n", + " print(\"Triples: \" + str(len(kg)))\n", + " row['Retrieved triples'] = len(kg)\n", + " if not len(kg) > 0:\n", + " print(f\"# Error with {r}\")\n", + " row['Error'] = True\n", + " errors.append(r)\n", + " except UnicodeDecodeError as err:\n", + " print(err)\n", + " results.append(row)\n", + "\n", + " print(f\"{len(res)} tested URLS\")\n", + " print(f\"{len(errors)} failing URLS\")\n", + " print(errors)\n", + " df = pd.read_json(json.dumps(results))\n", + " return df" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "ca494b2e", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "7b10e0e35cd04db6a503fef0e665f709", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + " 0%| | 0/5 [00:00\n", + "Triples: 34\n", + "https://www.omicsdi.org/\n", + "Status code: 200\n", + "1\n", + "{'@graph': [{'name': 'Omics Discovery Index - Discovering and Linking Public Omics Datasets', 'url': 'http://www.omicsdi.org/', 'keywords': 'Proteomics, Genomics, Transcriptomics, Metabolomics, Multi-Omics, MultiOmics, Bioinformatics, System Biology, Datasets', 'description': 'OmicsDI is an integrated and open source platform facilitating the access and dissemination of omics datasets. OmicsDI provides a unique infrastructure to integrate datasets coming from multiple omics studies, including at present proteomics, genomics and metabolomics and Multi-Omics', 'variableMeasured': None, 'alternateName': 'OmicsDI', 'logo': None, 'email': None, 'image': 'http://www.omicsdi.org/static/images/logo/OmicsDI-icon-3.png', 'potentialAction': {'target': 'http://www.omicsdi.org/search?q={search_term_string}', '@type': 'SearchAction', 'query-input': 'required name=search_term_string'}, 'sameAs': None, 'creator': None, 'citation': None, 'primaryImageOfPage': None, '@context': 'http://schema.org', '@type': 'WebSite'}, {'name': 'OmicsDI Consortium', 'url': 'http://www.omicsdi.org/', 'keywords': None, 'description': 'OmicsDI is an integrated and open source platform facilitating the access and dissemination of omics datasets. OmicsDI provides a unique infrastructure to integrate datasets coming from multiple omics studies, including at present proteomics, genomics and metabolomics and Multi-Omics', 'variableMeasured': None, 'alternateName': 'OmicsDI Consortium', 'logo': 'http://www.omicsdi.org/static/images/logo/OmicsDI-icon-3.png', 'email': 'omicsdi-support@ebi.ac.uk', 'image': None, 'potentialAction': None, 'sameAs': 'https://github.com/OmicsDI,https://twitter.com/OmicsDI,https://plus.google.com/u/0/113645049761549550219', 'creator': None, 'citation': None, 'primaryImageOfPage': None, '@context': 'http://schema.org', '@type': 'Organization'}]}\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "ERROR:DEV:Cannot parse RDF from https://www.omicsdi.org/ due to UnicodeDecodeError\n", + "ERROR:DEV:'utf-8' codec can't decode byte 0x8b in position 1: invalid start byte\n", + "ERROR:DEV:Cannot parse RDF from https://www.omicsdi.org/ due to UnicodeDecodeError\n", + "ERROR:DEV:'utf-8' codec can't decode byte 0x8b in position 1: invalid start byte\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Cannot parse RDF from https://www.omicsdi.org/ due to UnicodeDecodeError\n", + "Triples: 0\n", + "# Error with https://www.omicsdi.org/\n", + "http://gigadb.org/\n", + "Status code: 200\n", + "Triples: 14\n", + "https://deb-central.org/\n", + "Status code: 405\n", + "Expecting value: line 1 column 1 (char 0)\n", + "Triples: 0\n", + "# Error with https://deb-central.org/\n", + "https://galaxyproject.org/\n", + "Status code: 200\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "WARNING:root:Can't find \"application/ld+json\" content\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Triples: 0\n", + "# Error with https://galaxyproject.org/\n", + "5 tested URLS\n", + "3 failing URLS\n", + "['https://www.omicsdi.org/', 'https://deb-central.org/', 'https://galaxyproject.org/']\n" + ] + }, + { + "data": { + "text/html": [ + "

\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
urlstatus codeRetrieved triplesError
0https://modelarchive.org/20034NaN
1https://www.omicsdi.org/20001.0
2http://gigadb.org/20014NaN
3https://deb-central.org/40501.0
4https://galaxyproject.org/20001.0
\n", + "
" + ], + "text/plain": [ + " url status code Retrieved triples Error\n", + "0 https://modelarchive.org/ 200 34 NaN\n", + "1 https://www.omicsdi.org/ 200 0 1.0\n", + "2 http://gigadb.org/ 200 14 NaN\n", + "3 https://deb-central.org/ 405 0 1.0\n", + "4 https://galaxyproject.org/ 200 0 1.0" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = test_ld_bioschemas_annot()\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "2c8803f6", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f65bfb5e", + "metadata": {}, + "outputs": [], + "source": [ + " " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d9027674", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c59c5820", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.10" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/profile_recomender.py b/profile_recomender.py new file mode 100644 index 00000000..fc44ac39 --- /dev/null +++ b/profile_recomender.py @@ -0,0 +1,138 @@ +from rdflib import ConjunctiveGraph +from rich.console import Console +from rich.table import Table + +# from rich.text import Text +from argparse import ArgumentParser, RawTextHelpFormatter + +from profiles.ProfileFactory import ProfileFactory + +import sys +import time + + +parser = ArgumentParser( + description=""" +profile_recommender helps you in finding the most relevant Bioschemas profile. + +Usage examples : + python profile_recommender.py -url http://bio.tools/jaspar + +Please report any issue to alban.gaignard@univ-nantes.fr +""", + formatter_class=RawTextHelpFormatter, +) + +# parser.add_argument( +# "-u", +# "--update", +# help="download or update the EDAM ontology", +# ) + +parser.add_argument( + "-u", + "--urls", + metavar="urls", + type=str, + nargs="+", + help="input urls", +) + +parser.add_argument( + "-f", + "--files", + metavar="files", + type=str, + nargs="+", + help="input files", +) + + +if __name__ == "__main__": + if len(sys.argv) == 1: + parser.print_help(sys.stderr) + sys.exit(1) + + args = parser.parse_args() + console = Console() + + s1 = time.time() + profiles = ProfileFactory.create_all_profiles() + ts1 = round((time.time() - s1), 2) + console.print(f"{len(profiles)} Bioschemas profiles loaded in {ts1} s") + + if args.urls: + from metrics.WebResource import WebResource + + for url in args.urls: + console.print(f"Which profile is relevant for {url} ?") + web_res = WebResource(url) + kg = web_res.get_rdf() + console.print(f"{len(kg)} loaded RDF triples") + + results = {} + + for p_name in profiles.keys(): + profile = profiles[p_name] + sim = profile.compute_similarity(kg) + results[p_name] = {"score": sim, "ref": ""} + + sorted_results = dict( + sorted(results.items(), key=lambda item: item[1]["score"], reverse=True) + ) + # print(sorted_results) + + table = Table(show_header=True, header_style="bold magenta") + table.add_column("Profile", justify="left") + table.add_column("Similarity score", justify="right") + table.add_column("Profile URI", justify="right", style="green") + + for hit in sorted_results.keys(): + table.add_row( + str(hit), + str(sorted_results[hit]["score"]), + f"[link={sorted_results[hit]['ref']}]{sorted_results[hit]['ref']}[/link]", + ) + + console.rule(f"[bold red]Relevent Bioschemas profile for {url}") + console.print(table) + console.print() + + if args.files: + for file in args.files: + console.print(f"Which profile is relevant for {file} ?") + + kg = ConjunctiveGraph() + # kg.parse(file, format="turtle") + kg.parse(file) + console.print(f"{len(kg)} loaded RDF triples") + + results = {} + + for p_name in profiles.keys(): + profile = profiles[p_name] + sim = profile.compute_similarity(kg) + # sim = profile.compute_loose_similarity(kg) + results[p_name] = {"score": sim, "ref": ""} + + sorted_results = dict( + sorted(results.items(), key=lambda item: item[1]["score"], reverse=True) + ) + # print(sorted_results) + + table = Table(show_header=True, header_style="bold magenta") + table.add_column("Profile", justify="left") + table.add_column("Similarity score", justify="right") + table.add_column("Profile URI", justify="right", style="green") + + for hit in sorted_results.keys(): + table.add_row( + str(hit), + str(sorted_results[hit]["score"]), + # str({sorted_results[hit]["ref"]}) + f"[link={sorted_results[hit]['ref']}]{sorted_results[hit]['ref']}[/link]", + ) + + console.rule(f"[bold red]Relevent Bioschemas profile for {file}") + console.print(table) + console.print() diff --git a/profiles/Profile.py b/profiles/Profile.py new file mode 100755 index 00000000..4c233ad4 --- /dev/null +++ b/profiles/Profile.py @@ -0,0 +1,317 @@ +# from abc import ABC, abstractmethod +# import logging + +import requests + +from rdflib import ConjunctiveGraph, URIRef +from rdflib.namespace import RDF +from jinja2 import Template +from pyshacl import validate +from os import environ, path + +# class AbstractProfile(ABC): + + +class Profile: + + # TODO doc class + # TODO getters for class attributes + + # cache = {} + + def __init__( + self, + shape_name, + target_classes, + min_props, + rec_props, + ref_profile, + latest=True, + deprecated=False, + ): + self.shape_name = shape_name + self.target_classes = target_classes + self.min_props = min_props + self.rec_props = rec_props + self.ref_profile = ref_profile + self.latest = latest + self.deprecated = deprecated + + self.shacl_shape = self.gen_SHACL_from_profile() + + self.nb_min = len(self.min_props) + self.nb_rec = len(self.rec_props) + + # def set_ref_profile(self, ref_profile): + # self.ref_profile = ref_profile + + def get_name(self): + return self.shape_name + + def get_target(self): + return self.target_classes + + def get_required(self): + return self.min_props + + def get_recommended(self): + return self.rec_props + + def get_ref_profile(self): + return self.ref_profile + + def get_shacl_shape(self): + return self.shacl_shape + + def get_is_deprecated(self): + return self.deprecated + + def get_latest_profile(self): + return self.latest + + def gen_SHACL_from_profile(self): + shape_name = self.shape_name + target_classes = self.target_classes + min_props = self.min_props + rec_props = self.rec_props + + # print(shape_name) + # print(target_classes) + # print(min_props) + # print(rec_props) + + # @prefix bsc: . + # @prefix bsc: . + + shape_template = """ +@prefix ns: . +@prefix rdf: . +@prefix rdfs: . +@prefix sc: . +@prefix bsc: . +@prefix dct: . +@prefix sh: . +@prefix xsd: . +@prefix edam: . +@prefix biotools: . +@prefix bioschemasdrafts: . +@prefix bioschemastypes: . +@prefix bh2022GH: . + +ns:{{shape_name}} + a sh:NodeShape ; + + {% for c in target_classes %} + sh:targetClass {{c}} ; + {% endfor %} + + {% for min_prop in min_props %} + sh:property [ + sh:path {{min_prop}} ; + sh:minCount 1 ; + sh:severity sh:Violation + ] ; + {% endfor %} + + {% for rec_prop in rec_props %} + sh:property [ + sh:path {{rec_prop}} ; + sh:minCount 1 ; + sh:severity sh:Warning + ] ; + {% endfor %} +. + """ + + # [sh: alternativePath(ex:father ex: mother )] + + template = Template(shape_template) + shape = template.render( + shape_name=shape_name, + target_classes=target_classes, + min_props=min_props, + rec_props=rec_props, + ) + + return shape + + def validate_shape(self, knowledge_graph, shacl_shape): + # print(knowledge_graph.serialize(format="turtle")) + r = validate( + data_graph=knowledge_graph, + data_graph_format="turtle", + shacl_graph=shacl_shape, + # shacl_graph = my_shacl_constraint, + shacl_graph_format="turtle", + ont_graph=None, + inference="rdfs", + abort_on_first=False, + meta_shacl=False, + debug=False, + ) + conforms, results_graph, results_text = r + + print("Evaluating: " + str(self.target_classes)) + + report_query = """ + SELECT ?node ?path ?path ?severity WHERE { + ?v rdf:type sh:ValidationReport ; + sh:result ?r . + ?r sh:focusNode ?node ; + sh:sourceShape ?s . + { ?s sh:path ?path ; + sh:severity ?severity . } + UNION { ?s sh:path/sh:alternativePath/rdf:rest*/rdf:first ?path ; + sh:severity ?severity . } + FILTER (! isBlank(?path)) + } + """ + + results = results_graph.query(report_query) + # print("VALIDATION RESULTS") + # print(results_text) + # print(conforms) + # print(results_graph.serialize(format="turtle")) + warnings = [] + errors = [] + for r in results: + if "#Warning" in r["severity"]: + # print( + # f'WARNING: Property {r["path"]} should be provided for {r["node"]}' + # ) + warnings.append(f'{r["path"]}') + if "#Violation" in r["severity"]: + # print(f'ERROR: Property {r["path"]} must be provided for {r["node"]}') + errors.append(f'{r["path"]}') + + return conforms, warnings, errors + + def match_sub_kgs_from_profile(self, kg): + kg.namespace_manager.bind("sc", URIRef("https://schema.org/")) + kg.namespace_manager.bind("bsc", URIRef("https://bioschemas.org/")) + kg.namespace_manager.bind("dct", URIRef("http://purl.org/dc/terms/")) + + sub_kg_list = [] + + for s, p, o in kg.triples((None, RDF.type, None)): + # print(o) + # print(o.n3(kg.namespace_manager)) + if o.n3(kg.namespace_manager) in self.target_classes: + print(f"Trying to validate {s} as a(n) {o} resource") + sub_kg = ConjunctiveGraph() + for x, y, z in kg.triples((s, None, None)): + sub_kg.add((x, y, z)) + sub_kg_list.append({"sub_kg": sub_kg, "subject": s, "object": o}) + return sub_kg_list + + def compute_similarity(self, kg) -> float: + kg.namespace_manager.bind("sc", URIRef("http://schema.org/")) + kg.namespace_manager.bind("bsc", URIRef("https://bioschemas.org/")) + kg.namespace_manager.bind("dct", URIRef("http://purl.org/dc/terms/")) + + # print(len(kg)) + # print(kg.serialize(format="turtle")) + + results = {} + + # list classes + for s, p, o in kg.triples((None, RDF.type, None)): + # print() + # print(f"{s.n3(kg.namespace_manager)} is a {o.n3(kg.namespace_manager)}") + # print(bs_profiles.keys()) + # print(o.n3(kg.namespace_manager)) + if o.n3(kg.namespace_manager) in self.target_classes: + # print() + print(f"Trying to validate {s} as a(n) {o} resource") + shacl_shape = self.gen_SHACL_from_profile( + # o.n3(kg.namespace_manager) + ) + + sub_kg = ConjunctiveGraph() + for x, y, z in kg.triples((s, None, None)): + sub_kg.add((x, y, z)) + + conforms, warnings, errors = self.validate_shape( + knowledge_graph=sub_kg, shacl_shape=shacl_shape + ) + + # print(conforms) + # print(f"{len(errors)} / {self.nb_min}") + # print(f"{len(warnings)} / {self.nb_rec}") + + max_points = 2 * self.nb_min + self.nb_rec + + similarity = ( + max_points - (2 * len(errors) + len(warnings)) + ) / max_points + similarity = round(similarity, 2) + return similarity + + return 0.0 + + def compute_loose_similarity(self, kg) -> float: + kg.namespace_manager.bind("sc", URIRef("http://schema.org/")) + kg.namespace_manager.bind("bsc", URIRef("https://bioschemas.org/")) + kg.namespace_manager.bind("dct", URIRef("http://purl.org/dc/terms/")) + + print(f"Computing loose similarity for profile {self.shape_name}") + # print(len(kg)) + # print(kg.serialize(format="turtle")) + + results = {} + + # list classes + for s, p, o in kg.triples((None, RDF.type, None)): + has_required_rdf_type = 0 + if o.n3(kg.namespace_manager) in self.target_classes: + has_required_rdf_type = 10 + + # print() + print(f"Trying to validate {s} as a(n) {o} resource") + shacl_shape = self.gen_SHACL_from_profile( + # o.n3(kg.namespace_manager) + ) + + sub_kg = ConjunctiveGraph() + for x, y, z in kg.triples((s, None, None)): + sub_kg.add((x, y, z)) + + conforms, warnings, errors = self.validate_shape( + knowledge_graph=sub_kg, shacl_shape=shacl_shape + ) + + print(s) + print(f"{self.shape_name} --> {conforms}") + print(f"{has_required_rdf_type} / 10") + print(f"{len(errors)} / {self.nb_min}") + print(f"{len(warnings)} / {self.nb_rec}") + + max_points = 10 + 2 * self.nb_min + self.nb_rec + + similarity = ( + max_points - (2 * len(errors) + len(warnings) + has_required_rdf_type) + ) / max_points + similarity = round(similarity, 2) + return similarity + + return 0.0 + + # @abstractmethod + # def weak_evaluate(self) -> Evaluation: + # pass + + # @abstractmethod + # def strong_evaluate(self) -> Evaluation: + # pass + + def __str__(self): + return ( + f"Profile: {self.shape_name}" + f"\n\tTarget: {self.target_classes}" + # f"\n\t {self.principle} " + # f"\n\t {self.name} " + # f"\n\t {self.desc} " + # f"\n\t {self.creator} " + # f"\n\t {self.created_at} " + # f"\n\t {self.updated_at} " + ) diff --git a/profiles/ProfileFactory.py b/profiles/ProfileFactory.py new file mode 100644 index 00000000..80d1c620 --- /dev/null +++ b/profiles/ProfileFactory.py @@ -0,0 +1,681 @@ +from profiles.Profile import Profile +from metrics.FairCheckerExceptions import BioschemasProfileNotFoundException +from os import environ, path +import requests +import re +import json +import os +import yaml +from tqdm import tqdm +from rdflib import URIRef, ConjunctiveGraph + +# from app import dev_logger + + +def profile_file_parser(url_profile): + response = requests.get(url_profile) + if response.status_code == 200: + profiles_dict = {} + profiles_jsonld = response.json() + + for element in profiles_jsonld["@graph"]: + profile_dict = { + "name": "", + "target_classes": [], + "file": "", + "required": [], + "recommended": [], + "optional": [], + "id": "", + "ref_profile": "", + } + profiles_versions = request_profile_versions() + + # for element in profiles_jsonld["@graph"]: + if element["@type"] == "rdfs:Class": + # print("Class: " + element["@id"]) + name = element["rdfs:label"] + profile_dict["id"] = element["@id"].replace("bioschemas", "bsc") + profile_dict["name"] = name + + sc_type = element["rdfs:subClassOf"]["@id"] + + # replace DDE prefix by schema.org prefix for Schema.org types + replace_prefix = { + "bioschemastypes:": "sc:", + # "bioschemastypesdrafts:": "sc:", + "schema:": "sc:", + } + for i, j in replace_prefix.items(): + sc_type = sc_type.replace(i, j) + + profile_dict["target_classes"].append(sc_type) + if "schema:schemaVersion" in element.keys(): + for url in element["schema:schemaVersion"]: + if "https://bioschemas.org" in url: + profile_dict["ref_profile"] = url + + status_code = requests.head(url).status_code + if status_code != 200: + print(url) + # print(status_code) + else: + raw_file_base = "https://raw.githubusercontent.com/BioSchemas/specifications/master/" + file_url = url + file_url_path = file_url.split("/master/")[-1] + raw_file_url = raw_file_base + file_url_path + profile_dict["file"] = raw_file_url + + # status_code = requests.head(raw_file_url).status_code + # if status_code != 200: + print(raw_file_url) + # print(status_code) + else: + if profiles_versions[name]["latest_release"]: + latest_version = profiles_versions[name]["latest_release"] + else: + latest_version = profiles_versions[name]["latest_publication"] + + bs_profile_url_base = ( + "https://bioschemas.org/profiles/" + name + "/" + ) + bs_profile_url_path = bs_profile_url_base + latest_version + # bs_profile_url_path = bs_profile_url_base + url_dl.split("/")[-1].replace("_v", "/").strip(".json") + profile_dict["ref_profile"] = bs_profile_url_path + # r = requests.head(bs_profile_url_path, verify=False, timeout=5) # it is faster to only request the header + # print(r.status_code) + + importance_levels = ["required", "recommended", "optional"] + + for importance in importance_levels: + if "$validation" in element: + if importance in element["$validation"]: + for property in element["$validation"][importance]: + + added = False + # Identifying non Schema properties + for elem in profiles_jsonld["@graph"]: + if ( + elem["@type"] == "rdf:Property" + and property == elem["rdfs:label"] + ): + + profile_dict[importance].append( + # Maybe change prefix in shape gen instead + elem["@id"].replace("bioschemas:", "bsc:") + ) + added = True + if added: + continue + profile_dict[importance].append("sc:" + property) + + profiles_dict[profile_dict["ref_profile"]] = profile_dict + + # for compatibility with existing code + # profile_dict["min_props"] = profile_dict.pop("required") + # profile_dict["rec_props"] = profile_dict.pop("recommended") + + # print(json.dumps(profiles_dict, indent=2)) + # print(len(profiles_dict)) + return profiles_dict + + +def get_profiles_from_dde(): + url_profiles = [ + "https://raw.githubusercontent.com/BioSchemas/bioschemas-dde/main/bioschemas.json", + "https://raw.githubusercontent.com/BioSchemas/bioschemas-dde/main/bioschemasdrafts.json", + # "https://raw.githubusercontent.com/BioSchemas/bioschemas-dde/main/bioschemastypes.json", + # "https://raw.githubusercontent.com/BioSchemas/bioschemas-dde/main/bioschemastypesdrafts.json" + ] + results = {} + profiles_names_list = [] + for url_profile in url_profiles: + profiles_dict = profile_file_parser(url_profile) + + for profile_key in profiles_dict: + if profiles_dict[profile_key]["name"] not in profiles_names_list: + results[profile_key] = profiles_dict[profile_key] + profiles_names_list.append(profiles_dict[profile_key]["name"]) + return results + + +@DeprecationWarning +def get_profiles_specs_from_github(): + github_token = environ.get("GITHUB_TOKEN") + headers = { + "Authorization": "token {}".format(github_token), + "User-Agent": "FAIR-checker", + "Accept": "application/vnd.github.v3+json", + } + url = "https://api.github.com/repos/BioSchemas/specifications/contents" + + # Request specifications github + response = requests.get(url, headers=headers) + + if response.status_code == requests.codes.ok: + profiles_dict = {} + profile_folders_json = response.json() + + # Loop over each folder (one folder == one profile and/or one type) + for profile_folder in profile_folders_json: + if profile_folder["type"] == "dir": + profile_name = profile_folder["name"] + response = requests.get(profile_folder["url"], headers=headers) + items = response.json() + + # For each profile and/or type, look for jsonld folder + for item in items: + if item["name"] == "jsonld": + response = requests.get(item["url"], headers=headers) + results_files = response.json() + releases = {} + drafts = {} + # Look for each profile file in json folder and store version and download link for each + for file in results_files: + if ( + file["type"] == "file" + and "DEPRECATED" not in file["download_url"] + ): + regex_version = "_v([0-9]*.[0-9]*)-" + m = re.search(regex_version, file["download_url"]) + + if "RELEASE" in file["download_url"]: + releases[file["download_url"]] = float(m.group(1)) + # releases[m.group(1)] = res["download_url"] + # elif "DRAFT" in file["download_url"]: + elif "DRAFT" in file["download_url"]: + drafts[file["download_url"]] = float(m.group(1)) + + latest_url_dl = "" + if releases: + latest_url_dl = get_latest_profile(releases) + elif drafts: + latest_url_dl = get_latest_profile(drafts) + + if latest_url_dl: + profile_dict = profile_file_parser(latest_url_dl) + for profile_k in profile_dict.keys(): + profiles_dict[ + profile_dict[profile_k]["ref_profile"] + ] = profile_dict[profile_k] + + # To get all profiles and not only latest + + # all_urls = list(releases.keys()) + list(drafts.keys()) + # print(all_urls) + # print(len(all_urls)) + + # for url in all_urls: + # response = requests.get(url, headers=headers) + # jsonld = response.json() + # profile_dict = parse_profile(jsonld, url) + # profiles_dict[profile_dict["ref_profile"]] = profile_dict + return profiles_dict + else: + return False + + +@DeprecationWarning +def get_latest_profile(profiles_dict): + + latest_rel = max(profiles_dict.values()) + + # latest_url_dl = list(profiles_dict.keys())[list(profiles_dict.values()).index(latest_rel)] + latest_url_dl = [k for k, v in profiles_dict.items() if v == latest_rel] + return latest_url_dl[0] + + +def request_profile_versions(): + response = requests.get( + "https://raw.githubusercontent.com/BioSchemas/bioschemas.github.io/master/_data/profile_versions.yaml" + ) + content = response.text + dict_content = yaml.safe_load(content) + return dict_content + + +@DeprecationWarning +def parse_profile(jsonld, url_dl): + """_summary_ + + Args: + jsonld (_type_): _description_ + url_dl (_type_): _description_ + + Returns: + _type_: _description_ + """ + + profile_dict = { + "name": "", + "target_classes": [], + "file": url_dl, + "required": ["dct:conformsTo"], + "recommended": [], + "optional": [], + "id": "", + "ref_profile": "", + } + + profiles_versions = request_profile_versions() + + for element in jsonld["@graph"]: + if element["@type"] == "rdfs:Class": + # print("Class: " + element["@id"]) + name = element["rdfs:label"] + profile_dict["id"] = element["@id"].replace("bioschemas", "bsc") + profile_dict["name"] = name + + sc_type = element["rdfs:subClassOf"]["@id"] + + # replace DDE prefix by schema.org prefix for Schema.org types + replace_prefix = { + "bioschemastypes:": "sc:", + # "bioschemastypesdrafts:": "sc:", + "schema:": "sc:", + } + for i, j in replace_prefix.items(): + sc_type = sc_type.replace(i, j) + + profile_dict["target_classes"].append(sc_type) + if "schema:schemaVersion" in element.keys(): + profile_dict["ref_profile"] = element["schema:schemaVersion"][0] + else: + if profiles_versions[name]["latest_release"]: + latest_version = profiles_versions[name]["latest_release"] + else: + latest_version = profiles_versions[name]["latest_publication"] + + bs_profile_url_base = "https://bioschemas.org/profiles/" + name + "/" + bs_profile_url_path = bs_profile_url_base + latest_version + # bs_profile_url_path = bs_profile_url_base + url_dl.split("/")[-1].replace("_v", "/").strip(".json") + profile_dict["ref_profile"] = bs_profile_url_path + # r = requests.head(bs_profile_url_path, verify=False, timeout=5) # it is faster to only request the header + # print(r.status_code) + break + # if element["@type"] == "rdf:Property": + # additional_properties.append(element["@id"].replace("bioschemas", "bsc")) + + importance_levels = ["required", "recommended", "optional"] + + for importance in importance_levels: + if importance in jsonld["@graph"][0]["$validation"]: + for property in jsonld["@graph"][0]["$validation"][importance]: + + added = False + # Identifying non Schema properties + for element in jsonld["@graph"]: + if ( + element["@type"] == "rdf:Property" + and property == element["rdfs:label"] + ): + profile_dict[importance].append( + element["@id"].replace("bioschemas", "bsc") + ) + added = True + if added: + continue + profile_dict[importance].append("sc:" + property) + + # for compatibility with existing code + profile_dict["min_props"] = profile_dict.pop("required") + profile_dict["rec_props"] = profile_dict.pop("recommended") + + return profile_dict + + +def load_profiles(): + if not path.exists("profiles/bs_profiles.json"): + print("Updating Bioschemas profiles from github") + profiles = get_profiles_from_dde() + # profiles = get_profiles_specs_from_github() + with open("profiles/bs_profiles.json", "w") as outfile: + json.dump(profiles, outfile) + print("Profiles updated") + else: + print("Reading Bioschemas profiles from local file") + # Opening JSON file + with open("profiles/bs_profiles.json", "r") as openfile: + # Reading from json file + profiles = json.load(openfile) + return profiles + + +def update_profiles(): + if path.exists("profiles/bs_profiles.json"): + os.remove("profiles/bs_profiles.json") + load_profiles() + + +def find_conformsto_subkg(kg): + kg.namespace_manager.bind("sc", URIRef("http://schema.org/")) + kg.namespace_manager.bind("bsc", URIRef("https://bioschemas.org/")) + kg.namespace_manager.bind("dct", URIRef("http://purl.org/dc/terms/")) + + query_conformsto = """ + PREFIX dct: + + SELECT ?x ?profile ?type WHERE { + ?x dct:conformsTo ?profile . + ?x rdf:type ?type . + } + """ + + sub_kg_list = [] + + results = kg.query(query_conformsto) + for r in results: + conformsto = r["profile"].strip("/") + identifier = r["x"] + type = r["type"] + sub_kg = ConjunctiveGraph() + + for s, p, o in kg.triples((identifier, None, None)): + sub_kg.add((s, p, o)) + # print(sub_kg.serialize(format="json-ld")) + + # if self.get_ref_profile() == conformsto: + print(f"Found instance of type {type} that should conforms to {conformsto}") + sub_kg_list.append( + { + "sub_kg": sub_kg, + "subject": identifier, + "profile": conformsto, + "type": type, + } + ) + + return sub_kg_list + + +def dyn_evaluate_profile_with_conformsto(kg): + """_summary_ + + Args: + kg (_type_): _description_ + + Returns: + _type_: _description_ + """ + results = {} + + # Evaluate only profile with conformsTo + ct_sub_kg_list = find_conformsto_subkg(kg) + print(ct_sub_kg_list) + + for ct_sub_kg in ct_sub_kg_list: + s = ct_sub_kg["subject"] + ct = ct_sub_kg["profile"] + t = ct_sub_kg["type"] + sub_kg = ct_sub_kg["sub_kg"] + + try: + profile = ProfileFactory.create_profile_from_remote(ct) + shacl_shape = profile.get_shacl_shape() + # print(shacl_shape) + conforms, warnings, errors = profile.validate_shape(sub_kg, shacl_shape) + # we override the final result to exclude warnings + conforms = len(errors) == 0 + results[str(s)] = { + "method": "by_conformsto", + "type": str(t), + "ref_profile": profile.get_ref_profile(), + "conforms": conforms, + "warnings": warnings, + "errors": errors, + "deprecated": profile.get_is_deprecated(), + "latest_profile": profile.get_latest_profile(), + } + except BioschemasProfileNotFoundException as e: + print(e) + profile_versions = request_profile_versions() + profile_name = ct.split("/")[-2] + bs_latest_profile = get_latest_ref_profile_from_pname( + profile_name, profile_versions + ) + print(bs_latest_profile) + print("TOTO") + profile = ProfileFactory.create_profile_from_ref_profile(bs_latest_profile) + + print(profile) + + return results + + +@DeprecationWarning +def evaluate_profile_with_conformsto(kg): + # A instancier au lancement du serveur et actualiser lors d'updates + + list_all_ct = ProfileFactory.list_all_conformsto() + + results = {} + + # Evaluate only profile with conformsTo + ct_sub_kg_list = find_conformsto_subkg(kg) + + for ct_sub_kg in ct_sub_kg_list: + s = ct_sub_kg["subject"] + ct = ct_sub_kg["profile"] + t = ct_sub_kg["type"] + sub_kg = ct_sub_kg["sub_kg"] + + if ct in list_all_ct: + ct_profile = ProfileFactory.create_profile_from_ref_profile(ct) + + if ct_profile is not None: + shacl_shape = ct_profile.get_shacl_shape() + print(shacl_shape) + conforms, warnings, errors = ct_profile.validate_shape( + sub_kg, shacl_shape + ) + # we override the final result to exclude warnings + conforms = len(errors) == 0 + + results[str(s)] = { + "type": str(t), + "ref_profile": ct_profile.get_ref_profile(), + "conforms": conforms, + "warnings": warnings, + "errors": errors, + } + return results + + +def evaluate_profile_from_type(kg): + # A instancier au lancement du serveur et actualiser lors d'updates + + results = {} + + # Try to match and evaluate all found corresponding profiles + for p_key in PROFILES.keys(): + sub_kg_list = PROFILES[p_key].match_sub_kgs_from_profile(kg) + + if sub_kg_list: + for sub_kg in sub_kg_list: + s = sub_kg["subject"] + if not str(s) in results.keys(): + o = sub_kg["object"] + sub_kg = sub_kg["sub_kg"] + shacl_shape = PROFILES[p_key].get_shacl_shape() + conforms, warnings, errors = PROFILES[p_key].validate_shape( + sub_kg, shacl_shape + ) + + # we override the final result to exclude warnings + conforms = len(errors) == 0 + results[str(s)] = { + "method": "by_type", + "type": str(o), + "ref_profile": PROFILES[p_key].get_ref_profile(), + "conforms": conforms, + "warnings": warnings, + "errors": errors, + "deprecated": PROFILES[p_key].get_is_deprecated(), + "latest_profile": PROFILES[p_key].get_latest_profile(), + } + return results + + +def is_profile_deprecated(profile_name, profile_versions): + # profile_versions = request_profile_versions() + if profile_name in profile_versions.keys(): + if profile_versions[profile_name]["status"] == "deprecated": + return True + elif profile_versions[profile_name]["status"] == "active": + return False + else: + return False + + +def is_profile_version_latest(profile_name, version, profile_versions): + + # profile_versions = request_profile_versions() + + if profile_name in profile_versions.keys(): + if profile_versions[profile_name]["latest_release"] == version: + return True + elif profile_versions[profile_name]["latest_publication"] == version: + return True + else: + return False + else: + return False + + +def get_latest_ref_profile_from_pname(profile_name, profile_versions): + + bs_ref_profile_base = "https://bioschemas.org/profiles/" + profile_name + "/" + + # profile_versions = request_profile_versions() + if profile_name in profile_versions.keys(): + if profile_versions[profile_name]["latest_release"]: + latest_profile_version = profile_versions[profile_name]["latest_release"] + bs_ref_profile_latest = bs_ref_profile_base + latest_profile_version + if requests.head(bs_ref_profile_latest, verify=False).status_code == 200: + return bs_ref_profile_latest + else: + return None + elif profile_versions[profile_name]["latest_publication"]: + latest_profile_version = profile_versions[profile_name][ + "latest_publication" + ] + bs_ref_profile_latest = bs_ref_profile_base + latest_profile_version + if requests.head(bs_ref_profile_latest, verify=False).status_code == 200: + return bs_ref_profile_latest + else: + return None + else: + return None + else: + return None + + +# from enum import Enum, unique + +# @unique +# class Implem(Enum): +# FAIR_CHECKER = 1 +# FAIR_METRICS_API = 2 + + +class ProfileFactory: + @staticmethod + def list_all_conformsto(): + bs_profiles = load_profiles() + list_ct = [bs_profiles[p_key]["ref_profile"] for p_key in bs_profiles.keys()] + + return list_ct + + @staticmethod + def create_profile_from_remote(bioschemas_profile_url): + """generates a compact representation of a profile + + Args: + bioschemas_profile_url (str): from the profile URL, + generates the JSON file GitHub URL, parse it and + returns its compact representation. + + Returns: + dict: compact representation of the profile + """ + p = bioschemas_profile_url + version = p.split("/")[-1] + profile_name = p.split("/")[-2] + print(f"Profile {profile_name} version {version}") + github_file = f"https://raw.githubusercontent.com/BioSchemas/specifications/master/{profile_name}/jsonld/{profile_name}_v{version}.json" + response_header = requests.head(github_file) + if response_header.status_code != 200: + raise BioschemasProfileNotFoundException( + f"Cannot access file <{github_file}> for profile <{profile_name}> version <{version}> at <{p}>" + ) + # response = requests.get(github_file) + # dict_profile = parse_profile(response.json(), github_file) + + dict_profile = profile_file_parser(github_file) + dict_profile = dict_profile[bioschemas_profile_url] + + # get latest profile versions + profile_versions = request_profile_versions() + + # Check if the profile in dct:conformsTo is deprecated + is_deprecated = is_profile_deprecated(profile_name, profile_versions) + + # Check if the profile in dct:conformsTo is the latest one + is_latest_profile = is_profile_version_latest( + profile_name, version, profile_versions + ) + if is_latest_profile: + latest_ref_profile = True + else: + latest_ref_profile = get_latest_ref_profile_from_pname( + profile_name, profile_versions + ) + + print("#####################") + print("Deprecated: " + str(is_deprecated)) + print("Latest: " + str(latest_ref_profile)) + print("#####################") + + profile = Profile( + shape_name=dict_profile["name"], + target_classes=dict_profile["target_classes"], + min_props=dict_profile["required"], + rec_props=dict_profile["recommended"], + ref_profile=dict_profile["ref_profile"], + deprecated=is_deprecated, + latest=latest_ref_profile, + ) + return profile + + @staticmethod + def create_profile_from_ref_profile(ref_profile): + bs_profiles = load_profiles() + for profile_key in bs_profiles.keys(): + print(bs_profiles[profile_key]["ref_profile"]) + if ref_profile == bs_profiles[profile_key]["ref_profile"]: + name = bs_profiles[profile_key]["name"] + profile = Profile( + shape_name=name, + target_classes=bs_profiles[profile_key]["target_classes"], + min_props=bs_profiles[profile_key]["required"], + rec_props=bs_profiles[profile_key]["recommended"], + ref_profile=bs_profiles[profile_key]["ref_profile"], + ) + return profile + + @staticmethod + def create_all_profiles_from_specifications(): + profiles = {} + bs_profiles = load_profiles() + for profile_key in bs_profiles.keys(): + profiles[profile_key] = Profile( + shape_name=bs_profiles[profile_key]["name"], + target_classes=bs_profiles[profile_key]["target_classes"], + min_props=bs_profiles[profile_key]["required"], + rec_props=bs_profiles[profile_key]["recommended"], + ref_profile=bs_profiles[profile_key]["ref_profile"], + ) + return profiles + + +PROFILES = ProfileFactory.create_all_profiles_from_specifications() diff --git a/profiles/bioschemas_shape_gen.py b/profiles/bioschemas_shape_gen.py index c84cb9e6..b9d43c2c 100644 --- a/profiles/bioschemas_shape_gen.py +++ b/profiles/bioschemas_shape_gen.py @@ -2,13 +2,21 @@ from rdflib.namespace import RDF from jinja2 import Template from pyshacl import validate +import requests import os from os import walk +from os import environ, path +from dotenv import load_dotenv import json +import yaml +import re from metrics.WebResource import WebResource +basedir = path.abspath(path.dirname(__file__)) +load_dotenv(path.join(basedir, ".env")) + class BioschemasProfileError(Exception): def __init__(self, class_name, message="The profile is yet defined"): @@ -301,6 +309,22 @@ def gen_shacl_alternatives(bs_profiles): }, } + +def load_profiles(): + if not path.exists("profiles/bs_profiles.json"): + print("Updating from github") + profiles = get_profiles_specs_from_github() + with open("profiles/bs_profiles.json", "w") as outfile: + json.dump(profiles, outfile) + else: + print("Reading from local file") + # Opening JSON file + with open("profiles/bs_profiles.json", "r") as openfile: + # Reading from json file + profiles = json.load(openfile) + return profiles + + bs_profiles = gen_shacl_alternatives(bs_profiles) @@ -395,6 +419,159 @@ def gen_SHACL_from_profile(shape_name, target_classes, min_props, rec_props): return shape +def get_profiles_specs_from_github(): + github_token = environ.get("GITHUB_TOKEN") + headers = { + "Authorization": "token {}".format(github_token), + "User-Agent": "FAIR-checker", + "Accept": "application/vnd.github.v3+json", + } + url = "https://api.github.com/repos/BioSchemas/specifications/contents" + + # Request specifications github + response = requests.get(url, headers=headers) + + if response.status_code == requests.codes.ok: + profiles_dict = {} + profile_folders_json = response.json() + + # Loop over each folder (one folder == one profile and/or one type) + for profile_folder in profile_folders_json: + if profile_folder["type"] == "dir": + profile_name = profile_folder["name"] + response = requests.get(profile_folder["url"], headers=headers) + items = response.json() + + # For each profile and/or type, look for jsonld folder + for item in items: + if item["name"] == "jsonld": + response = requests.get(item["url"], headers=headers) + results_files = response.json() + releases = {} + drafts = {} + # Look for each profile file in json folder and store version and download link for each + for file in results_files: + if ( + file["type"] == "file" + and not "DEPRECATED" in file["download_url"] + ): + regex_version = "_v([0-9]*.[0-9]*)-" + m = re.search(regex_version, file["download_url"]) + + if "RELEASE" in file["download_url"]: + releases[file["download_url"]] = float(m.group(1)) + # releases[m.group(1)] = res["download_url"] + elif "DRAFT" in file["download_url"]: + drafts[file["download_url"]] = float(m.group(1)) + + latest_url_dl = "" + if releases: + latest_url_dl = get_latest_profile(releases) + + elif drafts: + latest_url_dl = get_latest_profile(drafts) + + if latest_url_dl: + response = requests.get(latest_url_dl, headers=headers) + jsonld = response.json() + profile_dict = parse_profile( + jsonld, profile_name, latest_url_dl + ) + + profiles_dict["sc:" + profile_dict["name"]] = profile_dict + return profiles_dict + else: + return False + + +def get_latest_profile(profiles_dict): + + latest_rel = max(profiles_dict.values()) + + # latest_url_dl = list(profiles_dict.keys())[list(profiles_dict.values()).index(latest_rel)] + latest_url_dl = [k for k, v in profiles_dict.items() if v == latest_rel] + return latest_url_dl[0] + + +def request_profile_versions(): + response = requests.get( + "https://raw.githubusercontent.com/BioSchemas/bioschemas.github.io/master/_data/profile_versions.yaml" + ) + content = response.text + dict_content = yaml.safe_load(content) + return dict_content + + +def parse_profile(jsonld, profile_name, url_dl): + profile_dict = { + "name": "", + "file": url_dl, + "required": ["dct:conformsTo"], + "recommended": [], + "optional": [], + "id": "", + "ref_profile": "", + } + + profiles_versions = request_profile_versions() + + additional_properties = [] + for element in jsonld["@graph"]: + if element["@type"] == "rdfs:Class": + # print("Class: " + element["@id"]) + name = element["rdfs:label"] + profile_dict["id"] = element["@id"].replace("bioschemas", "bsc") + profile_dict["name"] = name + if "schema:schemaVersion" in element.keys(): + profile_dict["ref_profile"] = element["schema:schemaVersion"][0] + else: + if profiles_versions[name]["latest_release"]: + latest_version = profiles_versions[name]["latest_release"] + else: + latest_version = profiles_versions[name]["latest_publication"] + + bs_profile_url_base = "https://bioschemas.org/profiles/" + name + "/" + bs_profile_url_path = bs_profile_url_base + latest_version + # bs_profile_url_path = bs_profile_url_base + url_dl.split("/")[-1].replace("_v", "/").strip(".json") + profile_dict["ref_profile"] = bs_profile_url_path + print(bs_profile_url_path) + r = requests.head( + bs_profile_url_path, verify=False, timeout=5 + ) # it is faster to only request the header + print(r.status_code) + break + # if element["@type"] == "rdf:Property": + # additional_properties.append(element["@id"].replace("bioschemas", "bsc")) + + importance_levels = ["required", "recommended", "optional"] + + for importance in importance_levels: + if importance in jsonld["@graph"][0]["$validation"]: + for property in jsonld["@graph"][0]["$validation"][importance]: + + added = False + # Identifying non Schema properties + for element in jsonld["@graph"]: + if ( + element["@type"] == "rdf:Property" + and property == element["rdfs:label"] + ): + profile_dict[importance].append( + element["@id"].replace("bioschemas", "bsc") + ) + added = True + if added: + continue + profile_dict[importance].append("sc:" + property) + profile_dict["min_props"] = profile_dict.pop("required") + profile_dict["rec_props"] = profile_dict.pop("recommended") + + return profile_dict + + +# bs_profiles = load_profiles() + + def validate_any_from_KG(kg): kg.namespace_manager.bind("sc", URIRef("http://schema.org/")) kg.namespace_manager.bind("bsc", URIRef("https://bioschemas.org/")) @@ -504,6 +681,9 @@ def validate_any_from_microdata(input_url): conforms, warnings, errors = validate_shape( knowledge_graph=sub_kg, shacl_shape=shacl_shape ) + + # if no errors, then we answer "valid" + conforms = len(errors) == 0 results[str(s)] = { "type": str(o), "ref_profile": ref_profile, diff --git a/profiles/bs_profiles.json b/profiles/bs_profiles.json new file mode 100644 index 00000000..07c387fc --- /dev/null +++ b/profiles/bs_profiles.json @@ -0,0 +1 @@ +{"https://bioschemas.org/profiles/ChemicalSubstance/0.4-RELEASE": {"name": "ChemicalSubstance", "target_classes": ["sc:ChemicalSubstance"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/ChemicalSubstance/jsonld/ChemicalSubstance_v0.4-RELEASE.json", "required": ["sc:name", "sc:identifier", "sc:url", "dct:conformsTo"], "recommended": ["sc:chemicalComposition", "sc:hasBioChemEntityPart"], "optional": ["sc:alternateName", "sc:bioChemInteraction", "sc:bioChemSimilarity", "sc:biologicalRole", "sc:chemicalRole", "sc:description", "sc:disambiguatingDescription", "sc:image", "sc:potentialUse", "sc:sameAs"], "id": "bsc:ChemicalSubstance", "ref_profile": "https://bioschemas.org/profiles/ChemicalSubstance/0.4-RELEASE"}, "https://bioschemas.org/profiles/Gene/1.0-RELEASE": {"name": "Gene", "target_classes": ["sc:Gene"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/Gene/jsonld/Gene_v1.0-RELEASE.json", "required": ["sc:identifier", "sc:name", "dct:conformsTo"], "recommended": ["sc:description", "sc:encodesBioChemEntity", "sc:isPartOfBioChemEntity", "sc:url"], "optional": ["sc:alternateName", "sc:alternativeOf", "sc:associatedDisease", "sc:expressedIn", "sc:hasBioChemEntityPart", "sc:hasBioPolymerSequence", "sc:hasMolecularFunction", "sc:hasRepresentation", "bsc:hasStatus", "sc:image", "sc:isInvolvedInBiologicalProcess", "sc:isLocatedInSubcellularLocation", "sc:mainEntityOfPage", "sc:sameAs", "sc:taxonomicRange"], "id": "bsc:Gene", "ref_profile": "https://bioschemas.org/profiles/Gene/1.0-RELEASE"}, "https://bioschemas.org/profiles/Taxon/0.6-RELEASE": {"name": "Taxon", "target_classes": ["sc:Taxon"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/Taxon/jsonld/Taxon_v0.6-RELEASE.json", "required": ["sc:taxonRank", "sc:name", "dct:conformsTo"], "recommended": ["sc:parentTaxon", "sc:url"], "optional": ["sc:additionalType", "sc:alternateName", "sc:childTaxon", "sc:sameAs", "dwc:vernacularName"], "id": "bsc:Taxon", "ref_profile": "https://bioschemas.org/profiles/Taxon/0.6-RELEASE"}, "https://bioschemas.org/profiles/MolecularEntity/0.5-RELEASE": {"name": "MolecularEntity", "target_classes": ["sc:MolecularEntity"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/MolecularEntity/jsonld/MolecularEntity_v0.5-RELEASE.json", "required": ["sc:identifier", "sc:name", "sc:url", "dct:conformsTo"], "recommended": ["sc:inChI", "sc:inChIKey", "sc:iupacName", "sc:molecularFormula", "sc:molecularWeight", "sc:smiles"], "optional": ["sc:alternateName", "sc:associatedDisease", "sc:bioChemInteraction", "sc:bioChemSimilarity", "sc:biologicalRole", "sc:chemicalRole", "sc:description", "sc:disambiguatingDescription", "sc:hasBioChemEntityPart", "sc:hasMolecularFunction", "sc:hasRepresentation", "sc:image", "sc:isEncodedByBioChemEntity", "sc:isInvolvedInBiologicalProcess", "sc:isLocatedInSubcellularLocation", "sc:isPartOfBioChemEntity", "sc:monoisotopicMolecularWeight", "sc:potentialUse", "sc:sameAs", "sc:taxonomicRange"], "id": "bsc:MolecularEntity", "ref_profile": "https://bioschemas.org/profiles/MolecularEntity/0.5-RELEASE"}, "https://bioschemas.org/profiles/Protein/0.11-RELEASE": {"name": "Protein", "target_classes": ["sc:Protein"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/Protein/jsonld/Protein_v0.11-RELEASE.json", "required": ["sc:identifier", "sc:name", "dct:conformsTo"], "recommended": ["sc:associatedDisease", "sc:description", "sc:isEncodedByBioChemEntity", "sc:taxonomicRange", "sc:url"], "optional": ["sc:alternateName", "sc:bioChemInteraction", "sc:bioChemSimilarity", "sc:hasBioChemEntityPart", "sc:hasBioPolymerSequence", "sc:hasMolecularFunction", "sc:hasRepresentation", "sc:image", "sc:isInvolvedInBiologicalProcess", "sc:isLocatedInSubcellularLocation", "sc:isPartOfBioChemEntity", "sc:mainEntityOfPage", "sc:sameAs"], "id": "bsc:Protein", "ref_profile": "https://bioschemas.org/profiles/Protein/0.11-RELEASE"}, "https://bioschemas.org/profiles/FormalParameter/1.0-RELEASE": {"name": "FormalParameter", "target_classes": ["sc:FormalParameter"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/FormalParameter/jsonld/FormalParameter_v1.0-RELEASE.json", "required": ["sc:name", "dct:conformsTo"], "recommended": ["sc:additionalType", "sc:description", "sc:encodingFormat"], "optional": ["sc:defaultValue", "sc:identifier", "sc:valueRequired"], "id": "bsc:FormalParameter", "ref_profile": "https://bioschemas.org/profiles/FormalParameter/1.0-RELEASE"}, "https://bioschemas.org/profiles/ComputationalTool/1.0-RELEASE": {"name": "ComputationalTool", "target_classes": ["sc:SoftwareApplication"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/ComputationalTool/jsonld/ComputationalTool_v1.0-RELEASE.json", "required": ["sc:description", "sc:name", "sc:url", "dct:conformsTo"], "recommended": ["sc:applicationCategory", "sc:applicationSubCategory", "sc:author", "sc:citation", "sc:featureList", "sc:license", "sc:softwareVersion"], "optional": ["sc:applicationSuite", "bsc:codeRepository", "sc:contributor", "sc:discussionUrl", "sc:downloadUrl", "sc:funder", "sc:hasPart", "sc:identifier", "bsc:input", "sc:isAccessibleForFree", "sc:isBasedOn", "sc:isPartOf", "sc:keywords", "sc:operatingSystem", "bsc:output", "bsc:programmingLanguage", "sc:provider", "sc:softwareAddOn", "sc:softwareHelp", "sc:thumbnailUrl"], "id": "bsc:ComputationalTool", "ref_profile": "https://bioschemas.org/profiles/ComputationalTool/1.0-RELEASE"}, "https://bioschemas.org/profiles/ComputationalWorkflow/1.0-RELEASE": {"name": "ComputationalWorkflow", "target_classes": ["sc:ComputationalWorkflow"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/ComputationalWorkflow/jsonld/ComputationalWorkflow_v1.0-RELEASE.json", "required": ["bsc:input", "bsc:output", "bsc:programmingLanguage", "sc:name", "sc:url", "sc:creator", "sc:dateCreated", "sc:license", "sc:sdPublisher", "sc:version", "dct:conformsTo"], "recommended": ["sc:citation", "sc:contributor", "sc:creativeWorkStatus", "sc:description", "sc:documentation", "sc:funding", "sc:hasPart", "sc:isBasedOn", "sc:keywords", "sc:maintainer", "sc:producer", "sc:publisher", "sc:runtimePlatform", "sc:softwareRequirements", "sc:targetProduct"], "optional": ["sc:alternateName", "sc:conditionsOfAccess", "sc:dateModified", "sc:datePublished", "sc:encodingFormat", "sc:identifier", "sc:image"], "id": "bsc:ComputationalWorkflow", "ref_profile": "https://bioschemas.org/profiles/ComputationalWorkflow/1.0-RELEASE"}, "https://bioschemas.org/profiles/DataCatalog/0.3-RELEASE-2019_07_01": {"name": "DataCatalog", "target_classes": ["sc:DataCatalog"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/DataCatalog/jsonld/DataCatalog_v0.3-RELEASE-2019_07_01.json", "required": ["sc:description", "sc:name", "sc:url", "sc:keywords", "sc:provider", "dct:conformsTo"], "recommended": ["sc:about", "sc:alternateName", "sc:citation", "sc:dataset", "sc:dateCreated", "sc:identifier", "sc:license", "sc:sourceOrganization"], "optional": ["sc:dateModified", "sc:encodingFormat"], "id": "bsc:DataCatalog", "ref_profile": "https://bioschemas.org/profiles/DataCatalog/0.3-RELEASE-2019_07_01"}, "https://bioschemas.org/profiles/Dataset/1.0-RELEASE": {"name": "Dataset", "target_classes": ["sc:Dataset"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/Dataset/jsonld/Dataset_v1.0-RELEASE.json", "required": ["sc:description", "sc:identifier", "sc:keywords", "sc:license", "sc:name", "sc:url", "dct:conformsTo"], "recommended": ["sc:alternateName", "sc:citation", "sc:creator", "sc:datePublished", "sc:distribution", "sc:includedInDataCatalog", "sc:isBasedOn", "sc:measurementTechnique", "sc:variableMeasured", "sc:version"], "optional": ["sc:dateCreated", "sc:dateModified", "sc:hasPart", "sc:isAccessibleForFree", "sc:isPartOf", "sc:maintainer", "sc:publisher", "sc:sameAs"], "id": "bsc:Dataset", "ref_profile": "https://bioschemas.org/profiles/Dataset/1.0-RELEASE"}, "https://bioschemas.org/profiles/Sample/0.2-RELEASE-2018_11_10": {"name": "Sample", "target_classes": ["bioschemastypesdrafts:Sample"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/Sample/jsonld/Sample_v0.2-RELEASE-2018_11_10.json", "required": ["sc:identifier", "dct:conformsTo"], "recommended": ["sc:url"], "optional": ["sc:additionalProperty", "sc:description", "sc:name", "sc:subjectOf"], "id": "bsc:Sample", "ref_profile": "https://bioschemas.org/profiles/Sample/0.2-RELEASE-2018_11_10"}, "https://bioschemas.org/profiles/Course/1.0-RELEASE": {"name": "Course", "target_classes": ["sc:Course"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/Course/jsonld/Course_v1.0-RELEASE.json", "required": ["sc:description", "sc:keywords", "sc:name", "dct:conformsTo"], "recommended": ["sc:about", "sc:abstract", "sc:aggregateRating", "sc:citation", "sc:coursePrerequisites", "sc:educationalLevel", "sc:hasCourseInstance", "sc:license", "sc:mentions", "sc:provider", "sc:teaches", "sc:timeRequired", "sc:url"], "optional": ["sc:accessibilitySummary", "sc:alternateName", "sc:audience", "sc:comment", "sc:commentCount", "sc:courseCode", "sc:creator", "sc:dateCreated", "sc:dateModified", "sc:educationalCredentialAwarded", "sc:hasPart", "sc:image", "sc:isBasedOn", "sc:thumbnailUrl"], "id": "bsc:Course", "ref_profile": "https://bioschemas.org/profiles/Course/1.0-RELEASE"}, "https://bioschemas.org/profiles/CourseInstance/1.0-RELEASE": {"name": "CourseInstance", "target_classes": ["sc:CourseInstance"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/CourseInstance/jsonld/CourseInstance_v1.0-RELEASE.json", "required": ["sc:courseMode", "sc:location", "dct:conformsTo"], "recommended": ["sc:endDate", "sc:inLanguage", "sc:instructor", "sc:offers", "sc:startDate", "sc:url"], "optional": ["sc:alternateName", "sc:contributor", "sc:description", "sc:duration", "sc:eventStatus", "sc:funder", "sc:image", "sc:maximumAttendeeCapacity", "sc:name", "sc:organizer", "sc:subEvent", "sc:superEvent", "sc:workFeatured"], "id": "bsc:CourseInstance", "ref_profile": "https://bioschemas.org/profiles/CourseInstance/1.0-RELEASE"}, "https://bioschemas.org/profiles/TrainingMaterial/1.0-RELEASE": {"name": "TrainingMaterial", "target_classes": ["sc:LearningResource"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/TrainingMaterial/jsonld/TrainingMaterial_v1.0-RELEASE.json", "required": ["sc:description", "sc:keywords", "sc:name", "dct:conformsTo"], "recommended": ["sc:about", "sc:abstract", "sc:audience", "sc:author", "sc:competencyRequired", "sc:educationalLevel", "sc:identifier", "sc:inLanguage", "sc:learningResourceType", "sc:license", "sc:mentions", "sc:teaches", "sc:timeRequired", "sc:url"], "optional": ["sc:accessibilitySummary", "sc:contributor", "sc:creativeWorkStatus", "sc:dateCreated", "sc:dateModified", "sc:datePublished", "sc:hasPart", "sc:isPartOf", "sc:recordedAt", "sc:version", "sc:workTranslation"], "id": "bsc:TrainingMaterial", "ref_profile": "https://bioschemas.org/profiles/TrainingMaterial/1.0-RELEASE"}, "https://bioschemas.org/profiles/Disease/0.2-DRAFT": {"name": "Disease", "target_classes": ["sc:MedicalCondition"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/Disease/jsonld/Disease_v0.2-DRAFT.json", "required": ["sc:identifier", "sc:name", "dct:conformsTo"], "recommended": ["sc:drug", "sc:description", "sc:image", "sc:url", "sc:sameAs"], "optional": ["sc:alternateName", "sc:disambiguatingDescription"], "id": "bscdrafts:Disease", "ref_profile": "https://bioschemas.org/profiles/Disease/0.2-DRAFT"}, "https://bioschemas.org/profiles/Event/0.3-DRAFT": {"name": "Event", "target_classes": ["sc:Event"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/Event/jsonld/Event_v0.3-DRAFT.json", "required": ["bioschemasdrafts:contact", "sc:description", "sc:endDate", "bioschemasdrafts:eventType", "bioschemasdrafts:hostInstitution", "bioschemasdrafts:location", "sc:name", "sc:startDate", "dct:conformsTo"], "recommended": ["bioschemasdrafts:accreditation", "sc:alternateName", "bioschemasdrafts:audience", "bioschemasdrafts:deadline", "bioschemasdrafts:eligibility", "bioschemasdrafts:keywords", "sc:maximumAttendeeCapacity", "bioschemasdrafts:prerequisite", "bioschemasdrafts:programme", "bioschemasdrafts:topic", "sc:url", "sc:sameAs"], "optional": ["bioschemasdrafts:acceptanceNotificationDate", "bioschemasdrafts:attachment", "bioschemasdrafts:dateModified", "sc:identifier", "sc:offers", "sc:performer", "bioschemasdrafts:registrationStatus", "sc:review", "bioschemasdrafts:socialMedia", "sc:sponsor", "sc:subEvent", "bioschemasdrafts:submitter", "sc:superEvent"], "id": "bscdrafts:Event", "ref_profile": "https://bioschemas.org/profiles/Event/0.3-DRAFT"}, "https://bioschemas.org/profiles/Journal/0.3-DRAFT": {"name": "Journal", "target_classes": ["sc:CreativeWorkSeries"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/Journal/jsonld/Journal_v0.3-DRAFT.json", "required": ["sc:identifier", "sc:name", "dct:conformsTo"], "recommended": ["sc:hasPart", "sc:isAccessibleForFree", "bioschemasdrafts:keywords", "sc:license", "sc:publisher", "sc:url", "sc:sameAs"], "optional": ["sc:about", "sc:alternateName", "sc:editor", "sc:inLanguage", "sc:publishingPrinciples"], "id": "bscdrafts:Journal", "ref_profile": "https://bioschemas.org/profiles/Journal/0.3-DRAFT"}, "https://bioschemas.org/profiles/LabProtocol/0.7-DRAFT": {"name": "LabProtocol", "target_classes": ["bioschemastypesdrafts:LabProtocol"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/LabProtocol/jsonld/LabProtocol_v0.7-DRAFT.json", "required": ["bioschemasdrafts:bioSampleUsed", "sc:headline", "bioschemasdrafts:keywords", "bioschemasdrafts:labEquipmentUsed", "bioschemasdrafts:protocolPurpose", "bioschemasdrafts:reagentUsed", "dct:conformsTo"], "recommended": ["sc:author", "sc:citation", "sc:identifier", "sc:isPartOf", "sc:license", "sc:protocolAdvantage", "sc:protocolApplication", "sc:protocolLimitation", "sc:protocolOutcome", "bioschemasdrafts:softwareUsed", "sc:step", "bioschemasdrafts:totalTime", "sc:sameAs"], "optional": ["sc:dateCreated", "bioschemasdrafts:dateModified", "sc:datePublished", "sc:description", "bioschemasdrafts:isBasedOn", "bioschemasdrafts:performTime", "bioschemasdrafts:prepTime"], "id": "bscdrafts:LabProtocol", "ref_profile": "https://bioschemas.org/profiles/LabProtocol/0.7-DRAFT"}, "https://bioschemas.org/profiles/Organization/0.3-DRAFT": {"name": "Organization", "target_classes": ["sc:Organization"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/Organization/jsonld/Organization_v0.3-DRAFT.json", "required": ["sc:description", "sc:legalName", "sc:name", "sc:sameAs", "bioschemasdrafts:topic", "rdf:type", "dct:conformsTo"], "recommended": ["sc:alternateName", "sc:contactPoint", "bioschemasdrafts:fundingModel", "bioschemasdrafts:keywords", "bioschemasdrafts:location", "sc:logo", "sc:member", "sc:memberOf", "bioschemasdrafts:membershipCategory", "bioschemasdrafts:status", "sc:url", "sc:sameAs"], "optional": ["bioschemasdrafts:attachment", "bioschemasdrafts:budget", "bioschemasdrafts:dateModified", "sc:department", "sc:dissolutionDate", "bioschemasdrafts:founderMember", "sc:foundingDate", "sc:owns", "sc:parentOrganization", "bioschemasdrafts:socialMedia", "sc:subOrganization"], "id": "bscdrafts:Organization", "ref_profile": "https://bioschemas.org/profiles/Organization/0.3-DRAFT"}, "https://bioschemas.org/profiles/Person/0.3-DRAFT": {"name": "Person", "target_classes": ["sc:Person"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/Person/jsonld/Person_v0.3-DRAFT.json", "required": ["sc:description", "sc:mainEntityOfPage", "sc:name", "dct:conformsTo"], "recommended": ["sc:email", "bioschemasdrafts:expertise", "sc:homeLocation", "sc:image", "sc:memberOf", "bioschemasdrafts:orcid", "sc:worksFor", "sc:sameAs"], "optional": ["bioschemasdrafts:advisor", "bioschemasdrafts:curriculumVitae", "bioschemasdrafts:experience", "sc:funding", "bioschemasdrafts:interest", "bioschemasdrafts:internatonalActivities", "bioschemasdrafts:journalReferee", "bioschemasdrafts:keywords", "sc:knowsLanguage", "bioschemasdrafts:works"], "id": "bscdrafts:Person", "ref_profile": "https://bioschemas.org/profiles/Person/0.3-DRAFT"}, "https://bioschemas.org/profiles/Phenotype/0.2-DRAFT": {"name": "Phenotype", "target_classes": ["bioschemastypesdrafts:Phenotype"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/Phenotype/jsonld/Phenotype_v0.2-DRAFT.json", "required": ["sc:identifier", "sc:name", "dct:conformsTo"], "recommended": ["sc:bioChemAssociation", "sc:description", "sc:taxonomicRange", "sc:url", "sc:sameAs"], "optional": ["bioschemasdrafts:additionalProperty", "sc:alternateName", "sc:anatomicalLocation", "sc:associatedDisease", "sc:hasMolecularFunction", "sc:image", "sc:isInvolvedInBiologicalProcess", "sc:isLocatedInSubcellularLocation", "sc:mainEntityOfPage", "sc:valueReference"], "id": "bscdrafts:Phenotype", "ref_profile": "https://bioschemas.org/profiles/Phenotype/0.2-DRAFT"}, "https://bioschemas.org/profiles/ProteinStructure/0.6-DRAFT": {"name": "ProteinStructure", "target_classes": ["sc:BioChemEntity"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/ProteinStructure/jsonld/ProteinStructure_v0.6-DRAFT.json", "required": ["sc:identifier", "dct:conformsTo"], "recommended": ["sc:alternateName", "sc:description", "sc:name", "sc:url", "sc:image", "bioschemasdrafts:boundMolecule", "bioschemasdrafts:expressionSystem", "bioschemasdrafts:structureDeterminationMethod", "sc:sameAs"], "optional": ["bioschemasdrafts:additionalProperty", "sc:additionalType", "bioschemasdrafts:contains", "bioschemasdrafts:hasCategoryCode", "sc:hasRepresentation", "bioschemasdrafts:isContainedIn", "bioschemasdrafts:location", "sc:mainEntityOfPage"], "id": "bscdrafts:ProteinStructure", "ref_profile": "https://bioschemas.org/profiles/ProteinStructure/0.6-DRAFT"}, "https://bioschemas.org/profiles/PublicationIssue/0.3-DRAFT": {"name": "PublicationIssue", "target_classes": ["sc:PublicationIssue"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/PublicationIssue/jsonld/PublicationIssue_v0.3-DRAFT.json", "required": ["sc:issueNumber", "dct:conformsTo"], "recommended": ["sc:hasPart", "sc:identifier", "sc:isPartOf", "sc:pageEnd", "sc:pageStart", "sc:url", "sc:sameAs"], "optional": ["sc:about", "sc:editor", "sc:inLanguage", "bioschemasdrafts:keywords", "sc:pagination"], "id": "bscdrafts:PublicationIssue", "ref_profile": "https://bioschemas.org/profiles/PublicationIssue/0.3-DRAFT"}, "https://bioschemas.org/profiles/PublicationVolume/0.3-DRAFT": {"name": "PublicationVolume", "target_classes": ["sc:PublicationVolume"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/PublicationVolume/jsonld/PublicationVolume_v0.3-DRAFT.json", "required": ["sc:url", "sc:volumeNumber", "dct:conformsTo"], "recommended": ["sc:hasPart", "sc:identifier", "sc:isPartOf", "sc:pageEnd", "sc:pageStart", "sc:sameAs"], "optional": ["sc:about", "sc:editor", "sc:inLanguage", "bioschemasdrafts:keywords", "sc:pagination"], "id": "bscdrafts:PublicationVolume", "ref_profile": "https://bioschemas.org/profiles/PublicationVolume/0.3-DRAFT"}, "https://bioschemas.org/profiles/RNA/0.2-DRAFT": {"name": "RNA", "target_classes": ["bioschemastypesdrafts:RNA"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/RNA/jsonld/RNA_v0.2-DRAFT.json", "required": ["dct:conformsTo"], "recommended": ["sc:sameAs"], "optional": ["sc:additionalType", "sc:alternateName", "sc:associatedDisease", "sc:bioChemInteraction", "sc:bioChemSimilarity", "sc:biologicalRole", "sc:description", "sc:disambiguatingDescription", "sc:encodesBioChemEntity", "sc:hasBioChemEntityPart", "sc:hasMolecularFunction", "sc:hasRepresentation", "sc:hasSequence", "bioschemasdrafts:hasSequenceAnnotation", "sc:identifier", "sc:image", "sc:isCodingRNA", "sc:isEncodedByBioChemEntity", "sc:isInvolvedInBiologicalProcess", "sc:isLocatedInSubcellularLocation", "bioschemasdrafts:isMatchedBy", "sc:isPartOfBioChemEntity", "sc:name", "sc:taxonomicRange", "sc:url"], "id": "bscdrafts:RNA", "ref_profile": "https://bioschemas.org/profiles/RNA/0.2-DRAFT"}, "https://bioschemas.org/profiles/ScholarlyArticle/0.3-DRAFT": {"name": "ScholarlyArticle", "target_classes": ["sc:ScholarlyArticle"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/ScholarlyArticle/jsonld/ScholarlyArticle_v0.3-DRAFT.json", "required": ["sc:identifier", "sc:name", "dct:conformsTo"], "recommended": ["sc:abstract", "sc:author", "sc:citation", "sc:dateCreated", "bioschemasdrafts:dateModified", "sc:datePublished", "sc:isPartOf", "bioschemasdrafts:keywords", "sc:license", "sc:publisher", "sc:url", "sc:sameAs"], "optional": ["sc:about", "sc:articleBody", "sc:correction", "sc:editor", "sc:funder", "sc:headline", "sc:inLanguage", "sc:isAccessibleForFree", "bioschemasdrafts:isBasedOn", "sc:pageEnd", "sc:pageStart", "sc:pagination", "sc:sameAs"], "id": "bscdrafts:ScholarlyArticle", "ref_profile": "https://bioschemas.org/profiles/ScholarlyArticle/0.3-DRAFT"}, "https://bioschemas.org/profiles/SemanticTextAnnotation/0.3-DRAFT": {"name": "SemanticTextAnnotation", "target_classes": ["sc:CreativeWork"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/SemanticTextAnnotation/jsonld/SemanticTextAnnotation_v0.3-DRAFT.json", "required": ["sc:mainEntity", "sc:text", "dct:conformsTo"], "recommended": ["sc:subjectOf", "sc:sameAs"], "optional": ["sc:commentCount", "sc:creator", "sc:dateCreated", "bioschemasdrafts:dateModified", "sc:datePublished", "sc:identifier", "sc:inLanguage", "sc:isPartOf", "sc:position"], "id": "bscdrafts:SemanticTextAnnotation", "ref_profile": "https://bioschemas.org/profiles/SemanticTextAnnotation/0.3-DRAFT"}, "https://bioschemas.org/profiles/SequenceAnnotation/0.7-DRAFT": {"name": "SequenceAnnotation", "target_classes": ["bioschemastypesdrafts:SequenceAnnotation"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/SequenceAnnotation/jsonld/SequenceAnnotation_v0.7-DRAFT.json", "required": ["sc:sequenceLocation", "dct:conformsTo"], "recommended": ["sc:creationMethod", "sc:sequenceOrientation", "sc:sequenceValue", "sc:description", "sc:image", "sc:name", "sc:sameAs", "sc:url"], "optional": ["sc:valueReference", "sc:hasBioChemEntityPart", "sc:hasRepresentation", "sc:isLocatedInSubcellularLocation", "sc:alternateName", "sc:isPartOfBioChemEntity"], "id": "bscdrafts:SequenceAnnotation", "ref_profile": "https://bioschemas.org/profiles/SequenceAnnotation/0.7-DRAFT"}, "https://bioschemas.org/profiles/SequenceRange/0.2-DRAFT": {"name": "SequenceRange", "target_classes": ["bioschemastypesdrafts:SequenceRange"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/SequenceRange/jsonld/SequenceRange_v0.2-DRAFT.json", "required": ["sc:rangeEnd", "sc:rangeStart", "dct:conformsTo"], "recommended": ["sc:endUncertainty", "sc:startUncertainty", "sc:sameAs"], "optional": [], "id": "bscdrafts:SequenceRange", "ref_profile": "https://bioschemas.org/profiles/SequenceRange/0.2-DRAFT"}, "https://bioschemas.org/profiles/Study/0.3-DRAFT": {"name": "Study", "target_classes": ["bioschemastypesdrafts:Study"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/Study/jsonld/Study_v0.3-DRAFT.json", "required": ["sc:author", "sc:datePublished", "sc:description", "sc:identifier", "sc:name", "sc:studyDomain", "sc:studySubject", "dct:conformsTo"], "recommended": ["sc:about", "bioschemasdrafts:additionalProperty", "sc:citation", "sc:creator", "sc:dateCreated", "sc:endDate", "bioschemasdrafts:keywords", "sc:startDate", "sc:studyLocation", "sc:studyProcess", "sc:url", "sc:sameAs"], "optional": ["sc:isPartOf", "ppeo:hasGrowthFacility", "sc:relatedStudy"], "id": "bscdrafts:Study", "ref_profile": "https://bioschemas.org/profiles/Study/0.3-DRAFT"}, "https://bioschemas.org/profiles/TaxonName/0.2-DRAFT": {"name": "TaxonName", "target_classes": ["bioschemastypesdrafts:TaxonName"], "file": "https://raw.githubusercontent.com/BioSchemas/specifications/master/TaxonName/jsonld/TaxonName_v0.2-DRAFT.json", "required": ["sc:name", "dct:conformsTo"], "recommended": ["sc:author", "sc:taxonRank", "sc:url", "sc:sameAs"], "optional": ["sc:additionalType", "sc:description", "sc:identifier", "bioschemasdrafts:isBasedOn"], "id": "bscdrafts:TaxonName", "ref_profile": "https://bioschemas.org/profiles/TaxonName/0.2-DRAFT"}} \ No newline at end of file diff --git a/static/css/app.css b/static/css/app.css index bcb8f7cb..70e63b0b 100644 --- a/static/css/app.css +++ b/static/css/app.css @@ -314,3 +314,9 @@ ul { #vocab_interpret a:link { color: #0000EE; } #vocab_interpret a:visited { color: #551A8B; } + +hr[name="bs_report_sep"] { + background-color: #dbdbdb!important; + width: 50%; + margin-inline: auto; +} \ No newline at end of file diff --git a/static/data/identifiers.org.dump.json b/static/data/identifiers.org.dump.json index 32648fa1..704ff0ba 100644 --- a/static/data/identifiers.org.dump.json +++ b/static/data/identifiers.org.dump.json @@ -1 +1 @@ -{"apiVersion": null, "errorMessage": null, "payload": {"namespaces": [{"id": 1, "prefix": "chebi", "mirId": "MIR:00000002", "name": "ChEBI", "pattern": "^CHEBI:\\d+$", "description": "Chemical Entities of Biological Interest (ChEBI) is a freely available dictionary of molecular entities focused on 'small' chemical compounds.", "created": "2019-06-11T14:15:26.925+0000", "modified": "2019-06-11T14:15:26.925+0000", "resources": [{"id": 3, "mirId": "MIR:00100009", "urlPattern": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:{$id}", "name": "ChEBI (Chemical Entities of Biological Interest)", "description": "ChEBI (Chemical Entities of Biological Interest)", "official": true, "providerCode": "ebi", "sampleId": "36927", "resourceHomeUrl": "https://www.ebi.ac.uk/chebi/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 4, "mirId": "MIR:00100158", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/chebi/terms?obo_id=CHEBI:{$id}", "name": "ChEBI through OLS", "description": "ChEBI through OLS", "official": false, "providerCode": "ols", "sampleId": "36927", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/chebi", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 6, "mirId": "MIR:00100565", "urlPattern": "http://purl.bioontology.org/ontology/CHEBI/CHEBI:{$id}", "name": "ChEBI through BioPortal", "description": "ChEBI through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "36927", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/CHEBI", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "36927", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 7, "prefix": "ensembl", "mirId": "MIR:00000003", "name": "Ensembl", "pattern": "^((ENS[FPTG]\\\\d{11}(\\\\.\\\\d+)?)|(FB\\\\w{2}\\\\d{7})|(Y[A-Z]{2}\\\\d{3}[a-zA-Z](\\\\-[A-Z])?)|([A-Z_a-z0-9]+(\\\\.)?(t)?(\\\\d+)?([a-z])?))$", "description": "Ensembl is a joint project between EMBL - EBI and the Sanger Institute to develop a software system which produces and maintains automatic annotation on selected eukaryotic genomes. This collections also references outgroup organisms.", "created": "2019-06-11T14:15:27.869+0000", "modified": "2019-06-11T14:15:27.869+0000", "resources": [{"id": 9, "mirId": "MIR:00100011", "urlPattern": "https://www.ensembl.org/id/{$id}", "name": "Ensembl at Sanger/EMBL-EBI", "description": "Ensembl at Sanger/EMBL-EBI", "official": true, "providerCode": "ebi", "sampleId": "ENSG00000139618", "resourceHomeUrl": "https://www.ensembl.org/", "institution": {"id": 8, "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 10, "mirId": "MIR:00100561", "urlPattern": "http://uswest.ensembl.org/id/{$id}", "name": "Ensembl US West mirror", "description": "Ensembl US West mirror", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ENSG00000139618", "resourceHomeUrl": "http://uswest.ensembl.org/", "institution": {"id": 8, "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 11, "mirId": "MIR:00100562", "urlPattern": "http://useast.ensembl.org/id/{$id}", "name": "Ensembl US East mirror", "description": "Ensembl US East mirror", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ENSG00000139618", "resourceHomeUrl": "http://useast.ensembl.org/", "institution": {"id": 8, "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 12, "mirId": "MIR:00100563", "urlPattern": "http://asia.ensembl.org/id/{$id}", "name": "Ensembl Asia mirror", "description": "Ensembl Asia mirror", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ENSG00000139618", "resourceHomeUrl": "http://asia.ensembl.org/", "institution": {"id": 8, "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "SG", "countryName": "Singapore"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ENSG00000139618", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 13, "prefix": "ec-code", "mirId": "MIR:00000004", "name": "Enzyme Nomenclature", "pattern": "^\\d+\\.-\\.-\\.-|\\d+\\.\\d+\\.-\\.-|\\d+\\.\\d+\\.\\d+\\.-|\\d+\\.\\d+\\.\\d+\\.(n)?\\d+$", "description": "The Enzyme Classification contains the recommendations of the Nomenclature Committee of the International Union of Biochemistry and Molecular Biology on the nomenclature and classification of enzyme-catalysed reactions.", "created": "2019-06-11T14:15:28.483+0000", "modified": "2019-06-11T14:15:28.483+0000", "resources": [{"id": 14, "mirId": "MIR:00100001", "urlPattern": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec={$id}", "name": "IntEnZ (Integrated relational Enzyme database)", "description": "IntEnZ (Integrated relational Enzyme database)", "official": false, "providerCode": "intenz", "sampleId": "1.1.1.1", "resourceHomeUrl": "https://www.ebi.ac.uk/intenz/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 16, "mirId": "MIR:00100002", "urlPattern": "https://www.genome.jp/dbget-bin/www_bget?ec:{$id}", "name": "KEGG Ligand Database for Enzyme Nomenclature", "description": "KEGG Ligand Database for Enzyme Nomenclature", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1.1.1.1", "resourceHomeUrl": "https://www.genome.jp/dbget-bin/www_bfind?enzyme", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}, {"id": 20, "mirId": "MIR:00100308", "urlPattern": "http://www.enzyme-database.org/query.php?ec={$id}", "name": "ExploreEnz at Trinity College", "description": "ExploreEnz at Trinity College", "official": false, "providerCode": "expenz", "sampleId": "1.1.1.1", "resourceHomeUrl": "http://www.enzyme-database.org/", "institution": {"id": 19, "name": "Trinity College, Dublin", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IE", "countryName": "Ireland"}}, "location": {"countryCode": "IE", "countryName": "Ireland"}, "deprecated": false, "deprecationDate": null}, {"id": 22, "mirId": "MIR:00100835", "urlPattern": "https://www.ebi.ac.uk/enzymeportal/ec/{$id}", "name": "Enzyme Portal through EMBL-EBI", "description": "Enzyme Portal through EMBL-EBI", "official": false, "providerCode": "enzymeportal", "sampleId": "1.1.1.1", "resourceHomeUrl": "https://www.ebi.ac.uk/enzymeportal", "institution": {"id": 21, "name": "Enzyme Portal at European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 18, "mirId": "MIR:00100003", "urlPattern": "https://enzyme.expasy.org/EC/{$id}", "name": "Enzyme nomenclature database, ExPASy (Expert Protein Analysis System)", "description": "Enzyme nomenclature database, ExPASy (Expert Protein Analysis System)", "official": false, "providerCode": "expasy", "sampleId": "1.1.1.1", "resourceHomeUrl": "https://enzyme.expasy.org/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1.1.1.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 23, "prefix": "uniprot", "mirId": "MIR:00000005", "name": "UniProt Knowledgebase", "pattern": "^([A-N,R-Z][0-9]([A-Z][A-Z, 0-9][A-Z, 0-9][0-9]){1,2})|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])(\\.\\d+)?$", "description": "The UniProt Knowledgebase (UniProtKB) is a comprehensive resource for protein sequence and functional information with extensive cross-references to more than 120 external databases. Besides amino acid sequence and a description, it also provides taxonomic data and citation information.", "created": "2019-06-11T14:15:29.457+0000", "modified": "2019-06-11T14:15:29.457+0000", "resources": [{"id": 27, "mirId": "MIR:00100330", "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}", "name": "UniProt through NCBI", "description": "UniProt through NCBI", "official": false, "providerCode": "ncbi", "sampleId": "P0DP23", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/protein/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 25, "mirId": "MIR:00100164", "urlPattern": "http://purl.uniprot.org/uniprot/{$id}", "name": "Universal Protein Resource using Persistent URL system", "description": "Universal Protein Resource using Persistent URL system", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "P0DP23", "resourceHomeUrl": "https://www.uniprot.org/", "institution": {"id": 24, "name": "UniProt Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P0DP23", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 28, "prefix": "taxonomy", "mirId": "MIR:00000006", "name": "Taxonomy", "pattern": "^\\d+$", "description": "The taxonomy contains the relationships between all living forms for which nucleic acid or protein sequence have been determined.", "created": "2019-06-11T14:15:29.882+0000", "modified": "2019-06-11T14:15:29.882+0000", "resources": [{"id": 29, "mirId": "MIR:00100007", "urlPattern": "https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id={$id}", "name": "NCBI Taxonomy", "description": "NCBI Taxonomy", "official": true, "providerCode": "ncbi", "sampleId": "9606", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/Taxonomy/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 30, "mirId": "MIR:00100019", "urlPattern": "https://purl.uniprot.org/taxonomy/{$id}", "name": "Taxonomy through UniProt PURL", "description": "Taxonomy through UniProt PURL", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "9606", "resourceHomeUrl": "https://www.uniprot.org/taxonomy/", "institution": {"id": 24, "name": "UniProt Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 31, "mirId": "MIR:00100299", "urlPattern": "https://www.ebi.ac.uk/ena/data/view/Taxon:{$id}", "name": "European Nucleotide Archive (ENA)", "description": "European Nucleotide Archive (ENA)", "official": false, "providerCode": "ebi", "sampleId": "9606", "resourceHomeUrl": "https://www.ebi.ac.uk/ena/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 32, "mirId": "MIR:00100507", "urlPattern": "http://purl.bioontology.org/ontology/NCBITAXON/{$id}", "name": "BioPortal", "description": "BioPortal", "official": false, "providerCode": "bptl", "sampleId": "9606", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/NCBITAXON", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 35, "mirId": "MIR:00100770", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ncbitaxon/terms?short_form=NCBITaxon_{$id}", "name": "NCBI Taxonomy through OLS", "description": "NCBI Taxonomy through OLS", "official": false, "providerCode": "ols", "sampleId": "9606", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ncbitaxon/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 34, "mirId": "MIR:00100695", "urlPattern": "https://bio2rdf.org/taxonomy:{$id}", "name": "Bio2RDF", "description": "Bio2RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "9606", "resourceHomeUrl": "https://bio2rdf.org/", "institution": {"id": 33, "name": "Bio2RDF.org", "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "9606", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 36, "prefix": "biomodels.db", "mirId": "MIR:00000007", "name": "BioModels Database", "pattern": "^((BIOMD|MODEL)\\d{10})|(BMID\\d{12})$", "description": "BioModels Database is a data resource that allows biologists to store, search and retrieve published mathematical models of biological interests.", "created": "2019-06-11T14:15:30.877+0000", "modified": "2019-06-11T14:15:30.877+0000", "resources": [{"id": 37, "mirId": "MIR:00100006", "urlPattern": "https://www.ebi.ac.uk/biomodels/{$id}", "name": "BioModels Database", "description": "BioModels Database", "official": true, "providerCode": "ebi", "sampleId": "BIOMD0000000048", "resourceHomeUrl": "https://www.ebi.ac.uk/biomodels/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 39, "mirId": "MIR:00100107", "urlPattern": "http://biomodels.caltech.edu/{$id}", "name": "Caltech mirror", "description": "Caltech mirror", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BIOMD0000000048", "resourceHomeUrl": "http://biomodels.caltech.edu/", "institution": {"id": 38, "name": "California Institute of Technology", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 40, "mirId": "MIR:00100855", "urlPattern": "https://www.omicsdi.org/dataset/biomodels/{$id}", "name": "BioModels through OmicsDI", "description": "BioModels through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "BIOMD0000000048", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BIOMD0000000048", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 43, "prefix": "icd", "mirId": "MIR:00000009", "name": "ICD", "pattern": "^[A-Z]\\d+(\\.[-\\d+])?$", "description": "The International Classification of Diseases is the international standard diagnostic classification for all general epidemiological and many health management purposes.", "created": "2019-06-11T14:15:31.658+0000", "modified": "2019-06-11T14:15:31.658+0000", "resources": [{"id": 45, "mirId": "MIR:00100016", "urlPattern": "http://apps.who.int/classifications/icd10/browse/2010/en#/{$id}", "name": "International Statistical Classification of Diseases and Related Health Problems", "description": "International Statistical Classification of Diseases and Related Health Problems", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "C34", "resourceHomeUrl": "http://www.who.int/classifications/icd/en/", "institution": {"id": 44, "name": "German Institute of Medical Documentation and Information", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C34", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 46, "prefix": "intact", "mirId": "MIR:00000010", "name": "IntAct", "pattern": "^EBI\\-[0-9]+$", "description": "IntAct provides a freely available, open source database system and analysis tools for protein interaction data.", "created": "2019-06-11T14:15:31.920+0000", "modified": "2019-06-11T14:15:31.920+0000", "resources": [{"id": 47, "mirId": "MIR:00100017", "urlPattern": "https://www.ebi.ac.uk/intact/interaction/{$id}", "name": "IntAct at EBI", "description": "IntAct at EBI", "official": true, "providerCode": "ebi", "sampleId": "EBI-2307691", "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EBI-2307691", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 48, "prefix": "interpro", "mirId": "MIR:00000011", "name": "InterPro", "pattern": "^IPR\\d{6}$", "description": "InterPro is a database of protein families, domains and functional sites in which identifiable features found in known proteins can be applied to unknown protein sequences.", "created": "2019-06-11T14:15:32.153+0000", "modified": "2019-06-11T14:15:32.153+0000", "resources": [{"id": 49, "mirId": "MIR:00100018", "urlPattern": "https://www.ebi.ac.uk/interpro/entry/{$id}", "name": "InterPro", "description": "InterPro", "official": true, "providerCode": "ebi", "sampleId": "IPR000100", "resourceHomeUrl": "https://www.ebi.ac.uk/interpro/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 50, "mirId": "MIR:00100697", "urlPattern": "http://interpro.bio2rdf.org/describe/?url=http://bio2rdf.org/interpro:{$id}", "name": "Bio2RDF", "description": "Bio2RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "IPR000100", "resourceHomeUrl": "http://interpro.bio2rdf.org/fct/", "institution": {"id": 33, "name": "Bio2RDF.org", "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "IPR000100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 51, "prefix": "kegg.pathway", "mirId": "MIR:00000012", "name": "KEGG Pathway", "pattern": "^\\w{2,4}\\d{5}$", "description": "KEGG PATHWAY is a collection of manually drawn pathway maps representing our knowledge on the molecular interaction and reaction networks.", "created": "2019-06-11T14:15:32.480+0000", "modified": "2019-06-11T14:15:32.480+0000", "resources": [{"id": 52, "mirId": "MIR:00100020", "urlPattern": "https://www.kegg.jp/entry/{$id}", "name": "KEGG PATHWAY Database", "description": "KEGG PATHWAY Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "hsa00620", "resourceHomeUrl": "https://www.genome.jp/kegg/pathway.html", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "hsa00620", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 53, "prefix": "kegg.compound", "mirId": "MIR:00000013", "name": "KEGG Compound", "pattern": "^C\\d+$", "description": "KEGG compound contains our knowledge on the universe of chemical substances that are relevant to life.", "created": "2019-06-11T14:15:32.730+0000", "modified": "2019-06-11T14:15:32.730+0000", "resources": [{"id": 54, "mirId": "MIR:00100021", "urlPattern": "https://www.kegg.jp/entry/{$id}", "name": "KEGG LIGAND Database", "description": "KEGG LIGAND Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "C12345", "resourceHomeUrl": "https://www.genome.jp/kegg/ligand.html", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C12345", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 55, "prefix": "kegg.reaction", "mirId": "MIR:00000014", "name": "KEGG Reaction", "pattern": "^R\\d+$", "description": "KEGG reaction contains our knowledge on the universe of reactions that are relevant to life.", "created": "2019-06-11T14:15:32.930+0000", "modified": "2019-06-11T14:15:32.930+0000", "resources": [{"id": 56, "mirId": "MIR:00100022", "urlPattern": "https://www.kegg.jp/entry/{$id}", "name": "KEGG Reaction Database", "description": "KEGG Reaction Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "R00100", "resourceHomeUrl": "https://www.genome.jp/kegg/reaction/", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "R00100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 57, "prefix": "pubmed", "mirId": "MIR:00000015", "name": "PubMed", "pattern": "^\\d+$", "description": "PubMed is a service of the U.S. National Library of Medicine that includes citations from MEDLINE and other life science journals for biomedical articles back to the 1950s.", "created": "2019-06-11T14:15:33.142+0000", "modified": "2019-06-11T14:15:33.142+0000", "resources": [{"id": 58, "mirId": "MIR:00100023", "urlPattern": "https://www.ncbi.nlm.nih.gov/pubmed/{$id}", "name": "NCBI PubMed", "description": "NCBI PubMed", "official": true, "providerCode": "ncbi", "sampleId": "16333295", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/PubMed/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 60, "mirId": "MIR:00100064", "urlPattern": "http://www.hubmed.org/display.cgi?uids={$id}", "name": "HubMed", "description": "HubMed", "official": false, "providerCode": "hubmed", "sampleId": "16333295", "resourceHomeUrl": "http://www.hubmed.org/", "institution": {"id": 59, "name": "University Health Network", "homeUrl": "https://www.uhn.ca/", "description": "The University Health Network has grown out of a series of mergers between our current hospitals, as we have adjusted and change to accommodate our growing and changing patient community in and around the GTA.", "rorId": "https://ror.org/042xt5161", "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 62, "mirId": "MIR:00100497", "urlPattern": "http://europepmc.org/abstract/MED/{$id}", "name": "Europe PMC", "description": "Europe PMC", "official": false, "providerCode": "epmc", "sampleId": "16333295", "resourceHomeUrl": "http://europepmc.org/", "institution": {"id": 61, "name": "Europe PubMed Central partners", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 64, "mirId": "MIR:00100745", "urlPattern": "http://linkedlifedata.com/resource/pubmed/id/{$id}", "name": "PubMed through Linkedlife data", "description": "PubMed through Linkedlife data", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "23735196", "resourceHomeUrl": "http://linkedlifedata.com/", "institution": {"id": 63, "name": "Linkedlifedata, Ontotext, Sofia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "BG", "countryName": "Bulgaria"}}, "location": {"countryCode": "BG", "countryName": "Bulgaria"}, "deprecated": false, "deprecationDate": null}, {"id": 2466, "mirId": "MIR:00000788", "urlPattern": "https://scholia.toolforge.org/pubmed/{$id}", "name": "Scholia", "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", "official": false, "providerCode": "scholia", "sampleId": "29029422", "resourceHomeUrl": "https://scholia.toolforge.org/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "16333295", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 65, "prefix": "mim", "mirId": "MIR:00000016", "name": "OMIM", "pattern": "^[*#+%^]?\\d{6}$", "description": "Online Mendelian Inheritance in Man is a catalog of human genes and genetic disorders.", "created": "2019-06-11T14:15:33.878+0000", "modified": "2019-06-11T14:15:33.878+0000", "resources": [{"id": 67, "mirId": "MIR:00100024", "urlPattern": "https://omim.org/entry/{$id}", "name": "OMIM at John Hopkins", "description": "OMIM at John Hopkins", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "603903", "resourceHomeUrl": "https://omim.org/", "institution": {"id": 66, "name": "Johns Hopkins University, Baltimore, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 68, "mirId": "MIR:00100777", "urlPattern": "http://mirror.omim.org/entry/{$id}", "name": "OMIM mirror at John Hopkins", "description": "OMIM mirror at John Hopkins", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "603903", "resourceHomeUrl": "http://mirror.omim.org/", "institution": {"id": 66, "name": "Johns Hopkins University, Baltimore, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "603903", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 69, "prefix": "pirsf", "mirId": "MIR:00000017", "name": "PIRSF", "pattern": "^PIRSF\\d{6}$", "description": "The PIR SuperFamily concept is being used as a guiding principle to provide comprehensive and non-overlapping clustering of UniProtKB sequences into a hierarchical order to reflect their evolutionary relationships.", "created": "2019-06-11T14:15:34.294+0000", "modified": "2019-06-11T14:15:34.294+0000", "resources": [{"id": 71, "mirId": "MIR:00100025", "urlPattern": "https://pir.georgetown.edu/cgi-bin/ipcSF?id={$id}", "name": "PIRSF", "description": "PIRSF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PIRSF000100", "resourceHomeUrl": "https://pir.georgetown.edu/", "institution": {"id": 70, "name": "Georgetown University Medical Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PIRSF000100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 72, "prefix": "reactome", "mirId": "MIR:00000018", "name": "Reactome", "pattern": "(^R-[A-Z]{3}-\\d+(-\\d+)?(\\.\\d+)?$)|(^REACT_\\d+(\\.\\d+)?$)", "description": "The Reactome project is a collaboration to develop a curated resource of core pathways and reactions in human biology.", "created": "2019-06-11T14:15:34.555+0000", "modified": "2019-06-11T14:15:34.555+0000", "resources": [{"id": 74, "mirId": "MIR:00100026", "urlPattern": "https://reactome.org/content/detail/{$id}", "name": "Reactome, a curated knowledgebase of biological pathways", "description": "Reactome, a curated knowledgebase of biological pathways", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "R-HSA-201451", "resourceHomeUrl": "https://www.reactome.org/", "institution": {"id": 73, "name": "Ontario Institute for Cancer Research, NYU Medical School, Cold Spring Harbor Laboratory and European Bioinformatics Institute", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "R-HSA-201451", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 75, "prefix": "doi", "mirId": "MIR:00000019", "name": "DOI", "pattern": "^(doi\\:)?\\d{2}\\.\\d{4}.*$", "description": "The Digital Object Identifier System is for identifying content objects in the digital environment.", "created": "2019-06-11T14:15:34.841+0000", "modified": "2019-06-11T14:15:34.841+0000", "resources": [{"id": 77, "mirId": "MIR:00100010", "urlPattern": "https://doi.org/{$id}", "name": "Digital Object Identifier", "description": "Digital Object Identifier", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "10.1038/nbt1156", "resourceHomeUrl": "https://www.doi.org/", "institution": {"id": 76, "name": "International DOI Foundation", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 2462, "mirId": "MIR:00000793", "urlPattern": "https://scholia.toolforge.org/doi/{$id}", "name": "Scholia", "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", "official": false, "providerCode": "scholia", "sampleId": "10.1186/S13321-016-0161-3", "resourceHomeUrl": "https://scholia.toolforge.org/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "10.1038/nbt1156", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 78, "prefix": "pdb", "mirId": "MIR:00000020", "name": "Protein Data Bank", "pattern": "^[0-9][A-Za-z0-9]{3}$", "description": "The Protein Data Bank is the single worldwide archive of structural data of biological macromolecules.", "created": "2019-06-11T14:15:35.100+0000", "modified": "2019-06-11T14:15:35.100+0000", "resources": [{"id": 83, "mirId": "MIR:00100096", "urlPattern": "http://proteopedia.org/wiki/index.php/{$id}", "name": "Proteopedia", "description": "Proteopedia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2gc4", "resourceHomeUrl": "http://www.proteopedia.org/", "institution": {"id": 82, "name": "Weizmann Institute of Science", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IL", "countryName": "Israel"}}, "location": {"countryCode": "IL", "countryName": "Israel"}, "deprecated": false, "deprecationDate": null}, {"id": 86, "mirId": "MIR:00100166", "urlPattern": "https://www.ebi.ac.uk/pdbsum/{$id}", "name": "Protein Databank through PDBsum", "description": "Protein Databank through PDBsum", "official": false, "providerCode": "ebi", "sampleId": "2gc4", "resourceHomeUrl": "https://www.ebi.ac.uk/pdbsum/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 80, "mirId": "MIR:00100029", "urlPattern": "https://www.rcsb.org/structure/{$id}", "name": "RCSB PDB", "description": "RCSB PDB", "official": false, "providerCode": "rcsb", "sampleId": "2gc4", "resourceHomeUrl": "https://www.rcsb.org/", "institution": {"id": 79, "name": "Rutgers, The State University of New Jersey", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 85, "mirId": "MIR:00100165", "urlPattern": "https://pdbj.org/mine/summary/{$id}", "name": "Protein Data Bank Japan (PDBj)", "description": "Protein Data Bank Japan (PDBj)", "official": false, "providerCode": "pdbj", "sampleId": "2gc4", "resourceHomeUrl": "http://www.pdbj.org/", "institution": {"id": 84, "name": "Institute for Protein Research, Osaka University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}, {"id": 81, "mirId": "MIR:00100037", "urlPattern": "https://www.ebi.ac.uk/pdbe/entry/pdb/{$id}", "name": "Protein Databank in Europe (PDBe)", "description": "Protein Databank in Europe (PDBe)", "official": false, "providerCode": "pdbe", "sampleId": "2gc4", "resourceHomeUrl": "http://www.pdbe.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 3061, "mirId": "MIR:00001018", "urlPattern": "https://www.wwpdb.org/pdb?id={$id}", "name": "Worldwide Protein Data Bank", "description": "The Worldwide PDB (wwPDB) organization manages the PDB archive and ensures that the PDB is freely and publicly available to the global community.", "official": true, "providerCode": "wwpdb", "sampleId": "2g4c", "resourceHomeUrl": "https://www.wwpdb.org/", "institution": {"id": 3060, "name": "Worldwide Protein Data Bank", "homeUrl": "https://www.wwpdb.org/", "description": "The Worldwide PDB (wwPDB) organization manages the PDB archive and ensures that the PDB is freely and publicly available to the global community.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2gc4", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 87, "prefix": "go", "mirId": "MIR:00000022", "name": "Gene Ontology", "pattern": "^GO:\\d{7}$", "description": "The Gene Ontology project provides a controlled vocabulary to describe gene and gene product attributes in any organism.", "created": "2019-06-11T14:15:35.970+0000", "modified": "2019-06-11T14:15:35.970+0000", "resources": [{"id": 88, "mirId": "MIR:00100012", "urlPattern": "https://www.ebi.ac.uk/QuickGO/GTerm?id=GO:{$id}", "name": "QuickGO (Gene Ontology browser)", "description": "QuickGO (Gene Ontology browser)", "official": false, "providerCode": "quickgo", "sampleId": "0006915", "resourceHomeUrl": "https://www.ebi.ac.uk/QuickGO/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 90, "mirId": "MIR:00100013", "urlPattern": "http://amigo.geneontology.org/amigo/term/GO:{$id}", "name": "AmiGO 2", "description": "AmiGO 2", "official": true, "providerCode": "amigo", "sampleId": "0006915", "resourceHomeUrl": "http://amigo.geneontology.org/", "institution": {"id": 89, "name": "The Gene Ontology Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 92, "mirId": "MIR:00100015", "urlPattern": "http://www.informatics.jax.org/searches/GO.cgi?id=GO:{$id}", "name": "GO Browser", "description": "GO Browser", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0006915", "resourceHomeUrl": "http://www.informatics.jax.org/searches/GO_form.shtml", "institution": {"id": 91, "name": "The Jackson Laboratory", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 93, "mirId": "MIR:00100237", "urlPattern": "http://purl.bioontology.org/ontology/GO/GO:{$id}", "name": "GO through BioPortal", "description": "GO through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0006915", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/GO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 95, "mirId": "MIR:00100585", "urlPattern": "http://www.pantherdb.org/panther/category.do?categoryAcc=GO:{$id}", "name": "GO through PANTHER", "description": "GO through PANTHER", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0000003", "resourceHomeUrl": "http://www.pantherdb.org/", "institution": {"id": 94, "name": "Keck School of Medicine, University of Southern California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 96, "mirId": "MIR:00100675", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/go/terms?obo_id=GO:{$id}", "name": "GO through OLS", "description": "GO through OLS", "official": false, "providerCode": "ols", "sampleId": "0006915", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/go", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0006915", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 97, "prefix": "sgd", "mirId": "MIR:00000023", "name": "SGD", "pattern": "^((S\\d+$)|(Y[A-Z]{2}\\d{3}[a-zA-Z](\\-[A-Z])?))$", "description": "The Saccharomyces Genome Database (SGD) project collects information and maintains a database of the molecular biology of the yeast Saccharomyces cerevisiae.", "created": "2019-06-11T14:15:37.056+0000", "modified": "2019-06-11T14:15:37.056+0000", "resources": [{"id": 99, "mirId": "MIR:00100033", "urlPattern": "https://www.yeastgenome.org/locus/{$id}", "name": "SGD", "description": "SGD", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "S000003909", "resourceHomeUrl": "https://www.yeastgenome.org/", "institution": {"id": 98, "name": "Stanford University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 100, "mirId": "MIR:00100703", "urlPattern": "http://sgd.bio2rdf.org/describe/?url=http://bio2rdf.org/sgd:{$id}", "name": "Bio2RDF", "description": "Bio2RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "S000003909", "resourceHomeUrl": "http://sgd.bio2rdf.org/fct", "institution": {"id": 33, "name": "Bio2RDF.org", "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 102, "mirId": "MIR:00100892", "urlPattern": "https://bioentity.link/#/lexicon/public/{$id}", "name": "SGD through BioEntity Link", "description": "SGD through BioEntity Link", "official": false, "providerCode": "bioentitylink", "sampleId": "S000003909", "resourceHomeUrl": "https://bioentity.link/", "institution": {"id": 101, "name": "InSilico Inc, in Eugene, Oregon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 104, "mirId": "MIR:00100906", "urlPattern": "https://www.alliancegenome.org/gene/SGD:{$id}", "name": "SGD through the Alliance of Genome Resources", "description": "SGD through the Alliance of Genome Resources", "official": false, "providerCode": "agr", "sampleId": "S000003909", "resourceHomeUrl": "https://www.alliancegenome.org", "institution": {"id": 103, "name": "Alliance of Genome Resources", "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "S000003909", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 105, "prefix": "sbo", "mirId": "MIR:00000024", "name": "Systems Biology Ontology", "pattern": "^SBO:\\d{7}$", "description": "The goal of the Systems Biology Ontology is to develop controlled vocabularies and ontologies tailored specifically for the kinds of problems being faced in Systems Biology, especially in the context of computational modeling. SBO is a project of the BioModels.net effort.", "created": "2019-06-11T14:15:37.756+0000", "modified": "2019-06-11T14:15:37.756+0000", "resources": [{"id": 108, "mirId": "MIR:00100242", "urlPattern": "http://purl.bioontology.org/ontology/SBO/SBO:{$id}", "name": "SBO through BioPortal", "description": "SBO through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0000262", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/SBO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 106, "mirId": "MIR:00100034", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100034/{$id}", "name": "SBO", "description": "SBO", "official": false, "providerCode": "biomodels.sbo", "sampleId": "0000262", "resourceHomeUrl": "https://www.ebi.ac.uk/sbo/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": true, "deprecationDate": "2022-11-10T10:15:12.911+0000"}, {"id": 107, "mirId": "MIR:00100176", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/sbo/terms?obo_id=SBO:{$id}", "name": "SBO through OLS", "description": "SBO through OLS", "official": true, "providerCode": "ols", "sampleId": "0000262", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/sbo", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000262", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 109, "prefix": "kegg.drug", "mirId": "MIR:00000025", "name": "KEGG Drug", "pattern": "^D\\d+$", "description": "KEGG DRUG contains chemical structures of drugs and additional information such as therapeutic categories and target molecules.", "created": "2019-06-11T14:15:38.268+0000", "modified": "2019-06-11T14:15:38.268+0000", "resources": [{"id": 110, "mirId": "MIR:00100035", "urlPattern": "https://www.kegg.jp/entry/{$id}", "name": "KEGG DRUG Database", "description": "KEGG DRUG Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "D00123", "resourceHomeUrl": "https://www.genome.jp/kegg/drug/", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "D00123", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 111, "prefix": "kegg.glycan", "mirId": "MIR:00000026", "name": "KEGG Glycan", "pattern": "^G\\d+$", "description": "KEGG GLYCAN, a part of the KEGG LIGAND database, is a collection of experimentally determined glycan structures. It contains all unique structures taken from CarbBank, structures entered from recent publications, and structures present in KEGG pathways.", "created": "2019-06-11T14:15:38.579+0000", "modified": "2019-06-11T14:15:38.579+0000", "resources": [{"id": 112, "mirId": "MIR:00100036", "urlPattern": "https://www.kegg.jp/entry/{$id}", "name": "KEGG GLYCAN Database", "description": "KEGG GLYCAN Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "G00123", "resourceHomeUrl": "https://www.genome.jp/kegg/glycan/", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "G00123", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 113, "prefix": "wb", "mirId": "MIR:00000027", "name": "WormBase", "pattern": "^WB[A-Z][a-z]+\\d+$", "description": "WormBase is an online bioinformatics database of the biology and genome of the model organism Caenorhabditis elegans and other nematodes. It is used by the C. elegans research community both as an information resource and as a mode to publish and distribute their results. This collection references WormBase-accessioned entities.", "created": "2019-06-11T14:15:38.790+0000", "modified": "2019-06-11T14:15:38.790+0000", "resources": [{"id": 114, "mirId": "MIR:00100038", "urlPattern": "https://www.wormbase.org/get?name={$id}", "name": "WormBase", "description": "WormBase", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "WBGene00000001", "resourceHomeUrl": "https://www.wormbase.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 115, "mirId": "MIR:00100890", "urlPattern": "https://bioentity.link/#/lexicon/public/{$id}", "name": "WormBase through BioEntity Link", "description": "WormBase through BioEntity Link", "official": false, "providerCode": "bioentitylink", "sampleId": "WBGene00021291", "resourceHomeUrl": "https://bioentity.link/", "institution": {"id": 101, "name": "InSilico Inc, in Eugene, Oregon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 116, "mirId": "MIR:00100901", "urlPattern": "https://www.alliancegenome.org/gene/WB:{$id}", "name": "WormBase through the Alliance of Genome Resources", "description": "WormBase through the Alliance of Genome Resources", "official": false, "providerCode": "agr", "sampleId": "WBGene00000001", "resourceHomeUrl": "https://www.alliancegenome.org", "institution": {"id": 103, "name": "Alliance of Genome Resources", "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "WBGene00000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 117, "prefix": "pfam", "mirId": "MIR:00000028", "name": "Pfam", "pattern": "^PF\\d{5}$", "description": "The Pfam database contains information about protein domains and families. For each entry a protein sequence alignment and a Hidden Markov Model is stored.", "created": "2019-06-11T14:15:39.270+0000", "modified": "2019-06-11T14:15:39.270+0000", "resources": [{"id": 118, "mirId": "MIR:00100685", "urlPattern": "https://pfam.xfam.org/family/{$id}", "name": "Pfam at EMBL-EBI", "description": "Pfam at EMBL-EBI", "official": true, "providerCode": "ebi", "sampleId": "PF01234", "resourceHomeUrl": "https://pfam.xfam.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PF01234", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 119, "prefix": "insdc", "mirId": "MIR:00000029", "name": "Nucleotide Sequence Database", "pattern": "^([A-Z]\\d{5}|[A-Z]{2}\\d{6}|[A-Z]{4}\\d{8}|[A-J][A-Z]{2}\\d{5})(\\.\\d+)?$", "description": "The International Nucleotide Sequence Database Collaboration (INSDC) consists of a joint effort to collect and disseminate databases containing DNA and RNA sequences.", "created": "2019-06-11T14:15:39.496+0000", "modified": "2019-06-11T14:15:39.496+0000", "resources": [{"id": 120, "mirId": "MIR:00100049", "urlPattern": "https://www.ncbi.nlm.nih.gov/nuccore/{$id}", "name": "INSDC through GenBank", "description": "INSDC through GenBank", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "X58356", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/Genbank/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 122, "mirId": "MIR:00100066", "urlPattern": "http://getentry.ddbj.nig.ac.jp/getentry?database=ddbj&accession_number={$id}", "name": "INSDC through DDBJ", "description": "INSDC through DDBJ", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "X58356", "resourceHomeUrl": "http://www.ddbj.nig.ac.jp/", "institution": {"id": 121, "name": "DNA Data Bank of Japan, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}, {"id": 123, "mirId": "MIR:00100487", "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", "name": "INSDC through European Nucleotide Archive (ENA)", "description": "INSDC through European Nucleotide Archive (ENA)", "official": false, "providerCode": "ebi", "sampleId": "X58356", "resourceHomeUrl": "https://www.ebi.ac.uk/ena/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 124, "mirId": "MIR:00100490", "urlPattern": "https://www.ncbi.nlm.nih.gov/nuccore/{$id}", "name": "INSDC through Nucleotide database at NCBI", "description": "INSDC through Nucleotide database at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "X58356", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/nuccore/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "X58356", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 125, "prefix": "fb", "mirId": "MIR:00000030", "name": "FlyBase", "pattern": "^FB\\w{2}\\d{7}$", "description": "FlyBase is the database of the Drosophila Genome Projects and of associated literature.", "created": "2019-06-11T14:15:40.188+0000", "modified": "2019-06-11T14:15:40.188+0000", "resources": [{"id": 127, "mirId": "MIR:00100050", "urlPattern": "http://flybase.org/reports/{$id}.html", "name": "The FlyBase Database", "description": "The FlyBase Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "FBgn0011293", "resourceHomeUrl": "http://flybase.org/", "institution": {"id": 126, "name": "The FlyBase Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 128, "mirId": "MIR:00100893", "urlPattern": "https://bioentity.link/#/lexicon/public/{$id}", "name": "FlyBase through BioEntity Link", "description": "FlyBase through BioEntity Link", "official": false, "providerCode": "bioentitylink", "sampleId": "FBgn0011293", "resourceHomeUrl": "https://bioentity.link/", "institution": {"id": 101, "name": "InSilico Inc, in Eugene, Oregon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 129, "mirId": "MIR:00100904", "urlPattern": "https://www.alliancegenome.org/gene/FB:{$id}", "name": "FlyBase through the Alliance of Genome Resources", "description": "FlyBase through the Alliance of Genome Resources", "official": false, "providerCode": "agr", "sampleId": "FBgn0011293", "resourceHomeUrl": "https://www.alliancegenome.org", "institution": {"id": 103, "name": "Alliance of Genome Resources", "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "FBgn0011293", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 130, "prefix": "wormpep", "mirId": "MIR:00000031", "name": "Wormpep", "pattern": "^CE\\d{5}$", "description": "Wormpep contains the predicted proteins from the Caenorhabditis elegans genome sequencing project.", "created": "2019-06-11T14:15:40.709+0000", "modified": "2019-06-11T14:15:40.709+0000", "resources": [{"id": 132, "mirId": "MIR:00100051", "urlPattern": "https://www.wormbase.org/db/seq/protein?name={$id}", "name": "Wormpep (Master)", "description": "Wormpep (Master)", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "CE28239", "resourceHomeUrl": "https://www.wormbase.org/db/seq/protein", "institution": {"id": 131, "name": "Cold Spring Harbor Laboratory", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CE28239", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 133, "prefix": "prosite", "mirId": "MIR:00000032", "name": "PROSITE", "pattern": "^PS\\d{5}$", "description": "PROSITE consists of documentation entries describing protein domains, families and functional sites as well as associated patterns and profiles to identify them.", "created": "2019-06-11T14:15:40.983+0000", "modified": "2019-06-11T14:15:40.983+0000", "resources": [{"id": 135, "mirId": "MIR:00100056", "urlPattern": "https://prosite.expasy.org/{$id}", "name": "ExPASy PROSITE", "description": "ExPASy PROSITE", "official": false, "providerCode": "expasy", "sampleId": "PS00001", "resourceHomeUrl": "https://www.expasy.org/prosite/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PS00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 136, "prefix": "pubchem.substance", "mirId": "MIR:00000033", "name": "PubChem-substance", "pattern": "^\\d+$", "description": "PubChem provides information on the biological activities of small molecules. It is a component of NIH's Molecular Libraries Roadmap Initiative. PubChem Substance archives chemical substance records.", "created": "2019-06-11T14:15:41.269+0000", "modified": "2019-06-11T14:15:41.269+0000", "resources": [{"id": 137, "mirId": "MIR:00100058", "urlPattern": "https://pubchem.ncbi.nlm.nih.gov/substance/{$id}", "name": "NCBI PubChem Substance", "description": "NCBI PubChem Substance", "official": false, "providerCode": "ncbi", "sampleId": "100101", "resourceHomeUrl": "https://pubchem.ncbi.nlm.nih.gov/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "100101", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 138, "prefix": "pubchem.compound", "mirId": "MIR:00000034", "name": "PubChem-compound", "pattern": "^\\d+$", "description": "PubChem provides information on the biological activities of small molecules. It is a component of NIH's Molecular Libraries Roadmap Initiative. PubChem Compound archives chemical structures and records.", "created": "2019-06-11T14:15:41.493+0000", "modified": "2019-06-11T14:15:41.493+0000", "resources": [{"id": 139, "mirId": "MIR:00100059", "urlPattern": "https://pubchem.ncbi.nlm.nih.gov/compound/{$id}", "name": "NCBI PubChem Compound", "description": "NCBI PubChem Compound", "official": true, "providerCode": "ncbi", "sampleId": "100101", "resourceHomeUrl": "https://pubchem.ncbi.nlm.nih.gov/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 2449, "mirId": "MIR:00000698", "urlPattern": "https://scholia.toolforge.org/pubchem/{$id}", "name": "Scholia", "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", "official": false, "providerCode": "scholia", "sampleId": "14123361", "resourceHomeUrl": "https://scholia.toolforge.org/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "100101", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 140, "prefix": "arxiv", "mirId": "MIR:00000035", "name": "arXiv", "pattern": "^(\\w+(\\-\\w+)?(\\.\\w+)?)?\\d{4,7}(\\.\\d+(v\\d+)?)?$", "description": "arXiv is an e-print service in the fields of physics, mathematics, non-linear science, computer science, and quantitative biology.", "created": "2019-06-11T14:15:41.707+0000", "modified": "2019-06-11T14:15:41.707+0000", "resources": [{"id": 142, "mirId": "MIR:00100060", "urlPattern": "https://arxiv.org/abs/{$id}", "name": "Cornell University arXiv", "description": "Cornell University arXiv", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0807.4956v1", "resourceHomeUrl": "https://arxiv.org/", "institution": {"id": 141, "name": "Cornell University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0807.4956v1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 143, "prefix": "arrayexpress", "mirId": "MIR:00000036", "name": "ArrayExpress", "pattern": "^[AEP]-\\w{4}-\\d+$", "description": "ArrayExpress is a public repository for microarray data, which is aimed at storing MIAME-compliant data in accordance with Microarray Gene Expression Data (MGED) recommendations.", "created": "2019-06-11T14:15:41.970+0000", "modified": "2019-06-11T14:15:41.970+0000", "resources": [{"id": 144, "mirId": "MIR:00100061", "urlPattern": "https://www.ebi.ac.uk/arrayexpress/experiments/{$id}", "name": "ArrayExpress", "description": "ArrayExpress", "official": true, "providerCode": "ebi", "sampleId": "E-MEXP-1712", "resourceHomeUrl": "https://www.ebi.ac.uk/arrayexpress/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 145, "mirId": "MIR:00100854", "urlPattern": "https://www.omicsdi.org/dataset/arrayexpress-repository/{$id}", "name": "ArrayExpress through OmicsDI", "description": "ArrayExpress through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "E-MEXP-1712", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "E-MEXP-1712", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 146, "prefix": "mgi", "mirId": "MIR:00000037", "name": "Mouse Genome Database", "pattern": "^MGI:\\d+$", "description": "The Mouse Genome Database (MGD) project includes data on gene characterization, nomenclature, mapping, gene homologies among mammals, sequence links, phenotypes, allelic variants and mutants, and strain data.", "created": "2019-06-11T14:15:42.331+0000", "modified": "2019-06-11T14:15:42.331+0000", "resources": [{"id": 147, "mirId": "MIR:00100062", "urlPattern": "http://www.informatics.jax.org/accession/MGI:{$id}", "name": "Mouse Genome Informatics Database", "description": "Mouse Genome Informatics Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "2442292", "resourceHomeUrl": "http://www.informatics.jax.org/", "institution": {"id": 91, "name": "The Jackson Laboratory", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 148, "mirId": "MIR:00100894", "urlPattern": "https://bioentity.link/#/lexicon/public/MGI:{$id}", "name": "MGD through BioEntity Link", "description": "MGD through BioEntity Link", "official": false, "providerCode": "bioentitylink", "sampleId": "2442292", "resourceHomeUrl": "https://bioentity.link/", "institution": {"id": 101, "name": "InSilico Inc, in Eugene, Oregon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 149, "mirId": "MIR:00100903", "urlPattern": "https://www.alliancegenome.org/gene/MGI:{$id}", "name": "MGI through the Alliance of Genome Resources", "description": "MGI through the Alliance of Genome Resources", "official": false, "providerCode": "agr", "sampleId": "2442292", "resourceHomeUrl": "https://www.alliancegenome.org", "institution": {"id": 103, "name": "Alliance of Genome Resources", "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2442292", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 150, "prefix": "sabiork.reaction", "mirId": "MIR:00000038", "name": "SABIO-RK Reaction", "pattern": "^\\d+$", "description": "SABIO-RK is a relational database system that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. The reaction data set provides information regarding the organism in which a reaction is observed, pathways in which it participates, and links to further information.", "created": "2019-06-11T14:15:42.838+0000", "modified": "2019-06-11T14:15:42.838+0000", "resources": [{"id": 152, "mirId": "MIR:00100063", "urlPattern": "http://sabiork.h-its.org/newSearch?q=sabioreactionid:{$id}", "name": "SABIO-RK reaction", "description": "SABIO-RK reaction", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "75", "resourceHomeUrl": "http://sabiork.h-its.org/", "institution": {"id": 151, "name": "Heidelberg Institute for Theoretical Studies (HITS gGmbH)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "75", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 156, "prefix": "tcdb", "mirId": "MIR:00000040", "name": "Transport Classification Database", "pattern": "^\\d+(\\.[A-Z])?(\\.\\d+)?(\\.\\d+)?(\\.\\d+)?$", "description": "The database details a comprehensive IUBMB approved classification system for membrane transport proteins known as the Transporter Classification (TC) system. The TC system is analogous to the Enzyme Commission (EC) system for classification of enzymes, but incorporates phylogenetic information additionally.", "created": "2019-06-11T14:15:43.342+0000", "modified": "2019-06-11T14:15:43.342+0000", "resources": [{"id": 158, "mirId": "MIR:00100068", "urlPattern": "http://www.tcdb.org/search/result.php?tc={$id}", "name": "TCDB", "description": "TCDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "5.A.1.1.1", "resourceHomeUrl": "http://www.tcdb.org/", "institution": {"id": 157, "name": "Division of Biological Sciences, UCSD", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5.A.1.1.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 159, "prefix": "uniparc", "mirId": "MIR:00000041", "name": "UniParc", "pattern": "^UPI[A-F0-9]{10}$", "description": "The UniProt Archive (UniParc) is a database containing non-redundant protein sequence information from many sources. Each unique sequence is given a stable and unique identifier (UPI) making it possible to identify the same protein from different source databases.", "created": "2019-06-11T14:15:43.590+0000", "modified": "2019-06-11T14:15:43.590+0000", "resources": [{"id": 160, "mirId": "MIR:00100069", "urlPattern": "https://www.ebi.ac.uk/cgi-bin/dbfetch?db=uniparc&id={$id}", "name": "UniProt Archive (UniParc)", "description": "UniProt Archive (UniParc)", "official": false, "providerCode": "ebi", "sampleId": "UPI000000000A", "resourceHomeUrl": "https://www.ebi.ac.uk/uniparc/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 161, "mirId": "MIR:00100476", "urlPattern": "https://www.uniprot.org/uniparc/{$id}", "name": "UniParc through UniProt", "description": "UniParc through UniProt", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "UPI000000000A", "resourceHomeUrl": "http://www.uniprot.org/uniparc/", "institution": {"id": 24, "name": "UniProt Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "UPI000000000A", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 162, "prefix": "mint", "mirId": "MIR:00000042", "name": "MINT", "pattern": "^MINT\\-\\d{1,7}$", "description": "The Molecular INTeraction database (MINT) stores, in a structured format, information about molecular interactions by extracting experimental details from work published in peer-reviewed journals.", "created": "2019-06-11T14:15:43.925+0000", "modified": "2019-06-11T14:15:43.925+0000", "resources": [{"id": 164, "mirId": "MIR:00100070", "urlPattern": "http://mint.bio.uniroma2.it/mint/search/inFrameInteraction.do?interactionAc={$id}", "name": "The Molecular INTeraction database (MINT)", "description": "The Molecular INTeraction database (MINT)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MINT-10000", "resourceHomeUrl": "http://mint.bio.uniroma2.it/mint/", "institution": {"id": 163, "name": "University of Rome Tor Vergata, Rome", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}, {"id": 165, "mirId": "MIR:00100654", "urlPattern": "https://www.ebi.ac.uk/intact/query/interaction_id:{$id}", "name": "MINT subset through IntAct", "description": "MINT subset through IntAct", "official": false, "providerCode": "ebi", "sampleId": "MINT-7905142", "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MINT-10000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 166, "prefix": "dip", "mirId": "MIR:00000044", "name": "Database of Interacting Proteins", "pattern": "^DIP(\\:)?\\-\\d{1,}[ENXS]$", "description": "The database of interacting protein (DIP) database stores experimentally determined interactions between proteins. It combines information from a variety of sources to create a single, consistent set of protein-protein interactions", "created": "2019-06-11T14:15:44.329+0000", "modified": "2019-06-11T14:15:44.329+0000", "resources": [{"id": 168, "mirId": "MIR:00100072", "urlPattern": "https://dip.doe-mbi.ucla.edu/dip/DIPview.cgi?ID={$id}", "name": "Database of interacting proteins", "description": "Database of interacting proteins", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "DIP-743N", "resourceHomeUrl": "https://dip.doe-mbi.ucla.edu/", "institution": {"id": 167, "name": "UCLA", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DIP-743N", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 169, "prefix": "signaling-gateway", "mirId": "MIR:00000045", "name": "Signaling Gateway", "pattern": "A\\d{6}$", "description": "The Signaling Gateway provides information on mammalian proteins involved in cellular signaling.", "created": "2019-06-11T14:15:44.579+0000", "modified": "2019-06-11T14:15:44.579+0000", "resources": [{"id": 171, "mirId": "MIR:00100073", "urlPattern": "http://www.signaling-gateway.org/molecule/query?afcsid={$id}", "name": "Signaling Gateway Molecule Pages", "description": "Signaling Gateway Molecule Pages", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "A001094", "resourceHomeUrl": "http://www.signaling-gateway.org/molecule", "institution": {"id": 170, "name": "UC San Diego", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "A001094", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 172, "prefix": "resid", "mirId": "MIR:00000046", "name": "RESID", "pattern": "^AA\\d{4}$", "description": "The RESID Database of Protein Modifications is a comprehensive collection of annotations and structures for protein modifications including amino-terminal, carboxyl-terminal and peptide chain cross-link post-translational modifications.", "created": "2019-06-11T14:15:44.821+0000", "modified": "2019-06-11T14:15:44.821+0000", "resources": [{"id": 174, "mirId": "MIR:00100653", "urlPattern": "http://pir0.georgetown.edu/cgi-bin/resid?id={$id}", "name": "RESID at Georgetown University", "description": "RESID at Georgetown University", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "AA0001", "resourceHomeUrl": "http://pir0.georgetown.edu/resid/", "institution": {"id": 173, "name": "Georgetown University Medical Center, Washington", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AA0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 175, "prefix": "rgd", "mirId": "MIR:00000047", "name": "Rat Genome Database", "pattern": "^\\d{4,}$", "description": "Rat Genome Database seeks to collect, consolidate, and integrate rat genomic and genetic data with curated functional and physiological data and make these data widely available to the scientific community. This collection references genes.", "created": "2019-06-11T14:15:45.062+0000", "modified": "2019-06-11T14:15:45.062+0000", "resources": [{"id": 177, "mirId": "MIR:00100075", "urlPattern": "http://rgd.mcw.edu/rgdweb/report/gene/main.html?id={$id}", "name": "Rat Genome Database", "description": "Rat Genome Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "2018", "resourceHomeUrl": "http://rgd.mcw.edu/", "institution": {"id": 176, "name": "Medical College of Wisconsin", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 178, "mirId": "MIR:00100905", "urlPattern": "https://www.alliancegenome.org/gene/RGD:{$id}", "name": "RGD through the Alliance of Genome Resources", "description": "RGD through the Alliance of Genome Resources", "official": false, "providerCode": "agr", "sampleId": "2018", "resourceHomeUrl": "https://www.alliancegenome.org", "institution": {"id": 103, "name": "Alliance of Genome Resources", "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2018", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 179, "prefix": "tair.protein", "mirId": "MIR:00000048", "name": "TAIR Protein", "pattern": "^AASequence:\\d{10}$", "description": "The Arabidopsis Information Resource (TAIR) maintains a database of genetic and molecular biology data for the model higher plant Arabidopsis thaliana. This provides protein information for a given gene model and provides links to other sources such as UniProtKB and GenPept", "created": "2019-06-11T14:15:45.813+0000", "modified": "2019-06-11T14:15:45.813+0000", "resources": [{"id": 181, "mirId": "MIR:00100076", "urlPattern": "http://arabidopsis.org/servlets/TairObject?accession={$id}", "name": "The Arabidopsis Information Resource (TAIR) Protein", "description": "The Arabidopsis Information Resource (TAIR) Protein", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AASequence:1009107926", "resourceHomeUrl": "http://arabidopsis.org/index.jsp", "institution": {"id": 180, "name": "Carnegie Institution of Washington Department of Plant Biology and National Center for Genome Resources (NCGR)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AASequence:1009107926", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 182, "prefix": "tair.gene", "mirId": "MIR:00000049", "name": "TAIR Gene", "pattern": "^Gene:\\d{7}$", "description": "The Arabidopsis Information Resource (TAIR) maintains a database of genetic and molecular biology data for the model higher plant Arabidopsis thaliana. This is the reference gene model for a given locus.", "created": "2019-06-11T14:15:46.061+0000", "modified": "2019-06-11T14:15:46.061+0000", "resources": [{"id": 183, "mirId": "MIR:00100077", "urlPattern": "http://arabidopsis.org/servlets/TairObject?accession={$id}", "name": "The Arabidopsis Information Resource (TAIR) Gene", "description": "The Arabidopsis Information Resource (TAIR) Gene", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Gene:2200934", "resourceHomeUrl": "http://arabidopsis.org/index.jsp", "institution": {"id": 180, "name": "Carnegie Institution of Washington Department of Plant Biology and National Center for Genome Resources (NCGR)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Gene:2200934", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 184, "prefix": "tair.locus", "mirId": "MIR:00000050", "name": "TAIR Locus", "pattern": "^\\d{7}$", "description": "The Arabidopsis Information Resource (TAIR) maintains a database of genetic and molecular biology data for the model higher plant Arabidopsis thaliana. The name of a Locus is unique and used by TAIR, TIGR, and MIPS.", "created": "2019-06-11T14:15:46.274+0000", "modified": "2019-06-11T14:15:46.274+0000", "resources": [{"id": 185, "mirId": "MIR:00100078", "urlPattern": "http://www.arabidopsis.org/servlets/TairObject?accession=Locus:{$id}", "name": "The Arabidopsis Information Resource (TAIR) Locus", "description": "The Arabidopsis Information Resource (TAIR) Locus", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2200950", "resourceHomeUrl": "http://arabidopsis.org/index.jsp", "institution": {"id": 180, "name": "Carnegie Institution of Washington Department of Plant Biology and National Center for Genome Resources (NCGR)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2200950", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 186, "prefix": "hmdb", "mirId": "MIR:00000051", "name": "HMDB", "pattern": "^HMDB\\d+$", "description": "The Human Metabolome Database (HMDB) is a database containing detailed information about small molecule metabolites found in the human body.It contains or links 1) chemical 2) clinical and 3) molecular biology/biochemistry data.", "created": "2019-06-11T14:15:46.469+0000", "modified": "2019-06-11T14:15:46.469+0000", "resources": [{"id": 188, "mirId": "MIR:00100079", "urlPattern": "http://www.hmdb.ca/metabolites/{$id}", "name": "The Human Metabolome Database", "description": "The Human Metabolome Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HMDB00001", "resourceHomeUrl": "http://www.hmdb.ca/", "institution": {"id": 334, "name": "University of Alberta", "homeUrl": "https://www.ualberta.ca", "description": "The University of Alberta in Edmonton is one of Canada's top teaching and research universities, with an international reputation for excellence across the humanities, sciences, creative arts, business, engineering and health sciences.", "rorId": "https://ror.org/0160cpw27", "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HMDB00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 189, "prefix": "lipidmaps", "mirId": "MIR:00000052", "name": "LIPID MAPS", "pattern": "^LM(FA|GL|GP|SP|ST|PR|SL|PK)[0-9]{4}([0-9a-zA-Z]{4,6})?$", "description": "The LIPID MAPS Lipid Classification System is comprised of eight lipid categories, each with its own subclassification hierarchy. All lipids in the LIPID MAPS Structure Database (LMSD) have been classified using this system and have been assigned LIPID MAPS ID's which reflects their position in the classification hierarchy.", "created": "2019-06-11T14:15:46.708+0000", "modified": "2019-06-11T14:15:46.708+0000", "resources": [{"id": 191, "mirId": "MIR:00100080", "urlPattern": "http://www.lipidmaps.org/data/LMSDRecord.php?LMID={$id}", "name": "Department of Bioengineering and the San Diego Supercomputer Center", "description": "Department of Bioengineering and the San Diego Supercomputer Center", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "LMPR0102010012", "resourceHomeUrl": "http://www.lipidmaps.org", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 2458, "mirId": "MIR:00000781", "urlPattern": "https://scholia.toolforge.org/lipidmaps/{$id}", "name": "Scholia", "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", "official": false, "providerCode": "scholia", "sampleId": "LMFA00000007", "resourceHomeUrl": "https://scholia.toolforge.org/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LMPR0102010012", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 192, "prefix": "peptideatlas", "mirId": "MIR:00000053", "name": "PeptideAtlas", "pattern": "^PAp[0-9]{8}$", "description": "The PeptideAtlas Project provides a publicly accessible database of peptides identified in tandem mass spectrometry proteomics studies and software tools.", "created": "2019-06-11T14:15:46.969+0000", "modified": "2019-06-11T14:15:46.969+0000", "resources": [{"id": 194, "mirId": "MIR:00100081", "urlPattern": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/Summarize_Peptide?query=QUERY&searchForThis={$id}", "name": "PeptideAtlas at ISB", "description": "PeptideAtlas at ISB", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "PAp00000009", "resourceHomeUrl": "http://www.peptideatlas.org/", "institution": {"id": 193, "name": "Institute for Systems Biology", "homeUrl": "https://isbscience.org/", "description": "ISB was created in 2000 as the first-ever institute dedicated to systems biology.", "rorId": "https://ror.org/02tpgw303", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PAp00000009", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 195, "prefix": "geo", "mirId": "MIR:00000054", "name": "GEO", "pattern": "^G(PL|SM|SE|DS)\\d+$", "description": "The Gene Expression Omnibus (GEO) is a gene expression repository providing a curated, online resource for gene expression data browsing, query and retrieval.", "created": "2019-06-11T14:15:47.245+0000", "modified": "2019-06-11T14:15:47.245+0000", "resources": [{"id": 196, "mirId": "MIR:00100082", "urlPattern": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc={$id}", "name": "Gene Expression Omnibus at NCBI", "description": "Gene Expression Omnibus at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "GDS1234", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/geo/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GDS1234", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 197, "prefix": "eco", "mirId": "MIR:00000055", "name": "Evidence Code Ontology", "pattern": "ECO:\\d{7}$", "description": "Evidence codes can be used to specify the type of supporting evidence for a piece of knowledge. This allows inference of a 'level of support' between an entity and an annotation made to an entity.", "created": "2019-06-11T14:15:47.447+0000", "modified": "2019-06-11T14:15:47.447+0000", "resources": [{"id": 198, "mirId": "MIR:00100083", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/eco/terms?obo_id=ECO:{$id}", "name": "Evidence Codes via the Ontology Lookup Service (OLS)", "description": "Evidence Codes via the Ontology Lookup Service (OLS)", "official": false, "providerCode": "ols", "sampleId": "0000006", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/eco", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 199, "mirId": "MIR:00100235", "urlPattern": "http://purl.bioontology.org/ontology/ECO/ECO:{$id}", "name": "Evidence Code Ontology through BioPortal", "description": "Evidence Code Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0000006", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/ECO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000006", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 200, "prefix": "mod", "mirId": "MIR:00000056", "name": "Protein Modification Ontology", "pattern": "^MOD:\\d{5}", "description": "The Proteomics Standards Initiative modification ontology (PSI-MOD) aims to define a concensus nomenclature and ontology reconciling, in a hierarchical representation, the complementary descriptions of residue modifications.", "created": "2019-06-11T14:15:47.775+0000", "modified": "2019-06-11T14:15:47.775+0000", "resources": [{"id": 201, "mirId": "MIR:00100084", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/mod/terms?obo_id=MOD:{$id}", "name": "Protein modifications ontology via the Ontology Lookup Service (OLS)", "description": "Protein modifications ontology via the Ontology Lookup Service (OLS)", "official": false, "providerCode": "ols", "sampleId": "00001", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/mod", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 202, "mirId": "MIR:00100239", "urlPattern": "http://bioportal.bioontology.org/ontologies/1041?p=terms&conceptid=MOD:{$id}", "name": "Protein modifications ontology through BioPortal", "description": "Protein modifications ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "00001", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PSIMOD", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00001", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 203, "prefix": "sgd.pathways", "mirId": "MIR:00000057", "name": "Saccharomyces genome database pathways", "pattern": "^PWY\\w{2}\\-\\d{3}$", "description": "Curated biochemical pathways for Saccharomyces cerevisiae at Saccharomyces genome database (SGD).", "created": "2019-06-11T14:15:48.132+0000", "modified": "2019-06-11T14:15:48.132+0000", "resources": [{"id": 205, "mirId": "MIR:00100085", "urlPattern": "http://pathway.yeastgenome.org/YEAST/new-image?type=PATHWAY&object={$id}", "name": "Saccharomyces cerevisiae pathways at SGD.", "description": "Saccharomyces cerevisiae pathways at SGD.", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PWY3O-214", "resourceHomeUrl": "http://pathway.yeastgenome.org/", "institution": {"id": 204, "name": "SGD, Stanford University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PWY3O-214", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 206, "prefix": "biogrid", "mirId": "MIR:00000058", "name": "BioGRID", "pattern": "^\\d+$", "description": "BioGRID is a database of physical and genetic interactions in Saccharomyces cerevisiae, Caenorhabditis elegans, Drosophila melanogaster, Homo sapiens, and Schizosaccharomyces pombe.", "created": "2019-06-11T14:15:48.429+0000", "modified": "2019-06-11T14:15:48.429+0000", "resources": [{"id": 208, "mirId": "MIR:00100086", "urlPattern": "http://thebiogrid.org/{$id}", "name": "BioGRID database of physical and genetic interactions", "description": "BioGRID database of physical and genetic interactions", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "31623", "resourceHomeUrl": "http://thebiogrid.org/", "institution": {"id": 207, "name": "Ontario Cancer Institute", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "31623", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 209, "prefix": "merops", "mirId": "MIR:00000059", "name": "MEROPS", "pattern": "^[SCTAGMNU]\\d{2}\\.([AB]\\d{2}|\\d{3})$", "description": "The MEROPS database is an information resource for peptidases (also termed proteases, proteinases and proteolytic enzymes) and the proteins that inhibit them.", "created": "2019-06-11T14:15:48.677+0000", "modified": "2019-06-11T14:15:48.677+0000", "resources": [{"id": 211, "mirId": "MIR:00100087", "urlPattern": "http://merops.sanger.ac.uk/cgi-bin/pepsum?mid={$id}", "name": "MEROPS database at Sanger Institute", "description": "MEROPS database at Sanger Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "S01.001", "resourceHomeUrl": "http://merops.sanger.ac.uk/index.htm", "institution": {"id": 210, "name": "Wellcome Trust Sanger Institute", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "S01.001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 212, "prefix": "panther.family", "mirId": "MIR:00000060", "name": "PANTHER Family", "pattern": "^PTHR\\d{5}(\\:SF\\d{1,3})?$", "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. This collection references groups of genes that have been organised as families.", "created": "2019-06-11T14:15:48.923+0000", "modified": "2019-06-11T14:15:48.923+0000", "resources": [{"id": 213, "mirId": "MIR:00100088", "urlPattern": "http://www.pantherdb.org/panther/family.do?clsAccession={$id}", "name": "PANTHER Family at USC (Los Angeles)", "description": "PANTHER Family at USC (Los Angeles)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PTHR12345", "resourceHomeUrl": "http://www.pantherdb.org/", "institution": {"id": 94, "name": "Keck School of Medicine, University of Southern California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PTHR12345", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 214, "prefix": "prints", "mirId": "MIR:00000061", "name": "PRINTS", "pattern": "^PR\\d{5}$", "description": "PRINTS is a compendium of protein fingerprints. A fingerprint is a group of conserved motifs used to characterise a protein family; its diagnostic power is refined by iterative scanning of a SWISS-PROT/TrEMBL composite. Usually the motifs do not overlap, but are separated along a sequence, though they may be contiguous in 3D-space. Fingerprints can encode protein folds and functionalities more flexibly and powerfully than can single motifs, full diagnostic potency deriving from the mutual context provided by motif neighbours.", "created": "2019-06-11T14:15:49.123+0000", "modified": "2019-06-11T14:15:49.123+0000", "resources": [{"id": 216, "mirId": "MIR:00100089", "urlPattern": "http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?prints_accn={$id}&display_opts=Prints&category=None&queryform=false®expr=off", "name": "PRINTS through SPRINT", "description": "PRINTS through SPRINT", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PR00001", "resourceHomeUrl": "http://www.bioinf.manchester.ac.uk/dbbrowser/sprint/", "institution": {"id": 215, "name": "University of Manchester", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PR00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 217, "prefix": "ligandexpo", "mirId": "MIR:00000062", "name": "Ligand Expo", "pattern": "^(\\w){3}$", "description": "Ligand Expo is a data resource for finding information about small molecules bound to proteins and nucleic acids.", "created": "2019-06-11T14:15:49.385+0000", "modified": "2019-06-11T14:15:49.385+0000", "resources": [{"id": 218, "mirId": "MIR:00100090", "urlPattern": "http://ligand-depot.rutgers.edu/pyapps/ldHandler.py?formid=cc-index-search&target={$id}&operation=ccid", "name": "Ligand Expo at RutgersRCSB PDB", "description": "Ligand Expo at RutgersRCSB PDB", "official": false, "providerCode": "rcsb", "sampleId": "ABC", "resourceHomeUrl": "http://ligand-depot.rutgers.edu/index.html", "institution": {"id": 79, "name": "Rutgers, The State University of New Jersey", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 219, "mirId": "MIR:00100615", "urlPattern": "http://ligand-expo.rcsb.org/pyapps/ldHandler.py?formid=cc-index-search&target={$id}&operation=ccid", "name": "Ligand Expo at Rutgers", "description": "Ligand Expo at Rutgers", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ABC", "resourceHomeUrl": "http://ligand-expo.rcsb.org/", "institution": {"id": 79, "name": "Rutgers, The State University of New Jersey", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ABC", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 220, "prefix": "mge", "mirId": "MIR:00000063", "name": "Aclame", "pattern": "^mge:\\d+$", "description": "ACLAME is a database dedicated to the collection and classification of mobile genetic elements (MGEs) from various sources, comprising all known phage genomes, plasmids and transposons.", "created": "2019-06-11T14:15:49.786+0000", "modified": "2019-06-11T14:15:49.786+0000", "resources": [{"id": 222, "mirId": "MIR:00100091", "urlPattern": "http://aclame.ulb.ac.be/perl/Aclame/Genomes/mge_view.cgi?view=info&id=mge:{$id}", "name": "Aclame database of mobile genetic elements", "description": "Aclame database of mobile genetic elements", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2", "resourceHomeUrl": "http://aclame.ulb.ac.be/", "institution": {"id": 221, "name": "Service de Conformation de Macromol\u00e9cules Biologiques et de Bioinformatique, Universit\u00e9 Libre de Bruxelles", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "BE", "countryName": "Belgium"}}, "location": {"countryCode": "BE", "countryName": "Belgium"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 223, "prefix": "isbn", "mirId": "MIR:00000064", "name": "ISBN", "pattern": "^(ISBN)?(-13|-10)?[:]?[ ]?(\\d{2,3}[ -]?)?\\d{1,5}[ -]?\\d{1,7}[ -]?\\d{1,6}[ -]?(\\d|X)$", "description": "The International Standard Book Number (ISBN) is for identifying printed books.", "created": "2019-06-11T14:15:50.037+0000", "modified": "2019-06-11T14:15:50.037+0000", "resources": [{"id": 225, "mirId": "MIR:00100092", "urlPattern": "http://isbndb.com/search-all.html?kw={$id}", "name": "ISBNDB - ISBN Database", "description": "ISBNDB - ISBN Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "9781584885658", "resourceHomeUrl": "http://isbndb.com/", "institution": {"id": 224, "name": "ISNBdb project, San Gabriel, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 227, "mirId": "MIR:00100093", "urlPattern": "http://www.worldcat.org/isbn/{$id}", "name": "ISBN database at WorldCat", "description": "ISBN database at WorldCat", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "9781584885658", "resourceHomeUrl": "http://www.worldcat.org/", "institution": {"id": 226, "name": "OCLC Online Computer Library Center, Inc. Ohio", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "9781584885658", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 228, "prefix": "pride", "mirId": "MIR:00000065", "name": "PRIDE", "pattern": "^\\d+$", "description": "The PRIDE PRoteomics IDEntifications database is a centralized, standards compliant, public data repository that provides protein and peptide identifications together with supporting evidence. This collection references experiments and assays.", "created": "2019-06-11T14:15:50.454+0000", "modified": "2019-06-11T14:15:50.454+0000", "resources": [{"id": 229, "mirId": "MIR:00100094", "urlPattern": "https://www.ebi.ac.uk/pride/archive/assays/{$id}", "name": "PRIDE at EBI", "description": "PRIDE at EBI", "official": true, "providerCode": "ebi", "sampleId": "1", "resourceHomeUrl": "https://www.ebi.ac.uk/pride/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 230, "prefix": "3dmet", "mirId": "MIR:00000066", "name": "3DMET", "pattern": "^B\\d{5}$", "description": "3DMET is a database collecting three-dimensional structures of natural metabolites.", "created": "2019-06-11T14:15:50.652+0000", "modified": "2019-06-11T14:15:50.652+0000", "resources": [{"id": 232, "mirId": "MIR:00100095", "urlPattern": "http://www.3dmet.dna.affrc.go.jp/cgi/show_data.php?acc={$id}", "name": "3DMET database", "description": "3DMET database", "official": false, "providerCode": "nias", "sampleId": "B00162", "resourceHomeUrl": "http://www.3dmet.dna.affrc.go.jp/", "institution": {"id": 231, "name": "National Institute of Agrobiological Sciences", "homeUrl": "http://www.naro.affrc.go.jp/archive/nias/index_e.html", "description": "The National Institute of Agrobiological Sciences (NIAS) is the largest agricultural research institute in Japan for basic life sciences. As a major research institute of the Ministry of Agriculture, Forestry and Fisheries (MAFF), it was formerly known as the National Institute of Agrobiological Resources (NIAR) until it was re-established as an independent administrative institution in April 1, 2001. The institute focuses on understanding the biological phenomena of agriculturally important plants, insects, microbes and animals to create innovative technologies, and eventually contribute to the solution of global issues such as food shortage due to rapid population growth and environmental problems due to climate change", "rorId": "https://ror.org/01786mp71", "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "B00162", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 233, "prefix": "fma", "mirId": "MIR:00000067", "name": "FMA", "pattern": "^FMA:\\d+$", "description": "The Foundational Model of Anatomy Ontology (FMA) is a biomedical informatics ontology. It is concerned with the representation of classes or types and relationships necessary for the symbolic representation of the phenotypic structure of the human body. Specifically, the FMA is a domain ontology that represents a coherent body of explicit declarative knowledge about human anatomy.", "created": "2019-06-11T14:15:50.895+0000", "modified": "2019-06-11T14:15:50.895+0000", "resources": [{"id": 234, "mirId": "MIR:00100097", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/fma/terms?obo_id=FMA:{$id}", "name": "Foundational Model of Anatomy via Ontology Lookup Service (OLS)", "description": "Foundational Model of Anatomy via Ontology Lookup Service (OLS)", "official": false, "providerCode": "ols", "sampleId": "67112", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/fma/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 235, "mirId": "MIR:00100236", "urlPattern": "http://purl.bioontology.org/ontology/FMA_subset/FMA:{$id}", "name": "Foundational Model of Anatomy through BioPortal", "description": "Foundational Model of Anatomy through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "67112", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/FMA", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "67112", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 236, "prefix": "matrixdb.association", "mirId": "MIR:00000068", "name": "MatrixDB", "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])_.*|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9]_.*)|(GAG_.*)|(MULT_.*)|(PFRAG_.*)|(LIP_.*)|(CAT_.*)$", "description": "MatrixDB stores experimentally determined interactions involving at least one extracellular biomolecule. It includes mostly protein-protein and protein-glycosaminoglycan interactions, as well as interactions with lipids and cations.", "created": "2019-06-11T14:15:51.252+0000", "modified": "2019-06-11T14:15:51.252+0000", "resources": [{"id": 238, "mirId": "MIR:00100098", "urlPattern": "http://matrixdb.univ-lyon1.fr//cgi-bin/current/newPort?type=association&value={$id}&class=Association", "name": "MatrixDB Association", "description": "MatrixDB Association", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "P00747__P07355", "resourceHomeUrl": "http://matrixdb.univ-lyon1.fr/", "institution": {"id": 237, "name": "Institut de Biologie et Chimie des Prot\u00e9ines, Lyon University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P00747__P07355", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 239, "prefix": "ncbigene", "mirId": "MIR:00000069", "name": "NCBI Gene", "pattern": "^\\d+$", "description": "Entrez Gene is the NCBI's database for gene-specific information, focusing on completely sequenced genomes, those with an active research community to contribute gene-specific information, or those that are scheduled for intense sequence analysis.", "created": "2019-06-11T14:15:51.483+0000", "modified": "2019-06-11T14:15:51.483+0000", "resources": [{"id": 240, "mirId": "MIR:00100099", "urlPattern": "https://www.ncbi.nlm.nih.gov/gene/{$id}", "name": "Entrez Gene (NCBI)", "description": "Entrez Gene (NCBI)", "official": true, "providerCode": "ncbi", "sampleId": "100010", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/gene", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 241, "mirId": "MIR:00100693", "urlPattern": "http://ncbigene.bio2rdf.org/describe/?url=http://bio2rdf.org/ncbigene:{$id}", "name": "Bio2RDF", "description": "Bio2RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "100010", "resourceHomeUrl": "http://ncbigene.bio2rdf.org/fct", "institution": {"id": 33, "name": "Bio2RDF.org", "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "100010", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 242, "prefix": "kegg.genes", "mirId": "MIR:00000070", "name": "KEGG Genes", "pattern": "^\\w+:[\\w\\d\\.-]*$", "description": "KEGG GENES is a collection of gene catalogs for all complete genomes and some partial genomes, generated from publicly available resources.", "created": "2019-06-11T14:15:51.781+0000", "modified": "2019-06-11T14:15:51.781+0000", "resources": [{"id": 243, "mirId": "MIR:00100100", "urlPattern": "http://www.kegg.jp/entry/{$id}", "name": "KEGG GENES Database", "description": "KEGG GENES Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "syn:ssr3451", "resourceHomeUrl": "http://www.genome.jp/kegg/genes.html", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "syn:ssr3451", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 244, "prefix": "brenda", "mirId": "MIR:00000071", "name": "BRENDA", "pattern": "^((\\d+\\.-\\.-\\.-)|(\\d+\\.\\d+\\.-\\.-)|(\\d+\\.\\d+\\.\\d+\\.-)|(\\d+\\.\\d+\\.\\d+\\.\\d+))$", "description": "BRENDA is a collection of enzyme functional data available to the scientific community. Data on enzyme function are extracted directly from the primary literature The database covers information on classification and nomenclature, reaction and specificity, functional parameters, occurrence, enzyme structure and stability, mutants and enzyme engineering, preparation and isolation, the application of enzymes, and ligand-related data.", "created": "2019-06-11T14:15:51.985+0000", "modified": "2019-06-11T14:15:51.985+0000", "resources": [{"id": 246, "mirId": "MIR:00100101", "urlPattern": "https://www.brenda-enzymes.org/php/result_flat.php4?ecno={$id}", "name": "Brenda enzyme database", "description": "Brenda enzyme database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1.1.1.1", "resourceHomeUrl": "https://www.brenda-enzymes.org/", "institution": {"id": 245, "name": "Technical University Braunschweig, Institute for Bioinformatics and Biochemistry", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1.1.1.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 247, "prefix": "pubchem.bioassay", "mirId": "MIR:00000072", "name": "PubChem-bioassay", "pattern": "^\\d+$", "description": "PubChem provides information on the biological activities of small molecules. It is a component of NIH's Molecular Libraries Roadmap Initiative. PubChem bioassay archives active compounds and bioassay results.", "created": "2019-06-11T14:15:52.227+0000", "modified": "2019-06-11T14:15:52.227+0000", "resources": [{"id": 248, "mirId": "MIR:00100102", "urlPattern": "https://pubchem.ncbi.nlm.nih.gov/bioassay/{$id}", "name": "PubChem Bioassay at NCBI", "description": "PubChem Bioassay at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "1018", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=pcassay", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1018", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1659, "prefix": "bao", "mirId": "MIR:00000597", "name": "BioAssay Ontology", "pattern": "^\\d{7}$", "description": "The BioAssay Ontology (BAO) describes chemical biology screening assays and their results including high-throughput screening (HTS) data for the purpose of categorizing assays and data analysis.", "created": "2019-06-11T14:17:58.671+0000", "modified": "2019-06-11T14:17:58.671+0000", "resources": [{"id": 1660, "mirId": "MIR:00100797", "urlPattern": "http://bioportal.bioontology.org/ontologies/BAO/bao:BAO_{$id}", "name": "BioAssay Ontology through BioPortal", "description": "BioAssay Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0002989", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/BAO/", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1661, "mirId": "MIR:00100798", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/bao/terms?obo_id=BAO:{$id}", "name": "BioAssay Ontology through OLS", "description": "BioAssay Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0002989", "resourceHomeUrl": "https://bioportal.bioontology.org/ontologies/BAO/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0002989", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 249, "prefix": "pathwaycommons", "mirId": "MIR:00000073", "name": "Pathway Commons", "pattern": "^\\d+$", "description": "Pathway Commons is a convenient point of access to biological pathway information collected from public pathway databases, which you can browse or search. It is a collection of publicly available pathways from multiple organisms that provides researchers with convenient access to a comprehensive collection of pathways from multiple sources represented in a common language.", "created": "2019-06-11T14:15:52.436+0000", "modified": "2019-06-11T14:15:52.436+0000", "resources": [{"id": 251, "mirId": "MIR:00100103", "urlPattern": "http://www.pathwaycommons.org/pc/record2.do?id={$id}", "name": "Pathway Commons", "description": "Pathway Commons", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "485991", "resourceHomeUrl": "http://www.pathwaycommons.org/pc/", "institution": {"id": 250, "name": "Memorial Sloan-Kettering Cancer Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "485991", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 252, "prefix": "hovergen", "mirId": "MIR:00000074", "name": "HOVERGEN", "pattern": "^HBG\\d+$", "description": "HOVERGEN is a database of homologous vertebrate genes that allows one to select sets of homologous genes among vertebrate species, and to visualize multiple alignments and phylogenetic trees.", "created": "2019-06-11T14:15:52.667+0000", "modified": "2019-06-11T14:15:52.667+0000", "resources": [{"id": 254, "mirId": "MIR:00100104", "urlPattern": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?query={$id}&db=HOVERGEN", "name": "Hovergen", "description": "Hovergen", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HBG004341", "resourceHomeUrl": "http://pbil.univ-lyon1.fr/databases/hovergen.php", "institution": {"id": 253, "name": "Laboratoire de Biom\u00e9trie, G\u00e9n\u00e9tique et Biologie des Populations", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HBG004341", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 255, "prefix": "mmmp:biomaps", "mirId": "MIR:00000075", "name": "Melanoma Molecular Map Project Biomaps", "pattern": "^\\d+$", "description": "A collection of molecular interaction maps and pathways involved in cancer development and progression with a focus on melanoma.", "created": "2019-06-11T14:15:52.916+0000", "modified": "2019-06-11T14:15:52.916+0000", "resources": [{"id": 257, "mirId": "MIR:00100105", "urlPattern": "http://www.mmmp.org/MMMP/public/biomap/viewBiomap.mmmp?id={$id}", "name": "main webpage", "description": "main webpage", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "37", "resourceHomeUrl": "http://www.mmmp.org/MMMP/public/biomap/listBiomap.mmmp", "institution": {"id": 256, "name": "Melanoma Molecular Map Project", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "37", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 258, "prefix": "wikipathways", "mirId": "MIR:00000076", "name": "WikiPathways", "pattern": "WP\\d{1,5}(\\_r\\d+)?$", "description": "WikiPathways is a resource providing an open and public collection of pathway maps created and curated by the community in a Wiki like style.\r\nAll content is under the Creative Commons Attribution 3.0 Unported license.", "created": "2019-06-11T14:15:53.125+0000", "modified": "2019-06-11T14:15:53.125+0000", "resources": [{"id": 260, "mirId": "MIR:00100106", "urlPattern": "http://www.wikipathways.org/instance/{$id}", "name": "WikiPathways", "description": "WikiPathways", "official": true, "providerCode": "um", "sampleId": "WP100", "resourceHomeUrl": "http://www.wikipathways.org/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 2316, "mirId": "MIR:00000696", "urlPattern": "https://scholia.toolforge.org/wikipathways/{$id}", "name": "Scholia", "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.\n", "official": false, "providerCode": "scholia", "sampleId": "WP111", "resourceHomeUrl": "https://scholia.toolforge.org/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "WP100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 261, "prefix": "macie", "mirId": "MIR:00000077", "name": "MACiE", "pattern": "^M\\d{4}$", "description": "MACiE (Mechanism, Annotation and Classification in Enzymes) is a database of enzyme reaction mechanisms. Each entry in MACiE consists of an overall reaction describing the chemical compounds involved, as well as the species name in which the reaction occurs. The individual reaction stages for each overall reaction are listed with mechanisms, alternative mechanisms, and amino acids involved.", "created": "2019-06-11T14:15:53.388+0000", "modified": "2019-06-11T14:15:53.388+0000", "resources": [{"id": 262, "mirId": "MIR:00100108", "urlPattern": "https://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/MACiE/entry/getPage.pl?id={$id}", "name": "MACiE database of mechanisms, annotation and classification in enzymes", "description": "MACiE database of mechanisms, annotation and classification in enzymes", "official": true, "providerCode": "ebi", "sampleId": "M0001", "resourceHomeUrl": "https://www.ebi.ac.uk/thornton-srv/databases/MACiE/index.html", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "M0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 263, "prefix": "mirbase", "mirId": "MIR:00000078", "name": "miRBase Sequence", "pattern": "MI\\d{7}", "description": "The miRBase Sequence Database is a searchable database of published miRNA sequences and annotation. The data were previously provided by the miRNA Registry. Each entry in the miRBase Sequence database represents a predicted hairpin portion of a miRNA transcript (termed mir in the database), with information on the location and sequence of the mature miRNA sequence (termed miR).", "created": "2019-06-11T14:15:53.607+0000", "modified": "2019-06-11T14:15:53.607+0000", "resources": [{"id": 265, "mirId": "MIR:00100135", "urlPattern": "http://www.mirbase.org/cgi-bin/mirna_entry.pl?acc={$id}", "name": "miRBase Sequence Database", "description": "miRBase Sequence Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MI0000001", "resourceHomeUrl": "http://www.mirbase.org/", "institution": {"id": 264, "name": "Faculty of Life Sciences, University of Manchester", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MI0000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 266, "prefix": "zfin", "mirId": "MIR:00000079", "name": "ZFIN Bioentity", "pattern": "^ZDB\\-\\w+\\-\\d+\\-\\d+$", "description": "ZFIN serves as the zebrafish model organism database. This collection references all zebrafish biological entities in ZFIN.", "created": "2019-06-11T14:15:53.859+0000", "modified": "2019-06-11T14:15:53.859+0000", "resources": [{"id": 268, "mirId": "MIR:00100110", "urlPattern": "http://zfin.org/{$id}", "name": "ZFIN at University of Oregon", "description": "ZFIN at University of Oregon", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "ZDB-GENE-041118-11", "resourceHomeUrl": "http://zfin.org", "institution": {"id": 267, "name": "Zebrafish Information Network, University of Oregon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 269, "mirId": "MIR:00100891", "urlPattern": "https://bioentity.link/#/lexicon/public/{$id}", "name": "ZFIN through BioEntity Link", "description": "ZFIN through BioEntity Link", "official": false, "providerCode": "bioentitylink", "sampleId": "ZDB-GENE-041118-11", "resourceHomeUrl": "https://bioentity.link/", "institution": {"id": 101, "name": "InSilico Inc, in Eugene, Oregon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 270, "mirId": "MIR:00100902", "urlPattern": "https://test.alliancegenome.org/gene/ZFIN:{$id}", "name": "ZFIN through the Alliance of Genome Resources", "description": "ZFIN through the Alliance of Genome Resources", "official": false, "providerCode": "agr", "sampleId": "ZDB-GENE-041118-11", "resourceHomeUrl": "https://www.alliancegenome.org", "institution": {"id": 103, "name": "Alliance of Genome Resources", "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ZDB-GENE-041118-11", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 271, "prefix": "hgnc", "mirId": "MIR:00000080", "name": "HGNC", "pattern": "^((HGNC|hgnc):)?\\d{1,5}$", "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. HGNC identifiers refer to records in the HGNC symbol database.", "created": "2019-06-11T14:15:54.375+0000", "modified": "2019-06-11T14:15:54.375+0000", "resources": [{"id": 272, "mirId": "MIR:00100111", "urlPattern": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/{$id}", "name": "HUGO Genome Nomenclature Committee", "description": "HUGO Genome Nomenclature Committee", "official": true, "providerCode": "ebi", "sampleId": "2674", "resourceHomeUrl": "https://www.genenames.org", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2674", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 273, "prefix": "so", "mirId": "MIR:00000081", "name": "Sequence Ontology", "pattern": "^SO:\\d{7}$", "description": "The Sequence Ontology (SO) is a structured controlled vocabulary for the parts of a genomic annotation. It provides a common set of terms and definitions to facilitate the exchange, analysis and management of genomic data.", "created": "2019-06-11T14:15:54.604+0000", "modified": "2019-06-11T14:15:54.604+0000", "resources": [{"id": 275, "mirId": "MIR:00100112", "urlPattern": "http://www.sequenceontology.org/miso/current_release/term/SO:{$id}", "name": "Sequence Ontology", "description": "Sequence Ontology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0000704", "resourceHomeUrl": "http://www.sequenceontology.org/", "institution": {"id": 274, "name": "Department of Molecular and Cellular Biology, University of California, Berkeley", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 276, "mirId": "MIR:00100241", "urlPattern": "http://purl.bioontology.org/ontology/SO/SO:{$id}", "name": "Sequence Ontology through BioPortal", "description": "Sequence Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0000704", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/SO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 277, "mirId": "MIR:00100628", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/so/terms?obo_id=SO:{$id}", "name": "Sequence Ontology through Ontology Lookup Service (OLS)", "description": "Sequence Ontology through Ontology Lookup Service (OLS)", "official": false, "providerCode": "ols", "sampleId": "0000704", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/so", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000704", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 281, "prefix": "chembl.compound", "mirId": "MIR:00000084", "name": "ChEMBL compound", "pattern": "^CHEMBL\\d+$", "description": "ChEMBL is a database of bioactive compounds, their quantitative properties and bioactivities (binding constants, pharmacology and ADMET, etc). The data is abstracted and curated from the primary scientific literature.", "created": "2019-06-11T14:15:55.368+0000", "modified": "2019-06-11T14:15:55.368+0000", "resources": [{"id": 282, "mirId": "MIR:00100115", "urlPattern": "https://www.ebi.ac.uk/chembl/compound/inspect/{$id}", "name": "ChEMBL compound database at EBI", "description": "ChEMBL compound database at EBI", "official": true, "providerCode": "ebi", "sampleId": "CHEMBL308052", "resourceHomeUrl": "https://www.ebi.ac.uk/chembldb/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 284, "mirId": "MIR:00100484", "urlPattern": "http://linkedchemistry.info/chembl/chemblid/{$id}", "name": "ChEMBL compound RDF", "description": "ChEMBL compound RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CHEMBL308052", "resourceHomeUrl": "https://github.com/egonw/chembl.rdf", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}, {"id": 285, "mirId": "MIR:00100744", "urlPattern": "https://rdf.ebi.ac.uk/resource/chembl/molecule/{$id}", "name": "ChEMBL compound RDF through EBI RDF Platform", "description": "ChEMBL compound RDF through EBI RDF Platform", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CHEMBL308052", "resourceHomeUrl": "https://www.ebi.ac.uk/rdf/services/chembl/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CHEMBL308052", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 286, "prefix": "chembl.target", "mirId": "MIR:00000085", "name": "ChEMBL target", "pattern": "^CHEMBL\\d+$", "description": "ChEMBL is a database of bioactive compounds, their quantitative properties and bioactivities (binding constants, pharmacology and ADMET, etc). The data is abstracted and curated from the primary scientific literature.", "created": "2019-06-11T14:15:55.880+0000", "modified": "2019-06-11T14:15:55.880+0000", "resources": [{"id": 287, "mirId": "MIR:00100116", "urlPattern": "https://www.ebi.ac.uk/chembl/target/inspect/{$id}", "name": "ChEMBL targets database at EBI", "description": "ChEMBL targets database at EBI", "official": true, "providerCode": "ebi", "sampleId": "CHEMBL3467", "resourceHomeUrl": "https://www.ebi.ac.uk/chembldb/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 288, "mirId": "MIR:00100485", "urlPattern": "http://linkedchemistry.info/chembl/chemblid/{$id}", "name": "ChEMBL target RDF", "description": "ChEMBL target RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CHEMBL3467", "resourceHomeUrl": "https://github.com/egonw/chembl.rdf", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}, {"id": 289, "mirId": "MIR:00100743", "urlPattern": "https://rdf.ebi.ac.uk/resource/chembl/target/{$id}", "name": "ChEMBL target RDF through EBI RDF Platform", "description": "ChEMBL target RDF through EBI RDF Platform", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CHEMBL3467", "resourceHomeUrl": "https://rdf.ebi.ac.uk/resource/chembl/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CHEMBL3467", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 290, "prefix": "sabiork.kineticrecord", "mirId": "MIR:00000086", "name": "SABIO-RK Kinetic Record", "pattern": "^\\d+$", "description": "SABIO-RK is a relational database system that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. The kinetic record data set provides information regarding the kinetic law, measurement conditions, parameter details and other reference information.", "created": "2019-06-11T14:15:56.334+0000", "modified": "2019-06-11T14:15:56.334+0000", "resources": [{"id": 291, "mirId": "MIR:00100117", "urlPattern": "http://sabiork.h-its.org/kineticLawEntry.jsp?viewData=true&kinlawid={$id}", "name": "SABIO-RK Reaction Kinetics Database - Kinetic Dataset", "description": "SABIO-RK Reaction Kinetics Database - Kinetic Dataset", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "5046", "resourceHomeUrl": "http://sabiork.h-its.org/", "institution": {"id": 151, "name": "Heidelberg Institute for Theoretical Studies (HITS gGmbH)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5046", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 292, "prefix": "lgic", "mirId": "MIR:00000087", "name": "Ligand-Gated Ion Channel database", "pattern": "^\\w+$", "description": "The Ligand-Gated Ion Channel database provides nucleic and proteic sequences of the subunits of ligand-gated ion channels. These transmembrane proteins can exist under different conformations, at least one of which forms a pore through the membrane connecting two neighbouring compartments. The database can be used to generate multiple sequence alignments from selected subunits, and gives the atomic coordinates of subunits, or portion of subunits, where available.", "created": "2019-06-11T14:15:56.548+0000", "modified": "2019-06-11T14:15:56.548+0000", "resources": [{"id": 293, "mirId": "MIR:00100118", "urlPattern": "https://www.ebi.ac.uk/compneur-srv/LGICdb/HTML/{$id}.php", "name": "Ligand-Gated Ion Channel database at EBI", "description": "Ligand-Gated Ion Channel database at EBI", "official": false, "providerCode": "ebi", "sampleId": "5HT3Arano", "resourceHomeUrl": "https://www.ebi.ac.uk/compneur-srv/LGICdb/LGICdb.php", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5HT3Arano", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 294, "prefix": "atc", "mirId": "MIR:00000088", "name": "Anatomical Therapeutic Chemical", "pattern": "^[A-Z](\\d+([A-Z]{1,2}(\\d+)?)?)?$", "description": "The Anatomical Therapeutic Chemical (ATC) classification system, divides active substances into different groups according to the organ or system on which they act and their therapeutic, pharmacological and chemical properties. Drugs are classified in groups at five different levels; Drugs are divided into fourteen main groups (1st level), with pharmacological/therapeutic subgroups (2nd level). The 3rd and 4th levels are chemical/pharmacological/therapeutic subgroups and the 5th level is the chemical substance. The Anatomical Therapeutic Chemical (ATC) classification system and the Defined Daily Dose (DDD) is a tool for exchanging and comparing data on drug use at international, national or local levels.", "created": "2019-06-11T14:15:56.747+0000", "modified": "2019-06-11T14:15:56.747+0000", "resources": [{"id": 296, "mirId": "MIR:00100119", "urlPattern": "http://www.whocc.no/atc_ddd_index/?code={$id}", "name": "Anatomical Therapeutic Chemical Index at WHO", "description": "Anatomical Therapeutic Chemical Index at WHO", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "A10BA02", "resourceHomeUrl": "http://www.whocc.no/atc_ddd_index/", "institution": {"id": 295, "name": "World Health Organisation", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "A10BA02", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 297, "prefix": "pharmgkb.pathways", "mirId": "MIR:00000089", "name": "PharmGKB Pathways", "pattern": "^PA\\d+$", "description": "The PharmGKB database is a central repository for genetic, genomic, molecular and cellular phenotype data and clinical information about people who have participated in pharmacogenomics research studies. The data includes, but is not limited to, clinical and basic pharmacokinetic and pharmacogenomic research in the cardiovascular, pulmonary, cancer, pathways, metabolic and transporter domains. \r\nPharmGKB Pathways are drug centric, gene based, interactive pathways which focus on candidate genes and gene groups and associated genotype and phenotype data of relevance for pharmacogenetic and pharmacogenomic studies.", "created": "2019-06-11T14:15:57.006+0000", "modified": "2019-06-11T14:15:57.006+0000", "resources": [{"id": 299, "mirId": "MIR:00100120", "urlPattern": "http://www.pharmgkb.org/pathway/{$id}", "name": "PharmGKB at Stanford", "description": "PharmGKB at Stanford", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PA146123006", "resourceHomeUrl": "http://www.pharmgkb.org/", "institution": {"id": 298, "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PA146123006", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 300, "prefix": "pharmgkb.disease", "mirId": "MIR:00000090", "name": "PharmGKB Disease", "pattern": "^PA\\d+$", "description": "The PharmGKB database is a central repository for genetic, genomic, molecular and cellular phenotype data and clinical information about people who have participated in pharmacogenomics research studies. The data includes, but is not limited to, clinical and basic pharmacokinetic and pharmacogenomic research in the cardiovascular, pulmonary, cancer, pathways, metabolic and transporter domains.", "created": "2019-06-11T14:15:57.258+0000", "modified": "2019-06-11T14:15:57.258+0000", "resources": [{"id": 301, "mirId": "MIR:00100121", "urlPattern": "http://www.pharmgkb.org/disease/{$id}", "name": "PharmGKB Disease at Stanford", "description": "PharmGKB Disease at Stanford", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PA447218", "resourceHomeUrl": "http://www.pharmgkb.org/", "institution": {"id": 298, "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PA447218", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 302, "prefix": "pharmgkb.drug", "mirId": "MIR:00000091", "name": "PharmGKB Drug", "pattern": "^PA\\d+$", "description": "The PharmGKB database is a central repository for genetic, genomic, molecular and cellular phenotype data and clinical information about people who have participated in pharmacogenomics research studies. The data includes, but is not limited to, clinical and basic pharmacokinetic and pharmacogenomic research in the cardiovascular, pulmonary, cancer, pathways, metabolic and transporter domains.", "created": "2019-06-11T14:15:57.451+0000", "modified": "2019-06-11T14:15:57.451+0000", "resources": [{"id": 303, "mirId": "MIR:00100122", "urlPattern": "http://www.pharmgkb.org/drug/{$id}", "name": "PharmGKB Drug at Stanford", "description": "PharmGKB Drug at Stanford", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PA448710", "resourceHomeUrl": "http://www.pharmgkb.org/", "institution": {"id": 298, "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PA448710", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 304, "prefix": "ttd.drug", "mirId": "MIR:00000092", "name": "TTD Drug", "pattern": "^DAP\\d+$", "description": "The Therapeutic Target Database (TTD) is designed to provide information about the known therapeutic protein and nucleic acid targets described in the literature, the targeted disease conditions, the pathway information and the corresponding drugs/ligands directed at each of these targets. Cross-links to other databases allow the access to information about the sequence, 3D structure, function, nomenclature, drug/ligand binding properties, drug usage and effects, and related literature for each target.", "created": "2019-06-11T14:15:57.654+0000", "modified": "2019-06-11T14:15:57.654+0000", "resources": [{"id": 306, "mirId": "MIR:00100123", "urlPattern": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDRUG.asp?ID={$id}", "name": "Therapeutic Target Database Drug", "description": "Therapeutic Target Database Drug", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "DAP000773", "resourceHomeUrl": "http://bidd.nus.edu.sg/group/ttd/ttd.asp", "institution": {"id": 305, "name": "Computational Science Department, National University of Singapore", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "SG", "countryName": "Singapore"}}, "location": {"countryCode": "SG", "countryName": "Singapore"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DAP000773", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 307, "prefix": "ttd.target", "mirId": "MIR:00000093", "name": "TTD Target", "pattern": "^TTDS\\d+$", "description": "The Therapeutic Target Database (TTD) is designed to provide information about the known therapeutic protein and nucleic acid targets described in the literature, the targeted disease conditions, the pathway information and the corresponding drugs/ligands directed at each of these targets. Cross-links to other databases are also introduced to facilitate the access of information about the sequence, 3D structure, function, nomenclature, drug/ligand binding properties, drug usage and effects, and related literature for each target.", "created": "2019-06-11T14:15:57.896+0000", "modified": "2019-06-11T14:15:57.896+0000", "resources": [{"id": 308, "mirId": "MIR:00100124", "urlPattern": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDetail.asp?ID={$id}", "name": "Therapeutic Target Database Target", "description": "Therapeutic Target Database Target", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TTDS00056", "resourceHomeUrl": "http://bidd.nus.edu.sg/group/ttd/ttd.asp", "institution": {"id": 305, "name": "Computational Science Department, National University of Singapore", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "SG", "countryName": "Singapore"}}, "location": {"countryCode": "SG", "countryName": "Singapore"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TTDS00056", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 309, "prefix": "neurondb", "mirId": "MIR:00000094", "name": "NeuronDB", "pattern": "^\\d+$", "description": "NeuronDB provides a dynamically searchable database of three types of neuronal properties: voltage gated conductances, neurotransmitter receptors, and neurotransmitter substances. It contains tools that provide for integration of these properties in a given type of neuron and compartment, and for comparison of properties across different types of neurons and compartments.", "created": "2019-06-11T14:15:58.106+0000", "modified": "2019-06-11T14:15:58.106+0000", "resources": [{"id": 311, "mirId": "MIR:00100125", "urlPattern": "http://senselab.med.yale.edu/NeuronDB/NeuronProp.aspx?id={$id}", "name": "NeuronDB at SenseLab", "description": "NeuronDB at SenseLab", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "265", "resourceHomeUrl": "http://senselab.med.yale.edu/NeuronDB/", "institution": {"id": 310, "name": "Yale University School of Medicine", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "265", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 312, "prefix": "neuromorpho", "mirId": "MIR:00000095", "name": "NeuroMorpho", "pattern": "^\\w+$", "description": "NeuroMorpho.Org is a centrally curated inventory of digitally reconstructed neurons.", "created": "2019-06-11T14:15:58.342+0000", "modified": "2019-06-11T14:15:58.342+0000", "resources": [{"id": 314, "mirId": "MIR:00100126", "urlPattern": "http://neuromorpho.org/neuron_info.jsp?neuron_name={$id}", "name": "NeuroMorpho", "description": "NeuroMorpho", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Rosa2", "resourceHomeUrl": "http://neuromorpho.org/index.jsp", "institution": {"id": 313, "name": "Krasnow Institute, Virginia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Rosa2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 315, "prefix": "chemidplus", "mirId": "MIR:00000096", "name": "ChemIDplus", "pattern": "^\\d+\\-\\d+\\-\\d+$", "description": "ChemIDplus is a web-based search system that provides access to structure and nomenclature authority files used for the identification of chemical substances cited in National Library of Medicine (NLM) databases. It also provides structure searching and direct links to many biomedical resources at NLM and on the Internet for chemicals of interest.", "created": "2019-06-11T14:15:58.577+0000", "modified": "2019-06-11T14:15:58.577+0000", "resources": [{"id": 317, "mirId": "MIR:00100127", "urlPattern": "https://chem.nlm.nih.gov/chemidplus/rn/{$id}", "name": "ChemIDplus at National Library of Medicine", "description": "ChemIDplus at National Library of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "57-27-2", "resourceHomeUrl": "https://chem.nlm.nih.gov/chemidplus/chemidheavy.jsp", "institution": {"id": 316, "name": "National Library of Medicine, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "57-27-2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 318, "prefix": "biosystems", "mirId": "MIR:00000097", "name": "BioSystems", "pattern": "^\\d+$", "description": "The NCBI BioSystems database centralizes and cross-links existing biological systems databases, increasing their utility and target audience by integrating their pathways and systems into NCBI resources.", "created": "2019-06-11T14:15:58.906+0000", "modified": "2019-06-11T14:15:58.906+0000", "resources": [{"id": 319, "mirId": "MIR:00100128", "urlPattern": "https://www.ncbi.nlm.nih.gov/biosystems/{$id}", "name": "BioSystems database at NCBI", "description": "BioSystems database at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "001", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/biosystems/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 320, "prefix": "ctd.chemical", "mirId": "MIR:00000098", "name": "CTD Chemical", "pattern": "^[CD]\\d+$", "description": "The Comparative Toxicogenomics Database (CTD) presents scientifically reviewed and curated information on chemicals, relevant genes and proteins, and their interactions in vertebrates and invertebrates. It integrates sequence, reference, species, microarray, and general toxicology information to provide a unique centralized resource for toxicogenomic research. The database also provides visualization capabilities that enable cross-species comparisons of gene and protein sequences.", "created": "2019-06-11T14:15:59.108+0000", "modified": "2019-06-11T14:15:59.108+0000", "resources": [{"id": 322, "mirId": "MIR:00100129", "urlPattern": "http://ctdbase.org/detail.go?type=chem&acc={$id}", "name": "Comparative Toxicogenomics Database (Chemical)", "description": "Comparative Toxicogenomics Database (Chemical)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "D001151", "resourceHomeUrl": "http://ctdbase.org/", "institution": {"id": 321, "name": "The Mount Desert Island Biological Laboratory", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "D001151", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 323, "prefix": "ctd.disease", "mirId": "MIR:00000099", "name": "CTD Disease", "pattern": "^D\\d+$", "description": "The Comparative Toxicogenomics Database (CTD) presents scientifically reviewed and curated information on chemicals, relevant genes and proteins, and their interactions in vertebrates and invertebrates. It integrates sequence, reference, species, microarray, and general toxicology information to provide a unique centralized resource for toxicogenomic research. The database also provides visualization capabilities that enable cross-species comparisons of gene and protein sequences.", "created": "2019-06-11T14:15:59.348+0000", "modified": "2019-06-11T14:15:59.348+0000", "resources": [{"id": 324, "mirId": "MIR:00100130", "urlPattern": "http://ctdbase.org/detail.go?type=disease&db=MESH&acc={$id}", "name": "Comparative Toxicogenomics Database (Disease)", "description": "Comparative Toxicogenomics Database (Disease)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "D053716", "resourceHomeUrl": "http://ctdbase.org/", "institution": {"id": 321, "name": "The Mount Desert Island Biological Laboratory", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "D053716", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 325, "prefix": "ctd.gene", "mirId": "MIR:00000100", "name": "CTD Gene", "pattern": "^\\d+$", "description": "The Comparative Toxicogenomics Database (CTD) presents scientifically reviewed and curated information on chemicals, relevant genes and proteins, and their interactions in vertebrates and invertebrates. It integrates sequence, reference, species, microarray, and general toxicology information to provide a unique centralized resource for toxicogenomic research. The database also provides visualization capabilities that enable cross-species comparisons of gene and protein sequences.", "created": "2019-06-11T14:15:59.547+0000", "modified": "2019-06-11T14:15:59.547+0000", "resources": [{"id": 326, "mirId": "MIR:00100131", "urlPattern": "http://ctdbase.org/detail.go?type=gene&acc={$id}", "name": "Comparative Toxicogenomics Database (Gene)", "description": "Comparative Toxicogenomics Database (Gene)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "101", "resourceHomeUrl": "http://ctdbase.org/", "institution": {"id": 321, "name": "The Mount Desert Island Biological Laboratory", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "101", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 327, "prefix": "bionumbers", "mirId": "MIR:00000101", "name": "BioNumbers", "pattern": "^\\d+$", "description": "BioNumbers is a database of key numberical information that may be used in molecular biology. Along with the numbers, it contains references to the original literature, useful comments, and related numeric data.", "created": "2019-06-11T14:15:59.756+0000", "modified": "2019-06-11T14:15:59.756+0000", "resources": [{"id": 329, "mirId": "MIR:00100132", "urlPattern": "https://bionumbers.hms.harvard.edu/bionumber.aspx?id={$id}", "name": "BioNumbers database", "description": "BioNumbers database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "104674", "resourceHomeUrl": "https://bionumbers.hms.harvard.edu", "institution": {"id": 328, "name": "Weizmann Institute", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IL", "countryName": "Israel"}}, "location": {"countryCode": "IL", "countryName": "Israel"}, "deprecated": false, "deprecationDate": null}], "sampleId": "104674", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 330, "prefix": "drugbank", "mirId": "MIR:00000102", "name": "DrugBank", "pattern": "^DB\\d{5}$", "description": "The DrugBank database is a bioinformatics and chemoinformatics resource that combines detailed drug (i.e. chemical, pharmacological and pharmaceutical) data with comprehensive drug target (i.e. sequence, structure, and pathway) information. This collection references drug information.", "created": "2019-06-11T14:16:00.005+0000", "modified": "2019-06-11T14:16:00.005+0000", "resources": [{"id": 332, "mirId": "MIR:00100133", "urlPattern": "http://www.drugbank.ca/drugs/{$id}", "name": "DrugBank drug information", "description": "DrugBank drug information", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "DB00001", "resourceHomeUrl": "http://www.drugbank.ca/", "institution": {"id": 331, "name": "Departments of Computing Science & Biological Sciences, University of Alberta", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DB00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 333, "prefix": "t3db", "mirId": "MIR:00000103", "name": "T3DB", "pattern": "^T3D\\d+$", "description": "Toxin and Toxin Target Database (T3DB) is a bioinformatics resource that combines detailed toxin data with comprehensive toxin target information.", "created": "2019-06-11T14:16:00.251+0000", "modified": "2019-06-11T14:16:00.251+0000", "resources": [{"id": 335, "mirId": "MIR:00100136", "urlPattern": "http://www.t3db.org/toxins/{$id}", "name": "Toxin and Toxin Target Database", "description": "Toxin and Toxin Target Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "T3D0001", "resourceHomeUrl": "http://www.t3db.org/", "institution": {"id": 334, "name": "University of Alberta", "homeUrl": "https://www.ualberta.ca", "description": "The University of Alberta in Edmonton is one of Canada's top teaching and research universities, with an international reputation for excellence across the humanities, sciences, creative arts, business, engineering and health sciences.", "rorId": "https://ror.org/0160cpw27", "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "T3D0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 336, "prefix": "smpdb", "mirId": "MIR:00000104", "name": "Small Molecule Pathway Database", "pattern": "^SMP\\d+$", "description": "The Small Molecule Pathway Database (SMPDB) contains small molecule pathways found in humans, which are presented visually. All SMPDB pathways include information on the relevant organs, subcellular compartments, protein cofactors, protein locations, metabolite locations, chemical structures and protein quaternary structures. Accompanying data includes detailed descriptions and references, providing an overview of the pathway, condition or processes depicted in each diagram.", "created": "2019-06-11T14:16:00.499+0000", "modified": "2019-06-11T14:16:00.499+0000", "resources": [{"id": 337, "mirId": "MIR:00100137", "urlPattern": "http://smpdb.ca/view/{$id}", "name": "Small Molecule Pathway Database", "description": "Small Molecule Pathway Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SMP00001", "resourceHomeUrl": "https://smpdb.ca/", "institution": {"id": 334, "name": "University of Alberta", "homeUrl": "https://www.ualberta.ca", "description": "The University of Alberta in Edmonton is one of Canada's top teaching and research universities, with an international reputation for excellence across the humanities, sciences, creative arts, business, engineering and health sciences.", "rorId": "https://ror.org/0160cpw27", "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SMP00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 338, "prefix": "phosphosite.protein", "mirId": "MIR:00000105", "name": "PhosphoSite Protein", "pattern": "^\\d{5}$", "description": "PhosphoSite is a mammalian protein database that provides information about in vivo phosphorylation sites. This datatype refers to protein-level information, providing a list of phosphorylation sites for each protein in the database.", "created": "2019-06-11T14:16:00.712+0000", "modified": "2019-06-11T14:16:00.712+0000", "resources": [{"id": 340, "mirId": "MIR:00100138", "urlPattern": "http://www.phosphosite.org/proteinAction.do?id={$id}", "name": "PhosphoSite", "description": "PhosphoSite", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "12300", "resourceHomeUrl": "http://www.phosphosite.org/homeAction.do", "institution": {"id": 339, "name": "Cell Signaling Technology, Inc.", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "12300", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 341, "prefix": "genedb", "mirId": "MIR:00000106", "name": "GeneDB", "pattern": "^[\\w\\d\\.-]*$", "description": "GeneDB is a genome database for prokaryotic and eukaryotic organisms and provides a portal through which data generated by the \"Pathogen Genomics\" group at the Wellcome Trust Sanger Institute and other collaborating sequencing centres can be accessed.", "created": "2019-06-11T14:16:00.951+0000", "modified": "2019-06-11T14:16:00.951+0000", "resources": [{"id": 343, "mirId": "MIR:00100139", "urlPattern": "https://www.genedb.org/gene/{$id}", "name": "GeneDB at Sanger Institute", "description": "GeneDB at Sanger Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LinJ.20.0070", "resourceHomeUrl": "https://www.genedb.org/", "institution": {"id": 342, "name": "Pathogen Genomics, Sanger Institute and European Bioinformatics Institute", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LinJ.20.0070", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 344, "prefix": "biomodels.teddy", "mirId": "MIR:00000107", "name": "TEDDY", "pattern": "^TEDDY_\\d{7}$", "description": "The Terminology for Description of Dynamics (TEDDY) is an ontology for dynamical behaviours, observable dynamical phenomena, and control elements of bio-models and biological systems in Systems Biology and Synthetic Biology.", "created": "2019-06-11T14:16:01.178+0000", "modified": "2019-06-11T14:16:01.178+0000", "resources": [{"id": 345, "mirId": "MIR:00100140", "urlPattern": "http://purl.bioontology.org/ontology/TEDDY/{$id}", "name": "TEDDY through BioPortal", "description": "TEDDY through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "TEDDY_0000066", "resourceHomeUrl": "http://teddyontology.sourceforge.net/", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 346, "mirId": "MIR:00100761", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/teddy/terms?short_form={$id}", "name": "TEDDY though OLS", "description": "TEDDY though OLS", "official": false, "providerCode": "ols", "sampleId": "TEDDY_0000066", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/teddy", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TEDDY_0000066", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 347, "prefix": "biomodels.kisao", "mirId": "MIR:00000108", "name": "KiSAO", "pattern": "^KISAO_\\d+$", "description": "The Kinetic Simulation Algorithm Ontology (KiSAO) is an ontology that describes simulation algorithms and methods used for biological kinetic models, and the relationships between them. This provides a means to unambiguously refer to simulation algorithms when describing a simulation experiment.", "created": "2019-06-11T14:16:01.508+0000", "modified": "2019-06-11T14:16:01.508+0000", "resources": [{"id": 348, "mirId": "MIR:00100141", "urlPattern": "http://purl.bioontology.org/ontology/KISAO/kisao:{$id}", "name": "KiSAO via NCBO's Bioportal", "description": "KiSAO via NCBO's Bioportal", "official": false, "providerCode": "bptl", "sampleId": "KISAO_0000057", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/KISAO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 349, "mirId": "MIR:00100757", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/kisao/terms?short_form={$id}", "name": "KiSAO through OLS", "description": "KiSAO through OLS", "official": false, "providerCode": "ols", "sampleId": "KISAO_0000057", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/kisao", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "KISAO_0000057", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 352, "prefix": "cl", "mirId": "MIR:00000110", "name": "Cell Type Ontology", "pattern": "^CL:\\d{7}$", "description": "The Cell Ontology is designed as a structured controlled vocabulary for cell types. The ontology was constructed for use by the model organism and other bioinformatics databases, incorporating cell types from prokaryotes to mammals, and includes plants and fungi.", "created": "2019-06-11T14:16:02.066+0000", "modified": "2019-06-11T14:16:02.066+0000", "resources": [{"id": 353, "mirId": "MIR:00100143", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/cl/terms?obo_id=CL:{$id}", "name": "Cell Type Ontology through OLS", "description": "Cell Type Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0000232", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/cl", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 354, "mirId": "MIR:00100234", "urlPattern": "http://purl.bioontology.org/ontology/CL/CL:{$id}", "name": "Cell Type Ontology through BioPortal", "description": "Cell Type Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0000232", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/CL", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000232", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 355, "prefix": "bto", "mirId": "MIR:00000111", "name": "Brenda Tissue Ontology", "pattern": "^BTO:\\d{7}$", "description": "The Brenda tissue ontology is a structured controlled vocabulary eastablished to identify the source of an enzyme cited in the Brenda enzyme database. It comprises terms of tissues, cell lines, cell types and cell cultures from uni- and multicellular organisms.", "created": "2019-06-11T14:16:02.399+0000", "modified": "2019-06-11T14:16:02.399+0000", "resources": [{"id": 356, "mirId": "MIR:00100144", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/bto/terms?obo_id=BTO:{$id}", "name": "Brenda Tissue Ontology through OLS", "description": "Brenda Tissue Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0000146", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/bto", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 357, "mirId": "MIR:00100233", "urlPattern": "http://purl.bioontology.org/ontology/BTO/BTO:{$id}", "name": "Brenda Tissue Ontology through BioPortal", "description": "Brenda Tissue Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0000146", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/BTO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000146", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 358, "prefix": "pato", "mirId": "MIR:00000112", "name": "PATO", "pattern": "^PATO:\\d{7}$", "description": "PATO is an ontology of phenotypic qualities, intended for use in a number of applications, primarily defining composite phenotypes and phenotype annotation.", "created": "2019-06-11T14:16:02.730+0000", "modified": "2019-06-11T14:16:02.730+0000", "resources": [{"id": 359, "mirId": "MIR:00100145", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/pato/terms?obo_id=PATO:{$id}", "name": "PATO through OLS", "description": "PATO through OLS", "official": false, "providerCode": "ols", "sampleId": "0001998", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/pato", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 360, "mirId": "MIR:00100238", "urlPattern": "http://purl.bioontology.org/ontology/PATO/PATO:{$id}", "name": "PATO through BioPortal", "description": "PATO through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0001998", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PATO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0001998", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 363, "prefix": "glycomedb", "mirId": "MIR:00000114", "name": "GlycomeDB", "pattern": "^\\w+$", "description": "GlycomeDB is the result of a systematic data integration effort, and provides an overview of all carbohydrate structures available in public databases, as well as cross-links.", "created": "2019-06-11T14:16:03.253+0000", "modified": "2019-06-11T14:16:03.253+0000", "resources": [{"id": 365, "mirId": "MIR:00100147", "urlPattern": "https://glytoucan.org/Structures/Glycans/{$id}", "name": "GlycomeDB carbohydrate structure database", "description": "GlycomeDB carbohydrate structure database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "G77500AY", "resourceHomeUrl": "https://glytoucan.org/", "institution": {"id": 364, "name": "German Cancer Research Center, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "G77500AY", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 366, "prefix": "lipidbank", "mirId": "MIR:00000115", "name": "LipidBank", "pattern": "^\\w+\\d+$", "description": "LipidBank is an open, publicly free database of natural lipids including fatty acids, glycerolipids, sphingolipids, steroids, and various vitamins.", "created": "2019-06-11T14:16:03.490+0000", "modified": "2019-06-11T14:16:03.490+0000", "resources": [{"id": 368, "mirId": "MIR:00100148", "urlPattern": "http://lipidbank.jp/cgi-bin/detail.cgi?id={$id}", "name": "LipidBank the Lipid database", "description": "LipidBank the Lipid database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BBA0001", "resourceHomeUrl": "http://lipidbank.jp/index.html", "institution": {"id": 367, "name": "Department of Computational Biology, University of Tokyo, Tokyo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BBA0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 369, "prefix": "kegg.orthology", "mirId": "MIR:00000116", "name": "KEGG Orthology", "pattern": "^K\\d+$", "description": "KEGG Orthology (KO) consists of manually defined, generalised ortholog groups that correspond to KEGG pathway nodes and BRITE hierarchy nodes in all organisms.", "created": "2019-06-11T14:16:03.735+0000", "modified": "2019-06-11T14:16:03.735+0000", "resources": [{"id": 370, "mirId": "MIR:00100149", "urlPattern": "http://www.kegg.jp/entry/{$id}", "name": "KEGG Orthology Database", "description": "KEGG Orthology Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "K00001", "resourceHomeUrl": "http://www.genome.jp/kegg/ko.html", "institution": {"id": 367, "name": "Department of Computational Biology, University of Tokyo, Tokyo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "K00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 371, "prefix": "prodom", "mirId": "MIR:00000117", "name": "ProDom", "pattern": "^PD\\d+$", "description": "ProDom is a database of protein domain families generated from the global comparison of all available protein sequences.", "created": "2019-06-11T14:16:03.923+0000", "modified": "2019-06-11T14:16:03.923+0000", "resources": [{"id": 373, "mirId": "MIR:00100150", "urlPattern": "http://prodom.prabi.fr/prodom/current/cgi-bin/request.pl?question=DBEN&query={$id}", "name": "ProDom Protein Domain Database", "description": "ProDom Protein Domain Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PD10000", "resourceHomeUrl": "http://prodom.prabi.fr/prodom/current/html/home.php", "institution": {"id": 372, "name": "Laboratoire des Interactions Plantes-Microorganismes, INRA/CNRS", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PD10000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 374, "prefix": "smart", "mirId": "MIR:00000118", "name": "SMART", "pattern": "^SM\\d{5}$", "description": "The Simple Modular Architecture Research Tool (SMART) is an online tool for the identification and annotation of protein domains, and the analysis of domain architectures.", "created": "2019-06-11T14:16:04.151+0000", "modified": "2019-06-11T14:16:04.151+0000", "resources": [{"id": 376, "mirId": "MIR:00100151", "urlPattern": "http://smart.embl-heidelberg.de/smart/do_annotation.pl?DOMAIN={$id}", "name": "SMART (Simple Modular Architecture Research Tool)", "description": "SMART (Simple Modular Architecture Research Tool)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SM00015", "resourceHomeUrl": "http://smart.embl-heidelberg.de/", "institution": {"id": 375, "name": "EMBL, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SM00015", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 377, "prefix": "cdd", "mirId": "MIR:00000119", "name": "Conserved Domain Database", "pattern": "^(cd)?\\d{5}$", "description": "The Conserved Domain Database (CDD) is a collection of multiple sequence alignments and derived database search models, which represent protein domains conserved in molecular evolution.", "created": "2019-06-11T14:16:04.400+0000", "modified": "2019-06-11T14:16:04.400+0000", "resources": [{"id": 379, "mirId": "MIR:00100152", "urlPattern": "https://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid={$id}", "name": "Conserved Domain Database at NCBI", "description": "Conserved Domain Database at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "cd00400", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=cdd", "institution": {"id": 378, "name": "National Library of Medicine, National Institutes of Health, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "cd00400", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 380, "prefix": "ro", "mirId": "MIR:00000120", "name": "Relation Ontology", "pattern": "^RO_\\d{7}$", "description": "The OBO Relation Ontology provides consistent and unambiguous formal definitions of the relational expressions used in biomedical ontologies.", "created": "2019-06-11T14:16:04.654+0000", "modified": "2019-06-11T14:16:04.654+0000", "resources": [{"id": 382, "mirId": "MIR:00100764", "urlPattern": "http://purl.obolibrary.org/obo/{$id}", "name": "OBO Relation Ontology through OntoBee", "description": "OBO Relation Ontology through OntoBee", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "RO_0002533", "resourceHomeUrl": "http://obofoundry.org/ontology/ro.html", "institution": {"id": 381, "name": "University of Michigan Medical School (MI), Lawrence Berkeley National Laboratory (CA) and Science Commons (MA)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 383, "mirId": "MIR:00100767", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ro/terms?short_form={$id}", "name": "OBO Relation Ontology through OLS", "description": "OBO Relation Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "RO_0002533", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ro", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "RO_0002533", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 384, "prefix": "mmdb", "mirId": "MIR:00000121", "name": "Molecular Modeling Database", "pattern": "^\\d{1,5}$", "description": "The Molecular Modeling Database (MMDB) is a database of experimentally determined structures obtained from the Protein Data Bank (PDB). Since structures are known for a large fraction of all protein families, structure homologs may facilitate inference of biological function, or the identification of binding or catalytic sites.", "created": "2019-06-11T14:16:05.062+0000", "modified": "2019-06-11T14:16:05.062+0000", "resources": [{"id": 385, "mirId": "MIR:00100154", "urlPattern": "http://www.ncbi.nlm.nih.gov/Structure/mmdb/mmdbsrv.cgi?uid={$id}", "name": "MMDB at NCBI", "description": "MMDB at NCBI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "50885", "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/sites/entrez?db=structure", "institution": {"id": 378, "name": "National Library of Medicine, National Institutes of Health, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "50885", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 386, "prefix": "imex", "mirId": "MIR:00000122", "name": "IMEx", "pattern": "^IM-\\d+(-?)(\\d+?)$", "description": "The International Molecular Exchange (IMEx) is a consortium of molecular interaction databases which collaborate to share manual curation efforts and provide accessibility to multiple information sources.", "created": "2019-06-11T14:16:05.272+0000", "modified": "2019-06-11T14:16:05.272+0000", "resources": [{"id": 387, "mirId": "MIR:00100155", "urlPattern": "https://www.ebi.ac.uk/intact/imex/main.xhtml?query={$id}", "name": "IMEx Consortium running at EBI", "description": "IMEx Consortium running at EBI", "official": false, "providerCode": "ebi", "sampleId": "IM-19210-3", "resourceHomeUrl": "https://www.imexconsortium.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 388, "mirId": "MIR:00100663", "urlPattern": "https://imexcentral.org/icentral/imex/rec/{$id}", "name": "IMEx Consortium though Intact", "description": "IMEx Consortium though Intact", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "IM-19210-3", "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "IM-19210-3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 389, "prefix": "irefweb", "mirId": "MIR:00000123", "name": "iRefWeb", "pattern": "^\\d+$", "description": "iRefWeb is an interface to a relational database containing the latest build of the interaction Reference Index (iRefIndex) which integrates protein interaction data from ten different interaction databases: BioGRID, BIND, CORUM, DIP, HPRD, INTACT, MINT, MPPI, MPACT and OPHID. In addition, iRefWeb associates interactions with the PubMed record from which they are derived.", "created": "2019-06-11T14:16:05.614+0000", "modified": "2019-06-11T14:16:05.614+0000", "resources": [{"id": 391, "mirId": "MIR:00100156", "urlPattern": "http://wodaklab.org/iRefWeb/interaction/show/{$id}", "name": "iRefWeb Protein Interaction Reference Index", "description": "iRefWeb Protein Interaction Reference Index", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "617102", "resourceHomeUrl": "http://wodaklab.org/iRefWeb/", "institution": {"id": 390, "name": "Wodak Lab, Hospital for Sick Children, Toronto", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "617102", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 392, "prefix": "mpid", "mirId": "MIR:00000124", "name": "Microbial Protein Interaction Database", "pattern": "^\\d+$", "description": "The microbial protein interaction database (MPIDB) provides physical microbial interaction data. The interactions are manually curated from the literature or imported from other databases, and are linked to supporting experimental evidence, as well as evidences based on interaction conservation, protein complex membership, and 3D domain contacts.", "created": "2019-06-11T14:16:05.849+0000", "modified": "2019-06-11T14:16:05.849+0000", "resources": [{"id": 394, "mirId": "MIR:00100157", "urlPattern": "http://www.jcvi.org/mpidb/experiment.php?interaction_id={$id}", "name": "Microbial Protein Interaction Database", "description": "Microbial Protein Interaction Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "172", "resourceHomeUrl": "http://www.jcvi.org/mpidb/about.php", "institution": {"id": 393, "name": "J. Craig Venter Institute, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 395, "mirId": "MIR:00100655", "urlPattern": "https://www.ebi.ac.uk/intact/query/interaction_id:MPIDB-INT-{$id}", "name": "Microbial Protein Interaction Database subset through IntAct", "description": "Microbial Protein Interaction Database subset through IntAct", "official": false, "providerCode": "ebi", "sampleId": "1776", "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "172", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 396, "prefix": "phosphosite.residue", "mirId": "MIR:00000125", "name": "PhosphoSite Residue", "pattern": "^\\d+$", "description": "PhosphoSite is a mammalian protein database that provides information about in vivo phosphorylation sites. This datatype refers to residue-level information, providing a information about a single modification position in a specific protein sequence.", "created": "2019-06-11T14:16:06.208+0000", "modified": "2019-06-11T14:16:06.208+0000", "resources": [{"id": 397, "mirId": "MIR:00100159", "urlPattern": "http://www.phosphosite.org/siteAction.do?id={$id}", "name": "PhosphoSite Residue", "description": "PhosphoSite Residue", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2842", "resourceHomeUrl": "http://www.phosphosite.org/homeAction.do", "institution": {"id": 339, "name": "Cell Signaling Technology, Inc.", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2842", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 398, "prefix": "neurolex", "mirId": "MIR:00000126", "name": "NeuroLex", "pattern": "^([Bb]irnlex_|Sao|nlx_|GO_|CogPO|HDO|nifext_)\\d+$", "description": "The NeuroLex project is a dynamic lexicon of terms used in neuroscience. It is supported by the Neuroscience Information Framework project and incorporates information from the NIF standardised ontology (NIFSTD), and its predecessor, the Biomedical Informatics Research Network Lexicon (BIRNLex).", "created": "2019-06-11T14:16:06.417+0000", "modified": "2019-06-11T14:16:06.417+0000", "resources": [{"id": 400, "mirId": "MIR:00100160", "urlPattern": "http://www.neurolex.org/wiki/{$id}", "name": "NeuroLex Neuroscience Lexicon", "description": "NeuroLex Neuroscience Lexicon", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "Birnlex_721", "resourceHomeUrl": "http://www.neurolex.org/wiki/Main_Page", "institution": {"id": 399, "name": "Department of Neuroscience, University of California, San Diego", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 401, "mirId": "MIR:00100183", "urlPattern": "http://purl.bioontology.org/ontology/BIRNLEX/{$id}", "name": "NeuroLex through NCBO's BioPortal", "description": "NeuroLex through NCBO's BioPortal", "official": false, "providerCode": "bptl", "sampleId": "birnlex_1672", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/BIRNLEX", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Birnlex_721", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 402, "prefix": "obi", "mirId": "MIR:00000127", "name": "Ontology for Biomedical Investigations", "pattern": "(^OBI:\\d{7}$)|(^OBI_\\d{7}$)", "description": "The Ontology for Biomedical Investigations (OBI) project is developing an integrated ontology for the description of biological and clinical investigations. The ontology will represent the design of an investigation, the protocols and instrumentation used, the material used, the data generated and the type analysis performed on it. Currently OBI is being built under the Basic Formal Ontology (BFO).", "created": "2019-06-11T14:16:06.780+0000", "modified": "2019-06-11T14:16:06.780+0000", "resources": [{"id": 404, "mirId": "MIR:00100162", "urlPattern": "http://purl.obolibrary.org/obo/{$id}", "name": "OBI through Ontobee", "description": "OBI through Ontobee", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "OBI_0000070", "resourceHomeUrl": "http://www.ontobee.org/", "institution": {"id": 403, "name": "University of Michigan Medical School (MI), awrence Berkeley National Laboratory (CA) and Science Commons (MA)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 405, "mirId": "MIR:00100177", "urlPattern": "http://purl.bioontology.org/ontology/OBI/{$id}", "name": "Ontology for Biomedical Investigations through Bioportal", "description": "Ontology for Biomedical Investigations through Bioportal", "official": false, "providerCode": "bptl", "sampleId": "OBI:0000070", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/OBI", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 406, "mirId": "MIR:00100760", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/obi/terms?obo_id={$id}", "name": "OBI through OLS", "description": "OBI through OLS", "official": false, "providerCode": "ols", "sampleId": "OBI:0000070", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/obi", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "OBI_0000070", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 831, "prefix": "asap", "mirId": "MIR:00000283", "name": "ASAP", "pattern": "^[A-Za-z0-9-]+$", "description": "ASAP (a systematic annotation package for community analysis of genomes) stores bacterial genome sequence and functional characterization data. It includes multiple genome sequences at various stages of analysis, corresponding experimental data and access to collections of related genome resources.", "created": "2019-06-11T14:16:44.568+0000", "modified": "2019-06-11T14:16:44.568+0000", "resources": [{"id": 833, "mirId": "MIR:00100364", "urlPattern": "http://asap.ahabs.wisc.edu/asap/feature_info.php?LocationID=WIS&FeatureID={$id}", "name": "ASAP at University of Wisconsin", "description": "ASAP at University of Wisconsin", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ABE-0009634", "resourceHomeUrl": "http://asap.ahabs.wisc.edu/asap/home.php", "institution": {"id": 2054, "name": "University of Wisconsin-Madison", "homeUrl": "https://www.wisc.edu/", "description": "The University of Wisconsin\u2013Madison is a public research university in Madison, Wisconsin. Founded when Wisconsin achieved statehood in 1848, UW\u2013Madison is the official state university of Wisconsin, and the flagship campus of the University of Wisconsin System.\nIt was the first public university established in Wisconsin and remains the oldest and largest public university in the state. It became a land-grant institution in 1866.\nThe 933-acre (378 ha) main campus, located on the shores of Lake Mendota, includes four National Historic Landmarks.\nThe University also owns and operates a historic 1,200-acre (486 ha) arboretum established in 1932, located 4 miles (6.4 km) south of the main campus.", "rorId": "https://ror.org/01y2jtd41", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ABE-0009634", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 407, "prefix": "sabiork.ec", "mirId": "MIR:00000128", "name": "SABIO-RK EC Record", "pattern": "^((\\d+)|(\\d+\\.\\d+)|(\\d+\\.\\d+\\.\\d+)|(\\d+\\.\\d+\\.\\d+\\.\\d+))$", "description": "SABIO-RK is a relational database system that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. The EC record provides for a given enzyme classification (EC) the associated list of enzyme-catalysed reactions and their corresponding kinetic data.", "created": "2019-06-11T14:16:07.366+0000", "modified": "2019-06-11T14:16:07.366+0000", "resources": [{"id": 409, "mirId": "MIR:00100163", "urlPattern": "http://sabiork.h-its.org/newSearch?q=ecnumber:{$id}", "name": "SABIO-RK Reaction Kinetics Database - Enzyme Classification (EC)", "description": "SABIO-RK Reaction Kinetics Database - Enzyme Classification (EC)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2.7.1.1", "resourceHomeUrl": "http://sabiork.h-its.org/", "institution": {"id": 408, "name": "Heidelberg Institute for Theoretical Studies (HITS gGmbH)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2.7.1.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 410, "prefix": "opb", "mirId": "MIR:00000129", "name": "Ontology of Physics for Biology", "pattern": "^OPB_\\d+$", "description": "The OPB is a reference ontology of classical physics as applied to the dynamics of biological systems. It is designed to encompass the multiple structural scales (multiscale atoms to organisms) and multiple physical domains (multidomain fluid dynamics, chemical kinetics, particle diffusion, etc.) that are encountered in the study and analysis of biological organisms.", "created": "2019-06-11T14:16:07.624+0000", "modified": "2019-06-11T14:16:07.624+0000", "resources": [{"id": 411, "mirId": "MIR:00100167", "urlPattern": "http://purl.bioontology.org/ontology/OPB?conceptid=http%3A%2F%2Fbhi.washington.edu%2FOPB%23{$id}", "name": "Ontology of Physics for Biology through Bioportal", "description": "Ontology of Physics for Biology through Bioportal", "official": false, "providerCode": "bptl", "sampleId": "OPB_00573", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/OPB", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "OPB_00573", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 412, "prefix": "jws", "mirId": "MIR:00000130", "name": "JWS Online", "pattern": "^\\w+$", "description": "JWS Online is a repository of curated biochemical pathway models, and additionally provides the ability to run simulations of these models in a web browser.", "created": "2019-06-11T14:16:07.820+0000", "modified": "2019-06-11T14:16:07.820+0000", "resources": [{"id": 414, "mirId": "MIR:00100168", "urlPattern": "http://jjj.biochem.sun.ac.za/models/{$id}/", "name": "JWS Online Model Repository at Stellenbosch", "description": "JWS Online Model Repository at Stellenbosch", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "curien", "resourceHomeUrl": "http://jjj.biochem.sun.ac.za/models/", "institution": {"id": 413, "name": "Department of Biochemistry, Stellenbosch University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "ZA", "countryName": "South Africa"}}, "location": {"countryCode": "ZA", "countryName": "South Africa"}, "deprecated": false, "deprecationDate": null}, {"id": 418, "mirId": "MIR:00100170", "urlPattern": "http://jjj.mib.ac.uk/models/{$id}", "name": "JWS Online Model Repository at Manchester", "description": "JWS Online Model Repository at Manchester", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "curien", "resourceHomeUrl": "http://jjj.mib.ac.uk/index.html", "institution": {"id": 417, "name": "Manchester Interdisciplinary Biocentre, University of Manchester", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 416, "mirId": "MIR:00100169", "urlPattern": "http://jjj.bio.vu.nl/models/{$id}/", "name": "JWS Online Model Repository at Amsterdam", "description": "JWS Online Model Repository at Amsterdam", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "curien", "resourceHomeUrl": "http://jjj.bio.vu.nl/models/", "institution": {"id": 415, "name": "University of Amsterdam", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "curien", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 419, "prefix": "modeldb", "mirId": "MIR:00000131", "name": "ModelDB", "pattern": "^\\d+$", "description": "ModelDB is a curated, searchable database of published models in the computational neuroscience domain. It accommodates models expressed in textual form, including procedural or declarative languages (e.g. C++, XML dialects) and source code written for any simulation environment.", "created": "2019-06-11T14:16:08.429+0000", "modified": "2019-06-11T14:16:08.429+0000", "resources": [{"id": 420, "mirId": "MIR:00100171", "urlPattern": "http://senselab.med.yale.edu/ModelDB/ShowModel.asp?model={$id}", "name": "ModelDB at SenseLab", "description": "ModelDB at SenseLab", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "45539", "resourceHomeUrl": "http://senselab.med.yale.edu/ModelDB/", "institution": {"id": 310, "name": "Yale University School of Medicine", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "45539", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 421, "prefix": "subtiwiki", "mirId": "MIR:00000132", "name": "SubtiWiki", "pattern": "^BSU\\d{5}$", "description": "SubtiWiki is a scientific wiki for the model bacterium Bacillus subtilis. It provides comprehensive information on all genes and their proteins and RNA products, as well as information related to the current investigation of the gene/protein. \r\nNote: Currently, direct access to RNA products is restricted. This is expected to be rectified soon.", "created": "2019-06-11T14:16:08.635+0000", "modified": "2019-06-11T14:16:08.635+0000", "resources": [{"id": 423, "mirId": "MIR:00100172", "urlPattern": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/{$id}", "name": "SubtiWiki website", "description": "SubtiWiki website", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BSU29180", "resourceHomeUrl": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/Main_Page", "institution": {"id": 422, "name": "University of G\u00f6ttingen, Department for General Microbiology", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BSU29180", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 424, "prefix": "pid.pathway", "mirId": "MIR:00000133", "name": "NCI Pathway Interaction Database: Pathway", "pattern": "^\\w+$", "description": "The Pathway Interaction Database is a highly-structured, curated collection of information about known human biomolecular interactions and key cellular processes assembled into signaling pathways. This datatype provides access to pathway information.", "created": "2019-06-11T14:16:08.872+0000", "modified": "2019-06-11T14:16:08.872+0000", "resources": [{"id": 426, "mirId": "MIR:00100173", "urlPattern": "http://pid.nci.nih.gov/search/pathway_landing.shtml?what=graphic&jpg=on&pathway_id={$id}", "name": "NCI Pathway Interaction Database (Pathway)", "description": "NCI Pathway Interaction Database (Pathway)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "pi3kcipathway", "resourceHomeUrl": "http://pid.nci.nih.gov/", "institution": {"id": 425, "name": "National Cancer Institute, Rockville, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "pi3kcipathway", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 427, "prefix": "doqcs.model", "mirId": "MIR:00000134", "name": "Database of Quantitative Cellular Signaling: Model", "pattern": "^\\d+$", "description": "The Database of Quantitative Cellular Signaling is a repository of models of signaling pathways. It includes reaction schemes, concentrations, rate constants, as well as annotations on the models. The database provides a range of search, navigation, and comparison functions. This datatype provides access to specific models.", "created": "2019-06-11T14:16:09.111+0000", "modified": "2019-06-11T14:16:09.111+0000", "resources": [{"id": 429, "mirId": "MIR:00100174", "urlPattern": "http://doqcs.ncbs.res.in/template.php?&y=accessiondetails&an={$id}", "name": "Database of Quantitative Cellular Signaling (DOQCS) - Model Access", "description": "Database of Quantitative Cellular Signaling (DOQCS) - Model Access", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "57", "resourceHomeUrl": "http://doqcs.ncbs.res.in/", "institution": {"id": 428, "name": "National Centre for Biological Sciences, Bangalore", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "57", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 430, "prefix": "doqcs.pathway", "mirId": "MIR:00000135", "name": "Database of Quantitative Cellular Signaling: Pathway", "pattern": "^\\d+$", "description": "The Database of Quantitative Cellular Signaling is a repository of models of signaling pathways. It includes reaction schemes, concentrations, rate constants, as well as annotations on the models. The database provides a range of search, navigation, and comparison functions. This datatype provides access to pathways.", "created": "2019-06-11T14:16:09.372+0000", "modified": "2019-06-11T14:16:09.372+0000", "resources": [{"id": 431, "mirId": "MIR:00100175", "urlPattern": "http://doqcs.ncbs.res.in/template.php?&y=pathwaydetails&pn={$id}", "name": "Database of Quantitative Cellular Signaling (DOQCS) - Pathway Access", "description": "Database of Quantitative Cellular Signaling (DOQCS) - Pathway Access", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "131", "resourceHomeUrl": "http://doqcs.ncbs.res.in/", "institution": {"id": 428, "name": "National Centre for Biological Sciences, Bangalore", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "131", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 432, "prefix": "uo", "mirId": "MIR:00000136", "name": "Unit Ontology", "pattern": "^UO:\\d{7}?", "description": "Ontology of standardized units", "created": "2019-06-11T14:16:09.596+0000", "modified": "2019-06-11T14:16:09.596+0000", "resources": [{"id": 433, "mirId": "MIR:00100178", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/uo/terms?obo_id=UO:{$id}", "name": "Unit Ontology via Ontology Lookup Service", "description": "Unit Ontology via Ontology Lookup Service", "official": false, "providerCode": "ols", "sampleId": "0000080", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/uo", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 434, "mirId": "MIR:00100243", "urlPattern": "http://purl.bioontology.org/ontology/UO/UO:{$id}", "name": "Unit Ontology through BioPortal", "description": "Unit Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0000080", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/UO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000080", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 435, "prefix": "clinicaltrials", "mirId": "MIR:00000137", "name": "ClinicalTrials.gov", "pattern": "^NCT\\d{8}$", "description": "ClinicalTrials.gov provides free access to information on clinical studies for a wide range of diseases and conditions. Studies listed in the database are conducted in 175 countries", "created": "2019-06-11T14:16:09.937+0000", "modified": "2019-06-11T14:16:09.937+0000", "resources": [{"id": 437, "mirId": "MIR:00100179", "urlPattern": "https://clinicaltrials.gov/ct2/show/{$id}", "name": "ClinicalTrials.gov at NIH", "description": "ClinicalTrials.gov at NIH", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "NCT00222573", "resourceHomeUrl": "https://clinicaltrials.gov/", "institution": {"id": 436, "name": "National Library of Medicine and ClinicalTrials.gov, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "NCT00222573", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 438, "prefix": "chemspider", "mirId": "MIR:00000138", "name": "ChemSpider", "pattern": "^\\d+$", "description": "ChemSpider is a collection of compound data from across the web, which aggregates chemical structures and their associated information into a single searchable repository entry. These entries are supplemented with additional properties, related information and links back to original data sources.", "created": "2019-06-11T14:16:10.254+0000", "modified": "2019-06-11T14:16:10.254+0000", "resources": [{"id": 440, "mirId": "MIR:00100180", "urlPattern": "http://www.chemspider.com/Chemical-Structure.{$id}.html", "name": "ChemSpider at RSC", "description": "ChemSpider at RSC", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "56586", "resourceHomeUrl": "http://www.chemspider.com/", "institution": {"id": 439, "name": "Royal Society of Chemistry, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "56586", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 441, "prefix": "ncit", "mirId": "MIR:00000139", "name": "NCIt", "pattern": "^C\\d+$", "description": "NCI Thesaurus (NCIt) provides reference terminology covering vocabulary for clinical care, translational and basic research, and public information and administrative activities, providing a stable and unique identification code.", "created": "2019-06-11T14:16:10.500+0000", "modified": "2019-06-11T14:16:10.500+0000", "resources": [{"id": 443, "mirId": "MIR:00100181", "urlPattern": "http://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI%20Thesaurus&code={$id}", "name": "NCIt at National Cancer Institute", "description": "NCIt at National Cancer Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "C80519", "resourceHomeUrl": "http://ncit.nci.nih.gov/", "institution": {"id": 442, "name": "National Cancer Institute, Center for Bioinformatics, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 444, "mirId": "MIR:00100868", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ncit/terms?short_form=NCIT_{$id}", "name": "NCIt through OLS", "description": "NCIt through OLS", "official": false, "providerCode": "ols", "sampleId": "C16353", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ncit", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C80519", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 445, "prefix": "biocatalogue.service", "mirId": "MIR:00000140", "name": "BioCatalogue", "pattern": "^\\d+$", "description": "The BioCatalogue provides a common interface for registering, browsing and annotating Web Services to the Life Science community. Registered services are monitored, allowing the identification of service problems and changes and the filtering-out of unavailable or unreliable resources. BioCatalogue is free to use, for all.", "created": "2019-06-11T14:16:10.872+0000", "modified": "2019-06-11T14:16:10.872+0000", "resources": [{"id": 446, "mirId": "MIR:00100182", "urlPattern": "https://www.biocatalogue.org/services/{$id}", "name": "BioCatalogue at EMBL-EBI", "description": "BioCatalogue at EMBL-EBI", "official": false, "providerCode": "ebi", "sampleId": "614", "resourceHomeUrl": "https://www.biocatalogue.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "614", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 451, "prefix": "omia", "mirId": "MIR:00000142", "name": "OMIA", "pattern": "^\\d+$", "description": "Online Mendelian Inheritance in Animals is a a database of genes, inherited disorders and traits in animal species (other than human and mouse).", "created": "2019-06-11T14:16:11.523+0000", "modified": "2019-06-11T14:16:11.523+0000", "resources": [{"id": 453, "mirId": "MIR:00100185", "urlPattern": "http://omia.angis.org.au/{$id}/", "name": "OMIA at University of Sydney", "description": "OMIA at University of Sydney", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1000", "resourceHomeUrl": "http://omia.angis.org.au/", "institution": {"id": 452, "name": "Reprogen, Faculty of Veterinary Science, University of Sydney", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "AU", "countryName": "Australia"}}, "location": {"countryCode": "AU", "countryName": "Australia"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 454, "prefix": "csa", "mirId": "MIR:00000144", "name": "CSA", "pattern": "^[0-9][A-Za-z0-9]{3}$", "description": "The Catalytic Site Atlas (CSA) is a database documenting enzyme active sites and catalytic residues in enzymes of 3D structure. It uses a defined classification for catalytic residues which includes only those residues thought to be directly involved in some aspect of the reaction catalysed by an enzyme.", "created": "2019-06-11T14:16:11.769+0000", "modified": "2019-06-11T14:16:11.769+0000", "resources": [{"id": 455, "mirId": "MIR:00100188", "urlPattern": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/SearchResults.php?PDBID={$id}", "name": "CSA at EBI", "description": "CSA at EBI", "official": false, "providerCode": "ebi", "sampleId": "1a05", "resourceHomeUrl": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1a05", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 456, "prefix": "cgd", "mirId": "MIR:00000145", "name": "Candida Genome Database", "pattern": "^CAL\\d{7}$", "description": "The Candida Genome Database (CGD) provides access to genomic sequence data and manually curated functional information about genes and proteins of the human pathogen Candida albicans. It collects gene names and aliases, and assigns gene ontology terms to describe the molecular function, biological process, and subcellular localization of gene products.", "created": "2019-06-11T14:16:11.955+0000", "modified": "2019-06-11T14:16:11.955+0000", "resources": [{"id": 458, "mirId": "MIR:00100189", "urlPattern": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid={$id}", "name": "Candida Genome Database at Stanford University", "description": "Candida Genome Database at Stanford University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CAL0003079", "resourceHomeUrl": "http://www.candidagenome.org/", "institution": {"id": 457, "name": "Stanford University,", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CAL0003079", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 459, "prefix": "antweb", "mirId": "MIR:00000146", "name": "AntWeb", "pattern": "^casent\\d+(\\-D\\d+)?$", "description": "AntWeb is a website documenting the known species of ants, with records for each species linked to their geographical distribution, life history, and includes pictures.", "created": "2019-06-11T14:16:12.204+0000", "modified": "2019-06-11T14:16:12.204+0000", "resources": [{"id": 461, "mirId": "MIR:00100190", "urlPattern": "http://www.antweb.org/specimen.do?name={$id}", "name": "AntWeb at California Academy of Sciences", "description": "AntWeb at California Academy of Sciences", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "casent0106247", "resourceHomeUrl": "http://www.antweb.org/", "institution": {"id": 460, "name": "California Academy of Sciences, Goldengate Park, San Francisco", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "casent0106247", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 462, "prefix": "pmc", "mirId": "MIR:00000147", "name": "PMC International", "pattern": "PMC\\d+", "description": "PMC International (PMCI) is a free full-text archive of biomedical and life sciences journal literature. PMCI is a collaborative effort between the U.S. National Institutes of Health and the National Library of Medicine, the publishers whose journal content makes up the PMC archive, and organizations in other countries that share NIH's and NLM's interest in archiving life sciences literature.", "created": "2019-06-11T14:16:12.446+0000", "modified": "2019-06-11T14:16:12.446+0000", "resources": [{"id": 465, "mirId": "MIR:00100498", "urlPattern": "http://europepmc.org/articles/{$id}", "name": "Europe PMC", "description": "Europe PMC", "official": true, "providerCode": "epmc", "sampleId": "PMC3084216", "resourceHomeUrl": "http://europepmc.org/", "institution": {"id": 61, "name": "Europe PubMed Central partners", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 464, "mirId": "MIR:00100191", "urlPattern": "https://www.ncbi.nlm.nih.gov/pmc/articles/{$id}/?tool=pubmed", "name": "PubMed Central", "description": "PubMed Central", "official": false, "providerCode": "ncbi", "sampleId": "PMC3084216", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/pmc/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PMC3084216", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 834, "prefix": "atcc", "mirId": "MIR:00000284", "name": "ATCC", "pattern": "^\\d+$", "description": "The American Type Culture Collection (ATCC) is a private, nonprofit biological resource center whose mission focuses on the acquisition, authentication, production, preservation, development and distribution of standard reference microorganisms, cell lines and other materials for research in the life sciences.", "created": "2019-06-11T14:16:44.811+0000", "modified": "2019-06-11T14:16:44.811+0000", "resources": [{"id": 836, "mirId": "MIR:00100365", "urlPattern": "http://www.lgcstandards-atcc.org/Products/All/{$id}.aspx", "name": "ATCC in Virginia", "description": "ATCC in Virginia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "11303", "resourceHomeUrl": "http://www.atcc.org/", "institution": {"id": 835, "name": "American Type Culture Collection", "homeUrl": "https://atcc.org", "description": "ATCC is the premier global biological materials resource and standards organization whose mission focuses on the acquisition, authentication, production, preservation, development, and distribution of standard reference microorganisms, cell lines, and other materials. While maintaining traditional collection materials, ATCC develops high quality products, standards, and services to support scientific research and breakthroughs that improve the health of global populations.", "rorId": "https://ror.org/03thhhv76", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "11303", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 466, "prefix": "amoebadb", "mirId": "MIR:00000148", "name": "AmoebaDB", "pattern": "^EDI_\\d+$", "description": "AmoebaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:12.793+0000", "modified": "2019-06-11T14:16:12.793+0000", "resources": [{"id": 468, "mirId": "MIR:00100193", "urlPattern": "https://amoebadb.org/amoeba/app/record/gene/{$id}", "name": "AmoebaDB at EuPathDB", "description": "AmoebaDB at EuPathDB", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "EDI_244000", "resourceHomeUrl": "http://amoebadb.org/amoeba/", "institution": {"id": 467, "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EDI_244000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 469, "prefix": "cryptodb", "mirId": "MIR:00000149", "name": "CryptoDB", "pattern": "^\\w+", "description": "CryptoDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:13.024+0000", "modified": "2019-06-11T14:16:13.024+0000", "resources": [{"id": 470, "mirId": "MIR:00100194", "urlPattern": "https://cryptodb.org/cryptodb/app/record/gene/{$id}", "name": "CryptoDB at EuPathDB", "description": "CryptoDB at EuPathDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "cgd7_230", "resourceHomeUrl": "https://cryptodb.org/cryptodb/", "institution": {"id": 467, "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "cgd7_230", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 471, "prefix": "plasmodb", "mirId": "MIR:00000150", "name": "PlasmoDB", "pattern": "^\\w+$", "description": "AmoebaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:13.221+0000", "modified": "2019-06-11T14:16:13.221+0000", "resources": [{"id": 472, "mirId": "MIR:00100195", "urlPattern": "http://plasmodb.org/plasmo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", "name": "PlasmoDB at EuPathDB", "description": "PlasmoDB at EuPathDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PF11_0344", "resourceHomeUrl": "http://plasmodb.org/plasmo/", "institution": {"id": 467, "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PF11_0344", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 473, "prefix": "giardiadb", "mirId": "MIR:00000151", "name": "GiardiaDB", "pattern": "^\\w+$", "description": "GiardiaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:13.424+0000", "modified": "2019-06-11T14:16:13.424+0000", "resources": [{"id": 474, "mirId": "MIR:00100196", "urlPattern": "https://giardiadb.org/giardiadb/app/record/gene/{$id}", "name": "GiardiaDB at EuPathDB", "description": "GiardiaDB at EuPathDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "GL50803_102438", "resourceHomeUrl": "https://giardiadb.org/giardiadb/", "institution": {"id": 467, "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GL50803_102438", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 475, "prefix": "microsporidia", "mirId": "MIR:00000152", "name": "MicrosporidiaDB", "pattern": "^\\w+$", "description": "MicrosporidiaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:13.630+0000", "modified": "2019-06-11T14:16:13.630+0000", "resources": [{"id": 476, "mirId": "MIR:00100197", "urlPattern": "http://microsporidiadb.org/micro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", "name": "MicrosporidiaDB at EuPathDB", "description": "MicrosporidiaDB at EuPathDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ECU03_0820i", "resourceHomeUrl": "http://microsporidiadb.org/micro/", "institution": {"id": 467, "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ECU03_0820i", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 477, "prefix": "toxoplasma", "mirId": "MIR:00000153", "name": "ToxoDB", "pattern": "^\\w+$", "description": "ToxoDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:13.817+0000", "modified": "2019-06-11T14:16:13.817+0000", "resources": [{"id": 478, "mirId": "MIR:00100198", "urlPattern": "http://toxodb.org/toxo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", "name": "ToxoDB at EuPathDB", "description": "ToxoDB at EuPathDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TGME49_053730", "resourceHomeUrl": "http://toxodb.org/toxo/", "institution": {"id": 467, "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TGME49_053730", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 479, "prefix": "trichdb", "mirId": "MIR:00000154", "name": "TrichDB", "pattern": "^\\w+$", "description": "TrichDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:14.019+0000", "modified": "2019-06-11T14:16:14.019+0000", "resources": [{"id": 480, "mirId": "MIR:00100199", "urlPattern": "http://trichdb.org/trichdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", "name": "TrichDB at EuPathDB", "description": "TrichDB at EuPathDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TVAG_386080", "resourceHomeUrl": "http://trichdb.org/trichdb/", "institution": {"id": 467, "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TVAG_386080", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 481, "prefix": "tritrypdb", "mirId": "MIR:00000155", "name": "TriTrypDB", "pattern": "^\\w+(\\.)?\\w+(\\.)?\\w+", "description": "TriTrypDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:14.213+0000", "modified": "2019-06-11T14:16:14.213+0000", "resources": [{"id": 483, "mirId": "MIR:00100200", "urlPattern": "http://tritrypdb.org/tritrypdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", "name": "TriTrypDB at EuPathDB", "description": "TriTrypDB at EuPathDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Tb927.8.620", "resourceHomeUrl": "http://tritrypdb.org/tritrypdb/", "institution": {"id": 482, "name": "Wellcome Trust Sanger Institute, Hinxton", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Tb927.8.620", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 484, "prefix": "bdgp.insertion", "mirId": "MIR:00000156", "name": "BDGP insertion DB", "pattern": "^\\w+$", "description": "BDGP gene disruption collection provides a public resource of gene disruptions of Drosophila genes using a single transposable element.", "created": "2019-06-11T14:16:14.437+0000", "modified": "2019-06-11T14:16:14.437+0000", "resources": [{"id": 486, "mirId": "MIR:00100201", "urlPattern": "http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line={$id}", "name": "BDGP Gene Disruption Project", "description": "BDGP Gene Disruption Project", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "KG09531", "resourceHomeUrl": "http://flypush.imgen.bcm.tmc.edu/pscreen/", "institution": {"id": 485, "name": "Baylor College of Medicine", "homeUrl": "https://www.bcm.edu", "description": "Baylor College of Medicine is a health sciences university that creates knowledge and applies science and discoveries to further education, healthcare and community service locally and globally.", "rorId": "https://ror.org/02pttbw34", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "KG09531", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 487, "prefix": "beetlebase", "mirId": "MIR:00000157", "name": "BeetleBase", "pattern": "^TC\\d+$", "description": "BeetleBase is a comprehensive sequence database and community resource for Tribolium genetics, genomics and developmental biology. It incorporates information about genes, mutants, genetic markers, expressed sequence tags and publications.", "created": "2019-06-11T14:16:14.695+0000", "modified": "2019-06-11T14:16:14.695+0000", "resources": [{"id": 489, "mirId": "MIR:00100202", "urlPattern": "http://beetlebase.org/cgi-bin/gbrowse/BeetleBase3.gff3/?name={$id}", "name": "BeetleBase at Kansas State University", "description": "BeetleBase at Kansas State University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TC010103", "resourceHomeUrl": "http://beetlebase.org/", "institution": {"id": 488, "name": "Kansas State University", "homeUrl": "https://www.k-state.edu/", "description": "Kansas State University is a comprehensive, research, land-grant institution serving students and the people of Kansas, the nation, and the world.", "rorId": "https://ror.org/05p1j8758", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TC010103", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 490, "prefix": "bold.taxonomy", "mirId": "MIR:00000158", "name": "BOLD Taxonomy", "pattern": "^\\d+$", "description": "The Barcode of Life Data System (BOLD) is an informatics workbench aiding the acquisition, storage, analysis and publication of DNA barcode records. The associated taxonomy browser shows the progress of DNA barcoding and provides sample collection site distribution, and taxon occurence information.", "created": "2019-06-11T14:16:14.938+0000", "modified": "2019-06-11T14:16:14.938+0000", "resources": [{"id": 492, "mirId": "MIR:00100203", "urlPattern": "http://www.boldsystems.org/index.php/Taxbrowser_Taxonpage?taxid={$id}", "name": "BOLD taxonomy browser", "description": "BOLD taxonomy browser", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "27267", "resourceHomeUrl": "http://www.boldsystems.org/", "institution": {"id": 491, "name": "Canadian Centre for DNA Barcoding, Biodiversity Institute of Ontario", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "27267", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 493, "prefix": "dbest", "mirId": "MIR:00000159", "name": "dbEST", "pattern": "^([A-Z]+)?\\d+(\\.\\d+)?$", "description": "The dbEST contains sequence data and other information on \"single-pass\" cDNA sequences, or \"Expressed Sequence Tags\", from a number of organisms.", "created": "2019-06-11T14:16:15.166+0000", "modified": "2019-06-11T14:16:15.166+0000", "resources": [{"id": 494, "mirId": "MIR:00100204", "urlPattern": "https://www.ncbi.nlm.nih.gov/nucest/{$id}", "name": "dbEST at NCBI", "description": "dbEST at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "BP100000", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/nucest", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 495, "mirId": "MIR:00100331", "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", "name": "dbEST through European Nucleotide Archive (ENA)", "description": "dbEST through European Nucleotide Archive (ENA)", "official": false, "providerCode": "ebi", "sampleId": "BP100000.1", "resourceHomeUrl": "https://www.ebi.ac.uk/ena", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 496, "mirId": "MIR:00100651", "urlPattern": "http://getentry.ddbj.nig.ac.jp/getentry/na/{$id}", "name": "dbEST through DNA Data Bank of Japan (DDBJ)", "description": "dbEST through DNA Data Bank of Japan (DDBJ)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BP100000", "resourceHomeUrl": "http://www.ddbj.nig.ac.jp/", "institution": {"id": 121, "name": "DNA Data Bank of Japan, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BP100000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 497, "prefix": "dbprobe", "mirId": "MIR:00000160", "name": "dbProbe", "pattern": "^\\d+$", "description": "The NCBI Probe Database is a public registry of nucleic acid reagents designed for use in a wide variety of biomedical research applications, together with information on reagent distributors, probe effectiveness, and computed sequence similarities.", "created": "2019-06-11T14:16:15.607+0000", "modified": "2019-06-11T14:16:15.607+0000", "resources": [{"id": 498, "mirId": "MIR:00100205", "urlPattern": "https://www.ncbi.nlm.nih.gov/probe/?term={$id}", "name": "dbProbe at NCBI", "description": "dbProbe at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "1000000", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=probe", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1000000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 499, "prefix": "dbsnp", "mirId": "MIR:00000161", "name": "dbSNP", "pattern": "^rs\\d+$", "description": "The dbSNP database is a repository for both single base nucleotide subsitutions and short deletion and insertion polymorphisms.", "created": "2019-06-11T14:16:15.831+0000", "modified": "2019-06-11T14:16:15.831+0000", "resources": [{"id": 500, "mirId": "MIR:00100206", "urlPattern": "https://www.ncbi.nlm.nih.gov/snp/{$id}", "name": "dbSNP at NCBI", "description": "dbSNP at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "rs121909098", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/snp/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 502, "mirId": "MIR:00100927", "urlPattern": "https://ccg.epfl.ch/cgi-bin/snp2tfbs/snpviewer_form_parser.cgi?snpid={$id}", "name": "SNP2TFBS", "description": "SNP2TFBS", "official": false, "providerCode": "sib", "sampleId": "rs11603840", "resourceHomeUrl": "https://ccg.epfl.ch/snp2tfbs/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "rs121909098", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 503, "prefix": "unists", "mirId": "MIR:00000162", "name": "UniSTS", "pattern": "^\\d+$", "description": "UniSTS is a comprehensive database of sequence tagged sites (STSs) derived from STS-based maps and other experiments. STSs are defined by PCR primer pairs and are associated with additional information such as genomic position, genes, and sequences.", "created": "2019-06-11T14:16:16.225+0000", "modified": "2019-06-11T14:16:16.225+0000", "resources": [{"id": 504, "mirId": "MIR:00100207", "urlPattern": "https://www.ncbi.nlm.nih.gov/genome/sts/sts.cgi?uid={$id}", "name": "UniSTS at NCBI", "description": "UniSTS at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "456789", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=unists", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "456789", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 505, "prefix": "ecogene", "mirId": "MIR:00000163", "name": "EcoGene", "pattern": "^EG\\d+$", "description": "The EcoGene database contains updated information about the E. coli K-12 genome and proteome sequences, including extensive gene bibliographies. A major EcoGene focus has been the re-evaluation of translation start sites.", "created": "2019-06-11T14:16:16.429+0000", "modified": "2019-06-11T14:16:16.429+0000", "resources": [{"id": 507, "mirId": "MIR:00100208", "urlPattern": "http://www.ecogene.org/gene/{$id}", "name": "EcoGene at University of Miami", "description": "EcoGene at University of Miami", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "EG10173", "resourceHomeUrl": "http://ecogene.org/", "institution": {"id": 506, "name": "Miller School of Medicine, University of Miami", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EG10173", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 837, "prefix": "bdgp.est", "mirId": "MIR:00000285", "name": "BDGP EST", "pattern": "^\\w+(\\.)?(\\d+)?$", "description": "The BDGP EST database collects the expressed sequence tags (ESTs) derived from a variety of tissues and developmental stages for Drosophila melanogaster. All BDGP ESTs are available at dbEST (NCBI).", "created": "2019-06-11T14:16:45.049+0000", "modified": "2019-06-11T14:16:45.049+0000", "resources": [{"id": 838, "mirId": "MIR:00100366", "urlPattern": "https://www.ncbi.nlm.nih.gov/nucest/{$id}", "name": "BDGP EST at NCBI", "description": "BDGP EST at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "EY223054.1", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/dbEST/index.html", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EY223054.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 508, "prefix": "gabi", "mirId": "MIR:00000164", "name": "GABI", "pattern": "^\\w+$", "description": "GabiPD (Genome Analysis of Plant Biological Systems Primary Database) constitutes a repository for a wide array of heterogeneous data from high-throughput experiments in several plant species. These data (i.e. genomics, transcriptomics, proteomics and metabolomics), originating from different model or crop species, can be accessed through a central gene 'Green Card'.", "created": "2019-06-11T14:16:16.652+0000", "modified": "2019-06-11T14:16:16.652+0000", "resources": [{"id": 510, "mirId": "MIR:00100210", "urlPattern": "http://www.gabipd.org/database/cgi-bin/GreenCards.pl.cgi?BioObjectId={$id}&Mode=ShowBioObject", "name": "GABI at Max Planck", "description": "GABI at Max Planck", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "2679240", "resourceHomeUrl": "http://www.gabipd.org/", "institution": {"id": 509, "name": "Max Planck Institute of Molecular Plant Physiology, Berlin", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2679240", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 511, "prefix": "greengenes", "mirId": "MIR:00000165", "name": "GreenGenes", "pattern": "^\\d+$", "description": "A 16S rRNA gene database which provides chimera screening, standard alignment, and taxonomic classification using multiple published taxonomies.", "created": "2019-06-11T14:16:16.885+0000", "modified": "2019-06-11T14:16:16.885+0000", "resources": [{"id": 513, "mirId": "MIR:00100211", "urlPattern": "http://greengenes.lbl.gov/cgi-bin/show_one_record_v2.pl?prokMSA_id={$id}", "name": "GreenGenes at Lawrence Berkeley", "description": "GreenGenes at Lawrence Berkeley", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "100000", "resourceHomeUrl": "http://greengenes.lbl.gov/", "institution": {"id": 512, "name": "Center for Environmental Biotechnology, Lawrence Berkeley National Laboratory, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "100000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 514, "prefix": "grin.taxonomy", "mirId": "MIR:00000166", "name": "GRIN Plant Taxonomy", "pattern": "^\\d+$", "description": "GRIN (Germplasm Resources Information Network) Taxonomy for Plants provides information on scientific and common names, classification, distribution, references, and economic impact.", "created": "2019-06-11T14:16:17.150+0000", "modified": "2019-06-11T14:16:17.150+0000", "resources": [{"id": 516, "mirId": "MIR:00100212", "urlPattern": "http://www.ars-grin.gov/cgi-bin/npgs/html/taxon.pl?{$id}", "name": "GRIN at Maryland", "description": "GRIN at Maryland", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "19333", "resourceHomeUrl": "http://www.ars-grin.gov/cgi-bin/npgs/html/index.pl?language=en", "institution": {"id": 515, "name": "National Germplasm Resources Laboratory, Beltsville, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "19333", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 517, "prefix": "hinv.locus", "mirId": "MIR:00000167", "name": "H-InvDb Locus", "pattern": "^HIX\\d{7}(\\.\\d+)?$", "description": "H-Invitational Database (H-InvDB) is an integrated database of human genes and transcripts. It provides curated annotations of human genes and transcripts including gene structures, alternative splicing isoforms, non-coding functional RNAs, protein functions, functional domains, sub-cellular localizations, metabolic pathways, protein 3D structure, genetic polymorphisms (SNPs, indels and microsatellite repeats), relation with diseases, gene expression profiling, molecular evolutionary features, protein-protein interactions (PPIs) and gene families/groups. This datatype provides access to the 'Locus' view.", "created": "2019-06-11T14:16:17.382+0000", "modified": "2019-06-11T14:16:17.382+0000", "resources": [{"id": 519, "mirId": "MIR:00100213", "urlPattern": "http://h-invitational.jp/hinv/spsoup/locus_view?hix_id={$id}", "name": "H-Invitational Locus View at BIRC", "description": "H-Invitational Locus View at BIRC", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HIX0004394", "resourceHomeUrl": "http://h-invitational.jp/hinv/ahg-db/index.jsp", "institution": {"id": 518, "name": "BIRC, Tokyo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HIX0004394", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 520, "prefix": "hinv.transcript", "mirId": "MIR:00000168", "name": "H-InvDb Transcript", "pattern": "^HIT\\d{9}(\\.\\d+)?$", "description": "H-Invitational Database (H-InvDB) is an integrated database of human genes and transcripts. It provides curated annotations of human genes and transcripts including gene structures, alternative splicing isoforms, non-coding functional RNAs, protein functions, functional domains, sub-cellular localizations, metabolic pathways, protein 3D structure, genetic polymorphisms (SNPs, indels and microsatellite repeats), relation with diseases, gene expression profiling, molecular evolutionary features, protein-protein interactions (PPIs) and gene families/groups. This datatype provides access to the 'Transcript' view.", "created": "2019-06-11T14:16:17.622+0000", "modified": "2019-06-11T14:16:17.622+0000", "resources": [{"id": 521, "mirId": "MIR:00100214", "urlPattern": "http://h-invitational.jp/hinv/spsoup/transcript_view?hit_id={$id}", "name": "H-Invitational Transcript View at BIRC", "description": "H-Invitational Transcript View at BIRC", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HIT000195363", "resourceHomeUrl": "http://h-invitational.jp/hinv/ahg-db/index.jsp", "institution": {"id": 518, "name": "BIRC, Tokyo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HIT000195363", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 522, "prefix": "hinv.protein", "mirId": "MIR:00000169", "name": "H-InvDb Protein", "pattern": "^HIP\\d{9}(\\.\\d+)?$", "description": "H-Invitational Database (H-InvDB) is an integrated database of human genes and transcripts. It provides curated annotations of human genes and transcripts including gene structures, alternative splicing isoforms, non-coding functional RNAs, protein functions, functional domains, sub-cellular localizations, metabolic pathways, protein 3D structure, genetic polymorphisms (SNPs, indels and microsatellite repeats), relation with diseases, gene expression profiling, molecular evolutionary features, protein-protein interactions (PPIs) and gene families/groups. This datatype provides access to the 'Protein' view.", "created": "2019-06-11T14:16:17.817+0000", "modified": "2019-06-11T14:16:17.817+0000", "resources": [{"id": 523, "mirId": "MIR:00100215", "urlPattern": "http://h-invitational.jp/hinv/protein/protein_view.cgi?hip_id={$id}", "name": "H-Invitational Protein View at BIRC", "description": "H-Invitational Protein View at BIRC", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HIP000030660", "resourceHomeUrl": "http://h-invitational.jp/hinv/ahg-db/index.jsp", "institution": {"id": 518, "name": "BIRC, Tokyo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HIP000030660", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 524, "prefix": "homd.seq", "mirId": "MIR:00000170", "name": "HOMD Sequence Metainformation", "pattern": "^SEQF\\d+$", "description": "The Human Oral Microbiome Database (HOMD) provides a site-specific comprehensive database for the more than 600 prokaryote species that are present in the human oral cavity. It contains genomic information based on a curated 16S rRNA gene-based provisional naming scheme, and taxonomic information. This datatype contains genomic sequence information.", "created": "2019-06-11T14:16:18.019+0000", "modified": "2019-06-11T14:16:18.019+0000", "resources": [{"id": 526, "mirId": "MIR:00100216", "urlPattern": "http://www.homd.org/modules.php?op=modload&name=GenomeList&file=index&link=detailinfo&seqid={$id}", "name": "HOMD sequence metainformation at The Forsyth Institute", "description": "HOMD sequence metainformation at The Forsyth Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SEQF1003", "resourceHomeUrl": "http://www.homd.org/index.php", "institution": {"id": 525, "name": "The Forsyth Institute, Boston", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SEQF1003", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 527, "prefix": "homd.taxon", "mirId": "MIR:00000171", "name": "HOMD Taxonomy", "pattern": "^\\d+$", "description": "The Human Oral Microbiome Database (HOMD) provides a site-specific comprehensive database for the more than 600 prokaryote species that are present in the human oral cavity. It contains genomic information based on a curated 16S rRNA gene-based provisional naming scheme, and taxonomic information. This datatype contains taxonomic information.", "created": "2019-06-11T14:16:18.268+0000", "modified": "2019-06-11T14:16:18.268+0000", "resources": [{"id": 528, "mirId": "MIR:00100217", "urlPattern": "http://www.homd.org/modules.php?op=modload&name=HOMD&file=index&oraltaxonid={$id}&view=dynamic", "name": "HOMD taxon information at The Forsyth Institute", "description": "HOMD taxon information at The Forsyth Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "811", "resourceHomeUrl": "http://www.homd.org/index.php", "institution": {"id": 525, "name": "The Forsyth Institute, Boston", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "811", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 529, "prefix": "ird.segment", "mirId": "MIR:00000172", "name": "IRD Segment Sequence", "pattern": "^\\w+(\\_)?\\d+(\\.\\d+)?$", "description": "Influenza Research Database (IRD) contains information related to influenza virus, including genomic sequence, strain, protein, epitope and bibliographic information. The Segment Details page contains descriptive information and annotation data about a particular genomic segment and its encoded product(s).", "created": "2019-06-11T14:16:18.461+0000", "modified": "2019-06-11T14:16:18.461+0000", "resources": [{"id": 531, "mirId": "MIR:00100218", "urlPattern": "http://www.fludb.org/brc/fluSegmentDetails.do?ncbiGenomicAccession={$id}", "name": "IRD at BioHealthBase", "description": "IRD at BioHealthBase", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CY077097", "resourceHomeUrl": "http://www.fludb.org/", "institution": {"id": 530, "name": "Southwestern Medical Center, University of Texas, Dallas", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CY077097", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 532, "prefix": "isfinder", "mirId": "MIR:00000173", "name": "ISFinder", "pattern": "^IS\\w+(\\-\\d)?$", "description": "ISfinder is a database of bacterial insertion sequences (IS). It assigns IS nomenclature and acts as a repository for ISs. Each IS is annotated with information such as the open reading frame DNA sequence, the sequence of the ends of the element and target sites, its origin and distribution together with a bibliography, where available.", "created": "2019-06-11T14:16:18.690+0000", "modified": "2019-06-11T14:16:18.690+0000", "resources": [{"id": 534, "mirId": "MIR:00100219", "urlPattern": "https://www-is.biotoul.fr/scripts/ficheIS.php?name={$id}", "name": "IS Finder at CNRS", "description": "IS Finder at CNRS", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ISA1083-2", "resourceHomeUrl": "http://www-is.biotoul.fr/i", "institution": {"id": 533, "name": "Laboratoire de Microbiologie et G\u00e9n\u00e9tique Mol\u00e9culaires, CNRS, Toulouse", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ISA1083-2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 535, "prefix": "jcm", "mirId": "MIR:00000174", "name": "Japan Collection of Microorganisms", "pattern": "^\\d+$", "description": "The Japan Collection of Microorganisms (JCM) collects, catalogues, and distributes cultured microbial strains, restricted to those classified in Risk Group 1 or 2.", "created": "2019-06-11T14:16:18.921+0000", "modified": "2019-06-11T14:16:18.921+0000", "resources": [{"id": 537, "mirId": "MIR:00100220", "urlPattern": "http://www.jcm.riken.go.jp/cgi-bin/jcm/jcm_number?JCM={$id}", "name": "JCM at RIKEN BioResource Center", "description": "JCM at RIKEN BioResource Center", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "17254", "resourceHomeUrl": "http://www.jcm.riken.go.jp/", "institution": {"id": 536, "name": "RIKEN BioResource Center, Ibaraki", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "17254", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 538, "prefix": "img.taxon", "mirId": "MIR:00000175", "name": "Integrated Microbial Genomes Taxon", "pattern": "^\\d+$", "description": "The integrated microbial genomes (IMG) system is a data management, analysis and annotation platform for all publicly available genomes. IMG contains both draft and complete JGI (DoE Joint Genome Institute) microbial genomes integrated with all other publicly available genomes from all three domains of life, together with a large number of plasmids and viruses. This datatype refers to taxon information.", "created": "2019-06-11T14:16:19.173+0000", "modified": "2019-06-11T14:16:19.173+0000", "resources": [{"id": 540, "mirId": "MIR:00100221", "urlPattern": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=TaxonDetail&taxon_oid={$id}", "name": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", "description": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "648028003", "resourceHomeUrl": "http://img.jgi.doe.gov/", "institution": {"id": 539, "name": "Lawrence Berkeley National Laboratory, Berkeley", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "648028003", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 541, "prefix": "img.gene", "mirId": "MIR:00000176", "name": "Integrated Microbial Genomes Gene", "pattern": "^\\d+$", "description": "The integrated microbial genomes (IMG) system is a data management, analysis and annotation platform for all publicly available genomes. IMG contains both draft and complete JGI (DoE Joint Genome Institute) microbial genomes integrated with all other publicly available genomes from all three domains of life, together with a large number of plasmids and viruses. This datatype refers to gene information.", "created": "2019-06-11T14:16:19.420+0000", "modified": "2019-06-11T14:16:19.420+0000", "resources": [{"id": 542, "mirId": "MIR:00100222", "urlPattern": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=GeneDetail&gene_oid={$id}", "name": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", "description": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "638309541", "resourceHomeUrl": "http://img.jgi.doe.gov/", "institution": {"id": 539, "name": "Lawrence Berkeley National Laboratory, Berkeley", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "638309541", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 543, "prefix": "maizegdb.locus", "mirId": "MIR:00000177", "name": "MaizeGDB Locus", "pattern": "^\\d+$", "description": "MaizeGDB is the maize research community's central repository for genetics and genomics information.", "created": "2019-06-11T14:16:19.610+0000", "modified": "2019-06-11T14:16:19.610+0000", "resources": [{"id": 545, "mirId": "MIR:00100223", "urlPattern": "http://www.maizegdb.org/cgi-bin/displaylocusrecord.cgi?id={$id}", "name": "MaizeGDB at Missouri", "description": "MaizeGDB at Missouri", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "25011", "resourceHomeUrl": "http://www.maizegdb.org/", "institution": {"id": 544, "name": "Division of Plant Sciences, Missouri", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "25011", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 546, "prefix": "mycobank", "mirId": "MIR:00000178", "name": "MycoBank", "pattern": "^\\d+$", "description": "MycoBank is an online database, documenting new mycological names and combinations, eventually combined with descriptions and illustrations.", "created": "2019-06-11T14:16:19.843+0000", "modified": "2019-06-11T14:16:19.843+0000", "resources": [{"id": 548, "mirId": "MIR:00100224", "urlPattern": "http://www.mycobank.org/Biolomics.aspx?Table=Mycobank&MycoBankNr_={$id}", "name": "MycoBank at Fungal Biodiversity Centre", "description": "MycoBank at Fungal Biodiversity Centre", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "349124", "resourceHomeUrl": "http://www.mycobank.org/", "institution": {"id": 547, "name": "CBS-KNAW Fungal Biodiversity Centre, Utrecht", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "349124", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 549, "prefix": "nbrc", "mirId": "MIR:00000179", "name": "NITE Biological Research Center Catalogue", "pattern": "^\\d+$", "description": "NITE Biological Research Center (NBRC) provides a collection of microbial resources, performing taxonomic characterization of individual microorganisms such as bacteria including actinomycetes and archaea, yeasts, fungi, algaes, bacteriophages and DNA resources for academic research and industrial applications. A catalogue is maintained which states strain nomenclature, synonyms, and culture and sequence information.", "created": "2019-06-11T14:16:20.103+0000", "modified": "2019-06-11T14:16:20.103+0000", "resources": [{"id": 551, "mirId": "MIR:00100225", "urlPattern": "http://www.nbrc.nite.go.jp/NBRC2/NBRCCatalogueDetailServlet?ID=NBRC&CAT={$id}", "name": "NBRC Catalogue at National Institute of Technology Evaluation", "description": "NBRC Catalogue at National Institute of Technology Evaluation", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "00001234", "resourceHomeUrl": "http://www.nbrc.nite.go.jp/e/index.html", "institution": {"id": 550, "name": "National Institute of Technology Evaluation, Tokyo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00001234", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 552, "prefix": "pseudomonas", "mirId": "MIR:00000180", "name": "Pseudomonas Genome Database", "pattern": "^P\\w+$", "description": "The Pseudomonas Genome Database is a resource for peer-reviewed, continually updated annotation for all Pseudomonas species. It includes gene and protein sequence information, as well as regulation and predicted function and annotation.", "created": "2019-06-11T14:16:20.362+0000", "modified": "2019-06-11T14:16:20.362+0000", "resources": [{"id": 554, "mirId": "MIR:00100226", "urlPattern": "http://www.pseudomonas.com/feature/show/?locus_tag={$id}", "name": "Pseudomonas Genome Database at Simon Fraser University", "description": "Pseudomonas Genome Database at Simon Fraser University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PSEEN0001", "resourceHomeUrl": "http://www.pseudomonas.com/", "institution": {"id": 553, "name": "Simon Fraser University, British Columbia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PSEEN0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 555, "prefix": "gramene.protein", "mirId": "MIR:00000181", "name": "Gramene protein", "pattern": "^\\d+$", "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This datatype refers to proteins in Gramene.", "created": "2019-06-11T14:16:20.589+0000", "modified": "2019-06-11T14:16:20.589+0000", "resources": [{"id": 557, "mirId": "MIR:00100227", "urlPattern": "http://www.gramene.org/db/protein/protein_search?protein_id={$id}", "name": "Gramene Protein at Cold Spring Harbor", "description": "Gramene Protein at Cold Spring Harbor", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "78073", "resourceHomeUrl": "http://www.gramene.org/", "institution": {"id": 556, "name": "Cold Spring Harbor Laboratory, New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "78073", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 558, "prefix": "gramene.gene", "mirId": "MIR:00000182", "name": "Gramene genes", "pattern": "^GR\\:\\d+$", "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This datatype refers to genes in Gramene.", "created": "2019-06-11T14:16:20.812+0000", "modified": "2019-06-11T14:16:20.812+0000", "resources": [{"id": 559, "mirId": "MIR:00100228", "urlPattern": "http://www.gramene.org/db/genes/search_gene?acc={$id}", "name": "Gramene Genes at Cold Spring Harbor", "description": "Gramene Genes at Cold Spring Harbor", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "GR:0080039", "resourceHomeUrl": "http://www.gramene.org/", "institution": {"id": 556, "name": "Cold Spring Harbor Laboratory, New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GR:0080039", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 560, "prefix": "gramene.taxonomy", "mirId": "MIR:00000183", "name": "Gramene Taxonomy", "pattern": "^GR\\_tax\\:\\d+$", "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This datatype refers to taxonomic information in Gramene.", "created": "2019-06-11T14:16:21.008+0000", "modified": "2019-06-11T14:16:21.008+0000", "resources": [{"id": 561, "mirId": "MIR:00100229", "urlPattern": "http://www.gramene.org/db/ontology/search?id={$id}", "name": "Gramene Taxonomy at Cold Spring Harbor", "description": "Gramene Taxonomy at Cold Spring Harbor", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "GR_tax:013681", "resourceHomeUrl": "http://www.gramene.org/", "institution": {"id": 556, "name": "Cold Spring Harbor Laboratory, New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GR_tax:013681", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 562, "prefix": "gramene.qtl", "mirId": "MIR:00000184", "name": "Gramene QTL", "pattern": "^\\w+$", "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This datatype refers to quantitative trait loci identified in Gramene.", "created": "2019-06-11T14:16:21.219+0000", "modified": "2019-06-11T14:16:21.219+0000", "resources": [{"id": 563, "mirId": "MIR:00100230", "urlPattern": "http://www.gramene.org/db/qtl/qtl_display?qtl_accession_id={$id}", "name": "Gramene Quantitative Trait Loci at Cold Spring Harbor", "description": "Gramene Quantitative Trait Loci at Cold Spring Harbor", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CQG5", "resourceHomeUrl": "http://www.gramene.org/", "institution": {"id": 556, "name": "Cold Spring Harbor Laboratory, New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CQG5", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 564, "prefix": "sgn", "mirId": "MIR:00000185", "name": "Sol Genomics Network", "pattern": "^\\d+$", "description": "The Sol Genomics Network (SGN) is a database and website dedicated to the genomic information of the nightshade family, which includes species such as tomato, potato, pepper, petunia and eggplant.", "created": "2019-06-11T14:16:21.425+0000", "modified": "2019-06-11T14:16:21.425+0000", "resources": [{"id": 566, "mirId": "MIR:00100231", "urlPattern": "http://solgenomics.net/phenome/locus_display.pl?locus_id={$id}", "name": "Sol Genomics Network at Boyce Thompson Institute for Plant Research", "description": "Sol Genomics Network at Boyce Thompson Institute for Plant Research", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0001", "resourceHomeUrl": "http://solgenomics.net/", "institution": {"id": 565, "name": "Boyce Thompson Institute for Plant Research, New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 570, "prefix": "bioportal", "mirId": "MIR:00000187", "name": "BioPortal", "pattern": "^\\d+$", "description": "BioPortal is an open repository of biomedical ontologies that provides access via Web services and Web browsers to ontologies developed in OWL, RDF, OBO format and Prot\u00e9g\u00e9 frames. BioPortal functionality includes the ability to browse, search and visualize ontologies.", "created": "2019-06-11T14:16:21.882+0000", "modified": "2019-06-11T14:16:21.882+0000", "resources": [{"id": 572, "mirId": "MIR:00100244", "urlPattern": "http://bioportal.bioontology.org/ontologies/{$id}", "name": "BioPortal at National Center for Biomedical Ontology", "description": "BioPortal at National Center for Biomedical Ontology", "official": false, "providerCode": "bptl", "sampleId": "1046", "resourceHomeUrl": "http://bioportal.bioontology.org/", "institution": {"id": 571, "name": "National Center for Biomedical Ontology, Stanford University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1046", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 573, "prefix": "miriam.resource", "mirId": "MIR:00000188", "name": "MIRIAM Registry resource", "pattern": "^MIR:001\\d{5}$", "description": "MIRIAM Registry is an online resource created to catalogue data types (Gene Ontology, Taxonomy or PubMed are some examples), their URIs and the corresponding resources (or physical locations), whether these are controlled vocabularies or databases.", "created": "2019-06-11T14:16:22.127+0000", "modified": "2019-06-11T14:16:22.127+0000", "resources": [{"id": 574, "mirId": "MIR:00100245", "urlPattern": "https://www.ebi.ac.uk/miriam/main/resources/{$id}", "name": "MIRIAM Registry (resources)", "description": "MIRIAM Registry (resources)", "official": false, "providerCode": "ebi", "sampleId": "MIR:00100005", "resourceHomeUrl": "https://www.ebi.ac.uk/miriam/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MIR:00100005", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 575, "prefix": "edam", "mirId": "MIR:00000189", "name": "EDAM Ontology", "pattern": "^(data|topic|operation|format)\\_\\d{4}$", "description": "EDAM is an ontology of general bioinformatics concepts, including topics, data types, formats, identifiers and operations. EDAM provides a controlled vocabulary for the description, in semantic terms, of things such as: web services (e.g. WSDL files), applications, tool collections and packages, work-benches and workflow software, databases and ontologies, XSD data schema and data objects, data syntax and file formats, web portals and pages, resource catalogues and documents (such as scientific publications).", "created": "2019-06-11T14:16:22.318+0000", "modified": "2019-06-11T14:16:22.318+0000", "resources": [{"id": 576, "mirId": "MIR:00100536", "urlPattern": "http://purl.bioontology.org/ontology/EDAM/{$id}", "name": "EDAM through BioPortal", "description": "EDAM through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "data_1664", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/EDAM", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 577, "mirId": "MIR:00100762", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/edam/terms?short_form={$id}", "name": "EDAM through OLS", "description": "EDAM through OLS", "official": false, "providerCode": "ols", "sampleId": "data_1664", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/edam", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "data_1664", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 578, "prefix": "pmdb", "mirId": "MIR:00000190", "name": "Protein Model Database", "pattern": "^PM\\d{7}", "description": "The Protein Model DataBase (PMDB), is a database that collects manually built three dimensional protein models, obtained by different structure prediction techniques.", "created": "2019-06-11T14:16:22.644+0000", "modified": "2019-06-11T14:16:22.644+0000", "resources": [{"id": 580, "mirId": "MIR:00100247", "urlPattern": "https://bioinformatics.cineca.it/PMDB/user//search.php?idsearch={$id}", "name": "Protein Model Database at University of Rome", "description": "Protein Model Database at University of Rome", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PM0012345", "resourceHomeUrl": "https://bioinformatics.cineca.it/PMDB/", "institution": {"id": 579, "name": "CASPUR and Biocomputing group, Department of Biochemical Sciences, University of Rome, Rome", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PM0012345", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 581, "prefix": "arachnoserver", "mirId": "MIR:00000193", "name": "ArachnoServer", "pattern": "^AS\\d{6}$", "description": "ArachnoServer (www.arachnoserver.org) is a manually curated database providing information on the sequence, structure and biological activity of protein toxins from spider venoms. It include a molecular target ontology designed specifically for venom toxins, as well as current and historic taxonomic information.", "created": "2019-06-11T14:16:22.902+0000", "modified": "2019-06-11T14:16:22.902+0000", "resources": [{"id": 583, "mirId": "MIR:00100250", "urlPattern": "http://www.arachnoserver.org/toxincard.html?id={$id}", "name": "ArachnoServer at Brisbane", "description": "ArachnoServer at Brisbane", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AS000060", "resourceHomeUrl": "http://www.arachnoserver.org/", "institution": {"id": 582, "name": "Institute for Molecular Bioscience, The University of Queensland, Brisbane", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "AU", "countryName": "Australia"}}, "location": {"countryCode": "AU", "countryName": "Australia"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AS000060", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 584, "prefix": "biocyc", "mirId": "MIR:00000194", "name": "BioCyc", "pattern": "^[A-Z-0-9]+(\\:)?[A-Za-z0-9+_.%-:]+$", "description": "BioCyc is a collection of Pathway/Genome Databases (PGDBs) which provides an electronic reference source on the genomes and metabolic pathways of sequenced organisms.", "created": "2019-06-11T14:16:23.132+0000", "modified": "2019-06-11T14:16:23.132+0000", "resources": [{"id": 586, "mirId": "MIR:00100251", "urlPattern": "http://biocyc.org/getid?id={$id}", "name": "BioCyc at SRI International", "description": "BioCyc at SRI International", "official": false, "providerCode": "sri", "sampleId": "ECOLI:CYT-D-UBIOX-CPLX", "resourceHomeUrl": "http://biocyc.org", "institution": {"id": 1692, "name": "SRI International", "homeUrl": "https://www.sri.com/", "description": "SRI is an independent, nonprofit research center that works with clients to take the most advanced R&D from the laboratory to the marketplace.", "rorId": "https://ror.org/05s570m15", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ECOLI:CYT-D-UBIOX-CPLX", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 587, "prefix": "cazy", "mirId": "MIR:00000195", "name": "CAZy", "pattern": "^(GT|GH|PL|CE|CBM)\\d+(\\_\\d+)?$", "description": "The Carbohydrate-Active Enzyme (CAZy) database is a resource specialized in enzymes that build and breakdown complex carbohydrates and glycoconjugates. These enzymes are classified into families based on structural features.", "created": "2019-06-11T14:16:23.358+0000", "modified": "2019-06-11T14:16:23.358+0000", "resources": [{"id": 589, "mirId": "MIR:00100252", "urlPattern": "http://www.cazy.org/{$id}.html", "name": "CAZy at CNRS", "description": "CAZy at CNRS", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "GT10", "resourceHomeUrl": "http://www.cazy.org/", "institution": {"id": 588, "name": "Architecture et Fonction des Macromol\u00e9cules Biologiques", "homeUrl": "http://www.afmb.univ-mrs.fr", "description": "The Architecture et Fonction des Macromol\u00e9cules Biologiques (AFMB) laboratory, overseen by the CNRS and AMU, is a center of structural biology localized on the Luminy campus in the South of Marseilles, France, and in partnership with INRA under contract.", "rorId": "https://ror.org/04jm8zw14", "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GT10", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 590, "prefix": "goa", "mirId": "MIR:00000196", "name": "GOA", "pattern": "^(([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9]))|(URS[0-9A-F]{10}(_[0-9]+){0,1})|(EBI-[0-9]+)$", "description": "The GOA (Gene Ontology Annotation) project provides high-quality Gene Ontology (GO) annotations to proteins in the UniProt Knowledgebase (UniProtKB) and International Protein Index (IPI). This involves electronic annotation and the integration of high-quality manual GO annotation from all GO Consortium model organism groups and specialist groups.", "created": "2019-06-11T14:16:23.594+0000", "modified": "2019-06-11T14:16:23.594+0000", "resources": [{"id": 591, "mirId": "MIR:00100253", "urlPattern": "https://www.ebi.ac.uk/QuickGO/GProtein?ac={$id}", "name": "GOA through QuickGO", "description": "GOA through QuickGO", "official": false, "providerCode": "quickgo", "sampleId": "P12345", "resourceHomeUrl": "https://www.ebi.ac.uk/GOA/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P12345", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 592, "prefix": "paleodb", "mirId": "MIR:00000197", "name": "PaleoDB", "pattern": "^\\d+$", "description": "The Paleobiology Database seeks to provide researchers and the public with information about the entire fossil record. It stores global, collection-based occurrence and taxonomic data for marine and terrestrial animals and plants of any geological age, as well as web-based software for statistical analysis of the data.", "created": "2019-06-11T14:16:23.782+0000", "modified": "2019-06-11T14:16:23.782+0000", "resources": [{"id": 594, "mirId": "MIR:00100254", "urlPattern": "http://fossilworks.org/?a=taxonInfo&taxon_no={$id}", "name": "PaleoDB at Macquarie University", "description": "PaleoDB at Macquarie University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "83088", "resourceHomeUrl": "http://paleodb.org/", "institution": {"id": 593, "name": "Macquarie University, Sydney", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "AU", "countryName": "Australia"}}, "location": {"countryCode": "AU", "countryName": "Australia"}, "deprecated": false, "deprecationDate": null}], "sampleId": "83088", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 595, "prefix": "compulyeast", "mirId": "MIR:00000198", "name": "Compulyeast", "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])$", "description": "Compluyeast-2D-DB is a two-dimensional polyacrylamide gel electrophoresis federated database. This collection references a subset of Uniprot, and contains general information about the protein record.", "created": "2019-06-11T14:16:24.045+0000", "modified": "2019-06-11T14:16:24.045+0000", "resources": [{"id": 597, "mirId": "MIR:00100257", "urlPattern": "http://compluyeast2dpage.dacya.ucm.es/cgi-bin/2d/2d.cgi?ac={$id}", "name": "Compluyeast database at Universidad Complutense Madrid", "description": "Compluyeast database at Universidad Complutense Madrid", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "O08709", "resourceHomeUrl": "http://compluyeast2dpage.dacya.ucm.es/", "institution": {"id": 596, "name": "Department Microbiology II, Universidad Complutense Madrid, Madrid", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "ES", "countryName": "Spain"}}, "location": {"countryCode": "ES", "countryName": "Spain"}, "deprecated": false, "deprecationDate": null}], "sampleId": "O08709", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 601, "prefix": "echobase", "mirId": "MIR:00000200", "name": "EchoBASE", "pattern": "^EB\\d+$", "description": "EchoBASE is a database designed to contain and manipulate information from post-genomic experiments using the model bacterium Escherichia coli K-12. The database is built on an enhanced annotation of the updated genome sequence of strain MG1655 and the association of experimental data with the E.coli genes and their products.", "created": "2019-06-11T14:16:24.496+0000", "modified": "2019-06-11T14:16:24.496+0000", "resources": [{"id": 603, "mirId": "MIR:00100259", "urlPattern": "http://www.york.ac.uk/res/thomas/Gene.cfm?recordID={$id}", "name": "EchoBASE at the University of York", "description": "EchoBASE at the University of York", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "EB0170", "resourceHomeUrl": "http://www.york.ac.uk/", "institution": {"id": 602, "name": "Department of Biology (Area 10), University of York, York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EB0170", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 598, "prefix": "disprot", "mirId": "MIR:00000199", "name": "DisProt", "pattern": "^DP\\d{5}$", "description": "DisProt is a database of intrinsically disordered proteins and protein disordered regions, manually curated from literature.", "created": "2019-06-11T14:16:24.278+0000", "modified": "2021-02-17T17:15:29.025+0000", "resources": [{"id": 600, "mirId": "MIR:00100258", "urlPattern": "https://disprot.org/{$id}", "name": "DisProt at University of Padua", "description": "DisProt at University of Padua", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "DP00003", "resourceHomeUrl": "https://disprot.org/", "institution": {"id": 1769, "name": "University of Padua", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DP00003", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 604, "prefix": "eggnog", "mirId": "MIR:00000201", "name": "eggNOG", "pattern": "^\\w+$", "description": "eggNOG (evolutionary genealogy of genes: Non-supervised Orthologous Groups) is a database of orthologous groups of genes. The orthologous groups are annotated with functional description lines (derived by identifying a common denominator for the genes based on their various annotations), with functional categories (i.e derived from the original COG/KOG categories).", "created": "2019-06-11T14:16:24.719+0000", "modified": "2019-06-11T14:16:24.719+0000", "resources": [{"id": 606, "mirId": "MIR:00100260", "urlPattern": "http://eggnog.embl.de/version_3.0/cgi/search.py?search_term_0={$id}", "name": "eggNOG Version 3 at European Molecular Biology Laboratory", "description": "eggNOG Version 3 at European Molecular Biology Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "veNOG12876", "resourceHomeUrl": "http://eggnog.embl.de/version_3.0/", "institution": {"id": 605, "name": "European Molecular Biology Laboratory, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "veNOG12876", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 607, "prefix": "ensembl.bacteria", "mirId": "MIR:00000202", "name": "Ensembl Bacteria", "pattern": "^((EB\\w+)|([A-Z0-9]+\\_[A-Z0-9]+))$", "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with bacterial genomes.", "created": "2019-06-11T14:16:24.944+0000", "modified": "2019-06-11T14:16:24.944+0000", "resources": [{"id": 608, "mirId": "MIR:00100261", "urlPattern": "https://bacteria.ensembl.org/id/{$id}", "name": "Ensembl Bacteria at EBI", "description": "Ensembl Bacteria at EBI", "official": false, "providerCode": "ebi", "sampleId": "MU9_3181", "resourceHomeUrl": "https://bacteria.ensembl.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MU9_3181", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 609, "prefix": "ensembl.protist", "mirId": "MIR:00000203", "name": "Ensembl Protists", "pattern": "^\\w+$", "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with protist genomes.", "created": "2019-06-11T14:16:25.183+0000", "modified": "2019-06-11T14:16:25.183+0000", "resources": [{"id": 610, "mirId": "MIR:00100262", "urlPattern": "https://protists.ensembl.org/id/{$id}", "name": "Ensembl Protists at EBI", "description": "Ensembl Protists at EBI", "official": false, "providerCode": "ebi", "sampleId": "PF3D7_1328700", "resourceHomeUrl": "https://protists.ensembl.org", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PF3D7_1328700", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 611, "prefix": "ensembl.metazoa", "mirId": "MIR:00000204", "name": "Ensembl Metazoa", "pattern": "^\\w+(\\.)?\\d+$", "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with metazoa genomes.", "created": "2019-06-11T14:16:25.396+0000", "modified": "2019-06-11T14:16:25.396+0000", "resources": [{"id": 612, "mirId": "MIR:00100263", "urlPattern": "https://metazoa.ensembl.org/id/{$id}", "name": "Enzembl Metazoa at EBI", "description": "Enzembl Metazoa at EBI", "official": false, "providerCode": "ebi", "sampleId": "FBtr0084214", "resourceHomeUrl": "https://metazoa.ensembl.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "FBtr0084214", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 613, "prefix": "ensembl.plant", "mirId": "MIR:00000205", "name": "Ensembl Plants", "pattern": "^\\w+(\\.\\d+)?(\\.\\d+)?$", "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with plant genomes.", "created": "2019-06-11T14:16:25.597+0000", "modified": "2019-06-11T14:16:25.597+0000", "resources": [{"id": 614, "mirId": "MIR:00100264", "urlPattern": "https://plants.ensembl.org/id/{$id}", "name": "Enzembl Plants at EBI", "description": "Enzembl Plants at EBI", "official": false, "providerCode": "ebi", "sampleId": "AT1G73965", "resourceHomeUrl": "https://plants.ensembl.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AT1G73965", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 615, "prefix": "ensembl.fungi", "mirId": "MIR:00000206", "name": "Ensembl Fungi", "pattern": "^[A-Z-a-z0-9]+$", "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with fungal genomes.", "created": "2019-06-11T14:16:25.804+0000", "modified": "2019-06-11T14:16:25.804+0000", "resources": [{"id": 616, "mirId": "MIR:00100265", "urlPattern": "https://fungi.ensembl.org/id/{$id}", "name": "Enzembl Fungi at EBI", "description": "Enzembl Fungi at EBI", "official": false, "providerCode": "ebi", "sampleId": "CADAFLAT00006211", "resourceHomeUrl": "https://fungi.ensembl.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CADAFLAT00006211", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 617, "prefix": "hcvdb", "mirId": "MIR:00000207", "name": "HCVDB", "pattern": "^M\\d{5}$", "description": "the European Hepatitis C Virus Database (euHCVdb, http://euhcvdb.ibcp.fr), a collection of computer-annotated sequences based on reference genomes.mainly dedicated to HCV protein sequences, 3D structures and functional analyses.", "created": "2019-06-11T14:16:26.018+0000", "modified": "2019-06-11T14:16:26.018+0000", "resources": [{"id": 619, "mirId": "MIR:00100266", "urlPattern": "https://euhcvdb.ibcp.fr/euHCVdb/do/displayHCVEntry?primaryAC={$id}", "name": "HCVDB at CNRS", "description": "HCVDB at CNRS", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "M58335", "resourceHomeUrl": "http://euhcvdb.ibcp.fr/euHCVdb/", "institution": {"id": 618, "name": "Institut de Biologie et Chimie des Prot\u00e9ines, CNRS, University of Lyon , Lyon-Gerland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "M58335", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 620, "prefix": "genatlas", "mirId": "MIR:00000208", "name": "Genatlas", "pattern": "^\\w+$", "description": "GenAtlas is a database containing information on human genes, markers and phenotypes.", "created": "2019-06-11T14:16:26.301+0000", "modified": "2019-06-11T14:16:26.301+0000", "resources": [{"id": 622, "mirId": "MIR:00100267", "urlPattern": "http://genatlas.medecine.univ-paris5.fr/fiche.php?symbol={$id}", "name": "Genatlas at Paris Descartes University", "description": "Genatlas at Paris Descartes University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HBB", "resourceHomeUrl": "http://genatlas.medecine.univ-paris5.fr/", "institution": {"id": 621, "name": "Paris Descartes University, Paris", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HBB", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 623, "prefix": "cath.superfamily", "mirId": "MIR:00000209", "name": "CATH superfamily", "pattern": "^\\d+(\\.\\d+(\\.\\d+(\\.\\d+)?)?)?$", "description": "The CATH database is a hierarchical domain classification of protein structures in the Protein Data Bank. Protein structures are classified using a combination of automated and manual procedures. There are four major levels in this hierarchy; Class (secondary structure classification, e.g. mostly alpha), Architecture (classification based on overall shape), Topology (fold family) and Homologous superfamily (protein domains which are thought to share a common ancestor). This colelction is concerned with superfamily classification.", "created": "2019-06-11T14:16:26.635+0000", "modified": "2019-06-11T14:16:26.635+0000", "resources": [{"id": 625, "mirId": "MIR:00100268", "urlPattern": "http://www.cathdb.info/cathnode/{$id}", "name": "CATH superfamily at UCL", "description": "CATH superfamily at UCL", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1.10.10.200", "resourceHomeUrl": "http://www.cathdb.info/", "institution": {"id": 624, "name": "Institute of Structural and Molecular Biology, University College London", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1.10.10.200", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 626, "prefix": "cath.domain", "mirId": "MIR:00000210", "name": "CATH domain", "pattern": "^\\w+$", "description": "The CATH database is a hierarchical domain classification of protein structures in the Protein Data Bank. Protein structures are classified using a combination of automated and manual procedures. There are four major levels in this hierarchy; Class (secondary structure classification, e.g. mostly alpha), Architecture (classification based on overall shape), Topology (fold family) and Homologous superfamily (protein domains which are thought to share a common ancestor). This colelction is concerned with CATH domains.", "created": "2019-06-11T14:16:26.899+0000", "modified": "2019-06-11T14:16:26.899+0000", "resources": [{"id": 627, "mirId": "MIR:00100269", "urlPattern": "http://www.cathdb.info/domain/{$id}", "name": "CATH domain at UCL", "description": "CATH domain at UCL", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1cukA01", "resourceHomeUrl": "http://www.cathdb.info/", "institution": {"id": 624, "name": "Institute of Structural and Molecular Biology, University College London", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1cukA01", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 628, "prefix": "genefarm", "mirId": "MIR:00000211", "name": "GeneFarm", "pattern": "^\\d+$", "description": "GeneFarm is a database whose purpose is to store traceable annotations for Arabidopsis nuclear genes and gene products.", "created": "2019-06-11T14:16:27.145+0000", "modified": "2019-06-11T14:16:27.145+0000", "resources": [{"id": 630, "mirId": "MIR:00100270", "urlPattern": "https://urgi.versailles.inra.fr/Genefarm/Gene/display_gene.htpl?GENE_ID={$id}", "name": "GeneFarm at Unit\u00e9 de Recherche en G\u00e9nomique V\u00e9g\u00e9tale", "description": "GeneFarm at Unit\u00e9 de Recherche en G\u00e9nomique V\u00e9g\u00e9tale", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4892", "resourceHomeUrl": "http://urgi.versailles.inra.fr/Genefarm/", "institution": {"id": 629, "name": "Unit\u00e9 de Recherche en G\u00e9nomique V\u00e9g\u00e9tale, Evry", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4892", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 631, "prefix": "gpcrdb", "mirId": "MIR:00000212", "name": "GPCRDB", "pattern": "^\\w+$", "description": "The G protein-coupled receptor database (GPCRDB) collects, large amounts of heterogeneous data on GPCRs. It contains experimental data on sequences, ligand-binding constants, mutations and oligomers, and derived data such as multiple sequence alignments and homology models.", "created": "2019-06-11T14:16:27.419+0000", "modified": "2019-06-11T14:16:27.419+0000", "resources": [{"id": 633, "mirId": "MIR:00100271", "urlPattern": "http://www.gpcrdb.org/protein/{$id}/", "name": "GPCRDB at Radboud University", "description": "GPCRDB at Radboud University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "RL3R1_HUMAN", "resourceHomeUrl": "http://www.gpcrdb.org/", "institution": {"id": 632, "name": "Radboud University Nijmegen Medical Centre, Nijmegen,", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "RL3R1_HUMAN", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 634, "prefix": "hogenom", "mirId": "MIR:00000213", "name": "HOGENOM", "pattern": "^\\w+$", "description": "HOGENOM is a database of homologous genes from fully sequenced organisms (bacteria, archeae and eukarya). This collection references phylogenetic trees which can be retrieved using either UniProt accession numbers, or HOGENOM tree family identifier.", "created": "2019-06-11T14:16:27.678+0000", "modified": "2019-06-11T14:16:27.678+0000", "resources": [{"id": 636, "mirId": "MIR:00100272", "urlPattern": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?db=HOGENOM5&query={$id}", "name": "HOGENOM at CNRS", "description": "HOGENOM at CNRS", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HBG284870", "resourceHomeUrl": "http://pbil.univ-lyon1.fr/databases/hogenom/", "institution": {"id": 635, "name": "Laboratoire de Biom\u00e9trie et Biologie Evolutive, CNRS, Lyon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HBG284870", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 637, "prefix": "genetree", "mirId": "MIR:00000214", "name": "GeneTree", "pattern": "^ENSGT\\d+$", "description": "Genetree displays the maximum likelihood phylogenetic (protein) trees representing the evolutionary history of the genes. These are constructed using the canonical protein for every gene in Ensembl.", "created": "2019-06-11T14:16:27.950+0000", "modified": "2019-06-11T14:16:27.950+0000", "resources": [{"id": 638, "mirId": "MIR:00100273", "urlPattern": "http://www.ensembl.org/Multi/GeneTree/Image?db=core;gt={$id}", "name": "GeneTree at Ensembl", "description": "GeneTree at Ensembl", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ENSGT00550000074763", "resourceHomeUrl": "http://www.ensembl.org/", "institution": {"id": 8, "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ENSGT00550000074763", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 639, "prefix": "hssp", "mirId": "MIR:00000215", "name": "HSSP", "pattern": "^\\w{4}$", "description": "HSSP (homology-derived structures of proteins) is a derived database merging structural (2-D and 3-D) and sequence information (1-D). For each protein of known 3D structure from the Protein Data Bank, the database has a file with all sequence homologues, properly aligned to the PDB protein.", "created": "2019-06-11T14:16:28.184+0000", "modified": "2019-06-11T14:16:28.184+0000", "resources": [{"id": 641, "mirId": "MIR:00100274", "urlPattern": "ftp://ftp.embl-heidelberg.de/pub/databases/protein_extras/hssp/{$id}.hssp.bz2", "name": "HSSP at EMBL", "description": "HSSP at EMBL", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "102l", "resourceHomeUrl": "http://swift.cmbi.kun.nl/swift/hssp/", "institution": {"id": 640, "name": "Protein Design Group, European Molecular Biology Laboratory, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}, {"id": 643, "mirId": "MIR:00100458", "urlPattern": "ftp://ftp.cmbi.ru.nl/pub/molbio/data/hssp/{$id}.hssp.bz2", "name": "HSSP at CMBI", "description": "HSSP at CMBI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "102l", "resourceHomeUrl": "ftp://ftp.cmbi.ru.nl/pub/molbio/data/hssp/", "institution": {"id": 642, "name": "Nijmegen Centre for Molecular Life Sciences, CMBI, Nijmegen", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "102l", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 644, "prefix": "myco.tuber", "mirId": "MIR:00000216", "name": "MycoBrowser tuberculosis", "pattern": "^Rv\\d{4}(A|B|c)?$", "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria tuberculosis information.", "created": "2019-06-11T14:16:28.639+0000", "modified": "2019-06-11T14:16:28.639+0000", "resources": [{"id": 646, "mirId": "MIR:00100275", "urlPattern": "http://tuberculist.epfl.ch/quicksearch.php?gene+name={$id}", "name": "MycoBrowser tuberculosis at Global Health Institute", "description": "MycoBrowser tuberculosis at Global Health Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Rv1908c", "resourceHomeUrl": "http://tuberculist.epfl.ch/", "institution": {"id": 645, "name": "Global Health Institute, Lausanne", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Rv1908c", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 647, "prefix": "myco.lepra", "mirId": "MIR:00000217", "name": "MycoBrowser leprae", "pattern": "^ML\\w+$", "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria leprae information.", "created": "2019-06-11T14:16:28.887+0000", "modified": "2019-06-11T14:16:28.887+0000", "resources": [{"id": 648, "mirId": "MIR:00100276", "urlPattern": "http://mycobrowser.epfl.ch/leprosysearch.php?gene+name={$id}", "name": "MycoBrowser leprae at Global Health Institute", "description": "MycoBrowser leprae at Global Health Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ML0224", "resourceHomeUrl": "http://mycobrowser.epfl.ch/leprosy.html", "institution": {"id": 645, "name": "Global Health Institute, Lausanne", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ML0224", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 649, "prefix": "myco.marinum", "mirId": "MIR:00000218", "name": "MycoBrowser marinum", "pattern": "^MMAR\\_\\d+$", "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria marinum information.", "created": "2019-06-11T14:16:29.087+0000", "modified": "2019-06-11T14:16:29.087+0000", "resources": [{"id": 650, "mirId": "MIR:00100277", "urlPattern": "http://mycobrowser.epfl.ch/marinosearch.php?gene+name={$id}", "name": "MycoBrowser marinum at Global Health Institute", "description": "MycoBrowser marinum at Global Health Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MMAR_2462", "resourceHomeUrl": "http://mycobrowser.epfl.ch/marinolist.html", "institution": {"id": 645, "name": "Global Health Institute, Lausanne", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MMAR_2462", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 651, "prefix": "myco.smeg", "mirId": "MIR:00000219", "name": "MycoBrowser smegmatis", "pattern": "^MSMEG\\w+$", "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria smegmatis information.", "created": "2019-06-11T14:16:29.310+0000", "modified": "2019-06-11T14:16:29.310+0000", "resources": [{"id": 652, "mirId": "MIR:00100278", "urlPattern": "http://mycobrowser.epfl.ch/smegmasearch.php?gene+name={$id}", "name": "MycoBrowser smegmatis at Global Health Institute", "description": "MycoBrowser smegmatis at Global Health Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MSMEG_3769", "resourceHomeUrl": "http://mycobrowser.epfl.ch/smegmalist.html", "institution": {"id": 645, "name": "Global Health Institute, Lausanne", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MSMEG_3769", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 653, "prefix": "orphanet", "mirId": "MIR:00000220", "name": "Orphanet", "pattern": "^\\d+$", "description": "Orphanet is a reference portal for information on rare diseases and orphan drugs. It\u2019s aim is to help improve the diagnosis, care and treatment of patients with rare diseases.", "created": "2019-06-11T14:16:29.544+0000", "modified": "2019-06-11T14:16:29.544+0000", "resources": [{"id": 655, "mirId": "MIR:00100279", "urlPattern": "http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng=EN&Expert={$id}", "name": "Orphanet at Inserm", "description": "Orphanet at Inserm", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "85163", "resourceHomeUrl": "http://www.orpha.net/consor/", "institution": {"id": 654, "name": "Inserm, H\u00f4pital Broussais, Paris", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}, {"id": 656, "mirId": "MIR:00100701", "urlPattern": "http://orphanet.bio2rdf.org/describe/?url=http://bio2rdf.org/orphanet:{$id}", "name": "Bio2RDF", "description": "Bio2RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "85163", "resourceHomeUrl": "http://orphanet.bio2rdf.org/fct", "institution": {"id": 33, "name": "Bio2RDF.org", "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "85163", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 657, "prefix": "orthodb", "mirId": "MIR:00000221", "name": "OrthoDB", "pattern": "^\\w+$", "description": "OrthoDB presents a catalog of eukaryotic orthologous protein-coding genes across vertebrates, arthropods, and fungi. Orthology refers to the last common ancestor of the species under consideration, and thus OrthoDB explicitly delineates orthologs at each radiation along the species phylogeny. The database of orthologs presents available protein descriptors, together with Gene Ontology and InterPro attributes, which serve to provide general descriptive annotations of the orthologous groups", "created": "2019-06-11T14:16:29.860+0000", "modified": "2019-06-11T14:16:29.860+0000", "resources": [{"id": 659, "mirId": "MIR:00100280", "urlPattern": "http://cegg.unige.ch/orthodb/results?searchtext={$id}", "name": "OrthoDB at Swiss Institute of Bioinformatics", "description": "OrthoDB at Swiss Institute of Bioinformatics", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q9P0K8", "resourceHomeUrl": "http://cegg.unige.ch/orthodb4", "institution": {"id": 658, "name": "Department of Genetic Medicine and Development, Swiss Institute of Bioinformatics, Geneva", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Q9P0K8", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 660, "prefix": "peroxibase", "mirId": "MIR:00000222", "name": "Peroxibase", "pattern": "^\\d+$", "description": "Peroxibase provides access to peroxidase sequences from all kingdoms of life, and provides a series of bioinformatics tools and facilities suitable for analysing these sequences.", "created": "2019-06-11T14:16:30.097+0000", "modified": "2019-06-11T14:16:30.097+0000", "resources": [{"id": 662, "mirId": "MIR:00100281", "urlPattern": "http://peroxibase.toulouse.inra.fr/browse/process/view_perox.php?id={$id}", "name": "Peroxibase at University of Geneva", "description": "Peroxibase at University of Geneva", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "5282", "resourceHomeUrl": "http://peroxibase.toulouse.inra.fr/", "institution": {"id": 661, "name": "Department of Plant Biology, University of Geneva, Geneva", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5282", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 663, "prefix": "phylomedb", "mirId": "MIR:00000223", "name": "PhylomeDB", "pattern": "^\\w+$", "description": "PhylomeDB is a database of complete phylomes derived for different genomes within a specific taxonomic range. It provides alignments, phylogentic trees and tree-based orthology predictions for all encoded proteins.", "created": "2019-06-11T14:16:30.326+0000", "modified": "2019-06-11T14:16:30.326+0000", "resources": [{"id": 665, "mirId": "MIR:00100282", "urlPattern": "http://phylomedb.org/?seqid={$id}", "name": "PhylomeDB at Centro de Investigaci\u00f3n Pr\u00edncipe Felipe", "description": "PhylomeDB at Centro de Investigaci\u00f3n Pr\u00edncipe Felipe", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Phy000CLXM_RAT", "resourceHomeUrl": "http://phylomedb.org/", "institution": {"id": 664, "name": "Centre for Genomic Regulation", "homeUrl": "https://www.crg.eu", "description": "The Centre for Genomic Regulation (CRG) is an international biomedical research institute of excellence, created in December 2000. It is a non-profit foundation funded by the Catalan Government through the Departments of Business & Knowledge, the Spanish Ministry of Science, Innovation & Universities, the \"la Caixa\" Banking Foundation, and includes the participation of Pompeu Fabra University.", "rorId": "https://ror.org/03wyzt892", "location": {"countryCode": "ES", "countryName": "Spain"}}, "location": {"countryCode": "ES", "countryName": "Spain"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Phy000CLXM_RAT", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 666, "prefix": "pmap.substratedb", "mirId": "MIR:00000224", "name": "SubstrateDB", "pattern": "^\\d+$", "description": "The Proteolysis MAP is a resource for proteolytic networks and pathways. PMAP is comprised of five databases, linked together in one environment. SubstrateDB contains molecular information on documented protease substrates.", "created": "2019-06-11T14:16:30.547+0000", "modified": "2019-06-11T14:16:30.547+0000", "resources": [{"id": 668, "mirId": "MIR:00100283", "urlPattern": "http://substrate.burnham.org/protein/annotation/{$id}/html", "name": "SubstrateDB at The Burnham Institute for Medical Research", "description": "SubstrateDB at The Burnham Institute for Medical Research", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1915", "resourceHomeUrl": "http://substrate.burnham.org/", "institution": {"id": 667, "name": "The Center on Proteolytic Pathways, The Cancer Research Center and The Inflammatory and Infectious Disease Center, The Burnham Institute for Medical Research, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1915", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 669, "prefix": "pmap.cutdb", "mirId": "MIR:00000225", "name": "CutDB", "pattern": "^\\d+$", "description": "The Proteolysis MAP is a resource for proteolytic networks and pathways. PMAP is comprised of five databases, linked together in one environment. CutDB is a database of individual proteolytic events (cleavage sites).", "created": "2019-06-11T14:16:30.793+0000", "modified": "2019-06-11T14:16:30.793+0000", "resources": [{"id": 670, "mirId": "MIR:00100284", "urlPattern": "http://cutdb.burnham.org/relation/show/{$id}", "name": "CutDB at The Burnham Institute for Medical Research", "description": "CutDB at The Burnham Institute for Medical Research", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "25782", "resourceHomeUrl": "http://cutdb.burnham.org", "institution": {"id": 667, "name": "The Center on Proteolytic Pathways, The Cancer Research Center and The Inflammatory and Infectious Disease Center, The Burnham Institute for Medical Research, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "25782", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 671, "prefix": "protclustdb", "mirId": "MIR:00000226", "name": "ProtClustDB", "pattern": "^\\w+$", "description": "ProtClustDB is a collection of related protein sequences (clusters) consisting of Reference Sequence proteins encoded by complete genomes. This database contains both curated and non-curated clusters.", "created": "2019-06-11T14:16:31.086+0000", "modified": "2019-06-11T14:16:31.086+0000", "resources": [{"id": 672, "mirId": "MIR:00100285", "urlPattern": "https://www.ncbi.nlm.nih.gov/sites/entrez?Db=proteinclusters&Cmd=DetailsSearch&Term={$id}", "name": "ProtClustDB at NCBI", "description": "ProtClustDB at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "O80725", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/proteinclusters?db=proteinclusters", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "O80725", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 673, "prefix": "pmp", "mirId": "MIR:00000227", "name": "PMP", "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])$", "description": "The number of known protein sequences exceeds those of experimentally solved protein structures. Homology (or comparative) modeling methods make use of experimental protein structures to build models for evolutionary related proteins. The Protein Model Portal (PMP) provides a single portal to access these models, which are accessed through their UniProt identifiers.", "created": "2019-06-11T14:16:31.282+0000", "modified": "2019-06-11T14:16:31.282+0000", "resources": [{"id": 675, "mirId": "MIR:00100286", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100286/{$id}", "name": "PMP at University of Basel", "description": "PMP at University of Basel", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q0VCA6", "resourceHomeUrl": "http://www.proteinmodelportal.org/", "institution": {"id": 674, "name": "Biozentrum, University of Basel, Basel", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": true, "deprecationDate": "2020-03-03T06:27:49.602+0000"}], "sampleId": "Q0VCA6", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 676, "prefix": "protonet.proteincard", "mirId": "MIR:00000228", "name": "ProtoNet ProteinCard", "pattern": "^\\d+$", "description": "ProtoNet provides automatic hierarchical classification of protein sequences in the UniProt database, partitioning the protein space into clusters of similar proteins. This collection references protein information.", "created": "2019-06-11T14:16:31.529+0000", "modified": "2019-06-11T14:16:31.529+0000", "resources": [{"id": 678, "mirId": "MIR:00100287", "urlPattern": "http://www.protonet.cs.huji.ac.il/requested/protein_card.php?protein_id={$id}", "name": "ProtoNet at Hebrew University", "description": "ProtoNet at Hebrew University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "16941567", "resourceHomeUrl": "http://www.protonet.cs.huji.ac.il/", "institution": {"id": 677, "name": "Hebrew University, Jerusalem", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IL", "countryName": "Israel"}}, "location": {"countryCode": "IL", "countryName": "Israel"}, "deprecated": false, "deprecationDate": null}], "sampleId": "16941567", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 679, "prefix": "protonet.cluster", "mirId": "MIR:00000229", "name": "ProtoNet Cluster", "pattern": "^\\d+$", "description": "ProtoNet provides automatic hierarchical classification of protein sequences in the UniProt database, partitioning the protein space into clusters of similar proteins. This collection references cluster information.", "created": "2019-06-11T14:16:31.786+0000", "modified": "2019-06-11T14:16:31.786+0000", "resources": [{"id": 680, "mirId": "MIR:00100288", "urlPattern": "http://www.protonet.cs.huji.ac.il/requested/cluster_card.php?cluster={$id}", "name": "ProtoNet at Hebrew University", "description": "ProtoNet at Hebrew University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4349895", "resourceHomeUrl": "http://www.protonet.cs.huji.ac.il/", "institution": {"id": 677, "name": "Hebrew University, Jerusalem", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IL", "countryName": "Israel"}}, "location": {"countryCode": "IL", "countryName": "Israel"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4349895", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 681, "prefix": "rebase", "mirId": "MIR:00000230", "name": "REBASE", "pattern": "^\\d+$", "description": "REBASE is a comprehensive database of information about restriction enzymes, DNA methyltransferases and related proteins involved in the biological process of restriction-modification (R-M). It contains fully referenced information about recognition and cleavage sites, isoschizomers, neoschizomers, commercial availability, methylation sensitivity, crystal and sequence data.", "created": "2019-06-11T14:16:32.004+0000", "modified": "2019-06-11T14:16:32.004+0000", "resources": [{"id": 683, "mirId": "MIR:00100289", "urlPattern": "http://rebase.neb.com/rebase/enz/{$id}.html", "name": "REBASE at New England Biolabs", "description": "REBASE at New England Biolabs", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "101", "resourceHomeUrl": "http://rebase.neb.com/rebase/", "institution": {"id": 682, "name": "New England Biolabs, Ipswich, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "101", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 684, "prefix": "swiss-model", "mirId": "MIR:00000231", "name": "SWISS-MODEL Repository", "pattern": "^\\w+$", "description": "The SWISS-MODEL Repository is a database of 3D protein structure models generated by the SWISS-MODEL homology-modelling pipeline for UniProtKB protein sequences.", "created": "2019-06-11T14:16:32.267+0000", "modified": "2019-06-11T14:16:32.267+0000", "resources": [{"id": 686, "mirId": "MIR:00100290", "urlPattern": "https://swissmodel.expasy.org/repository/uniprot/{$id}", "name": "SWISS-MODEL at SIB Swiss Institute of Bioinformatics", "description": "SWISS-MODEL at SIB Swiss Institute of Bioinformatics", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "P23298", "resourceHomeUrl": "https://swissmodel.expasy.org", "institution": {"id": 685, "name": "Biozentrum, University of Basel and SIB Swiss Institute of Bioinformatics, Basel", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P23298", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 687, "prefix": "vectorbase", "mirId": "MIR:00000232", "name": "VectorBase", "pattern": "^\\D{4}\\d{6}(\\-\\D{2})?$", "description": "VectorBase is an NIAID-funded Bioinformatic Resource Center focused on invertebrate vectors of human pathogens. VectorBase annotates and curates vector genomes providing a web accessible integrated resource for the research community. Currently, VectorBase contains genome information for three mosquito species: Aedes aegypti, Anopheles gambiae and Culex quinquefasciatus, a body louse Pediculus humanus and a tick species Ixodes scapularis.", "created": "2019-06-11T14:16:32.515+0000", "modified": "2019-06-11T14:16:32.515+0000", "resources": [{"id": 688, "mirId": "MIR:00100291", "urlPattern": "https://www.vectorbase.org/search/site/{$id}?&site=\"Genome\"", "name": "Vectorbase at EMBL-EBI", "description": "Vectorbase at EMBL-EBI", "official": true, "providerCode": "ebi", "sampleId": "ISCW007415", "resourceHomeUrl": "https://www.vectorbase.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ISCW007415", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 694, "prefix": "cco", "mirId": "MIR:00000234", "name": "Cell Cycle Ontology", "pattern": "^CCO\\:\\w+$", "description": "The Cell Cycle Ontology is an application ontology that captures and integrates detailed knowledge on the cell cycle process.", "created": "2019-06-11T14:16:33.213+0000", "modified": "2019-06-11T14:16:33.213+0000", "resources": [{"id": 695, "mirId": "MIR:00100294", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/cco/terms?obo_id=CCO:{$id}", "name": "Cell Cycle Ontology through OLS", "description": "Cell Cycle Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0000003", "resourceHomeUrl": "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=CCO", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000003", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 696, "prefix": "mirbase.mature", "mirId": "MIR:00000235", "name": "miRBase mature sequence", "pattern": "MIMAT\\d{7}", "description": "The miRBase Sequence Database is a searchable database of published miRNA sequences and annotation. This collection refers specifically to the mature miRNA sequence.", "created": "2019-06-11T14:16:33.415+0000", "modified": "2019-06-11T14:16:33.415+0000", "resources": [{"id": 697, "mirId": "MIR:00100296", "urlPattern": "http://www.mirbase.org/cgi-bin/mature.pl?mature_acc={$id}", "name": "miRBase", "description": "miRBase", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MIMAT0000001", "resourceHomeUrl": "http://www.mirbase.org/", "institution": {"id": 264, "name": "Faculty of Life Sciences, University of Manchester", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MIMAT0000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 698, "prefix": "nextprot", "mirId": "MIR:00000236", "name": "nextProt", "pattern": "^NX_\\w+", "description": "neXtProt is a resource on human proteins, and includes information such as proteins\u2019 function, subcellular location, expression, interactions and role in diseases.", "created": "2019-06-11T14:16:33.634+0000", "modified": "2019-06-11T14:16:33.634+0000", "resources": [{"id": 700, "mirId": "MIR:00100300", "urlPattern": "https://www.nextprot.org/db/entry/{$id}", "name": "nextProt at Swiss Institute of Bioinformatics", "description": "nextProt at Swiss Institute of Bioinformatics", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "NX_O00165", "resourceHomeUrl": "https://www.nextprot.org/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "NX_O00165", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 701, "prefix": "cas", "mirId": "MIR:00000237", "name": "CAS", "pattern": "^\\d{1,7}\\-\\d{2}\\-\\d$", "description": "CAS (Chemical Abstracts Service) is a division of the American Chemical Society and is the producer of comprehensive databases of chemical information.", "created": "2019-06-11T14:16:33.869+0000", "modified": "2019-06-11T14:16:33.869+0000", "resources": [{"id": 703, "mirId": "MIR:00100301", "urlPattern": "https://commonchemistry.cas.org/detail?ref={$id}", "name": "CAS Common Chemistry", "description": "CAS Common Chemistry", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "50-00-0", "resourceHomeUrl": "https://commonchemistry.cas.org/", "institution": {"id": 702, "name": "CAS American Chemical Society", "homeUrl": "https://www.cas.org", "description": "CAS is a global organization of expert scientists, technologists, and business leaders with a successful and extended history of delivering scientific information opportunities.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 2454, "mirId": "MIR:00000732", "urlPattern": "https://scholia.toolforge.org/cas/{$id}", "name": "Scholia", "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", "official": false, "providerCode": "scholia", "sampleId": "50-00-0", "resourceHomeUrl": "https://scholia.toolforge.org/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "50-00-0", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 704, "prefix": "kegg.genome", "mirId": "MIR:00000238", "name": "KEGG Genome", "pattern": "^(T0\\d+|\\w{3,5})$", "description": "KEGG Genome is a collection of organisms whose genomes have been completely sequenced.", "created": "2019-06-11T14:16:34.113+0000", "modified": "2019-06-11T14:16:34.113+0000", "resources": [{"id": 706, "mirId": "MIR:00100303", "urlPattern": "http://www.kegg.jp/entry/{$id}", "name": "KEGG Genome Database", "description": "KEGG Genome Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "eco", "resourceHomeUrl": "http://www.genome.jp/kegg/catalog/org_list.html", "institution": {"id": 705, "name": "Kyoto University Bioinformatics Center, Kyoto", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "eco", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 707, "prefix": "kegg.metagenome", "mirId": "MIR:00000239", "name": "KEGG Metagenome", "pattern": "^T3\\d+$", "description": "The KEGG Metagenome Database collection information on environmental samples (ecosystems) of genome sequences for multiple species.", "created": "2019-06-11T14:16:34.345+0000", "modified": "2019-06-11T14:16:34.345+0000", "resources": [{"id": 708, "mirId": "MIR:00100304", "urlPattern": "http://www.kegg.jp/entry/{$id}", "name": "KEGG Metagenome Database", "description": "KEGG Metagenome Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "T30002", "resourceHomeUrl": "http://www.genome.jp/kegg/catalog/org_list3.html", "institution": {"id": 705, "name": "Kyoto University Bioinformatics Center, Kyoto", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "T30002", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 709, "prefix": "narcis", "mirId": "MIR:00000240", "name": "NARCIS", "pattern": "^oai\\:cwi\\.nl\\:\\d+$", "description": "NARCIS provides access to scientific information, including (open access) publications from the repositories of all the Dutch universities, KNAW, NWO and a number of research institutes, which is not referenced in other citation databases.", "created": "2019-06-11T14:16:34.542+0000", "modified": "2019-06-11T14:16:34.542+0000", "resources": [{"id": 711, "mirId": "MIR:00100306", "urlPattern": "http://www.narcis.nl/publication/RecordID/{$id}", "name": "NARCIS at The Hague", "description": "NARCIS at The Hague", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "oai:cwi.nl:4725", "resourceHomeUrl": "http://www.narcis.nl/?Language=en", "institution": {"id": 710, "name": "NARCIS, Royal Netherlands Academy of Science and Arts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "oai:cwi.nl:4725", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 712, "prefix": "jcsd", "mirId": "MIR:00000241", "name": "Japan Chemical Substance Dictionary", "pattern": "^J\\d{1,3}(\\.\\d{3})?(\\.\\d{1,3})?[A-Za-z]$", "description": "The Japan Chemical Substance Dictionary is an organic compound dictionary database prepared by the Japan Science and Technology Agency (JST).", "created": "2019-06-11T14:16:34.772+0000", "modified": "2019-06-11T14:16:34.772+0000", "resources": [{"id": 714, "mirId": "MIR:00100307", "urlPattern": "http://jglobal.jst.go.jp/en/redirect?Nikkaji_No={$id}", "name": "Japan Chemical Substance Dictionary", "description": "Japan Chemical Substance Dictionary", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "J55.713G", "resourceHomeUrl": "http://jglobal.jst.go.jp/en/", "institution": {"id": 713, "name": "Japan Science and Technology Agency", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "J55.713G", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 715, "prefix": "pw", "mirId": "MIR:00000242", "name": "Pathway Ontology", "pattern": "^PW:\\d{7}$", "description": "The Pathway Ontology captures information on biological networks, the relationships between netweorks and the alterations or malfunctioning of such networks within a hierarchical structure. The five main branches of the ontology are: classic metabolic pathways, regulatory, signaling, drug, and disease pathwaysfor complex human conditions.", "created": "2019-06-11T14:16:35.052+0000", "modified": "2019-06-11T14:16:35.052+0000", "resources": [{"id": 717, "mirId": "MIR:00100309", "urlPattern": "http://rgd.mcw.edu/rgdweb/ontology/annot.html?acc_id=PW:{$id}", "name": "Pathway Ontology at Rat Genome Database", "description": "Pathway Ontology at Rat Genome Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0000208", "resourceHomeUrl": "http://rgd.mcw.edu/rgdweb/ontology/search.html", "institution": {"id": 716, "name": "Medical College of Wisconsin, Wisconsin", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 718, "mirId": "MIR:00100310", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/pw/terms?obo_id=PW:{$id}", "name": "Pathway Ontology through OLS", "description": "Pathway Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0000208", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/pw", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 720, "mirId": "MIR:00100311", "urlPattern": "http://purl.bioontology.org/ontology/PW/PW:{$id}", "name": "Pathway Ontology through BioPortal", "description": "Pathway Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0000208", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PW", "institution": {"id": 719, "name": "National Center for Biomedical Ontology, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000208", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 721, "prefix": "insdc.sra", "mirId": "MIR:00000243", "name": "Sequence Read Archive", "pattern": "^[SED]R[APRSXZ]\\d+$", "description": "The Sequence Read Archive (SRA) stores raw sequencing data from the next generation of sequencing platforms Data submitted to SRA. It is organized using a metadata model consisting of six objects: study, sample, experiment, run, analysis and submission. The SRA study contains high-level information including goals of the study and literature references, and may be linked to the INSDC BioProject database.", "created": "2019-06-11T14:16:35.560+0000", "modified": "2019-06-11T14:16:35.560+0000", "resources": [{"id": 722, "mirId": "MIR:00100312", "urlPattern": "https://www.ncbi.nlm.nih.gov/sra/{$id}", "name": "Sequence Read Archive at NCBI", "description": "Sequence Read Archive at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "SRX000007", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sra", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 723, "mirId": "MIR:00100313", "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", "name": "European Nucleotide Archive (ENA)", "description": "European Nucleotide Archive (ENA)", "official": false, "providerCode": "ebi", "sampleId": "SRX000007", "resourceHomeUrl": "https://www.ebi.ac.uk/ena", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 724, "mirId": "MIR:00100314", "urlPattern": "http://trace.ddbj.nig.ac.jp/DRASearch/experiment?acc={$id}", "name": "DDBJ Sequence Read Archive (DRA)", "description": "DDBJ Sequence Read Archive (DRA)", "official": false, "providerCode": "ddbj", "sampleId": "SRX000007", "resourceHomeUrl": "http://trace.ddbj.nig.ac.jp/dra/", "institution": {"id": 121, "name": "DNA Data Bank of Japan, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SRX000007", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 725, "prefix": "scretf", "mirId": "MIR:00000244", "name": "ScerTF", "pattern": "^\\w+$", "description": "ScerTF is a database of position weight matrices (PWMs) for transcription factors in Saccharomyces species. It identifies a single matrix for each TF that best predicts in vivo data, providing metrics related to the performance of that matrix in accurately representing the DNA binding specificity of the annotated transcription factor.", "created": "2019-06-11T14:16:35.987+0000", "modified": "2019-06-11T14:16:35.987+0000", "resources": [{"id": 727, "mirId": "MIR:00100315", "urlPattern": "http://stormo.wustl.edu/ScerTF/details/{$id}/", "name": "ScerTF at Washington University", "description": "ScerTF at Washington University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "RSC3", "resourceHomeUrl": "http://stormo.wustl.edu/ScerTF/", "institution": {"id": 726, "name": "Department of Genetics, Washington University Medical School, St Louis, Missouri", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "RSC3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 728, "prefix": "pharmgkb.gene", "mirId": "MIR:00000245", "name": "PharmGKB Gene", "pattern": "^PA\\w+$", "description": "The PharmGKB database is a central repository for genetic, genomic, molecular and cellular phenotype data and clinical information about people who have participated in pharmacogenomics research studies. The data includes, but is not limited to, clinical and basic pharmacokinetic and pharmacogenomic research in the cardiovascular, pulmonary, cancer, pathways, metabolic and transporter domains.", "created": "2019-06-11T14:16:36.222+0000", "modified": "2019-06-11T14:16:36.222+0000", "resources": [{"id": 729, "mirId": "MIR:00100316", "urlPattern": "http://www.pharmgkb.org/gene/{$id}", "name": "PharmGKB Gene at Stanford", "description": "PharmGKB Gene at Stanford", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PA131", "resourceHomeUrl": "http://www.pharmgkb.org/", "institution": {"id": 298, "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PA131", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 730, "prefix": "mirnest", "mirId": "MIR:00000246", "name": "miRNEST", "pattern": "^MNEST\\d+$", "description": "miRNEST is a database of animal, plant and virus microRNAs, containing miRNA predictions conducted on Expressed Sequence Tags of animal and plant species.", "created": "2019-06-11T14:16:36.416+0000", "modified": "2019-06-11T14:16:36.416+0000", "resources": [{"id": 732, "mirId": "MIR:00100317", "urlPattern": "http://rhesus.amu.edu.pl/mirnest/copy/details.php?id={$id}", "name": "miRNEST at Adam Mickiewicz University", "description": "miRNEST at Adam Mickiewicz University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MNEST029358", "resourceHomeUrl": "http://rhesus.amu.edu.pl/mirnest/copy/", "institution": {"id": 731, "name": "Institute of Molecular Biology, Adam Mickiewicz University, Poznan", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "PL", "countryName": "Poland"}}, "location": {"countryCode": "PL", "countryName": "Poland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MNEST029358", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 733, "prefix": "napp", "mirId": "MIR:00000247", "name": "NAPP", "pattern": "^\\d+$", "description": "NAPP (Nucleic Acids Phylogenetic Profiling is a clustering method based on conserved noncoding RNA (ncRNA) elements in a bacterial genomes. Short intergenic regions from a reference genome are compared with other genomes to identify RNA rich clusters.", "created": "2019-06-11T14:16:36.669+0000", "modified": "2019-06-11T14:16:36.669+0000", "resources": [{"id": 735, "mirId": "MIR:00100318", "urlPattern": "http://rna.igmors.u-psud.fr/NAPP/Niveau2.php?specie={$id}", "name": "NAPP at CNRS", "description": "NAPP at CNRS", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "351", "resourceHomeUrl": "http://napp.u-psud.fr/", "institution": {"id": 734, "name": "Institut de G\u00e9n\u00e9tique et Microbiologie, UMR 8621, CNRS, Universit\u00e9 Paris Sud, Paris", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "351", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 736, "prefix": "noncodev3", "mirId": "MIR:00000248", "name": "NONCODE v3", "pattern": "^\\d+$", "description": "NONCODE is a database of expression and functional lncRNA (long noncoding RNA) data obtained from microarray studies. LncRNAs have been shown to play key roles in various biological processes such as imprinting control, circuitry controlling pluripotency and differentiation, immune responses and chromosome dynamics. The collection references NONCODE version 3. This was replaced in 2013 by version 4.", "created": "2019-06-11T14:16:36.900+0000", "modified": "2019-06-11T14:16:36.900+0000", "resources": [{"id": 738, "mirId": "MIR:00100319", "urlPattern": "http://www.noncode.org/NONCODERv3/ncrna.php?ncid={$id}", "name": "NONCODE at Chinese Academy of Sciences", "description": "NONCODE at Chinese Academy of Sciences", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "377550", "resourceHomeUrl": "http://www.noncode.org/", "institution": {"id": 737, "name": "Chinese Academy of Sciences", "homeUrl": "http://english.cas.cn/", "description": "The Chinese Academy of Sciences is the linchpin of China\u2019s drive to explore and harness high technology and the natural sciences for the benefit of China and the world. CAS brings together scientists and engineers from China and around the world to address both theoretical and applied problems using world-class scientific and management approaches.", "rorId": "https://ror.org/034t30j35", "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "377550", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 739, "prefix": "virsirna", "mirId": "MIR:00000249", "name": "VIRsiRNA", "pattern": "^virsi\\d+$", "description": "The VIRsiRNA database contains details of siRNA/shRNA which target viral genome regions. It provides efficacy information where available, as well as the siRNA sequence, viral target and subtype, as well as the target genomic region.", "created": "2019-06-11T14:16:37.163+0000", "modified": "2019-06-11T14:16:37.163+0000", "resources": [{"id": 741, "mirId": "MIR:00100320", "urlPattern": "http://crdd.osdd.net/servers/virsirnadb/record.php?details={$id}", "name": "VIRsiRNA at Institute of Microbial Technology", "description": "VIRsiRNA at Institute of Microbial Technology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "virsi1909", "resourceHomeUrl": "http://crdd.osdd.net/servers/virsirnadb", "institution": {"id": 740, "name": "Institute of Microbial Technology, Council of Scientific and Industrial Research (CSIR), Chandigarh, India", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "virsi1909", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 742, "prefix": "elm", "mirId": "MIR:00000250", "name": "ELM", "pattern": "^[A-Za-z_0-9]+$", "description": "Linear motifs are short, evolutionarily plastic components of regulatory proteins. Mainly focused on the eukaryotic sequences,the Eukaryotic Linear Motif resource (ELM) is a database of curated motif classes and instances.", "created": "2019-06-11T14:16:37.386+0000", "modified": "2019-06-11T14:16:37.386+0000", "resources": [{"id": 744, "mirId": "MIR:00100321", "urlPattern": "http://elm.eu.org/elms/elmPages/{$id}.html", "name": "ELM at EMBL (Germany)", "description": "ELM at EMBL (Germany)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CLV_MEL_PAP_1", "resourceHomeUrl": "http://elm.eu.org/", "institution": {"id": 743, "name": "Structural and Computational Biology, European Molecular Biology Laboratory, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CLV_MEL_PAP_1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 745, "prefix": "mimodb", "mirId": "MIR:00000251", "name": "MimoDB", "pattern": "^\\d+$", "description": "MimoDB is a database collecting peptides that have been selected from random peptide libraries based on their ability to bind small compounds, nucleic acids, proteins, cells, tissues and organs. It also stores other information such as the corresponding target, template, library, and structures. As of March 2016, this database was renamed Biopanning Data Bank.", "created": "2019-06-11T14:16:37.622+0000", "modified": "2019-06-11T14:16:37.622+0000", "resources": [{"id": 747, "mirId": "MIR:00100322", "urlPattern": "http://immunet.cn/bdb/index.php/mimoset/{$id}", "name": "BDB at University of Electronic Science and Technology of China", "description": "BDB at University of Electronic Science and Technology of China", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1", "resourceHomeUrl": "http://immunet.cn/bdb/", "institution": {"id": 746, "name": "Key Laboratory for Neuroinformation of Ministry of Education, University of Electronic Science and Technology of China, Sichuan", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 748, "prefix": "sitex", "mirId": "MIR:00000252", "name": "SitEx", "pattern": "^\\d+$", "description": "SitEx is a database containing information on eukaryotic protein functional sites. It stores the amino acid sequence positions in the functional site, in relation to the exon structure of encoding gene This can be used to detect the exons involved in shuffling in protein evolution, or to design protein-engineering experiments.", "created": "2019-06-11T14:16:37.867+0000", "modified": "2019-06-11T14:16:37.867+0000", "resources": [{"id": 750, "mirId": "MIR:00100323", "urlPattern": "http://www-bionet.sscc.ru/sitex/index.php?siteid={$id}", "name": "SitEx at Novosibirsk State University", "description": "SitEx at Novosibirsk State University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1000", "resourceHomeUrl": "http://www-bionet.sscc.ru/sitex/", "institution": {"id": 749, "name": "Novosibirsk State University, Novosibirsk", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "RU", "countryName": "Russian Federation"}}, "location": {"countryCode": "RU", "countryName": "Russian Federation"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 751, "prefix": "bykdb", "mirId": "MIR:00000253", "name": "BYKdb", "pattern": "^[A-Z0-9]+$", "description": "The bacterial tyrosine kinase database (BYKdb) that collects sequences of putative and authentic bacterial tyrosine kinases, providing structural and functional information.", "created": "2019-06-11T14:16:38.105+0000", "modified": "2019-06-11T14:16:38.105+0000", "resources": [{"id": 753, "mirId": "MIR:00100324", "urlPattern": "https://bykdb.ibcp.fr/data/html/annotated/{$id}.html", "name": "BYKdb at CNRS", "description": "BYKdb at CNRS", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "A0A009E7X8", "resourceHomeUrl": "https://bykdb.ibcp.fr/BYKdb/", "institution": {"id": 752, "name": "Unit\u00e9 Bases Mol\u00e9culaires et Structurales des Syst\u00e8mes Infectieux; CNRS - Universit\u00e9 Claude Bernard, Lyon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "A0A009E7X8", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 754, "prefix": "conoserver", "mirId": "MIR:00000254", "name": "Conoserver", "pattern": "^\\d+$", "description": "ConoServer is a database specialized in the sequence and structures of conopeptides, which are peptides expressed by carnivorous marine cone snails.", "created": "2019-06-11T14:16:38.340+0000", "modified": "2019-06-11T14:16:38.340+0000", "resources": [{"id": 755, "mirId": "MIR:00100325", "urlPattern": "http://www.conoserver.org/?page=card&table=protein&id={$id}", "name": "ConoServer at University of Queensland", "description": "ConoServer at University of Queensland", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2639", "resourceHomeUrl": "http://www.conoserver.org/", "institution": {"id": 582, "name": "Institute for Molecular Bioscience, The University of Queensland, Brisbane", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "AU", "countryName": "Australia"}}, "location": {"countryCode": "AU", "countryName": "Australia"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2639", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 756, "prefix": "topfind", "mirId": "MIR:00000255", "name": "TopFind", "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])$", "description": "TopFIND is a database of protein termini, terminus modifications and their proteolytic processing in the species: Homo sapiens, Mus musculus, Arabidopsis thaliana, Saccharomyces cerevisiae and Escherichia coli.", "created": "2019-06-11T14:16:38.521+0000", "modified": "2019-06-11T14:16:38.521+0000", "resources": [{"id": 758, "mirId": "MIR:00100326", "urlPattern": "http://clipserve.clip.ubc.ca/topfind/proteins/{$id}", "name": "TopFind at University of British Columbia", "description": "TopFind at University of British Columbia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q9UKQ2", "resourceHomeUrl": "http://clipserve.clip.ubc.ca/topfind", "institution": {"id": 757, "name": "Department of Oral Biological and Medical Sciences, University of British Columbia, Vancouver", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Q9UKQ2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 759, "prefix": "mipmod", "mirId": "MIR:00000256", "name": "MIPModDB", "pattern": "^\\w+$", "description": "MIPModDb is a database of comparative protein structure models of MIP (Major Intrinsic Protein) family of proteins, identified from complete genome sequence. It provides key information of MIPs based on their sequence and structures.", "created": "2019-06-11T14:16:38.756+0000", "modified": "2019-06-11T14:16:38.756+0000", "resources": [{"id": 761, "mirId": "MIR:00100327", "urlPattern": "http://bioinfo.iitk.ac.in/MIPModDB/result.php?code={$id}", "name": "MIPModDB at Indian Institute of Technology Kanpur", "description": "MIPModDB at Indian Institute of Technology Kanpur", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HOSAPI0399", "resourceHomeUrl": "http://bioinfo.iitk.ac.in/MIPModDB", "institution": {"id": 760, "name": "Department of Biological Sciences and Bioengineering, Indian Institute of Technology Kanpur, Kanpur", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HOSAPI0399", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 762, "prefix": "cellimage", "mirId": "MIR:00000257", "name": "Cell Image Library", "pattern": "^\\d+$", "description": "The Cell: An Image Library\u2122 is a freely accessible, public repository of reviewed and annotated images, videos, and animations of cells from a variety of organisms, showcasing cell architecture, intracellular functionalities, and both normal and abnormal processes.", "created": "2019-06-11T14:16:38.984+0000", "modified": "2019-06-11T14:16:38.984+0000", "resources": [{"id": 764, "mirId": "MIR:00100328", "urlPattern": "http://cellimagelibrary.org/images/{$id}", "name": "Cell Image Library at American Society for Cell Biology", "description": "Cell Image Library at American Society for Cell Biology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "24801", "resourceHomeUrl": "http://cellimagelibrary.org/", "institution": {"id": 763, "name": "National Center for Microscopy and Imaging Research", "homeUrl": "https://ncmir.ucsd.edu", "description": "The mission of NCMIR is to develop technologies to bridge understanding of biological systems between the gross anatomical and molecular scales and to make these technologies broadly available to biomedical researchers. NCMIR provides expertise, infrastructure, technological development, and an environment in which new information about the 3D ultrastructure of tissues, cells, and macromolecular complexes may be accurately and easily obtained and analyzed.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "24801", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 765, "prefix": "combine.specifications", "mirId": "MIR:00000258", "name": "COMBINE specifications", "pattern": "^\\w+(\\-|\\.|\\w)*$", "description": "The 'COmputational Modeling in BIology' NEtwork (COMBINE) is an initiative to coordinate the development of the various community standards and formats for computational models, initially in Systems Biology and related fields. This collection pertains to specifications of the standard formats developed by the Computational Modeling in Biology Network.", "created": "2019-06-11T14:16:39.210+0000", "modified": "2019-06-11T14:16:39.210+0000", "resources": [{"id": 766, "mirId": "MIR:00100329", "urlPattern": "https://co.mbine.org/specifications/{$id}", "name": "COMBINE at EBI", "description": "COMBINE at EBI", "official": false, "providerCode": "ebi", "sampleId": "sbgn.er.level-1.version-1.2", "resourceHomeUrl": "https://co.mbine.org/standards/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "sbgn.er.level-1.version-1.2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 767, "prefix": "cabri", "mirId": "MIR:00000261", "name": "CABRI", "pattern": "^([A-Za-z]+)?(\\_)?([A-Za-z-]+)\\:([A-Za-z0-9 ]+)$", "description": "CABRI (Common Access to Biotechnological Resources and Information) is an online service where users can search a number of European Biological Resource Centre catalogues. It lists the availability of a particular organism or genetic resource and defines the set of technical specifications and procedures which should be used to handle it.", "created": "2019-06-11T14:16:39.396+0000", "modified": "2019-06-11T14:16:39.396+0000", "resources": [{"id": 769, "mirId": "MIR:00100334", "urlPattern": "http://www.cabri.org/CABRI/srs-bin/wgetz?-e+-page+EntryPage+[{$id}]", "name": "CABRI Cell Lines catalogue in Genova (SRS)", "description": "CABRI Cell Lines catalogue in Genova (SRS)", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "dsmz_mutz-id:ACC 291", "resourceHomeUrl": "http://www.cabri.org/", "institution": {"id": 768, "name": "National Cancer Research Institute of Genova, Genova", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}, {"id": 771, "mirId": "MIR:00100335", "urlPattern": "http://www.be.cabri.org/CABRI/srs-bin/wgetz?-e+-page+EntryPage+[{$id}]", "name": "CABRI Cell Lines catalogue in Brussels (SRS)", "description": "CABRI Cell Lines catalogue in Brussels (SRS)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "dsmz_mutz-id:ACC 291", "resourceHomeUrl": "http://www.be.cabri.org/", "institution": {"id": 770, "name": "BCCM", "homeUrl": "http://bccm.belspo.be/", "description": "he BCCM consortium has grown to become one of the most important culture collections in the world, both in terms of the size and quality of the collections (bacteria, yeasts, moulds, plasmids, diatoms, DNA libraries) and its expertise. Not only does the consortium keep more than 200,000 quality controlled, characterised and documented units of biological material, but it also offers its expertise through services and partnership projects.", "rorId": null, "location": {"countryCode": "BE", "countryName": "Belgium"}}, "location": {"countryCode": "BE", "countryName": "Belgium"}, "deprecated": false, "deprecationDate": null}], "sampleId": "dsmz_mutz-id:ACC 291", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 772, "prefix": "huge", "mirId": "MIR:00000263", "name": "HUGE", "pattern": "^KIAA\\d{4}$", "description": "The Human Unidentified Gene-Encoded (HUGE) protein database contains results from sequence analysis of human novel large (>4 kb) cDNAs identified in the Kazusa cDNA sequencing project.", "created": "2019-06-11T14:16:39.763+0000", "modified": "2019-06-11T14:16:39.763+0000", "resources": [{"id": 774, "mirId": "MIR:00100339", "urlPattern": "http://www.kazusa.or.jp/huge/gfpage/{$id}/", "name": "HUGE at Kazusa DNA Research Institute", "description": "HUGE at Kazusa DNA Research Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "KIAA0001", "resourceHomeUrl": "http://www.kazusa.or.jp/huge/", "institution": {"id": 773, "name": "Kazusa DNA Research Institute, Chiba", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "KIAA0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 775, "prefix": "bindingdb", "mirId": "MIR:00000264", "name": "BindingDB", "pattern": "^\\w\\d+$", "description": "BindingDB is the first public database of protein-small molecule affinity data.", "created": "2019-06-11T14:16:39.982+0000", "modified": "2019-06-11T14:16:39.982+0000", "resources": [{"id": 777, "mirId": "MIR:00100340", "urlPattern": "http://www.bindingdb.org/compact/{$id}", "name": "BindingDB", "description": "BindingDB", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "e999", "resourceHomeUrl": "https://www.bindingdb.org", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "e999", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 839, "prefix": "dictybase.gene", "mirId": "MIR:00000286", "name": "Dictybase Gene", "pattern": "^DDB_G\\d+$", "description": "The dictyBase database provides data on the model organism Dictyostelium discoideum and related species. It contains the complete genome sequence, ESTs, gene models and functional annotations. This collection references gene information.", "created": "2019-06-11T14:16:45.247+0000", "modified": "2019-06-11T14:16:45.247+0000", "resources": [{"id": 841, "mirId": "MIR:00100367", "urlPattern": "http://dictybase.org/gene/{$id}", "name": "Dictybase Gene at Northwestern University", "description": "Dictybase Gene at Northwestern University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "DDB_G0267522", "resourceHomeUrl": "http://dictybase.org/", "institution": {"id": 840, "name": "Northwestern University Biomedical Informatics Center and Center for Genetic Medicine, Chicago, Illinois", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DDB_G0267522", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 778, "prefix": "string", "mirId": "MIR:00000265", "name": "STRING", "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])|([0-9][A-Za-z0-9]{3})$", "description": "STRING (Search Tool for Retrieval of Interacting Genes/Proteins) is a database of known and predicted protein interactions.\r\nThe interactions include direct (physical) and indirect (functional) associations; they are derived from four sources:Genomic Context, High-throughput Experiments,(Conserved) Coexpression, Previous Knowledge. STRING quantitatively integrates interaction data from these sources for a large number of organisms, and transfers information between these organisms where applicable.", "created": "2019-06-11T14:16:40.213+0000", "modified": "2019-06-11T14:16:40.213+0000", "resources": [{"id": 779, "mirId": "MIR:00100341", "urlPattern": "http://string.embl.de/interactions/{$id}", "name": "STRING at Heidelberg", "description": "STRING at Heidelberg", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "P53350", "resourceHomeUrl": "http://string.embl.de/", "institution": {"id": 605, "name": "European Molecular Biology Laboratory, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}, {"id": 780, "mirId": "MIR:00100342", "urlPattern": "http://string-db.org/interactions/{$id}", "name": "STRING Mirror at Heidelberg", "description": "STRING Mirror at Heidelberg", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "P53350", "resourceHomeUrl": "http://string-db.org/", "institution": {"id": 605, "name": "European Molecular Biology Laboratory, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P53350", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 781, "prefix": "stitch", "mirId": "MIR:00000266", "name": "STITCH", "pattern": "^\\w{14}$", "description": "STITCH is a resource to explore known and predicted interactions of chemicals and proteins. Chemicals are linked to other chemicals and proteins by evidence derived from experiments, databases and the literature.", "created": "2019-06-11T14:16:40.524+0000", "modified": "2019-06-11T14:16:40.524+0000", "resources": [{"id": 782, "mirId": "MIR:00100343", "urlPattern": "http://stitch.embl.de/interactions/{$id}", "name": "STITCH", "description": "STITCH", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BQJCRHHNABKAKU", "resourceHomeUrl": "http://stitch.embl.de/", "institution": {"id": 605, "name": "European Molecular Biology Laboratory, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BQJCRHHNABKAKU", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 783, "prefix": "atcvet", "mirId": "MIR:00000267", "name": "Anatomical Therapeutic Chemical Vetinary", "pattern": "^Q[A-Z0-9]+$", "description": "The ATCvet system for the classification of veterinary medicines is based on the same overall principles as the ATC system for substances used in human medicine. In ATCvet systems, preparations are divided into groups, according to their therapeutic use. First, they are divided into 15 anatomical groups (1st level), classified as QA-QV in the ATCvet system, on the basis of their main therapeutic use.", "created": "2019-06-11T14:16:40.712+0000", "modified": "2019-06-11T14:16:40.712+0000", "resources": [{"id": 784, "mirId": "MIR:00100344", "urlPattern": "http://www.whocc.no/atcvet/atcvet_index/?code={$id}", "name": "Anatomical Therapeutic Chemical Vet Index at WHO", "description": "Anatomical Therapeutic Chemical Vet Index at WHO", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "QJ51RV02", "resourceHomeUrl": "http://www.whocc.no/atcvet/atcvet_index/", "institution": {"id": 295, "name": "World Health Organisation", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "QJ51RV02", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 785, "prefix": "phenolexplorer", "mirId": "MIR:00000268", "name": "Phenol-Explorer", "pattern": "^\\d+$", "description": "Phenol-Explorer is an electronic database on polyphenol content in foods. Polyphenols form a wide group of natural antioxidants present in a large number of foods and beverages. They contribute to food characteristics such as taste, colour or shelf-life. They also participate in the prevention of several major chronic diseases such as cardiovascular diseases, diabetes, cancers, neurodegenerative diseases or osteoporosis.", "created": "2019-06-11T14:16:40.928+0000", "modified": "2019-06-11T14:16:40.928+0000", "resources": [{"id": 787, "mirId": "MIR:00100345", "urlPattern": "http://phenol-explorer.eu/foods/{$id}", "name": "Phenol-Explorer Database on Phenol content of foods", "description": "Phenol-Explorer Database on Phenol content of foods", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "75", "resourceHomeUrl": "http://www.phenol-explorer.eu/foods/", "institution": {"id": 786, "name": "INRA and University of Alberta", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "75", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 788, "prefix": "snomedct", "mirId": "MIR:00000269", "name": "SNOMED CT", "pattern": "^(\\w+)?\\d+$", "description": "SNOMED CT (Systematized Nomenclature of Medicine -- Clinical Terms), is a systematically organized computer processable collection of medical terminology covering most areas of clinical information such as diseases, findings, procedures, microorganisms, pharmaceuticals, etc.", "created": "2019-06-11T14:16:41.184+0000", "modified": "2019-06-11T14:16:41.184+0000", "resources": [{"id": 790, "mirId": "MIR:00100405", "urlPattern": "http://www.snomedbrowser.com/Codes/Details/{$id}", "name": "SNOMED-CT at The National Pathology Exchange", "description": "SNOMED-CT at The National Pathology Exchange", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "284196006", "resourceHomeUrl": "http://www.snomedbrowser.com/", "institution": {"id": 789, "name": "The Health Informatics Service, NHS, West Yorkshire", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "284196006", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 791, "prefix": "mesh.2012", "mirId": "MIR:00000270", "name": "MeSH 2012", "pattern": "^[A-Za-z0-9]+$", "description": "MeSH (Medical Subject Headings) is the National Library of Medicine's controlled vocabulary thesaurus. It consists of sets of terms naming descriptors in a hierarchical structure that permits searching at various levels of specificity. This thesaurus is used by NLM for indexing articles from biomedical journals, cataloging of books, documents, etc. This collection references MeSH terms published in 2012.", "created": "2019-06-11T14:16:41.417+0000", "modified": "2019-06-11T14:16:41.417+0000", "resources": [{"id": 793, "mirId": "MIR:00100349", "urlPattern": "http://www.nlm.nih.gov/cgi/mesh/2012/MB_cgi?mode=&index={$id}&view=expanded", "name": "MeSH at National Library of Medicine", "description": "MeSH at National Library of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "17186", "resourceHomeUrl": "http://www.nlm.nih.gov/mesh/", "institution": {"id": 792, "name": "U.S. National Library of Medicine, National Institute of Health, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "17186", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 797, "prefix": "cdpd", "mirId": "MIR:00000272", "name": "Canadian Drug Product Database", "pattern": "^\\d+$", "description": "The Canadian Drug Product Database (DPD) contains product specific information on drugs approved for use in Canada, and includes human pharmaceutical and biological drugs, veterinary drugs and disinfectant products. This information includes 'brand name', 'route of administration' and a Canadian 'Drug Identification Number' (DIN).", "created": "2019-06-11T14:16:41.852+0000", "modified": "2019-06-11T14:16:41.852+0000", "resources": [{"id": 799, "mirId": "MIR:00100351", "urlPattern": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/info.do?lang=eng&code={$id}", "name": "Canadian Drug Identification Number at Health Canada", "description": "Canadian Drug Identification Number at Health Canada", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "63250", "resourceHomeUrl": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/index-eng.jsp", "institution": {"id": 798, "name": "Health Canada, Ottawa, Ontario", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "63250", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 800, "prefix": "massbank", "mirId": "MIR:00000273", "name": "MassBank", "pattern": "^[A-Z]{2}[A-Z0-9][0-9]{5}$", "description": "MassBank is a federated database of reference spectra from different instruments, including high-resolution mass spectra of small metabolites (<3000 Da).", "created": "2019-06-11T14:16:42.071+0000", "modified": "2019-06-11T14:16:42.071+0000", "resources": [{"id": 802, "mirId": "MIR:00100353", "urlPattern": "http://www.massbank.jp/RecordDisplay?id={$id}", "name": "MassBank in Japan", "description": "MassBank in Japan", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "PB000166", "resourceHomeUrl": "http://www.massbank.jp", "institution": {"id": 801, "name": "The MassBank Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}, {"id": 804, "mirId": "MIR:00100666", "urlPattern": "https://massbank.eu/MassBank/RecordDisplay?id={$id}", "name": "MassBank in Europe", "description": "MassBank in Europe", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PB000166", "resourceHomeUrl": "https://massbank.eu/", "institution": {"id": 803, "name": "NORMAN Network and The MassBank Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PB000166", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 805, "prefix": "gmd", "mirId": "MIR:00000274", "name": "Golm Metabolome Database", "pattern": "^([0-9a-fA-F]){8}(-([0-9a-fA-F]){4}){3}-([0-9a-fA-F]){12}$", "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. This collection references metabolite information, relating the biologically active substance to metabolic pathways or signalling phenomena.", "created": "2019-06-11T14:16:42.514+0000", "modified": "2019-06-11T14:16:42.514+0000", "resources": [{"id": 807, "mirId": "MIR:00100354", "urlPattern": "http://gmd.mpimp-golm.mpg.de/Metabolites/{$id}.aspx", "name": "Golm Metabolome Database at Max Planck Institute of Molecular Plant Physiology", "description": "Golm Metabolome Database at Max Planck Institute of Molecular Plant Physiology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "68513255-fc44-4041-bc4b-4fd2fae7541d", "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", "institution": {"id": 806, "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "68513255-fc44-4041-bc4b-4fd2fae7541d", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 808, "prefix": "homologene", "mirId": "MIR:00000275", "name": "HomoloGene", "pattern": "^\\d+$", "description": "HomoloGene is a system for automated detection of homologs among the annotated genes of several completely sequenced eukaryotic genomes.", "created": "2019-06-11T14:16:42.733+0000", "modified": "2019-06-11T14:16:42.733+0000", "resources": [{"id": 809, "mirId": "MIR:00100355", "urlPattern": "https://www.ncbi.nlm.nih.gov/homologene/{$id}", "name": "Homologene at NCBI", "description": "Homologene at NCBI", "official": true, "providerCode": "ncbi", "sampleId": "1000", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/homologene/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 810, "mirId": "MIR:00100699", "urlPattern": "http://homologene.bio2rdf.org/describe/?url=http://bio2rdf.org/homologene:{$id}", "name": "Bio2RDF", "description": "Bio2RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1000", "resourceHomeUrl": "http://homologene.bio2rdf.org/fct", "institution": {"id": 33, "name": "Bio2RDF.org", "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 811, "prefix": "umbbd.compound", "mirId": "MIR:00000276", "name": "UM-BBD Compound", "pattern": "^c\\d+$", "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the UM-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. This collection refers to compound information.", "created": "2019-06-11T14:16:42.994+0000", "modified": "2019-06-11T14:16:42.994+0000", "resources": [{"id": 813, "mirId": "MIR:00100357", "urlPattern": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=c&compID={$id}", "name": "Biocatalysis/Biodegradation Database Mirror (Compound) at ETH Zurich", "description": "Biocatalysis/Biodegradation Database Mirror (Compound) at ETH Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "c0001", "resourceHomeUrl": "http://umbbd.ethz.ch/", "institution": {"id": 812, "name": "ETH, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "c0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 814, "prefix": "abs", "mirId": "MIR:00000277", "name": "ABS", "pattern": "^A\\d+$", "description": "The database of Annotated regulatory Binding Sites (from orthologous promoters), ABS, is a public database of known binding sites identified in promoters of orthologous vertebrate genes that have been manually curated from bibliography.", "created": "2019-06-11T14:16:43.224+0000", "modified": "2019-06-11T14:16:43.224+0000", "resources": [{"id": 816, "mirId": "MIR:00100358", "urlPattern": "http://genome.crg.es/datasets/abs2005/entries/{$id}.html", "name": "ABS at IMIM", "description": "ABS at IMIM", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "A0014", "resourceHomeUrl": "http://genome.crg.es/datasets/abs2005/", "institution": {"id": 815, "name": "Institut Municipal d'Investigació Mèdica, Barcelona", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "ES", "countryName": "Spain"}}, "location": {"countryCode": "ES", "countryName": "Spain"}, "deprecated": false, "deprecationDate": null}], "sampleId": "A0014", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 817, "prefix": "apd", "mirId": "MIR:00000278", "name": "APD", "pattern": "^\\d{5}$", "description": "The antimicrobial peptide database (APD) provides information on anticancer, antiviral, antifungal and antibacterial peptides.", "created": "2019-06-11T14:16:43.451+0000", "modified": "2019-06-11T14:16:43.451+0000", "resources": [{"id": 819, "mirId": "MIR:00100359", "urlPattern": "http://aps.unmc.edu/AP/database/query_output.php?ID={$id}", "name": "APD at Nebraska", "description": "APD at Nebraska", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "01001", "resourceHomeUrl": "http://aps.unmc.edu/AP/", "institution": {"id": 818, "name": "Eppley Institute for Research in Cancer and Allied Diseases, University of Nebraska Medical Center, Omaha", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "01001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 820, "prefix": "chemdb", "mirId": "MIR:00000279", "name": "ChemDB", "pattern": "^\\d+$", "description": "ChemDB is a chemical database containing commercially available small molecules, important for use as synthetic building blocks, probes in systems biology and as leads for the discovery of drugs and other useful compounds.", "created": "2019-06-11T14:16:43.696+0000", "modified": "2019-06-11T14:16:43.696+0000", "resources": [{"id": 822, "mirId": "MIR:00100360", "urlPattern": "http://cdb.ics.uci.edu/cgibin/ChemicalDetailWeb.py?chemical_id={$id}", "name": "ChemDB at UC Irvine", "description": "ChemDB at UC Irvine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "3966782", "resourceHomeUrl": "http://cdb.ics.uci.edu/", "institution": {"id": 821, "name": "University of California, Irvine", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3966782", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 823, "prefix": "dpv", "mirId": "MIR:00000280", "name": "DPV", "pattern": "^\\d+$", "description": "Description of Plant Viruses (DPV) provides information about viruses, viroids and satellites of plants, fungi and protozoa. It provides taxonomic information, including brief descriptions of each family and genus, and classified lists of virus sequences. The database also holds detailed information for all sequences of viruses, viroids and satellites of plants, fungi and protozoa that are complete or that contain at least one complete gene.", "created": "2019-06-11T14:16:43.916+0000", "modified": "2019-06-11T14:16:43.916+0000", "resources": [{"id": 825, "mirId": "MIR:00100361", "urlPattern": "http://www.dpvweb.net/dpv/showdpv.php?dpvno={$id}", "name": "DPV at Rothamsted", "description": "DPV at Rothamsted", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "100", "resourceHomeUrl": "http://www.dpvweb.net/", "institution": {"id": 824, "name": "Plant-Pathogen Interactions Division, Wheat Pathogenesis Programme, Rothamsted Research Harpenden, Hertfordshire", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 826, "prefix": "iuphar.receptor", "mirId": "MIR:00000281", "name": "IUPHAR receptor", "pattern": "^\\d+$", "description": "The IUPHAR Compendium details the molecular, biophysical and pharmacological properties of identified mammalian sodium, calcium and potassium channels, as well as the related cyclic nucleotide-modulated ion channels and transient receptor potential channels. It includes information on nomenclature systems, and on inter and intra-species molecular structure variation. This collection references individual receptors or subunits.", "created": "2019-06-11T14:16:44.139+0000", "modified": "2019-06-11T14:16:44.139+0000", "resources": [{"id": 828, "mirId": "MIR:00100362", "urlPattern": "http://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId={$id}", "name": "IUPHAR Receptor at University of Edinburgh", "description": "IUPHAR Receptor at University of Edinburgh", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "101", "resourceHomeUrl": "http://www.guidetopharmacology.org/targets.jsp", "institution": {"id": 827, "name": "Centre for Cardiovascular Science, University of Edinburgh, Edinburgh", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "101", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 829, "prefix": "aceview.worm", "mirId": "MIR:00000282", "name": "Aceview Worm", "pattern": "^[a-z0-9-]+$", "description": "AceView provides a curated sequence representation of all public mRNA sequences (mRNAs from GenBank or RefSeq, and single pass cDNA sequences from dbEST and Trace). These are aligned on the genome and clustered into a minimal number of alternative transcript variants and grouped into genes. In addition, alternative features such as promoters, and expression in tissues is recorded. This collection references C. elegans genes and expression.", "created": "2019-06-11T14:16:44.374+0000", "modified": "2019-06-11T14:16:44.374+0000", "resources": [{"id": 830, "mirId": "MIR:00100363", "urlPattern": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/av.cgi?db=worm&c=Gene&l={$id}", "name": "AceView Worm at NCBI", "description": "AceView Worm at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "aap-1", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/index.html?worm", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "aap-1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 842, "prefix": "imgt.ligm", "mirId": "MIR:00000287", "name": "IMGT LIGM", "pattern": "^M\\d+$", "description": "IMGT, the international ImMunoGeneTics project, is a collection of high-quality integrated databases specialising in Immunoglobulins, T cell receptors and the Major Histocompatibility Complex (MHC) of all vertebrate species. IMGT/LIGM is a comprehensive database of fully annotated sequences of Immunoglobulins and T cell receptors from human and other vertebrates.", "created": "2019-06-11T14:16:45.469+0000", "modified": "2019-06-11T14:16:45.469+0000", "resources": [{"id": 844, "mirId": "MIR:00100369", "urlPattern": "http://genius.embnet.dkfz-heidelberg.de/menu/cgi-bin/srs7.1.3.1/wgetz?-id+4ktAl1fNMTA+-e+[IMGT:'{$id}']", "name": "IMGT LIGM through DKFZ (SRS)", "description": "IMGT LIGM through DKFZ (SRS)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "M94112", "resourceHomeUrl": "http://genius.embnet.dkfz-heidelberg.de/", "institution": {"id": 843, "name": "DKFZ TP3, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}, {"id": 846, "mirId": "MIR:00100428", "urlPattern": "http://www.imgt.org/ligmdb/view?id={$id}", "name": "IMGT LIGM at CNRS", "description": "IMGT LIGM at CNRS", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "M94112", "resourceHomeUrl": "http://www.imgt.org/", "institution": {"id": 845, "name": "CNRS, Montpellier University, Montpellier", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "M94112", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 847, "prefix": "worfdb", "mirId": "MIR:00000288", "name": "Worfdb", "pattern": "^\\w+(\\.\\d+)?", "description": "WOrfDB (Worm ORFeome DataBase) contains data from the cloning of complete set of predicted protein-encoding Open Reading Frames (ORFs) of Caenorhabditis elegans. This collection describes experimentally defined transcript structures of unverified genes through RACE (Rapid Amplification of cDNA Ends).", "created": "2019-06-11T14:16:45.846+0000", "modified": "2019-06-11T14:16:45.846+0000", "resources": [{"id": 849, "mirId": "MIR:00100370", "urlPattern": "http://worfdb.dfci.harvard.edu/index.php?search_type=name&page=showresultrc&race_query={$id}", "name": "Worm Orf DB at Harvard", "description": "Worm Orf DB at Harvard", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "T01B6.1", "resourceHomeUrl": "http://worfdb.dfci.harvard.edu/", "institution": {"id": 848, "name": "Center for Cancer Systems Biology, Harvard Medical School, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "T01B6.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 850, "prefix": "nextdb", "mirId": "MIR:00000289", "name": "NEXTDB", "pattern": "^[A-Za-z0-9]+$", "description": "NextDb is a database that provides information on the expression pattern map of the 100Mb genome of the nematode Caenorhabditis elegans. This was done through EST analysis and systematic whole mount in situ hybridization. Information available includes 5' and 3' ESTs, and in-situ hybridization images of 11,237 cDNA clones.", "created": "2019-06-11T14:16:46.065+0000", "modified": "2019-06-11T14:16:46.065+0000", "resources": [{"id": 852, "mirId": "MIR:00100371", "urlPattern": "http://nematode.lab.nig.ac.jp/db2/ShowCloneInfo.php?clone={$id}", "name": "NEXTDB at Shizuoka", "description": "NEXTDB at Shizuoka", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "6b1", "resourceHomeUrl": "http://nematode.lab.nig.ac.jp/", "institution": {"id": 851, "name": "National Institute of Genetics, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "6b1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 853, "prefix": "soybase", "mirId": "MIR:00000291", "name": "SoyBase", "pattern": "^\\w+(\\-)?\\w+(\\-)?\\w+$", "description": "SoyBase is a repository for curated genetics, genomics and related data resources for soybean.", "created": "2019-06-11T14:16:46.310+0000", "modified": "2019-06-11T14:16:46.310+0000", "resources": [{"id": 855, "mirId": "MIR:00100373", "urlPattern": "http://www.soybase.org/sbt/search/search_results.php?category=SNP&search_term={$id}", "name": "SoyBase at Iowa State University", "description": "SoyBase at Iowa State University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BARC-013845-01256", "resourceHomeUrl": "http://soybase.org/", "institution": {"id": 854, "name": "USDA-ARS-CICGRU, Iowa State University, Iowa", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BARC-013845-01256", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 856, "prefix": "hamap", "mirId": "MIR:00000292", "name": "HAMAP", "pattern": "^MF_\\d+$", "description": "HAMAP is a system that identifies and semi-automatically annotates proteins that are part of well-conserved and orthologous microbial families or subfamilies. These are used to build rules which are used to propagate annotations to member bacterial, archaeal and plastid-encoded protein entries.", "created": "2019-06-11T14:16:46.532+0000", "modified": "2019-06-11T14:16:46.532+0000", "resources": [{"id": 857, "mirId": "MIR:00100374", "urlPattern": "https://hamap.expasy.org/unirule/{$id}", "name": "HAPMAP at Swiss Institute of Bioinformatics", "description": "HAPMAP at Swiss Institute of Bioinformatics", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MF_01400", "resourceHomeUrl": "https://hamap.expasy.org/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MF_01400", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 858, "prefix": "rouge", "mirId": "MIR:00000293", "name": "Rouge", "pattern": "^m\\w+$", "description": "The Rouge protein database contains results from sequence analysis of novel large (>4 kb) cDNAs identified in the Kazusa cDNA sequencing project.", "created": "2019-06-11T14:16:46.721+0000", "modified": "2019-06-11T14:16:46.721+0000", "resources": [{"id": 860, "mirId": "MIR:00100375", "urlPattern": "http://www.kazusa.or.jp/rouge/gfpage/{$id}/", "name": "Rouge at Kazusa DNA Research Institute", "description": "Rouge at Kazusa DNA Research Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "mKIAA4200", "resourceHomeUrl": "http://www.kazusa.or.jp/rouge/", "institution": {"id": 859, "name": "Kazusa DNA Research Institute, Chiba", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "mKIAA4200", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 861, "prefix": "arrayexpress.platform", "mirId": "MIR:00000294", "name": "ArrayExpress Platform", "pattern": "^[AEP]-\\w{4}-\\d+$", "description": "ArrayExpress is a public repository for microarray data, which is aimed at storing MIAME-compliant data in accordance with Microarray Gene Expression Data (MGED) recommendations.This collection references the specific platforms used in the generation of experimental results.", "created": "2019-06-11T14:16:46.944+0000", "modified": "2019-06-11T14:16:46.944+0000", "resources": [{"id": 862, "mirId": "MIR:00100376", "urlPattern": "https://www.ebi.ac.uk/arrayexpress/arrays/{$id}", "name": "ArrayExpress Platform at EBI", "description": "ArrayExpress Platform at EBI", "official": false, "providerCode": "ebi", "sampleId": "A-GEOD-50", "resourceHomeUrl": "https://www.ebi.ac.uk/arrayexpress/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "A-GEOD-50", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 863, "prefix": "cgsc", "mirId": "MIR:00000295", "name": "CGSC Strain", "pattern": "^\\d+$", "description": "The CGSC Database of E. coli genetic information includes genotypes and reference information for the strains in the CGSC collection, the names, synonyms, properties, and map position for genes, gene product information, and information on specific mutations and references to primary literature.", "created": "2019-06-11T14:16:47.138+0000", "modified": "2019-06-11T14:16:47.138+0000", "resources": [{"id": 865, "mirId": "MIR:00100377", "urlPattern": "http://cgsc.biology.yale.edu/Site.php?ID={$id}", "name": "CGSC at Yale university", "description": "CGSC at Yale university", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "74", "resourceHomeUrl": "http://cgsc.biology.yale.edu/index.php", "institution": {"id": 864, "name": "Dept. of Molecular, Cellular, and Developmental Biology, Yale University, Conneticut", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "74", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 866, "prefix": "dragondb.dna", "mirId": "MIR:00000297", "name": "DragonDB DNA", "pattern": "^\\d\\w+$", "description": "DragonDB is a genetic and genomic database for Antirrhinum majus (Snapdragon). This collection refers to DNA sequence information.", "created": "2019-06-11T14:16:47.375+0000", "modified": "2019-06-11T14:16:47.375+0000", "resources": [{"id": 868, "mirId": "MIR:00100379", "urlPattern": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name={$id};class=DNA", "name": "DragonDB DNA at University of British Columbia", "description": "DragonDB DNA at University of British Columbia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "3hB06", "resourceHomeUrl": "http://www.antirrhinum.net/", "institution": {"id": 867, "name": "University of British Columbia, Vancouver", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3hB06", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 869, "prefix": "dragondb.protein", "mirId": "MIR:00000298", "name": "DragonDB Protein", "pattern": "^\\w+$", "description": "DragonDB is a genetic and genomic database for Antirrhinum majus (Snapdragon). This collection refers to protein sequence information.", "created": "2019-06-11T14:16:47.607+0000", "modified": "2019-06-11T14:16:47.607+0000", "resources": [{"id": 870, "mirId": "MIR:00100380", "urlPattern": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name={$id};class=Peptide", "name": "DragonDB Protein at University of British Columbia", "description": "DragonDB Protein at University of British Columbia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AMDEFA", "resourceHomeUrl": "http://www.antirrhinum.net/", "institution": {"id": 867, "name": "University of British Columbia, Vancouver", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AMDEFA", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 871, "prefix": "dragondb.locus", "mirId": "MIR:00000299", "name": "DragonDB Locus", "pattern": "^\\w+$", "description": "DragonDB is a genetic and genomic database for Antirrhinum majus (Snapdragon). This collection refers to Locus information.", "created": "2019-06-11T14:16:47.798+0000", "modified": "2019-06-11T14:16:47.798+0000", "resources": [{"id": 872, "mirId": "MIR:00100381", "urlPattern": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name={$id}&class=Locus", "name": "DragonDB Locus at University of British Columbia", "description": "DragonDB Locus at University of British Columbia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "DEF", "resourceHomeUrl": "http://www.antirrhinum.net/", "institution": {"id": 867, "name": "University of British Columbia, Vancouver", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DEF", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 873, "prefix": "dragondb.allele", "mirId": "MIR:00000300", "name": "DragonDB Allele", "pattern": "^\\w+$", "description": "DragonDB is a genetic and genomic database for Antirrhinum majus (Snapdragon). This collection refers to allele information.", "created": "2019-06-11T14:16:47.981+0000", "modified": "2019-06-11T14:16:47.981+0000", "resources": [{"id": 874, "mirId": "MIR:00100382", "urlPattern": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name={$id}&class=Allele", "name": "DragonDB Allele at University of British Columbia", "description": "DragonDB Allele at University of British Columbia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "cho", "resourceHomeUrl": "http://www.antirrhinum.net/", "institution": {"id": 867, "name": "University of British Columbia, Vancouver", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "cho", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 875, "prefix": "issn", "mirId": "MIR:00000301", "name": "ISSN", "pattern": "^\\d{4}-\\d{3}[\\dX]$", "description": "The International Standard Serial Number (ISSN) is a unique eight-digit number used to identify a print or electronic periodical publication, rather than individual articles or books.", "created": "2019-06-11T14:16:48.189+0000", "modified": "2019-06-11T14:16:48.189+0000", "resources": [{"id": 877, "mirId": "MIR:00100383", "urlPattern": "https://catalog.loc.gov/vwebv/search?searchCode=STNO&searchArg={$id}&searchType=1&recCount=25", "name": "ISSN at Library of Congress", "description": "ISSN at Library of Congress", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0745-4570", "resourceHomeUrl": "http://catalog.loc.gov/webvoy.htm", "institution": {"id": 876, "name": "Library of Congress Online Catalogue, Washington DC", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 879, "mirId": "MIR:00100924", "urlPattern": "https://portal.issn.org/resource/ISSN/{$id}", "name": "ISSN Portal", "description": "ISSN Portal", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "1776-3045", "resourceHomeUrl": "https://portal.issn.org", "institution": {"id": 878, "name": "ISSN International Centre, Paris", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0745-4570", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 880, "prefix": "merops.family", "mirId": "MIR:00000302", "name": "MEROPS Family", "pattern": "^[SCTAGMNU]\\d+$", "description": "The MEROPS database is an information resource for peptidases (also termed proteases, proteinases and proteolytic enzymes) and the proteins that inhibit them. These are hierarchically classified and assigned to a Family on the basis of statistically significant similarities in amino acid sequence. Families thought to be homologous are grouped together in a Clan. This collection references peptidase families.", "created": "2019-06-11T14:16:48.579+0000", "modified": "2019-06-11T14:16:48.579+0000", "resources": [{"id": 881, "mirId": "MIR:00100384", "urlPattern": "http://merops.sanger.ac.uk/cgi-bin/famsum?family={$id}", "name": "Merops Family at Sanger Institute", "description": "Merops Family at Sanger Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "S1", "resourceHomeUrl": "http://merops.sanger.ac.uk/index.htm", "institution": {"id": 482, "name": "Wellcome Trust Sanger Institute, Hinxton", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "S1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 882, "prefix": "mo", "mirId": "MIR:00000303", "name": "MGED Ontology", "pattern": "^\\w+$", "description": "The MGED Ontology (MO) provides terms for annotating all aspects of a microarray experiment from the design of the experiment and array layout, through to the preparation of the biological sample and the protocols used to hybridize the RNA and analyze the data.", "created": "2019-06-11T14:16:48.772+0000", "modified": "2019-06-11T14:16:48.772+0000", "resources": [{"id": 883, "mirId": "MIR:00100385", "urlPattern": "http://purl.bioontology.org/ontology/MO/{$id}", "name": "MGED Ontology at BioPortal", "description": "MGED Ontology at BioPortal", "official": false, "providerCode": "bptl", "sampleId": "ArrayGroup", "resourceHomeUrl": "http://bioportal.bioontology.org/", "institution": {"id": 571, "name": "National Center for Biomedical Ontology, Stanford University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 885, "mirId": "MIR:00100568", "urlPattern": "https://mged.sourceforge.net/ontologies/MGEDontology.php#{$id}", "name": "MGED Ontology at SourceForge", "description": "MGED Ontology at SourceForge", "official": false, "providerCode": "ebi", "sampleId": "ArrayGroup", "resourceHomeUrl": "https://mged.sourceforge.net/ontologies/MGEDontology.php", "institution": {"id": 884, "name": "(Ontology Working Group), European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ArrayGroup", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 886, "prefix": "nasc", "mirId": "MIR:00000304", "name": "NASC code", "pattern": "^(\\w+)?\\d+$", "description": "The Nottingham Arabidopsis Stock Centre (NASC) provides seed and information resources to the International Arabidopsis Genome Programme and the wider research community.", "created": "2019-06-11T14:16:49.131+0000", "modified": "2019-06-11T14:16:49.131+0000", "resources": [{"id": 888, "mirId": "MIR:00100386", "urlPattern": "http://arabidopsis.info/StockInfo?NASC_id={$id}", "name": "NASC at University of Nottingham", "description": "NASC at University of Nottingham", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "N1899", "resourceHomeUrl": "http://arabidopsis.info/", "institution": {"id": 887, "name": "The Nottingham Arabidopsis Stock Centre, University of Nottingham", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "N1899", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 889, "prefix": "niaest", "mirId": "MIR:00000305", "name": "NIAEST", "pattern": "^\\w\\d{4}\\w\\d{2}(\\-[35])?$", "description": "A catalog of mouse genes expressed in early embryos, embryonic and adult stem cells, including 250000 ESTs, was assembled by the NIA (National Institute on Aging) assembled.This collection represents the name and sequence from individual cDNA clones.", "created": "2019-06-11T14:16:49.376+0000", "modified": "2019-06-11T14:16:49.376+0000", "resources": [{"id": 891, "mirId": "MIR:00100387", "urlPattern": "http://lgsun.grc.nia.nih.gov/cgi-bin/pro3?sname1={$id}", "name": "NIAEST at National Institute on Aging", "description": "NIAEST at National Institute on Aging", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "J0705A10", "resourceHomeUrl": "http://lgsun.grc.nia.nih.gov/cDNA/", "institution": {"id": 890, "name": "National Institute on Aging, NIH", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "J0705A10", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 892, "prefix": "pazar", "mirId": "MIR:00000306", "name": "Pazar Transcription Factor", "pattern": "^TF\\w+$", "description": "The PAZAR database unites independently created and maintained data collections of transcription factor and regulatory sequence annotation. It provides information on the sequence and target of individual transcription factors.", "created": "2019-06-11T14:16:49.605+0000", "modified": "2019-06-11T14:16:49.605+0000", "resources": [{"id": 894, "mirId": "MIR:00100388", "urlPattern": "http://www.pazar.info/cgi-bin/tf_search.cgi?geneID={$id}", "name": "Pazar Transcription Factor at University of British Columbia", "description": "Pazar Transcription Factor at University of British Columbia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TF0001053", "resourceHomeUrl": "http://www.pazar.info/", "institution": {"id": 893, "name": "Centre for Molecular Medicine and Therapeutics, University of British Columbia, Vancouver", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TF0001053", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 895, "prefix": "po", "mirId": "MIR:00000307", "name": "Plant Ontology", "pattern": "^PO:\\d+$", "description": "The Plant Ontology is a structured vocabulary and database resource that links plant anatomy, morphology and growth and development to plant genomics data.", "created": "2019-06-11T14:16:49.830+0000", "modified": "2019-06-11T14:16:49.830+0000", "resources": [{"id": 897, "mirId": "MIR:00100389", "urlPattern": "http://www.plantontology.org/amigo/go.cgi?view=details&query=PO:{$id}", "name": "Plant Ontology through Amigo", "description": "Plant Ontology through Amigo", "official": false, "providerCode": "amigo", "sampleId": "0009089", "resourceHomeUrl": "http://www.plantontology.org/", "institution": {"id": 896, "name": "Cold Spring Harbor Laboratory, Cold Spring Harbor, New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 898, "mirId": "MIR:00100390", "urlPattern": "http://purl.bioontology.org/ontology/PO/PO:{$id}", "name": "Plant Ontology through BioPortal", "description": "Plant Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0009089", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 899, "mirId": "MIR:00100676", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/po/terms?obo_id=PO:{$id}", "name": "Plant Ontology through OLS", "description": "Plant Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0009089", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/po", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0009089", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 900, "prefix": "rnamods", "mirId": "MIR:00000308", "name": "RNA Modification Database", "pattern": "^\\d{3}$", "description": "The RNA modification database provides a comprehensive listing of post-transcriptionally modified nucleosides from RNA. The database consists of all RNA-derived ribonucleosides of known structure, including those from established sequence positions, as well as those detected or characterized from hydrolysates of RNA.", "created": "2019-06-11T14:16:50.326+0000", "modified": "2019-06-11T14:16:50.326+0000", "resources": [{"id": 902, "mirId": "MIR:00100391", "urlPattern": "http://mods.rna.albany.edu/mods/modifications/view/{$id}", "name": "RNA Modification Database at University of Utah", "description": "RNA Modification Database at University of Utah", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "101", "resourceHomeUrl": "http://rna-mdb.cas.albany.edu/RNAmods/rnaover.htm", "institution": {"id": 901, "name": "Department of Medicinal Chemistry and Department of Biochemistry, University of Utah, Salt Lake City, Utah", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "101", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 903, "prefix": "treebase", "mirId": "MIR:00000312", "name": "TreeBASE", "pattern": "^TB[1,2]?:[A-Z][a-z]?\\d+$", "description": "TreeBASE is a relational database designed to manage and explore information on phylogenetic relationships. It includes phylogenetic trees and data matrices, together with information about the relevant publication, taxa, morphological and sequence-based characters, and published analyses. Data in TreeBASE are exposed to the public if they are used in a publication that is in press or published in a peer-reviewed scientific journal, etc.", "created": "2019-06-11T14:16:50.556+0000", "modified": "2019-06-11T14:16:50.556+0000", "resources": [{"id": 905, "mirId": "MIR:00100395", "urlPattern": "http://purl.org/phylo/treebase/phylows/study/{$id}?format=html", "name": "TreeBASE (hosted at National Evolutionary Synthesis Center)", "description": "TreeBASE (hosted at National Evolutionary Synthesis Center)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TB2:S1000", "resourceHomeUrl": "http://treebase.org/", "institution": {"id": 904, "name": "Phyloinformatics Research Foundation, Durham, North Carolina", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TB2:S1000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1235, "prefix": "cst.ab", "mirId": "MIR:00000430", "name": "Cell Signaling Technology Antibody", "pattern": "^\\d+$", "description": "Cell Signaling Technology is a commercial organisation which provides a pathway portal to showcase their phospho-antibody products. This collection references antibody products.", "created": "2019-06-11T14:17:18.559+0000", "modified": "2019-06-11T14:17:18.559+0000", "resources": [{"id": 1236, "mirId": "MIR:00100553", "urlPattern": "http://www.cellsignal.com/products/{$id}.html", "name": "CST Antibody at Cell Signaling Technology", "description": "CST Antibody at Cell Signaling Technology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "3305", "resourceHomeUrl": "http://www.cellsignal.com/catalog/index.html", "institution": {"id": 1233, "name": "Cell Signaling Technology, Inc., Danvers, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3305", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 906, "prefix": "tgd", "mirId": "MIR:00000313", "name": "Tetrahymena Genome Database", "pattern": "^TTHERM\\_\\d+$", "description": "The Tetrahymena Genome Database (TGD) Wiki is a database of information about the Tetrahymena thermophila genome sequence. It provides information curated from the literature about each published gene, including a standardized gene name, a link to the genomic locus, gene product annotations utilizing the Gene Ontology, and links to published literature.", "created": "2019-06-11T14:16:50.779+0000", "modified": "2019-06-11T14:16:50.779+0000", "resources": [{"id": 907, "mirId": "MIR:00100396", "urlPattern": "http://ciliate.org/index.php/feature/details/{$id}", "name": "TGD at Stanford University", "description": "TGD at Stanford University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TTHERM_00648910", "resourceHomeUrl": "http://ciliate.org/index.php/", "institution": {"id": 298, "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TTHERM_00648910", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 908, "prefix": "tigrfam", "mirId": "MIR:00000315", "name": "TIGRFAMS", "pattern": "^TIGR\\d+$", "description": "TIGRFAMs is a resource consisting of curated multiple sequence alignments, Hidden Markov Models (HMMs) for protein sequence classification, and associated information designed to support automated annotation of (mostly prokaryotic) proteins.", "created": "2019-06-11T14:16:50.975+0000", "modified": "2019-06-11T14:16:50.975+0000", "resources": [{"id": 910, "mirId": "MIR:00100398", "urlPattern": "http://www.jcvi.org/cgi-bin/tigrfams/HmmReportPage.cgi?acc={$id}", "name": "TIGRFAM at JCVI", "description": "TIGRFAM at JCVI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TIGR00010", "resourceHomeUrl": "http://www.jcvi.org/cgi-bin/tigrfams/Listing.cgi", "institution": {"id": 909, "name": "The Institute for Genomic Research, Rockville, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TIGR00010", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 911, "prefix": "atfdb.family", "mirId": "MIR:00000316", "name": "Animal TFDB Family", "pattern": "^\\w+$", "description": "The Animal Transcription Factor DataBase (AnimalTFDB) classifies TFs in sequenced animal genomes, as well as collecting the transcription co-factors and chromatin remodeling factors of those genomes. This collections refers to transcription factor families, and the species in which they are found.", "created": "2019-06-11T14:16:51.241+0000", "modified": "2019-06-11T14:16:51.241+0000", "resources": [{"id": 913, "mirId": "MIR:00100399", "urlPattern": "http://www.bioguo.org/AnimalTFDB/family.php?fam={$id}", "name": "Animal TFDB at Hubei Bioinformatics & Molecular Imaging Key Laboratory", "description": "Animal TFDB at Hubei Bioinformatics & Molecular Imaging Key Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CUT", "resourceHomeUrl": "http://www.bioguo.org/AnimalTFDB/family_index.php", "institution": {"id": 912, "name": "Hubei Bioinformatics and Molecular Imaging Key Laboratory, Wuhan", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CUT", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 914, "prefix": "iuphar.family", "mirId": "MIR:00000317", "name": "IUPHAR family", "pattern": "^\\d+$", "description": "The IUPHAR Compendium details the molecular, biophysical and pharmacological properties of identified mammalian sodium, calcium and potassium channels, as well as the related cyclic nucleotide-modulated ion channels and the recently described transient receptor potential channels. It includes information on nomenclature systems, and on inter and intra-species molecular structure variation. This collection references families of receptors or subunits.", "created": "2019-06-11T14:16:51.481+0000", "modified": "2019-06-11T14:16:51.481+0000", "resources": [{"id": 916, "mirId": "MIR:00100708", "urlPattern": "http://www.guidetopharmacology.org/GRAC/FamilyDisplayForward?familyId={$id}", "name": "The IUPHAR/BPS Guide to PHARMACOLOGY", "description": "The IUPHAR/BPS Guide to PHARMACOLOGY", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "78", "resourceHomeUrl": "http://www.guidetopharmacology.org/", "institution": {"id": 915, "name": "International Union of Pharmacology, Edinburgh", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "78", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 917, "prefix": "dbg2introns", "mirId": "MIR:00000318", "name": "DBG2 Introns", "pattern": "^\\w{1,2}\\.(\\w{1,2}\\.)?[A-Za-z0-9]+$", "description": "The Database for Bacterial Group II Introns provides a catalogue of full-length, non-redundant group II introns present in bacterial DNA sequences in GenBank.", "created": "2019-06-11T14:16:51.708+0000", "modified": "2019-06-11T14:16:51.708+0000", "resources": [{"id": 919, "mirId": "MIR:00100401", "urlPattern": "http://webapps2.ucalgary.ca/~groupii/cgi-bin/intron.cgi?name={$id}", "name": "Bacterial Group II Introns at University of Calgary", "description": "Bacterial Group II Introns at University of Calgary", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Cu.me.I1", "resourceHomeUrl": "http://webapps2.ucalgary.ca/~groupii/", "institution": {"id": 568, "name": "University of Calgary", "homeUrl": "https://www.ucalgary.ca/", "description": "The University of Calgary is one of Canada\u2019s top comprehensive research universities, combining the best of university tradition with the city of Calgary\u2019s vibrant energy and diversity.", "rorId": "https://ror.org/03yjb2x39", "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Cu.me.I1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 920, "prefix": "sdbs", "mirId": "MIR:00000319", "name": "Spectral Database for Organic Compounds", "pattern": "\\d+$", "description": "The Spectral Database for Organic Compounds (SDBS) is an integrated spectral database system for organic compounds. It provides access to 6 different types of spectra for each compound, including Mass spectrum (EI-MS), a Fourier transform infrared spectrum (FT-IR), and NMR spectra.", "created": "2019-06-11T14:16:51.940+0000", "modified": "2019-06-11T14:16:51.940+0000", "resources": [{"id": 922, "mirId": "MIR:00100402", "urlPattern": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/cre_frame_disp.cgi?sdbsno={$id}", "name": "SDBS at AIST", "description": "SDBS at AIST", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4544", "resourceHomeUrl": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/direct_frame_top.cgi", "institution": {"id": 921, "name": "National Institute of Advanced Industrial Science and Technology (AIST)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4544", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 923, "prefix": "vbase2", "mirId": "MIR:00000320", "name": "Vbase2", "pattern": "^\\w+$", "description": "The database VBASE2 provides germ-line sequences of human and mouse immunoglobulin variable (V) genes.", "created": "2019-06-11T14:16:52.167+0000", "modified": "2019-06-11T14:16:52.167+0000", "resources": [{"id": 925, "mirId": "MIR:00100403", "urlPattern": "http://www.vbase2.org/vgene.php?id={$id}", "name": "Vbase2 at German Research Centre for Biotechnology", "description": "Vbase2 at German Research Centre for Biotechnology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "humIGHV025", "resourceHomeUrl": "http://www.vbase2.org/vbase2.php", "institution": {"id": 924, "name": "Department of Experimental Immunology, German Research Centre for Biotechnology, Braunschweig", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "humIGHV025", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 926, "prefix": "spike.map", "mirId": "MIR:00000321", "name": "SPIKE Map", "pattern": "^spike\\d{5}$", "description": "SPIKE (Signaling Pathways Integrated Knowledge Engine) is a repository that can store, organise and allow retrieval of pathway information in a way that will be useful for the research community. The database currently focuses primarily on pathways describing DNA damage response, cell cycle, programmed cell death and hearing related pathways. Pathways are regularly updated, and additional pathways are gradually added. The complete database and the individual maps are freely exportable in several formats. This collection references pathway maps.", "created": "2019-06-11T14:16:52.396+0000", "modified": "2019-06-11T14:16:52.396+0000", "resources": [{"id": 928, "mirId": "MIR:00100404", "urlPattern": "http://www.cs.tau.ac.il/~spike/maps/{$id}.html", "name": "SPIKE database at Tel Aviv University", "description": "SPIKE database at Tel Aviv University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "spike00001", "resourceHomeUrl": "http://www.cs.tau.ac.il/~spike/", "institution": {"id": 927, "name": "School of Computer Sciences and School of Medicine, Tel Aviv University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IL", "countryName": "Israel"}}, "location": {"countryCode": "IL", "countryName": "Israel"}, "deprecated": false, "deprecationDate": null}], "sampleId": "spike00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 929, "prefix": "metlin", "mirId": "MIR:00000322", "name": "METLIN", "pattern": "^\\d{4}$", "description": "The METLIN (Metabolite and Tandem Mass Spectrometry) Database is a repository of metabolite information as well as tandem mass spectrometry data, providing public access to its comprehensive MS and MS/MS metabolite data. An annotated list of known metabolites and their mass, chemical formula, and structure are available, with each metabolite linked to external resources for further reference and inquiry.", "created": "2019-06-11T14:16:52.640+0000", "modified": "2019-06-11T14:16:52.640+0000", "resources": [{"id": 931, "mirId": "MIR:00100406", "urlPattern": "http://metlin.scripps.edu/metabo_info.php?molid={$id}", "name": "METLIN at Scripps Center, Molecular Biology and Center for Mass Spectrometry, La Jolla", "description": "METLIN at Scripps Center, Molecular Biology and Center for Mass Spectrometry, La Jolla", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1455", "resourceHomeUrl": "http://masspec.scripps.edu/", "institution": {"id": 930, "name": "Scripps Research Institute, San Diego", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1455", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 932, "prefix": "genecards", "mirId": "MIR:00000323", "name": "GeneCards", "pattern": "^[A-Za-z-0-9_]+(\\@)?$", "description": "The GeneCards human gene database stores gene related transcriptomic, genetic, proteomic, functional and disease information. It uses standard nomenclature and approved gene symbols. GeneCards presents a complete summary for each human gene.", "created": "2019-06-11T14:16:52.858+0000", "modified": "2019-06-11T14:16:52.858+0000", "resources": [{"id": 934, "mirId": "MIR:00100407", "urlPattern": "https://www.genecards.org/cgi-bin/carddisp.pl?gene={$id}", "name": "GeneCards at Weizmann Institute", "description": "GeneCards at Weizmann Institute", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "ABL1", "resourceHomeUrl": "http://www.genecards.org/", "institution": {"id": 933, "name": "Department of Molecular Genetics, Weizmann Institute of Science, Rehovot", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IL", "countryName": "Israel"}}, "location": {"countryCode": "IL", "countryName": "Israel"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ABL1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 935, "prefix": "mmrrc", "mirId": "MIR:00000324", "name": "MMRRC", "pattern": "^\\d+$", "description": "The MMRRC database is a repository of available mouse stocks and embryonic stem cell line collections.", "created": "2019-06-11T14:16:53.082+0000", "modified": "2019-06-11T14:16:53.082+0000", "resources": [{"id": 937, "mirId": "MIR:00100414", "urlPattern": "http://www.mmrrc.org/catalog/getSDS.php?mmrrc_id={$id}", "name": "MMRRC at University of North Carolina", "description": "MMRRC at University of North Carolina", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "70", "resourceHomeUrl": "http://www.mmrrc.org/", "institution": {"id": 936, "name": "University of North Carolina", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "70", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 938, "prefix": "umbbd.reaction", "mirId": "MIR:00000325", "name": "UM-BBD Reaction", "pattern": "^r\\d+$", "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the UM-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. This collection refers to reaction information.", "created": "2019-06-11T14:16:53.335+0000", "modified": "2019-06-11T14:16:53.335+0000", "resources": [{"id": 939, "mirId": "MIR:00100416", "urlPattern": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=r&reacID={$id}", "name": "Biocatalysis/Biodegradation Database Mirror (Reaction) at ETH Zurich", "description": "Biocatalysis/Biodegradation Database Mirror (Reaction) at ETH Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "r0001", "resourceHomeUrl": "http://umbbd.ethz.ch/", "institution": {"id": 812, "name": "ETH, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "r0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 940, "prefix": "umbbd.enzyme", "mirId": "MIR:00000326", "name": "UM-BBD Enzyme", "pattern": "^e\\d+$", "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the UM-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. This collection refers to enzyme information.", "created": "2019-06-11T14:16:53.546+0000", "modified": "2019-06-11T14:16:53.546+0000", "resources": [{"id": 941, "mirId": "MIR:00100418", "urlPattern": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=ep&enzymeID={$id}", "name": "Biocatalysis/Biodegradation Database Mirror (Enzyme) at ETH Zurich", "description": "Biocatalysis/Biodegradation Database Mirror (Enzyme) at ETH Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "e0333", "resourceHomeUrl": "http://umbbd.ethz.ch/", "institution": {"id": 812, "name": "ETH, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "e0333", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 942, "prefix": "umbbd.pathway", "mirId": "MIR:00000327", "name": "UM-BBD Pathway", "pattern": "^\\w+$", "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the UM-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. This collection refers to pathway information.", "created": "2019-06-11T14:16:53.741+0000", "modified": "2019-06-11T14:16:53.741+0000", "resources": [{"id": 943, "mirId": "MIR:00100420", "urlPattern": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=p&pathway_abbr={$id}", "name": "Biocatalysis/Biodegradation Database Mirror (Pathway) at ETH Zurich", "description": "Biocatalysis/Biodegradation Database Mirror (Pathway) at ETH Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ala", "resourceHomeUrl": "http://umbbd.ethz.ch/", "institution": {"id": 812, "name": "ETH, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ala", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 944, "prefix": "umbbd.rule", "mirId": "MIR:00000328", "name": "UM-BBD Biotransformation Rule", "pattern": "^bt\\d+$", "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The UM-BBD Pathway Prediction System (PPS) predicts microbial catabolic reactions using substructure searching, a rule-base, and atom-to-atom mapping. The PPS recognizes organic functional groups found in a compound and predicts transformations based on biotransformation rules. These rules are based on reactions found in the UM-BBD database. This collection references those rules.", "created": "2019-06-11T14:16:53.927+0000", "modified": "2019-06-11T14:16:53.927+0000", "resources": [{"id": 945, "mirId": "MIR:00100421", "urlPattern": "http://www.umbbd.ethz.ch/servlets/rule.jsp?rule={$id}", "name": "Biocatalysis/Biodegradation Database Mirror (Biotransformation Rule) at ETH Zurich", "description": "Biocatalysis/Biodegradation Database Mirror (Biotransformation Rule) at ETH Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "bt0001", "resourceHomeUrl": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=allrules", "institution": {"id": 812, "name": "ETH, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "bt0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 946, "prefix": "mirex", "mirId": "MIR:00000329", "name": "mirEX", "pattern": "^\\d+(\\w+)?$", "description": "mirEX is a comprehensive platform for comparative analysis of primary microRNA expression data, storing RT\u2013qPCR-based gene expression profile over seven development stages of Arabidopsis. It also provides RNA structural models, publicly available deep sequencing results and experimental procedure details. This collection provides profile information for a single microRNA over all development stages.", "created": "2019-06-11T14:16:54.147+0000", "modified": "2019-06-11T14:16:54.147+0000", "resources": [{"id": 947, "mirId": "MIR:00100423", "urlPattern": "http://comgen.pl/mirex1/?page=results/record&name={$id}&exref=pp2a&limit=yes", "name": "mirEX at Adam Mickiewicz University", "description": "mirEX at Adam Mickiewicz University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "165a", "resourceHomeUrl": "http://comgen.pl/mirex/?page=home", "institution": {"id": 731, "name": "Institute of Molecular Biology, Adam Mickiewicz University, Poznan", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "PL", "countryName": "Poland"}}, "location": {"countryCode": "PL", "countryName": "Poland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "165a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 948, "prefix": "dictybase.est", "mirId": "MIR:00000330", "name": "Dictybase EST", "pattern": "^DDB\\d+$", "description": "The dictyBase database provides data on the model organism Dictyostelium discoideum and related species. It contains the complete genome sequence, ESTs, gene models and functional annotations. This collection references expressed sequence tag (EST) information.", "created": "2019-06-11T14:16:54.345+0000", "modified": "2019-06-11T14:16:54.345+0000", "resources": [{"id": 949, "mirId": "MIR:00100424", "urlPattern": "http://dictybase.org/db/cgi-bin/feature_page.pl?primary_id={$id}", "name": "Dictybase Gene at Northwestern University", "description": "Dictybase Gene at Northwestern University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "DDB0016567", "resourceHomeUrl": "http://dictybase.org/", "institution": {"id": 840, "name": "Northwestern University Biomedical Informatics Center and Center for Genetic Medicine, Chicago, Illinois", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DDB0016567", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1768, "prefix": "mobidb", "mirId": "MIR:00000637", "name": "MobiDB", "pattern": "^[OPQ][0-9][A-Z0-9]{3}[0-9]|[A-NR-Z][0-9]([A-Z][A-Z0-9]{2}[0-9]){1,2}$", "description": "MobiDB is a database of protein disorder and mobility annotations.", "created": "2019-06-11T14:18:08.223+0000", "modified": "2019-06-11T14:18:08.223+0000", "resources": [{"id": 1770, "mirId": "MIR:00100842", "urlPattern": "https://mobidb.org/{$id}", "name": "MobiDB", "description": "MobiDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "P10636", "resourceHomeUrl": "https://mobidb.org/", "institution": {"id": 1769, "name": "University of Padua", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P10636", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 950, "prefix": "imgt.hla", "mirId": "MIR:00000331", "name": "IMGT HLA", "pattern": "^[A-Z0-9*:]+$", "description": "IMGT, the international ImMunoGeneTics project, is a collection of high-quality integrated databases specialising in Immunoglobulins, T cell receptors and the Major Histocompatibility Complex (MHC) of all vertebrate species. IMGT/HLA is a database for sequences of the human MHC, referred to as HLA. It includes all the official sequences for the WHO Nomenclature Committee For Factors of the HLA System. This collection references allele information through the WHO nomenclature.", "created": "2019-06-11T14:16:54.535+0000", "modified": "2019-06-11T14:16:54.535+0000", "resources": [{"id": 951, "mirId": "MIR:00100425", "urlPattern": "https://www.ebi.ac.uk/cgi-bin/imgt/hla/get_allele.cgi?{$id}", "name": "IMGT HLA at EBI", "description": "IMGT HLA at EBI", "official": false, "providerCode": "ebi", "sampleId": "A*01:01:01:01", "resourceHomeUrl": "https://www.ebi.ac.uk/imgt/hla/allele.html", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "A*01:01:01:01", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 952, "prefix": "bdsc", "mirId": "MIR:00000332", "name": "Bloomington Drosophila Stock Center", "pattern": "^\\d+$", "description": "The Bloomington Drosophila Stock Center collects, maintains and distributes Drosophila melanogaster strains for research.", "created": "2019-06-11T14:16:54.741+0000", "modified": "2019-06-11T14:16:54.741+0000", "resources": [{"id": 954, "mirId": "MIR:00100426", "urlPattern": "https://bdsc.indiana.edu/stocks/{$id}", "name": "BDSC at Indiana University", "description": "BDSC at Indiana University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "33607", "resourceHomeUrl": "https://bdsc.indiana.edu/about/mission.html", "institution": {"id": 953, "name": "Department of Biology, Indiana University, Bloomington", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "33607", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 955, "prefix": "opm", "mirId": "MIR:00000333", "name": "OPM", "pattern": "^[0-9][A-Za-z0-9]{3}$", "description": "The Orientations of Proteins in Membranes (OPM) database provides spatial positions of membrane-bound peptides and proteins of known three-dimensional structure in the lipid bilayer, together with their structural classification, topology and intracellular localization.", "created": "2019-06-11T14:16:54.970+0000", "modified": "2019-06-11T14:16:54.970+0000", "resources": [{"id": 957, "mirId": "MIR:00100427", "urlPattern": "http://opm.phar.umich.edu/protein.php?pdbid={$id}", "name": "OPM at University of Michigan", "description": "OPM at University of Michigan", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1h68", "resourceHomeUrl": "http://opm.phar.umich.edu/", "institution": {"id": 956, "name": "Department of Medicinal Chemistry, College of Pharmacy, University of Michigan", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1h68", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 958, "prefix": "allergome", "mirId": "MIR:00000334", "name": "Allergome", "pattern": "^\\d+$", "description": "Allergome is a repository of data related to all IgE-binding compounds. Its purpose is to collect a list of allergenic sources and molecules by using the widest selection criteria and sources.", "created": "2019-06-11T14:16:55.214+0000", "modified": "2019-06-11T14:16:55.214+0000", "resources": [{"id": 960, "mirId": "MIR:00100429", "urlPattern": "http://www.allergome.org/script/dettaglio.php?id_molecule={$id}", "name": "Allergome at Rome", "description": "Allergome at Rome", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1948", "resourceHomeUrl": "http://www.allergome.org/", "institution": {"id": 959, "name": "Center for Clinical and Experimental Allergology, Rome", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1948", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 961, "prefix": "pombase", "mirId": "MIR:00000335", "name": "PomBase", "pattern": "^S\\w+(\\.)?\\w+(\\.)?$", "description": "PomBase is a model organism database established to provide access to molecular data and biological information for the fission yeast Schizosaccharomyces pombe. It encompasses annotation of genomic sequence and features, comprehensive manual literature curation and genome-wide data sets.", "created": "2019-06-11T14:16:55.438+0000", "modified": "2019-06-11T14:16:55.438+0000", "resources": [{"id": 963, "mirId": "MIR:00100430", "urlPattern": "https://www.pombase.org/gene/{$id}", "name": "PomBase at University of Cambridge", "description": "PomBase at University of Cambridge", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SPCC13B11.01", "resourceHomeUrl": "https://www.pombase.org/", "institution": {"id": 962, "name": "Cambridge Systems Biology Centre, Department of Biochemistry, University of Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SPCC13B11.01", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 964, "prefix": "hpa", "mirId": "MIR:00000336", "name": "HPA", "pattern": "^ENSG\\d{11}$", "description": "The Human Protein Atlas (HPA) is a publicly available database with high-resolution images showing the spatial distribution of proteins in different normal and cancer human cell lines. Primary access to this collection is through Ensembl Gene identifiers.", "created": "2019-06-11T14:16:55.662+0000", "modified": "2019-06-11T14:16:55.662+0000", "resources": [{"id": 966, "mirId": "MIR:00100431", "urlPattern": "http://www.proteinatlas.org/{$id}", "name": "Human Protein Atlas at AlbaNova University", "description": "Human Protein Atlas at AlbaNova University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ENSG00000026508", "resourceHomeUrl": "http://www.proteinatlas.org/", "institution": {"id": 965, "name": "Department of Proteomics, School of Biotechnology, AlbaNova University Center, Stockholm", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "SE", "countryName": "Sweden"}}, "location": {"countryCode": "SE", "countryName": "Sweden"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ENSG00000026508", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 967, "prefix": "jaxmice", "mirId": "MIR:00000337", "name": "JAX Mice", "pattern": "^\\d+$", "description": "JAX Mice is a catalogue of mouse strains supplied by the Jackson Laboratory.", "created": "2019-06-11T14:16:55.877+0000", "modified": "2019-06-11T14:16:55.877+0000", "resources": [{"id": 969, "mirId": "MIR:00100432", "urlPattern": "http://jaxmice.jax.org/strain/{$id}.html", "name": "JAX Mice at Jackson Laboratory", "description": "JAX Mice at Jackson Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "005012", "resourceHomeUrl": "http://jaxmice.jax.org/", "institution": {"id": 968, "name": "The Jackson Laboratory, Sacremento, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "005012", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 970, "prefix": "ubio.namebank", "mirId": "MIR:00000338", "name": "uBio NameBank", "pattern": "^\\d+$", "description": "NameBank is a \"biological name server\" focused on storing names and objectively-derived nomenclatural attributes. NameBank is a repository for all recorded names including scientific names, vernacular (or common names), misspelled names, as well as ad-hoc nomenclatural labels that may have limited context.", "created": "2019-06-11T14:16:56.122+0000", "modified": "2019-06-11T14:16:56.122+0000", "resources": [{"id": 972, "mirId": "MIR:00100433", "urlPattern": "http://www.ubio.org/browser/details.php?namebankID={$id}", "name": "uBio NameBank at The Marine Biological Laboratory", "description": "uBio NameBank at The Marine Biological Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2555646", "resourceHomeUrl": "http://www.ubio.org", "institution": {"id": 971, "name": "Marine Biological Laboratory, Woods Hole, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2555646", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 973, "prefix": "yetfasco", "mirId": "MIR:00000339", "name": "YeTFasCo", "pattern": "^\\w+\\_\\d+(\\.\\d+)?$", "description": "The Yeast Transcription Factor Specificity Compendium (YeTFasCO) is a database of transcription factor specificities for the yeast Saccharomyces cerevisiae in Position Frequency Matrix (PFM) or Position Weight Matrix (PWM) formats.", "created": "2019-06-11T14:16:56.366+0000", "modified": "2019-06-11T14:16:56.366+0000", "resources": [{"id": 975, "mirId": "MIR:00100434", "urlPattern": "http://yetfasco.ccbr.utoronto.ca/showPFM.php?mot={$id}", "name": "YeTFasCo at University of Toronto", "description": "YeTFasCo at University of Toronto", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "YOR172W_571.0", "resourceHomeUrl": "http://yetfasco.ccbr.utoronto.ca/", "institution": {"id": 974, "name": "Department of Molecular Genetics, Terrence Donnelly Centre for Cellular and Biomolecular Research, University of Toronto, Toronto", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "YOR172W_571.0", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 976, "prefix": "tarbase", "mirId": "MIR:00000340", "name": "TarBase", "pattern": "^[a-z]{3}\\-(mir|let|lin)\\-\\w+(\\-\\w+\\-\\w+)?", "description": "TarBase stores microRNA (miRNA) information for miRNA\u2013gene interactions, as well as miRNA- and gene-related facts to information specific to the interaction and the experimental validation methodologies used.", "created": "2019-06-11T14:16:56.599+0000", "modified": "2019-06-11T14:16:56.599+0000", "resources": [{"id": 978, "mirId": "MIR:00100713", "urlPattern": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index&mirnas={$id}", "name": "TarBase v7 at University of Thessaly", "description": "TarBase v7 at University of Thessaly", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "hsa-let-7a-2-3p", "resourceHomeUrl": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index", "institution": {"id": 977, "name": "DIANA-Lab, Department of Electrical & Computer Engineering, University of Thessaly", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GR", "countryName": "Greece"}}, "location": {"countryCode": "GR", "countryName": "Greece"}, "deprecated": false, "deprecationDate": null}], "sampleId": "hsa-let-7a-2-3p", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 979, "prefix": "charprot", "mirId": "MIR:00000341", "name": "CharProt", "pattern": "^CH_\\d+$", "description": "CharProt is a database of biochemically characterized proteins designed to support automated annotation pipelines. Entries are annotated with gene name, symbol and various controlled vocabulary terms, including Gene Ontology terms, Enzyme Commission number and TransportDB accession.", "created": "2019-06-11T14:16:56.827+0000", "modified": "2019-06-11T14:16:56.827+0000", "resources": [{"id": 981, "mirId": "MIR:00100436", "urlPattern": "http://www.jcvi.org/charprotdb/index.cgi/view/{$id}", "name": "CharProt at JCVI", "description": "CharProt at JCVI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CH_001923", "resourceHomeUrl": "http://www.jcvi.org/charprotdb", "institution": {"id": 980, "name": "J Craig Venter institute, Rockville, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CH_001923", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 982, "prefix": "oma.protein", "mirId": "MIR:00000342", "name": "OMA Protein", "pattern": "^[A-Z0-9]{5}\\d+$", "description": "OMA (Orthologous MAtrix) is a database that identifies orthologs among publicly available, complete genome sequences. It identifies orthologous relationships which can be accessed either group-wise, where all group members are orthologous to all other group members, or on a sequence-centric basis, where for a given protein all its orthologs in all other species are displayed. This collection references individual protein records.", "created": "2019-06-11T14:16:57.058+0000", "modified": "2019-06-11T14:16:57.058+0000", "resources": [{"id": 984, "mirId": "MIR:00100437", "urlPattern": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayEntry&p1={$id}", "name": "OMA Protein through OMA browser at ETH Zurich", "description": "OMA Protein through OMA browser at ETH Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HUMAN16963", "resourceHomeUrl": "https://omabrowser.org/cgi-bin/gateway.pl", "institution": {"id": 983, "name": "ETH Zurich, Computer Science, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HUMAN16963", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 985, "prefix": "oma.grp", "mirId": "MIR:00000343", "name": "OMA Group", "pattern": "^[A-Z]+$", "description": "OMA (Orthologous MAtrix) is a database that identifies orthologs among publicly available, complete genome sequences. It identifies orthologous relationships which can be accessed either group-wise, where all group members are orthologous to all other group members, or on a sequence-centric basis, where for a given protein all its orthologs in all other species are displayed. This collection references groupings of orthologs.", "created": "2019-06-11T14:16:57.285+0000", "modified": "2019-06-11T14:16:57.285+0000", "resources": [{"id": 986, "mirId": "MIR:00100438", "urlPattern": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayGroup&p1={$id}", "name": "OMA Group through OMA browser at ETH Zurich", "description": "OMA Group through OMA browser at ETH Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LCSCCPN", "resourceHomeUrl": "https://omabrowser.org/cgi-bin/gateway.pl", "institution": {"id": 983, "name": "ETH Zurich, Computer Science, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LCSCCPN", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 987, "prefix": "ncbiprotein", "mirId": "MIR:00000344", "name": "NCBI Protein", "pattern": "^(\\w+\\d+(\\.\\d+)?)|(NP_\\d+)$", "description": "The Protein database is a collection of sequences from several sources, including translations from annotated coding regions in GenBank, RefSeq and TPA, as well as records from SwissProt, PIR, PRF, and PDB.", "created": "2019-06-11T14:16:57.477+0000", "modified": "2019-06-11T14:16:57.477+0000", "resources": [{"id": 988, "mirId": "MIR:00100439", "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}", "name": "NCBI Protein at NCBI", "description": "NCBI Protein at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "CAA71118.1", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/protein", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CAA71118.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 989, "prefix": "genpept", "mirId": "MIR:00000345", "name": "GenPept", "pattern": "^\\w{3}\\d{5}(\\.\\d+)?$", "description": "The GenPept database is a collection of sequences based on translations from annotated coding regions in GenBank.", "created": "2019-06-11T14:16:57.671+0000", "modified": "2019-06-11T14:16:57.671+0000", "resources": [{"id": 990, "mirId": "MIR:00100440", "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}?report=genpept", "name": "GenPept at NCBI", "description": "GenPept at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "CAA71118.1", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/protein", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CAA71118.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 991, "prefix": "unigene", "mirId": "MIR:00000346", "name": "UniGene", "pattern": "^\\d+$", "description": "A UniGene entry is a set of transcript sequences that appear to come from the same transcription locus (gene or expressed pseudogene), together with information on protein similarities, gene expression, cDNA clone reagents, and genomic location.", "created": "2019-06-11T14:16:57.856+0000", "modified": "2019-06-11T14:16:57.856+0000", "resources": [{"id": 993, "mirId": "MIR:00100441", "urlPattern": "http://www.ncbi.nlm.nih.gov/UniGene/clust.cgi?UGID={$id}", "name": "UniGene at NCBI", "description": "UniGene at NCBI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4900", "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/unigene", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4900", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 994, "prefix": "bitterdb.rec", "mirId": "MIR:00000347", "name": "BitterDB Receptor", "pattern": "^\\d+$", "description": "BitterDB is a database of compounds reported to taste bitter to humans. The compounds can be searched by name, chemical structure, similarity to other bitter compounds, association with a particular human bitter taste receptor, and so on. The database also contains information on mutations in bitter taste receptors that were shown to influence receptor activation by bitter compounds. The aim of BitterDB is to facilitate studying the chemical features associated with bitterness. This collection references receptors.", "created": "2019-06-11T14:16:58.089+0000", "modified": "2019-06-11T14:16:58.089+0000", "resources": [{"id": 996, "mirId": "MIR:00100442", "urlPattern": "http://bitterdb.agri.huji.ac.il/Receptor.php?id={$id}", "name": "BitterDB Receptor at The Hebrew University of Jerusalem", "description": "BitterDB Receptor at The Hebrew University of Jerusalem", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1", "resourceHomeUrl": "http://bitterdb.agri.huji.ac.il/dbbitter.php", "institution": {"id": 995, "name": "The Robert H Smith Faculty of Agriculture, Food and Environment, The Institute of Biochemistry, Food Science and Nutrition, The Hebrew University of Jerusalem, Rehovot", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IL", "countryName": "Israel"}}, "location": {"countryCode": "IL", "countryName": "Israel"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 997, "prefix": "bitterdb.cpd", "mirId": "MIR:00000348", "name": "BitterDB Compound", "pattern": "^\\d+$", "description": "BitterDB is a database of compounds reported to taste bitter to humans. The compounds can be searched by name, chemical structure, similarity to other bitter compounds, association with a particular human bitter taste receptor, and so on. The database also contains information on mutations in bitter taste receptors that were shown to influence receptor activation by bitter compounds. The aim of BitterDB is to facilitate studying the chemical features associated with bitterness. This collection references compounds.", "created": "2019-06-11T14:16:58.347+0000", "modified": "2019-06-11T14:16:58.347+0000", "resources": [{"id": 998, "mirId": "MIR:00100443", "urlPattern": "http://bitterdb.agri.huji.ac.il/bitterdb/compound.php?id={$id}", "name": "BitterDB Compound at The Hebrew University of Jerusalem", "description": "BitterDB Compound at The Hebrew University of Jerusalem", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "46", "resourceHomeUrl": "http://bitterdb.agri.huji.ac.il/dbbitter.php", "institution": {"id": 995, "name": "The Robert H Smith Faculty of Agriculture, Food and Environment, The Institute of Biochemistry, Food Science and Nutrition, The Hebrew University of Jerusalem, Rehovot", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IL", "countryName": "Israel"}}, "location": {"countryCode": "IL", "countryName": "Israel"}, "deprecated": false, "deprecationDate": null}], "sampleId": "46", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 999, "prefix": "bioproject", "mirId": "MIR:00000349", "name": "BioProject", "pattern": "^PRJ[DEN][A-Z]\\d+$", "description": "BioProject provides an organizational framework to access metadata about research projects and the data from the projects that are deposited into different databases. It provides information about a project\u2019s scope, material, objectives, funding source and general relevance categories.", "created": "2019-06-11T14:16:58.543+0000", "modified": "2019-06-11T14:16:58.543+0000", "resources": [{"id": 1001, "mirId": "MIR:00100444", "urlPattern": "http://trace.ddbj.nig.ac.jp/BPSearch/bioproject?acc={$id}", "name": "BioProject at DNA Data Bank of Japan", "description": "BioProject at DNA Data Bank of Japan", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PRJDB3", "resourceHomeUrl": "http://trace.ddbj.nig.ac.jp/bioproject/", "institution": {"id": 1000, "name": "DNA Data Bank of Japan, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}, {"id": 1002, "mirId": "MIR:00100445", "urlPattern": "https://www.ncbi.nlm.nih.gov/bioproject?term={$id}", "name": "BioProject at NCBI", "description": "BioProject at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "PRJDB3", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/bioproject", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1003, "mirId": "MIR:00100446", "urlPattern": "https://www.ebi.ac.uk/ena/browser/view/{$id}", "name": "BioProject at European Nucleotide Archive (ENA)", "description": "BioProject at European Nucleotide Archive (ENA)", "official": false, "providerCode": "ebi", "sampleId": "PRJDB3", "resourceHomeUrl": "https://www.ebi.ac.uk/ena/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PRJDB3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1004, "prefix": "biosample", "mirId": "MIR:00000350", "name": "BioSample", "pattern": "^SAM[NED](\\w)?\\d+$", "description": "The BioSample Database stores information about biological samples used in molecular experiments, such as sequencing, gene expression or proteomics. It includes reference samples, such as cell lines, which are repeatedly used in experiments. Accession numbers for the reference samples will be exchanged with a similar database at NCBI, and DDBJ (Japan). Record access may be affected due to different release cycles and inter-institutional synchronisation.", "created": "2019-06-11T14:16:59.017+0000", "modified": "2019-06-11T14:16:59.017+0000", "resources": [{"id": 1005, "mirId": "MIR:00100447", "urlPattern": "https://www.ebi.ac.uk/biosamples/sample/{$id}", "name": "BioSamples Database at EBI", "description": "BioSamples Database at EBI", "official": true, "providerCode": "ebi", "sampleId": "SAMEA2397676", "resourceHomeUrl": "https://www.ebi.ac.uk/biosamples/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1006, "mirId": "MIR:00100706", "urlPattern": "http://www.ncbi.nlm.nih.gov/biosample?term={$id}", "name": "BioSample at NCBI", "description": "BioSample at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "SAMN00000002", "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/biosample", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1008, "mirId": "MIR:00100707", "urlPattern": "http://trace.ddbj.nig.ac.jp/BSSearch/biosample?acc={$id}", "name": "BioSample at DNA Data Bank of Japan", "description": "BioSample at DNA Data Bank of Japan", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SAMD00005257", "resourceHomeUrl": "http://trace.ddbj.nig.ac.jp/biosample/", "institution": {"id": 1007, "name": "Institution DNA Data Bank of Japan, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SAMEA2397676", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1009, "prefix": "piroplasma", "mirId": "MIR:00000351", "name": "PiroplasmaDB", "pattern": "^TA\\d+$", "description": "PiroplasmaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:59.494+0000", "modified": "2019-06-11T14:16:59.494+0000", "resources": [{"id": 1011, "mirId": "MIR:00100448", "urlPattern": "http://piroplasmadb.org/piro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", "name": "PiroplasmaBD at EuPathDB", "description": "PiroplasmaBD at EuPathDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TA14985", "resourceHomeUrl": "http://piroplasmadb.org/", "institution": {"id": 1010, "name": "Center for Tropical & Emerging Global Diseases, University of Georgia, Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TA14985", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1012, "prefix": "unite", "mirId": "MIR:00000352", "name": "Unite", "pattern": "^UDB\\d{6}$", "description": "UNITE is a fungal rDNA internal transcribed spacer (ITS) sequence database. It focuses on high-quality ITS sequences generated from fruiting bodies collected and identified by experts and deposited in public herbaria. Entries may be supplemented with metadata on describing locality, habitat, soil, climate, and interacting taxa.", "created": "2019-06-11T14:16:59.723+0000", "modified": "2019-06-11T14:16:59.723+0000", "resources": [{"id": 1014, "mirId": "MIR:00100449", "urlPattern": "http://unite.ut.ee/bl_forw.php?nimi={$id}", "name": "Unite at University of Tartu", "description": "Unite at University of Tartu", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "UDB000691", "resourceHomeUrl": "http://unite.ut.ee/", "institution": {"id": 1013, "name": "Institute of Botany, University of Tartu, Tartu", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "EE", "countryName": "Estonia"}}, "location": {"countryCode": "EE", "countryName": "Estonia"}, "deprecated": false, "deprecationDate": null}], "sampleId": "UDB000691", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1015, "prefix": "ncim", "mirId": "MIR:00000353", "name": "NCIm", "pattern": "^C\\d+$", "description": "NCI Metathesaurus (NCIm) is a wide-ranging biomedical terminology database that covers most terminologies used by NCI for clinical care, translational and basic research, and public information and administrative activities. It integrates terms and definitions from different terminologies, including NCI Thesaurus, however the representation is not identical.", "created": "2019-06-11T14:16:59.945+0000", "modified": "2019-06-11T14:16:59.945+0000", "resources": [{"id": 1016, "mirId": "MIR:00100450", "urlPattern": "http://ncim.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20MetaThesaurus&code={$id}", "name": "NCIm at National Cancer Institue", "description": "NCIm at National Cancer Institue", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "C0026339", "resourceHomeUrl": "http://ncim.nci.nih.gov/", "institution": {"id": 442, "name": "National Cancer Institute, Center for Bioinformatics, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C0026339", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1017, "prefix": "proglyc", "mirId": "MIR:00000354", "name": "ProGlycProt", "pattern": "^[A-Z]C\\d{1,3}$", "description": "ProGlycProt (Prokaryotic Glycoprotein) is a repository of bacterial and archaeal glycoproteins with at least one experimentally validated glycosite (glycosylated residue). Each entry in the database is fully cross-referenced and enriched with available published information about source organism, coding gene, protein, glycosites, glycosylation type, attached glycan, associated oligosaccharyl/glycosyl transferases (OSTs/GTs), supporting references, and applicable additional information.", "created": "2019-06-11T14:17:00.162+0000", "modified": "2019-06-11T14:17:00.162+0000", "resources": [{"id": 1019, "mirId": "MIR:00100451", "urlPattern": "http://www.proglycprot.org/detail.aspx?ProId={$id}", "name": "ProGlycProt at IMT", "description": "ProGlycProt at IMT", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AC119", "resourceHomeUrl": "http://www.proglycprot.org/", "institution": {"id": 1018, "name": "Institute of Microbial Technology, Council of Scientific and Industrial Research (CSIR), Chandigarh", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AC119", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1020, "prefix": "polbase", "mirId": "MIR:00000355", "name": "PolBase", "pattern": "^[A-Za-z-0-9]+$", "description": "Polbase is a database of DNA polymerases providing information on polymerase protein sequence, target DNA sequence, enzyme structure, sequence mutations and details on polymerase activity.", "created": "2019-06-11T14:17:00.403+0000", "modified": "2019-06-11T14:17:00.403+0000", "resources": [{"id": 1021, "mirId": "MIR:00100452", "urlPattern": "https://polbase.neb.com/polymerases/{$id}#sequences", "name": "PolBase at New England BioLabs", "description": "PolBase at New England BioLabs", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "19-T4", "resourceHomeUrl": "http://polbase.neb.com/", "institution": {"id": 682, "name": "New England Biolabs, Ipswich, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "19-T4", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1022, "prefix": "nuclearbd", "mirId": "MIR:00000356", "name": "NucleaRDB", "pattern": "^\\w+\\_\\w+$", "description": "NucleaRDB is an information system that stores heterogenous data on Nuclear Hormone Receptors (NHRs). It contains data on sequences, ligand binding constants and mutations for NHRs.", "created": "2019-06-11T14:17:00.593+0000", "modified": "2019-06-11T14:17:00.593+0000", "resources": [{"id": 1024, "mirId": "MIR:00100453", "urlPattern": "http://www.receptors.org/nucleardb/proteins/{$id}", "name": "NucleaRDB at Radboud University Nijmegen Medical Centre", "description": "NucleaRDB at Radboud University Nijmegen Medical Centre", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "prgr_human", "resourceHomeUrl": "http://www.receptors.org/nucleardb/", "institution": {"id": 1023, "name": "CMBI, Radboud University Nijmegen Medical Centre, Dreijenplein, Wageningen", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "prgr_human", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1025, "prefix": "supfam", "mirId": "MIR:00000357", "name": "SUPFAM", "pattern": "^\\w+$", "description": "SUPERFAMILY provides structural, functional and evolutionary information for proteins from all completely sequenced genomes, and large sequence collections such as UniProt.", "created": "2019-06-11T14:17:00.815+0000", "modified": "2019-06-11T14:17:00.815+0000", "resources": [{"id": 1027, "mirId": "MIR:00100454", "urlPattern": "http://supfam.org/SUPERFAMILY/cgi-bin/scop.cgi?ipid={$id}", "name": "SUPFAM at MRC and University of Bristol", "description": "SUPFAM at MRC and University of Bristol", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SSF57615", "resourceHomeUrl": "http://supfam.org/SUPERFAMILY/", "institution": {"id": 1026, "name": "MRC Laboratory of Molecular Biology, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SSF57615", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1028, "prefix": "ricegap", "mirId": "MIR:00000358", "name": "Rice Genome Annotation Project", "pattern": "^LOC\\_Os\\d{1,2}g\\d{5}$", "description": "The objective of this project is to provide high quality annotation for the rice genome Oryza sativa spp japonica cv Nipponbare. All genes are annotated with functional annotation including expression data, gene ontologies, and tagged lines.", "created": "2019-06-11T14:17:01.041+0000", "modified": "2019-06-11T14:17:01.041+0000", "resources": [{"id": 1029, "mirId": "MIR:00100455", "urlPattern": "http://rice.plantbiology.msu.edu/cgi-bin/ORF_infopage.cgi?&orf={$id}", "name": "Rice Genome Annotation Project at TIGR", "description": "Rice Genome Annotation Project at TIGR", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LOC_Os02g13300", "resourceHomeUrl": "http://rice.plantbiology.msu.edu/annotation_pseudo_current.shtml", "institution": {"id": 909, "name": "The Institute for Genomic Research, Rockville, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LOC_Os02g13300", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1030, "prefix": "pina", "mirId": "MIR:00000359", "name": "PINA", "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])$", "description": "Protein Interaction Network Analysis (PINA) platform is an integrated platform for protein interaction network construction, filtering, analysis, visualization and management. It integrates protein-protein interaction data from six public curated databases and builds a complete, non-redundant protein interaction dataset for six model organisms.", "created": "2019-06-11T14:17:01.276+0000", "modified": "2019-06-11T14:17:01.276+0000", "resources": [{"id": 1032, "mirId": "MIR:00100456", "urlPattern": "http://cbg.garvan.unsw.edu.au/pina/interactome.oneP.do?ac={$id}&showExtend=null", "name": "Protein Interaction Network Analysis (PINA) at Garvan Institute", "description": "Protein Interaction Network Analysis (PINA) at Garvan Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q13485", "resourceHomeUrl": "http://cbg.garvan.unsw.edu.au/pina/", "institution": {"id": 1031, "name": "Garvan Institute of Medical Research, Sydney", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "AU", "countryName": "Australia"}}, "location": {"countryCode": "AU", "countryName": "Australia"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Q13485", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1033, "prefix": "tissuelist", "mirId": "MIR:00000360", "name": "Tissue List", "pattern": "^TS-\\d{4}$", "description": "The UniProt Tissue List is a controlled vocabulary of terms used to annotate biological tissues. It also contains cross-references to other ontologies where tissue types are specified.", "created": "2019-06-11T14:17:01.500+0000", "modified": "2019-06-11T14:17:01.500+0000", "resources": [{"id": 1035, "mirId": "MIR:00100457", "urlPattern": "https://www.uniprot.org/tissues/{$id}", "name": "Tissue List at Swiss Institute of Bioinformatics", "description": "Tissue List at Swiss Institute of Bioinformatics", "official": false, "providerCode": "sib", "sampleId": "TS-0285", "resourceHomeUrl": "https://www.uniprot.org/docs/tisslist.txt", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TS-0285", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1036, "prefix": "bacmap.biog", "mirId": "MIR:00000361", "name": "BacMap Biography", "pattern": "^\\d+$", "description": "BacMap is an electronic, interactive atlas of fully sequenced bacterial genomes. It contains labeled, zoomable and searchable chromosome maps for sequenced prokaryotic (archaebacterial and eubacterial) species. Each map can be zoomed to the level of individual genes and each gene is hyperlinked to a richly annotated gene card. All bacterial genome maps are supplemented with separate prophage genome maps as well as separate tRNA and rRNA maps. Each bacterial chromosome entry in BacMap contains graphs and tables on a variety of gene and protein statistics. Likewise, every bacterial species entry contains a bacterial 'biography' card, with taxonomic details, phenotypic details, textual descriptions and images. This collection references 'biography' information.", "created": "2019-06-11T14:17:01.735+0000", "modified": "2019-06-11T14:17:01.735+0000", "resources": [{"id": 1038, "mirId": "MIR:00100459", "urlPattern": "http://bacmap.wishartlab.com/organisms/{$id}", "name": "BacMap Biography at University of Alberta", "description": "BacMap Biography at University of Alberta", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1050", "resourceHomeUrl": "http://bacmap.wishartlab.com/", "institution": {"id": 1037, "name": "Department of Computing Science, Food and Nutritional Science, University of Alberta, Edmonton", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1050", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1039, "prefix": "hgnc.symbol", "mirId": "MIR:00000362", "name": "HGNC Symbol", "pattern": "^[A-Za-z-0-9_]+(\\@)?$", "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. This collection refers to records using the HGNC symbol.", "created": "2019-06-11T14:17:01.955+0000", "modified": "2019-06-11T14:17:01.955+0000", "resources": [{"id": 1040, "mirId": "MIR:00100460", "urlPattern": "https://www.genenames.org/cgi-bin/gene_symbol_report?match={$id}", "name": "HGNC Symbol at HUGO Genome Nomenclature Committee", "description": "HGNC Symbol at HUGO Genome Nomenclature Committee", "official": false, "providerCode": "ebi", "sampleId": "DAPK1", "resourceHomeUrl": "https://www.genenames.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DAPK1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1041, "prefix": "panther.pathway", "mirId": "MIR:00000363", "name": "PANTHER Pathway", "pattern": "^P\\d{5}$", "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. The PANTHER Pathway collection references pathway information, primarily for signaling pathways, each with subfamilies and protein sequences mapped to individual pathway components.", "created": "2019-06-11T14:17:02.153+0000", "modified": "2019-06-11T14:17:02.153+0000", "resources": [{"id": 1042, "mirId": "MIR:00100461", "urlPattern": "http://www.pantherdb.org/pathway/pathwayDiagram.jsp?catAccession={$id}", "name": "PANTHER Pathway at USC (Los Angeles)", "description": "PANTHER Pathway at USC (Los Angeles)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "P00024", "resourceHomeUrl": "http://www.pantherdb.org/", "institution": {"id": 94, "name": "Keck School of Medicine, University of Southern California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P00024", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1043, "prefix": "fairsharing", "mirId": "MIR:00000364", "name": "FAIRsharing", "pattern": "^bsg-[dscp]?\\d{6}$", "description": "The web-based FAIRSharing catalogues aim to centralize bioscience data policies, reporting standards and links to other related portals. This collection references bioinformatics data exchange standards, which includes 'Reporting Guidelines', Format Specifications and Terminologies.", "created": "2019-06-11T14:17:02.358+0000", "modified": "2019-06-11T14:17:02.358+0000", "resources": [{"id": 1045, "mirId": "MIR:00100463", "urlPattern": "https://fairsharing.org/{$id}", "name": "FAIRSharing at University of Oxford", "description": "FAIRSharing at University of Oxford", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "bsg-000052", "resourceHomeUrl": "https://fairsharing.org/", "institution": {"id": 1044, "name": "Oxford e-Research Centre, University of Oxford, Oxford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "bsg-000052", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1046, "prefix": "fungidb", "mirId": "MIR:00000365", "name": "FungiDB", "pattern": "^[A-Za-z_0-9]+$", "description": "FungiDB is a genomic resource for fungal genomes. It contains contains genome sequence and annotation from several fungal classes, including the Ascomycota classes, Eurotiomycetes, Sordariomycetes, Saccharomycetes and the Basidiomycota orders, Pucciniomycetes and Tremellomycetes, and the basal 'Zygomycete' lineage Mucormycotina.", "created": "2019-06-11T14:17:02.591+0000", "modified": "2019-06-11T14:17:02.591+0000", "resources": [{"id": 1048, "mirId": "MIR:00100464", "urlPattern": "https://fungidb.org/fungidb/app/record/gene/{$id}", "name": "FungiDB at University of California", "description": "FungiDB at University of California", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CNBG_0001", "resourceHomeUrl": "https://fungidb.org/fungidb", "institution": {"id": 1047, "name": "Department of Plant Pathology & Microbiology, University of California, Riverside, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CNBG_0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1771, "prefix": "neurovault.image", "mirId": "MIR:00000638", "name": "NeuroVault Image", "pattern": "^[1-9][0-9]*$", "description": "Neurovault is an online repository for statistical maps, parcellations and atlases of the brain. This collection references individual images.", "created": "2019-06-11T14:18:08.473+0000", "modified": "2019-06-11T14:18:08.473+0000", "resources": [{"id": 1772, "mirId": "MIR:00100843", "urlPattern": "https://neurovault.org/images/{$id}", "name": "NeuroVault", "description": "NeuroVault", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "58788", "resourceHomeUrl": "http://neurovault.org", "institution": {"id": 98, "name": "Stanford University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "58788", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1049, "prefix": "darc", "mirId": "MIR:00000366", "name": "DARC", "pattern": "^\\d+$", "description": "DARC (Database of Aligned Ribosomal Complexes) stores available cryo-EM (electron microscopy) data and atomic coordinates of ribosomal particles from the PDB, which are aligned within a common coordinate system. The aligned coordinate system simplifies direct visualization of conformational changes in the ribosome, such as subunit rotation and head-swiveling, as well as direct comparison of bound ligands, such as antibiotics or translation factors.", "created": "2019-06-11T14:17:02.814+0000", "modified": "2019-06-11T14:17:02.814+0000", "resources": [{"id": 1051, "mirId": "MIR:00100465", "urlPattern": "http://darcsite.genzentrum.lmu.de/darc/view.php?id={$id}", "name": "DARC at University of Munich", "description": "DARC at University of Munich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1250", "resourceHomeUrl": "http://darcsite.genzentrum.lmu.de/darc/index.php", "institution": {"id": 1050, "name": "Gene Center and Department for Biochemistry and Center for integrated Protein Science Munich, University of Munich, Munich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1250", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1052, "prefix": "drsc", "mirId": "MIR:00000367", "name": "DRSC", "pattern": "^DRSC\\d+$", "description": "The DRSC (Drosophila RNAi Screening Cente) tracks both production of reagents for RNA interference (RNAi) screening in Drosophila cells and RNAi screen results. It maintains a list of Drosophila gene names, identifiers, symbols and synonyms and provides information for cell-based or in vivo RNAi reagents, other types of reagents, screen results, etc. corresponding for a given gene.", "created": "2019-06-11T14:17:03.033+0000", "modified": "2019-06-11T14:17:03.033+0000", "resources": [{"id": 1054, "mirId": "MIR:00100466", "urlPattern": "http://www.flyrnai.org/cgi-bin/RNAi_gene_lookup_public.pl?gname={$id}", "name": "DRSC at Harvard Medical School", "description": "DRSC at Harvard Medical School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "DRSC05221", "resourceHomeUrl": "http://flyrnai.org/", "institution": {"id": 1053, "name": "Department of Genetics, Harvard Medical School, Boston, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DRSC05221", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1055, "prefix": "oridb.schizo", "mirId": "MIR:00000368", "name": "OriDB Schizosaccharomyces", "pattern": "^\\d+$", "description": "OriDB is a database of collated genome-wide mapping studies of confirmed and predicted replication origin sites in Saccharomyces cerevisiae and the fission yeast Schizosaccharomyces pombe. This collection references Schizosaccharomyces pombe.", "created": "2019-06-11T14:17:03.255+0000", "modified": "2019-06-11T14:17:03.255+0000", "resources": [{"id": 1057, "mirId": "MIR:00100467", "urlPattern": "http://pombe.oridb.org/details.php?id={$id}", "name": "OriDB Schizosaccharomyces at University of Nottingham", "description": "OriDB Schizosaccharomyces at University of Nottingham", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1", "resourceHomeUrl": "http://pombe.oridb.org/index.php", "institution": {"id": 1056, "name": "Centre for Genetics and Genomics, The University of Nottingham, Queen's Medical Centre, Nottingham", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1058, "prefix": "oridb.sacch", "mirId": "MIR:00000369", "name": "OriDB Saccharomyces", "pattern": "^\\d+$", "description": "OriDB is a database of collated genome-wide mapping studies of confirmed and predicted replication origin sites in Saccharomyces cerevisiae and the fission yeast Schizosaccharomyces pombe. This collection references Saccharomyces cerevisiae.", "created": "2019-06-11T14:17:03.475+0000", "modified": "2019-06-11T14:17:03.475+0000", "resources": [{"id": 1059, "mirId": "MIR:00100468", "urlPattern": "http://cerevisiae.oridb.org/details.php?id={$id}", "name": "OriDB Saccharomyces at University of Nottingham", "description": "OriDB Saccharomyces at University of Nottingham", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1", "resourceHomeUrl": "http://cerevisiae.oridb.org/index.php", "institution": {"id": 1056, "name": "Centre for Genetics and Genomics, The University of Nottingham, Queen's Medical Centre, Nottingham", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1060, "prefix": "pscdb", "mirId": "MIR:00000370", "name": "PSCDB", "pattern": "^\\d+$", "description": "The PSCDB (Protein Structural Change DataBase) collects information on the relationship between protein structural change upon ligand binding. Each entry page provides detailed information about this structural motion.", "created": "2019-06-11T14:17:03.650+0000", "modified": "2019-06-11T14:17:03.650+0000", "resources": [{"id": 1062, "mirId": "MIR:00100469", "urlPattern": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/{$id}.html", "name": "PSCDB at Nagoya University", "description": "PSCDB at Nagoya University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "051", "resourceHomeUrl": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/index.html", "institution": {"id": 1061, "name": "Graduate School of Information Science, Nagoya University, Furo-cho, Chikusa-ku", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "051", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1063, "prefix": "scop", "mirId": "MIR:00000371", "name": "SCOP", "pattern": "^\\d+$", "description": "The SCOP (Structural Classification of Protein) database is a comprehensive ordering of all proteins of known structure according to their evolutionary, functional and structural relationships. The basic classification unit is the protein domain. Domains are hierarchically classified into species, proteins, families, superfamilies, folds, and classes.", "created": "2019-06-11T14:17:03.870+0000", "modified": "2019-06-11T14:17:03.870+0000", "resources": [{"id": 1065, "mirId": "MIR:00100470", "urlPattern": "http://scop.mrc-lmb.cam.ac.uk/scop/search.cgi?sunid={$id}", "name": "SCOP at MRC", "description": "SCOP at MRC", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "47419", "resourceHomeUrl": "http://scop.mrc-lmb.cam.ac.uk/scop/", "institution": {"id": 1064, "name": "MRC Laboratory of Molecular Biology, Centre for Protein Engineering, Hills Road, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1067, "mirId": "MIR:00100471", "urlPattern": "http://scop.berkeley.edu/sunid={$id}", "name": "SCOP at Berkeley", "description": "SCOP at Berkeley", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "47419", "resourceHomeUrl": "http://scop.berkeley.edu/", "institution": {"id": 1066, "name": "University of California, Berkeley", "homeUrl": "https://www.berkeley.edu/", "description": "From a group of academic pioneers in 1868 to the Free Speech Movement in 1964, Berkeley is a place where the brightest minds from across the globe come together to explore, ask questions and improve the world.", "rorId": "https://ror.org/01an7q238", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "47419", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1068, "prefix": "ena.embl", "mirId": "MIR:00000372", "name": "ENA", "pattern": "^[A-Z]+[0-9]+(\\.\\d+)?$", "description": "The European Nucleotide Archive (ENA) captures and presents information relating to experimental workflows that are based around nucleotide sequencing. ENA is made up of a number of distinct databases that includes EMBL-Bank, the Sequence Read Archive (SRA) and the Trace Archive each with their own data formats and standards. This collection references Embl-Bank identifiers.", "created": "2019-06-11T14:17:04.223+0000", "modified": "2019-06-11T14:17:04.223+0000", "resources": [{"id": 1070, "mirId": "MIR:00100889", "urlPattern": "https://www.ncbi.nlm.nih.gov/nuccore/{$id}", "name": "ENA through GenBank", "description": "ENA through GenBank", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BN000065", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/Genbank/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1069, "mirId": "MIR:00100473", "urlPattern": "https://www.ebi.ac.uk/ena/browser/view/{$id}", "name": "ENA at European Bioinformatics Institute", "description": "ENA at European Bioinformatics Institute", "official": true, "providerCode": "ebi", "sampleId": "BN000065", "resourceHomeUrl": "https://www.ebi.ac.uk/ena/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BN000065", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1071, "prefix": "dommino", "mirId": "MIR:00000373", "name": "DOMMINO", "pattern": "^[0-9][A-Za-z0-9]{3}$", "description": "DOMMINO is a database of macromolecular interactions that includes the interactions between protein domains, interdomain linkers, N- and C-terminal regions and protein peptides.", "created": "2019-06-11T14:17:04.514+0000", "modified": "2019-06-11T14:17:04.514+0000", "resources": [{"id": 1073, "mirId": "MIR:00100474", "urlPattern": "http://orion.rnet.missouri.edu/~nz953/DOMMINO/index.php/result/show_network/{$id}", "name": "DOMMINO at University of Missouri", "description": "DOMMINO at University of Missouri", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2GC4", "resourceHomeUrl": "http://dommino.org/", "institution": {"id": 1072, "name": "Informatics Institute and Department of Computer Science and Bond Life Science Center, University of Missouri, Columbia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2GC4", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1074, "prefix": "panther.node", "mirId": "MIR:00000374", "name": "PANTHER Node", "pattern": "^PTN\\d{9}$", "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. PANTHER tree is a key element of the PANTHER System to represent \u2018all\u2019 of the evolutionary events in the gene family. PANTHER nodes represent the evolutionary events, either speciation or duplication, within the tree. PANTHER is maintaining stable identifier for these nodes.", "created": "2019-06-11T14:17:04.735+0000", "modified": "2019-06-11T14:17:04.735+0000", "resources": [{"id": 1075, "mirId": "MIR:00100475", "urlPattern": "http://www.pantree.org/node/annotationNode.jsp?id={$id}", "name": "PANTHER Node at USC (Los Angeles)", "description": "PANTHER Node at USC (Los Angeles)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PTN000000026", "resourceHomeUrl": "http://pantree.org/", "institution": {"id": 94, "name": "Keck School of Medicine, University of Southern California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PTN000000026", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1076, "prefix": "ccds", "mirId": "MIR:00000375", "name": "Consensus CDS", "pattern": "^CCDS\\d+\\.\\d+$", "description": "The Consensus CDS (CCDS) project is a collaborative effort to identify a core set of human and mouse protein coding regions that are consistently annotated and of high quality. The CCDS set is calculated following coordinated whole genome annotation updates carried out by the NCBI, WTSI, and Ensembl. The long term goal is to support convergence towards a standard set of gene annotations.", "created": "2019-06-11T14:17:04.925+0000", "modified": "2019-06-11T14:17:04.925+0000", "resources": [{"id": 1077, "mirId": "MIR:00100477", "urlPattern": "http://www.ncbi.nlm.nih.gov/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&DATA={$id}", "name": "Consensus CDS at NCBI", "description": "Consensus CDS at NCBI", "official": true, "providerCode": "ncbi", "sampleId": "CCDS13573.1", "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/CCDS/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CCDS13573.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1086, "prefix": "hprd", "mirId": "MIR:00000377", "name": "HPRD", "pattern": "^\\d+$", "description": "The Human Protein Reference Database (HPRD) represents a centralized platform to visually depict and integrate information pertaining to domain architecture, post-translational modifications, interaction networks and disease association for each protein in the human proteome.", "created": "2019-06-11T14:17:05.741+0000", "modified": "2019-06-11T14:17:05.741+0000", "resources": [{"id": 1088, "mirId": "MIR:00100479", "urlPattern": "http://www.hprd.org/protein/{$id}", "name": "Human Protein Reference Database", "description": "Human Protein Reference Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "00001", "resourceHomeUrl": "http://www.hprd.org/", "institution": {"id": 1087, "name": "Institute of Bioinformatics, International Tech Park, Bangalore", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1089, "prefix": "gxa.gene", "mirId": "MIR:00000378", "name": "GXA Gene", "pattern": "^\\w+$", "description": "The Gene Expression Atlas (GXA) is a semantically enriched database of meta-analysis based summary statistics over a curated subset of ArrayExpress Archive, servicing queries for condition-specific gene expression patterns as well as broader exploratory searches for biologically interesting genes/samples. This collection references genes.", "created": "2019-06-11T14:17:05.964+0000", "modified": "2019-06-11T14:17:05.964+0000", "resources": [{"id": 1090, "mirId": "MIR:00100482", "urlPattern": "https://www.ebi.ac.uk/gxa/genes/{$id}", "name": "GXA Gene at EBI", "description": "GXA Gene at EBI", "official": false, "providerCode": "ebi", "sampleId": "AT4G01080", "resourceHomeUrl": "https://www.ebi.ac.uk/gxa/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AT4G01080", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1091, "prefix": "gxa.expt", "mirId": "MIR:00000379", "name": "GXA Expt", "pattern": "^[AEP]-\\w{4}-\\d+$", "description": "The Gene Expression Atlas (GXA) is a semantically enriched database of meta-analysis based summary statistics over a curated subset of ArrayExpress Archive, servicing queries for condition-specific gene expression patterns as well as broader exploratory searches for biologically interesting genes/samples. This collection references experiments.", "created": "2019-06-11T14:17:06.163+0000", "modified": "2019-06-11T14:17:06.163+0000", "resources": [{"id": 1092, "mirId": "MIR:00100483", "urlPattern": "https://www.ebi.ac.uk/gxa/experiments/{$id}", "name": "GXA Expt at EBI", "description": "GXA Expt at EBI", "official": true, "providerCode": "ebi", "sampleId": "E-MTAB-2037", "resourceHomeUrl": "https://www.ebi.ac.uk/gxa/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1093, "mirId": "MIR:00100857", "urlPattern": "https://www.omicsdi.org/dataset/atlas-experiments/{$id}", "name": "GXA Expt through OmicsDI", "description": "GXA Expt through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "E-MTAB-2037", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "E-MTAB-2037", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1094, "prefix": "metabolights", "mirId": "MIR:00000380", "name": "MetaboLights", "pattern": "^MTBLS\\d+$", "description": "MetaboLights is a database for Metabolomics experiments and derived information. The database is cross-species, cross-technique and covers metabolite structures and their reference spectra as well as their biological roles, locations and concentrations, and experimental data from metabolic experiments. This collection references individual metabolomics studies.", "created": "2019-06-11T14:17:06.457+0000", "modified": "2019-06-11T14:17:06.457+0000", "resources": [{"id": 1095, "mirId": "MIR:00100486", "urlPattern": "https://www.ebi.ac.uk/metabolights/{$id}", "name": "MetaboLights at EBI", "description": "MetaboLights at EBI", "official": true, "providerCode": "ebi", "sampleId": "MTBLS1", "resourceHomeUrl": "https://www.ebi.ac.uk/metabolights/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1096, "mirId": "MIR:00100853", "urlPattern": "https://www.omicsdi.org/dataset/metabolights_dataset/{$id}", "name": "MataboLights through OmicsDI", "description": "MataboLights through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "MTBLS1", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MTBLS1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1097, "prefix": "nbn", "mirId": "MIR:00000381", "name": "National Bibliography Number", "pattern": "^urn\\:nbn\\:[A-Za-z_0-9]+\\:([A-Za-z_0-9]+)-[A-Za-z_0-9]+$", "description": "The National Bibliography Number (NBN), is a URN-based publication identifier system employed by a variety of national libraries such as those of Germany, the Netherlands and Switzerland. They are used to identify documents archived in national libraries, in their native format or language, and are typically used for documents which do not have a publisher-assigned identifier.", "created": "2019-06-11T14:17:06.748+0000", "modified": "2019-06-11T14:17:06.748+0000", "resources": [{"id": 1099, "mirId": "MIR:00100488", "urlPattern": "http://nbn-resolving.org/resolver?identifier={$id}&verb=redirect", "name": "NBN through URN Resolver at German National Library", "description": "NBN through URN Resolver at German National Library", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "urn:nbn:fi:tkk-004781", "resourceHomeUrl": "http://nbn-resolving.org/resolve_urn.htm", "institution": {"id": 1098, "name": "Deutsche Nationalbibliothek, Frankfurt", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "urn:nbn:fi:tkk-004781", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1100, "prefix": "orcid", "mirId": "MIR:00000382", "name": "ORCID", "pattern": "^\\d{4}-\\d{4}-\\d{4}-\\d{3}(\\d|X)$", "description": "ORCID (Open Researcher and Contributor ID) is an open, non-profit, community-based effort to create and maintain a registry of unique identifiers for individual researchers. ORCID records hold non-sensitive information such as name, email, organization name, and research activities.", "created": "2019-06-11T14:17:06.994+0000", "modified": "2019-06-11T14:17:06.994+0000", "resources": [{"id": 1102, "mirId": "MIR:00100489", "urlPattern": "https://orcid.org/{$id}", "name": "ORCID at Bethesda", "description": "ORCID at Bethesda", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0000-0002-5355-2576", "resourceHomeUrl": "https://orcid.org", "institution": {"id": 1101, "name": "ORCID Inc, Bethesda, Mayrland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000-0002-5355-2576", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1103, "prefix": "inchi", "mirId": "MIR:00000383", "name": "InChI", "pattern": "^InChI\\=1S?\\/[A-Za-z0-9\\.]+(\\+[0-9]+)?(\\/[cnpqbtmsih][A-Za-z0-9\\-\\+\\(\\)\\,\\/\\?\\;\\.]+)*$", "description": "The IUPAC International Chemical Identifier (InChI) is a non-proprietary identifier for chemical substances that can be used in printed and electronic data sources. It is derived solely from a structural representation of that substance, such that a single compound always yields the same identifier.", "created": "2019-06-11T14:17:07.236+0000", "modified": "2019-06-11T14:17:07.236+0000", "resources": [{"id": 1106, "mirId": "MIR:00100492", "urlPattern": "http://www.chemspider.com/{$id}", "name": "InChI through Chemspider", "description": "InChI through Chemspider", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", "resourceHomeUrl": "http://www.chemspider.com/", "institution": {"id": 439, "name": "Royal Society of Chemistry, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1108, "mirId": "MIR:00100493", "urlPattern": "http://webbook.nist.gov/cgi/cbook.cgi?{$id}", "name": "InChI through NIST", "description": "InChI through NIST", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", "resourceHomeUrl": "http://webbook.nist.gov/chemistry", "institution": {"id": 1107, "name": "National Institute of Standards and Technology, Gaithersburg, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1109, "mirId": "MIR:00100494", "urlPattern": "https://www.ebi.ac.uk/chebi/advancedSearchFT.do?searchString={$id}", "name": "InChI through ChEBI", "description": "InChI through ChEBI", "official": false, "providerCode": "ebi", "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", "resourceHomeUrl": "https://www.ebi.ac.uk/chebi/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1105, "mirId": "MIR:00100491", "urlPattern": "http://rdf.openmolecules.net/?{$id}", "name": "InChI through RDF Open Molecules", "description": "InChI through RDF Open Molecules", "official": false, "providerCode": "um", "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", "resourceHomeUrl": "http://rdf.openmolecules.net/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1110, "prefix": "wikipedia.en", "mirId": "MIR:00000384", "name": "Wikipedia (En)", "pattern": "^[A-Za-z-0-9_]+$", "description": "Wikipedia is a multilingual, web-based, free-content encyclopedia project based on an openly editable model. It is written collaboratively by largely anonymous Internet volunteers who write without pay.", "created": "2019-06-11T14:17:07.845+0000", "modified": "2019-06-11T14:17:07.845+0000", "resources": [{"id": 1112, "mirId": "MIR:00100495", "urlPattern": "http://en.wikipedia.org/wiki/{$id}", "name": "Wikipedia (English)", "description": "Wikipedia (English)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SM_UB-81", "resourceHomeUrl": "http://en.wikipedia.org/wiki/Main_Page", "institution": {"id": 1111, "name": "Wikimedia Foundation, San Francisco, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1114, "mirId": "MIR:00100496", "urlPattern": "http://dbpedia.org/page/{$id}", "name": "Wikipedia structured content through DBpedia", "description": "Wikipedia structured content through DBpedia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SM_UB-81", "resourceHomeUrl": "http://wiki.dbpedia.org/", "institution": {"id": 1113, "name": "OpenLink Software, Burlington, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SM_UB-81", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1115, "prefix": "phosphopoint.kinase", "mirId": "MIR:00000385", "name": "PhosphoPoint Kinase", "pattern": "^\\w+$", "description": "PhosphoPOINT is a database of the human kinase and phospho-protein interactome. It describes the interactions among kinases, their potential substrates and their interacting (phospho)-proteins. It also incorporates gene expression and uses gene ontology (GO) terms to annotate interactions. This collection references kinase information.", "created": "2019-06-11T14:17:08.222+0000", "modified": "2019-06-11T14:17:08.222+0000", "resources": [{"id": 1117, "mirId": "MIR:00100499", "urlPattern": "http://kinase.bioinformatics.tw/showall.jsp?type=Kinase&info=Gene&name={$id}&drawing=0&sorting=0&kinome=1", "name": "PhosphoPoint Kinase at National Taiwan University", "description": "PhosphoPoint Kinase at National Taiwan University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AURKA", "resourceHomeUrl": "http://kinase.bioinformatics.tw/", "institution": {"id": 1116, "name": "Department of Computer Science and Information Engineering, National Taiwan University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AURKA", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1118, "prefix": "phosphopoint.protein", "mirId": "MIR:00000386", "name": "PhosphoPoint Phosphoprotein", "pattern": "^\\w+$", "description": "PhosphoPOINT is a database of the human kinase and phospho-protein interactome. It describes the interactions among kinases, their potential substrates and their interacting (phospho)-proteins. It also incorporates gene expression and uses gene ontology (GO) terms to annotate interactions. This collection references phosphoprotein information.", "created": "2019-06-11T14:17:08.458+0000", "modified": "2019-06-11T14:17:08.458+0000", "resources": [{"id": 1119, "mirId": "MIR:00100500", "urlPattern": "http://kinase.bioinformatics.tw/showall.jsp?type=PhosphoProtein&info=Gene&name={$id}&drawing=0&sorting=0&kinome=0", "name": "PhosphoPoint Phosphoprotein at National Taiwan University", "description": "PhosphoPoint Phosphoprotein at National Taiwan University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AURKA", "resourceHomeUrl": "http://kinase.bioinformatics.tw/", "institution": {"id": 1116, "name": "Department of Computer Science and Information Engineering, National Taiwan University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AURKA", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1120, "prefix": "inchikey", "mirId": "MIR:00000387", "name": "InChIKey", "pattern": "^[A-Z]{14}\\-[A-Z]{10}(\\-[A-Z])?", "description": "The IUPAC International Chemical Identifier (InChI, see MIR:00000383) is an identifier for chemical substances, and is derived solely from a structural representation of that substance. Since these can be quite unwieldly, particularly for web use, the InChIKey was developed. These are of a fixed length (25 character) and were created as a condensed, more web friendly, digital representation of the InChI.", "created": "2019-06-11T14:17:08.649+0000", "modified": "2019-06-11T14:17:08.649+0000", "resources": [{"id": 1121, "mirId": "MIR:00100501", "urlPattern": "http://www.chemspider.com/inchikey={$id}", "name": "InChIKey through ChemSpider", "description": "InChIKey through ChemSpider", "official": true, "providerCode": "chemspider", "sampleId": "RYYVLZVUVIJVGH-UHFFFAOYSA-N", "resourceHomeUrl": "http://www.chemspider.com/", "institution": {"id": 439, "name": "Royal Society of Chemistry, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1122, "mirId": "MIR:00100505", "urlPattern": "http://cactus.nci.nih.gov/chemical/structure/{$id}/names", "name": "InChiKey resolver at NCI", "description": "InChiKey resolver at NCI", "official": true, "providerCode": "cactus", "sampleId": "RYYVLZVUVIJVGH-UHFFFAOYSA-N", "resourceHomeUrl": "http://cactus.nci.nih.gov/chemical/structure", "institution": {"id": 425, "name": "National Cancer Institute, Rockville, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 2470, "mirId": "MIR:00000779", "urlPattern": "https://scholia.toolforge.org/inchikey/{$id}", "name": "Scholia", "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", "official": false, "providerCode": "scholia", "sampleId": "WUUVSJBKHXDKBS-ROFOPDMZSA-N", "resourceHomeUrl": "https://scholia.toolforge.org/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "RYYVLZVUVIJVGH-UHFFFAOYSA-N", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1123, "prefix": "uniprot.isoform", "mirId": "MIR:00000388", "name": "UniProt Isoform", "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])(\\-\\d+)$", "description": "The UniProt Knowledgebase (UniProtKB) is a comprehensive resource for protein sequence and functional information with extensive cross-references to more than 120 external databases. This collection is a subset of UniProtKB, and provides a means to reference isoform information.", "created": "2019-06-11T14:17:08.943+0000", "modified": "2019-06-11T14:17:08.943+0000", "resources": [{"id": 1124, "mirId": "MIR:00100502", "urlPattern": "http://www.uniprot.org/uniprot/{$id}", "name": "UniProt Isoform through Universal Protein Resource", "description": "UniProt Isoform through Universal Protein Resource", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q5BJF6-3", "resourceHomeUrl": "http://www.uniprot.org/", "institution": {"id": 24, "name": "UniProt Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1125, "mirId": "MIR:00100503", "urlPattern": "http://purl.uniprot.org/uniprot/{$id}", "name": "UniProt Isoform through Universal Protein Resource using Persistent URL system", "description": "UniProt Isoform through Universal Protein Resource using Persistent URL system", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q5BJF6-3", "resourceHomeUrl": "http://purl.uniprot.org/", "institution": {"id": 24, "name": "UniProt Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1126, "mirId": "MIR:00100504", "urlPattern": "http://www.uniprot.org/uniparc/?query={$id}", "name": "UniProt Isoform through UniParc", "description": "UniProt Isoform through UniParc", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q5BJF6-3", "resourceHomeUrl": "http://www.uniprot.org/uniparc/", "institution": {"id": 24, "name": "UniProt Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Q5BJF6-3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1127, "prefix": "kegg.environ", "mirId": "MIR:00000389", "name": "KEGG Environ", "pattern": "^(ev\\:)?E\\d+$", "description": "KEGG ENVIRON (renamed from EDRUG) is a collection of crude drugs, essential oils, and other health-promoting substances, which are mostly natural products of plants. It will contain environmental substances and other health-damagine substances as well. Each KEGG ENVIRON entry is identified by the E number and is associated with the chemical component, efficacy information, and source species information whenever applicable.", "created": "2019-06-11T14:17:09.349+0000", "modified": "2019-06-11T14:17:09.349+0000", "resources": [{"id": 1128, "mirId": "MIR:00100506", "urlPattern": "http://www.kegg.jp/entry/{$id}", "name": "KEGG ENVIRON Database", "description": "KEGG ENVIRON Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "ev:E00032", "resourceHomeUrl": "http://www.genome.jp/kegg/drug/environ.html", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ev:E00032", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1129, "prefix": "cldb", "mirId": "MIR:00000390", "name": "CLDB", "pattern": "^(cl|tum)\\d+$", "description": "The Cell Line Data Base (CLDB) is a reference information source for human and animal cell lines. It provides the characteristics of the cell lines and their availability through distributors, allowing cell line requests to be made from collections and laboratories.", "created": "2019-06-11T14:17:09.531+0000", "modified": "2019-06-11T14:17:09.531+0000", "resources": [{"id": 1131, "mirId": "MIR:00100508", "urlPattern": "http://bioinformatics.hsanmartino.it/hypercldb/{$id}.html", "name": "CLDB at Genova", "description": "CLDB at Genova", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "cl3603", "resourceHomeUrl": "http://bioinformatics.hsanmartino.it/hypercldb/indexes.html", "institution": {"id": 1130, "name": "Ospedale San Martino", "homeUrl": "http://www.ospedalesanmartino.it", "description": "NOTE - No international description has been found on its website, so it's not been possible to include a brief summary here.", "rorId": "https://ror.org/04d7es448", "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "cl3603", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1132, "prefix": "efo", "mirId": "MIR:00000391", "name": "Experimental Factor Ontology", "pattern": "^\\d{7}$", "description": "The Experimental Factor Ontology (EFO) provides a systematic description of many experimental variables available in EBI databases. It combines parts of several biological ontologies, such as anatomy, disease and chemical compounds. The scope of EFO is to support the annotation, analysis and visualization of data handled by the EBI Functional Genomics Team.", "created": "2019-06-11T14:17:09.753+0000", "modified": "2019-06-11T14:17:09.753+0000", "resources": [{"id": 1133, "mirId": "MIR:00100509", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/efo/terms?obo_id=EFO:{$id}", "name": "EFO through OLS", "description": "EFO through OLS", "official": false, "providerCode": "ols", "sampleId": "0004859", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/efo", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1134, "mirId": "MIR:00100510", "urlPattern": "http://purl.bioontology.org/ontology/EFO/efo:EFO_{$id}", "name": "EFO through BioPortal", "description": "EFO through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0004859", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/EFO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1135, "mirId": "MIR:00100511", "urlPattern": "https://www.ebi.ac.uk/efo/EFO_{$id}", "name": "EFO through Functional Genomics Group (EBI)", "description": "EFO through Functional Genomics Group (EBI)", "official": false, "providerCode": "ebi", "sampleId": "0004859", "resourceHomeUrl": "https://www.ebi.ac.uk/efo/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0004859", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1136, "prefix": "hgmd", "mirId": "MIR:00000392", "name": "HGMD", "pattern": "^[A-Z_0-9]+$", "description": "The Human Gene Mutation Database (HGMD) collates data on germ-line mutations in nuclear genes associated with human inherited disease. It includes information on single base-pair substitutions in coding, regulatory and splicing-relevant regions; micro-deletions and micro-insertions; indels; triplet repeat expansions as well as gross deletions; insertions; duplications; and complex rearrangements. Each mutation entry is unique, and includes cDNA reference sequences for most genes, splice junction sequences, disease-associated and functional polymorphisms, as well as links to data present in publicly available online locus-specific mutation databases.", "created": "2019-06-11T14:17:10.208+0000", "modified": "2019-06-11T14:17:10.208+0000", "resources": [{"id": 1138, "mirId": "MIR:00100512", "urlPattern": "http://www.hgmd.cf.ac.uk/ac/gene.php?gene={$id}", "name": "HGMD at Cardiff University", "description": "HGMD at Cardiff University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CALM1", "resourceHomeUrl": "http://www.hgmd.cf.ac.uk/ac/index.php", "institution": {"id": 1137, "name": "Cardiff University, Cardiff", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CALM1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1139, "prefix": "aphidbase.transcript", "mirId": "MIR:00000393", "name": "AphidBase Transcript", "pattern": "^ACYPI\\d{6}(-RA)?$", "description": "AphidBase is a centralized bioinformatic resource that was developed to facilitate community annotation of the pea aphid genome by the International Aphid Genomics Consortium (IAGC). The AphidBase Information System was designed to organize and distribute genomic data and annotations for a large international community. This collection references the transcript report, which describes genomic location, sequence and exon information.", "created": "2019-06-11T14:17:10.425+0000", "modified": "2019-06-11T14:17:10.425+0000", "resources": [{"id": 1141, "mirId": "MIR:00100513", "urlPattern": "http://bipaa.genouest.org/apps/grs-2.3/grs?reportID=aphidbase_transcript_report&objectID={$id}", "name": "AphidBase at INRA", "description": "AphidBase at INRA", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ACYPI000159", "resourceHomeUrl": "http://www.aphidbase.com/aphidbase", "institution": {"id": 1140, "name": "INRA UMR, Le Rheu", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ACYPI000159", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1142, "prefix": "affy.probeset", "mirId": "MIR:00000394", "name": "Affymetrix Probeset", "pattern": "\\d{4,}((_[asx])?_at)?", "description": "An Affymetrix ProbeSet is a collection of up to 11 short (~22 nucleotide) microarray probes designed to measure a single gene or a family of genes as a unit. Multiple probe sets may be available for each gene under consideration.", "created": "2019-06-11T14:17:10.647+0000", "modified": "2019-06-11T14:17:10.647+0000", "resources": [{"id": 1144, "mirId": "MIR:00100514", "urlPattern": "https://www.affymetrix.com/LinkServlet?probeset={$id}", "name": "Affymetrix ProbeSet in Santa Clara", "description": "Affymetrix ProbeSet in Santa Clara", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "243002_at", "resourceHomeUrl": "http://www.affymetrix.com/", "institution": {"id": 1143, "name": "Affymetrix", "homeUrl": "https://www.thermofisher.com/uk/en/home/life-science/microarray-analysis.html", "description": "Thermo Fisher Scientific provides innovative Affymetrix\u2122 products, tools, and resources that help advance the work of researchers via microarray analysis", "rorId": "https://ror.org/012kjw534", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1145, "mirId": "MIR:00100672", "urlPattern": "http://cu.affymetrix.bio2rdf.org/describe/?url=http://bio2rdf.org/affymetrix:{$id}", "name": "Bio2RDF", "description": "Bio2RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "243002_at", "resourceHomeUrl": "http://cu.affymetrix.bio2rdf.org/fct/", "institution": {"id": 33, "name": "Bio2RDF.org", "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "243002_at", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1146, "prefix": "treefam", "mirId": "MIR:00000395", "name": "TreeFam", "pattern": "^\\w{1,2}\\d+$", "description": "TreeFam is a database of phylogenetic trees of gene families found in animals. Automatically generated trees are curated, to create a curated resource that presents the accurate evolutionary history of all animal gene families, as well as reliable ortholog and paralog assignments.", "created": "2019-06-11T14:17:10.973+0000", "modified": "2019-06-11T14:17:10.973+0000", "resources": [{"id": 1148, "mirId": "MIR:00100515", "urlPattern": "http://www.treefam.org/family/{$id}", "name": "TreeFam database", "description": "TreeFam database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TF101014", "resourceHomeUrl": "http://www.treefam.org/", "institution": {"id": 1147, "name": "Beijing Genomics Institute", "homeUrl": "https://www.bgi.com", "description": "BGI Genomics is a publicly listed commercial genomics company, providing a wide range of next generation sequencing services and a broad portfolio of genetic tests for medical institutions, research institutions and other public and private partners.\nEstablished in 1999, we have almost 20 years of genomics experience. Our mission is to leverage our genomics expertise in order to advance life science research and improve human health for the benefit of mankind.", "rorId": "https://ror.org/045pn2j94", "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TF101014", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1149, "prefix": "caps", "mirId": "MIR:00000396", "name": "CAPS-DB", "pattern": "^\\d+$", "description": "CAPS-DB is a structural classification of helix-cappings or caps compiled from protein structures. The regions of the polypeptide chain immediately preceding or following an alpha-helix are known as Nt- and Ct cappings, respectively. Caps extracted from protein structures have been structurally classified based on geometry and conformation and organized in a tree-like hierarchical classification where the different levels correspond to different properties of the caps.", "created": "2019-06-11T14:17:11.199+0000", "modified": "2019-06-11T14:17:11.199+0000", "resources": [{"id": 1151, "mirId": "MIR:00100516", "urlPattern": "http://www.bioinsilico.org/cgi-bin/CAPSDB/getCAPScluster?nidcl={$id}", "name": "CAPS-DB at Leeds Institute of Molecular Medicine", "description": "CAPS-DB at Leeds Institute of Molecular Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "434", "resourceHomeUrl": "http://www.bioinsilico.org/cgi-bin/CAPSDB/staticHTML/home", "institution": {"id": 1150, "name": "Leeds Institute of Molecular Medicine, Section of Experimental Therapeutics, University of Leeds, Leeds", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "434", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1152, "prefix": "cubedb", "mirId": "MIR:00000397", "name": "Cube db", "pattern": "^[A-Za-z_0-9]+$", "description": "Cube-DB is a database of pre-evaluated results for detection of functional divergence in human/vertebrate protein families. It analyzes comparable taxonomical samples for all paralogues under consideration, storing functional specialisation at the level of residues. The data are presented as a table of per-residue scores, and mapped onto related structures where available.", "created": "2019-06-11T14:17:11.437+0000", "modified": "2019-06-11T14:17:11.437+0000", "resources": [{"id": 1154, "mirId": "MIR:00100517", "urlPattern": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/data/{$id}/", "name": "Cube db at Bioinformatics Institute (Singapore)", "description": "Cube db at Bioinformatics Institute (Singapore)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AKR", "resourceHomeUrl": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/html/home.html", "institution": {"id": 1153, "name": "BII Bioinformatics Institute", "homeUrl": "http://www.bii.a-star.edu.sg", "description": "The BII focuses on theoretical approaches aimed at understanding biomolecular mechanisms that underlie biological phenomena, the development of computational methods to support this discovery process, and experimental verification of predicted molecular and cellular functions of genes and proteins with biochemical methods.", "rorId": "https://ror.org/044w3nw43", "location": {"countryCode": "SG", "countryName": "Singapore"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AKR", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1155, "prefix": "ideal", "mirId": "MIR:00000398", "name": "IDEAL", "pattern": "^IID\\d+$", "description": "IDEAL provides a collection of knowledge on experimentally verified intrinsically disordered proteins. It contains manual annotations by curators on intrinsically disordered regions, interaction regions to other molecules, post-translational modification sites, references and structural domain assignments.", "created": "2019-06-11T14:17:11.651+0000", "modified": "2019-06-11T14:17:11.651+0000", "resources": [{"id": 1157, "mirId": "MIR:00100518", "urlPattern": "http://idp1.force.cs.is.nagoya-u.ac.jp/IDEAL/ideal.php?id={$id}", "name": "IDEAL at Nagoya University", "description": "IDEAL at Nagoya University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "IID00001", "resourceHomeUrl": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/", "institution": {"id": 1156, "name": "Nagoya University", "homeUrl": "http://en.nagoya-u.ac.jp/", "description": "Nagoya University has a 144-year history, dating from when the Temporary\u3000Medical School/Public Hospital -- the forerunner of today's Nagoya University -- was established in 1871. The University became the last Imperial University of Japan in 1939, and the educational reforms in 1949 led to the beginning of Nagoya University under the new education system. From that time to this day, the University has been pursuing steady development.", "rorId": "https://ror.org/04chrp450", "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "IID00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1158, "prefix": "stap", "mirId": "MIR:00000399", "name": "STAP", "pattern": "^[0-9][A-Za-z0-9]{3}$", "description": "STAP (Statistical Torsional Angles Potentials) was developed since, according to several studies, some nuclear magnetic resonance (NMR) structures are of lower quality, are less reliable and less suitable for structural analysis than high-resolution X-ray crystallographic structures. The refined NMR solution structures (statistical torsion angle potentials; STAP) in the database are refined from the Protein Data Bank (PDB).", "created": "2019-06-11T14:17:11.871+0000", "modified": "2019-06-11T14:17:11.871+0000", "resources": [{"id": 1160, "mirId": "MIR:00100519", "urlPattern": "http://psb.kobic.re.kr/STAP/refinement1/result.php?search={$id}", "name": "STAP at Korean Bioinformation Center", "description": "STAP at Korean Bioinformation Center", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1a24", "resourceHomeUrl": "http://psb.kobic.re.kr/STAP/refinement/", "institution": {"id": 1159, "name": "Korean Bioinformation Center, Korea Research Institute of Bioscience and Biotechnology, Daejeon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "KR", "countryName": "Korea, Republic of"}}, "location": {"countryCode": "KR", "countryName": "Korea, Republic of"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1a24", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1161, "prefix": "pocketome", "mirId": "MIR:00000400", "name": "Pocketome", "pattern": "^[A-Za-z_0-9]+", "description": "Pocketome is an encyclopedia of conformational ensembles of all druggable binding sites that can be identified experimentally from co-crystal structures in the Protein Data Bank. Each Pocketome entry corresponds to a small molecule binding site in a protein which has been co-crystallized in complex with at least one drug-like small molecule, and is represented in at least two PDB entries.", "created": "2019-06-11T14:17:12.099+0000", "modified": "2019-06-11T14:17:12.099+0000", "resources": [{"id": 1163, "mirId": "MIR:00100520", "urlPattern": "http://www.pocketome.org/files/{$id}.html", "name": "Pocketome at UCSD Skaggs School", "description": "Pocketome at UCSD Skaggs School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1433C_TOBAC_1_252", "resourceHomeUrl": "http://www.pocketome.org/sfSearch.cgi?act=browseall", "institution": {"id": 1162, "name": "UCSD Skaggs School of Pharmacy and Pharmaceutical Sciences, La Jolla, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1433C_TOBAC_1_252", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1169, "prefix": "bugbase.protocol", "mirId": "MIR:00000403", "name": "BugBase Protocol", "pattern": "^\\d+$", "description": "BugBase is a MIAME-compliant microbial gene expression and comparative genomic database. It stores experimental annotation and multiple raw and analysed data formats, as well as protocols for bacterial microarray designs. This collection references design protocols.", "created": "2019-06-11T14:17:12.749+0000", "modified": "2019-06-11T14:17:12.749+0000", "resources": [{"id": 1171, "mirId": "MIR:00100523", "urlPattern": "http://bugs.sgul.ac.uk/bugsbase/tabs/protocol.php?protocol_id={$id}&action=view", "name": "BugBase Protocol at University of London", "description": "BugBase Protocol at University of London", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "67", "resourceHomeUrl": "http://bugs.sgul.ac.uk/E-BUGS", "institution": {"id": 1170, "name": "St George's, University of London", "homeUrl": "https://www.sgul.ac.uk/", "description": "St George\u2019s Hospital Medical School was established in 1733 and initially based at Hyde Park Corner, before moving to our Tooting site in 1980. It was the second institution in England to provide formal training courses for doctors.\nSt George\u2019s has a dynamic research culture, with teams working to improve the health of people of all ages, from children to the elderly, in populations locally and globally.", "rorId": "https://ror.org/040f08y74", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "67", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1172, "prefix": "bugbase.expt", "mirId": "MIR:00000404", "name": "BugBase Expt", "pattern": "^\\d+$", "description": "BugBase is a MIAME-compliant microbial gene expression and comparative genomic database. It stores experimental annotation and multiple raw and analysed data formats, as well as protocols for bacterial microarray designs. This collection references microarray experiments.", "created": "2019-06-11T14:17:12.968+0000", "modified": "2019-06-11T14:17:12.968+0000", "resources": [{"id": 1173, "mirId": "MIR:00100524", "urlPattern": "http://bugs.sgul.ac.uk/bugsbase/tabs/experiment.php?expt_id={$id}&action=view", "name": "BugBase Expt at University of London", "description": "BugBase Expt at University of London", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "288", "resourceHomeUrl": "http://bugs.sgul.ac.uk/E-BUGS", "institution": {"id": 1170, "name": "St George's, University of London", "homeUrl": "https://www.sgul.ac.uk/", "description": "St George\u2019s Hospital Medical School was established in 1733 and initially based at Hyde Park Corner, before moving to our Tooting site in 1980. It was the second institution in England to provide formal training courses for doctors.\nSt George\u2019s has a dynamic research culture, with teams working to improve the health of people of all ages, from children to the elderly, in populations locally and globally.", "rorId": "https://ror.org/040f08y74", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "288", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1174, "prefix": "tol", "mirId": "MIR:00000405", "name": "Tree of Life", "pattern": "^\\d+$", "description": "The Tree of Life Web Project (ToL) is a collaborative effort of biologists and nature enthusiasts from around the world. On more than 10,000 World Wide Web pages, the project provides information about biodiversity, the characteristics of different groups of organisms, and their evolutionary history (phylogeny). \r\n\r\nEach page contains information about a particular group, with pages linked one to another hierarchically, in the form of the evolutionary tree of life. Starting with the root of all Life on Earth and moving out along diverging branches to individual species, the structure of the ToL project thus illustrates the genetic connections between all living things.", "created": "2019-06-11T14:17:13.167+0000", "modified": "2019-06-11T14:17:13.167+0000", "resources": [{"id": 1176, "mirId": "MIR:00100525", "urlPattern": "http://tolweb.org/{$id}", "name": "Tree of Life Web", "description": "Tree of Life Web", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "98034", "resourceHomeUrl": "http://tolweb.org/tree/", "institution": {"id": 1175, "name": "University of Arizona", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "98034", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1177, "prefix": "vario", "mirId": "MIR:00000406", "name": "VariO", "pattern": "^VariO:\\d+$", "description": "The Variation Ontology (VariO) is an ontology for the standardized, systematic description of effects, consequences and mechanisms of variations. It describes the effects of variations at the DNA, RNA and/or protein level.", "created": "2019-06-11T14:17:13.429+0000", "modified": "2019-06-11T14:17:13.429+0000", "resources": [{"id": 1180, "mirId": "MIR:00100566", "urlPattern": "http://purl.bioontology.org/ontology/VARIO/VariO:{$id}", "name": "VariO through BioPortal", "description": "VariO through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0294", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/VARIO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1181, "mirId": "MIR:00100677", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/vario/terms?obo_id=VariO:{$id}", "name": "VariO through OLS", "description": "VariO through OLS", "official": false, "providerCode": "ols", "sampleId": "0294", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/vario", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1179, "mirId": "MIR:00100526", "urlPattern": "http://www.ontobee.org/search?ontology=VariO&keywords=VariO_{$id}&submit=Search+terms", "name": "VariO at Lund University", "description": "VariO at Lund University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0294", "resourceHomeUrl": "http://www.variationontology.org/", "institution": {"id": 1178, "name": "Department of Experimental Medical Science, Lund University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "SE", "countryName": "Sweden"}}, "location": {"countryCode": "SE", "countryName": "Sweden"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0294", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1182, "prefix": "vipr", "mirId": "MIR:00000407", "name": "ViPR Strain", "pattern": "^[A-Za-z 0-9]+$", "description": "The Virus Pathogen Database and Analysis Resource (ViPR) supports bioinformatics workflows for a broad range of human virus pathogens and other related viruses. It provides access to sequence records, gene and protein annotations, immune epitopes, 3D structures, and host factor data. This collection references viral strain information.", "created": "2019-06-11T14:17:13.893+0000", "modified": "2019-06-11T14:17:13.893+0000", "resources": [{"id": 1184, "mirId": "MIR:00100527", "urlPattern": "http://www.viprbrc.org/brc/viprStrainDetails.do?strainName={$id}&decorator=arena", "name": "ViPR Strain at J. Craig Venter Institute", "description": "ViPR Strain at J. Craig Venter Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BeAn 70563", "resourceHomeUrl": "http://www.viprbrc.org/brc/home.do?decorator=vipr", "institution": {"id": 1183, "name": "J. Craig Venter Institute, San Diego, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BeAn 70563", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1185, "prefix": "epd", "mirId": "MIR:00000408", "name": "EPD", "pattern": "^[A-Z-_0-9]+$", "description": "The Eukaryotic Promoter Database (EPD) is an annotated non-redundant collection of eukaryotic POL II promoters, for which the transcription start site has been determined experimentally. Access to promoter sequences is provided by pointers to positions in nucleotide sequence entries. The annotation part of an entry includes description of the initiation site mapping data, cross-references to other databases, and bibliographic references. EPD is structured in a way that facilitates dynamic extraction of biologically meaningful promoter subsets for comparative sequence analysis.", "created": "2019-06-11T14:17:14.109+0000", "modified": "2019-06-11T14:17:14.109+0000", "resources": [{"id": 1186, "mirId": "MIR:00100528", "urlPattern": "http://epd.vital-it.ch/cgi-bin/query_result.pl?out_format=NICE&Entry_0={$id}", "name": "EPD at Swiss Institute of Bioinformatics", "description": "EPD at Swiss Institute of Bioinformatics", "official": false, "providerCode": "sib", "sampleId": "TA_H3", "resourceHomeUrl": "http://epd.vital-it.ch/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TA_H3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1187, "prefix": "rfam", "mirId": "MIR:00000409", "name": "RFAM", "pattern": "^RF\\d{5}$", "description": "The Rfam database is a collection of RNA families, each represented by multiple sequence alignments, consensus secondary structures and covariance models (CMs). The families in Rfam break down into three broad functional classes: non-coding RNA genes, structured cis-regulatory elements and self-splicing RNAs. Typically these functional RNAs often have a conserved secondary structure which may be better preserved than the RNA sequence. The CMs used to describe each family are a slightly more complicated relative of the profile hidden Markov models (HMMs) used by Pfam. CMs can simultaneously model RNA sequence and the structure in an elegant and accurate fashion.", "created": "2019-06-11T14:17:14.331+0000", "modified": "2019-06-11T14:17:14.331+0000", "resources": [{"id": 1188, "mirId": "MIR:00100686", "urlPattern": "https://rfam.xfam.org/family/{$id}", "name": "Rfam at EMBL-EBI", "description": "Rfam at EMBL-EBI", "official": true, "providerCode": "ebi", "sampleId": "RF00230", "resourceHomeUrl": "https://rfam.xfam.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "RF00230", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1189, "prefix": "fbol", "mirId": "MIR:00000410", "name": "Fungal Barcode", "pattern": "^\\d+$", "description": "DNA barcoding is the use of short standardised segments of the genome for identification of species in all the Kingdoms of Life. The goal of the Fungal Barcoding site is to promote the DNA barcoding of fungi and other fungus-like organisms.", "created": "2019-06-11T14:17:14.533+0000", "modified": "2019-06-11T14:17:14.533+0000", "resources": [{"id": 1191, "mirId": "MIR:00100532", "urlPattern": "http://www.fungalbarcoding.org/BioloMICS.aspx?Table=Fungal barcodes&Rec={$id}&Fields=All&ExactMatch=T", "name": "Fungal Barcode at Fungal Biodiversity Centre", "description": "Fungal Barcode at Fungal Biodiversity Centre", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2224", "resourceHomeUrl": "http://www.fungalbarcoding.org/", "institution": {"id": 1190, "name": "Fungal Biodiversity Centre, Utrecht", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2224", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1192, "prefix": "aftol.taxonomy", "mirId": "MIR:00000411", "name": "AFTOL", "pattern": "^\\d+$", "description": "The Assembling the Fungal Tree of Life (AFTOL) project is dedicated to significantly enhancing our understanding of the evolution of the Kingdom Fungi, which represents one of the major clades of life. There are roughly 80,000 described species of Fungi, but the actual diversity in the group has been estimated to be about 1.5 million species.", "created": "2019-06-11T14:17:14.756+0000", "modified": "2019-06-11T14:17:14.756+0000", "resources": [{"id": 1194, "mirId": "MIR:00100533", "urlPattern": "http://wasabi.lutzonilab.net/pub/displayTaxonInfo?aftol_id={$id}", "name": "AFTOL at University of Minnesota", "description": "AFTOL at University of Minnesota", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "959", "resourceHomeUrl": "http://aftol.org/data.php", "institution": {"id": 1193, "name": "Department of Plant Biology, University of Minnesota, Minnesota", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "959", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1195, "prefix": "aspgd.locus", "mirId": "MIR:00000412", "name": "AspGD Locus", "pattern": "^[A-Za-z_0-9]+$", "description": "The Aspergillus Genome Database (AspGD) is a repository for information relating to fungi of the genus Aspergillus, which includes organisms of clinical, agricultural and industrial importance. AspGD facilitates comparative genomics by providing a full-featured genomics viewer, as well as matched and standardized sets of genomic information for the sequenced aspergilli. This collection references gene information.", "created": "2019-06-11T14:17:14.975+0000", "modified": "2019-06-11T14:17:14.975+0000", "resources": [{"id": 1197, "mirId": "MIR:00100534", "urlPattern": "http://www.aspergillusgenome.org/cgi-bin/locus.pl?dbid={$id}", "name": "AspGD at Stanford Medical School", "description": "AspGD at Stanford Medical School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ASPL0000349247", "resourceHomeUrl": "http://www.aspgd.org/", "institution": {"id": 1196, "name": "Department of Genetics, Stanford University Medical School, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ASPL0000349247", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1198, "prefix": "aspgd.protein", "mirId": "MIR:00000413", "name": "AspGD Protein", "pattern": "^[A-Za-z_0-9]+$", "description": "The Aspergillus Genome Database (AspGD) is a repository for information relating to fungi of the genus Aspergillus, which includes organisms of clinical, agricultural and industrial importance. AspGD facilitates comparative genomics by providing a full-featured genomics viewer, as well as matched and standardized sets of genomic information for the sequenced aspergilli. This collection references protein information.", "created": "2019-06-11T14:17:15.227+0000", "modified": "2019-06-11T14:17:15.227+0000", "resources": [{"id": 1199, "mirId": "MIR:00100535", "urlPattern": "http://www.aspergillusgenome.org/cgi-bin/protein/proteinPage.pl?dbid={$id}", "name": "AspGD Protein at Stanford Medical School", "description": "AspGD Protein at Stanford Medical School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ASPL0000349247", "resourceHomeUrl": "http://www.aspgd.org/", "institution": {"id": 1196, "name": "Department of Genetics, Stanford University Medical School, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ASPL0000349247", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1237, "prefix": "ndc", "mirId": "MIR:00000431", "name": "National Drug Code", "pattern": "^\\d+\\-\\d+\\-\\d+", "description": "The National Drug Code (NDC) is a unique, three-segment number used by the Food and Drug Administration (FDA) to identify drug products for commercial use. This is required by the Drug Listing Act of 1972. The FDA publishes and updates the listed NDC numbers daily.", "created": "2019-06-11T14:17:18.754+0000", "modified": "2019-06-11T14:17:18.754+0000", "resources": [{"id": 1239, "mirId": "MIR:00100554", "urlPattern": "http://www.hipaaspace.com/Medical_Billing/Coding/National.Drug.Codes/{$id}", "name": "National Drug Code at Food and Drug Administration", "description": "National Drug Code at Food and Drug Administration", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "0002-1975-61", "resourceHomeUrl": "http://www.accessdata.fda.gov/scripts/cder/ndc/", "institution": {"id": 1238, "name": "U.S. Food and Drug Administration, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1240, "mirId": "MIR:00100700", "urlPattern": "http://ndc.bio2rdf.org/describe/?url=http://bio2rdf.org/ndc:{$id}", "name": "Bio2RDF", "description": "Bio2RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0002-1975-61", "resourceHomeUrl": "http://ndc.bio2rdf.org/fct", "institution": {"id": 33, "name": "Bio2RDF.org", "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0002-1975-61", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1200, "prefix": "autdb", "mirId": "MIR:00000415", "name": "AutDB", "pattern": "^[A-Z]+[A-Z-0-9]{2,}$", "description": "AutDB is a curated database for autism research. It is built on information extracted from the studies on molecular genetics and biology of Autism Spectrum Disorders (ASD). The four modules of AutDB include information on Human Genes, Animal models, Protein Interactions (PIN) and Copy Number Variants (CNV) respectively. It provides an annotated list of ASD candidate genes in the form of reference dataset for interrogating molecular mechanisms underlying the disorder.", "created": "2019-06-11T14:17:15.426+0000", "modified": "2019-06-11T14:17:15.426+0000", "resources": [{"id": 1202, "mirId": "MIR:00100538", "urlPattern": "http://autism.mindspec.org/GeneDetail/{$id}", "name": "AutDB at MindSpec", "description": "AutDB at MindSpec", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ADA", "resourceHomeUrl": "http://autism.mindspec.org/autdb/", "institution": {"id": 1201, "name": "MindSpec Inc., Fairfax, Virginia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ADA", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1203, "prefix": "bacmap.map", "mirId": "MIR:00000416", "name": "BacMap Map", "pattern": "^\\w+(\\_)?\\d+(\\.\\d+)?$", "description": "BacMap is an electronic, interactive atlas of fully sequenced bacterial genomes. It contains labeled, zoomable and searchable chromosome maps for sequenced prokaryotic (archaebacterial and eubacterial) species. Each map can be zoomed to the level of individual genes and each gene is hyperlinked to a richly annotated gene card. All bacterial genome maps are supplemented with separate prophage genome maps as well as separate tRNA and rRNA maps. Each bacterial chromosome entry in BacMap contains graphs and tables on a variety of gene and protein statistics. Likewise, every bacterial species entry contains a bacterial 'biography' card, with taxonomic details, phenotypic details, textual descriptions and images. This collection references genome map information.", "created": "2019-06-11T14:17:15.634+0000", "modified": "2019-06-11T14:17:15.634+0000", "resources": [{"id": 1204, "mirId": "MIR:00100539", "urlPattern": "http://bacmap.wishartlab.com/maps/{$id}/index.html", "name": "BacMap Genome Map at University of Alberta", "description": "BacMap Genome Map at University of Alberta", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AP011135", "resourceHomeUrl": "http://bacmap.wishartlab.com/", "institution": {"id": 1037, "name": "Department of Computing Science, Food and Nutritional Science, University of Alberta, Edmonton", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AP011135", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1205, "prefix": "bgee.family", "mirId": "MIR:00000417", "name": "Bgee family", "pattern": "^(ENSFM|ENSGTV:)\\d+$", "description": "Bgee is a database of gene expression patterns within particular anatomical structures within a species, and between different animal species. This collection refers to expression across species.", "created": "2019-06-11T14:17:15.821+0000", "modified": "2019-06-11T14:17:15.821+0000", "resources": [{"id": 1207, "mirId": "MIR:00100540", "urlPattern": "http://bgee.unil.ch/bgee/bgee?page=gene_family&action=family_details&gene_family_id={$id}", "name": "Bgee at Lausanne", "description": "Bgee at Lausanne", "official": false, "providerCode": "sib", "sampleId": "ENSFM00500000270089", "resourceHomeUrl": "http://bgee.unil.ch/bgee/bgee", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ENSFM00500000270089", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1208, "prefix": "bgee.gene", "mirId": "MIR:00000418", "name": "Bgee gene", "pattern": "^[A-Za-z]+\\d+$", "description": "Bgee is a database to retrieve and compare gene expression patterns in multiple species, produced from multiple data types (RNA-Seq, Affymetrix, in situ hybridization, and EST data). This collection references genes in Bgee.", "created": "2019-06-11T14:17:16.067+0000", "modified": "2019-06-11T14:17:16.067+0000", "resources": [{"id": 1210, "mirId": "MIR:00100541", "urlPattern": "https://bgee.org/?page=gene&gene_id={$id}", "name": "Bgee gene", "description": "Bgee gene", "official": false, "providerCode": "sib", "sampleId": "FBgn0000015", "resourceHomeUrl": "https://bgee.org/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "FBgn0000015", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1211, "prefix": "bgee.stage", "mirId": "MIR:00000419", "name": "Bgee stage", "pattern": "^(FBvd|XtroDO|HsapDO|MmusDO)\\:\\d+$", "description": "Bgee is a database of gene expression patterns within particular anatomical structures within a species, and between different animal species. This collection refers to developmental stages.", "created": "2019-06-11T14:17:16.333+0000", "modified": "2019-06-11T14:17:16.333+0000", "resources": [{"id": 1212, "mirId": "MIR:00100542", "urlPattern": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organs&stage_id={$id}&stage_children=on", "name": "Bgee at Lausanne", "description": "Bgee at Lausanne", "official": false, "providerCode": "sib", "sampleId": "HsapDO:0000004", "resourceHomeUrl": "http://bgee.unil.ch/bgee/bgee", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HsapDO:0000004", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1213, "prefix": "bgee.organ", "mirId": "MIR:00000420", "name": "Bgee organ", "pattern": "^(XAO|ZFA|EHDAA|EMAPA|EV|MA)\\:\\d+$", "description": "Bgee is a database of gene expression patterns within particular anatomical structures within a species, and between different animal species. This collection refers to anatomical structures.", "created": "2019-06-11T14:17:16.514+0000", "modified": "2019-06-11T14:17:16.514+0000", "resources": [{"id": 1214, "mirId": "MIR:00100543", "urlPattern": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organ_details&organ_id={$id}&organ_children=on", "name": "Bgee at Lausanne", "description": "Bgee at Lausanne", "official": false, "providerCode": "sib", "sampleId": "EHDAA:2185", "resourceHomeUrl": "http://bgee.unil.ch/bgee/bgee", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EHDAA:2185", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1215, "prefix": "biocarta.pathway", "mirId": "MIR:00000421", "name": "BioCarta Pathway", "pattern": "^([hm]\\_)?\\w+Pathway$", "description": "BioCarta is a supplier and distributor of characterized reagents and assays for biopharmaceutical and academic research. It catalogs community produced online maps depicting molecular relationships from areas of active research, generating classical pathways as well as suggestions for new pathways. This collections references pathway maps.", "created": "2019-06-11T14:17:16.688+0000", "modified": "2019-06-11T14:17:16.688+0000", "resources": [{"id": 1216, "mirId": "MIR:00100544", "urlPattern": "https://cgap.nci.nih.gov/Pathways/BioCarta/{$id}", "name": "BioCarta Pathway at NCI", "description": "BioCarta Pathway at NCI", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "h_aktPathway", "resourceHomeUrl": "https://www.biocarta.com/", "institution": {"id": 442, "name": "National Cancer Institute, Center for Bioinformatics, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "h_aktPathway", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1217, "prefix": "panther.pthcmp", "mirId": "MIR:00000422", "name": "PANTHER Pathway Component", "pattern": "^G|P|U|C|S\\d{5}$", "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. The PANTHER Pathway Component collection references specific classes of molecules that play the same mechanistic role within a pathway, across species. Pathway\r\ncomponents may be proteins, genes/DNA, RNA, or simple molecules. Where the identified component is a protein, DNA, or transcribed RNA, it is associated with protein sequences in the PANTHER protein family trees through manual curation.", "created": "2019-06-11T14:17:16.858+0000", "modified": "2019-06-11T14:17:16.858+0000", "resources": [{"id": 1218, "mirId": "MIR:00100545", "urlPattern": "http://www.pantherdb.org/pathway/pathCatDetail.do?clsAccession={$id}", "name": "PANTHER Pathway Component at USC (Los Angeles)", "description": "PANTHER Pathway Component at USC (Los Angeles)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "P00266", "resourceHomeUrl": "http://www.pantherdb.org/", "institution": {"id": 94, "name": "Keck School of Medicine, University of Southern California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P00266", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1219, "prefix": "gmd.profile", "mirId": "MIR:00000423", "name": "Golm Metabolome Database Profile", "pattern": "^([0-9a-fA-F]){8}(-([0-9a-fA-F]){4}){3}-([0-9a-fA-F]){12}$", "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. GMD's metabolite profiles provide relative metabolite concentrations normalised according to fresh weight (or comparable quantitative data, such as volume, cell count, etc.) and internal standards (e.g. ribotol) of biological reference conditions and tissues.", "created": "2019-06-11T14:17:17.038+0000", "modified": "2019-06-11T14:17:17.038+0000", "resources": [{"id": 1220, "mirId": "MIR:00100546", "urlPattern": "http://gmd.mpimp-golm.mpg.de/profile/default.aspx?XemlId={$id}", "name": "Golm Metabolome Database (Profile) at Max Planck Institute of Molecular Plant Physiology", "description": "Golm Metabolome Database (Profile) at Max Planck Institute of Molecular Plant Physiology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "10b38aaf-b977-4950-85b8-f4775f66658d", "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", "institution": {"id": 806, "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "10b38aaf-b977-4950-85b8-f4775f66658d", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1221, "prefix": "gmd.gcms", "mirId": "MIR:00000424", "name": "Golm Metabolome Database GC-MS spectra", "pattern": "^([0-9a-fA-F]){8}(-([0-9a-fA-F]){4}){3}-([0-9a-fA-F]){12}$", "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. Analytes are subjected to a gas chromatograph coupled to a mass spectrometer, which records the mass spectrum and the retention time linked to an analyte. This collection references GC-MS spectra.", "created": "2019-06-11T14:17:17.255+0000", "modified": "2019-06-11T14:17:17.255+0000", "resources": [{"id": 1222, "mirId": "MIR:00100547", "urlPattern": "http://gmd.mpimp-golm.mpg.de/Spectrums/{$id}", "name": "Golm Metabolome Database (GC-MS Spectra) at Max Planck Institute of Molecular Plant Physiology", "description": "Golm Metabolome Database (GC-MS Spectra) at Max Planck Institute of Molecular Plant Physiology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "53d583d8-40c6-40e1-9296-23f821cd77a5", "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", "institution": {"id": 806, "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "53d583d8-40c6-40e1-9296-23f821cd77a5", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1223, "prefix": "gmd.ref", "mirId": "MIR:00000425", "name": "Golm Metabolome Database Reference Substance", "pattern": "^([0-9a-fA-F]){8}(-([0-9a-fA-F]){4}){3}-([0-9a-fA-F]){12}$", "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. Since metabolites often cannot be obtained in their respective native biological state, for example organic acids may be only acquirable as salts, the concept of reference substance was introduced. This collection references reference substances.", "created": "2019-06-11T14:17:17.475+0000", "modified": "2019-06-11T14:17:17.475+0000", "resources": [{"id": 1224, "mirId": "MIR:00100548", "urlPattern": "http://gmd.mpimp-golm.mpg.de/ReferenceSubstances/{$id}", "name": "Golm Metabolome Database (Reference Substance) at Max Planck Institute of Molecular Plant Physiology", "description": "Golm Metabolome Database (Reference Substance) at Max Planck Institute of Molecular Plant Physiology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "8cf84adb-b4db-4807-ac98-0004247c35df", "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", "institution": {"id": 806, "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "8cf84adb-b4db-4807-ac98-0004247c35df", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1225, "prefix": "gmd.analyte", "mirId": "MIR:00000426", "name": "Golm Metabolome Database Analyte", "pattern": "^([0-9a-fA-F]){8}(-([0-9a-fA-F]){4}){3}-([0-9a-fA-F]){12}$", "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. For GC-MS profiling analyses, polar metabolite extracts are chemically converted, i.e. derivatised into less polar and volatile compounds, so called analytes. This collection references analytes.", "created": "2019-06-11T14:17:17.661+0000", "modified": "2019-06-11T14:17:17.661+0000", "resources": [{"id": 1226, "mirId": "MIR:00100549", "urlPattern": "http://gmd.mpimp-golm.mpg.de/Analytes/{$id}", "name": "Golm Metabolome Database (Analyte) at Max Planck Institute of Molecular Plant Physiology", "description": "Golm Metabolome Database (Analyte) at Max Planck Institute of Molecular Plant Physiology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4f0fa9b6-514f-4ff4-98cc-0009bc08eb80", "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", "institution": {"id": 806, "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4f0fa9b6-514f-4ff4-98cc-0009bc08eb80", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1227, "prefix": "intact.molecule", "mirId": "MIR:00000427", "name": "IntAct Molecule", "pattern": "^EBI\\-[0-9]+$", "description": "IntAct provides a freely available, open source database system and analysis tools for protein interaction data. This collection references interactor molecules.", "created": "2019-06-11T14:17:17.850+0000", "modified": "2019-06-11T14:17:17.850+0000", "resources": [{"id": 1228, "mirId": "MIR:00100550", "urlPattern": "https://www.ebi.ac.uk/intact/molecule/{$id}", "name": "IntAct Molecule at EBI", "description": "IntAct Molecule at EBI", "official": false, "providerCode": "ebi", "sampleId": "EBI-366083", "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EBI-366083", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1229, "prefix": "depod", "mirId": "MIR:00000428", "name": "DEPOD", "pattern": "^[A-Z0-9]+$", "description": "The human DEPhOsphorylation Database (DEPOD) contains information on known human active phosphatases and their experimentally verified protein and nonprotein substrates. Reliability scores are provided for dephosphorylation interactions, according to the type of assay used, as well as the number of laboratories that have confirmed such interaction. Phosphatase and substrate entries are listed along with the dephosphorylation site, bioassay type, and original literature, and contain links to other resources.", "created": "2019-06-11T14:17:18.034+0000", "modified": "2019-06-11T14:17:18.034+0000", "resources": [{"id": 1231, "mirId": "MIR:00100551", "urlPattern": "http://www.depod.bioss.uni-freiburg.de/showp.php?gene={$id}", "name": "DEPOD at EMBL", "description": "DEPOD at EMBL", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PTPN1", "resourceHomeUrl": "http://www.depod.bioss.uni-freiburg.de", "institution": {"id": 1230, "name": "European Molecular Biology Laboratory EMBL, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PTPN1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1232, "prefix": "cst", "mirId": "MIR:00000429", "name": "Cell Signaling Technology Pathways", "pattern": "^[A-Za-z0-9_-]+$", "description": "Cell Signaling Technology is a commercial organisation which provides a pathway portal to showcase their phospho-antibody products. This collection references pathways.", "created": "2019-06-11T14:17:18.324+0000", "modified": "2019-06-11T14:17:18.324+0000", "resources": [{"id": 1234, "mirId": "MIR:00100552", "urlPattern": "http://www.cellsignal.com/reference/pathway/{$id}.html", "name": "CST Pathways at Cell Signaling Technology", "description": "CST Pathways at Cell Signaling Technology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Akt_PKB", "resourceHomeUrl": "http://www.cellsignal.com/pathways/index.html", "institution": {"id": 1233, "name": "Cell Signaling Technology, Inc., Danvers, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Akt_PKB", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1241, "prefix": "phytozome.locus", "mirId": "MIR:00000432", "name": "Phytozome Locus", "pattern": "^[A-Za-z0-9]+$", "description": "Phytozome is a project to facilitate comparative genomic studies amongst green plants. Famlies of orthologous and paralogous genes that represent the modern descendents of ancestral gene sets are constructed at key phylogenetic nodes. These families allow easy access to clade specific orthology/paralogy relationships as well as clade specific genes and gene expansions. This collection references locus information.", "created": "2019-06-11T14:17:19.049+0000", "modified": "2019-06-11T14:17:19.049+0000", "resources": [{"id": 1243, "mirId": "MIR:00100556", "urlPattern": "http://www.phytozome.net/genePage.php?crown&method=0&search=1&detail=1&searchText=locusname:{$id}", "name": "Phytozome Locus at Joint Genome Institute", "description": "Phytozome Locus at Joint Genome Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Glyma0021s00410", "resourceHomeUrl": "http://www.phytozome.net/", "institution": {"id": 1242, "name": "Joint Genome Institute, California, and the Center for Integrative Genomics, Lausanne", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Glyma0021s00410", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1244, "prefix": "subtilist", "mirId": "MIR:00000433", "name": "SubtiList", "pattern": "^BG\\d+$", "description": "SubtiList serves to collate and integrate various aspects of the genomic information from B. subtilis, the paradigm of sporulating Gram-positive bacteria.\r\nSubtiList provides a complete dataset of DNA and protein sequences derived from the paradigm strain B. subtilis 168, linked to the relevant annotations and functional assignments.", "created": "2019-06-11T14:17:19.310+0000", "modified": "2019-06-11T14:17:19.310+0000", "resources": [{"id": 1246, "mirId": "MIR:00100557", "urlPattern": "http://genolist.pasteur.fr/SubtiList/genome.cgi?external_query+{$id}", "name": "SubtiList at Pasteur Institute", "description": "SubtiList at Pasteur Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BG11523", "resourceHomeUrl": "http://genolist.pasteur.fr/SubtiList/", "institution": {"id": 1245, "name": "Pasteur Institute, Paris", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BG11523", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1247, "prefix": "dailymed", "mirId": "MIR:00000434", "name": "DailyMed", "pattern": "^[A-Za-z0-9-]+", "description": "DailyMed provides information about marketed drugs. This information includes FDA labels (package inserts). The Web site provides a standard, comprehensive, up-to-date, look-up and download resource of medication content and labeling as found in medication package inserts. Drug labeling is the most recent submitted to the Food and Drug Administration (FDA) and currently in use; it may include, for example, strengthened warnings undergoing FDA review or minor editorial changes. These labels have been reformatted to make them easier to read.", "created": "2019-06-11T14:17:19.532+0000", "modified": "2019-06-11T14:17:19.532+0000", "resources": [{"id": 1249, "mirId": "MIR:00100558", "urlPattern": "https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid={$id}", "name": "DailyMed at NLM", "description": "DailyMed at NLM", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "973a9333-fec7-46dd-8eb5-25738f06ee54", "resourceHomeUrl": "https://dailymed.nlm.nih.gov/dailymed/", "institution": {"id": 1248, "name": "U.S. National Library of Medicine, Bethesda, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "973a9333-fec7-46dd-8eb5-25738f06ee54", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1250, "prefix": "sider.drug", "mirId": "MIR:00000435", "name": "SIDER Drug", "pattern": "^\\d+$", "description": "SIDER (Side Effect Resource) is a public, computer-readable side effect resource that connects drugs to side effect terms. It aggregates dispersed public information on side effects. This collection references drugs in SIDER.", "created": "2019-06-11T14:17:19.846+0000", "modified": "2019-06-11T14:17:19.846+0000", "resources": [{"id": 1252, "mirId": "MIR:00100559", "urlPattern": "http://sideeffects.embl.de/drugs/{$id}/", "name": "SIDER Drug v2 at EMBL (Heidelberg)", "description": "SIDER Drug v2 at EMBL (Heidelberg)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2244", "resourceHomeUrl": "http://sideeffects.embl.de/", "institution": {"id": 1251, "name": "Structural and Computational Biology Unit, European Molecular Biology Laboratory, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2244", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1253, "prefix": "sider.effect", "mirId": "MIR:00000436", "name": "SIDER Side Effect", "pattern": "^C\\d+$", "description": "SIDER (Side Effect Resource) is a public, computer-readable side effect resource that connects drugs to side effect terms. It aggregates dispersed public information on side effects. This collection references side effects of drugs as referenced in SIDER.", "created": "2019-06-11T14:17:20.079+0000", "modified": "2019-06-11T14:17:20.079+0000", "resources": [{"id": 1254, "mirId": "MIR:00100560", "urlPattern": "http://sideeffects.embl.de/se/{$id}/", "name": "SIDER Side Effect v2 at EMBL (Heidelberg)", "description": "SIDER Side Effect v2 at EMBL (Heidelberg)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "C0017565", "resourceHomeUrl": "http://sideeffects.embl.de/", "institution": {"id": 1251, "name": "Structural and Computational Biology Unit, European Molecular Biology Laboratory, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C0017565", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1255, "prefix": "wikigenes", "mirId": "MIR:00000437", "name": "WikiGenes", "pattern": "^\\d+$", "description": "WikiGenes is a collaborative knowledge resource for the life sciences, which is based on the general wiki idea but employs specifically developed technology to serve as a rigorous scientific tool. The rationale behind WikiGenes is to provide a platform for the scientific community to collect, communicate and evaluate knowledge about genes, chemicals, diseases and other biomedical concepts in a bottom-up process.", "created": "2019-06-11T14:17:20.303+0000", "modified": "2019-06-11T14:17:20.303+0000", "resources": [{"id": 1257, "mirId": "MIR:00100567", "urlPattern": "http://www.wikigenes.org/e/gene/e/{$id}.html", "name": "WikiGenes at Massachusetts Institute of Technology", "description": "WikiGenes at Massachusetts Institute of Technology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "3771877", "resourceHomeUrl": "http://www.wikigenes.org/", "institution": {"id": 1256, "name": "Computer Science and Artificial Intelligence Laboratory, Massachusetts Institute of Technology, Cambridge, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3771877", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1258, "prefix": "broad", "mirId": "MIR:00000438", "name": "Broad Fungal Genome Initiative", "pattern": "^S\\d+$", "description": "Magnaporthe grisea, the causal agent of rice blast disease, is one of the most devasting threats to food security worldwide and is a model organism for studying fungal phytopathogenicity and host-parasite interactions. The Magnaporthe comparative genomics database provides accesses to multiple fungal genomes from the Magnaporthaceae family to facilitate the comparative analysis. As part of the Broad Fungal Genome Initiative, the Magnaporthe comparative project includes the finished M. oryzae (formerly M. grisea) genome, as well as the draft assemblies of Gaeumannomyces graminis var. tritici and M. poae.", "created": "2019-06-11T14:17:20.539+0000", "modified": "2019-06-11T14:17:20.539+0000", "resources": [{"id": 1260, "mirId": "MIR:00100569", "urlPattern": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/GeneDetails.html?sp={$id}", "name": "Broad Fungal Genome Initiative at Broad Institute", "description": "Broad Fungal Genome Initiative at Broad Institute", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "S7000002168151102", "resourceHomeUrl": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/", "institution": {"id": 1259, "name": "Broad Institute of MIT and Harvard, Cambridge, Massachuchetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "S7000002168151102", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1261, "prefix": "coriell", "mirId": "MIR:00000439", "name": "Coriell Cell Repositories", "pattern": "^[A-Z]{2}\\d+$", "description": "The Coriell Cell Repositories provide essential research reagents to the scientific community by establishing, verifying, maintaining, and distributing cell cultures and DNA derived from cell cultures. These collections, supported by funds from the National Institutes of Health (NIH) and several foundations, are extensively utilized by research scientists around the world.", "created": "2019-06-11T14:17:20.763+0000", "modified": "2019-06-11T14:17:20.763+0000", "resources": [{"id": 1263, "mirId": "MIR:00100570", "urlPattern": "http://ccr.coriell.org/Sections/Search/Sample_Detail.aspx?Ref={$id}", "name": "Coriell Cell Repositories at Coriell Institute", "description": "Coriell Cell Repositories at Coriell Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "GM17027", "resourceHomeUrl": "http://ccr.coriell.org/", "institution": {"id": 1262, "name": "Coriell Institute for Medical Research, New Jersey", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GM17027", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1264, "prefix": "corum", "mirId": "MIR:00000440", "name": "CORUM", "pattern": "^\\d+$", "description": "The CORUM database provides a resource of manually annotated protein complexes from mammalian organisms. Annotation includes protein complex function, localization, subunit composition, literature references and more. All information is obtained from individual experiments published in scientific articles, data from high-throughput experiments is excluded.", "created": "2019-06-11T14:17:20.995+0000", "modified": "2019-06-11T14:17:20.995+0000", "resources": [{"id": 1266, "mirId": "MIR:00100571", "urlPattern": "https://mips.helmholtz-muenchen.de/corum/?id={$id}", "name": "CORUM at Institute for Bioinformatics and Systems Biology (Germany)", "description": "CORUM at Institute for Bioinformatics and Systems Biology (Germany)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "100", "resourceHomeUrl": "https://mips.helmholtz-muenchen.de/genre/proj/corum/", "institution": {"id": 1265, "name": "Institute for Bioinformatics and Systems Biology, Helmholtz Zentrum M&uuml;nchen-German Research Center for Environmental Health, Neuherberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1267, "prefix": "ecoliwiki", "mirId": "MIR:00000442", "name": "EcoliWiki", "pattern": "^[A-Za-z0-9-]+$", "description": "EcoliWiki is a wiki-based resource to store information related to non-pathogenic E. coli, its phages, plasmids, and mobile genetic elements. This collection references genes.", "created": "2019-06-11T14:17:21.287+0000", "modified": "2019-06-11T14:17:21.287+0000", "resources": [{"id": 1269, "mirId": "MIR:00100573", "urlPattern": "http://ecoliwiki.net/colipedia/index.php/{$id}:Gene", "name": "EcoliWiki at Texas Agrilife Research", "description": "EcoliWiki at Texas Agrilife Research", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "aaeA", "resourceHomeUrl": "http://ecoliwiki.net/colipedia/", "institution": {"id": 1268, "name": "Texas Agrilife Research, Texas A&M University College Station", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "aaeA", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1270, "prefix": "genprop", "mirId": "MIR:00000443", "name": "Genome Properties", "pattern": "^GenProp\\d+$", "description": "Genome properties is an annotation system whereby functional attributes can be assigned to a genome, based on the presence of a defined set of protein signatures within that genome.", "created": "2019-06-11T14:17:21.507+0000", "modified": "2019-06-11T14:17:21.507+0000", "resources": [{"id": 1271, "mirId": "MIR:00100910", "urlPattern": "https://www.ebi.ac.uk/interpro/genomeproperties/#{$id}", "name": "Genome Properties", "description": "Genome Properties", "official": true, "providerCode": "ebi", "sampleId": "GenProp0699", "resourceHomeUrl": "https://www.ebi.ac.uk/interpro/genomeproperties/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GenProp0699", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1272, "prefix": "jstor", "mirId": "MIR:00000444", "name": "JSTOR", "pattern": "^\\d+$", "description": "JSTOR (Journal Storage) is a digital library containing digital versions of historical academic journals, as well as books, pamphlets and current issues of journals. Some public domain content is free to access, while other articles require registration.", "created": "2019-06-11T14:17:21.690+0000", "modified": "2019-06-11T14:17:21.690+0000", "resources": [{"id": 1274, "mirId": "MIR:00100575", "urlPattern": "http://www.jstor.org/stable/{$id}", "name": "JSTOR Online", "description": "JSTOR Online", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "3075966", "resourceHomeUrl": "http://www.jstor.org/", "institution": {"id": 1273, "name": "Ithaka Harbors, Inc., New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3075966", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1275, "prefix": "ma", "mirId": "MIR:00000445", "name": "Mouse Adult Gross Anatomy", "pattern": "^MA:\\d+$", "description": "A structured controlled vocabulary of the adult anatomy of the mouse (Mus)", "created": "2019-06-11T14:17:21.919+0000", "modified": "2019-06-11T14:17:21.919+0000", "resources": [{"id": 1276, "mirId": "MIR:00100576", "urlPattern": "http://purl.bioontology.org/ontology/MA/MA:{$id}", "name": "Mouse Adult Gross Anatomy through BioPortal", "description": "Mouse Adult Gross Anatomy through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0002502", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/MA", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1277, "mirId": "MIR:00100577", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ma/terms?obo_id=MA:{$id}", "name": "Mouse Adult Gross Anatomy through OLS", "description": "Mouse Adult Gross Anatomy through OLS", "official": false, "providerCode": "ols", "sampleId": "0002502", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ma", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1279, "mirId": "MIR:00100578", "urlPattern": "http://www.informatics.jax.org/searches/AMA.cgi?id=MA:{$id}", "name": "Mouse Adult Gross Anatomy at The Jackson Laboratory", "description": "Mouse Adult Gross Anatomy at The Jackson Laboratory", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "0002502", "resourceHomeUrl": "http://www.informatics.jax.org/", "institution": {"id": 1278, "name": "The Jackson Laboratory, Bar Harbor, Maine", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0002502", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1283, "prefix": "unimod", "mirId": "MIR:00000447", "name": "Unimod", "pattern": "^\\d+$", "description": "Unimod is a public domain database created to provide a community supported, comprehensive database of protein modifications for mass spectrometry applications. That is, accurate and verifiable values, derived from elemental compositions, for the mass differences introduced by all types of natural and artificial modifications. Other important information includes any mass change, (neutral loss), that occurs during MS/MS analysis, and site specificity, (which residues are susceptible to modification and any constraints on the position of the modification within the protein or peptide).", "created": "2019-06-11T14:17:22.748+0000", "modified": "2019-06-11T14:17:22.748+0000", "resources": [{"id": 1285, "mirId": "MIR:00100581", "urlPattern": "http://www.unimod.org/modifications_view.php?editid1={$id}", "name": "Unimod at Matrix Sciences Ltd.", "description": "Unimod at Matrix Sciences Ltd.", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1200", "resourceHomeUrl": "http://www.unimod.org/", "institution": {"id": 1284, "name": "Matrix Science Ltd., London", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1200", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1286, "prefix": "vbrc", "mirId": "MIR:00000448", "name": "VBRC", "pattern": "^\\d+$", "description": "The VBRC provides bioinformatics resources to support scientific research directed at viruses belonging to the Arenaviridae, Bunyaviridae, Filoviridae, Flaviviridae, Paramyxoviridae, Poxviridae, and Togaviridae families. The Center consists of a relational database and web application that support the data storage, annotation, analysis, and information exchange goals of this work. Each data release contains the complete genomic sequences for all viral pathogens and related strains that are available for species in the above-named families. In addition to sequence data, the VBRC provides a curation for each virus species, resulting in a searchable, comprehensive mini-review of gene function relating genotype to biological phenotype, with special emphasis on pathogenesis.", "created": "2019-06-11T14:17:22.962+0000", "modified": "2019-06-11T14:17:22.962+0000", "resources": [{"id": 1288, "mirId": "MIR:00100582", "urlPattern": "http://vbrc.org/gene_detail.asp?gene_id={$id}", "name": "VBRC at University of Alabama", "description": "VBRC at University of Alabama", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "35742", "resourceHomeUrl": "http://vbrc.org/", "institution": {"id": 1287, "name": "University of Alabama, Birmingham and the University of Victoria, British Columbia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "35742", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1289, "prefix": "viralzone", "mirId": "MIR:00000449", "name": "ViralZone", "pattern": "^\\d+$", "description": "ViralZone is a resource bridging textbook knowledge with genomic and proteomic sequences. It provides fact sheets on all known virus families/genera with easy access to sequence data. A selection of reference strains (RefStrain) provides annotated standards to circumvent the exponential increase of virus sequences. Moreover ViralZone offers a complete set of detailed and accurate virion pictures.", "created": "2019-06-11T14:17:23.207+0000", "modified": "2019-06-11T14:17:23.207+0000", "resources": [{"id": 1291, "mirId": "MIR:00100583", "urlPattern": "http://viralzone.expasy.org/all_by_protein/{$id}.html", "name": "ViralZone at SIB", "description": "ViralZone at SIB", "official": false, "providerCode": "sib", "sampleId": "992", "resourceHomeUrl": "http://www.expasy.org/viralzone/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "992", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1294, "prefix": "rgd.qtl", "mirId": "MIR:00000451", "name": "Rat Genome Database qTL", "pattern": "^\\d+$", "description": "Rat Genome Database seeks to collect, consolidate, and integrate rat genomic and genetic data with curated functional and physiological data and make these data widely available to the scientific community. This collection references quantitative trait loci (qTLs), providing phenotype and disease descriptions, mapping, and strain information as well as links to markers and candidate genes.", "created": "2019-06-11T14:17:23.659+0000", "modified": "2019-06-11T14:17:23.659+0000", "resources": [{"id": 1296, "mirId": "MIR:00100586", "urlPattern": "http://rgd.mcw.edu/rgdweb/report/qtl/main.html?id={$id}", "name": "Rat Genome Database qTL at Medical College of Wisconsin", "description": "Rat Genome Database qTL at Medical College of Wisconsin", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1354581", "resourceHomeUrl": "http://rgd.mcw.edu/", "institution": {"id": 1295, "name": "Medical College of Wisconsin, Milwaukee, Wisconsin", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1354581", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1297, "prefix": "rgd.strain", "mirId": "MIR:00000452", "name": "Rat Genome Database strain", "pattern": "^\\d+$", "description": "Rat Genome Database seeks to collect, consolidate, and integrate rat genomic and genetic data with curated functional and physiological data and make these data widely available to the scientific community. This collection references strain reports, which include a description of strain origin, disease, phenotype, genetics and immunology.", "created": "2019-06-11T14:17:23.876+0000", "modified": "2019-06-11T14:17:23.876+0000", "resources": [{"id": 1298, "mirId": "MIR:00100587", "urlPattern": "http://rgd.mcw.edu/rgdweb/report/strain/main.html?id={$id}", "name": "Rat Genome Database strain at Medical College of Wisconsin", "description": "Rat Genome Database strain at Medical College of Wisconsin", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "5688061", "resourceHomeUrl": "http://rgd.mcw.edu/", "institution": {"id": 1295, "name": "Medical College of Wisconsin, Milwaukee, Wisconsin", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5688061", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1299, "prefix": "door", "mirId": "MIR:00000453", "name": "DOOR", "pattern": "^\\d+$", "description": "DOOR (Database for prOkaryotic OpeRons) contains computationally predicted operons of all the sequenced prokaryotic genomes. It includes operons for RNA genes.", "created": "2019-06-11T14:17:24.062+0000", "modified": "2019-06-11T14:17:24.062+0000", "resources": [{"id": 1301, "mirId": "MIR:00100588", "urlPattern": "http://csbl.bmb.uga.edu/DOOR/operon.php?id={$id}", "name": "DOOR v1 at University of Georgia", "description": "DOOR v1 at University of Georgia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1398574", "resourceHomeUrl": "http://csbl.bmb.uga.edu/DOOR/operon.php", "institution": {"id": 1300, "name": "Computational Systems Biology Laboratory, Department of Biochemistry and Molecular Biology, University of Georgia, Athens, Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1398574", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1302, "prefix": "degradome", "mirId": "MIR:00000454", "name": "Degradome Database", "pattern": "^[AMCST][0-9x][0-9]$", "description": "The Degradome Database contains information on the complete set of predicted proteases present in a a variety of mammalian species that have been subjected to whole genome sequencing. Each protease sequence is curated and, when necessary, cloned and sequenced.", "created": "2019-06-11T14:17:24.294+0000", "modified": "2019-06-11T14:17:24.294+0000", "resources": [{"id": 1304, "mirId": "MIR:00100589", "urlPattern": "http://degradome.uniovi.es/cgi-bin/protease/{$id}", "name": "Degradome Database at", "description": "Degradome Database at", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Ax1", "resourceHomeUrl": "http://degradome.uniovi.es/", "institution": {"id": 1303, "name": "Departamento de Bioqu&amp;iacute;mica y Biolog&amp;iacute;a Molecular, Facultad de Medicina, Universidad de Oviedo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "ES", "countryName": "Spain"}}, "location": {"countryCode": "ES", "countryName": "Spain"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Ax1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1305, "prefix": "dbd", "mirId": "MIR:00000455", "name": "DBD", "pattern": "^\\d+$", "description": "The DBD (transcription factor database) provides genome-wide transcription factor predictions for organisms across the tree of life. The prediction method identifies sequence-specific DNA-binding transcription factors through homology using profile hidden Markov models (HMMs) of domains from Pfam and SUPERFAMILY. It does not include basal transcription factors or chromatin-associated proteins.", "created": "2019-06-11T14:17:24.514+0000", "modified": "2019-06-11T14:17:24.514+0000", "resources": [{"id": 1306, "mirId": "MIR:00100590", "urlPattern": "http://www.transcriptionfactor.org/index.cgi?Search/Domain+domain:{$id}+cat:DBD", "name": "DBD at MRC Laboratory of Molecular Biology", "description": "DBD at MRC Laboratory of Molecular Biology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0045310", "resourceHomeUrl": "http://www.transcriptionfactor.org/", "institution": {"id": 1026, "name": "MRC Laboratory of Molecular Biology, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0045310", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1307, "prefix": "datf", "mirId": "MIR:00000456", "name": "DATF", "pattern": "^AT[1-5]G\\d{5}(\\.\\d+)?$", "description": "DATF contains known and predicted Arabidopsis transcription factors (1827 genes in 56 families) with the unique information of 1177 cloned sequences and many other features including 3D structure templates, EST expression information, transcription factor binding sites and nuclear location signals.", "created": "2019-06-11T14:17:24.701+0000", "modified": "2019-06-11T14:17:24.701+0000", "resources": [{"id": 1309, "mirId": "MIR:00100591", "urlPattern": "http://planttfdb.cbi.pku.edu.cn/tf.php?sp=Ath&did={$id}", "name": "DATF through PlantTFDB", "description": "DATF through PlantTFDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AT1G01030.1", "resourceHomeUrl": "http://datf.cbi.pku.edu.cn/", "institution": {"id": 1612, "name": "Peking University", "homeUrl": "http://english.pku.edu.cn/", "description": "Peking University is a comprehensive and national key university. The campus, known as \"Yan Yuan\"\uff08the garden of Yan\uff09, is situated at Haidian District in the western suburb of Beijing, with a total area of 2,743,532 square metres (or 274 hectares). It stands near to the Yuanmingyuan Garden and the Summer Palace.\nPeking University is proud of its outstanding faculty, including 48 members of the Chinese Academy of Sciences (CAS), 9 members of the Chinese Academy of Engineering (CAE), and 21 members of the Third World Academy of Sciences (TWAS).", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AT1G01030.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1310, "prefix": "iuphar.ligand", "mirId": "MIR:00000457", "name": "IUPHAR ligand", "pattern": "^\\d+$", "description": "The IUPHAR Compendium details the molecular, biophysical and pharmacological properties of identified mammalian sodium, calcium and potassium channels, as well as the related cyclic nucleotide-modulated ion channels and the recently described transient receptor potential channels. It includes information on nomenclature systems, and on inter and intra-species molecular structure variation. This collection references ligands.", "created": "2019-06-11T14:17:24.936+0000", "modified": "2019-06-11T14:17:24.936+0000", "resources": [{"id": 1311, "mirId": "MIR:00100592", "urlPattern": "http://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId={$id}", "name": "IUPHAR ligand at University of Edinburgh", "description": "IUPHAR ligand at University of Edinburgh", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "1755", "resourceHomeUrl": "http://www.guidetopharmacology.org/GRAC/LigandListForward?database=all", "institution": {"id": 827, "name": "Centre for Cardiovascular Science, University of Edinburgh, Edinburgh", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1755", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1312, "prefix": "molbase", "mirId": "MIR:00000458", "name": "Molbase", "pattern": "^(\\d{1,7}\\-\\d{2}\\-\\d)|([A-Za-z0-9\\+\\-\\_]+)$", "description": "Molbase provides compound data information for researchers as well as listing suppliers and price information. It can be searched by keyword or CAS indetifier.", "created": "2019-06-11T14:17:25.144+0000", "modified": "2019-06-11T14:17:25.144+0000", "resources": [{"id": 1314, "mirId": "MIR:00100593", "urlPattern": "http://www.molbase.com/en/index.php?app=search&search_keyword={$id}", "name": "Molbase at Chinese Academy of Sciences", "description": "Molbase at Chinese Academy of Sciences", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "128796-39-4", "resourceHomeUrl": "http://www.molbase.com/", "institution": {"id": 1313, "name": "Chinese Academy of Sciences, Xuhui District Shanghai", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "128796-39-4", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1315, "prefix": "yrcpdr", "mirId": "MIR:00000459", "name": "YRC PDR", "pattern": "^\\d+$", "description": "The Yeast Resource Center Public Data Repository (YRC PDR) serves as a single point of access for the experimental data produced from many collaborations typically studying Saccharomyces cerevisiae (baker's yeast). The experimental data include large amounts of mass spectrometry results from protein co-purification experiments, yeast two-hybrid interaction experiments, fluorescence microscopy images and protein structure predictions.", "created": "2019-06-11T14:17:25.397+0000", "modified": "2019-06-11T14:17:25.397+0000", "resources": [{"id": 1317, "mirId": "MIR:00100594", "urlPattern": "http://yeastrc.org/pdr/viewProtein.do?id={$id}", "name": "YRC PDR at University of Washington", "description": "YRC PDR at University of Washington", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2673500", "resourceHomeUrl": "http://www.yeastrc.org/pdr/", "institution": {"id": 1316, "name": "Department of Biochemistry, University of Washington, Seattle", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2673500", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1318, "prefix": "yid", "mirId": "MIR:00000460", "name": "Yeast Intron Database v3", "pattern": "^[A-Z0-9]+$", "description": "The YEast Intron Database (version 3) contains information on the spliceosomal introns of the yeast Saccharomyces cerevisiae. It includes expression data that relates to the efficiency of splicing relative to other processes in strains of yeast lacking nonessential splicing factors. The data are displayed on each intron page. An updated version of the database is available through [MIR:00000521].", "created": "2019-06-11T14:17:25.610+0000", "modified": "2019-06-11T14:17:25.610+0000", "resources": [{"id": 1320, "mirId": "MIR:00100595", "urlPattern": "http://metarray.ucsc.edu/cgi-bin/intron/yirIntrondb?orfName={$id}", "name": "Yeast Intron Database version 3 at Baskin School of Engineering", "description": "Yeast Intron Database version 3 at Baskin School of Engineering", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SNR17A", "resourceHomeUrl": "http://compbio.soe.ucsc.edu/yeast_introns.html", "institution": {"id": 1319, "name": "University of California, Santa Cruz", "homeUrl": "https://www.ucsc.edu", "description": "UC Santa Cruz opened in 1965 with 650 students. During the 2018-2019 academic year, 16,983 undergraduate and 1,822 graduate students were enrolled.\n", "rorId": "https://ror.org/03s65by71", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SNR17A", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1321, "prefix": "funcbase.fly", "mirId": "MIR:00000461", "name": "FuncBase Fly", "pattern": "^\\d+$", "description": "Computational gene function prediction can serve to focus experimental resources on high-priority experimental tasks. FuncBase is a web resource for viewing quantitative machine learning-based gene function annotations. Quantitative annotations of genes, including fungal and mammalian genes, with Gene Ontology terms are accompanied by a community feedback system. Evidence underlying function annotations is shown. FuncBase provides links to external resources, and may be accessed directly or via links from species-specific databases. This collection references Drosophila data.", "created": "2019-06-11T14:17:25.854+0000", "modified": "2019-06-11T14:17:25.854+0000", "resources": [{"id": 1323, "mirId": "MIR:00100596", "urlPattern": "http://func.mshri.on.ca/fly/genes/list_functional_scores/{$id}", "name": "FuncBase Fly at Harvard Medical School", "description": "FuncBase Fly at Harvard Medical School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "10194", "resourceHomeUrl": "http://func.mshri.on.ca/fly", "institution": {"id": 1322, "name": "Harvard Medical School, Boston, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "10194", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1324, "prefix": "funcbase.human", "mirId": "MIR:00000462", "name": "FuncBase Human", "pattern": "^\\d+$", "description": "Computational gene function prediction can serve to focus experimental resources on high-priority experimental tasks. FuncBase is a web resource for viewing quantitative machine learning-based gene function annotations. Quantitative annotations of genes, including fungal and mammalian genes, with Gene Ontology terms are accompanied by a community feedback system. Evidence underlying function annotations is shown. FuncBase provides links to external resources, and may be accessed directly or via links from species-specific databases. This collection references human data.", "created": "2019-06-11T14:17:26.074+0000", "modified": "2019-06-11T14:17:26.074+0000", "resources": [{"id": 1325, "mirId": "MIR:00100597", "urlPattern": "http://func.mshri.on.ca/human/genes/list_functional_scores/{$id}", "name": "FuncBase Human at Harvard Medical School", "description": "FuncBase Human at Harvard Medical School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "119514", "resourceHomeUrl": "http://func.mshri.on.ca/human/", "institution": {"id": 1322, "name": "Harvard Medical School, Boston, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "119514", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1326, "prefix": "funcbase.mouse", "mirId": "MIR:00000463", "name": "FuncBase Mouse", "pattern": "^\\d+$", "description": "Computational gene function prediction can serve to focus experimental resources on high-priority experimental tasks. FuncBase is a web resource for viewing quantitative machine learning-based gene function annotations. Quantitative annotations of genes, including fungal and mammalian genes, with Gene Ontology terms are accompanied by a community feedback system. Evidence underlying function annotations is shown. FuncBase provides links to external resources, and may be accessed directly or via links from species-specific databases. This collection references mouse.", "created": "2019-06-11T14:17:26.285+0000", "modified": "2019-06-11T14:17:26.285+0000", "resources": [{"id": 1327, "mirId": "MIR:00100598", "urlPattern": "http://func.mshri.on.ca/mouse/genes/list_functional_scores/{$id}", "name": "FuncBase Mouse at Harvard Medical School", "description": "FuncBase Mouse at Harvard Medical School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1351341", "resourceHomeUrl": "http://func.mshri.on.ca/mouse/", "institution": {"id": 1322, "name": "Harvard Medical School, Boston, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1351341", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1881, "prefix": "cbioportal", "mirId": "MIR:00000679", "name": "The cBioPortal for Cancer Genomics", "pattern": "^[a-z0-9\\_]+$", "description": "The cBioPortal for Cancer Genomics provides visualization, analysis and download of large-scale cancer genomics data sets.", "created": "2019-06-11T14:18:18.874+0000", "modified": "2019-06-11T14:18:18.874+0000", "resources": [{"id": 1883, "mirId": "MIR:00100909", "urlPattern": "http://www.cbioportal.org/study?id={$id}#summary", "name": "The cBioPortal for Cancer Genomics", "description": "The cBioPortal for Cancer Genomics", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "laml_tcga_pub", "resourceHomeUrl": "http://www.cbioportal.org", "institution": {"id": 1882, "name": "Memorial Sloan Kettering Cancer Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "laml_tcga_pub", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1328, "prefix": "funcbase.yeast", "mirId": "MIR:00000464", "name": "FuncBase Yeast", "pattern": "^\\d+$", "description": "Computational gene function prediction can serve to focus experimental resources on high-priority experimental tasks. FuncBase is a web resource for viewing quantitative machine learning-based gene function annotations. Quantitative annotations of genes, including fungal and mammalian genes, with Gene Ontology terms are accompanied by a community feedback system. Evidence underlying function annotations is shown. FuncBase provides links to external resources, and may be accessed directly or via links from species-specific databases. This collection references yeast.", "created": "2019-06-11T14:17:26.470+0000", "modified": "2019-06-11T14:17:26.470+0000", "resources": [{"id": 1329, "mirId": "MIR:00100599", "urlPattern": "http://func.mshri.on.ca/yeast/genes/list_functional_scores/{$id}", "name": "FuncBase Yeast at Harvard Medical School", "description": "FuncBase Yeast at Harvard Medical School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2701", "resourceHomeUrl": "http://func.mshri.on.ca/yeast", "institution": {"id": 1322, "name": "Harvard Medical School, Boston, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2701", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1330, "prefix": "ydpm", "mirId": "MIR:00000465", "name": "YDPM", "pattern": "^Y[A-Z]{2}\\d+[CW]$", "description": "The YDPM database serves to support the Yeast Deletion and the Mitochondrial Proteomics Project. The project aims to increase the understanding of mitochondrial function and biogenesis in the context of the cell. In the Deletion Project, strains from the deletion collection were monitored under 9 different media conditions selected for the study of mitochondrial function. The YDPM database contains both the raw data and growth rates calculated for each strain in each media condition.", "created": "2019-06-11T14:17:26.654+0000", "modified": "2019-06-11T14:17:26.654+0000", "resources": [{"id": 1332, "mirId": "MIR:00100600", "urlPattern": "http://www-deletion.stanford.edu/cgi-bin/YDPM/YDPM_search.cgi?thelist={$id}", "name": "YDPM at Stanford University School of Medicine", "description": "YDPM at Stanford University School of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "YAL001C", "resourceHomeUrl": "http://www-deletion.stanford.edu/YDPM/", "institution": {"id": 1331, "name": "Stanford University School of Medicine, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "YAL001C", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1333, "prefix": "wb.rnai", "mirId": "MIR:00000466", "name": "WormBase RNAi", "pattern": "^WBRNAi\\d{8}$", "description": "WormBase is an online bioinformatics database of the biology and genome of the model organism Caenorhabditis elegans and related nematodes. It is used by the C. elegans research community both as an information resource and as a mode to publish and distribute their results. This collection references RNAi experiments, detailing target and phenotypes.", "created": "2019-06-11T14:17:26.886+0000", "modified": "2019-06-11T14:17:26.886+0000", "resources": [{"id": 1334, "mirId": "MIR:00100601", "urlPattern": "https://www.wormbase.org/species/c_elegans/rnai/{$id}", "name": "WormBase RNAi", "description": "WormBase RNAi", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "WBRNAi00086878", "resourceHomeUrl": "https://www.wormbase.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "WBRNAi00086878", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1335, "prefix": "pass2", "mirId": "MIR:00000468", "name": "PASS2", "pattern": "^\\d+$", "description": "The PASS2 database provides alignments of proteins related at the superfamily level and are characterized by low sequence identity.", "created": "2019-06-11T14:17:27.086+0000", "modified": "2019-06-11T14:17:27.086+0000", "resources": [{"id": 1337, "mirId": "MIR:00100603", "urlPattern": "http://caps.ncbs.res.in/cgi-bin/pass2//show_sf.py?sf_id={$id}", "name": "PASS2 at National centre for Biological Sciences (India)", "description": "PASS2 at National centre for Biological Sciences (India)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "46977", "resourceHomeUrl": "http://caps.ncbs.res.in/pass2/", "institution": {"id": 1336, "name": "National centre for Biological Sciences, TIFR, GKVK campus, Bangalore, Karnataka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "46977", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1338, "prefix": "iceberg.element", "mirId": "MIR:00000469", "name": "ICEberg element", "pattern": "^\\d+$", "description": "ICEberg (Integrative and conjugative elements) is a database of integrative and conjugative elements (ICEs) found in bacteria. ICEs are conjugative self-transmissible elements that can integrate into and excise from a host chromosome, and can carry likely virulence determinants, antibiotic-resistant factors and/or genes coding for other beneficial traits. It contains details of ICEs found in representatives bacterial species, and which are organised as families. This collection references ICE elements.", "created": "2019-06-11T14:17:27.338+0000", "modified": "2019-06-11T14:17:27.338+0000", "resources": [{"id": 1340, "mirId": "MIR:00100604", "urlPattern": "http://db-mml.sjtu.edu.cn/ICEberg/feature_page.php?ice_id={$id}", "name": "ICEberg element at Shanghai Jiaotong University", "description": "ICEberg element at Shanghai Jiaotong University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "100", "resourceHomeUrl": "http://db-mml.sjtu.edu.cn/ICEberg/", "institution": {"id": 1339, "name": "State Key Laboratory of Microbial Metabolism and School of Life Sciences &amp;amp;amp; Biotechnology, Shanghai Jiaotong University, Shanghai", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1341, "prefix": "iceberg.family", "mirId": "MIR:00000470", "name": "ICEberg family", "pattern": "^\\d+$", "description": "ICEberg (Integrative and conjugative elements) is a database of integrative and conjugative elements (ICEs) found in bacteria. ICEs are conjugative self-transmissible elements that can integrate into and excise from a host chromosome, and can carry likely virulence determinants, antibiotic-resistant factors and/or genes coding for other beneficial traits. It contains details of ICEs found in representatives bacterial species, and which are organised as families. This collection references ICE families.", "created": "2019-06-11T14:17:27.601+0000", "modified": "2019-06-11T14:17:27.601+0000", "resources": [{"id": 1343, "mirId": "MIR:00100605", "urlPattern": "http://db-mml.sjtu.edu.cn/ICEberg/browse_result.php?type=fam&fam_id={$id}", "name": "ICEberg family at Shanghai Jiaotong University", "description": "ICEberg family at Shanghai Jiaotong University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1", "resourceHomeUrl": "http://db-mml.sjtu.edu.cn/ICEberg/", "institution": {"id": 1342, "name": "State Key Laboratory of Microbial Metabolism and School of Life Sciences &amp; Biotechnology, Shanghai Jiaotong University, Shanghai", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1344, "prefix": "vfdb.genus", "mirId": "MIR:00000471", "name": "VFDB Genus", "pattern": "^\\w+$", "description": "VFDB is a repository of virulence factors (VFs) of pathogenic bacteria.This collection references VF information by Genus.", "created": "2019-06-11T14:17:27.811+0000", "modified": "2019-06-11T14:17:27.811+0000", "resources": [{"id": 1346, "mirId": "MIR:00100606", "urlPattern": "http://www.mgc.ac.cn/cgi-bin/VFs/genus.cgi?Genus={$id}", "name": "VFDB Genus at Institute of Pathogen Biology", "description": "VFDB Genus at Institute of Pathogen Biology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Chlamydia", "resourceHomeUrl": "http://www.mgc.ac.cn/VFs/", "institution": {"id": 1345, "name": "State Key Laboratory for Molecular Virology and Genetic Engineering, Institute of Pathogen Biology, Chinese Academy Medical Sciences and Peking Union Medical College, Beijing", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Chlamydia", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1347, "prefix": "vfdb.gene", "mirId": "MIR:00000472", "name": "VFDB Gene", "pattern": "^\\w+$", "description": "VFDB is a repository of virulence factors (VFs) of pathogenic bacteria.This collection references VF genes.", "created": "2019-06-11T14:17:28.027+0000", "modified": "2019-06-11T14:17:28.027+0000", "resources": [{"id": 1348, "mirId": "MIR:00100607", "urlPattern": "http://www.mgc.ac.cn/cgi-bin/VFs/gene.cgi?GeneID={$id}", "name": "VFDB Gene at Institute of Pathogen Biology", "description": "VFDB Gene at Institute of Pathogen Biology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "VFG2154", "resourceHomeUrl": "http://www.mgc.ac.cn/VFs/", "institution": {"id": 1345, "name": "State Key Laboratory for Molecular Virology and Genetic Engineering, Institute of Pathogen Biology, Chinese Academy Medical Sciences and Peking Union Medical College, Beijing", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "VFG2154", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1349, "prefix": "mesh.2013", "mirId": "MIR:00000473", "name": "MeSH 2013", "pattern": "^[A-Za-z0-9]+$", "description": "MeSH (Medical Subject Headings) is the National Library of Medicine's controlled vocabulary thesaurus. It consists of sets of terms naming descriptors in a hierarchical structure that permits searching at various levels of specificity. This thesaurus is used by NLM for indexing articles from biomedical journals, cataloging of books, documents, etc. This collection references MeSH terms published in 2013.", "created": "2019-06-11T14:17:28.224+0000", "modified": "2019-06-11T14:17:28.224+0000", "resources": [{"id": 1350, "mirId": "MIR:00100608", "urlPattern": "http://www.nlm.nih.gov/cgi/mesh/2013/MB_cgi?mode=&index={$id}&view=expanded", "name": "MeSH 2013 at National Library of Medicine", "description": "MeSH 2013 at National Library of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "17165", "resourceHomeUrl": "http://www.nlm.nih.gov/mesh/", "institution": {"id": 792, "name": "U.S. National Library of Medicine, National Institute of Health, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "17165", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1351, "prefix": "kegg.module", "mirId": "MIR:00000474", "name": "KEGG Module", "pattern": "^([a-z]{3,5}_)?M\\d{5}$", "description": "KEGG Modules are manually defined functional units used in the annotation and biological interpretation of sequenced genomes. Each module corresponds to a set of 'KEGG Orthology' (MIR:00000116) entries. KEGG Modules can represent pathway, structural, functional or signature modules.", "created": "2019-06-11T14:17:28.414+0000", "modified": "2019-06-11T14:17:28.414+0000", "resources": [{"id": 1352, "mirId": "MIR:00100609", "urlPattern": "http://www.kegg.jp/entry/{$id}", "name": "KEGG Module at Kyoto University Bioinformatics Center", "description": "KEGG Module at Kyoto University Bioinformatics Center", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "M00002", "resourceHomeUrl": "http://www.kegg.jp/kegg/module.html", "institution": {"id": 367, "name": "Department of Computational Biology, University of Tokyo, Tokyo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "M00002", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1353, "prefix": "kegg.disease", "mirId": "MIR:00000475", "name": "KEGG Disease", "pattern": "^H\\d+$", "description": "The KEGG DISEASE database is a collection of disease entries capturing knowledge on genetic and environmental perturbations. Each disease entry contains a list of known genetic factors (disease genes), environmental factors, diagnostic markers, and therapeutic drugs. Diseases are viewed as perturbed states of the molecular system, and drugs as perturbants to the molecular system.", "created": "2019-06-11T14:17:28.601+0000", "modified": "2019-06-11T14:17:28.601+0000", "resources": [{"id": 1354, "mirId": "MIR:00100610", "urlPattern": "http://www.kegg.jp/entry/{$id}", "name": "KEGG Disease at Kyoto University Bioinformatics Center", "description": "KEGG Disease at Kyoto University Bioinformatics Center", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "H00076", "resourceHomeUrl": "http://www.genome.jp/kegg/disease/", "institution": {"id": 705, "name": "Kyoto University Bioinformatics Center, Kyoto", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "H00076", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1355, "prefix": "medlineplus", "mirId": "MIR:00000476", "name": "MedlinePlus", "pattern": "^\\d+$", "description": "MedlinePlus is the National Institutes of Health's Web site for patients and their families and friends. Produced by the National Library of Medicine, it provides information about diseases, conditions, and wellness issues using non-technical terms and language.", "created": "2019-06-11T14:17:28.795+0000", "modified": "2019-06-11T14:17:28.795+0000", "resources": [{"id": 1356, "mirId": "MIR:00100611", "urlPattern": "http://www.nlm.nih.gov/medlineplus/ency/article/{$id}.htm", "name": "MedlinePlus at NCBI", "description": "MedlinePlus at NCBI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "002804", "resourceHomeUrl": "http://www.nlm.nih.gov/medlineplus/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "002804", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1360, "prefix": "glycoepitope", "mirId": "MIR:00000478", "name": "GlycoEpitope", "pattern": "^EP\\d{4}$", "description": "GlycoEpitope is a database containing useful information about carbohydrate antigens (glyco-epitopes) and the antibodies (polyclonal or monoclonal) that can be used to analyze their expression. This collection references Glycoepitopes.", "created": "2019-06-11T14:17:29.214+0000", "modified": "2019-06-11T14:17:29.214+0000", "resources": [{"id": 1362, "mirId": "MIR:00100613", "urlPattern": "https://www.glycoepitope.jp/epitopes/{$id}", "name": "GlycoEpitope at Ritsumeikan University", "description": "GlycoEpitope at Ritsumeikan University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "EP0311", "resourceHomeUrl": "https://www.glycoepitope.jp/epitopes/", "institution": {"id": 1361, "name": "Kawasaki laboratory, Research Center for Glycobiotechnology, Ritsumeikan University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EP0311", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1363, "prefix": "jcggdb", "mirId": "MIR:00000479", "name": "JCGGDB", "pattern": "^JCGG-STR\\d{6}$", "description": "JCGGDB (Japan Consortium for Glycobiology and Glycotechnology DataBase) is a database that aims to integrate all glycan-related data held in various repositories in Japan. This includes databases for large-quantity synthesis of glycogenes and glycans, analysis and detection of glycan structure and glycoprotein, glycan-related differentiation markers, glycan functions, glycan-related diseases and transgenic and knockout animals, etc.", "created": "2019-06-11T14:17:29.437+0000", "modified": "2019-06-11T14:17:29.437+0000", "resources": [{"id": 1365, "mirId": "MIR:00100614", "urlPattern": "http://jcggdb.jp/idb/jcggdb/{$id}", "name": "JCGGDB at Advanced Science Institute (Japan)", "description": "JCGGDB at Advanced Science Institute (Japan)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "JCGG-STR008690", "resourceHomeUrl": "http://jcggdb.jp/index_en.html", "institution": {"id": 1364, "name": "RIKEN Advanced Science Institute", "homeUrl": "http://www.riken.jp/en/about/reports/evaluation/asi/", "description": "Established by RIKEN in April 2008, based on the DRI (Discovery Research Institute) and the FRS (Frontier Research System). ASI is unique since it is structured as comprehensive system supporting the full range of scientific fields including high energy/nuclear/astro-physics, condensed matter physics, chemistry, electronic engineering, biology and medicine.", "rorId": "https://ror.org/030vbmf58", "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "JCGG-STR008690", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1366, "prefix": "noncodev4.gene", "mirId": "MIR:00000480", "name": "NONCODE v4 Gene", "pattern": "^NONHSAG\\d{5}$", "description": "NONCODE is a database of expression and functional lncRNA (long noncoding RNA) data obtained from microarray studies. LncRNAs have been shown to play key roles in various biological processes such as imprinting control, circuitry controlling pluripotency and differentiation, immune responses and chromosome dynamics. The collection references NONCODE version 4 and relates to gene regions.", "created": "2019-06-11T14:17:29.649+0000", "modified": "2019-06-11T14:17:29.649+0000", "resources": [{"id": 1367, "mirId": "MIR:00100616", "urlPattern": "http://www.bioinfo.org/NONCODEv4/show_gene.php?id={$id}", "name": "NONCODE v4 Gene at Chinese Academy of Sciences", "description": "NONCODE v4 Gene at Chinese Academy of Sciences", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "NONHSAG00001", "resourceHomeUrl": "http://www.bioinfo.org/NONCODEv4/", "institution": {"id": 737, "name": "Chinese Academy of Sciences", "homeUrl": "http://english.cas.cn/", "description": "The Chinese Academy of Sciences is the linchpin of China\u2019s drive to explore and harness high technology and the natural sciences for the benefit of China and the world. CAS brings together scientists and engineers from China and around the world to address both theoretical and applied problems using world-class scientific and management approaches.", "rorId": "https://ror.org/034t30j35", "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "NONHSAG00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1884, "prefix": "vfb", "mirId": "MIR:00000680", "name": "Virtual Fly Brain", "pattern": "^[0-9a-zA-Z]{8}$", "description": "An interactive tool for neurobiologists to explore the detailed neuroanatomy, neuron connectivity and gene expression of the Drosophila melanogaster.", "created": "2019-06-11T14:18:19.150+0000", "modified": "2019-06-11T14:18:19.150+0000", "resources": [{"id": 1886, "mirId": "MIR:00100911", "urlPattern": "http://virtualflybrain.org/reports/{$id}", "name": "Virtual Fly Brain", "description": "Virtual Fly Brain", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "00000001", "resourceHomeUrl": "https://VirtualFlyBrain.org", "institution": {"id": 1885, "name": "The University of Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1368, "prefix": "noncodev4.rna", "mirId": "MIR:00000481", "name": "NONCODE v4 Transcript", "pattern": "^NONHSAT\\d{6}$", "description": "NONCODE is a database of expression and functional lncRNA (long noncoding RNA) data obtained from microarray studies. LncRNAs have been shown to play key roles in various biological processes such as imprinting control, circuitry controlling pluripotency and differentiation, immune responses and chromosome dynamics. The collection references NONCODE version 4 and relates to individual transcripts.", "created": "2019-06-11T14:17:29.833+0000", "modified": "2019-06-11T14:17:29.833+0000", "resources": [{"id": 1369, "mirId": "MIR:00100617", "urlPattern": "http://www.bioinfo.org/NONCODEv4/show_rna.php?id={$id}", "name": "NONCODE v4 Transcript at Chinese Academy of Sciences", "description": "NONCODE v4 Transcript at Chinese Academy of Sciences", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "NONHSAT000001", "resourceHomeUrl": "http://www.bioinfo.org/NONCODEv4/", "institution": {"id": 737, "name": "Chinese Academy of Sciences", "homeUrl": "http://english.cas.cn/", "description": "The Chinese Academy of Sciences is the linchpin of China\u2019s drive to explore and harness high technology and the natural sciences for the benefit of China and the world. CAS brings together scientists and engineers from China and around the world to address both theoretical and applied problems using world-class scientific and management approaches.", "rorId": "https://ror.org/034t30j35", "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "NONHSAT000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1370, "prefix": "oryzabase.gene", "mirId": "MIR:00000482", "name": "Oryzabase Gene", "pattern": "^\\d+$", "description": "Oryzabase provides a view of rice (Oryza sativa) as a model monocot plant by integrating biological data with molecular genomic information. It contains information about rice development and anatomy, rice mutants, and genetic resources, especially for wild varieties of rice. Developmental and anatomical descriptions include in situ gene expression data serving as stage and tissue markers. This collection references gene information.", "created": "2019-06-11T14:17:30.027+0000", "modified": "2019-06-11T14:17:30.027+0000", "resources": [{"id": 1372, "mirId": "MIR:00100618", "urlPattern": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/gene/detail/{$id}", "name": "Oryzabase v4 Gene at National Institute of Genetics (Japan)", "description": "Oryzabase v4 Gene at National Institute of Genetics (Japan)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "117", "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "institution": {"id": 1371, "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "117", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1373, "prefix": "oryzabase.mutant", "mirId": "MIR:00000483", "name": "Oryzabase Mutant", "pattern": "^\\d+$", "description": "Oryzabase provides a view of rice (Oryza sativa) as a model monocot plant by integrating biological data with molecular genomic information. It contains information about rice development and anatomy, rice mutants, and genetic resources, especially for wild varieties of rice. Developmental and anatomical descriptions include in situ gene expression data serving as stage and tissue markers. This collection references mutant strain information.", "created": "2019-06-11T14:17:30.248+0000", "modified": "2019-06-11T14:17:30.248+0000", "resources": [{"id": 1374, "mirId": "MIR:00100619", "urlPattern": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/inducedMutationLine/detail/{$id}", "name": "Oryzabase v4 Mutant at National Institute of Genetics (Japan)", "description": "Oryzabase v4 Mutant at National Institute of Genetics (Japan)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "21393", "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "institution": {"id": 1371, "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "21393", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1375, "prefix": "oryzabase.strain", "mirId": "MIR:00000484", "name": "Oryzabase Strain", "pattern": "^\\d+$", "description": "Oryzabase provides a view of rice (Oryza sativa) as a model monocot plant by integrating biological data with molecular genomic information. It contains information about rice development and anatomy, rice mutants, and genetic resources, especially for wild varieties of rice. Developmental and anatomical descriptions include in situ gene expression data serving as stage and tissue markers. This collection references wild strain information.", "created": "2019-06-11T14:17:30.425+0000", "modified": "2019-06-11T14:17:30.425+0000", "resources": [{"id": 1376, "mirId": "MIR:00100620", "urlPattern": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/wildCore/detail/{$id}", "name": "Oryzabase v4 Strain at National Institute of Genetics (Japan)", "description": "Oryzabase v4 Strain at National Institute of Genetics (Japan)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1", "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "institution": {"id": 1371, "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1377, "prefix": "oryzabase.stage", "mirId": "MIR:00000485", "name": "Oryzabase Stage", "pattern": "^\\d+$", "description": "Oryzabase provides a view of rice (Oryza sativa) as a model monocot plant by integrating biological data with molecular genomic information. It contains information about rice development and anatomy, rice mutants, and genetic resources, especially for wild varieties of rice. Developmental and anatomical descriptions include in situ gene expression data serving as stage and tissue markers. This collection references development stage information.", "created": "2019-06-11T14:17:30.616+0000", "modified": "2019-06-11T14:17:30.616+0000", "resources": [{"id": 1378, "mirId": "MIR:00100621", "urlPattern": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/devstageineachorgan/detail/{$id}", "name": "Oryzabase v4 Stage at National Institute of Genetics (Japan)", "description": "Oryzabase v4 Stage at National Institute of Genetics (Japan)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "34", "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "institution": {"id": 1371, "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "34", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1379, "prefix": "otl", "mirId": "MIR:00000486", "name": "Oryza Tag Line", "pattern": "^A[A-Z]+\\d+$", "description": "Oryza Tag Line is a database that was developed to collect information generated from the characterization of rice (Oryza sativa L cv. Nipponbare) insertion lines resulting in potential gene disruptions. It collates morpho-physiological alterations observed during field evaluation, with each insertion line documented through a generic passport data including production records, seed stocks and FST information.", "created": "2019-06-11T14:17:30.833+0000", "modified": "2019-06-11T14:17:30.833+0000", "resources": [{"id": 1381, "mirId": "MIR:00100622", "urlPattern": "http://oryzatagline.cirad.fr/cgi-bin/general_mutant.pl?line={$id}", "name": "Oryza Tag Line at CIRAD-INRA-SUPAGRO-UMI", "description": "Oryza Tag Line at CIRAD-INRA-SUPAGRO-UMI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AADB12", "resourceHomeUrl": "http://oryzatagline.cirad.fr/", "institution": {"id": 1380, "name": "CIRAD-INRA-SUPAGRO-UMII, Biological Systems Department, Montpellier", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AADB12", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1382, "prefix": "genewiki", "mirId": "MIR:00000487", "name": "Gene Wiki", "pattern": "^\\d+$", "description": "The Gene Wiki is project which seeks to provide detailed information on human genes. Initial 'stub' articles are created in an automated manner, with further information added by the community. Gene Wiki can be accessed in wikipedia using Gene identifiers from NCBI.", "created": "2019-06-11T14:17:31.086+0000", "modified": "2019-06-11T14:17:31.086+0000", "resources": [{"id": 1383, "mirId": "MIR:00100623", "urlPattern": "http://plugins.biogps.org/cgi-bin/wp.cgi?id={$id}", "name": "Gene Wiki through BioGPS", "description": "Gene Wiki through BioGPS", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1017", "resourceHomeUrl": "http://en.wikipedia.org/wiki/Gene_Wiki", "institution": {"id": 1111, "name": "Wikimedia Foundation, San Francisco, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1017", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1384, "prefix": "paxdb.organism", "mirId": "MIR:00000488", "name": "PaxDb Organism", "pattern": "^\\d+$", "description": "PaxDb is a resource dedicated to integrating information on absolute protein abundance levels across different organisms. Publicly available experimental data are mapped onto a common namespace and, in the case of tandem mass spectrometry data, re-processed using a standardized spectral counting pipeline. Data sets are scored and ranked to assess consistency against externally provided protein-network information. PaxDb provides whole-organism data as well as tissue-resolved data, for numerous proteins. This collection references protein abundance information by species.", "created": "2019-06-11T14:17:31.315+0000", "modified": "2019-06-11T14:17:31.315+0000", "resources": [{"id": 1386, "mirId": "MIR:00100624", "urlPattern": "http://pax-db.org/#!species/{$id}", "name": "PaxDb v3 at University of Zurich", "description": "PaxDb v3 at University of Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "9606", "resourceHomeUrl": "http://pax-db.org/", "institution": {"id": 1385, "name": "Institute of Molecular Life Sciences, University of Zurich, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "9606", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1387, "prefix": "paxdb.protein", "mirId": "MIR:00000489", "name": "PaxDb Protein", "pattern": "^\\d+$", "description": "PaxDb is a resource dedicated to integrating information on absolute protein abundance levels across different organisms. Publicly available experimental data are mapped onto a common namespace and, in the case of tandem mass spectrometry data, re-processed using a standardized spectral counting pipeline. Data sets are scored and ranked to assess consistency against externally provided protein-network information. PaxDb provides whole-organism data as well as tissue-resolved data, for numerous proteins. This collection references individual protein abundance levels.", "created": "2019-06-11T14:17:31.566+0000", "modified": "2019-06-11T14:17:31.566+0000", "resources": [{"id": 1388, "mirId": "MIR:00100625", "urlPattern": "http://pax-db.org/#!protein/{$id}", "name": "PaxDb v3 at University of Zurich", "description": "PaxDb v3 at University of Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "977869", "resourceHomeUrl": "http://pax-db.org/", "institution": {"id": 1385, "name": "Institute of Molecular Life Sciences, University of Zurich, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "977869", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1389, "prefix": "pdb.ligand", "mirId": "MIR:00000490", "name": "Protein Data Bank Ligand", "pattern": "^[A-Za-z0-9]+$", "description": "The Protein Data Bank is the single worldwide archive of structural data of biological macromolecules. This collection references ligands.", "created": "2019-06-11T14:17:31.784+0000", "modified": "2019-06-11T14:17:31.784+0000", "resources": [{"id": 1390, "mirId": "MIR:00100626", "urlPattern": "http://www.rcsb.org/pdb/ligand/ligandsummary.do?hetId={$id}", "name": "PDB Ligand at RCSB", "description": "PDB Ligand at RCSB", "official": false, "providerCode": "rcsb", "sampleId": "TRQ", "resourceHomeUrl": "http://www.pdb.org/", "institution": {"id": 79, "name": "Rutgers, The State University of New Jersey", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1391, "mirId": "MIR:00100650", "urlPattern": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/chemicalCompound/show/{$id}", "name": "PDB Ligand at Protein Databank in Europe (PDBe)", "description": "PDB Ligand at Protein Databank in Europe (PDBe)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TRQ", "resourceHomeUrl": "https://www.pdbe.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TRQ", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1392, "prefix": "merops.inhibitor", "mirId": "MIR:00000491", "name": "MEROPS Inhibitor", "pattern": "^I\\d{2}\\.\\d{3}$", "description": "The MEROPS database is an information resource for peptidases (also termed proteases, proteinases and proteolytic enzymes) and the proteins that inhibit them. This collections references inhibitors.", "created": "2019-06-11T14:17:32.129+0000", "modified": "2019-06-11T14:17:32.129+0000", "resources": [{"id": 1394, "mirId": "MIR:00100632", "urlPattern": "http://merops.sanger.ac.uk/cgi-bin/pepsum?id={$id}", "name": "MEROPS Inhibitor at Sanger Institute", "description": "MEROPS Inhibitor at Sanger Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "I31.952", "resourceHomeUrl": "http://merops.sanger.ac.uk/index.htm", "institution": {"id": 1393, "name": "Wellcome Trust Sanger Institute, Wellcome Trust Genome Campus, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "I31.952", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1395, "prefix": "adw", "mirId": "MIR:00000492", "name": "Animal Diversity Web", "pattern": "^[A-Z_a-z]+$", "description": "Animal Diversity Web (ADW) is an online database of animal natural history, distribution, classification, and conservation biology.", "created": "2019-06-11T14:17:32.366+0000", "modified": "2019-06-11T14:17:32.366+0000", "resources": [{"id": 1397, "mirId": "MIR:00100633", "urlPattern": "https://animaldiversity.org/accounts/{$id}/", "name": "Animal Diversity Web at University of Michigan", "description": "Animal Diversity Web at University of Michigan", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Lycalopex_vetulus", "resourceHomeUrl": "https://animaldiversity.org/", "institution": {"id": 1396, "name": "University of Michigan Museum of Zoology, Ann Arbor, Michigan", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Lycalopex_vetulus", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1398, "prefix": "glida.gpcr", "mirId": "MIR:00000493", "name": "GLIDA GPCR", "pattern": "^[A-Z-_0-9]+$", "description": "The GPCR-LIgand DAtabase (GLIDA) is a GPCR-related chemical genomic database that is primarily focused on the correlation of information between GPCRs and their ligands. It provides correlation data between GPCRs and their ligands, along with chemical information on the ligands. This collection references G-protein coupled receptors.", "created": "2019-06-11T14:17:32.633+0000", "modified": "2019-06-11T14:17:32.633+0000", "resources": [{"id": 1400, "mirId": "MIR:00100634", "urlPattern": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/gpcr_information.php?id={$id}", "name": "GLIDA GPCR at Kyoto University", "description": "GLIDA GPCR at Kyoto University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ACM1_HUMAN", "resourceHomeUrl": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/", "institution": {"id": 1399, "name": "Department of Genomic Drug Discovery Science, Graduate School of Pharmaceutical Sciences, Kyoto University, Sakyo-ku, Kyoto", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ACM1_HUMAN", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1401, "prefix": "glida.ligand", "mirId": "MIR:00000494", "name": "GLIDA Ligand", "pattern": "^L\\d+$", "description": "The GPCR-LIgand DAtabase (GLIDA) is a GPCR-related chemical genomic database that is primarily focused on the correlation of information between GPCRs and their ligands. It provides correlation data between GPCRs and their ligands, along with chemical information on the ligands. This collection references ligands.", "created": "2019-06-11T14:17:32.872+0000", "modified": "2019-06-11T14:17:32.872+0000", "resources": [{"id": 1402, "mirId": "MIR:00100635", "urlPattern": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/ligand_information.php?id={$id}", "name": "GLIDA Ligand at Kyoto University", "description": "GLIDA Ligand at Kyoto University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "L000001", "resourceHomeUrl": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/", "institution": {"id": 1399, "name": "Department of Genomic Drug Discovery Science, Graduate School of Pharmaceutical Sciences, Kyoto University, Sakyo-ku, Kyoto", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "L000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1403, "prefix": "grsdb", "mirId": "MIR:00000495", "name": "GRSDB", "pattern": "^\\d+$", "description": "GRSDB is a database of G-quadruplexes and contains information on composition and distribution of putative Quadruplex-forming G-Rich Sequences (QGRS) mapped in the eukaryotic pre-mRNA sequences, including those that are alternatively processed (alternatively spliced or alternatively polyadenylated). The data stored in the GRSDB is based on computational analysis of NCBI Entrez Gene entries and their corresponding annotated genomic nucleotide sequences of RefSeq/GenBank.", "created": "2019-06-11T14:17:33.087+0000", "modified": "2019-06-11T14:17:33.087+0000", "resources": [{"id": 1405, "mirId": "MIR:00100636", "urlPattern": "http://bioinformatics.ramapo.edu/GRSDB2/geneview.php?geneID={$id}", "name": "GRSDB v2 at Ramapo College of New Jersey", "description": "GRSDB v2 at Ramapo College of New Jersey", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "10142", "resourceHomeUrl": "http://bioinformatics.ramapo.edu/GRSDB2/", "institution": {"id": 1404, "name": "Ramapo College", "homeUrl": "https://www.ramapo.edu/", "description": "Established in 1969, Ramapo College offers bachelor\u2019s degrees in the arts, business, humanities, social sciences and the sciences, as well as in professional studies, which include business, elementary education, nursing and social work. In fall 2020, the College will be enrolling students in both a bachelor\u2019s and master\u2019s degree in data science, only one of two higher education institutions in New Jersey to offer both programs.", "rorId": "https://ror.org/03s2x9d90", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "10142", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1447, "prefix": "px", "mirId": "MIR:00000513", "name": "ProteomeXchange", "pattern": "^(R)?PXD\\d{6}$", "description": "The ProteomeXchange provides a single point of submission of Mass Spectrometry (MS) proteomics data for the main existing proteomics repositories, and encourages the data exchange between them for optimal data dissemination.", "created": "2019-06-11T14:17:37.549+0000", "modified": "2019-06-11T14:17:37.549+0000", "resources": [{"id": 1449, "mirId": "MIR:00100660", "urlPattern": "http://proteomecentral.proteomexchange.org/cgi/GetDataset?ID={$id}", "name": "ProteomeXchange at Seattle", "description": "ProteomeXchange at Seattle", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PXD000500", "resourceHomeUrl": "http://www.proteomexchange.org/", "institution": {"id": 193, "name": "Institute for Systems Biology", "homeUrl": "https://isbscience.org/", "description": "ISB was created in 2000 as the first-ever institute dedicated to systems biology.", "rorId": "https://ror.org/02tpgw303", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PXD000500", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1450, "prefix": "biomodels.vocabulary", "mirId": "MIR:00000514", "name": "SBML RDF Vocabulary", "pattern": "^[A-Za-z]+$", "description": "Vocabulary used in the RDF representation of SBML models.", "created": "2019-06-11T14:17:37.784+0000", "modified": "2019-06-11T14:17:37.784+0000", "resources": [{"id": 1452, "mirId": "MIR:00100661", "urlPattern": "http://biomodels.net/rdf/vocabulary.rdf#{$id}", "name": "Vocabulary via BioModels.net", "description": "Vocabulary via BioModels.net", "official": false, "providerCode": "ebi", "sampleId": "rateRule", "resourceHomeUrl": "http://biomodels.net/rdf/vocabulary.rdf", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "rateRule", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1406, "prefix": "fsnp", "mirId": "MIR:00000496", "name": "F-SNP", "pattern": "^rs\\d+$", "description": "The Functional Single Nucleotide Polymorphism (F-SNP) database integrates information obtained from databases about the functional effects of SNPs. These effects are predicted and indicated at the splicing, transcriptional, translational and post-translational level. In particular, users can retrieve SNPs that disrupt genomic regions known to be functional, including splice sites and transcriptional regulatory regions. Users can also identify non-synonymous SNPs that may have deleterious effects on protein structure or function, interfere with protein translation or impede post-translational modification.", "created": "2019-06-11T14:17:33.340+0000", "modified": "2019-06-11T14:17:33.340+0000", "resources": [{"id": 1408, "mirId": "MIR:00100637", "urlPattern": "http://compbio.cs.queensu.ca/cgi-bin/compbio/search/main.cgi?search_mode=id&id_type=snp_id&id_val={$id}", "name": "F-SNP at Queen's University (Canada)", "description": "F-SNP at Queen's University (Canada)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "rs17852708", "resourceHomeUrl": "http://compbio.cs.queensu.ca/F-SNP/", "institution": {"id": 1407, "name": "Computational Biology and Machine Learning Lab, School of Computing, Queen's University, Kingston, Ontario", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "rs17852708", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1409, "prefix": "hdr", "mirId": "MIR:00000497", "name": "Homeodomain Research", "pattern": "^\\d+$", "description": "The Homeodomain Resource is a curated collection of sequence, structure, interaction, genomic and functional information on the homeodomain family. It contains sets of curated homeodomain sequences from fully sequenced genomes, including experimentally derived homeodomain structures, homeodomain protein-protein interactions, homeodomain DNA-binding sites and homeodomain proteins implicated in human genetic disorders.", "created": "2019-06-11T14:17:33.593+0000", "modified": "2019-06-11T14:17:33.593+0000", "resources": [{"id": 1411, "mirId": "MIR:00100638", "urlPattern": "http://research.nhgri.nih.gov/apps/homeodomain/web/index.cgi?mode=view&view=proteins&id={$id}", "name": "Homeodomain Research at National Human Genome Research Institute (NIH)", "description": "Homeodomain Research at National Human Genome Research Institute (NIH)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "63", "resourceHomeUrl": "http://research.nhgri.nih.gov/apps/homeodomain/web/", "institution": {"id": 1410, "name": "Genome Technology Branch, National Human Genome Research Institute, National Institutes of Health, Bethesda, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "63", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1412, "prefix": "norine", "mirId": "MIR:00000498", "name": "NORINE", "pattern": "^NOR\\d+$", "description": "Norine is a database dedicated to nonribosomal peptides (NRPs). In bacteria and fungi, in addition to the traditional ribosomal proteic biosynthesis, an alternative ribosome-independent pathway called NRP synthesis allows peptide production. The molecules synthesized by NRPS contain a high proportion of nonproteogenic amino acids whose primary structure is not always linear, often being more complex and containing cycles and branchings.", "created": "2019-06-11T14:17:33.862+0000", "modified": "2019-06-11T14:17:33.862+0000", "resources": [{"id": 1414, "mirId": "MIR:00100639", "urlPattern": "http://bioinfo.lifl.fr/norine/result.jsp?ID={$id}", "name": "NORINE at Computer Science Laboratory of Lille", "description": "NORINE at Computer Science Laboratory of Lille", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "NOR00681", "resourceHomeUrl": "http://bioinfo.lifl.fr/norine/", "institution": {"id": 1413, "name": "Computer Science Laboratory of Lille, INRIA and ProBioGEM, University of Sciences and Technologies of Lille, Lille", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "NOR00681", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1415, "prefix": "ordb", "mirId": "MIR:00000499", "name": "Olfactory Receptor Database", "pattern": "^\\d+$", "description": "The Olfactory Receptor Database (ORDB) is a repository of genomics and proteomics information of olfactory receptors (ORs). It includes a broad range of chemosensory genes and proteins, that includes in addition to ORs the taste papilla receptors (TPRs), vomeronasal organ receptors (VNRs), insect olfactory receptors (IORs), Caenorhabditis elegans chemosensory receptors (CeCRs), fungal pheromone receptors (FPRs).", "created": "2019-06-11T14:17:34.104+0000", "modified": "2019-06-11T14:17:34.104+0000", "resources": [{"id": 1417, "mirId": "MIR:00100640", "urlPattern": "http://senselab.med.yale.edu/ORDB/Data/{$id}", "name": "Olfactory Receptor Database at Yale University School of Medicine", "description": "Olfactory Receptor Database at Yale University School of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "8497", "resourceHomeUrl": "http://senselab.med.yale.edu/OrDB/", "institution": {"id": 1416, "name": "Center for Medical Informatics, Yale University School of Medicine, New Haven, Connecticut", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "8497", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1418, "prefix": "odor", "mirId": "MIR:00000500", "name": "Odor Molecules DataBase", "pattern": "^\\d+$", "description": "OdorDB stores information related to odorous compounds, specifically identifying those that have been shown to interact with olfactory receptors", "created": "2019-06-11T14:17:34.340+0000", "modified": "2019-06-11T14:17:34.340+0000", "resources": [{"id": 1419, "mirId": "MIR:00100641", "urlPattern": "http://senselab.med.yale.edu/OdorDB/Data/{$id}/?db=5", "name": "Odor Molecules DataBase at Yale University School of Medicine", "description": "Odor Molecules DataBase at Yale University School of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "74", "resourceHomeUrl": "http://senselab.med.yale.edu/OdorDB", "institution": {"id": 1416, "name": "Center for Medical Informatics, Yale University School of Medicine, New Haven, Connecticut", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "74", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1420, "prefix": "p3db.protein", "mirId": "MIR:00000501", "name": "P3DB Protein", "pattern": "^\\d+$", "description": "Plant Protein Phosphorylation DataBase (P3DB) is a database that provides information on experimentally determined phosphorylation sites in the proteins of various plant species. This collection references plant proteins that contain phosphorylation sites.", "created": "2019-06-11T14:17:34.528+0000", "modified": "2019-06-11T14:17:34.528+0000", "resources": [{"id": 1422, "mirId": "MIR:00100642", "urlPattern": "http://www.p3db.org/protein.php?id={$id}&ref=0", "name": "P3DB Protein at University of Missouri", "description": "P3DB Protein at University of Missouri", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "70", "resourceHomeUrl": "http://www.p3db.org/", "institution": {"id": 1421, "name": "Department of Computer Science, University of Missouri, Columbia, Missouri", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "70", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1423, "prefix": "p3db.site", "mirId": "MIR:00000502", "name": "P3DB Site", "pattern": "^\\d+$", "description": "Plant Protein Phosphorylation DataBase (P3DB) is a database that provides information on experimentally determined phosphorylation sites in the proteins of various plant species. This collection references phosphorylation sites in proteins.", "created": "2019-06-11T14:17:34.763+0000", "modified": "2019-06-11T14:17:34.763+0000", "resources": [{"id": 1424, "mirId": "MIR:00100643", "urlPattern": "http://www.p3db.org/phosphosite.php?id={$id}&ref=0", "name": "P3DB Site at University of Missouri", "description": "P3DB Site at University of Missouri", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "65", "resourceHomeUrl": "http://www.p3db.org/", "institution": {"id": 1421, "name": "Department of Computer Science, University of Missouri, Columbia, Missouri", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "65", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1425, "prefix": "topdb", "mirId": "MIR:00000503", "name": "TOPDB", "pattern": "^[A-Z0-9]+$", "description": "The Topology Data Bank of Transmembrane Proteins (TOPDB) is a collection of transmembrane protein datasets containing experimentally derived topology information. It contains information gathered from the literature and from public databases availableon transmembrane proteins. Each record in TOPDB also contains information on the given protein sequence, name, organism and cross references to various other databases.", "created": "2019-06-11T14:17:35.217+0000", "modified": "2019-06-11T14:17:35.217+0000", "resources": [{"id": 1427, "mirId": "MIR:00100644", "urlPattern": "http://topdb.enzim.hu/?m=show&id={$id}", "name": "TOPDB at Hungarian Academy of Sciences", "description": "TOPDB at Hungarian Academy of Sciences", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AP00378", "resourceHomeUrl": "http://topdb.enzim.hu/", "institution": {"id": 1426, "name": "Institute of Enzymology, Hungarian Academy of Sciences, Budapest", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "HU", "countryName": "Hungary"}}, "location": {"countryCode": "HU", "countryName": "Hungary"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AP00378", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1428, "prefix": "cattleqtldb", "mirId": "MIR:00000504", "name": "Animal Genome Cattle QTL", "pattern": "^\\d+$", "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection references cattle QTLs.", "created": "2019-06-11T14:17:35.485+0000", "modified": "2019-06-11T14:17:35.485+0000", "resources": [{"id": 1430, "mirId": "MIR:00100645", "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}", "name": "Animal QTL Cattle at Iowa State University", "description": "Animal QTL Cattle at Iowa State University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4685", "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", "institution": {"id": 1429, "name": "Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University, Iowa", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4685", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1431, "prefix": "chickenqtldb", "mirId": "MIR:00000505", "name": "Animal Genome Chicken QTL", "pattern": "^\\d+$", "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection references chicken QTLs.", "created": "2019-06-11T14:17:35.752+0000", "modified": "2019-06-11T14:17:35.752+0000", "resources": [{"id": 1432, "mirId": "MIR:00100646", "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}", "name": "Animal QTL Chicken at Iowa State University", "description": "Animal QTL Chicken at Iowa State University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "14362", "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", "institution": {"id": 1429, "name": "Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University, Iowa", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "14362", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1433, "prefix": "pigqtldb", "mirId": "MIR:00000506", "name": "Animal Genome Pig QTL", "pattern": "^\\d+$", "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection references pig QTLs.", "created": "2019-06-11T14:17:35.969+0000", "modified": "2019-06-11T14:17:35.969+0000", "resources": [{"id": 1434, "mirId": "MIR:00100647", "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}", "name": "Animal QTL Pig at Iowa State University", "description": "Animal QTL Pig at Iowa State University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "14", "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", "institution": {"id": 1429, "name": "Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University, Iowa", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "14", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1435, "prefix": "sheepqtldb", "mirId": "MIR:00000507", "name": "Animal Genome Sheep QTL", "pattern": "^\\d+$", "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection references sheep QTLs.", "created": "2019-06-11T14:17:36.183+0000", "modified": "2019-06-11T14:17:36.183+0000", "resources": [{"id": 1436, "mirId": "MIR:00100648", "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}", "name": "Animal QTL Sheep at Iowa State University", "description": "Animal QTL Sheep at Iowa State University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "19803", "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", "institution": {"id": 1429, "name": "Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University, Iowa", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "19803", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1437, "prefix": "gramene.growthstage", "mirId": "MIR:00000508", "name": "Gramene Growth Stage Ontology", "pattern": "^GRO\\:\\d+$", "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This collection refers to growth stage ontology information in Gramene.", "created": "2019-06-11T14:17:36.384+0000", "modified": "2019-06-11T14:17:36.384+0000", "resources": [{"id": 1438, "mirId": "MIR:00100649", "urlPattern": "http://www.gramene.org/db/ontology/search?id=GRO:{$id}", "name": "Gramene Growth Stage Ontology at Cold Spring Harbor", "description": "Gramene Growth Stage Ontology at Cold Spring Harbor", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0007133", "resourceHomeUrl": "http://www.gramene.org/", "institution": {"id": 556, "name": "Cold Spring Harbor Laboratory, New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0007133", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1439, "prefix": "mgnify.samp", "mirId": "MIR:00000510", "name": "MGnify Sample", "pattern": "^[A-Z]+[0-9]+$", "description": "The EBI Metagenomics service is an automated pipeline for the analysis and archiving of metagenomic data that aims to provide insights into the phylogenetic diversity as well as the functional and metabolic potential of a sample. Metagenomics is the study of all genomes present in any given environment without the need for prior individual identification or amplification. This collection references samples.", "created": "2019-06-11T14:17:36.594+0000", "modified": "2019-06-11T14:17:36.594+0000", "resources": [{"id": 1440, "mirId": "MIR:00100656", "urlPattern": "https://www.ebi.ac.uk/metagenomics/samples/{$id}", "name": "MGnify Sample", "description": "MGnify Sample", "official": false, "providerCode": "ebi", "sampleId": "SRS086444", "resourceHomeUrl": "https://www.ebi.ac.uk/metagenomics", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SRS086444", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1441, "prefix": "ega.study", "mirId": "MIR:00000511", "name": "European Genome-phenome Archive Study", "pattern": "^EGAS\\d{11}$", "description": "The EGA is a service for permanent archiving and sharing of all types of personally identifiable genetic and phenotypic data resulting from biomedical research projects. The EGA contains exclusive data collected from individuals whose consent agreements authorize data release only for specific research use or to bona fide researchers. Strict protocols govern how information is managed, stored and distributed by the EGA project. This collection references 'Studies' which are experimental investigations of a particular phenomenon, often drawn from different datasets.", "created": "2019-06-11T14:17:36.823+0000", "modified": "2019-06-11T14:17:36.823+0000", "resources": [{"id": 1442, "mirId": "MIR:00100657", "urlPattern": "https://www.ebi.ac.uk/ega/studies/{$id}", "name": "EGA Study at European Bioinformatics Institute", "description": "EGA Study at European Bioinformatics Institute", "official": true, "providerCode": "ebi", "sampleId": "EGAS00000000001", "resourceHomeUrl": "https://www.ebi.ac.uk/ega/studies", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1443, "mirId": "MIR:00100851", "urlPattern": "https://www.omicsdi.org/dataset/ega/{$id}", "name": "EGA Study through OmicsDI", "description": "EGA Study through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "EGAS00000000001", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EGAS00000000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1444, "prefix": "ega.dataset", "mirId": "MIR:00000512", "name": "European Genome-phenome Archive Dataset", "pattern": "^EGAD\\d{11}$", "description": "The EGA is a service for permanent archiving and sharing of all types of personally identifiable genetic and phenotypic data resulting from biomedical research projects. The EGA contains exclusive data collected from individuals whose consent agreements authorize data release only for specific research use or to bona fide researchers. Strict protocols govern how information is managed, stored and distributed by the EGA project. This collection references 'Datasets'.", "created": "2019-06-11T14:17:37.233+0000", "modified": "2019-06-11T14:17:37.233+0000", "resources": [{"id": 1445, "mirId": "MIR:00100658", "urlPattern": "https://www.ebi.ac.uk/ega/datasets/{$id}", "name": "EGA Dataset at European Bioinformatics Institute", "description": "EGA Dataset at European Bioinformatics Institute", "official": true, "providerCode": "ebi", "sampleId": "EGAD00000000001", "resourceHomeUrl": "https://www.ebi.ac.uk/ega/dataset", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1446, "mirId": "MIR:00100852", "urlPattern": "https://www.omicsdi.org/dataset/ega/{$id}", "name": "EGA Dataset through OmicsDI", "description": "EGA Dataset through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "EGAD00000000001", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EGAD00000000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1453, "prefix": "pride.project", "mirId": "MIR:00000515", "name": "PRIDE Project", "pattern": "^P(X|R)D\\d{6}$", "description": "The PRIDE PRoteomics IDEntifications database is a centralized, standards compliant, public data repository that provides protein and peptide identifications together with supporting evidence. This collection references projects.", "created": "2019-06-11T14:17:38.030+0000", "modified": "2019-06-11T14:17:38.030+0000", "resources": [{"id": 1454, "mirId": "MIR:00100662", "urlPattern": "https://www.ebi.ac.uk/pride/archive/projects/{$id}", "name": "PRIDE Project at EBI", "description": "PRIDE Project at EBI", "official": true, "providerCode": "ebi", "sampleId": "PXD000440", "resourceHomeUrl": "https://www.ebi.ac.uk/pride/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1455, "mirId": "MIR:00100858", "urlPattern": "https://www.omicsdi.org/dataset/pride/{$id}", "name": "PRIDE Project through OmicsDI", "description": "PRIDE Project through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "PXD000440", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PXD000440", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1456, "prefix": "antibodyregistry", "mirId": "MIR:00000516", "name": "Antibody Registry", "pattern": "^\\d{6}$", "description": "The Antibody Registry provides identifiers for antibodies used in publications. It lists commercial antibodies from numerous vendors, each assigned with a unique identifier. Unlisted antibodies can be submitted by providing the catalog number and vendor information.", "created": "2019-06-11T14:17:38.379+0000", "modified": "2019-06-11T14:17:38.379+0000", "resources": [{"id": 1458, "mirId": "MIR:00100664", "urlPattern": "http://antibodyregistry.org/AB_{$id}", "name": "Antibody Registry at University of California", "description": "Antibody Registry at University of California", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "493771", "resourceHomeUrl": "http://antibodyregistry.org/", "institution": {"id": 1457, "name": "Neuroscience Information Framework, University of California, San Diego, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "493771", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1459, "prefix": "mamo", "mirId": "MIR:00000517", "name": "Mathematical Modelling Ontology", "pattern": "^MAMO_\\d{7}$", "description": "The Mathematical Modelling Ontology (MAMO) is a classification of the types of mathematical models used mostly in the life sciences, their variables, relationships and other relevant features.", "created": "2019-06-11T14:17:38.625+0000", "modified": "2019-06-11T14:17:38.625+0000", "resources": [{"id": 1460, "mirId": "MIR:00100665", "urlPattern": "http://bioportal.bioontology.org/ontologies/MAMO/?p=classes&conceptid=http://identifiers.org/mamo/{$id}", "name": "MAMO through BioPortal", "description": "MAMO through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "MAMO_0000026", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/MAMO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1461, "mirId": "MIR:00100758", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/mamo/terms?short_form={$id}", "name": "MaMO through OLS", "description": "MaMO through OLS", "official": false, "providerCode": "ols", "sampleId": "MAMO_0000026", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/mamo", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MAMO_0000026", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1462, "prefix": "eo", "mirId": "MIR:00000518", "name": "Plant Environment Ontology", "pattern": "^(P)?EO\\:\\d{7}$", "description": "The Plant Environment Ontology is a set of standardized controlled vocabularies to describe various types of treatments given to an individual plant / a population or a cultured tissue and/or cell type sample to evaluate the response on its exposure. It also includes the study types, where the terms can be used to identify the growth study facility. Each growth facility such as field study, growth chamber, green house etc is a environment on its own it may also involve instances of biotic and abiotic environments as supplemental treatments used in these studies.", "created": "2019-06-11T14:17:38.985+0000", "modified": "2019-06-11T14:17:38.985+0000", "resources": [{"id": 1463, "mirId": "MIR:00100667", "urlPattern": "http://archive.gramene.org/db/ontology/search?query=EO:{$id}", "name": "Plant Environment Ontology through Gramene", "description": "Plant Environment Ontology through Gramene", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0007404", "resourceHomeUrl": "http://archive.gramene.org/db/ontology/search_term?id=EO:0007359", "institution": {"id": 556, "name": "Cold Spring Harbor Laboratory, New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1464, "mirId": "MIR:00100668", "urlPattern": "http://purl.bioontology.org/ontology/PECO/EO:{$id}", "name": "Plant Environment Ontology through BioPortal", "description": "Plant Environment Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0007404", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PECO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1465, "mirId": "MIR:00100669", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/eo/terms?obo_id=EO:{$id}", "name": "Plant Environment Ontology through OLS", "description": "Plant Environment Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0007404", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/eo", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0007404", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1466, "prefix": "idot", "mirId": "MIR:00000519", "name": "Identifiers.org Terms", "pattern": "^[A-Za-z]+$", "description": "Identifiers.org Terms (idot) is an RDF vocabulary providing useful terms for describing datasets.", "created": "2019-06-11T14:17:39.487+0000", "modified": "2019-06-11T14:17:39.487+0000", "resources": [{"id": 1467, "mirId": "MIR:00100670", "urlPattern": "https://biomodels.net/vocab/idot.rdf#{$id}", "name": "IdoT via biomodels.net", "description": "IdoT via biomodels.net", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "identifierPattern", "resourceHomeUrl": "https://identifiers.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "identifierPattern", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1470, "prefix": "yeastintron", "mirId": "MIR:00000521", "name": "Yeast Intron Database v4.3", "pattern": "^[A-Z0-9]+$", "description": "The YEast Intron Database (version 4.3) contains information on the spliceosomal introns of the yeast Saccharomyces cerevisiae. It includes expression data that relates to the efficiency of splicing relative to other processes in strains of yeast lacking nonessential splicing factors. The data are displayed on each intron page. This is an updated version of the previous dataset, which can be accessed through [MIR:00000460].", "created": "2019-06-11T14:17:39.906+0000", "modified": "2019-06-11T14:17:39.906+0000", "resources": [{"id": 1471, "mirId": "MIR:00100673", "urlPattern": "http://intron.ucsc.edu/cgi-bin/yeast4.3/intronreports.pl?outputformat=full&orfName={$id}", "name": "Yeast Intron Database version 4.3 at Baskin School of Engineering", "description": "Yeast Intron Database version 4.3 at Baskin School of Engineering", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SNR17A", "resourceHomeUrl": "http://intron.ucsc.edu/yeast4.3/", "institution": {"id": 1319, "name": "University of California, Santa Cruz", "homeUrl": "https://www.ucsc.edu", "description": "UC Santa Cruz opened in 1965 with 650 students. During the 2018-2019 academic year, 16,983 undergraduate and 1,822 graduate students were enrolled.\n", "rorId": "https://ror.org/03s65by71", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SNR17A", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1472, "prefix": "ardb", "mirId": "MIR:00000522", "name": "Antibiotic Resistance Genes Database", "pattern": "^[A-Z_]{3}[0-9]{4,}$", "description": "The Antibiotic Resistance Genes Database (ARDB) is a manually curated database which characterises genes involved in antibiotic resistance. Each gene and resistance type is annotated with information, including resistance profile, mechanism of action, ontology, COG and CDD annotations, as well as external links to sequence and protein databases. This collection references resistance genes.", "created": "2019-06-11T14:17:40.104+0000", "modified": "2019-06-11T14:17:40.104+0000", "resources": [{"id": 1474, "mirId": "MIR:00100678", "urlPattern": "http://ardb.cbcb.umd.edu/cgi/search.cgi?db=L&field=ni&term={$id}", "name": "ARDB at University of Maryland", "description": "ARDB at University of Maryland", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CAE46076", "resourceHomeUrl": "http://ardb.cbcb.umd.edu/", "institution": {"id": 1473, "name": "Center for Bioinformatics and Computational Biology, University of Maryland, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CAE46076", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1475, "prefix": "proteomicsdb.protein", "mirId": "MIR:00000524", "name": "ProteomicsDB Protein", "pattern": "^\\d+$", "description": "ProteomicsDB is an effort dedicated to expedite the identification of the human proteome and its use across the scientific community. This human proteome data is assembled primarily using information from liquid chromatography tandem-mass-spectrometry (LC-MS/MS) experiments involving human tissues, cell lines and body fluids. Information is accessible for individual proteins, or on the basis of protein coverage on the encoding chromosome, and for peptide components of a protein. This collection provides access to individual proteins.", "created": "2019-06-11T14:17:40.344+0000", "modified": "2019-06-11T14:17:40.344+0000", "resources": [{"id": 1477, "mirId": "MIR:00100680", "urlPattern": "https://www.proteomicsdb.org/#human/proteinDetails/{$id}/summary", "name": "Proteomics DB Protein at Center for Integrated Protein Science", "description": "Proteomics DB Protein at Center for Integrated Protein Science", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "53504", "resourceHomeUrl": "https://www.proteomicsdb.org/#human", "institution": {"id": 1476, "name": "Center for Integrated Protein Science, Munich,", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "53504", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1478, "prefix": "proteomicsdb.peptide", "mirId": "MIR:00000525", "name": "ProteomicsDB Peptide", "pattern": "^\\d+$", "description": "ProteomicsDB is an effort dedicated to expedite the identification of the human proteome and its use across the scientific community. This human proteome data is assembled primarily using information from liquid chromatography tandem-mass-spectrometry (LC-MS/MS) experiments involving human tissues, cell lines and body fluids. Information is accessible for individual proteins, or on the basis of protein coverage on the encoding chromosome, and for peptide components of a protein. This collection provides access to the peptides identified for a given protein.", "created": "2019-06-11T14:17:40.583+0000", "modified": "2019-06-11T14:17:40.583+0000", "resources": [{"id": 1480, "mirId": "MIR:00100681", "urlPattern": "https://www.proteomicsdb.org/#human/proteinDetails/{$id}/peptides/", "name": "Proteomics DB Peptide at Center for Integrated Protein Science", "description": "Proteomics DB Peptide at Center for Integrated Protein Science", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "53504", "resourceHomeUrl": "https://www.proteomicsdb.org/#peptideSearch", "institution": {"id": 1479, "name": "Center for Integrated Protein Science, Munich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "53504", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1481, "prefix": "hpm.protein", "mirId": "MIR:00000526", "name": "Human Proteome Map Protein", "pattern": "^\\d+$", "description": "The Human Proteome Map (HPM) portal integrates the peptide sequencing result from the draft map of the human proteome project. The project was based on LC-MS/MS by utilizing of high resolution and high accuracy Fourier transform mass spectrometry. The HPM contains direct evidence of translation of a number of protein products derived from human genes, based on peptide identifications of multiple organs/tissues and cell types from individuals with clinically defined healthy tissues. The HPM portal provides data on individual proteins, as well as on individual peptide spectra. This collection references proteins.", "created": "2019-06-11T14:17:40.825+0000", "modified": "2019-06-11T14:17:40.825+0000", "resources": [{"id": 1482, "mirId": "MIR:00100682", "urlPattern": "http://www.humanproteomemap.org/protein.php?hpm_id={$id}", "name": "Human Proteome Map Protein at Institute of Bioinformatics (Bangalore)", "description": "Human Proteome Map Protein at Institute of Bioinformatics (Bangalore)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1968", "resourceHomeUrl": "http://www.humanproteomemap.org/index.php", "institution": {"id": 1087, "name": "Institute of Bioinformatics, International Tech Park, Bangalore", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1968", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1483, "prefix": "hpm.peptide", "mirId": "MIR:00000527", "name": "Human Proteome Map Peptide", "pattern": "^\\d+$", "description": "The Human Proteome Map (HPM) portal integrates the peptide sequencing result from the draft map of the human proteome project. The project was based on LC-MS/MS by utilizing of high resolution and high accuracy Fourier transform mass spectrometry. The HPM contains direct evidence of translation of a number of protein products derived from human genes, based on peptide identifications of multiple organs/tissues and cell types from individuals with clinically defined healthy tissues. The HPM portal provides data on individual proteins, as well as on individual peptide spectra. This collection references individual peptides through spectra.", "created": "2019-06-11T14:17:41.032+0000", "modified": "2019-06-11T14:17:41.032+0000", "resources": [{"id": 1484, "mirId": "MIR:00100683", "urlPattern": "http://www.humanproteomemap.org/spectrum.php?pep_id={$id}", "name": "Human Proteome Map Peptide at Institute of Bioinformatics (Bangalore)", "description": "Human Proteome Map Peptide at Institute of Bioinformatics (Bangalore)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "9606117", "resourceHomeUrl": "http://www.humanproteomemap.org/index.php", "institution": {"id": 1087, "name": "Institute of Bioinformatics, International Tech Park, Bangalore", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "9606117", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1485, "prefix": "drugbankv4.target", "mirId": "MIR:00000528", "name": "DrugBank Target v4", "pattern": "^BE\\d{7}$", "description": "The DrugBank database is a bioinformatics and chemoinformatics resource that combines detailed drug (i.e. chemical, pharmacological and pharmaceutical) data with comprehensive drug target (i.e. sequence, structure, and pathway) information. This collection references target information from version 4 of the database.", "created": "2019-06-11T14:17:41.273+0000", "modified": "2019-06-11T14:17:41.273+0000", "resources": [{"id": 1487, "mirId": "MIR:00100687", "urlPattern": "http://www.drugbank.ca/biodb/bio_entities/{$id}", "name": "DrugBank Target information version 4", "description": "DrugBank Target information version 4", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BE0000048", "resourceHomeUrl": "http://www.drugbank.ca/targets", "institution": {"id": 1486, "name": "Departments of Computing Science, Biological Sciences, University of Alberta", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BE0000048", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1488, "prefix": "zinc", "mirId": "MIR:00000529", "name": "ZINC", "pattern": "^(ZINC)?\\d+$", "description": "ZINC is a free public resource for ligand discovery. The database contains over twenty million commercially available molecules in biologically relevant representations that may be downloaded in popular ready-to-dock formats and subsets. The Web site enables searches by structure, biological activity, physical property, vendor, catalog number, name, and CAS number.", "created": "2019-06-11T14:17:41.559+0000", "modified": "2019-06-11T14:17:41.559+0000", "resources": [{"id": 1490, "mirId": "MIR:00100688", "urlPattern": "http://zinc15.docking.org/substances/{$id}", "name": "ZINC at University of California (San Francisco)", "description": "ZINC at University of California (San Francisco)", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "ZINC1084", "resourceHomeUrl": "http://zinc15.docking.org/", "institution": {"id": 1489, "name": "Shoichet Laboratory, Department of Pharmaceutical Chemistry, University of California, San Francisco", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ZINC1084", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1491, "prefix": "foodb.compound", "mirId": "MIR:00000530", "name": "FooDB Compound", "pattern": "^FDB\\d+$", "description": "FooDB is resource on food and its constituent compounds. It includes data on the compound\u2019s nomenclature, its description, information on its structure, chemical class, its physico-chemical data, its food source(s), its color, its aroma, its taste, its physiological effect, presumptive health effects (from published studies), and concentrations in various foods. This collection references compounds.", "created": "2019-06-11T14:17:41.796+0000", "modified": "2019-06-11T14:17:41.796+0000", "resources": [{"id": 1492, "mirId": "MIR:00100689", "urlPattern": "http://foodb.ca/compounds/{$id}", "name": "FooDB database of food additives at University of Alberta", "description": "FooDB database of food additives at University of Alberta", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "FDB002100", "resourceHomeUrl": "http://foodb.ca/foods", "institution": {"id": 334, "name": "University of Alberta", "homeUrl": "https://www.ualberta.ca", "description": "The University of Alberta in Edmonton is one of Canada's top teaching and research universities, with an international reputation for excellence across the humanities, sciences, creative arts, business, engineering and health sciences.", "rorId": "https://ror.org/0160cpw27", "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "FDB002100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1493, "prefix": "unii", "mirId": "MIR:00000531", "name": "UNII", "pattern": "^[A-Z0-9]+$", "description": "The purpose of the joint FDA/USP Substance Registration System (SRS) is to support health information technology initiatives by generating unique ingredient identifiers (UNIIs) for substances in drugs, biologics, foods, and devices. The UNII is a non- proprietary, free, unique, unambiguous, non semantic, alphanumeric identifier based on a substance\u2019s molecular structure and/or descriptive information.", "created": "2019-06-11T14:17:41.988+0000", "modified": "2019-06-11T14:17:41.988+0000", "resources": [{"id": 1494, "mirId": "MIR:00100690", "urlPattern": "http://fdasis.nlm.nih.gov/srs/srsdirect.jsp?regno={$id}", "name": "UNII at U.S. Food and Drug Administration", "description": "UNII at U.S. Food and Drug Administration", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "3G6A5W338E", "resourceHomeUrl": "http://fdasis.nlm.nih.gov/srs/", "institution": {"id": 1238, "name": "U.S. Food and Drug Administration, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3G6A5W338E", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1495, "prefix": "orphanet.ordo", "mirId": "MIR:00000532", "name": "Orphanet Rare Disease Ontology", "pattern": "^Orphanet(_|:)C?\\d+$", "description": "The Orphanet Rare Disease ontology (ORDO) is a structured vocabulary for rare diseases, capturing relationships between diseases, genes and other relevant features which will form a useful resource for the computational analysis of rare diseases.\r\nIt integrates a nosology (classification of rare diseases), relationships (gene-disease relations, epiemological data) and connections with other terminologies (MeSH, UMLS, MedDRA), databases (OMIM, UniProtKB, HGNC, ensembl, Reactome, IUPHAR, Geantlas) and classifications (ICD10).", "created": "2019-06-11T14:17:42.194+0000", "modified": "2019-06-11T14:17:42.194+0000", "resources": [{"id": 1496, "mirId": "MIR:00100705", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ordo/terms?short_form={$id}", "name": "ORDO via OLS", "description": "ORDO via OLS", "official": true, "providerCode": "ols", "sampleId": "Orphanet_C023", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ordo", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Orphanet_C023", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1497, "prefix": "psipar", "mirId": "MIR:00000533", "name": "Protein Affinity Reagents", "pattern": "^PAR:\\d+$", "description": "Protein Affinity Reagents (PSI-PAR) provides a structured controlled vocabulary for the annotation of experiments concerned with interactions, and interactor production methods. PAR is developed by the HUPO Proteomics Standards Initiative and contains the majority of the terms from the PSI-MI controlled vocabular, as well as additional terms.", "created": "2019-06-11T14:17:42.461+0000", "modified": "2019-06-11T14:17:42.461+0000", "resources": [{"id": 1498, "mirId": "MIR:00100709", "urlPattern": "https://www.ebi.ac.uk/ontology-lookup/?termId={$id}", "name": "Protein Affinity Reagents through OLS", "description": "Protein Affinity Reagents through OLS", "official": false, "providerCode": "ols", "sampleId": "PAR:0116", "resourceHomeUrl": "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=PAR", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PAR:0116", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1499, "prefix": "clinvar.record", "mirId": "MIR:00000534", "name": "ClinVar Record", "pattern": "^RCV\\d+(\\.\\d+)?$", "description": "ClinVar archives reports of relationships among medically important variants and phenotypes. It records human variation, interpretations of the relationship specific variations to human health, and supporting evidence for each interpretation. Each ClinVar record (RCV identifier) represents an aggregated view of interpretations of the same variation and condition from one or more submitters. Submissions for individual variation/phenotype combinations (SCV identifier) are also collected and made available separately. This collection references the Record Report, based on RCV accession.", "created": "2019-06-11T14:17:42.685+0000", "modified": "2019-06-11T14:17:42.685+0000", "resources": [{"id": 1501, "mirId": "MIR:00100710", "urlPattern": "http://www.ncbi.nlm.nih.gov/clinvar/{$id}/", "name": "ClinVar Record at NCBI", "description": "ClinVar Record at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "RCV000033555.3", "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/clinvar/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "RCV000033555.3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1502, "prefix": "mgnify.proj", "mirId": "MIR:00000535", "name": "MGnify Project", "pattern": "^[A-Z]+[0-9]+$", "description": "MGnify is a resource for the analysis and archiving of microbiome data to help determine the taxonomic diversity and functional & metabolic potential of environmental samples. Users can submit their own data for analysis or freely browse all of the analysed public datasets held within the repository. In addition, users can request analysis of any appropriate dataset within the European Nucleotide Archive (ENA). User-submitted or ENA-derived datasets can also be assembled on request, prior to analysis.", "created": "2019-06-11T14:17:42.938+0000", "modified": "2019-06-11T14:17:42.938+0000", "resources": [{"id": 1503, "mirId": "MIR:00100711", "urlPattern": "https://www.ebi.ac.uk/metagenomics/projects/{$id}", "name": "MGnify Project", "description": "MGnify Project", "official": false, "providerCode": "ebi", "sampleId": "ERP004492", "resourceHomeUrl": "https://www.ebi.ac.uk/metagenomics", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ERP004492", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1504, "prefix": "euclinicaltrials", "mirId": "MIR:00000536", "name": "EU Clinical Trials", "pattern": "^\\d{4}\\-\\d{6}\\-\\d{2}$", "description": "The EU Clinical Trials Register contains information on clinical trials conducted in the European Union (EU), or the European Economic Area (EEA) which started after 1 May 2004.\r\nIt also includes trials conducted outside these areas if they form part of a paediatric investigation plan (PIP), or are sponsored by a marketing authorisation holder, and involve the use of a medicine in the paediatric population.", "created": "2019-06-11T14:17:43.129+0000", "modified": "2019-06-11T14:17:43.129+0000", "resources": [{"id": 1506, "mirId": "MIR:00100712", "urlPattern": "https://www.clinicaltrialsregister.eu/ctr-search/search?query={$id}", "name": "EU Clinical Trials at European Medicines Agency", "description": "EU Clinical Trials at European Medicines Agency", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2008-005144-16", "resourceHomeUrl": "https://www.clinicaltrialsregister.eu/", "institution": {"id": 1505, "name": "European Medicines Agency, London", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2008-005144-16", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1507, "prefix": "google.patent", "mirId": "MIR:00000537", "name": "Google Patents", "pattern": "^[A-Z]{2}\\d+([A-Z])?$", "description": "Google Patents covers the entire collection of granted patents and published patent applications from the USPTO, EPO, and WIPO. US patent documents date back to 1790, EPO and WIPO to 1978. Google Patents can be searched using patent number, inventor, classification, and filing date.", "created": "2019-06-11T14:17:43.371+0000", "modified": "2019-06-11T14:17:43.371+0000", "resources": [{"id": 1509, "mirId": "MIR:00100714", "urlPattern": "https://www.google.com/patents/{$id}", "name": "Google Patents at Google", "description": "Google Patents at Google", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "US4145692", "resourceHomeUrl": "https://www.google.com/patents/", "institution": {"id": 1508, "name": "Google Incorporated", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "US4145692", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1510, "prefix": "uspto", "mirId": "MIR:00000538", "name": "USPTO", "pattern": "^(D|PP|R|T|H|X|AI)?\\d+$", "description": "The United States Patent and Trademark Office (USPTO) is the federal agency for granting U.S. patents and registering trademarks. As a mechanism that protects new ideas and investments in innovation and creativity, the USPTO is at the cutting edge of the nation's technological progress and achievement.", "created": "2019-06-11T14:17:43.583+0000", "modified": "2019-06-11T14:17:43.583+0000", "resources": [{"id": 1512, "mirId": "MIR:00100715", "urlPattern": "http://patft.uspto.gov/netacgi/nph-Parser?Sect2=PTO1&Sect2=HITOFF&p=1&u=/netahtml/PTO/search-bool.html&r=1&f=G&l=50&d=PALL&RefSrch=yes&Query=PN/{$id}", "name": "USPTO patents at USPTO", "description": "USPTO patents at USPTO", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4145692", "resourceHomeUrl": "http://patft.uspto.gov/netahtml/PTO/index.html", "institution": {"id": 1511, "name": "United States Patent and Trademark Office", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4145692", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1513, "prefix": "cpc", "mirId": "MIR:00000539", "name": "Cooperative Patent Classification", "pattern": "^([A-H,Y]|[A-H, Y]\\d{2}|[A-H, Y]\\d{2}[A-Z]|[A-H, Y]\\d{2}[A-Z]\\d{1,3}|[A-H, Y]\\d{2}[A-Z]\\d{1,3}(\\/)?\\d{2,})$", "description": "The Cooperative Patent Classification (CPC) is a patent classification system, developed jointly by the European Patent Office (EPO) and the United States Patent and Trademark Office (USPTO). It is based on the previous European classification system (ECLA), which itself was a version of the International Patent Classification (IPC) system. The CPC patent classification system has been used by EPO and USPTO since 1st January, 2013.", "created": "2019-06-11T14:17:43.853+0000", "modified": "2019-06-11T14:17:43.853+0000", "resources": [{"id": 1515, "mirId": "MIR:00100716", "urlPattern": "https://worldwide.espacenet.com/classification?locale=en_EP#!/CPC={$id}", "name": "Cooperative Patent Classification at Espace", "description": "Cooperative Patent Classification at Espace", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "A01M1/026", "resourceHomeUrl": "https://worldwide.espacenet.com/classification", "institution": {"id": 1514, "name": "Espace, European Patent Office", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "A01M1/026", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1516, "prefix": "gwascentral.study", "mirId": "MIR:00000540", "name": "GWAS Central Study", "pattern": "^HGVST\\d+$", "description": "GWAS Central (previously the Human Genome Variation database of Genotype-to-Phenotype information) is a database of summary level findings from genetic association studies, both large and small. It gathers datasets from public domain projects, and accepts direct data submission. It is based upon Marker information encompassing SNP and variant information from public databases, to which allele and genotype frequency data, and genetic association findings are additionally added. A Study (most generic level) contains one or more Experiments, one or more Sample Panels of test subjects, and one or more Phenotypes. This collection references a GWAS Central Study.", "created": "2019-06-11T14:17:44.062+0000", "modified": "2019-06-11T14:17:44.062+0000", "resources": [{"id": 1517, "mirId": "MIR:00100717", "urlPattern": "https://www.gwascentral.org/study/{$id}", "name": "GWAS Central Study at University of Leicester", "description": "GWAS Central Study at University of Leicester", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HGVST1828", "resourceHomeUrl": "https://www.gwascentral.org/studies", "institution": {"id": 1079, "name": "Department of Genetics, University of Leicester, Leicester", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HGVST1828", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1518, "prefix": "exac.variant", "mirId": "MIR:00000541", "name": "ExAC Variant", "pattern": "^\\d{1,2}\\-\\d+\\-[GATC]\\-[GATC]$", "description": "The Exome Aggregation Consortium (ExAC) is a coalition of investigators seeking to aggregate and harmonize exome sequencing data from a variety of large-scale sequencing projects, and to make summary data available for the wider scientific community. The data pertains to unrelated individuals sequenced as part of various disease-specific and population genetic studies and serves as a reference set of allele frequencies for severe disease studies. This collection references variant information.", "created": "2019-06-11T14:17:44.275+0000", "modified": "2019-06-11T14:17:44.275+0000", "resources": [{"id": 1520, "mirId": "MIR:00100718", "urlPattern": "http://exac.broadinstitute.org/variant/{$id}", "name": "ExAC Variant at Exome Aggregation Consortium", "description": "ExAC Variant at Exome Aggregation Consortium", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "22-46615880-T-C", "resourceHomeUrl": "http://exac.broadinstitute.org/", "institution": {"id": 1519, "name": "Exome Aggregation Consortium (ExAC), Cambridge, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "22-46615880-T-C", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1521, "prefix": "gwascentral.marker", "mirId": "MIR:00000542", "name": "GWAS Central Marker", "pattern": "^HGVM\\d+$", "description": "GWAS Central (previously the Human Genome Variation database of Genotype-to-Phenotype information) is a database of summary level findings from genetic association studies, both large and small. It gathers datasets from public domain projects, and accepts direct data submission. It is based upon Marker information encompassing SNP and variant information from public databases, to which allele and genotype frequency data, and genetic association findings are additionally added. A Study (most generic level) contains one or more Experiments, one or more Sample Panels of test subjects, and one or more Phenotypes. This collection references a GWAS Central Marker.", "created": "2019-06-11T14:17:44.511+0000", "modified": "2019-06-11T14:17:44.511+0000", "resources": [{"id": 1522, "mirId": "MIR:00100719", "urlPattern": "https://www.gwascentral.org/marker/{$id}", "name": "GWAS Central Marker at University of Leicester", "description": "GWAS Central Marker at University of Leicester", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HGVM15354", "resourceHomeUrl": "https://www.gwascentral.org/markers/", "institution": {"id": 1079, "name": "Department of Genetics, University of Leicester, Leicester", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HGVM15354", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1555, "prefix": "bigg.metabolite", "mirId": "MIR:00000556", "name": "BiGG Metabolite", "pattern": "^[a-z_A-Z0-9]+$", "description": "BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. It more published genome-scale metabolic networks into a single database with a set of stardized identifiers called BiGG IDs. Genes in the BiGG models are mapped to NCBI genome annotations, and metabolites are linked to many external databases (KEGG, PubChem, and many more). This collection references individual metabolotes.", "created": "2019-06-11T14:17:47.850+0000", "modified": "2019-06-11T14:17:47.850+0000", "resources": [{"id": 1556, "mirId": "MIR:00100733", "urlPattern": "http://bigg.ucsd.edu/models/universal/metabolites/{$id}", "name": "BiGG Metabolite at University of Cakifornia", "description": "BiGG Metabolite at University of Cakifornia", "official": false, "providerCode": "ucsd", "sampleId": "12dgr161", "resourceHomeUrl": "http://bigg.ucsd.edu/universal/metabolites", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "12dgr161", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1525, "prefix": "lincs.cell", "mirId": "MIR:00000544", "name": "LINCS Cell", "pattern": "(^LCL-\\d+$)|(^LDC-\\d+$)|(^ES-\\d+$)|(^LSC-\\d+$)|(^LPC-\\d+$)", "description": "The Library of Network-Based Cellular Signatures (LINCS) Program aims to create a network-based understanding of biology by cataloging changes in gene expression and other cellular processes that occur when cells are exposed to a variety of perturbing agents. The LINCS cell model system can have the following cell categories: cell lines, primary cells, induced pluripotent stem cells, differentiated cells, and embryonic stem cells. The metadata contains information provided by each LINCS Data and Signature Generation Center (DSGC) and the association with a tissue or organ from which the cells were derived, in many cases are also associated to a disease.", "created": "2019-06-11T14:17:44.903+0000", "modified": "2019-06-11T14:17:44.903+0000", "resources": [{"id": 1527, "mirId": "MIR:00100721", "urlPattern": "http://lincsportal.ccs.miami.edu/cells/#/view/{$id}", "name": "LINCS Portal", "description": "LINCS Portal", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LCL-2085", "resourceHomeUrl": "http://lincsportal.ccs.miami.edu/cells/", "institution": {"id": 1526, "name": "University of Miami, BD2K-LINCS DCIC", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LCL-2085", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1528, "prefix": "lincs.protein", "mirId": "MIR:00000545", "name": "LINCS Protein", "pattern": "^\\d+$", "description": "The HMS LINCS Database currently contains information on experimental reagents (small molecule perturbagens, cells, and proteins). It aims to collect and disseminate information relating to the fundamental principles of cellular response in humans to perturbation. This collection references proteins.", "created": "2019-06-11T14:17:45.145+0000", "modified": "2019-06-11T14:17:45.145+0000", "resources": [{"id": 1529, "mirId": "MIR:00100722", "urlPattern": "http://lincs.hms.harvard.edu/db/proteins/{$id}/", "name": "LINCS Protein at Harvard Medical School", "description": "LINCS Protein at Harvard Medical School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "200282", "resourceHomeUrl": "http://lincs.hms.harvard.edu/db/proteins/", "institution": {"id": 1322, "name": "Harvard Medical School, Boston, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "200282", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1530, "prefix": "lincs.smallmolecule", "mirId": "MIR:00000546", "name": "LINCS Small Molecule", "pattern": "^LSM-\\d+$", "description": "The Library of Network-Based Cellular Signatures (LINCS) Program aims to create a network-based understanding of biology by cataloging changes in gene expression and other cellular processes that occur when cells are exposed to a variety of perturbing agents. The LINCS small molecule collection is used as perturbagens in LINCS experiments. The small molecule metadata includes substance-specific batch information provided by each LINCS Data and Signature Generation Center (DSGC).", "created": "2019-06-11T14:17:45.396+0000", "modified": "2019-06-11T14:17:45.396+0000", "resources": [{"id": 1532, "mirId": "MIR:00100723", "urlPattern": "http://lincsportal.ccs.miami.edu/SmallMolecules/#/view/{$id}", "name": "LINCS Portal", "description": "LINCS Portal", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LSM-6306", "resourceHomeUrl": "http://lincsportal.ccs.miami.edu/SmallMolecules/", "institution": {"id": 1531, "name": "University of Miami, BD2K-LINCS DCIC, USA", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LSM-6306", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1533, "prefix": "exac.transcript", "mirId": "MIR:00000547", "name": "ExAC Transcript", "pattern": "^ENST\\d{11}$", "description": "The Exome Aggregation Consortium (ExAC) is a coalition of investigators seeking to aggregate and harmonize exome sequencing data from a variety of large-scale sequencing projects, and to make summary data available for the wider scientific community. The data pertains to unrelated individuals sequenced as part of various disease-specific and population genetic studies and serves as a reference set of allele frequencies for severe disease studies. This collection references transcript information.", "created": "2019-06-11T14:17:45.691+0000", "modified": "2019-06-11T14:17:45.691+0000", "resources": [{"id": 1534, "mirId": "MIR:00100724", "urlPattern": "http://exac.broadinstitute.org/transcript/{$id}", "name": "ExAC Transcript at Exome Aggregation Consortium", "description": "ExAC Transcript at Exome Aggregation Consortium", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ENST00000407236", "resourceHomeUrl": "http://exac.broadinstitute.org/", "institution": {"id": 1519, "name": "Exome Aggregation Consortium (ExAC), Cambridge, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ENST00000407236", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1535, "prefix": "exac.gene", "mirId": "MIR:00000548", "name": "ExAC Gene", "pattern": "^ENSG\\d{11}$", "description": "The Exome Aggregation Consortium (ExAC) is a coalition of investigators seeking to aggregate and harmonize exome sequencing data from a variety of large-scale sequencing projects, and to make summary data available for the wider scientific community. The data pertains to unrelated individuals sequenced as part of various disease-specific and population genetic studies and serves as a reference set of allele frequencies for severe disease studies. This collection references gene information.", "created": "2019-06-11T14:17:45.890+0000", "modified": "2019-06-11T14:17:45.890+0000", "resources": [{"id": 1536, "mirId": "MIR:00100725", "urlPattern": "http://exac.broadinstitute.org/gene/{$id}", "name": "ExAC Gene at Exome Aggregation Consortium", "description": "ExAC Gene at Exome Aggregation Consortium", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ENSG00000169174", "resourceHomeUrl": "http://exac.broadinstitute.org/", "institution": {"id": 1519, "name": "Exome Aggregation Consortium (ExAC), Cambridge, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ENSG00000169174", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1542, "prefix": "unipathway.compound", "mirId": "MIR:00000551", "name": "UniPathway Compound", "pattern": "^UPC\\d{5}$", "description": "UniPathway is a manually curated resource of enzyme-catalyzed and spontaneous chemical reactions. It provides a hierarchical representation of metabolic pathways and a controlled vocabulary for pathway annotation in UniProtKB. UniPathway data are cross-linked to existing metabolic resources such as ChEBI/Rhea, KEGG and MetaCyc. This collection references compounds.", "created": "2019-06-11T14:17:46.612+0000", "modified": "2019-06-11T14:17:46.612+0000", "resources": [{"id": 1544, "mirId": "MIR:00100728", "urlPattern": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upc?upid={$id}", "name": "UniPathway Compound at Swiss Institute of Bioinformatics (SIB)", "description": "UniPathway Compound at Swiss Institute of Bioinformatics (SIB)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "UPC04349", "resourceHomeUrl": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": true, "deprecationDate": "2019-10-01T12:10:54.792+0000"}], "sampleId": "UPC04349", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1545, "prefix": "seed", "mirId": "MIR:00000552", "name": "SEED Subsystem", "pattern": "^\\w+$", "description": "This cooperative effort, which includes Fellowship for Interpretation of Genomes (FIG), Argonne National Laboratory, and the University of Chicago, focuses on the development of the comparative genomics environment called the SEED. It is a framework to support comparative analysis and annotation of genomes, and the development of curated genomic data (annotation). Curation is performed at the level of subsystems by an expert annotator, across many genomes, and not on a gene by gene basis. This collection references subsystems.", "created": "2019-06-11T14:17:46.875+0000", "modified": "2019-06-11T14:17:46.875+0000", "resources": [{"id": 1547, "mirId": "MIR:00100729", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100729/{$id}", "name": "SEED Subsystem at Argonne National Laboratory", "description": "SEED Subsystem at Argonne National Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Biotin_biosynthesis", "resourceHomeUrl": "http://seed-viewer.theseed.org/seedviewer.cgi", "institution": {"id": 1546, "name": "Argonne National Laboratory", "homeUrl": "https://www.anl.gov", "description": "Argonne is a multidisciplinary science and engineering research center, where talented scientists and engineers work together to answer the biggest questions facing humanity, from how to obtain affordable clean energy to protecting ourselves and our environment.", "rorId": "https://ror.org/05gvnxz63", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": true, "deprecationDate": "2019-10-08T08:49:23.021+0000"}], "sampleId": "Biotin_biosynthesis", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1548, "prefix": "seed.compound", "mirId": "MIR:00000553", "name": "SEED Compound", "pattern": "^cpd\\d+$", "description": "This cooperative effort, which includes Fellowship for Interpretation of Genomes (FIG), Argonne National Laboratory, and the University of Chicago, focuses on the development of the comparative genomics environment called the SEED. It is a framework to support comparative analysis and annotation of genomes, and the development of curated genomic data (annotation). Curation is performed at the level of subsystems by an expert annotator, across many genomes, and not on a gene by gene basis. This collection references subsystems.", "created": "2019-06-11T14:17:47.133+0000", "modified": "2019-06-11T14:17:47.133+0000", "resources": [{"id": 1549, "mirId": "MIR:00100730", "urlPattern": "http://modelseed.org/biochem/compounds/{$id}", "name": "SEED Compound at Argonne National Laboratory", "description": "SEED Compound at Argonne National Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "cpd15380", "resourceHomeUrl": "http://modelseed.org/", "institution": {"id": 1546, "name": "Argonne National Laboratory", "homeUrl": "https://www.anl.gov", "description": "Argonne is a multidisciplinary science and engineering research center, where talented scientists and engineers work together to answer the biggest questions facing humanity, from how to obtain affordable clean energy to protecting ourselves and our environment.", "rorId": "https://ror.org/05gvnxz63", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "cpd15380", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1550, "prefix": "bigg.model", "mirId": "MIR:00000554", "name": "BiGG Model", "pattern": "^[a-z_A-Z0-9]+$", "description": "BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. It more published genome-scale metabolic networks into a single database with a set of stardized identifiers called BiGG IDs. Genes in the BiGG models are mapped to NCBI genome annotations, and metabolites are linked to many external databases (KEGG, PubChem, and many more). This collection references individual models.", "created": "2019-06-11T14:17:47.362+0000", "modified": "2019-06-11T14:17:47.362+0000", "resources": [{"id": 1552, "mirId": "MIR:00100731", "urlPattern": "http://bigg.ucsd.edu/models/{$id}", "name": "BiGG Model at University of California", "description": "BiGG Model at University of California", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "iECABU_c1320", "resourceHomeUrl": "http://bigg.ucsd.edu/models", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "iECABU_c1320", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1553, "prefix": "bigg.compartment", "mirId": "MIR:00000555", "name": "BiGG Compartment", "pattern": "^[a-z_A-Z]+$", "description": "BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. It more published genome-scale metabolic networks into a single database with a set of stardized identifiers called BiGG IDs. Genes in the BiGG models are mapped to NCBI genome annotations, and metabolites are linked to many external databases (KEGG, PubChem, and many more). This collection references model compartments.", "created": "2019-06-11T14:17:47.621+0000", "modified": "2019-06-11T14:17:47.621+0000", "resources": [{"id": 1554, "mirId": "MIR:00100732", "urlPattern": "http://bigg.ucsd.edu/compartments/{$id}", "name": "BiGG Compartment at University of California", "description": "BiGG Compartment at University of California", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "c", "resourceHomeUrl": "http://bigg.ucsd.edu/compartments/", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "c", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1537, "prefix": "wikidata", "mirId": "MIR:00000549", "name": "Wikidata", "pattern": "^(Q|P)\\d+$", "description": "Wikidata is a collaboratively edited knowledge base operated by the Wikimedia Foundation. It is intended to provide a common source of certain types of data which can be used by Wikimedia projects such as Wikipedia. Wikidata functions as a document-oriented database, centred on individual items. Items represent topics, for which basic information is stored that identifies each topic.", "created": "2019-06-11T14:17:46.087+0000", "modified": "2020-11-30T14:15:44.647+0000", "resources": [{"id": 1538, "mirId": "MIR:00100726", "urlPattern": "http://www.wikidata.org/entity/{$id}", "name": "Wikidata at Wikimedia Foundation", "description": "Wikidata at Wikimedia Foundation", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q2207226", "resourceHomeUrl": "https://www.wikidata.org/", "institution": {"id": 1111, "name": "Wikimedia Foundation, San Francisco, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Q2207226", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1557, "prefix": "bigg.reaction", "mirId": "MIR:00000557", "name": "BiGG Reaction", "pattern": "^[a-z_A-Z0-9]+$", "description": "BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. It more published genome-scale metabolic networks into a single database with a set of stardized identifiers called BiGG IDs. Genes in the BiGG models are mapped to NCBI genome annotations, and metabolites are linked to many external databases (KEGG, PubChem, and many more). This collection references reactions.", "created": "2019-06-11T14:17:48.059+0000", "modified": "2019-06-11T14:17:48.059+0000", "resources": [{"id": 1558, "mirId": "MIR:00100734", "urlPattern": "http://bigg.ucsd.edu/models/universal/reactions/{$id}", "name": "BiGG Reaction at University of California", "description": "BiGG Reaction at University of California", "official": false, "providerCode": "ucsd", "sampleId": "13GS", "resourceHomeUrl": "http://bigg.ucsd.edu/universal/reactions", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "13GS", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1561, "prefix": "umls", "mirId": "MIR:00000559", "name": "UMLS", "pattern": "^C\\d+$", "description": "The Unified Medical Language System is a repository of biomedical vocabularies. Vocabularies integrated in the UMLS Metathesaurus include the NCBI taxonomy, Gene Ontology, the Medical Subject Headings (MeSH), OMIM and the Digital Anatomist Symbolic Knowledge Base. UMLS concepts are not only inter-related, but may also be linked to external resources such as GenBank.", "created": "2019-06-11T14:17:48.502+0000", "modified": "2019-06-11T14:17:48.502+0000", "resources": [{"id": 1562, "mirId": "MIR:00100736", "urlPattern": "http://linkedlifedata.com/resource/umls/id/{$id}", "name": "Unified Medical Language System at LinkedLifeData", "description": "Unified Medical Language System at LinkedLifeData", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "C0021390", "resourceHomeUrl": "http://linkedlifedata.com/", "institution": {"id": 63, "name": "Linkedlifedata, Ontotext, Sofia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "BG", "countryName": "Bulgaria"}}, "location": {"countryCode": "BG", "countryName": "Bulgaria"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C0021390", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1565, "prefix": "emdb", "mirId": "MIR:00000561", "name": "Electron Microscopy Data Bank", "pattern": "^EMD-\\d{4}$", "description": "The Electron Microscopy Data Bank (EMDB) is a public repository for electron microscopy density maps of macromolecular complexes and subcellular structures. It covers a variety of techniques, including single-particle analysis, electron tomography, and electron (2D) crystallography. The EMDB map distribution format follows the CCP4 definition, which is widely recognized by software packages used by the structural biology community.", "created": "2019-06-11T14:17:48.947+0000", "modified": "2019-06-11T14:17:48.947+0000", "resources": [{"id": 1566, "mirId": "MIR:00100738", "urlPattern": "https://www.ebi.ac.uk/pdbe/entry/emdb/{$id}", "name": "EMDB at Protein Data Bank in Europe", "description": "EMDB at Protein Data Bank in Europe", "official": false, "providerCode": "ebi", "sampleId": "EMD-1001", "resourceHomeUrl": "https://www.ebi.ac.uk/pdbe/emdb/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EMD-1001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1567, "prefix": "mirtarbase", "mirId": "MIR:00000562", "name": "miRTarBase", "pattern": "^MIRT\\d{6}$", "description": "miRTarBase is a database of miRNA-target interactions (MTIs), collected manually from relevant literature, following Natural Language Processing of the text to identify research articles related to functional studies of miRNAs. Generally, the collected MTIs are validated experimentally by reporter assay, western blot, microarray and next-generation sequencing experiments.", "created": "2019-06-11T14:17:49.171+0000", "modified": "2019-06-11T14:17:49.171+0000", "resources": [{"id": 1569, "mirId": "MIR:00100739", "urlPattern": "http://mirtarbase.mbc.nctu.edu.tw/php/detail.php?mirtid={$id}", "name": "miRTarBase at National Chiao Tung University", "description": "miRTarBase at National Chiao Tung University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MIRT000002", "resourceHomeUrl": "http://mirtarbase.mbc.nctu.edu.tw/", "institution": {"id": 1568, "name": "Institute of Bioinformatics and Systems Biology, National Chiao Tung University, Hsinchu", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "TW", "countryName": "Taiwan, Province of China"}}, "location": {"countryCode": "TW", "countryName": "Taiwan, Province of China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MIRT000002", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1570, "prefix": "meddra", "mirId": "MIR:00000563", "name": "MedDRA", "pattern": "^\\d+$", "description": "The Medical Dictionary for Regulatory Activities (MedDRA) was developed by the International Council for Harmonisation of Technical Requirements for Registration of Pharmaceuticals for Human Use (ICH)to provide a standardised medical terminology to facilitate sharing of regulatory information internationally for medical products used by humans. It is used within regulatory processes, safety monitoring, as well as for marketing activities. Products covered by the scope of MedDRA include pharmaceuticals, biologics, vaccines and drug-device combination products. The MedDRA dictionary is organized by System Organ Class (SOC), divided into High-Level Group Terms (HLGT), High-Level Terms (HLT), Preferred Terms (PT) and finally into Lowest Level Terms (LLT).", "created": "2019-06-11T14:17:49.428+0000", "modified": "2019-06-11T14:17:49.428+0000", "resources": [{"id": 1571, "mirId": "MIR:00100740", "urlPattern": "http://purl.bioontology.org/ontology/MEDDRA/{$id}", "name": "MedDRA through BioPortal", "description": "MedDRA through BioPortal", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "10015919", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/MEDDRA", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "10015919", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1572, "prefix": "dashr", "mirId": "MIR:00000564", "name": "DASHR", "pattern": "^(hsa-(let|mir)-\\w+(-\\w+)?)|(piR-\\d+)|(chr\\w+.tRNA\\d+-\\w+)|(chr\\w+.tRNA\\d+-\\w+-tRF\\d)|((SNORD|SNORA|ACA|HBII|HBI|U)(-)?\\w+)|(HY\\d\\+(-L\\d+)?)|((LSU|SSU|5S)(-rRNA_Hsa)?(-L\\d+)?)$", "description": "DASHR reports the annotation, expression and evidence for specific RNA processing (cleavage specificity scores/entropy) of human sncRNA genes, precursor and mature sncRNA products across different human tissues and cell types. DASHR integrates information from multiple existing annotation resources for small non-coding RNAs, including microRNAs (miRNAs), Piwi-interacting (piRNAs), small nuclear (snRNAs), nucleolar (snoRNAs), cytoplasmic (scRNAs), transfer (tRNAs), tRNA fragments (tRFs), and ribosomal RNAs (rRNAs). These datasets were obtained from non-diseased human tissues and cell types and were generated for studying or profiling small non-coding RNAs. This collection references RNA records.", "created": "2019-06-11T14:17:49.634+0000", "modified": "2019-06-11T14:17:49.634+0000", "resources": [{"id": 1574, "mirId": "MIR:00100741", "urlPattern": "http://lisanwanglab.org/DASHR/entry/{$id}", "name": "DASHR at University of Pennsylvania", "description": "DASHR at University of Pennsylvania", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "hsa-mir-200a", "resourceHomeUrl": "http://lisanwanglab.org/DASHR/", "institution": {"id": 1573, "name": "Department of Pathology and Laboratory Medicine, University of Pennsylvania, Philadelphia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "hsa-mir-200a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1575, "prefix": "dashr.expression", "mirId": "MIR:00000565", "name": "DASHR expression", "pattern": "^(hsa-(let|mir)-\\w+(-\\w+)?)|(piR-\\d+)|(chr\\w+.tRNA\\d+-\\w+)|(chr\\w+.tRNA\\d+-\\w+-tRF\\d)|((SNORD|SNORA|ACA|HBII|HBI|U)(-)?\\w+)|(HY\\d\\+(-L\\d+)?)|((LSU|SSU|5S)(-rRNA_Hsa)?(-L\\d+)?)$", "description": "DASHR reports the annotation, expression and evidence for specific RNA processing (cleavage specificity scores/entropy) of human sncRNA genes, precursor and mature sncRNA products across different human tissues and cell types. DASHR integrates information from multiple existing annotation resources for small non-coding RNAs, including microRNAs (miRNAs), Piwi-interacting (piRNAs), small nuclear (snRNAs), nucleolar (snoRNAs), cytoplasmic (scRNAs), transfer (tRNAs), tRNA fragments (tRFs), and ribosomal RNAs (rRNAs). These datasets were obtained from non-diseased human tissues and cell types and were generated for studying or profiling small non-coding RNAs. This collection references RNA expression.", "created": "2019-06-11T14:17:49.866+0000", "modified": "2019-06-11T14:17:49.866+0000", "resources": [{"id": 1576, "mirId": "MIR:00100742", "urlPattern": "https://dashr1.lisanwanglab.org/entry/hsa-mir-200a#{$id}#exprPerTissueTable", "name": "DASHR expression at University of Pennsylvania", "description": "DASHR expression at University of Pennsylvania", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "hsa-mir-200a", "resourceHomeUrl": "https://dashr1.lisanwanglab.org/show-expression-table.php?start=0", "institution": {"id": 1573, "name": "Department of Pathology and Laboratory Medicine, University of Pennsylvania, Philadelphia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "hsa-mir-200a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1577, "prefix": "splash", "mirId": "MIR:00000566", "name": "SPLASH", "pattern": "^splash\\d[A-Z-a-z0-9]-[A-Za-z0-9]+-[A-Za-z0-9]+$", "description": "The spectra hash code (SPLASH) is a unique and non-proprietary identifier for spectra, and is independent of how the spectra were acquired or processed. It can be easily calculated for a wide range of spectra, including Mass spectroscopy, infrared spectroscopy, ultraviolet and nuclear magnetic resonance.", "created": "2019-06-11T14:17:50.083+0000", "modified": "2019-06-11T14:17:50.083+0000", "resources": [{"id": 1579, "mirId": "MIR:00100746", "urlPattern": "http://mona.fiehnlab.ucdavis.edu/#/spectra/splash/{$id}", "name": "Mass Bank of North America (MoNA)", "description": "Mass Bank of North America (MoNA)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "splash10-0zq2000000-77302b0326a418630a84", "resourceHomeUrl": "http://mona.fiehnlab.ucdavis.edu/", "institution": {"id": 1578, "name": "University of Californai, Davis, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "splash10-0zq2000000-77302b0326a418630a84", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1563, "prefix": "mesh", "mirId": "MIR:00000560", "name": "MeSH", "pattern": "^(C|D)\\d{6,9}$", "description": "MeSH (Medical Subject Headings) is the National Library of Medicine's controlled vocabulary thesaurus. It consists of sets of terms naming descriptors in a hierarchical structure that permits searching at various levels of specificity. This thesaurus is used by NLM for indexing articles from biomedical journals, cataloguing of books, documents, etc.", "created": "2019-06-11T14:17:48.752+0000", "modified": "2020-04-21T17:40:51.334+0000", "resources": [{"id": 1564, "mirId": "MIR:00100737", "urlPattern": "http://id.nlm.nih.gov/mesh/{$id}", "name": "MeSH Linked Data at National Library of Medicine", "description": "MeSH Linked Data at National Library of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "C000100", "resourceHomeUrl": "http://id.nlm.nih.gov/mesh/", "institution": {"id": 792, "name": "U.S. National Library of Medicine, National Institute of Health, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C000100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1580, "prefix": "metanetx.chemical", "mirId": "MIR:00000567", "name": "MetaNetX chemical", "pattern": "^(MNXM\\d+|BIOMASS|WATER)$", "description": "MetaNetX/MNXref integrates various information from genome-scale metabolic network reconstructions such as information on reactions, metabolites and compartments. This information undergoes a reconciliation process to minimise for discrepancies between different data sources, and makes the data accessible under a common namespace. This collection references chemical or metabolic components.", "created": "2019-06-11T14:17:50.332+0000", "modified": "2021-02-26T09:36:59.253+0000", "resources": [{"id": 1582, "mirId": "MIR:00100748", "urlPattern": "https://www.metanetx.org/chem_info/{$id}", "name": "MetaNetX chemical at SIB Swiss Institute of Bioinformatics", "description": "MetaNetX chemical at SIB Swiss Institute of Bioinformatics", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MNXM1723", "resourceHomeUrl": "https://www.metanetx.org/", "institution": {"id": 1581, "name": "Vital-IT group, SIB Swiss Institute of Bioinformatics, Lausanne", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MNXM1723", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1583, "prefix": "metanetx.reaction", "mirId": "MIR:00000568", "name": "MetaNetX reaction", "pattern": "^(MNXR\\d+|EMPTY)$", "description": "MetaNetX/MNXref integrates various information from genome-scale metabolic network reconstructions such as information on reactions, metabolites and compartments. This information undergoes a reconciliation process to minimise for discrepancies between different data sources, and makes the data accessible under a common namespace. This collection references reactions.", "created": "2019-06-11T14:17:50.605+0000", "modified": "2021-02-26T09:43:13.847+0000", "resources": [{"id": 1584, "mirId": "MIR:00100749", "urlPattern": "https://www.metanetx.org/equa_info/{$id}", "name": "MetaNetX reaction at SIB Swiss Institute of Bioinformatics", "description": "MetaNetX reaction at SIB Swiss Institute of Bioinformatics", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MNXR101574", "resourceHomeUrl": "https://www.metanetx.org/", "institution": {"id": 1581, "name": "Vital-IT group, SIB Swiss Institute of Bioinformatics, Lausanne", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MNXR101574", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1587, "prefix": "unipathway.reaction", "mirId": "MIR:00000570", "name": "UniPathway Reaction", "pattern": "^UCR\\d{5}$", "description": "UniPathway is a manually curated resource of enzyme-catalyzed and spontaneous chemical reactions. It provides a hierarchical representation of metabolic pathways and a controlled vocabulary for pathway annotation in UniProtKB. UniPathway data are cross-linked to existing metabolic resources such as ChEBI/Rhea, KEGG and MetaCyc. This collection references individual reactions.", "created": "2019-06-11T14:17:51.017+0000", "modified": "2019-06-11T14:17:51.017+0000", "resources": [{"id": 1588, "mirId": "MIR:00100752", "urlPattern": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/ucr?upid={$id}", "name": "UniPathway Reaction at Swiss Institute of Bioinformatics (SIB)", "description": "UniPathway Reaction at Swiss Institute of Bioinformatics (SIB)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "UCR00226", "resourceHomeUrl": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": true, "deprecationDate": "2019-10-01T12:11:20.049+0000"}], "sampleId": "UCR00226", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1589, "prefix": "hp", "mirId": "MIR:00000571", "name": "Human Phenotype Ontology", "pattern": "^HP:\\d{7}$", "description": "The Human Phenotype Ontology (HPO) aims to provide a standardized vocabulary of phenotypic abnormalities encountered in human disease. Each term in the HPO describes a phenotypic abnormality, such as atrial septal defect. The HPO is currently being developed using the medical literature, Orphanet, DECIPHER, and OMIM.", "created": "2019-06-11T14:17:51.237+0000", "modified": "2019-06-11T14:17:51.237+0000", "resources": [{"id": 1592, "mirId": "MIR:00100754", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/hp/terms?obo_id=HP:{$id}", "name": "Human Phenotype Ontology through OLS", "description": "Human Phenotype Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0000118", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/hp", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1591, "mirId": "MIR:00100753", "urlPattern": "https://hpo.jax.org/app/browse/term/HP:{$id}", "name": "Human Phenotype Ontology at Institute for Medical Genetics and Human Genetics", "description": "Human Phenotype Ontology at Institute for Medical Genetics and Human Genetics", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "0000118", "resourceHomeUrl": "http://human-phenotype-ontology.github.io/", "institution": {"id": 1590, "name": "Institute for Medical Genetics and Human Genetics, Charit\u00e9-Universit\u00e4tsmedizin, Berlin", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000118", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1593, "prefix": "sasbdb", "mirId": "MIR:00000572", "name": "SASBDB", "pattern": "^[Ss][Aa][Ss][A-Za-z0-9]{3}[0-9]$", "description": "Small Angle Scattering Biological Data Bank (SASBDB) is a curated repository for small angle X-ray scattering (SAXS) and neutron scattering (SANS) data and derived models. Small angle scattering (SAS) of X-ray and neutrons provides structural information on biological macromolecules in solution at a resolution of 1-2 nm. SASBDB provides freely accessible and downloadable experimental data, which are deposited together with the relevant experimental conditions, sample details, derived models and their fits to the data.", "created": "2019-06-11T14:17:51.650+0000", "modified": "2019-06-11T14:17:51.650+0000", "resources": [{"id": 1595, "mirId": "MIR:00100763", "urlPattern": "http://www.sasbdb.org/data/{$id}", "name": "SASBDB at European Molecular Biology Laboratory", "description": "SASBDB at European Molecular Biology Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SASDAX8", "resourceHomeUrl": "http://www.sasbdb.org/", "institution": {"id": 1594, "name": "European Molecular Biology Lab Hamburg Outstation", "homeUrl": "https://www.embl-hamburg.de", "description": "EMBL is an intergovernmental organisation specialising in basic research in the life sciences, funded by public research monies from more than 20 member states, including much of Europe and Israel, and two associate members, Argentina and Australia. EMBL is led by the Director General, currently Professor Edith Heard, appointed by the governing body, EMBL Council. The Council is comprised of representatives of all member and associate member states.\nActivities at EMBL Hamburg focus on state-of-the-art structural biology methods using synchrotron radiation. The unit is situated on campus of the German Synchrotron Research Centre (DESY), which hosts leading facilities for synchrotron radiation (PETRA-III) and free electron lasers (FLASH and XFEL, under construction).", "rorId": "https://ror.org/050589e39", "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SASDAX8", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1596, "prefix": "hgnc.genefamily", "mirId": "MIR:00000573", "name": "HGNC gene family", "pattern": "^\\d+$", "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. In addition, HGNC also provides a unique numerical ID to identify gene families, providing a display of curated hierarchical relationships between families.", "created": "2019-06-11T14:17:51.916+0000", "modified": "2019-06-11T14:17:51.916+0000", "resources": [{"id": 1597, "mirId": "MIR:00100765", "urlPattern": "https://www.genenames.org/cgi-bin/genefamilies/set/{$id}", "name": "HGNC gene family at HUGO Genome Nomenclature Committee", "description": "HGNC gene family at HUGO Genome Nomenclature Committee", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "141", "resourceHomeUrl": "https://www.genenames.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "141", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1598, "prefix": "mdm", "mirId": "MIR:00000574", "name": "MDM", "pattern": "^\\d+$", "description": "The MDM (Medical Data Models) Portal is a meta-data registry for creating, analysing, sharing and reusing medical forms. Electronic forms are central in numerous processes involving data, including the collection of data through electronic health records (EHRs), Electronic Data Capture (EDC), and as case report forms (CRFs) for clinical trials. The MDM Portal provides medical forms in numerous export formats, facilitating the sharing and reuse of medical data models and exchange between information systems.", "created": "2019-06-11T14:17:52.138+0000", "modified": "2019-06-11T14:17:52.138+0000", "resources": [{"id": 1600, "mirId": "MIR:00100766", "urlPattern": "https://medical-data-models.org/forms/{$id}", "name": "MDM at University of Muenster", "description": "MDM at University of Muenster", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4776", "resourceHomeUrl": "https://medical-data-models.org/", "institution": {"id": 1599, "name": "Institute of Medical Informatics, University of Muenster", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4776", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1601, "prefix": "probonto", "mirId": "MIR:00000575", "name": "ProbOnto", "pattern": "^PROB_c\\d+$", "description": "ProbOnto, is an ontology-based knowledge base of probability distributions, featuring uni- and multivariate distributions with their defining functions, characteristics, relationships and reparameterisation formulae. It can be used for annotation of models, facilitating the encoding of distribution-based models, related functions and quantities.", "created": "2019-06-11T14:17:52.483+0000", "modified": "2019-06-11T14:17:52.483+0000", "resources": [{"id": 1602, "mirId": "MIR:00100768", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/probonto/terms?short_form={$id}", "name": "ProbOnto through OLS", "description": "ProbOnto through OLS", "official": false, "providerCode": "ols", "sampleId": "PROB_c0000005", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/probonto", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PROB_c0000005", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1603, "prefix": "apid.interactions", "mirId": "MIR:00000576", "name": "APID Interactomes", "pattern": "^([A-N,R-Z][0-9]([A-Z][A-Z, 0-9][A-Z, 0-9][0-9]){1,2})|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])(\\.\\d+)?$", "description": "APID (Agile Protein Interactomes DataServer) provides information on the protein interactomes of numerous organisms, based on the integration of known experimentally validated protein-protein physical interactions (PPIs). Interactome data includes a report on quality levels and coverage over the proteomes for each organism included. APID integrates PPIs from primary databases of molecular interactions (BIND, BioGRID, DIP, HPRD, IntAct, MINT) and also from experimentally resolved 3D structures (PDB) where more than two distinct proteins have been identified. This collection references protein interactors, through a UniProt identifier.", "created": "2019-06-11T14:17:52.731+0000", "modified": "2019-06-11T14:17:52.731+0000", "resources": [{"id": 1605, "mirId": "MIR:00100769", "urlPattern": "http://cicblade.dep.usal.es:8080/APID/Interactions.action?protein={$id}", "name": "APID at Salamanca", "description": "APID at Salamanca", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "P01116", "resourceHomeUrl": "http://cicblade.dep.usal.es:8080/APID/", "institution": {"id": 1604, "name": "Cancer Research Center (CiC-IBMCC), Consejo Superior de Investigaciones Cient\u00edficas (CSIC) and Universidad de Salamanca (USAL), Salamanca", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "ES", "countryName": "Spain"}}, "location": {"countryCode": "ES", "countryName": "Spain"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P01116", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1606, "prefix": "storedb", "mirId": "MIR:00000577", "name": "STOREDB", "pattern": "^STOREDB:(STUDY|FILE|DATASET)\\d+$", "description": "STOREDB database is a repository for data used by the international radiobiology community, archiving and sharing primary data outputs from research on low dose radiation. It also provides a directory of bioresources and databases for radiobiology projects containing information and materials that investigators are willing to share. STORE supports the creation of a low dose radiation research commons.", "created": "2019-06-11T14:17:53.021+0000", "modified": "2019-06-11T14:17:53.021+0000", "resources": [{"id": 1608, "mirId": "MIR:00100771", "urlPattern": "https://www.storedb.org/?{$id}", "name": "STOREDB at University of Cambridge", "description": "STOREDB at University of Cambridge", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "STOREDB:STUDY1040", "resourceHomeUrl": "https://www.storedb.org/", "institution": {"id": 1607, "name": "University of Cambridge, Department of Physiology, Downing Street, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "STOREDB:STUDY1040", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1609, "prefix": "kegg", "mirId": "MIR:00000578", "name": "Kyoto Encyclopedia of Genes and Genomes", "pattern": "^([CHDEGTMKR]\\d+)|(\\w+:[\\w\\d\\.-]*)|([a-z]{3,5})|(\\w{2,4}\\d{5})$", "description": "Kyoto Encyclopedia of Genes and Genomes (KEGG) is a database resource for understanding high-level functions and utilities of the biological system, such as the cell, the organism and the ecosystem, from molecular-level information, especially large-scale molecular datasets generated by genome sequencing and other high-throughput experimental technologies.", "created": "2019-06-11T14:17:53.298+0000", "modified": "2019-06-11T14:17:53.298+0000", "resources": [{"id": 1610, "mirId": "MIR:00100773", "urlPattern": "http://www.kegg.jp/entry/{$id}", "name": "KEGG at Kyoto University Bioinformatics Center", "description": "KEGG at Kyoto University Bioinformatics Center", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "hsa00190", "resourceHomeUrl": "http://www.kegg.jp/", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "hsa00190", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1611, "prefix": "planttfdb", "mirId": "MIR:00000579", "name": "Plant Transcription Factor Database", "pattern": "^[A-Z][a-z]{2}_([A-Za-z]{3}[0-9]{6})|([A-Za-z0-9\\._\\-#]*)$", "description": "The Plant TF database (PlantTFDB) systematically identifies transcription factors for plant species. It includes annotation for identified TFs, including information on expression, regulation, interaction, conserved elements, phenotype information. It also provides curated descriptions and cross-references to other life science databases, as well as identifying evolutionary relationship among identified factors.", "created": "2019-06-11T14:17:53.641+0000", "modified": "2019-06-11T14:17:53.641+0000", "resources": [{"id": 1613, "mirId": "MIR:00100772", "urlPattern": "http://planttfdb.cbi.pku.edu.cn/tf.php?uid={$id}", "name": "PlantTFDB at Peking University", "description": "PlantTFDB at Peking University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Ath_AT1G01030.1", "resourceHomeUrl": "http://planttfdb.cbi.pku.edu.cn", "institution": {"id": 1612, "name": "Peking University", "homeUrl": "http://english.pku.edu.cn/", "description": "Peking University is a comprehensive and national key university. The campus, known as \"Yan Yuan\"\uff08the garden of Yan\uff09, is situated at Haidian District in the western suburb of Beijing, with a total area of 2,743,532 square metres (or 274 hectares). It stands near to the Yuanmingyuan Garden and the Summer Palace.\nPeking University is proud of its outstanding faculty, including 48 members of the Chinese Academy of Sciences (CAS), 9 members of the Chinese Academy of Engineering (CAE), and 21 members of the Third World Academy of Sciences (TWAS).", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Ath_AT1G01030.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1614, "prefix": "mp", "mirId": "MIR:00000580", "name": "Mammalian Phenotype Ontology", "pattern": "^MP:\\d{7}$", "description": "The Mammalian Phenotype Ontology (MP) classifies and organises phenotypic information related to the mouse and other mammalian species. This ontology has been applied to mouse phenotype descriptions in various databases allowing comparisons of data from diverse mammalian sources. It can facilitate in the identification of appropriate experimental disease models, and aid in the discovery of candidate disease genes and molecular signaling pathways.", "created": "2019-06-11T14:17:53.926+0000", "modified": "2019-06-11T14:17:53.926+0000", "resources": [{"id": 1615, "mirId": "MIR:00100774", "urlPattern": "http://www.informatics.jax.org/searches/Phat.cgi?id=MP:{$id}", "name": "Mammalian Phenotype Ontology at The Jackson Lab", "description": "Mammalian Phenotype Ontology at The Jackson Lab", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0005452", "resourceHomeUrl": "http://www.informatics.jax.org/", "institution": {"id": 1278, "name": "The Jackson Laboratory, Bar Harbor, Maine", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1616, "mirId": "MIR:00100775", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/mp/terms?obo_id=MP:{$id}", "name": "Mammalian Phenotype Ontology through OLS", "description": "Mammalian Phenotype Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0005452", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/mp/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1617, "mirId": "MIR:00100776", "urlPattern": "https://bioportal.bioontology.org/ontologies/MP/MP:{$id}", "name": "Mammalian Phenotype Ontology through BioPortal", "description": "Mammalian Phenotype Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0005452", "resourceHomeUrl": "https://bioportal.bioontology.org/ontologies/MP", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0005452", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1618, "prefix": "worms", "mirId": "MIR:00000581", "name": "World Register of Marine Species", "pattern": "^\\d+$", "description": "The World Register of Marine Species (WoRMS) provides an authoritative and comprehensive list of names of marine organisms. It includes synonyms for valid taxonomic names allowing a more complete interpretation of taxonomic literature. The content of WoRMS is administered by taxonomic experts.", "created": "2019-06-11T14:17:54.476+0000", "modified": "2019-06-11T14:17:54.476+0000", "resources": [{"id": 1620, "mirId": "MIR:00100778", "urlPattern": "http://www.marinespecies.org/aphia.php?p=taxdetails&id={$id}", "name": "World Register of Marine Species", "description": "World Register of Marine Species", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "146421", "resourceHomeUrl": "http://www.marinespecies.org/", "institution": {"id": 1619, "name": "Flanders Marine Institute, Ostend", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "BE", "countryName": "Belgium"}}, "location": {"countryCode": "BE", "countryName": "Belgium"}, "deprecated": false, "deprecationDate": null}], "sampleId": "146421", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1621, "prefix": "multicellds.collection", "mirId": "MIR:00000582", "name": "MultiCellDS collection", "pattern": "^MCDS_C_[a-zA-Z0-9]{1,10}$", "description": "MultiCellDS is data standard for multicellular simulation, experimental, and clinical data. A collection groups one or more individual uniquely identified cell lines, snapshots, or collections. Primary uses are times series (collections of snapshots), patient cohorts (collections of cell lines), and studies (collections of time series collections).", "created": "2019-06-11T14:17:54.753+0000", "modified": "2019-06-11T14:17:54.753+0000", "resources": [{"id": 1623, "mirId": "MIR:00100779", "urlPattern": "http://multicellds.org/MultiCellDB/{$id}", "name": "MultiCellDScollection at Keck School of Medicine", "description": "MultiCellDScollection at Keck School of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MCDS_C_0000000001", "resourceHomeUrl": "http://multicellds.org/MultiCellDB.php", "institution": {"id": 1622, "name": "Center for Applied Molecular Medicine, Keck School of Medicine, University of Southern California, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MCDS_C_0000000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1624, "prefix": "multicellds.snapshot", "mirId": "MIR:00000583", "name": "MultiCellDS Digital snapshot", "pattern": "^MCDS_S_[a-zA-Z0-9]{1,10}$", "description": "MultiCellDS is data standard for multicellular simulation, experimental, and clinical data. A digital snapshot is a single-time output of the microenvironment (including basement membranes and the vascular network), any cells contained within, and essential metadata. Cells may include phenotypic data.", "created": "2019-06-11T14:17:55.012+0000", "modified": "2019-06-11T14:17:55.012+0000", "resources": [{"id": 1625, "mirId": "MIR:00100780", "urlPattern": "http://multicellds.org/MultiCellDB/{$id}", "name": "MultiCellDS snapshot at Keck School of Medicine", "description": "MultiCellDS snapshot at Keck School of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MCDS_S_0000000001", "resourceHomeUrl": "http://multicellds.org/MultiCellDB.php", "institution": {"id": 1622, "name": "Center for Applied Molecular Medicine, Keck School of Medicine, University of Southern California, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MCDS_S_0000000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1626, "prefix": "multicellds.cell_line", "mirId": "MIR:00000584", "name": "MultiCellDS Digital Cell Line", "pattern": "^MCDS_L_[a-zA-Z0-9]{1,10}$", "description": "MultiCellDS is data standard for multicellular simulation, experimental, and clinical data. A digital cell line is a hierarchical organization of quantitative phenotype data for a single biological cell line, including the microenvironmental context of the measurements and essential metadata.", "created": "2019-06-11T14:17:55.320+0000", "modified": "2019-06-11T14:17:55.320+0000", "resources": [{"id": 1627, "mirId": "MIR:00100781", "urlPattern": "http://multicellds.org/MultiCellDB/{$id}", "name": "MultiCellDS Digital Cell Line at Keck School of Medicine", "description": "MultiCellDS Digital Cell Line at Keck School of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MCDS_L_0000000001", "resourceHomeUrl": "http://multicellds.org/MultiCellDB.php", "institution": {"id": 1622, "name": "Center for Applied Molecular Medicine, Keck School of Medicine, University of Southern California, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MCDS_L_0000000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1628, "prefix": "ecyano.entity", "mirId": "MIR:00000585", "name": "E-cyanobacterium entity", "pattern": "^\\d+$", "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction \u2014 as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references entities.", "created": "2019-06-11T14:17:55.541+0000", "modified": "2019-06-11T14:17:55.541+0000", "resources": [{"id": 1630, "mirId": "MIR:00100782", "urlPattern": "http://e-cyanobacterium.org/bcs/entity/{$id}/", "name": "e-cyanobacterium entity at Masaryk University Brno", "description": "e-cyanobacterium entity at Masaryk University Brno", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "23", "resourceHomeUrl": "http://www.e-cyanobacterium.org/bcs/entity/", "institution": {"id": 1629, "name": "Systems Biology Laboratory, Faculty of Informatics, Masaryk University Brno", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}}, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}, "deprecated": false, "deprecationDate": null}], "sampleId": "23", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1631, "prefix": "ecyano.model", "mirId": "MIR:00000586", "name": "E-cyanobacterium model", "pattern": "^\\d+$", "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction \u2014 as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references models.", "created": "2019-06-11T14:17:55.864+0000", "modified": "2019-06-11T14:17:55.864+0000", "resources": [{"id": 1632, "mirId": "MIR:00100783", "urlPattern": "http://e-cyanobacterium.org/models/model/{$id}/", "name": "e-cyanobacterium entity at Masaryk University Brno", "description": "e-cyanobacterium entity at Masaryk University Brno", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "26", "resourceHomeUrl": "http://e-cyanobacterium.org/models/", "institution": {"id": 1629, "name": "Systems Biology Laboratory, Faculty of Informatics, Masaryk University Brno", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}}, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}, "deprecated": false, "deprecationDate": null}], "sampleId": "26", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1633, "prefix": "ecyano.rule", "mirId": "MIR:00000587", "name": "E-cyanobacterium rule", "pattern": "^\\d+$", "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction \u2014 as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references rules.", "created": "2019-06-11T14:17:56.089+0000", "modified": "2019-06-11T14:17:56.089+0000", "resources": [{"id": 1634, "mirId": "MIR:00100784", "urlPattern": "http://e-cyanobacterium.org/bcs/rule/{$id}/", "name": "e-cyanobacterium entity at Masaryk University Brno", "description": "e-cyanobacterium entity at Masaryk University Brno", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "56", "resourceHomeUrl": "http://www.e-cyanobacterium.org/bcs/rule/", "institution": {"id": 1629, "name": "Systems Biology Laboratory, Faculty of Informatics, Masaryk University Brno", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}}, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}, "deprecated": false, "deprecationDate": null}], "sampleId": "56", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1635, "prefix": "lincs.data", "mirId": "MIR:00000588", "name": "LINCS Data", "pattern": "^[EL]D[SG]-\\d+$", "description": "The Library of Network-Based Cellular Signatures (LINCS) Program aims to create a network-based understanding of biology by cataloguing changes in gene expression and other cellular processes that occur when cells are exposed to perturbing agents. The data is organized and available as datasets, each including experimental data, metadata and a description of the dataset and assay. The dataset group comprises datasets for the same experiment but with different data level results (data processed to a different level).", "created": "2019-06-11T14:17:56.343+0000", "modified": "2019-06-11T14:17:56.343+0000", "resources": [{"id": 1636, "mirId": "MIR:00100785", "urlPattern": "http://lincsportal.ccs.miami.edu/datasets/#/view/{$id}", "name": "LINCS Data at University of Miami", "description": "LINCS Data at University of Miami", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "LDS-1110", "resourceHomeUrl": "http://lincsportal.ccs.miami.edu/datasets/", "institution": {"id": 1526, "name": "University of Miami, BD2K-LINCS DCIC", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1637, "mirId": "MIR:00100856", "urlPattern": "https://www.omicsdi.org/dataset/lincs/{$id}", "name": "Lincs through OmicsDI", "description": "Lincs through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "LDS-1110", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LDS-1110", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1638, "prefix": "agricola", "mirId": "MIR:00000589", "name": "AGRICOLA", "pattern": "^\\d+$", "description": "AGRICOLA (AGRICultural OnLine Access) serves as the catalog and index to the collections of the National Agricultural Library, as well as a primary public source for world-wide access to agricultural information. The database covers materials in all formats and periods, including printed works from as far back as the 15th century.", "created": "2019-06-11T14:17:56.660+0000", "modified": "2019-06-11T14:17:56.660+0000", "resources": [{"id": 1640, "mirId": "MIR:00100789", "urlPattern": "http://ddr.nal.usda.gov/dspace/handle/10113/{$id}", "name": "AGRICOLA at National Agricultural Library", "description": "AGRICOLA at National Agricultural Library", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "50018", "resourceHomeUrl": "http://agricola.nal.usda.gov/", "institution": {"id": 1639, "name": "National Agricultural Library, United States Department of Agriculture", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "50018", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1641, "prefix": "ms", "mirId": "MIR:00000590", "name": "Mass Spectrometry Controlled Vocabulary", "pattern": "^MS:\\d{7}$", "description": "The PSI-Mass Spectrometry (MS) CV contains all the terms used in the PSI MS-related data standards. The CV contains a logical hierarchical structure to ensure ease of maintenance and the development of software that makes use of complex semantics. The CV contains terms required for a complete description of an MS analysis pipeline used in proteomics, including sample labeling, digestion enzymes, instrumentation parts and parameters, software used for identification and quantification of peptides/proteins and the parameters and scores used to determine their significance.", "created": "2019-06-11T14:17:56.919+0000", "modified": "2019-06-11T14:17:56.919+0000", "resources": [{"id": 1642, "mirId": "MIR:00100786", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ms/terms?obo_id=MS:{$id}", "name": "Mass Spectrometry Controlled Vocabulary through OLS", "description": "Mass Spectrometry Controlled Vocabulary through OLS", "official": false, "providerCode": "ols", "sampleId": "1000001", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ms", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1643, "mirId": "MIR:00100787", "urlPattern": "http://purl.bioontology.org/ontology/MS/MS:{$id}", "name": "Mass Spectrometry Controlled Vocabulary through BioPortal", "description": "Mass Spectrometry Controlled Vocabulary through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "1000001", "resourceHomeUrl": "https://bioportal.bioontology.org/ontologies/MS", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1000001", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1647, "prefix": "ark", "mirId": "MIR:00000592", "name": "ARK", "pattern": "^(ark\\:)/*[0-9A-Za-z]+(?:/[\\w/.=*+@\\$-]*)?(?:\\?.*)?$", "description": "An Archival Resource Key (ARK) is a Uniform Resource Locator (URL) that is a multi-purpose persistent identifier for information objects of any type.", "created": "2019-06-11T14:17:57.583+0000", "modified": "2019-06-11T14:17:57.583+0000", "resources": [{"id": 1649, "mirId": "MIR:00100792", "urlPattern": "http://n2t.net/ark:{$id}", "name": "ARK via the Name-to-Thing resolver.", "description": "ARK via the Name-to-Thing resolver.", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "/12345/fk1234", "resourceHomeUrl": "http://n2t.net/", "institution": {"id": 1648, "name": "California Digital Library, University of California Office of the President", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "/12345/fk1234", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1650, "prefix": "grid", "mirId": "MIR:00000593", "name": "GRID", "pattern": "^grid\\.[0-9]+\\.[a-f0-9]{1,2}$", "description": "International coverage of the world's leading research organisations, indexing 92% of funding allocated globally.", "created": "2019-06-11T14:17:57.806+0000", "modified": "2019-06-11T14:17:57.806+0000", "resources": [{"id": 1652, "mirId": "MIR:00100793", "urlPattern": "https://www.grid.ac/institutes/{$id}", "name": "GRID at Digital Science & Research Ltd.", "description": "GRID at Digital Science & Research Ltd.", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "grid.225360.0", "resourceHomeUrl": "https://www.grid.ac/", "institution": {"id": 1651, "name": "Digital Science &amp; Research Ltd, London", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "grid.225360.0", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1653, "prefix": "medgen", "mirId": "MIR:00000594", "name": "MedGen", "pattern": "^[CN]*\\d{4,7}$", "description": "MedGen is a portal for information about conditions and phenotypes related to Medical Genetics. Terms from multiple sources are aggregated into concepts, each of which is assigned a unique identifier and a preferred name and symbol. The core content of the record may include names, identifiers used by other databases, mode of inheritance, clinical features, and map location of the loci affecting the disorder.", "created": "2019-06-11T14:17:58.068+0000", "modified": "2019-06-11T14:17:58.068+0000", "resources": [{"id": 1654, "mirId": "MIR:00100794", "urlPattern": "https://www.ncbi.nlm.nih.gov/medgen/{$id}", "name": "MedGen at NCBI", "description": "MedGen at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "760050", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/medgen/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "760050", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1655, "prefix": "clinvar.submission", "mirId": "MIR:00000595", "name": "ClinVar Submission", "pattern": "^SCV\\d+(\\.\\d+)?$", "description": "ClinVar archives reports of relationships among medically important variants and phenotypes. It records human variation, interpretations of the relationship specific variations to human health, and supporting evidence for each interpretation. Each ClinVar record (RCV identifier) represents an aggregated view of interpretations of the same variation and condition from one or more submitters. Submissions for individual variation/phenotype combinations (SCV identifier) are also collected and made available separately. This collection references submissions, and is based on SCV accession.", "created": "2019-06-11T14:17:58.273+0000", "modified": "2019-06-11T14:17:58.273+0000", "resources": [{"id": 1656, "mirId": "MIR:00100795", "urlPattern": "http://www.ncbi.nlm.nih.gov/clinvar?term={$id}", "name": "ClinVar Submission at NCBI", "description": "ClinVar Submission at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "SCV000151292", "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/clinvar/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SCV000151292", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1657, "prefix": "clinvar", "mirId": "MIR:00000596", "name": "ClinVar Variant", "pattern": "^\\d+$", "description": "ClinVar archives reports of relationships among medically important variants and phenotypes. It records human variation, interpretations of the relationship specific variations to human health, and supporting evidence for each interpretation. Each ClinVar record (RCV identifier) represents an aggregated view of interpretations of the same variation and condition from one or more submitters. Submissions for individual variation/phenotype combinations (SCV identifier) are also collected and made available separately. This collection references the Variant identifier.", "created": "2019-06-11T14:17:58.490+0000", "modified": "2019-06-11T14:17:58.490+0000", "resources": [{"id": 1658, "mirId": "MIR:00100796", "urlPattern": "https://www.ncbi.nlm.nih.gov/clinvar/variation/{$id}", "name": "ClinVar Variant at NCBI", "description": "ClinVar Variant at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "12345", "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/clinvar/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "12345", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1664, "prefix": "mir", "mirId": "MIR:00000599", "name": "Identifiers.org Registry", "pattern": "^MIR:\\d{8}$", "description": "The Identifiers.org registry contains registered namespace and provider prefixes with associated access URIs for a large number of high quality data collections. These prefixes are used in web resolution of compact identifiers of the form \u201cPREFIX:ACCESSION\u201d or \"PROVIDER/PREFIX:ACCESSION\u201d commonly used to specify bioinformatics and other data resources.", "created": "2019-06-11T14:17:59.221+0000", "modified": "2019-06-11T14:17:59.221+0000", "resources": [{"id": 1665, "mirId": "MIR:00100800", "urlPattern": "https://registry.identifiers.org/registry?query=\"MIR:{$id}\"", "name": "Identifiers.org Registry through EBI", "description": "Identifiers.org Registry through EBI", "official": false, "providerCode": "ebi", "sampleId": "00100037", "resourceHomeUrl": "https://registry.identifiers.org/registry", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00100037", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1669, "prefix": "cosmic", "mirId": "MIR:00000601", "name": "COSMIC Gene", "pattern": "^[A-Z0-9]+$", "description": "COSMIC is a comprehensive global resource for information on somatic mutations in human cancer, combining curation of the scientific literature with tumor resequencing data from the Cancer Genome Project at the Sanger Institute, U.K. This collection references genes.", "created": "2019-06-11T14:17:59.699+0000", "modified": "2019-06-11T14:17:59.699+0000", "resources": [{"id": 1670, "mirId": "MIR:00100802", "urlPattern": "http://cancer.sanger.ac.uk/cosmic/gene/overview?ln={$id}", "name": "COSMIC Gene at Sanger", "description": "COSMIC Gene at Sanger", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BRAF", "resourceHomeUrl": "http://cancer.sanger.ac.uk/cosmic/", "institution": {"id": 1393, "name": "Wellcome Trust Sanger Institute, Wellcome Trust Genome Campus, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BRAF", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1671, "prefix": "dbgap", "mirId": "MIR:00000602", "name": "dbGaP", "pattern": "^phs[0-9]{6}(.v\\d+.p\\d+)?$", "description": "The database of Genotypes and Phenotypes (dbGaP) archives and distributes the results of studies that have investigated the interaction of genotype and phenotype.", "created": "2019-06-11T14:17:59.890+0000", "modified": "2019-06-11T14:17:59.890+0000", "resources": [{"id": 1672, "mirId": "MIR:00100803", "urlPattern": "https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/study.cgi?study_id={$id}", "name": "dbGaP through NCBI", "description": "dbGaP through NCBI", "official": true, "providerCode": "ncbi", "sampleId": "phs000768.v2.p1", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/projects/gap", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "phs000768.v2.p1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1673, "prefix": "iao", "mirId": "MIR:00000603", "name": "Information Artifact Ontology", "pattern": "^\\d{7}$", "description": "An ontology of information entities, originally driven by work by the Ontology of Biomedical Investigation (OBI) digital entity and realizable information entity branch.", "created": "2019-06-11T14:18:00.081+0000", "modified": "2019-06-11T14:18:00.081+0000", "resources": [{"id": 1675, "mirId": "MIR:00100804", "urlPattern": "http://purl.obolibrary.org/obo/IAO_{$id}", "name": "IAO through Ontobee", "description": "IAO through Ontobee", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0000030", "resourceHomeUrl": "http://www.ontobee.org/ontology/IAO", "institution": {"id": 1674, "name": "University of Pennsylvania", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000030", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1676, "prefix": "gdc", "mirId": "MIR:00000604", "name": "Genomic Data Commons Data Portal", "pattern": "^[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}$", "description": "The GDC Data Portal is a robust data-driven platform that allows cancer researchers and bioinformaticians to search and download cancer data for analysis.", "created": "2019-06-11T14:18:00.311+0000", "modified": "2019-06-11T14:18:00.311+0000", "resources": [{"id": 1678, "mirId": "MIR:00100805", "urlPattern": "https://portal.gdc.cancer.gov/cases/{$id}", "name": "Genomic Data Commons", "description": "Genomic Data Commons", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ae8c77fe-e6c8-44d5-8265-4a38c637bbef", "resourceHomeUrl": "https://gdc.cancer.gov", "institution": {"id": 1677, "name": "National Cancer Institute Genomic Data Commons, NIH", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ae8c77fe-e6c8-44d5-8265-4a38c637bbef", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1679, "prefix": "omit", "mirId": "MIR:00000605", "name": "OMIT", "pattern": "^\\d{7}$", "description": "The purpose of the OMIT ontology is to establish data exchange standards and common data elements in the microRNA (miR) domain. Biologists (cell biologists in particular) and bioinformaticians can make use of OMIT to leverage emerging semantic technologies in knowledge acquisition and discovery for more effective identification of important roles performed by miRs in humans' various diseases and biological processes (usually through miRs' respective target genes).", "created": "2019-06-11T14:18:00.566+0000", "modified": "2019-06-11T14:18:00.566+0000", "resources": [{"id": 1680, "mirId": "MIR:00100806", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/omit/terms?short_form=OMIT_{$id}", "name": "Ontology for miRNA Target (OMIT) through OLS", "description": "Ontology for miRNA Target (OMIT) through OLS", "official": false, "providerCode": "ols", "sampleId": "0005506", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/omit/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0005506", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1681, "prefix": "insdc.cds", "mirId": "MIR:00000606", "name": "INSDC CDS", "pattern": "^([A-Z]\\d{5}|[A-Z]{2}\\d{6}|[A-Z]{4}\\d{8}|[A-J][A-Z]{2}\\d{5})(\\.\\d+)?$", "description": "The coding sequence or protein identifiers as maintained in INSDC.", "created": "2019-06-11T14:18:00.782+0000", "modified": "2019-06-11T14:18:00.782+0000", "resources": [{"id": 1684, "mirId": "MIR:00100809", "urlPattern": "http://getentry.ddbj.nig.ac.jp/getentry/dad/{$id}", "name": "INSDC CDS through DDBJ", "description": "INSDC CDS through DDBJ", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AAA35559", "resourceHomeUrl": "http://getentry.ddbj.nig.ac.jp", "institution": {"id": 121, "name": "DNA Data Bank of Japan, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}, {"id": 1682, "mirId": "MIR:00100807", "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", "name": "INSDC CDS through ENA", "description": "INSDC CDS through ENA", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AAA35559", "resourceHomeUrl": "https://www.ebi.ac.uk/ena", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1683, "mirId": "MIR:00100808", "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}", "name": "INSDC CDS through NCBI", "description": "INSDC CDS through NCBI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AAA35559", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/protein/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AAA35559", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1688, "prefix": "glytoucan", "mirId": "MIR:00000608", "name": "GlyTouCan", "pattern": "^G[0-9]{5}[A-Z]{2}$", "description": "GlyTouCan is the single worldwide registry of glycan (carbohydrate sugar chain) data.", "created": "2019-06-11T14:18:01.543+0000", "modified": "2019-06-11T14:18:01.543+0000", "resources": [{"id": 1690, "mirId": "MIR:00100812", "urlPattern": "https://glytoucan.org/Structures/Glycans/{$id}", "name": "The Glycan Repository", "description": "The Glycan Repository", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "G00054MO", "resourceHomeUrl": "https://glytoucan.org", "institution": {"id": 1689, "name": "Soka University, Hachioji, Tokyo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "G00054MO", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1696, "prefix": "d1id", "mirId": "MIR:00000611", "name": "DataONE", "pattern": "\\S+", "description": "DataONE provides infrastructure facilitating long-term access to scientific research data of relevance to the earth sciences.", "created": "2019-06-11T14:18:02.239+0000", "modified": "2019-06-11T14:18:02.239+0000", "resources": [{"id": 1698, "mirId": "MIR:00100815", "urlPattern": "https://cn.dataone.org/cn/v2/resolve/{{$id}}", "name": "DataONE", "description": "DataONE", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "00030692-0FE1-4A1B-955E-A2E55D659267", "resourceHomeUrl": "https://www.dataone.org", "institution": {"id": 1697, "name": "DataONE, Albuquerque, NM", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00030692-0FE1-4A1B-955E-A2E55D659267", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1702, "prefix": "mmp.ref", "mirId": "MIR:00000613", "name": "MarRef", "pattern": "^MMP\\d+.\\d+$", "description": "MarRef is a manually curated marine microbial reference genome database that contains completely sequenced genomes.", "created": "2019-06-11T14:18:02.696+0000", "modified": "2019-06-11T14:18:02.696+0000", "resources": [{"id": 1704, "mirId": "MIR:00100817", "urlPattern": "https://mmp.sfb.uit.no/databases/marref/#/records/{$id}", "name": "MarRef through SfB", "description": "MarRef through SfB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MMP3312982.2", "resourceHomeUrl": "https://mmp.sfb.uit.no/databases/marref/", "institution": {"id": 1703, "name": "Center for Bioinformatics (SfB), UiT The Arctic university of Norway", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NO", "countryName": "Norway"}}, "location": {"countryCode": "NO", "countryName": "Norway"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MMP3312982.2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1705, "prefix": "mmp.db", "mirId": "MIR:00000614", "name": "MarDB", "pattern": "^MMP\\d+.\\d+$", "description": "MarDB includes all sequenced marine microbial genomes regardless of level of completeness.", "created": "2019-06-11T14:18:02.934+0000", "modified": "2019-06-11T14:18:02.934+0000", "resources": [{"id": 1706, "mirId": "MIR:00100818", "urlPattern": "https://mmp.sfb.uit.no/databases/mardb/#/records/{$id}", "name": "MarDB through SfB", "description": "MarDB through SfB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MMP02954345.1", "resourceHomeUrl": "https://mmp.sfb.uit.no/databases/mardb/", "institution": {"id": 1703, "name": "Center for Bioinformatics (SfB), UiT The Arctic university of Norway", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NO", "countryName": "Norway"}}, "location": {"countryCode": "NO", "countryName": "Norway"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MMP02954345.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1707, "prefix": "mmp.cat", "mirId": "MIR:00000615", "name": "MarCat", "pattern": "^MMP\\d+.\\d+$", "description": "MarCat is a gene (protein) catalogue of uncultivable and cultivable marine genes and proteins derived from metagenomics samples.", "created": "2019-06-11T14:18:03.141+0000", "modified": "2019-06-11T14:18:03.141+0000", "resources": [{"id": 1708, "mirId": "MIR:00100819", "urlPattern": "https://mmp.sfb.uit.no/databases/marcat/#/records/{$id}", "name": "MarCat through SfB", "description": "MarCat through SfB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MMP743597.11", "resourceHomeUrl": "https://mmp.sfb.uit.no/databases/marcat/", "institution": {"id": 1703, "name": "Center for Bioinformatics (SfB), UiT The Arctic university of Norway", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NO", "countryName": "Norway"}}, "location": {"countryCode": "NO", "countryName": "Norway"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MMP743597.11", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1709, "prefix": "biotools", "mirId": "MIR:00000616", "name": "BioTools", "pattern": "^[A-Za-z0-9\\_]*$", "description": "Tool and data services registry.", "created": "2019-06-11T14:18:03.353+0000", "modified": "2019-06-11T14:18:03.353+0000", "resources": [{"id": 1711, "mirId": "MIR:00100820", "urlPattern": "https://bio.tools/{$id}", "name": "BioTools", "description": "BioTools", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "uniprotkb", "resourceHomeUrl": "https://bio.tools/", "institution": {"id": 1710, "name": "Elixir-DK", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DK", "countryName": "Denmark"}}, "location": {"countryCode": "DK", "countryName": "Denmark"}, "deprecated": false, "deprecationDate": null}], "sampleId": "uniprotkb", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1712, "prefix": "aop", "mirId": "MIR:00000617", "name": "AOPWiki", "pattern": "^\\d+$", "description": "International repository of Adverse Outcome Pathways.", "created": "2019-06-11T14:18:03.584+0000", "modified": "2019-06-11T14:18:03.584+0000", "resources": [{"id": 1714, "mirId": "MIR:00100821", "urlPattern": "https://aopwiki.org/aops/{$id}", "name": "AOPWiki", "description": "AOPWiki", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "98", "resourceHomeUrl": "https://aopwiki.org/", "institution": {"id": 1713, "name": "European Commision - DG Joint Research Centre and U.S Environmental Protection Agency", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "98", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1715, "prefix": "ngl", "mirId": "MIR:00000618", "name": "NASA GeneLab", "pattern": "^GLDS-\\d+$", "description": "NASA's GeneLab gathers spaceflight genomic data, RNA and protein expression, and metabolic profiles, interfaces with existing databases for expanded research, will offer tools to conduct data analysis, and is in the process of creating a place online where scientists, researchers, teachers and students can connect with their peers, share their results, and communicate with NASA.", "created": "2019-06-11T14:18:03.826+0000", "modified": "2019-06-11T14:18:03.826+0000", "resources": [{"id": 1717, "mirId": "MIR:00100822", "urlPattern": "https://genelab-data.ndc.nasa.gov/genelab/accession/{$id}", "name": "NASA GeneLab", "description": "NASA GeneLab", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "GLDS-141", "resourceHomeUrl": "https://genelab-data.ndc.nasa.gov/genelab/", "institution": {"id": 1716, "name": "NASA's Ames Research Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GLDS-141", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1699, "prefix": "cath", "mirId": "MIR:00000612", "name": "CATH Protein Structural Domain Superfamily", "pattern": "^[1-6]\\.[0-9]+\\.[0-9]+\\.[0-9]+$", "description": "CATH is a classification of protein structural domains. We group protein domains into superfamilies when there is sufficient evidence they have diverged from a common ancestor. CATH can be used to predict structural and functional information directly from protein sequence.", "created": "2019-06-11T14:18:02.470+0000", "modified": "2021-02-01T16:12:25.234+0000", "resources": [{"id": 1701, "mirId": "MIR:00100816", "urlPattern": "http://www.cathdb.info/cathnode/{$id}", "name": "CATH Node through UCL", "description": "CATH Node through UCL", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1.10.8.10", "resourceHomeUrl": "http://www.cathdb.info", "institution": {"id": 1700, "name": "University College London", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1.10.8.10", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1662, "prefix": "cellosaurus", "mirId": "MIR:00000598", "name": "Cellosaurus", "pattern": "^CVCL_[A-Z0-9]{4}$", "description": "The Cellosaurus is a knowledge resource on cell lines. It attempts to describe all cell lines used in biomedical research. Its scope includes: Immortalized cell lines; naturally immortal cell lines (example: stem cell lines); finite life cell lines when those are distributed and used widely; vertebrate cell line with an emphasis on human, mouse and rat cell lines; and invertebrate (insects and ticks) cell lines. Its scope does not include primary cell lines (with the exception of the finite life cell lines described above) and plant cell lines.", "created": "2019-06-11T14:17:59.000+0000", "modified": "2021-02-01T16:38:40.925+0000", "resources": [{"id": 1663, "mirId": "MIR:00100799", "urlPattern": "https://web.expasy.org/cellosaurus/{$id}", "name": "Cellosaurus through SIB", "description": "Cellosaurus through SIB", "official": false, "providerCode": "sib", "sampleId": "CVCL_0030", "resourceHomeUrl": "https://web.expasy.org/cellosaurus/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CVCL_0030", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1691, "prefix": "metacyc.compound", "mirId": "MIR:00000609", "name": "MetaCyc Compound", "pattern": "^[A-Za-z0-9+_.%-:]+$", "description": "MetaCyc is a curated database of experimentally elucidated metabolic pathways from all domains of life. MetaCyc contains 2526 pathways from 2844 different organisms. MetaCyc contains pathways involved in both primary and secondary metabolism, as well as associated metabolites, reactions, enzymes, and genes. The goal of MetaCyc is to catalog the universe of metabolism by storing a representative sample of each experimentally elucidated pathway.", "created": "2019-06-11T14:18:01.783+0000", "modified": "2021-04-17T19:53:03.023+0000", "resources": [{"id": 1693, "mirId": "MIR:00100813", "urlPattern": "https://metacyc.org/compound?orgid=META&id={$id}", "name": "MetaCyc Metabolic Pathway Database", "description": "MetaCyc Metabolic Pathway Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CPD-10330", "resourceHomeUrl": "https://metacyc.org", "institution": {"id": 1692, "name": "SRI International", "homeUrl": "https://www.sri.com/", "description": "SRI is an independent, nonprofit research center that works with clients to take the most advanced R&D from the laboratory to the marketplace.", "rorId": "https://ror.org/05s570m15", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CPD-10330", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1694, "prefix": "metacyc.reaction", "mirId": "MIR:00000610", "name": "MetaCyc Reaction", "pattern": "^[A-Za-z0-9+_.%-:]+$", "description": "MetaCyc is a curated database of experimentally elucidated metabolic pathways from all domains of life. MetaCyc contains 2526 pathways from 2844 different organisms. MetaCyc contains pathways involved in both primary and secondary metabolism, as well as associated metabolites, reactions, enzymes, and genes. The goal of MetaCyc is to catalog the universe of metabolism by storing a representative sample of each experimentally elucidated pathway.", "created": "2019-06-11T14:18:02.043+0000", "modified": "2021-04-17T19:55:01.284+0000", "resources": [{"id": 1695, "mirId": "MIR:00100814", "urlPattern": "https://metacyc.org/META/NEW-IMAGE?type=REACTION&object={$id}", "name": "MetaCyc Metabolic Pathway Database - Reaction", "description": "MetaCyc Metabolic Pathway Database - Reaction", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "RXN-14904", "resourceHomeUrl": "https://metacyc.org", "institution": {"id": 1692, "name": "SRI International", "homeUrl": "https://www.sri.com/", "description": "SRI is an independent, nonprofit research center that works with clients to take the most advanced R&D from the laboratory to the marketplace.", "rorId": "https://ror.org/05s570m15", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "RXN-14904", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1718, "prefix": "erv", "mirId": "MIR:00000619", "name": "Human Endogenous Retrovirus Database", "pattern": "^[A-Za-z0-9\\-\\_]+$", "description": "Endogenous retroviruses (ERVs) are common in vertebrate genomes; a typical mammalian genome contains tens to hundreds of thousands of ERV elements. Most ERVs are evolutionarily old and have accumulated multiple mutations, playing important roles in physiology and disease processes. The Human Endogenous Retrovirus Database (hERV) is compiled from the human genome nucleotide sequences obtained from Human Genome Projects, and screens those sequences for hERVs, whilst continuously improving classification and characterization of retroviral families. It provides access to individual reconstructed HERV elements, their sequence, structure and features.", "created": "2019-06-11T14:18:04.072+0000", "modified": "2019-06-11T14:18:04.072+0000", "resources": [{"id": 1720, "mirId": "MIR:00100823", "urlPattern": "https://herv.img.cas.cz/s/{$id}", "name": "Human Endogenous Retrovirus Database", "description": "Human Endogenous Retrovirus Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "THE1B", "resourceHomeUrl": "https://herv.img.cas.cz/", "institution": {"id": 1719, "name": "Institute of Molecular Genetics, Academy of Sciences of the Czech Republic", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}}, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}, "deprecated": false, "deprecationDate": null}], "sampleId": "THE1B", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1721, "prefix": "napdi", "mirId": "MIR:00000620", "name": "Natural Product-Drug Interaction Research Data Repository", "pattern": "^[0-9]+$", "description": "The Natural Product-Drug Interaction Research Data Repository, a publicly accessible database where researchers can access scientific results, raw data, and recommended approaches to optimally assess the clinical significance of pharmacokinetic natural product-drug interactions (PK-NPDIs).", "created": "2019-06-11T14:18:04.316+0000", "modified": "2019-06-11T14:18:04.316+0000", "resources": [{"id": 1723, "mirId": "MIR:00100824", "urlPattern": "https://repo.napdi.org/study/{$id}", "name": "Natural Product-Drug Interaction Research Data Repository", "description": "Natural Product-Drug Interaction Research Data Repository", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "28", "resourceHomeUrl": "https://repo.napdi.org/", "institution": {"id": 1722, "name": "National Center for Complementary and Integrative Health, National Institutes of Health, Washington D.C.", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "28", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1724, "prefix": "arraymap", "mirId": "MIR:00000621", "name": "ArrayMap", "pattern": "^[\\w\\-:,]{3,64}$", "description": "arrayMap is a collection of pre-processed oncogenomic array data sets and CNA (somatic copy number aberrations) profiles. CNA are a type of mutation commonly found in cancer genomes. arrayMap data is assembled from public repositories and supplemented with additional sources, using custom curation pipelines. This information has been mapped to multiple editions of the reference human genome.", "created": "2019-06-11T14:18:04.557+0000", "modified": "2019-06-11T14:18:04.557+0000", "resources": [{"id": 1725, "mirId": "MIR:00100825", "urlPattern": "https://www.arraymap.org/pgx:{$id}", "name": "ArrayMap", "description": "ArrayMap", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "icdom:8500_3", "resourceHomeUrl": "https://www.arraymap.org", "institution": {"id": 1385, "name": "Institute of Molecular Life Sciences, University of Zurich, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "icdom:8500_3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1726, "prefix": "begdb", "mirId": "MIR:00000622", "name": "Benchmark Energy & Geometry Database", "pattern": "^[0-9]+$", "description": "The Benchmark Energy & Geometry Database (BEGDB) collects results of highly accurate quantum mechanics (QM) calculations of molecular structures, energies and properties. These data can serve as benchmarks for testing and parameterization of other computational methods.", "created": "2019-06-11T14:18:04.748+0000", "modified": "2019-06-11T14:18:04.748+0000", "resources": [{"id": 1728, "mirId": "MIR:00100826", "urlPattern": "http://www.begdb.com/index.php?action=oneMolecule&state=show&id={$id}", "name": "Benchmark Energy & Geometry Database", "description": "Benchmark Energy & Geometry Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4214", "resourceHomeUrl": "http://www.begdb.com", "institution": {"id": 1727, "name": "Institute of Organic Chemistry and Biochemistry, Academy of Sciences of the Czech Republic, Prague", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}}, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4214", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1732, "prefix": "sisu", "mirId": "MIR:00000624", "name": "SISu", "pattern": "^[0-9]+:[0-9]+$", "description": "The Sequencing Initiative Suomi (SISu) project is an international collaboration to harmonize and aggregate whole genome and exome sequence data from Finnish samples, providing data for researchers and clinicians. The SISu project allows for the search of variants to determine their attributes and occurrence in Finnish cohorts, and provides summary data on single nucleotide variants and indels from exomes, sequenced in disease-specific and population genetic studies.", "created": "2019-06-11T14:18:05.215+0000", "modified": "2019-06-11T14:18:05.215+0000", "resources": [{"id": 1734, "mirId": "MIR:00100828", "urlPattern": "http://search.sisuproject.fi/#/variant/{$id}", "name": "SISu", "description": "SISu", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "17:41223048", "resourceHomeUrl": "http://www.sisuproject.fi/", "institution": {"id": 1733, "name": "Sequencing Initiative Suomi project (SISu), Institute for Molecular Medicine Finland (FIMM), University of Helsinki, Helsinki", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FI", "countryName": "Finland"}}, "location": {"countryCode": "FI", "countryName": "Finland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "17:41223048", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1735, "prefix": "mzspec", "mirId": "MIR:00000625", "name": "Universal Spectrum Identifier", "pattern": "^mzspec:.+$", "description": "The Universal Spectrum Identifier (USI) is a compound identifier that provides an abstract path to refer to a single spectrum generated by a mass spectrometer, and potentially the ion that is thought to have produced it.", "created": "2019-06-11T14:18:05.468+0000", "modified": "2019-06-11T14:18:05.468+0000", "resources": [{"id": 1737, "mirId": "MIR:00100829", "urlPattern": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/ShowObservedSpectrum?usi=mzspec:{$id}", "name": "Universal Spectrum Identifier through Peptide Atlas", "description": "Universal Spectrum Identifier through Peptide Atlas", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PXD002255::ES_XP_Ubi_97H_HCD_349:scan:9617:LAEIYVNSSFYK/2", "resourceHomeUrl": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/ShowObservedSpectrum", "institution": {"id": 193, "name": "Institute for Systems Biology", "homeUrl": "https://isbscience.org/", "description": "ISB was created in 2000 as the first-ever institute dedicated to systems biology.", "rorId": "https://ror.org/02tpgw303", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 2394, "mirId": "MIR:00000771", "urlPattern": "http://proteomecentral.proteomexchange.org/usi/?usi=mzspec:{$id}", "name": "Institute for Systems Biology, Seattle, USA", "description": "Institute for Systems Biology (ISB), Seattle, USA is an independent research institute focusing on systems biology.", "official": true, "providerCode": "pc", "sampleId": "PXD000865:00603_F01_P004608_B00F_A00_R1:scan:14453:SSLLDVLAAR/2", "resourceHomeUrl": "http://proteomecentral.proteomexchange.org/", "institution": {"id": 193, "name": "Institute for Systems Biology", "homeUrl": "https://isbscience.org/", "description": "ISB was created in 2000 as the first-ever institute dedicated to systems biology.", "rorId": "https://ror.org/02tpgw303", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PXD002255::ES_XP_Ubi_97H_HCD_349:scan:9617:LAEIYVNSSFYK/2", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1738, "prefix": "crisprdb", "mirId": "MIR:00000626", "name": "CRISPRdb", "pattern": "^[0-9]+$", "description": "Repeated CRISPR (\"clustered regularly interspaced short palindromic repeats\") elements found in archaebacteria and eubacteria are believed to defend against viral infection, potentially targeting invading DNA for degradation. CRISPRdb is a database that stores information on CRISPRs that are automatically extracted from newly released genome sequence data.", "created": "2019-06-11T14:18:05.694+0000", "modified": "2019-06-11T14:18:05.694+0000", "resources": [{"id": 1740, "mirId": "MIR:00100830", "urlPattern": "http://crispr.i2bc.paris-saclay.fr/cgi-bin/crispr/SpecieProperties_db.cgi?Taxon_id[]={$id}", "name": "CRISPRdb", "description": "CRISPRdb", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "551115", "resourceHomeUrl": "http://crispr.i2bc.paris-saclay.fr/", "institution": {"id": 1739, "name": "Universit\u00e9 Paris-Sud, Institut de G\u00e9n\u00e9tique et Microbiologie, Orsay,", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "551115", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1741, "prefix": "gnpis", "mirId": "MIR:00000627", "name": "GnpIS", "pattern": "^[A-Za-z0-9]+$", "description": "GnpIS is an integrative information system focused on plants and fungal pests. It provides both genetic (e.g. genetic maps, quantitative trait loci, markers, single nucleotide polymorphisms, germplasms and genotypes) and genomic data (e.g. genomic sequences, physical maps, genome annotation and expression data) for species of agronomical interest.", "created": "2019-06-11T14:18:05.948+0000", "modified": "2019-06-11T14:18:05.948+0000", "resources": [{"id": 1743, "mirId": "MIR:00100831", "urlPattern": "https://urgi.versailles.inra.fr/gnpis/#result/term={$id}", "name": "GnpIS", "description": "GnpIS", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AY109603", "resourceHomeUrl": "https://urgi.versailles.inra.fr/gnpis/", "institution": {"id": 1742, "name": "URGI (Research Unit in Genomics-Info), INRA de Versailles, Route de Saint-Cyr, Versailles", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AY109603", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1744, "prefix": "licebase", "mirId": "MIR:00000628", "name": "LiceBase", "pattern": "^[A-Za-z0-9\\-\\/]+$", "description": "Sea lice (Lepeophtheirus salmonis and Caligus species) are the major pathogens of salmon, significantly impacting upon the global salmon farming industry. Lice control is primarily accomplished through chemotherapeutants, though emerging resistance necessitates the development of new treatment methods (biological agents, prophylactics and new drugs). LiceBase is a database for sea lice genomics, providing genome annotation of the Atlantic salmon louse Lepeophtheirus salmonis, a genome browser, and access to related high-thoughput genomics data. LiceBase also mines and stores data from related genome sequencing and functional genomics projects.", "created": "2019-06-11T14:18:06.185+0000", "modified": "2019-06-11T14:18:06.185+0000", "resources": [{"id": 1746, "mirId": "MIR:00100832", "urlPattern": "https://licebase.org/?q={$id}", "name": "LiceBase", "description": "LiceBase", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "EMLSAT00000003403", "resourceHomeUrl": "https://licebase.org", "institution": {"id": 1745, "name": "Sea Lice Research Centre (SLRC), University of Bergen", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NO", "countryName": "Norway"}}, "location": {"countryCode": "NO", "countryName": "Norway"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EMLSAT00000003403", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1747, "prefix": "sugarbind", "mirId": "MIR:00000629", "name": "SugarBind", "pattern": "^[A-Za-z]+\\/[0-9]+$", "description": "The SugarBind Database captures knowledge of glycan binding of human pathogen lectins and adhesins, where each glycan-protein binding pair is associated with at least one published reference. It provides information on the pathogen agent, the lectin/adhesin involved, and the human glycan ligand. This collection provides information on ligands.", "created": "2019-06-11T14:18:06.412+0000", "modified": "2019-06-11T14:18:06.412+0000", "resources": [{"id": 1749, "mirId": "MIR:00100833", "urlPattern": "http://sugarbind.expasy.org/{$id}", "name": "SugarBind", "description": "SugarBind", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "lectins/172", "resourceHomeUrl": "http://sugarbind.expasy.org/", "institution": {"id": 1748, "name": "Proteome Informatics Group, SIB Swiss Institute of Bioinformatics, Geneva", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "lectins/172", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1750, "prefix": "rnacentral", "mirId": "MIR:00000630", "name": "RNAcentral", "pattern": "^URS[0-9A-F]{10}(\\_\\d+)?$", "description": "RNAcentral is a public resource that offers integrated access to a comprehensive and up-to-date set of non-coding RNA sequences provided by a collaborating group of Expert Databases.", "created": "2019-06-11T14:18:06.653+0000", "modified": "2019-06-11T14:18:06.653+0000", "resources": [{"id": 1751, "mirId": "MIR:00100834", "urlPattern": "https://rnacentral.org/rna/{$id}", "name": "RNAcentral through EMBL-EBI", "description": "RNAcentral through EMBL-EBI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "URS0000759CF4", "resourceHomeUrl": "https://rnacentral.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "URS0000759CF4", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1752, "prefix": "microscope", "mirId": "MIR:00000631", "name": "MicroScope", "pattern": "^\\d+$", "description": "MicroScope is an integrative resource that supports systematic and efficient revision of microbial genome annotation, data management and comparative analysis.", "created": "2019-06-11T14:18:06.853+0000", "modified": "2019-06-11T14:18:06.853+0000", "resources": [{"id": 1754, "mirId": "MIR:00100836", "urlPattern": "http://www.genoscope.cns.fr/agc/microscope/mage/info.php?id={$id}", "name": "MicroScope", "description": "MicroScope", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "5601141", "resourceHomeUrl": "http://www.genoscope.cns.fr/agc/microscope", "institution": {"id": 1753, "name": "Universit\u00e9 \u00c9vry-Val-d'Essonne, CEA, Institut de G\u00e9nomique - Genoscope, Laboratoire d'Analyses Bioinformatiques pour la G\u00e9nomique et le M\u00e9tabolisme, Evry", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5601141", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1755, "prefix": "swissregulon", "mirId": "MIR:00000632", "name": "SwissRegulon", "pattern": "^[A-Za-z0-9]+$", "description": "A database of genome-wide annotations of regulatory sites. It contains annotations for 17 prokaryotes and 3 eukaryotes. The database frontend offers an intuitive interface showing genomic information in a graphical form.", "created": "2019-06-11T14:18:07.113+0000", "modified": "2019-06-11T14:18:07.113+0000", "resources": [{"id": 1756, "mirId": "MIR:00100837", "urlPattern": "http://swissregulon.unibas.ch/query/{$id}", "name": "SwissRegulon", "description": "SwissRegulon", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AHR", "resourceHomeUrl": "http://swissregulon.unibas.ch", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AHR", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1757, "prefix": "validatordb", "mirId": "MIR:00000633", "name": "ValidatorDB", "pattern": "^[A-Za-z0-9\\/]+$", "description": "Database of validation results for ligands and non-standard residues in the Protein Data Bank.", "created": "2019-06-11T14:18:07.321+0000", "modified": "2019-06-11T14:18:07.321+0000", "resources": [{"id": 1759, "mirId": "MIR:00100838", "urlPattern": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/{$id}", "name": "ValidatorDB", "description": "ValidatorDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ByStructure/2h6o", "resourceHomeUrl": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/", "institution": {"id": 1758, "name": "Central European Institute of Technology", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}}, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ByStructure/2h6o", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1760, "prefix": "biominder", "mirId": "MIR:00000634", "name": "Bio-MINDER Tissue Database", "pattern": "^[a-z0-9\\-]+$", "description": "Database of the dielectric properties of biological tissues.", "created": "2019-06-11T14:18:07.548+0000", "modified": "2019-06-11T14:18:07.548+0000", "resources": [{"id": 1762, "mirId": "MIR:00100839", "urlPattern": "https://datalab.rwth-aachen.de/MINDER/resource/{$id}", "name": "Bio-MINDER Tissue Database", "description": "Bio-MINDER Tissue Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "aef4c195-9cf9-46db-a12a-7cfd1ff3eec3", "resourceHomeUrl": "https://datalab.rwth-aachen.de/MINDER", "institution": {"id": 1761, "name": "RWTH Aachen University / NUIG Galway", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IE", "countryName": "Ireland"}}, "location": {"countryCode": "IE", "countryName": "Ireland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "aef4c195-9cf9-46db-a12a-7cfd1ff3eec3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1763, "prefix": "neurovault.collection", "mirId": "MIR:00000635", "name": "NeuroVault Collection", "pattern": "^[1-9][0-9]*$", "description": "Neurovault is an online repository for statistical maps, parcellations and atlases of the brain. This collection references sets (collections) of images.", "created": "2019-06-11T14:18:07.777+0000", "modified": "2019-06-11T14:18:07.777+0000", "resources": [{"id": 1764, "mirId": "MIR:00100840", "urlPattern": "https://neurovault.org/collections/{$id}", "name": "NeuroVault Collection", "description": "NeuroVault Collection", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "3304", "resourceHomeUrl": "http://neurovault.org", "institution": {"id": 98, "name": "Stanford University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3304", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1765, "prefix": "vmhmetabolite", "mirId": "MIR:00000636", "name": "VMH metabolite", "pattern": "[a-zA-Z0-9_\\(\\_\\)\\[\\]]+", "description": "The Virtual Metabolic Human (VMH) is a resource that combines human and gut microbiota metabolism with nutrition and disease.", "created": "2019-06-11T14:18:07.981+0000", "modified": "2019-06-11T14:18:07.981+0000", "resources": [{"id": 1767, "mirId": "MIR:00100841", "urlPattern": "https://www.vmh.life/#metabolite/{$id}", "name": "VMH metabolite", "description": "VMH metabolite", "official": false, "providerCode": "NUI", "sampleId": "h2o", "resourceHomeUrl": "https://www.vmh.life/", "institution": {"id": 2496, "name": "National University of Ireland, Galway", "homeUrl": "http://www.nuigalway.ie/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03bea9k73' with Wikidata IDs [Q644478], and ISNI IDs [0000 0004 0488 0789]", "rorId": null, "location": {"countryCode": "IE", "countryName": "Ireland"}}, "location": {"countryCode": "IE", "countryName": "Ireland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "h2o", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1773, "prefix": "nmr", "mirId": "MIR:00000639", "name": "Nuclear Magnetic Resonance Controlled Vocabulary", "pattern": "^NMR:\\d+$", "description": "nmrCV is a controlled vocabulary to deliver standardized descriptors for the open mark-up language for NMR raw and spectrum data, sanctioned by the metabolomics standards initiative msi.", "created": "2019-06-11T14:18:08.710+0000", "modified": "2019-06-11T14:18:08.710+0000", "resources": [{"id": 1774, "mirId": "MIR:00100844", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/nmrcv/terms?short_form=NMR:{$id}", "name": "NMR through OLS", "description": "NMR through OLS", "official": false, "providerCode": "ols", "sampleId": "1000003", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/nmrcv", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1000003", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1775, "prefix": "vmhreaction", "mirId": "MIR:00000640", "name": "VMH reaction", "pattern": "[a-zA-Z0-9_\\(\\_\\)\\[\\]]+", "description": "The Virtual Metabolic Human (VMH) is a resource that combines human and gut microbiota metabolism with nutrition and disease.", "created": "2019-06-11T14:18:08.921+0000", "modified": "2019-06-11T14:18:08.921+0000", "resources": [{"id": 1776, "mirId": "MIR:00100845", "urlPattern": "https://www.vmh.life/#reaction/{$id}", "name": "VMH reaction", "description": "VMH reaction", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HEX1", "resourceHomeUrl": "https://www.vmh.life/", "institution": {"id": 2496, "name": "National University of Ireland, Galway", "homeUrl": "http://www.nuigalway.ie/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03bea9k73' with Wikidata IDs [Q644478], and ISNI IDs [0000 0004 0488 0789]", "rorId": null, "location": {"countryCode": "IE", "countryName": "Ireland"}}, "location": {"countryCode": "IE", "countryName": "Ireland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HEX1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1777, "prefix": "ascl", "mirId": "MIR:00000641", "name": "Astrophysics Source Code Library", "pattern": "^[0-9\\.]+$", "description": "The Astrophysics Source Code Library (ASCL) is a free online registry for software that have been used in research that has appeared in, or been submitted to, peer-reviewed publications. The ASCL is indexed by the SAO/NASA Astrophysics Data System (ADS) and Web of Science's Data Citation Index (WoS DCI), and is citable by using the unique ascl ID assigned to each code. The ascl ID can be used to link to the code entry by prefacing the number with ascl.net (i.e., ascl.net/1201.001).", "created": "2019-06-11T14:18:09.136+0000", "modified": "2019-06-11T14:18:09.136+0000", "resources": [{"id": 1779, "mirId": "MIR:00100846", "urlPattern": "http://ascl.net/{$id}", "name": "Astrophysics Source Code Library", "description": "Astrophysics Source Code Library", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1801.012", "resourceHomeUrl": "http://ascl.net/", "institution": {"id": 1778, "name": "Astrophysics Source Code Library", "homeUrl": "http://ascl.net/", "description": "The Astrophysics Source Code Library (ASCL), founded in 1999 by Robert Nemiroff and John Wallin, takes an active approach to sharing astrophysical source code.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1801.012", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1780, "prefix": "facebase", "mirId": "MIR:00000642", "name": "FaceBase Data Repository", "pattern": "^FB\\d{8}$", "description": "FaceBase is a collaborative NIDCR-funded consortium to generate data in support of advancing research into craniofacial development and malformation. It serves as a community resource by generating large datasets of a variety of types and making them available to the wider research community via this website. Practices emphasize a comprehensive and multidisciplinary approach to understanding the developmental processes that create the face. The data offered spotlights high-throughput genetic, molecular, biological, imaging and computational techniques. One of the missions of this consortium is to facilitate cooperation and collaboration between projects.", "created": "2019-06-11T14:18:09.365+0000", "modified": "2019-06-11T14:18:09.365+0000", "resources": [{"id": 1782, "mirId": "MIR:00100847", "urlPattern": "https://www.facebase.org/data/record/#1/isa:dataset/accession={$id}", "name": "FaceBase Data Repository", "description": "FaceBase Data Repository", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "FB00000917", "resourceHomeUrl": "https://www.facebase.org", "institution": {"id": 1781, "name": "University of Southern California", "homeUrl": "https://www.usc.edu/", "description": "The University of Southern California is a leading private research university located in Los Angeles \u2014 a global center for arts, technology and international business. It is home to the College of Letters, Arts and Sciences and 21 exceptional academic schools and units. USC\u2019s Health Sciences campus houses renowned specialized care and research in cancer, stem cell and regenerative medicine, orthopedics and sports medicine. The university is the largest private sector employer in the city of Los Angeles, responsible for $8 billion annually in economic activity in the region.", "rorId": "https://ror.org/03taz7m60", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "FB00000917", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1783, "prefix": "gudmap", "mirId": "MIR:00000643", "name": "GUDMAP", "pattern": "^[-0-9a-zA-Z]+(@[-0-9a-zA-Z]+)?$", "description": "The GenitoUrinary Development Molecular Anatomy Project (GUDMAP) is a consortium of laboratories working to provide the scientific and medical community with tools to facilitate research on the GenitoUrinary (GU) tract.", "created": "2019-06-11T14:18:09.598+0000", "modified": "2019-06-11T14:18:09.598+0000", "resources": [{"id": 1785, "mirId": "MIR:00100848", "urlPattern": "https://gudmap.org/id/{$id}", "name": "GUDMAP", "description": "GUDMAP", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q-2958", "resourceHomeUrl": "http://www.gudmap.org/", "institution": {"id": 1784, "name": "GenitoUrinary Development Molecular Anatomy Project (GUDMAP) Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Q-2958", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1786, "prefix": "eu89h", "mirId": "MIR:00000644", "name": "JRC Data Catalogue", "pattern": "^[a-z0-9\\-_]+$", "description": "The JRC Data Catalogue gives access to the multidisciplinary data produced and maintained by the Joint Research Centre, the European Commission's in-house science service providing independent scientific advice and support to policies of the European Union.", "created": "2019-06-11T14:18:09.859+0000", "modified": "2019-06-11T14:18:09.859+0000", "resources": [{"id": 1788, "mirId": "MIR:00100849", "urlPattern": "http://data.europa.eu/89h/{$id}", "name": "JRC Data Catalogue", "description": "JRC Data Catalogue", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "jrc-eurl-ecvam-chemagora", "resourceHomeUrl": "http://data.jrc.ec.europa.eu/", "institution": {"id": 1787, "name": "European Commission, Joint Research Centre (JRC)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "BE", "countryName": "Belgium"}}, "location": {"countryCode": "BE", "countryName": "Belgium"}, "deprecated": false, "deprecationDate": null}], "sampleId": "jrc-eurl-ecvam-chemagora", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1792, "prefix": "mw.study", "mirId": "MIR:00000646", "name": "Metabolomics Workbench Study", "pattern": "^ST[0-9]{6}$", "description": "Metabolomics Workbench stores metabolomics data for small and large studies on cells, tissues and organisms for the Metabolomics Consortium Data Repository and Coordinating Center (DRCC).", "created": "2019-06-11T14:18:10.316+0000", "modified": "2019-06-11T14:18:10.316+0000", "resources": [{"id": 1795, "mirId": "MIR:00100860", "urlPattern": "https://www.omicsdi.org/dataset/metabolomics_workbench/{$id}", "name": "Metabolomics Workbench Study through OmicsDI", "description": "Metabolomics Workbench Study through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "ST000900", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1794, "mirId": "MIR:00100859", "urlPattern": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Study&StudyID={$id}", "name": "Metabolomics Workbench Study", "description": "Metabolomics Workbench Study", "official": true, "providerCode": "ucsd", "sampleId": "ST000900", "resourceHomeUrl": "http://www.metabolomicsworkbench.org/", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ST000900", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1796, "prefix": "mw.project", "mirId": "MIR:00000647", "name": "Metabolomics Workbench Project", "pattern": "^PR[0-9]{6}$", "description": "Metabolomics Workbench stores metabolomics data for small and large studies on cells, tissues and organisms for the Metabolomics Consortium Data Repository and Coordinating Center (DRCC).", "created": "2019-06-11T14:18:10.677+0000", "modified": "2019-06-11T14:18:10.677+0000", "resources": [{"id": 1797, "mirId": "MIR:00100861", "urlPattern": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Project&ProjectID={$id}", "name": "Metabolomics Workbench Project", "description": "Metabolomics Workbench Project", "official": true, "providerCode": "ucsd", "sampleId": "PR000001", "resourceHomeUrl": "http://www.metabolomicsworkbench.org/", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PR000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1798, "prefix": "mex", "mirId": "MIR:00000648", "name": "Metabolome Express", "pattern": "^\\d+$", "description": "A public place to process, interpret and share GC/MS metabolomics datasets.", "created": "2019-06-11T14:18:10.861+0000", "modified": "2019-06-11T14:18:10.861+0000", "resources": [{"id": 1800, "mirId": "MIR:00100862", "urlPattern": "https://www.metabolome-express.org/datasetview.php?datasetid={$id}", "name": "Metabolome Express", "description": "Metabolome Express", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "36", "resourceHomeUrl": "https://www.metabolome-express.org/", "institution": {"id": 1799, "name": "Centre of Excellence in Plant Energy Biology", "homeUrl": "https://plantenergy.edu.au/", "description": "The Australian Research Council Centre of Excellence in Plant Energy Biology (PEB) is a cutting-edge research centre focused on better understanding the ways plants capture, convert and use energy in response to environmental change, with a view towards improved plant energy efficiency.", "rorId": "https://ror.org/01a1mq059", "location": {"countryCode": "AU", "countryName": "Australia"}}, "location": {"countryCode": "AU", "countryName": "Australia"}, "deprecated": false, "deprecationDate": null}, {"id": 1801, "mirId": "MIR:00100863", "urlPattern": "https://www.omicsdi.org/dataset/metabolome_express/MEX{$id}", "name": "Metabolome Express through OmicsDI", "description": "Metabolome Express through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "36", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "36", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1802, "prefix": "gpmdb", "mirId": "MIR:00000649", "name": "GPMDB", "pattern": "^GPM\\d+$", "description": "The Global Proteome Machine Database was constructed to utilize the information obtained by GPM servers to aid in the difficult process of validating peptide MS/MS spectra as well as protein coverage patterns.", "created": "2019-06-11T14:18:11.249+0000", "modified": "2019-06-11T14:18:11.249+0000", "resources": [{"id": 1804, "mirId": "MIR:00100864", "urlPattern": "http://gpmdb.thegpm.org/~/dblist_gpmnum/gpmnum={$id}", "name": "GPMDB", "description": "GPMDB", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "GPM32310002988", "resourceHomeUrl": "http://gpmdb.thegpm.org/", "institution": {"id": 1803, "name": "The Global Proteome Machine Organization", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}, {"id": 1805, "mirId": "MIR:00100865", "urlPattern": "https://www.omicsdi.org/dataset/gpmdb/{$id}", "name": "GPMDB through OmicsDI", "description": "GPMDB through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "GPM32310002988", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GPM32310002988", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1806, "prefix": "massive", "mirId": "MIR:00000650", "name": "MassIVE", "pattern": "^MSV\\d+$", "description": "MassIVE is a community resource developed by the NIH-funded Center for Computational Mass Spectrometry to promote the global, free exchange of mass spectrometry data.", "created": "2019-06-11T14:18:11.594+0000", "modified": "2019-06-11T14:18:11.594+0000", "resources": [{"id": 1807, "mirId": "MIR:00100866", "urlPattern": "https://massive.ucsd.edu/ProteoSAFe/QueryMSV?id={$id}", "name": "MassIVE", "description": "MassIVE", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MSV000082131", "resourceHomeUrl": "https://massive.ucsd.edu/ProteoSAFe/static/massive.jsp", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1808, "mirId": "MIR:00100867", "urlPattern": "https://www.omicsdi.org/dataset/massive/{$id}", "name": "MassIVE through OmicsDI", "description": "MassIVE through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "MSV000082131", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MSV000082131", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1809, "prefix": "fplx", "mirId": "MIR:00000651", "name": "FamPlex", "pattern": "^[a-zA-Z0-9][A-Za-z0-9_]+$", "description": "FamPlex is a collection of resources for grounding biological entities from text and describing their hierarchical relationships.", "created": "2019-06-11T14:18:11.924+0000", "modified": "2019-06-11T14:18:11.924+0000", "resources": [{"id": 1810, "mirId": "MIR:00100869", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100869/{$id}", "name": "FPLX through BioPortal", "description": "FPLX through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "RAS", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/FPLX/", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": true, "deprecationDate": "2021-05-10T19:46:22.120+0000"}, {"id": 2617, "mirId": "MIR:00000809", "urlPattern": "https://sorgerlab.github.io/famplex/{$id}", "name": "Sorger lab at Harvard Medical School", "description": "FamPlex is provided by the Sorger lab at Harvard Medical School.", "official": true, "providerCode": "sorgerlab", "sampleId": "ABL_family", "resourceHomeUrl": "https://sorgerlab.github.io/famplex", "institution": {"id": 2616, "name": "Harvard University", "homeUrl": "https://www.harvard.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03vek6s52' with Wikidata IDs [Q13371,Q5676556], and ISNI IDs [000000041936754X]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "RAS", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1811, "prefix": "aop.events", "mirId": "MIR:00000652", "name": "AOPWiki (Key Event)", "pattern": "^\\d+$", "description": "International repository of Adverse Outcome Pathways.", "created": "2019-06-11T14:18:12.154+0000", "modified": "2019-06-11T14:18:12.154+0000", "resources": [{"id": 1812, "mirId": "MIR:00100870", "urlPattern": "https://aopwiki.org/events/{$id}", "name": "AOPWiki (Key Event)", "description": "AOPWiki (Key Event)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "3", "resourceHomeUrl": "https://aopwiki.org/", "institution": {"id": 1713, "name": "European Commision - DG Joint Research Centre and U.S Environmental Protection Agency", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1813, "prefix": "aop.relationships", "mirId": "MIR:00000653", "name": "AOPWiki (Key Event Relationship)", "pattern": "^\\d+$", "description": "International repository of Adverse Outcome Pathways.", "created": "2019-06-11T14:18:12.357+0000", "modified": "2019-06-11T14:18:12.357+0000", "resources": [{"id": 1814, "mirId": "MIR:00100871", "urlPattern": "https://aopwiki.org/relationships/{$id}", "name": "AOPWiki (Key Event Relationship)", "description": "AOPWiki (Key Event Relationship)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "5", "resourceHomeUrl": "https://aopwiki.org/", "institution": {"id": 1713, "name": "European Commision - DG Joint Research Centre and U.S Environmental Protection Agency", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1815, "prefix": "aop.stressor", "mirId": "MIR:00000654", "name": "AOPWiki (Stressor)", "pattern": "^\\d+$", "description": "International repository of Adverse Outcome Pathways.", "created": "2019-06-11T14:18:12.557+0000", "modified": "2019-06-11T14:18:12.557+0000", "resources": [{"id": 1816, "mirId": "MIR:00100872", "urlPattern": "https://aopwiki.org/stressors/{$id}", "name": "AOPWiki (Stressor)", "description": "AOPWiki (Stressor)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "9", "resourceHomeUrl": "https://aopwiki.org/", "institution": {"id": 1713, "name": "European Commision - DG Joint Research Centre and U.S Environmental Protection Agency", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "9", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1820, "prefix": "dev.ga4ghdos", "mirId": "MIR:00000656", "name": "Development Data Object Service", "pattern": "^[a-zA-Z0-9\\-:#\\.]+$", "description": "Assists in resolving data across cloud resources.", "created": "2019-06-11T14:18:12.998+0000", "modified": "2019-06-11T14:18:12.998+0000", "resources": [{"id": 1822, "mirId": "MIR:00100874", "urlPattern": "https://dos-gdc.ucsc-cgp-dev.org/ga4gh/dos/v1/dataobjects/{$id}", "name": "Data Object Service", "description": "Data Object Service", "official": false, "providerCode": "ucsd", "sampleId": "23fa7b4b-9d68-429b-aece-658b11124bb3#2017-03-24T18:43:16.886826-05:00", "resourceHomeUrl": "http://github.com/ga4gh/data-object-service-schemas", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "23fa7b4b-9d68-429b-aece-658b11124bb3#2017-03-24T18:43:16.886826-05:00", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1823, "prefix": "complexportal", "mirId": "MIR:00000657", "name": "Complex Portal", "pattern": "^CPX-[0-9]+$", "description": "A database that describes manually curated macromolecular complexes and provides links to details about these complexes in other databases.", "created": "2019-06-11T14:18:13.254+0000", "modified": "2019-06-11T14:18:13.254+0000", "resources": [{"id": 1824, "mirId": "MIR:00100875", "urlPattern": "https://www.ebi.ac.uk/complexportal/complex/{$id}", "name": "Complex Portal", "description": "Complex Portal", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CPX-2158", "resourceHomeUrl": "https://www.ebi.ac.uk/complexportal", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CPX-2158", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1825, "prefix": "comptox", "mirId": "MIR:00000658", "name": "CompTox Chemistry Dashboard", "pattern": "^DTXSID\\d+$", "description": "The Chemistry Dashboard is a part of a suite of databases and web applications developed by the US Environmental Protection Agency's Chemical Safety for Sustainability Research Program. These databases and apps support EPA's computational toxicology research efforts to develop innovative methods to change how chemicals are currently evaluated for potential health risks.", "created": "2019-06-11T14:18:13.452+0000", "modified": "2019-06-11T14:18:13.452+0000", "resources": [{"id": 1827, "mirId": "MIR:00100876", "urlPattern": "https://comptox.epa.gov/dashboard/{$id}", "name": "CompTox Chemistry Dashboard", "description": "CompTox Chemistry Dashboard", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "DTXSID2021028", "resourceHomeUrl": "https://comptox.epa.gov/dashboard", "institution": {"id": 1826, "name": "Environmental Protection Agency", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DTXSID2021028", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1828, "prefix": "rbk", "mirId": "MIR:00000659", "name": "Rebuilding a Kidney", "pattern": "^[-0-9a-zA-Z]+(@[-0-9a-zA-Z]+)?$", "description": "(Re)Building a Kidney is an NIDDK-funded consortium of research projects working to optimize approaches for the isolation, expansion, and differentiation of appropriate kidney cell types and their integration into complex structures that replicate human kidney function.", "created": "2019-06-11T14:18:13.721+0000", "modified": "2019-06-11T14:18:13.721+0000", "resources": [{"id": 1830, "mirId": "MIR:00100877", "urlPattern": "https://www.rebuildingakidney.org/id/{$id}", "name": "Rebuilding a Kidney", "description": "Rebuilding a Kidney", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q-2958", "resourceHomeUrl": "https://www.rebuildingakidney.org/", "institution": {"id": 1829, "name": "National Institute Of Diabetes and Digestive and Kidney Diseases (NIDDK)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Q-2958", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1887, "prefix": "ligandbook", "mirId": "MIR:00000681", "name": "LigandBook", "pattern": "^[0-9]+$", "description": "Ligandbook is a public repository for force field parameters with a special emphasis on small molecules and known ligands of proteins. It acts as a warehouse for parameter files that are supplied by the community.", "created": "2019-06-11T14:18:19.416+0000", "modified": "2019-06-11T14:18:19.416+0000", "resources": [{"id": 1889, "mirId": "MIR:00100912", "urlPattern": "https://ligandbook.org/package/{$id}", "name": "LigandBook", "description": "LigandBook", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "785", "resourceHomeUrl": "https://ligandbook.org/", "institution": {"id": 1888, "name": "Institut de Chimie des Substances Naturelles", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "785", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1890, "prefix": "kaggle", "mirId": "MIR:00000682", "name": "Kaggle", "pattern": "^[0-9a-zA-Z\\-]+\\/[0-9a-zA-Z\\-]+$", "description": "Kaggle is a platform for sharing data, performing reproducible analyses, interactive data analysis tutorials, and machine learning competitions.", "created": "2019-06-11T14:18:19.662+0000", "modified": "2019-06-11T14:18:19.662+0000", "resources": [{"id": 1892, "mirId": "MIR:00100913", "urlPattern": "https://www.kaggle.com/{$id}", "name": "Kaggle", "description": "Kaggle", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "nasa/kepler-exoplanet-search-results", "resourceHomeUrl": "https://kaggle.com", "institution": {"id": 1891, "name": "Google LLC", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "nasa/kepler-exoplanet-search-results", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1893, "prefix": "idoo", "mirId": "MIR:00000683", "name": "Identifiers.org Ontology", "pattern": "^[0-9a-zA-Z]+$", "description": "Identifiers.org Ontology", "created": "2019-06-11T14:18:19.905+0000", "modified": "2019-06-11T14:18:19.905+0000", "resources": [{"id": 1894, "mirId": "MIR:00100914", "urlPattern": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology#{$id}", "name": "Identifiers.org Ontology", "description": "Identifiers.org Ontology", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "DataCollection", "resourceHomeUrl": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DataCollection", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1817, "prefix": "swh", "mirId": "MIR:00000655", "name": "Software Heritage", "pattern": "^swh:[1-9]:(cnt|dir|rel|rev|snp):[0-9a-f]+(;(origin|visit|anchor|path|lines)=\\S+)*$", "description": "Software Heritage is the universal archive of software source code.", "created": "2019-06-11T14:18:12.760+0000", "modified": "2020-11-27T10:57:55.228+0000", "resources": [{"id": 1819, "mirId": "MIR:00100873", "urlPattern": "https://archive.softwareheritage.org/browse/swh:{$id}", "name": "Software Heritage", "description": "Software Heritage", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1:rev:309cf2674ee7a0749978cf8265ab91a60aea0f7d", "resourceHomeUrl": "https://archive.softwareheritage.org", "institution": {"id": 1818, "name": "INRIA", "homeUrl": "https://www.inria.fr/en", "description": "No description provided", "rorId": "https://ror.org/02kvxyf05", "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1:rev:309cf2674ee7a0749978cf8265ab91a60aea0f7d", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1831, "prefix": "oci", "mirId": "MIR:00000660", "name": "OCI", "pattern": "^[0-9]+-[0-9]+$", "description": "Each OCI (Open Citation Identifier) has a simple structure: oci:number-number, where \u201coci:\u201d is the identifier prefix, and is used to identify a citation as a first-class data entitiy - see https://opencitations.wordpress.com/2018/02/19/citations-as-first-class-data-entities-introduction/ for additional information.\r\n\r\nOCIs for citations stored within the OpenCitations Corpus are constructed by combining the OpenCitations Corpus local identifiers for the citing and cited bibliographic resources, separating them with a dash. For example, oci:2544384-7295288 is a valid OCI for the citation between two papers stored within the OpenCitations Corpus.\r\n\r\nOCIs can also be created for bibliographic resources described in an external bibliographic database, if they are similarly identified there by identifiers having a unique numerical part. For example, the OCI for the citation that exists between Wikidata resources Q27931310 and Q22252312 is oci:01027931310\u201301022252312.\r\n\r\nOCIs can also be created for bibliographic resources described in external bibliographic database such as Crossref or DataCite where they are identified by alphanumeric Digital Object Identifiers (DOIs), rather than purely numerical strings.", "created": "2019-06-11T14:18:13.968+0000", "modified": "2019-06-11T14:18:13.968+0000", "resources": [{"id": 1833, "mirId": "MIR:00100878", "urlPattern": "https://w3id.org/oc/oci/{$id}", "name": "OpenCitations", "description": "OpenCitations", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1-18", "resourceHomeUrl": "http://opencitations.net", "institution": {"id": 1832, "name": "University of Bologna", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1-18", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1834, "prefix": "foodon", "mirId": "MIR:00000661", "name": "FoodOn Food Ontology", "pattern": "^FOODON:[0-9]{8}$", "description": "FoodOn is a comprehensive and easily accessible global farm-to-fork ontology about food that accurately and consistently describes foods commonly known in cultures from around the world. It is a consortium-driven project built to interoperate with the The Open Biological and Biomedical Ontology Foundry library of ontologies.", "created": "2019-06-11T14:18:14.340+0000", "modified": "2019-06-11T14:18:14.340+0000", "resources": [{"id": 1835, "mirId": "MIR:00100879", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/foodon/terms?obo_id=FOODON:{$id}", "name": "FoodOn Food Ontology through OLS", "description": "FoodOn Food Ontology through OLS", "official": false, "providerCode": "ebi", "sampleId": "03307879", "resourceHomeUrl": "https://foodon.org", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "03307879", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1836, "prefix": "encode", "mirId": "MIR:00000662", "name": "ENCODE: Encyclopedia of DNA Elements", "pattern": "^ENC[A-Za-z]{2}[0-9]{3}[A-Za-z]{3}$", "description": "The ENCODE Consortium is integrating multiple technologies and approaches in a collective effort to discover and define the functional elements encoded in the human genome, including genes, transcripts, and transcriptional regulatory regions, together with their attendant chromatin states and DNA methylation patterns.", "created": "2019-06-11T14:18:14.565+0000", "modified": "2019-06-11T14:18:14.565+0000", "resources": [{"id": 1838, "mirId": "MIR:00100880", "urlPattern": "https://www.encodeproject.org/{$id}", "name": "ENCODE: Encyclopedia of DNA Elements", "description": "ENCODE: Encyclopedia of DNA Elements", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ENCSR163RYW", "resourceHomeUrl": "www.encodeproject.org", "institution": {"id": 1837, "name": "ENCODE Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ENCSR163RYW", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1839, "prefix": "gtex", "mirId": "MIR:00000663", "name": "GTEx", "pattern": "^\\w.+$", "description": "The Genotype-Tissue Expression (GTEx) project aims to provide to the scientific community a resource with which to study human gene expression and regulation and its relationship to genetic variation.", "created": "2019-06-11T14:18:14.830+0000", "modified": "2019-06-11T14:18:14.830+0000", "resources": [{"id": 1841, "mirId": "MIR:00100881", "urlPattern": "https://www.gtexportal.org/home/gene/{$id}", "name": "The GTEx Project", "description": "The GTEx Project", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BRIP1", "resourceHomeUrl": "https://www.gtexportal.org", "institution": {"id": 1840, "name": "The Broad Institute of MIT and Harvard", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BRIP1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1842, "prefix": "ricenetdb.gene", "mirId": "MIR:00000664", "name": "RiceNetDB Gene", "pattern": "^LOC\\_Os\\d{1,2}g\\d{5}\\.\\d$", "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", "created": "2019-06-11T14:18:15.139+0000", "modified": "2019-06-11T14:18:15.139+0000", "resources": [{"id": 1844, "mirId": "MIR:00100882", "urlPattern": "http://bis.zju.edu.cn/ricenetdb/genedetails.php?ID={$id}", "name": "RiceNetDB", "description": "RiceNetDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LOC_Os01g49190.1", "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb/", "institution": {"id": 1843, "name": "College of Life Sciences, Zhejiang University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LOC_Os01g49190.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1845, "prefix": "ricenetdb.protein", "mirId": "MIR:00000665", "name": "RiceNetDB Protein", "pattern": "^LOC\\_Os\\d{1,2}g\\d{5}$", "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", "created": "2019-06-11T14:18:15.429+0000", "modified": "2019-06-11T14:18:15.429+0000", "resources": [{"id": 1846, "mirId": "MIR:00100883", "urlPattern": "http://bis.zju.edu.cn/ricenetdb/proteindetails.php?ID={$id}", "name": "RiceNetDB", "description": "RiceNetDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LOC_Os01g49190", "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb/", "institution": {"id": 1843, "name": "College of Life Sciences, Zhejiang University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LOC_Os01g49190", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1847, "prefix": "ricenetdb.compound", "mirId": "MIR:00000666", "name": "RiceNetDB Compound", "pattern": "^OSC\\d{4}$", "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", "created": "2019-06-11T14:18:15.639+0000", "modified": "2019-06-11T14:18:15.639+0000", "resources": [{"id": 1848, "mirId": "MIR:00100884", "urlPattern": "http://bis.zju.edu.cn/ricenetdb/compounddetails.php?ID={$id}", "name": "RiceNetDB Compound", "description": "RiceNetDB Compound", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "OSC1416", "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb", "institution": {"id": 1843, "name": "College of Life Sciences, Zhejiang University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "OSC1416", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1849, "prefix": "ricenetdb.reaction", "mirId": "MIR:00000667", "name": "RiceNetDB Reaction", "pattern": "^OSR\\d{4}$", "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", "created": "2019-06-11T14:18:15.856+0000", "modified": "2019-06-11T14:18:15.856+0000", "resources": [{"id": 1850, "mirId": "MIR:00100885", "urlPattern": "http://bis.zju.edu.cn/ricenetdb/reactiondetails.php?ID={$id}", "name": "RiceNetDB Reaction", "description": "RiceNetDB Reaction", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "OSR0818", "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb", "institution": {"id": 1843, "name": "College of Life Sciences, Zhejiang University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "OSR0818", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1851, "prefix": "ricenetdb.mirna", "mirId": "MIR:00000668", "name": "RiceNetDB miRNA", "pattern": "^osa-miR\\d{3,5}[a-z]{0,1}$", "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", "created": "2019-06-11T14:18:16.076+0000", "modified": "2019-06-11T14:18:16.076+0000", "resources": [{"id": 1852, "mirId": "MIR:00100886", "urlPattern": "http://bis.zju.edu.cn/ricenetdb/miRNAdetails.php?ID={$id}", "name": "RiceNetDB miRNA", "description": "RiceNetDB miRNA", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "osa-miR446", "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb", "institution": {"id": 1843, "name": "College of Life Sciences, Zhejiang University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "osa-miR446", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1853, "prefix": "oclc", "mirId": "MIR:00000669", "name": "Online Computer Library Center (OCLC) WorldCat", "pattern": "^[0-9]+$", "description": "The global library cooperative OCLC maintains WorldCat. WorldCat is the world's largest network of library content and services. WorldCat libraries are dedicated to providing access to their resources on the Web, where most people start their search for information.", "created": "2019-06-11T14:18:16.344+0000", "modified": "2019-06-11T14:18:16.344+0000", "resources": [{"id": 1855, "mirId": "MIR:00100887", "urlPattern": "https://www.worldcat.org/oclc/{$id}", "name": "Online Computer Library Center (OCLC) WorldCat", "description": "Online Computer Library Center (OCLC) WorldCat", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "634515043", "resourceHomeUrl": "https://www.oclc.org/en/about.html", "institution": {"id": 1854, "name": "Online Computer Library Center (OCLC), Dublin, Ohio", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "634515043", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1856, "prefix": "asin", "mirId": "MIR:00000670", "name": "Amazon Standard Identification Number (ASIN)", "pattern": "^[0-9]{10}$", "description": "Almost every product on our site has its own ASIN, a unique code we use to identify it. For books, the ASIN is the same as the ISBN number, but for all other products a new ASIN is created when the item is uploaded to our catalogue.", "created": "2019-06-11T14:18:16.611+0000", "modified": "2019-06-11T14:18:16.611+0000", "resources": [{"id": 1858, "mirId": "MIR:00100888", "urlPattern": "https://amzn.com/{$id}", "name": "Amazon Standard Identification Number (ASIN)", "description": "Amazon Standard Identification Number (ASIN)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0471491039", "resourceHomeUrl": "https://www.amazon.co.uk/gp/help/customer/display.html/277-3416785-8259466?ie=UTF8&nodeId=898182", "institution": {"id": 1857, "name": "Amazon", "homeUrl": "https://amazon.com", "description": "is an American multinational technology company based in Seattle, Washington, that focuses on e-commerce, cloud computing, digital streaming, and artificial intelligence", "rorId": "https://ror.org/04mv4n011", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0471491039", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1859, "prefix": "ga4ghdos", "mirId": "MIR:00000671", "name": "Data Object Service", "pattern": "^[a-zA-Z0-9\\-:#/\\.]+$", "description": "Assists in resolving data across cloud resources.", "created": "2019-06-11T14:18:16.879+0000", "modified": "2019-06-11T14:18:16.879+0000", "resources": [{"id": 1860, "mirId": "MIR:00100895", "urlPattern": "https://dataguids.org/ga4gh/dos/v1/dataobjects/{$id}", "name": "Data Object Service", "description": "Data Object Service", "official": false, "providerCode": "ucsd", "sampleId": "dg.4503/01b048d0-e128-4cb0-94e9-b2d2cab7563d", "resourceHomeUrl": "http://github.com/ga4gh/data-object-service-schemas", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "dg.4503/01b048d0-e128-4cb0-94e9-b2d2cab7563d", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1861, "prefix": "flowrepository", "mirId": "MIR:00000672", "name": "FlowRepository", "pattern": "^FR\\-FCM\\-\\w{4}$", "description": "FlowRepository is a database of flow cytometry experiments where you can query and download data collected and annotated according to the MIFlowCyt standard. It is primarily used as a data deposition place for experimental findings published in peer-reviewed journals in the flow cytometry field.", "created": "2019-06-11T14:18:17.129+0000", "modified": "2019-06-11T14:18:17.129+0000", "resources": [{"id": 1863, "mirId": "MIR:00100896", "urlPattern": "https://flowrepository.org/id/{$id}", "name": "FlowRepository", "description": "FlowRepository", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "FR-FCM-ZYGW", "resourceHomeUrl": "https://flowrepository.org/", "institution": {"id": 1862, "name": "Terry Fox Laboratory", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "FR-FCM-ZYGW", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1864, "prefix": "oid", "mirId": "MIR:00000673", "name": "OID Repository", "pattern": "^[\\d.]+$", "description": "OIDs provide a persistent identification of objects based on a hierarchical structure of Registration Authorities (RA), where each parent has an object identifier and allocates object identifiers to child nodes.", "created": "2019-06-11T14:18:17.389+0000", "modified": "2019-06-11T14:18:17.389+0000", "resources": [{"id": 1866, "mirId": "MIR:00100897", "urlPattern": "http://www.oid-info.com/cgi-bin/display?oid={$id}&submit=Display&action=display", "name": "OID Repository", "description": "OID Repository", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2.16.840", "resourceHomeUrl": "http://www.oid-info.com/introduction.htm", "institution": {"id": 1865, "name": "Orange SA", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2.16.840", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1867, "prefix": "hpscreg", "mirId": "MIR:00000674", "name": "Human Pluripotent Stem Cell Registry", "pattern": "^[A-Z]{2,6}(e|i)[A-Za-z0-9]{3}-[A-Z]{1,2}(-[A-Za-z0-9]{1,2})?$", "description": "hPSCreg is a freely accessible global registry for human pluripotent stem cell lines (hPSC-lines).", "created": "2019-06-11T14:18:17.630+0000", "modified": "2019-06-11T14:18:17.630+0000", "resources": [{"id": 1869, "mirId": "MIR:00100898", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100898/{$id}", "name": "Human Pluripotent Stem Cell Registry", "description": "Human Pluripotent Stem Cell Registry", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BCRTi001-A", "resourceHomeUrl": "https://hpscreg.eu/", "institution": {"id": 1868, "name": "Charit\u00e9 Berlin", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": true, "deprecationDate": "2021-05-10T19:10:24.237+0000"}, {"id": 2630, "mirId": "MIR:00000810", "urlPattern": "https://hpscreg.eu/cell-line/{$id}", "name": "Fraunhofer Institute for Biomedical Engineering", "description": "Human Pluripotent Stem Cell Registry", "official": false, "providerCode": "ibmt", "sampleId": "BCRTi001-A", "resourceHomeUrl": "https://hpscreg.eu/", "institution": {"id": 2629, "name": "Fraunhofer Institute for Biomedical Engineering", "homeUrl": "https://www.ibmt.fraunhofer.de/en.html", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05tpsgh61' with Wikidata IDs [Q1167435], and ISNI IDs [0000 0004 0542 0741]", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BCRTi001-A", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1870, "prefix": "addgene", "mirId": "MIR:00000675", "name": "Addgene Plasmid Repository", "pattern": "^[0-9]{5}(-[a-zA-Z0-9-]{0,7})?$|^[0-9]{10}$", "description": "Addgene is a non-profit plasmid repository. Addgene facilitates the exchange of genetic material between laboratories by offering plasmids and their associated cloning data to not-for-profit laboratories around the world.", "created": "2019-06-11T14:18:17.878+0000", "modified": "2019-06-11T14:18:17.878+0000", "resources": [{"id": 1872, "mirId": "MIR:00100899", "urlPattern": "http://addgene.org/{$id}", "name": "Addgene Plasmid Repository", "description": "Addgene Plasmid Repository", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "50943", "resourceHomeUrl": "http://addgene.org/", "institution": {"id": 1871, "name": "Addgene", "homeUrl": "https://www.addgene.org", "description": "Addgene is a global, nonprofit repository that was created to help scientists share plasmids. Plasmids are DNA-based research reagents commonly used in the life sciences. When scientists publish research papers, they deposit their associated plasmids at Addgene. Then, when other scientists read the publication, they have easy access to the plasmids needed to conduct future experiments.", "rorId": "https://ror.org/01nn1pw54", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "50943", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1873, "prefix": "bacdive", "mirId": "MIR:00000676", "name": "Bacterial Diversity Metadatabase", "pattern": "^[0-9]+$", "description": "BacDive\u2014the Bacterial Diversity Metadatabase merges detailed strain-linked information on the different aspects of bacterial and archaeal biodiversity.", "created": "2019-06-11T14:18:18.125+0000", "modified": "2019-06-11T14:18:18.125+0000", "resources": [{"id": 1875, "mirId": "MIR:00100900", "urlPattern": "https://bacdive.dsmz.de/strain/{$id}", "name": "Bacterial Diversity Metadatabase", "description": "Bacterial Diversity Metadatabase", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "131392", "resourceHomeUrl": "https://bacdive.dsmz.de/", "institution": {"id": 1874, "name": "Leibniz-Institut DSMZ-Deutsche Sammlung von Mikroorganismen und Zellkulturen", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "131392", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1876, "prefix": "ido", "mirId": "MIR:00000677", "name": "Infectious Disease Ontology", "pattern": "^[0-9]+$", "description": "Infectious Disease Ontology holds entities relevant to both biomedical and clinical aspects of most infectious diseases.", "created": "2019-06-11T14:18:18.372+0000", "modified": "2019-06-11T14:18:18.372+0000", "resources": [{"id": 1877, "mirId": "MIR:00100907", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ido/terms?obo_id=IDO:{$id}", "name": "IDO through OLS", "description": "IDO through OLS", "official": false, "providerCode": "ols", "sampleId": "0000504", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ido", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000504", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1878, "prefix": "gdsc", "mirId": "MIR:00000678", "name": "Genomics of Drug Sensitivity in Cancer", "pattern": "^[0-9]+$", "description": "The Genomics of Drug Sensitivity in Cancer (GDSC) database is designed to facilitate an increased understanding of the molecular features that influence drug response in cancer cells and which will enable the design of improved cancer therapies.", "created": "2019-06-11T14:18:18.593+0000", "modified": "2019-06-11T14:18:18.593+0000", "resources": [{"id": 1880, "mirId": "MIR:00100908", "urlPattern": "https://www.cancerrxgene.org/translation/Drug/{$id}", "name": "Genomics of Drug Sensitivity in Cancer", "description": "Genomics of Drug Sensitivity in Cancer", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1242", "resourceHomeUrl": "https://www.cancerrxgene.org", "institution": {"id": 1879, "name": "Wellcome Sanger Institute and the Center for Molecular Therapeutics and Massachusetts General Hospital Cancer Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1242", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1895, "prefix": "isni", "mirId": "MIR:00000684", "name": "International Standard Name Identifier", "pattern": "^[0-9]{15}[0-9X]{1}$", "description": "ISNI is the ISO certified global standard number for identifying the millions of contributors to creative works and those active in their distribution, including researchers, inventors, writers, artists, visual creators, performers, producers, publishers, aggregators, and more. It is part of a family of international standard identifiers that includes identifiers of works, recordings, products and right holders in all repertoires, e.g. DOI, ISAN, ISBN, ISRC, ISSN, ISTC, and ISWC.\r\n\r\nThe mission of the ISNI International Authority (ISNI-IA) is to assign to the public name(s) of a researcher, inventor, writer, artist, performer, publisher, etc. a persistent unique identifying number in order to resolve the problem of name ambiguity in search and discovery; and diffuse each assigned ISNI across all repertoires in the global supply chain so that every published work can be unambiguously attributed to its creator wherever that work is described.", "created": "2019-06-11T14:18:20.121+0000", "modified": "2019-06-11T14:18:20.121+0000", "resources": [{"id": 1897, "mirId": "MIR:00100915", "urlPattern": "http://www.isni.org/isni/{$id}", "name": "International Standard Name Identifier", "description": "International Standard Name Identifier", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "000000012281955X", "resourceHomeUrl": "http://www.isni.org", "institution": {"id": 1896, "name": "ISNI International Authority", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000000012281955X", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1898, "prefix": "viaf", "mirId": "MIR:00000685", "name": "Virtual International Authority File", "pattern": "^\\d+$", "description": "The VIAF\u00ae (Virtual International Authority File) combines multiple name authority files into a single OCLC-hosted name authority service. The goal of the service is to lower the cost and increase the utility of library authority files by matching and linking widely-used authority files and making that information available on the Web.", "created": "2019-06-11T14:18:20.364+0000", "modified": "2019-06-11T14:18:20.364+0000", "resources": [{"id": 1900, "mirId": "MIR:00100916", "urlPattern": "http://viaf.org/viaf/{$id}", "name": "Virtual International Authority File", "description": "Virtual International Authority File", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "75121530", "resourceHomeUrl": "http://viaf.org", "institution": {"id": 1899, "name": "Online Computer Library Center, Incorporated, Dublin, Ohio", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "75121530", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1901, "prefix": "lei", "mirId": "MIR:00000686", "name": "Global LEI Index", "pattern": "^[0-9A-Z]{4}[0-9A-Z]{14}[0-9A-Z]{2}$", "description": "Established by the Financial Stability Board in June 2014, the Global Legal Entity Identifier Foundation (GLEIF) is tasked to support the implementation and use of the Legal Entity Identifier (LEI). The foundation is backed and overseen by the LEI Regulatory Oversight Committee, representing public authorities from around the globe that have come together to jointly drive forward transparency within the global financial markets. GLEIF is a supra-national not-for-profit organization headquartered in Basel, Switzerland.", "created": "2019-06-11T14:18:20.599+0000", "modified": "2019-06-11T14:18:20.599+0000", "resources": [{"id": 1903, "mirId": "MIR:00100917", "urlPattern": "https://www.gleif.org/lei/{$id}", "name": "Global LEI Index", "description": "Global LEI Index", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "HWUPKR0MPOU8FGXBT394", "resourceHomeUrl": "https://www.gleif.org/", "institution": {"id": 1902, "name": "Global Legal Entity Identifier Foundation, St. Alban-Vorstadt 5, 4052 Basel", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HWUPKR0MPOU8FGXBT394", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1904, "prefix": "spdx", "mirId": "MIR:00000687", "name": "SPDX License List", "pattern": "^[0-9A-Za-z\\-.]+$", "description": "The SPDX License List is a list of commonly found licenses and exceptions used in free and open source and other collaborative software or documentation. The purpose of the SPDX License List is to enable easy and efficient identification of such licenses and exceptions in an SPDX document, in source files or elsewhere. The SPDX License List includes a standardized short identifier, full name, vetted license text including matching guidelines markup as appropriate, and a canonical permanent URL for each license and exception.", "created": "2019-06-11T14:18:20.855+0000", "modified": "2019-06-11T14:18:20.855+0000", "resources": [{"id": 1906, "mirId": "MIR:00100918", "urlPattern": "https://spdx.org/licenses/{$id}", "name": "SPDX License List", "description": "SPDX License List", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "CC-BY-1.0", "resourceHomeUrl": "https://spdx.org", "institution": {"id": 1905, "name": "SPDX Workgroup a Linux Foundation Project", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CC-BY-1.0", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1907, "prefix": "sabiork.compound", "mirId": "MIR:00000688", "name": "SABIO-RK Compound", "pattern": "^\\d+$", "description": "SABIO-RK is a relational database system that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. The compound data set provides information regarding the reactions in which a compound participates as substrate, product or modifier (e.g. inhibitor, cofactor), and links to further information.", "created": "2019-06-11T14:18:21.119+0000", "modified": "2019-06-11T14:18:21.119+0000", "resources": [{"id": 1908, "mirId": "MIR:00100919", "urlPattern": "http://sabiork.h-its.org/newSearch?q={$id}", "name": "SABIO-RK Compound", "description": "SABIO-RK Compound", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "75", "resourceHomeUrl": "http://sabiork.h-its.org/", "institution": {"id": 408, "name": "Heidelberg Institute for Theoretical Studies (HITS gGmbH)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "75", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1909, "prefix": "oryzabase.reference", "mirId": "MIR:00000689", "name": "Oryzabase", "pattern": "^\\d+$", "description": "The Oryzabase is a comprehensive rice science database established in 2000 by rice researcher's committee in Japan.", "created": "2019-06-11T14:18:21.361+0000", "modified": "2019-06-11T14:18:21.361+0000", "resources": [{"id": 1910, "mirId": "MIR:00100920", "urlPattern": "https://shigen.nig.ac.jp/rice/oryzabase/reference/detail/{$id}", "name": "Oryzabase", "description": "Oryzabase", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "42840", "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "institution": {"id": 1371, "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "42840", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1911, "prefix": "peptideatlas.dataset", "mirId": "MIR:00000690", "name": "PeptideAtlas Dataset", "pattern": "^PASS\\d{5}$", "description": "Experiment details about PeptideAtlas entries. Each PASS entry provides direct access to the data files submitted to PeptideAtlas.", "created": "2019-06-11T14:18:21.571+0000", "modified": "2019-06-11T14:18:21.571+0000", "resources": [{"id": 1912, "mirId": "MIR:00100921", "urlPattern": "http://www.peptideatlas.org/PASS/{$id}", "name": "PeptideAtlas Dataset", "description": "PeptideAtlas Dataset", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "PASS01237", "resourceHomeUrl": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/PASS_Summary", "institution": {"id": 193, "name": "Institute for Systems Biology", "homeUrl": "https://isbscience.org/", "description": "ISB was created in 2000 as the first-ever institute dedicated to systems biology.", "rorId": "https://ror.org/02tpgw303", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PASS01237", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1913, "prefix": "did", "mirId": "MIR:00000691", "name": "Decentralized Identifiers (DIDs)", "pattern": "^did:[a-z0-9]+:[A-Za-z0-9.\\-:]+$", "description": "DIDs are an effort by the W3C Credentials Community Group and the wider Internet identity community to define identifiers that can be registered, updated, resolved, and revoked without any dependency on a central authority or intermediary.", "created": "2019-06-11T14:18:21.755+0000", "modified": "2019-06-11T14:18:21.755+0000", "resources": [{"id": 1915, "mirId": "MIR:00100922", "urlPattern": "https://uniresolver.io/#did:{$id}", "name": "Decentralized Identifiers (DIDs)", "description": "Decentralized Identifiers (DIDs)", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "sov:WRfXPg8dantKVubE3HX8pw", "resourceHomeUrl": "https://w3c-ccg.github.io/did-spec/", "institution": {"id": 1914, "name": "W3C Credentials Community Group", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "sov:WRfXPg8dantKVubE3HX8pw", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1916, "prefix": "seed.reaction", "mirId": "MIR:00000692", "name": "SEED Reactions", "pattern": "^rxn\\d+$", "description": "ModelSEED is a platform for creating genome-scale metabolic network reconstructions for microbes and plants. As part of the platform, a biochemistry database is managed that contains reactions unique to ModelSEED as well as reactions aggregated from other databases or from manually-curated genome-scale metabolic network reconstructions.", "created": "2019-06-11T14:18:21.981+0000", "modified": "2019-06-11T14:18:21.981+0000", "resources": [{"id": 1917, "mirId": "MIR:00100923", "urlPattern": "http://modelseed.org/biochem/reactions/{$id}", "name": "SEED Reactions", "description": "SEED Reactions", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "rxn00001", "resourceHomeUrl": "http://modelseed.org/biochem/reactions/", "institution": {"id": 1546, "name": "Argonne National Laboratory", "homeUrl": "https://www.anl.gov", "description": "Argonne is a multidisciplinary science and engineering research center, where talented scientists and engineers work together to answer the biggest questions facing humanity, from how to obtain affordable clean energy to protecting ourselves and our environment.", "rorId": "https://ror.org/05gvnxz63", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "rxn00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1918, "prefix": "occ", "mirId": "MIR:00000693", "name": "OpenCitations Corpus", "pattern": "^[a-z][a-z]/[0-9]+$", "description": "The OpenCitations Corpus is open repository of scholarly citation data made available under a Creative Commons public domain dedication (CC0), which provides accurate bibliographic references harvested from the scholarly literature that others may freely build upon, enhance and reuse for any purpose, without restriction under copyright or database law.", "created": "2019-06-11T14:18:22.186+0000", "modified": "2019-06-11T14:18:22.186+0000", "resources": [{"id": 1920, "mirId": "MIR:00100925", "urlPattern": "https://w3id.org/oc/corpus/{$id}", "name": "OpenCitations Corpus", "description": "OpenCitations Corpus", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "br/1", "resourceHomeUrl": "https://w3id.org/oc/corpus", "institution": {"id": 1919, "name": "OpenCitations", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "br/1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1921, "prefix": "biostudies", "mirId": "MIR:00000694", "name": "BioStudies database", "pattern": "^S-[A-Z]{4}[A-Z\\d\\-]+$", "description": "The BioStudies database holds descriptions of biological studies, links to data from these studies in other databases at EMBL-EBI or outside, as well as data that do not fit in the structured archives at EMBL-EBI. The database can accept a wide range of types of studies described via a simple format. It also enables manuscript authors to submit supplementary information and link to it from the publication.", "created": "2019-06-11T14:18:22.448+0000", "modified": "2019-06-11T14:18:22.448+0000", "resources": [{"id": 1922, "mirId": "MIR:00100926", "urlPattern": "https://www.ebi.ac.uk/biostudies/studies/{$id}", "name": "BioStudies database", "description": "BioStudies database", "official": true, "providerCode": "ebi", "sampleId": "S-EPMC6266652", "resourceHomeUrl": "https://www.ebi.ac.uk/biostudies/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "S-EPMC6266652", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1923, "prefix": "cadsr", "mirId": "MIR:00000695", "name": "Cancer Data Standards Registry and Repository", "pattern": "^[0-9]*$", "description": "The US National Cancer Institute (NCI) maintains and administers data elements, forms, models, and components of these items in a metadata registry referred to as the Cancer Data Standards Registry and Repository, or caDSR.", "created": "2019-06-11T14:18:22.646+0000", "modified": "2019-06-11T14:18:22.646+0000", "resources": [{"id": 1925, "mirId": "MIR:00100928", "urlPattern": "https://cadsrapi.nci.nih.gov/cadsrapi4/GetXML?query=DataElement[@publicId={$id}]", "name": "Cancer Data Standards Registry and Repository", "description": "Cancer Data Standards Registry and Repository", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "3771992", "resourceHomeUrl": "https://wiki.nci.nih.gov/display/caDSR/caDSR+Wiki", "institution": {"id": 1924, "name": "National Cancer Institute, National Institutes of Health, Bethesda, MD", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3771992", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1942, "prefix": "erm", "mirId": "MIR:00000763", "name": "European Registry of Materials", "pattern": "^ERM[0-9]{8}$", "description": "The European Registry of Materials is a simple registry with the sole purpose to mint material identifiers to be used by research projects throughout the life cycle of their project.", "created": "2019-06-19T15:38:51.382+0000", "modified": "2019-06-19T15:38:51.382+0000", "resources": [{"id": 1943, "mirId": "MIR:00000711", "urlPattern": "https://nanocommons.github.io/identifiers/registry#{$id}", "name": "European Registry of Materials", "description": "The European Registry of Materials is a simple registry with the sole purpose to mint material identifiers to be used by research projects throughout the life cycle of their project.", "official": true, "providerCode": "erm", "sampleId": "ERM00000044", "resourceHomeUrl": "https://nanocommons.github.io/identifiers/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ERM00000044", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1977, "prefix": "classyfire", "mirId": "MIR:00000770", "name": "ClassyFire", "pattern": "^C[0-9]{7}$", "description": "ClassyFire is a web-based application for automated structural classification of chemical entities. This application uses a rule-based approach that relies on a comprehensible, comprehensive, and computable chemical taxonomy. ClassyFire provides a hierarchical chemical classification of chemical entities (mostly small molecules and short peptide sequences), as well as a structure-based textual description, based on a chemical taxonomy named ChemOnt, which covers 4825 chemical classes of organic and inorganic compounds. Moreover, ClassyFire allows for text-based search via its web interface. It can be accessed via the web interface or via the ClassyFire API.", "created": "2019-09-05T11:46:36.162+0000", "modified": "2019-09-05T11:46:36.162+0000", "resources": [{"id": 1978, "mirId": "MIR:00000710", "urlPattern": "http://classyfire.wishartlab.com/tax_nodes/{$id}", "name": "The Wishart Research Group, University of Alberta, Edmonton, Alberta, Canada", "description": "Dr. David Wishart (PhD Yale, 1991) is a Professor in the Departments of Biological Sciences and Computing Science at the University of Alberta. He is also a senior research officer and the director of the Nano Life Science program at the NRC\u2019s National Institute for Nanotechnology (NINT). He has been with the University of Alberta since 1995. Dr. Wishart has active research programs in Ua Colour structural biology, nanobiology, synthetic biology, prion biology, bioinformatics and metabolomics. Some of his lab's most significant contributions have been in the area of protein chemical shift analysis and the prediction of protein structure.", "official": true, "providerCode": "classyfire", "sampleId": "C0004828", "resourceHomeUrl": "http://classyfire.wishartlab.com/", "institution": {"id": 1976, "name": "The Wishart Research Group, University of Alberta, Edmonton, Alberta, Canada", "homeUrl": "http://www.wishartlab.com/", "description": "Dr. David Wishart (PhD Yale, 1991) is a Professor in the Departments of Biological Sciences and Computing Science at the University of Alberta. He is also a senior research officer and the director of the Nano Life Science program at the NRC\u2019s National Institute for Nanotechnology (NINT). He has been with the University of Alberta since 1995. Dr. Wishart has active research programs in Ua Colour structural biology, nanobiology, synthetic biology, prion biology, bioinformatics and metabolomics. Some of his lab's most significant contributions have been in the area of protein chemical shift analysis and the prediction of protein structure.", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C0004828", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1989, "prefix": "ocid", "mirId": "MIR:00000738", "name": "Ontology Concept Identifiers", "pattern": "ocid:[0-9]{12}", "description": "'ocid' stands for \"Ontology Concept Identifiers\" and are 12 digit long integers covering IDs in topical ontologies from anatomy up to toxicology.", "created": "2019-09-10T09:27:59.693+0000", "modified": "2019-09-10T09:27:59.693+0000", "resources": [{"id": 2936, "mirId": "MIR:00000885", "urlPattern": "https://ocid.ontochem.com/prefname?ocid={$id}", "name": "Ontochem GmbH", "description": "We offer high performance and highly customizable text analysis and data mining products that can be tailored to meet the specific needs of every client. ", "official": true, "providerCode": "ontochem", "sampleId": "190000021540", "resourceHomeUrl": "https://ontochem.com/", "institution": {"id": 2935, "name": "Ontochem GmbH", "homeUrl": "https://ontochem.com/", "description": "We offer high performance and highly customizable text analysis and data mining products that can be tailored to meet the specific needs of every client. ", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}, {"id": 1990, "mirId": "MIR:00000706", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00000706/{$id}", "name": "SciWalker Open Data", "description": "SciWalker is an open access ontology based search tool for annotated data and extracted knowledge from scientific databases, patents and scientific documents.", "official": false, "providerCode": "oc", "sampleId": "190000021540", "resourceHomeUrl": "https://www.sciwalker.com", "institution": {"id": 1988, "name": "OntoChem GmbH", "homeUrl": "https://www.ontochem.com", "description": "OntoChem develops and uses ontologies and semantic NLP software to annotate, analyze, extract and predict knowledge from scientific databases, patents, scientific articles or general private documents.", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": true, "deprecationDate": "2021-10-17T10:39:01.622+0000"}], "sampleId": "190000021540", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1997, "prefix": "mmp.fun", "mirId": "MIR:00000729", "name": "MarFun", "pattern": "^MMP\\d+.\\d+$", "description": "MarFun is manually curated database for marine fungi which is a part of the MAR databases.", "created": "2019-09-10T10:50:49.547+0000", "modified": "2019-09-10T10:50:49.547+0000", "resources": [{"id": 1998, "mirId": "MIR:00000713", "urlPattern": "https://mmp.sfb.uit.no/databases/marfun/#/records/{$id}", "name": "MarFun through SfB", "description": "MarFun through SfB", "official": true, "providerCode": "mmp", "sampleId": "MMP3888430", "resourceHomeUrl": "https://mmp.sfb.uit.no/databases/marfun", "institution": {"id": 1996, "name": "Centre for bioinformatics (SfB), UiT The Arctic university of Norway", "homeUrl": "https://uit.no", "description": "The Centre for bioinformatics at UiT is a part of ELIXIR Norway dedicated to services.", "rorId": null, "location": {"countryCode": "NO", "countryName": "Norway"}}, "location": {"countryCode": "NO", "countryName": "Norway"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MMP3888430", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2003, "prefix": "ecyano.experiment", "mirId": "MIR:00000760", "name": "E-cyanobacterium Experimental Data", "pattern": "^\\d+$", "description": "E-cyanobacterium experiments is a repository of wet-lab experiments related to cyanobacteria. The emphasis is placed on annotation via mapping to local database of biological knowledge and mathematical models along with the complete experimental setup supporting the reproducibility of the experiments.", "created": "2019-09-10T12:51:24.637+0000", "modified": "2019-09-10T12:51:24.637+0000", "resources": [{"id": 2004, "mirId": "MIR:00000754", "urlPattern": "https://www.e-cyanobacterium.org/experiments-repository/?action=detail&id={$id}", "name": "E-cyanobacterium", "description": "E-cyanobacterium is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction \u2014 as biochemical reaction networks or ordinary differential equations. It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references wet-lab experiments.", "official": true, "providerCode": "ecyano", "sampleId": "18", "resourceHomeUrl": "https://www.e-cyanobacterium.org/experiments-repository/", "institution": {"id": 1629, "name": "Systems Biology Laboratory, Faculty of Informatics, Masaryk University Brno", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}}, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}, "deprecated": false, "deprecationDate": null}], "sampleId": "18", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2022, "prefix": "dlxc", "mirId": "MIR:00000742", "name": "Circular double stranded DNA sequences composed", "pattern": "^[A-Z0-9]{6,7}$", "description": "DOULIX lab-tested standard biological parts, in this case, full length constructs.", "created": "2019-09-24T11:03:08.927+0000", "modified": "2019-09-24T11:03:08.927+0000", "resources": [{"id": 2023, "mirId": "MIR:00000734", "urlPattern": "https://doulix.com/constructs/{$id}/", "name": "Doulix DNA repository", "description": "Doulix DNA repository provides a FAIR-compliant database of DNA sequences for synthetic biology. Doulix allows user to retrieve, inspect and manipulate DNA sequences while ensuring data traceability and integrity.", "official": true, "providerCode": "dlxc", "sampleId": "M77F7JM", "resourceHomeUrl": "https://doulix.com", "institution": {"id": 2021, "name": "Double Helix Technologies (DOULIX)", "homeUrl": "https://doulix.com", "description": "Double Helix Technologies (DOULIX) is currently an operative unit of Explora Biotech (https://www.explora-biotech). ", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "M77F7JM", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2026, "prefix": "dlxb", "mirId": "MIR:00000747", "name": "Linear double stranded DNA sequences", "pattern": "^[A-Z0-9]{6,7}$", "description": "DOULIX lab-tested standard biological parts, in this case linear double stranded DNA sequences.", "created": "2019-10-01T11:40:36.666+0000", "modified": "2019-10-01T11:40:36.666+0000", "resources": [{"id": 2027, "mirId": "MIR:00000717", "urlPattern": "https://doulix.com/biomodules/{$id}/", "name": "Doulix DNA repository", "description": "Doulix DNA repository provides a FAIR-compliant database of DNA sequences for synthetic biology. Doulix allows user to retrieve, inspect and manipulate DNA sequences while ensuring data traceability and integrity.", "official": true, "providerCode": "dlxb", "sampleId": "6VDC956", "resourceHomeUrl": "https://doulix.com", "institution": {"id": 2025, "name": "Doulix Helix Technologies (DOULIX)", "homeUrl": "https://doulix.com", "description": "Double Helix Technologies (DOULIX) is currently an operative unit of Explora Biotech (https://www.explora-biotech.com). ", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "6VDC956", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1729, "prefix": "cameo", "mirId": "MIR:00000623", "name": "CAMEO", "pattern": "^[0-9\\-_]+$", "description": "The goal of the CAMEO (Continuous Automated Model EvaluatiOn) community project is to continuously evaluate the accuracy and reliability of protein structure prediction servers, offering scores on tertiary and quaternary structure prediction, model quality estimation, accessible surface area prediction, ligand binding site residue prediction and contact prediction services in a fully automated manner. These predictions are regularly compared against reference structures from PDB.", "created": "2019-06-11T14:18:04.976+0000", "modified": "2019-10-01T11:46:06.302+0000", "resources": [{"id": 1731, "mirId": "MIR:00100827", "urlPattern": "https://www.cameo3d.org/sp/targets/target/{$id}", "name": "CAMEO", "description": "CAMEO", "official": false, "providerCode": "sib", "sampleId": "2019-08-03_00000089_1", "resourceHomeUrl": "https://cameo3d.org", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2019-08-03_00000089_1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2013, "prefix": "nemo", "mirId": "MIR:00000744", "name": "Neuroscience Multi-Omic BRAIN Initiative Data", "pattern": "[a-z]{3}-[a-km-z0-9]{7}", "description": "This namespace is about Neuroscience Multi-Omic data, specially focused on that data generated from the BRAIN Initiative and related brain research projects.", "created": "2019-09-19T13:46:35.999+0000", "modified": "2019-10-02T08:18:15.555+0000", "resources": [{"id": 2014, "mirId": "MIR:00000790", "urlPattern": "https://assets.nemoarchive.org/{$id}", "name": "The NeMO Archive", "description": "The Neuroscience Multi-Omic Archive (NeMO Archive) is a data repository specifically focused on the storage and dissemination of omic data generated from the BRAIN Initiative and related brain research projects.", "official": true, "providerCode": "igs", "sampleId": "smp-m3w9hbe", "resourceHomeUrl": "https://www.nemoarchive.org", "institution": {"id": 2012, "name": "The Institute for Genome Sciences", "homeUrl": "http://www.igs.umaryland.edu", "description": "Formed in May 2007, the Institute for Genome Sciences (IGS) is part of the University of Maryland School of Medicine and is on the University of Maryland Baltimore campus. Members of the IGS team have helped revolutionize genomic discoveries in medicine, agriculture, environmental science and biodefense.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "smp-m3w9hbe", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2037, "prefix": "spp", "mirId": "MIR:00000726", "name": "Signaling Pathways Project", "pattern": "^10.\\w{4}/\\w{10}$", "description": "The Signaling Pathways Project is an integrated 'omics knowledgebase based upon public, manually curated transcriptomic and cistromic (ChIP-Seq) datasets involving genetic and small molecule manipulations of cellular receptors, enzymes and transcription factors. Our goal is to create a resource where scientists can routinely generate research hypotheses or validate bench data relevant to cellular signaling pathways.", "created": "2019-11-07T10:59:42.032+0000", "modified": "2019-11-07T10:59:42.032+0000", "resources": [{"id": 2038, "mirId": "MIR:00000730", "urlPattern": "https://www.signalingpathways.org/datasets/dataset.jsf?doi={$id}", "name": "Signaling Pathways Project", "description": "The Signaling Pathways Project is an integrated 'omics knowledgebase based upon public, manually curated transcriptomic and cistromic (ChIP-Seq) datasets involving genetic and small molecule manipulations of cellular receptors, enzymes and transcription factors. Our goal is to create a resource where scientists can routinely generate research hypotheses or validate bench data relevant to cellular signaling pathways.", "official": true, "providerCode": "spp", "sampleId": "10.1621/vwN2g2HaX3", "resourceHomeUrl": "https://www.signalingpathways.org/index.jsf", "institution": {"id": 485, "name": "Baylor College of Medicine", "homeUrl": "https://www.bcm.edu", "description": "Baylor College of Medicine is a health sciences university that creates knowledge and applies science and discoveries to further education, healthcare and community service locally and globally.", "rorId": "https://ror.org/02pttbw34", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "10.1621/vwN2g2HaX3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2055, "prefix": "bmrb", "mirId": "MIR:00000716", "name": "Biological Magnetic Resonance Data Bank", "pattern": "^(bmr|bmse|bmst)?[0-9]{1,6}$", "description": "BMRB collects, annotates, archives, and disseminates (worldwide in the public domain) the important spectral and quantitative data derived from NMR spectroscopic investigations of biological macromolecules and metabolites. The goal is to empower scientists in their analysis of the structure, dynamics, and chemistry of biological systems and to support further development of the field of biomolecular NMR spectroscopy.", "created": "2019-12-09T15:05:02.665+0000", "modified": "2019-12-09T15:05:02.665+0000", "resources": [{"id": 2056, "mirId": "MIR:00000735", "urlPattern": "http://rest.bmrb.wisc.edu/bmrb/{$id}/html", "name": "Biological Magnetic Resonance Data Bank", "description": "BMRB collects, annotates, archives, and disseminates (worldwide in the public domain) the important spectral and quantitative data derived from NMR spectroscopic investigations of biological macromolecules and metabolites. The goal is to empower scientists in their analysis of the structure, dynamics, and chemistry of biological systems and to support further development of the field of biomolecular NMR spectroscopy.", "official": true, "providerCode": "bmrb", "sampleId": "15000", "resourceHomeUrl": "http://www.bmrb.wisc.edu/", "institution": {"id": 2054, "name": "University of Wisconsin-Madison", "homeUrl": "https://www.wisc.edu/", "description": "The University of Wisconsin\u2013Madison is a public research university in Madison, Wisconsin. Founded when Wisconsin achieved statehood in 1848, UW\u2013Madison is the official state university of Wisconsin, and the flagship campus of the University of Wisconsin System.\nIt was the first public university established in Wisconsin and remains the oldest and largest public university in the state. It became a land-grant institution in 1866.\nThe 933-acre (378 ha) main campus, located on the shores of Lake Mendota, includes four National Historic Landmarks.\nThe University also owns and operates a historic 1,200-acre (486 ha) arboretum established in 1932, located 4 miles (6.4 km) south of the main campus.", "rorId": "https://ror.org/01y2jtd41", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "15000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2061, "prefix": "disprot.region", "mirId": "MIR:00000745", "name": "DisProt region", "pattern": "^DP\\d{5}r\\d{3}$", "description": "DisProt is a database of intrisically disordered proteins and protein disordered regions, manually curated from literature.", "created": "2019-12-09T15:18:31.130+0000", "modified": "2019-12-09T15:18:31.130+0000", "resources": [{"id": 2062, "mirId": "MIR:00000756", "urlPattern": "https://www.disprot.org/{$id}", "name": "DisProt region", "description": "DisProt is a database of intrinsically disordered proteins and protein disordered regions, manually curated from literature.", "official": true, "providerCode": "disprot.region", "sampleId": "DP00086r013", "resourceHomeUrl": "https://www.disprot.org", "institution": {"id": 1769, "name": "University of Padua", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DP00086r013", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2072, "prefix": "vegbank", "mirId": "MIR:00000723", "name": "VegBank", "pattern": "^VB\\.[A-Za-z][A-Za-z]\\..*$", "description": "VegBank is the vegetation plot database of the Ecological Society of America's Panel on Vegetation Classification. VegBank consists of three linked databases that contain (1) vegetation plot records, (2) vegetation types recognized in the U.S. National Vegetation Classification and other vegetation types submitted by users, and (3) all plant taxa recognized by ITIS/USDA as well as all other plant taxa recorded in plot records. Vegetation records, community types and plant taxa may be submitted to VegBank and may be subsequently searched, viewed, annotated, revised, interpreted, downloaded, and cited. ", "created": "2020-01-24T13:57:43.399+0000", "modified": "2020-01-24T13:57:43.399+0000", "resources": [{"id": 2073, "mirId": "MIR:00000751", "urlPattern": "http://vegbank.org/cite/{$id}", "name": "VegBank", "description": "VegBank is the vegetation plot database of the Ecological Society of America's Panel on Vegetation Classification.", "official": true, "providerCode": "vegbank", "sampleId": "VB.Ob.3736.GRSM125", "resourceHomeUrl": "http://vegbank.org/", "institution": {"id": 2071, "name": "National Center for Ecological Analysis and Synthesis", "homeUrl": "https://nceas.ucsb.edu/", "description": "NCEAS works to accelerate scientific discoveries that will enhance our understanding of the world and benefit people and nature, as well as to transform the scientific culture to be more open, efficient, and collaborative.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "VB.Ob.3736.GRSM125", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2085, "prefix": "minid.test", "mirId": "MIR:00000707", "name": "MINID Test", "pattern": "[A-Za-z0-9]+$", "description": "Minid are identifiers used to provide robust reference to intermediate data generated during the course of a research investigation. This is a prefix for referencing identifiers in the minid test namespace. ", "created": "2020-02-25T11:14:38.686+0000", "modified": "2020-02-28T10:24:36.137+0000", "resources": [{"id": 2086, "mirId": "MIR:00000724", "urlPattern": "https://hdl.handle.net/hdl:20.500.12633/{$id}", "name": "FAIR Research", "description": "FAIR Research is a collaboration of the Informatics Systems Research Division at the Information Sciences Institute of University of Southern California and the Computational Systems Division at the University of Chicago.", "official": true, "providerCode": "fair", "sampleId": "3SBPLMKKVEVR", "resourceHomeUrl": "https://fair-research.org", "institution": {"id": 1781, "name": "University of Southern California", "homeUrl": "https://www.usc.edu/", "description": "The University of Southern California is a leading private research university located in Los Angeles \u2014 a global center for arts, technology and international business. It is home to the College of Letters, Arts and Sciences and 21 exceptional academic schools and units. USC\u2019s Health Sciences campus houses renowned specialized care and research in cancer, stem cell and regenerative medicine, orthopedics and sports medicine. The university is the largest private sector employer in the city of Los Angeles, responsible for $8 billion annually in economic activity in the region.", "rorId": "https://ror.org/03taz7m60", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3SBPLMKKVEVR", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2108, "prefix": "idr", "mirId": "MIR:00000743", "name": "Image Data Resource", "pattern": "^[0-9]{4}$", "description": "Image Data Resource (IDR) is an online, public data repository that seeks to store, integrate and serve image datasets from published scientific studies. We have collected and are continuing to receive existing and newly created \u201creference image\" datasets that are valuable resources for a broad community of users, either because they will be frequently accessed and cited or because they can serve as a basis for re-analysis and the development of new computational tools.", "created": "2020-03-02T17:27:03.688+0000", "modified": "2020-03-02T17:27:03.688+0000", "resources": [{"id": 2109, "mirId": "MIR:00000705", "urlPattern": "https://idr.openmicroscopy.org/search/?query=Name:idr{$id}", "name": "Open Microscopy Environment", "description": "OME is a consortium of universities, research labs, industry and developers producing open-source software and format standards for microscopy data.", "official": true, "providerCode": "ome", "sampleId": "0001", "resourceHomeUrl": "https://idr.openmicroscopy.org", "institution": {"id": 2107, "name": "University of Dundee", "homeUrl": "https://www.dundee.ac.uk/", "description": "The University of Dundee is a public research university in Dundee, Scotland. Founded in 1881 the institution was, for most of its early existence, a constituent college of the University of St Andrews alongside United College and St Mary's College located in the town of St Andrews itself. Following significant expansion, the University of Dundee gained independent university status in 1967 while retaining much of its ancient heritage and governance structure.", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2096, "prefix": "transyt", "mirId": "MIR:00000736", "name": "TranSyT", "pattern": "T[A-Z]\\d{7}", "description": "The Transport Systems Tracker (TranSyT) is a tool to identify transport systems and the compounds carried across membranes.", "created": "2020-02-28T10:48:52.126+0000", "modified": "2020-03-03T05:45:40.200+0000", "resources": [{"id": 2097, "mirId": "MIR:00000731", "urlPattern": "https://transyt.bio.di.uminho.pt/reactions/{$id}", "name": "BIOSYSTEMS Research Group", "description": "The BIOSYSTEMS Research Group is a research group at CEB, using competences in systems biotechnology and bioengineering to foster the development of a knowledge-based bio-economy, leading to new added-value products and processes.", "official": true, "providerCode": "transyt", "sampleId": "TR0000001", "resourceHomeUrl": "https://www.bio.di.uminho.pt/", "institution": {"id": 2095, "name": "Centre of Biological Engineering", "homeUrl": "https://www.ceb.uminho.pt", "description": "The Centre of Biological Engineering (CEB), designated as \u201cExcellent\u201d by FCT, is a research unit located at University of Minho (ROR:037wpkx04) that develops its activities on interdisciplinary thrust areas covering molecular, cellular and process scales, corresponding to 4 thematic strands: Industrial, Food, Environmental, and Health Biotechnology and Bioengineering.", "rorId": null, "location": {"countryCode": "PT", "countryName": "Portugal"}}, "location": {"countryCode": "PT", "countryName": "Portugal"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TR0000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1685, "prefix": "insdc.gca", "mirId": "MIR:00000607", "name": "Genome assembly database", "pattern": "^GC[AF]_[0-9]{9}\\.[0-9]+$", "description": "The genome assembly database contains detailed information about genome assemblies for eukaryota, bacteria and archaea. The scope of the genome collections database does not extend to viruses, viroids and bacteriophage.", "created": "2019-06-11T14:18:01.236+0000", "modified": "2020-03-31T12:32:16.941+0000", "resources": [{"id": 1686, "mirId": "MIR:00100810", "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", "name": "Genome assembly database through ENA", "description": "Genome assembly database through ENA", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "GCA_000155495.1", "resourceHomeUrl": "https://www.ebi.ac.uk/ena/browse/genome-assembly-database", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1687, "mirId": "MIR:00100811", "urlPattern": "https://www.ncbi.nlm.nih.gov/assembly/{$id}", "name": "Genome assembly database NCBI", "description": "Genome assembly database NCBI", "official": false, "providerCode": "ncbi", "sampleId": "GCA_000155495.1", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/assembly/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GCA_000155495.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1539, "prefix": "slm", "mirId": "MIR:00000550", "name": "SwissLipids", "pattern": "^SLM:\\d+$", "description": "SwissLipids is a curated resource that provides information about known lipids, including lipid structure, metabolism, interactions, and subcellular and tissue localization. Information is curated from peer-reviewed literature and referenced using established ontologies, and provided with full provenance and evidence codes for curated assertions.", "created": "2019-06-11T14:17:46.314+0000", "modified": "2020-05-01T09:59:44.482+0000", "resources": [{"id": 1541, "mirId": "MIR:00100727", "urlPattern": "http://www.swisslipids.org/#/entity/SLM:{$id}/", "name": "SwissLipids at Swiss Institute of Bioinformatics", "description": "SwissLipids at Swiss Institute of Bioinformatics", "official": false, "providerCode": "sib", "sampleId": "000048885", "resourceHomeUrl": "http://www.swisslipids.org/#/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000048885", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 2222, "prefix": "vgnc", "mirId": "MIR:00000765", "name": "VGNC", "pattern": "^((VGNC|vgnc):)?\\d{1,9}$", "description": "The Vertebrate Gene Nomenclature Committee (VGNC) is an extension of the established HGNC (HUGO Gene Nomenclature Committee) project that names human genes. VGNC is responsible for assigning standardized names to genes in vertebrate species that currently lack a nomenclature committee.", "created": "2020-05-12T14:08:31.024+0000", "modified": "2020-05-12T14:08:31.024+0000", "resources": [{"id": 2223, "mirId": "MIR:00000752", "urlPattern": "https://vertebrate.genenames.org/data/gene-symbol-report/#!/vgnc_id/{$id}", "name": "VGNC", "description": "The Vertebrate Gene Nomenclature Committee (VGNC) is an extension of the established HGNC (HUGO Gene Nomenclature Committee) project that names human genes. VGNC is responsible for assigning standardized names to genes in vertebrate species that currently lack a nomenclature committee. ", "official": true, "providerCode": "vgnc", "sampleId": "VGNC:3792", "resourceHomeUrl": "https://vertebrate.genenames.org", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "VGNC:3792", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2248, "prefix": "datanator.metabolite", "mirId": "MIR:00000718", "name": "Datanator Metabolite", "pattern": "^[A-Z\\-]+$", "description": "Datanator is an integrated database of genomic and biochemical data designed to help investigators find data about specific molecules and reactions in specific organisms and specific environments for meta-analyses and mechanistic models. Datanator currently includes metabolite concentrations, RNA modifications and half-lives, protein abundances and modifications, and reaction kinetics integrated from several databases and numerous publications. The Datanator website and REST API provide tools for extracting clouds of data about specific molecules and reactions in specific organisms and specific environments, as well as data about similar molecules and reactions in taxonomically similar organisms.", "created": "2020-05-22T09:04:15.866+0000", "modified": "2020-05-22T09:04:15.866+0000", "resources": [{"id": 2249, "mirId": "MIR:00000772", "urlPattern": "https://www.datanator.info/metabolite/{$id}", "name": "Icahn School of Medicine at Mount Sinai", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", "official": true, "providerCode": "icahn", "sampleId": "OUYCCCASQSFEME-MRVPVSSYSA-N", "resourceHomeUrl": "https://datanator.info/", "institution": {"id": 2247, "name": "Icahn School of Medicine at Mount Sinai", "homeUrl": "https://icahn.mssm.edu/", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "OUYCCCASQSFEME-MRVPVSSYSA-N", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1559, "prefix": "rrid", "mirId": "MIR:00000558", "name": "RRID", "pattern": "^RRID:[a-zA-Z]+.+$", "description": "The Research Resource Identification Initiative provides RRIDs to 4 main classes of resources: Antibodies, Cell Lines, Model Organisms, and Databases / Software tools.: Antibodies, Model Organisms, and Databases / Software tools.\r\nThe initiative works with participating journals to intercept manuscripts in the publication process that use these resources, and allows publication authors to incorporate RRIDs within the methods sections. It also provides resolver services that access curated data from 10 data sources: the antibody registry (a curated catalog of antibodies), the SciCrunch registry (a curated catalog of software tools and databases), and model organism nomenclature authority databases (MGI, FlyBase, WormBase, RGD), as well as various stock centers. These RRIDs are aggregated and can be searched through SciCrunch.", "created": "2019-06-11T14:17:48.275+0000", "modified": "2020-03-11T14:52:15.242+0000", "resources": [{"id": 1560, "mirId": "MIR:00100735", "urlPattern": "https://scicrunch.org/resolver/RRID:{$id}", "name": "RRID at SciCrunch", "description": "RRID at SciCrunch", "official": false, "providerCode": "ucsd", "sampleId": "AB_262044", "resourceHomeUrl": "https://scicrunch.org/resolver", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AB_262044", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 447, "prefix": "pr", "mirId": "MIR:00000141", "name": "Protein Ontology", "pattern": "^PR:P?\\d+$", "description": "The PRotein Ontology (PRO) has been designed to describe the relationships of proteins and protein evolutionary classes, to delineate the multiple protein forms of a gene locus (ontology for protein forms), and to interconnect existing ontologies.", "created": "2019-06-11T14:16:11.083+0000", "modified": "2020-03-16T08:35:08.949+0000", "resources": [{"id": 448, "mirId": "MIR:00100184", "urlPattern": "https://proconsortium.org/app/entry/PR:{$id}", "name": "Protein Ontology at Georgetown", "description": "Protein Ontology at Georgetown", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "000000024", "resourceHomeUrl": "https://proconsortium.org/", "institution": {"id": 173, "name": "Georgetown University Medical Center, Washington", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 449, "mirId": "MIR:00100240", "urlPattern": "http://purl.bioontology.org/ontology/PR/PR:{$id}", "name": "Protein Ontology through BioPortal", "description": "Protein Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "000000024", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PR", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 450, "mirId": "MIR:00100755", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/pr/terms?obo_id=PR:{$id}", "name": "Protein Ontology through OLS", "description": "Protein Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "000000024", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/pr", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000000024", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 2129, "prefix": "gold", "mirId": "MIR:00000733", "name": "Genomes OnLine Database (GOLD)", "pattern": "^[A-Z][a-z][0-9]+$", "description": "The Genomes OnLine Database (GOLD) catalogues genome and metagenome sequencing projects from around the world, along with their associated metadata. Information in GOLD is organized into four levels: Study, Biosample/Organism, Sequencing Project and Analysis Project.", "created": "2020-03-17T08:03:56.077+0000", "modified": "2020-03-17T08:03:56.077+0000", "resources": [{"id": 2130, "mirId": "MIR:00000757", "urlPattern": "https://gold.jgi.doe.gov/resolver?id={$id}", "name": "Genomes OnLine Database (GOLD)", "description": "The Genomes OnLine Database (GOLD) is a centralized resource for cataloguing genome and metagenome sequencing projects from around the world, along with their associated metadata. Information in GOLD is organized into four levels: Study, Biosample/Organism, Sequencing Project and Analysis Project. \nStudy is an umbrella Project that broadly defines the overall goal of a research proposal. It consists of sequencing projects along with corresponding organism or Biosample information as well as any analysis done on the sequencing projects.\nE.g., Gs0016050: Human Microbiome Project (HMP), Gs0000008: A Genomic Encyclopedia of Bacteria and Archaea (GEBA) study.\nBiosample is the description of the environment from where the DNA/RNA sample was collected. Currently GOLD Biosample entities are defined for all metagenome and metatranscriptomes projects, i.e. for non-isolate genomes. E.g., Gb0055733\nOrganism is an individual living thing. It can be a bacterium, plant, fungus etc. In GOLD, all isolate or single cell genome sequencing projects are associated with an organism. Additionally, GOLD Organisms are also created for genomes assembled from metagenome sequences(MAGs). E.g., Go0003442\nSequencing Project represents the procedures undertaken for generating sequencing output from an individual Organism or Biosample. An individual genome project may be composed of more than one sequencing reactions and/or sequencing technologies. A Sequencing Project may be an isolate genome, or a metagenome, transcriptome, or metatranscriptome etc.\nE.g., Gp0003442\nAnalysis Project represents the computational processing of sequencing data generated by a sequencing project. It describes how the assembly and annotation of a Sequencing Project were performed. \nE.g., Ga0027275", "official": true, "providerCode": "jgi", "sampleId": "Gs0000008", "resourceHomeUrl": "https://gold.jgi.doe.gov/", "institution": {"id": 2128, "name": "Joint Genome Institute", "homeUrl": "https://gold.jgi.doe.gov/", "description": "The mission of the U.S. Department of Energy (DOE) Joint Genome Institute (JGI), a DOE Office of Science User Facility of Lawrence Berkeley National Laboratory (Berkeley Lab) and part of the Biosciences Area, is to advance genomics in support of the DOE missions related to clean energy generation and environmental characterization and cleanup.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Gs0000008", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2140, "prefix": "nmrshiftdb2", "mirId": "MIR:00000748", "name": "NMR Shift Database", "pattern": "^[0-9]+$", "description": "NMR database for organic structures and their nuclear magnetic resonance (nmr) spectra. It allows for spectrum prediction (13C, 1H and other nuclei) as well as for searching spectra, structures and other properties.", "created": "2020-03-17T12:41:40.413+0000", "modified": "2020-03-17T12:43:18.460+0000", "resources": [{"id": 2141, "mirId": "MIR:00000719", "urlPattern": "https://nmrshiftdb.nmr.uni-koeln.de/molecule/{$id}", "name": "NMRShiftDB", "description": "NMR database (web database) for organic structures and their nuclear magnetic resonance (nmr) spectra. It allows for spectrum prediction (13C, 1H and other nuclei) as well as for searching spectra, structures and other properties. Last not least, it features peer-reviewed submission of datasets by its users. The NMRShiftDB software is open source, the data is published under an open content license.", "official": true, "providerCode": "uoc", "sampleId": "234", "resourceHomeUrl": "https://nmrshiftdb.nmr.uni-koeln.de", "institution": {"id": 2139, "name": "University of Cologne", "homeUrl": "https://www.portal.uni-koeln.de/uoc_home.html?&L=1", "description": "The University of Cologne is one of the oldest and largest universities in Europe. Due to its outstanding scientific achievements and the high quality and diversity of its degree programmes, it enjoys an excellent international reputation.", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "234", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1789, "prefix": "minid", "mirId": "MIR:00000645", "name": "Minimal Viable Identifier", "pattern": "^[A-Za-z0-9]+$", "description": "Minid are identifiers used to provide robust reference to intermediate data generated during the course of a research investigation.", "created": "2019-06-11T14:18:10.091+0000", "modified": "2020-03-20T09:37:38.029+0000", "resources": [{"id": 1791, "mirId": "MIR:00100850", "urlPattern": "https://hdl.handle.net/hdl:20.500.12582/{$id}", "name": "FAIR Research", "description": "FAIR Research is a collaboration of the Informatics Systems Research Division at the Information Sciences Institute of University of Southern California and the Computational Systems Division at the University of Chicago.", "official": false, "providerCode": "fair", "sampleId": "r8059v", "resourceHomeUrl": "https://fair-research.org", "institution": {"id": 1781, "name": "University of Southern California", "homeUrl": "https://www.usc.edu/", "description": "The University of Southern California is a leading private research university located in Los Angeles \u2014 a global center for arts, technology and international business. It is home to the College of Letters, Arts and Sciences and 21 exceptional academic schools and units. USC\u2019s Health Sciences campus houses renowned specialized care and research in cancer, stem cell and regenerative medicine, orthopedics and sports medicine. The university is the largest private sector employer in the city of Los Angeles, responsible for $8 billion annually in economic activity in the region.", "rorId": "https://ror.org/03taz7m60", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "b97957", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2152, "prefix": "snp2tfbs", "mirId": "MIR:00000766", "name": "SNP2TFBS", "pattern": "^rs[0-9]+$", "description": "SNP2TFBS is aimed at studying variations (SNPs/indels) that affect transcription factor binding (TFB) in the Human genome.", "created": "2020-03-20T12:58:53.045+0000", "modified": "2020-03-20T12:58:53.045+0000", "resources": [{"id": 2153, "mirId": "MIR:00000737", "urlPattern": "https://ccg.epfl.ch/cgi-bin/snp2tfbs/snpviewer_form_parser.cgi?snpid={$id}", "name": "SNP2TFBS", "description": "SNP2TFBS is a Web interface aimed at studying variations (SNPs/indels) that affect transcription factor binding (TFB) in the Human genome.", "official": true, "providerCode": "sib", "sampleId": "rs11603840", "resourceHomeUrl": "https://ccg.epfl.ch/snp2tfbs/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "rs11603840", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2160, "prefix": "biolink", "mirId": "MIR:00000782", "name": "BioLink Model", "pattern": "^\\S+$", "description": "A high level datamodel of biological entities (genes, diseases, phenotypes, pathways, individuals, substances, etc) and their associations.", "created": "2020-03-20T15:04:54.734+0000", "modified": "2020-03-20T15:04:54.734+0000", "resources": [{"id": 2161, "mirId": "MIR:00000778", "urlPattern": "https://w3id.org/biolink/vocab/{$id}", "name": "BioLink GitHub Organization", "description": "This resource is not backed by a physical institution. The resource is managed and deployed on GitHub, and is maintained by a broad community of develops", "official": true, "providerCode": "biolinkgithub", "sampleId": "Gene", "resourceHomeUrl": "https://biolink.github.io/biolink-model", "institution": {"id": 2159, "name": "BioLink GitHub Organization", "homeUrl": "https://biolink.github.io/biolink-model", "description": "This resource is not backed by a physical institution. The resource is managed and deployed on GitHub, and is maintained by a broad community of develops", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Gene", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2184, "prefix": "rapdb.transcript", "mirId": "MIR:00000762", "name": "RAP-DB Transcript", "pattern": "^Os\\S+t\\d{7}-\\d{2}$", "description": "Rice Annotation Project Database (RAP-DB) is a primary rice (Oryza sativa) annotation database established in 2004 upon the completion of the Oryza sativa ssp. japonica cv. Nipponbare genome sequencing by the International Rice Genome Sequencing Project. RAP-DB provides comprehensive resources (e.g. genome annotation, gene expression, DNA markers, genetic diversity, etc.) for biological and agricultural research communities. This collection provides transcript information in RAP-DB.", "created": "2020-03-24T06:40:28.546+0000", "modified": "2020-03-24T06:40:28.546+0000", "resources": [{"id": 2185, "mirId": "MIR:00000773", "urlPattern": "https://rapdb.dna.affrc.go.jp/viewer/gene_detail/irgsp1?name={$id}", "name": "RAP-DB", "description": "The Rice Annotation Project (RAP) was conceptualized in 2004 upon the completion of the Oryza sativa ssp. japonica cv. Nipponbare genome sequencing by the International Rice Genome Sequencing Project with the aim of providing the scientific community with an accurate and timely annotation of the rice genome sequence.", "official": true, "providerCode": "rapdb", "sampleId": "Os01t0883800-02", "resourceHomeUrl": "https://rapdb.dna.affrc.go.jp/", "institution": {"id": 2183, "name": "The National Agriculture and Food Research Organization (NARO)", "homeUrl": "http://www.naro.affrc.go.jp/english/index.html", "description": "The National Agriculture and Food Research Organization or NARO is the core institute in Japan for conducting research and development on agriculture and food.", "rorId": "https://ror.org/023v4bd62", "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Os01t0883800-02", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2187, "prefix": "rapdb.locus", "mirId": "MIR:00000702", "name": "RAP-DB Locus", "pattern": "^Os\\S+g\\d{7}$", "description": "Rice Annotation Project Database (RAP-DB) is a primary rice (Oryza sativa) annotation database established in 2004 upon the completion of the Oryza sativa ssp. japonica cv. Nipponbare genome sequencing by the International Rice Genome Sequencing Project. RAP-DB provides comprehensive resources (e.g. genome annotation, gene expression, DNA markers, genetic diversity, etc.) for biological and agricultural research communities. This collection provides locus information in RAP-DB.", "created": "2020-03-24T06:41:41.433+0000", "modified": "2020-03-24T06:41:41.433+0000", "resources": [{"id": 2188, "mirId": "MIR:00000741", "urlPattern": "https://rapdb.dna.affrc.go.jp/viewer/gbrowse_details/irgsp1?name={$id}", "name": "RAP-DB, Rice Annotation Project Database", "description": "The Rice Annotation Project (RAP) was conceptualized in 2004 upon the completion of the Oryza sativa ssp. japonica cv. Nipponbare genome sequencing by the International Rice Genome Sequencing Project with the aim of providing the scientific community with an accurate and timely annotation of the rice genome sequence.", "official": true, "providerCode": "rapdb", "sampleId": "Os01g0883800", "resourceHomeUrl": "https://rapdb.dna.affrc.go.jp/", "institution": {"id": 2183, "name": "The National Agriculture and Food Research Organization (NARO)", "homeUrl": "http://www.naro.affrc.go.jp/english/index.html", "description": "The National Agriculture and Food Research Organization or NARO is the core institute in Japan for conducting research and development on agriculture and food.", "rorId": "https://ror.org/023v4bd62", "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Os01g0883800", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2198, "prefix": "envipath", "mirId": "MIR:00000727", "name": "enviPath", "pattern": "^[\\w^_]{8}-[\\w^_]{4}-[\\w^_]{4}-[\\w^_]{4}-[\\w^_]{12}\\/[\\w-]+\\/[\\w^_]{8}-[\\w^_]{4}-[\\w^_]{4}-[\\w^_]{4}-[\\w^_]{12}$", "description": "enviPath is a database and prediction system for the microbial biotransformation of organic environmental contaminants. The database provides the possibility to store and view experimentally observed biotransformation pathways. The pathway prediction system provides different relative reasoning models to predict likely biotransformation pathways and products.", "created": "2020-03-24T07:50:16.285+0000", "modified": "2020-03-24T07:50:16.285+0000", "resources": [{"id": 2199, "mirId": "MIR:00000776", "urlPattern": "https://envipath.org/package/{$id}", "name": "enviPath", "description": "enviPath is a database and prediction system for the microbial biotransformation of organic environmental contaminants. The database provides the possibility to store and view experimentally observed biotransformation pathways. The pathway prediction system provides different relative reasoning models to predict likely biotransformation pathways and products.", "official": true, "providerCode": "envipathug", "sampleId": "32de3cf4-e3e6-4168-956e-32fa5ddb0ce1/compound/b545cabc-8c9e-4b20-8848-efa015b481ea", "resourceHomeUrl": "https://envipath.org/", "institution": {"id": 2197, "name": "enviPath UG & Co. KG", "homeUrl": "https://envipath.org/", "description": "We currently have no more details on this institution / organization, for more information, please see https://envipath.com/imprint/", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "32de3cf4-e3e6-4168-956e-32fa5ddb0ce1/compound/b545cabc-8c9e-4b20-8848-efa015b481ea", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1167, "prefix": "gold.meta", "mirId": "MIR:00000402", "name": "GOLD metadata", "pattern": "^Gm\\d+$", "description": "- DEPRECATION NOTE -\nPlease, keep in mind that this namespace has been superseeded by \u2018gold\u2019 prefix at https://registry.identifiers.org/registry/gold, and this namespace is kept here for support to already existing citations, new ones would need to use the pointed \u2018gold\u2019 namespace. \n\nThe GOLD (Genomes OnLine Database)is a resource for centralized monitoring of genome and metagenome projects worldwide. It stores information on complete and ongoing projects, along with their associated metadata. This collection references metadata associated with samples.", "created": "2019-06-11T14:17:12.564+0000", "modified": "2020-03-26T09:38:38.398+0000", "resources": [{"id": 1168, "mirId": "MIR:00100522", "urlPattern": "http://genomesonline.org/cgi-bin/GOLD/bin/GOLDCards.cgi?goldstamp={$id}", "name": "GOLD metadata at Department of Energy Joint Genome Institute", "description": "GOLD metadata at Department of Energy Joint Genome Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Gm00047", "resourceHomeUrl": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", "institution": {"id": 1165, "name": "Department of Energy Joint Genome Institute, Microbial Genomics and Metagenomics Program, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Gm00047", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 153, "prefix": "refseq", "mirId": "MIR:00000039", "name": "RefSeq", "pattern": "^(((AC|AP|NC|NG|NM|NP|NR|NT|NW|XM|XP|XR|YP|ZP)_\\d+)|(NZ\\_[A-Z]{2,4}\\d+))(\\.\\d+)?$", "description": "The Reference Sequence (RefSeq) collection aims to provide a comprehensive, integrated, non-redundant set of sequences, including genomic DNA, transcript (RNA), and protein products.", "created": "2019-06-11T14:15:43.085+0000", "modified": "2020-03-31T09:55:28.774+0000", "resources": [{"id": 155, "mirId": "MIR:00100067", "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}", "name": "The NCBI Reference Sequence database", "description": "The NCBI Reference Sequence database", "official": false, "providerCode": "ncbi", "sampleId": "NP_012345", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/projects/RefSeq/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "NP_012345", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1164, "prefix": "gold.genome", "mirId": "MIR:00000401", "name": "GOLD genome", "pattern": "^(Gi|Gc)\\d+$", "description": "- DEPRECATION NOTE -\nPlease, keep in mind that this namespace has been superseeded by \u2018gold\u2019 prefix at https://registry.identifiers.org/registry/gold, and this namespace is kept here for support to already existing citations, new ones would need to use the pointed \u2018gold\u2019 namespace.\n\nThe GOLD (Genomes OnLine Database)is a resource for centralised monitoring of genome and metagenome projects worldwide. It stores information on complete and ongoing projects, along with their associated metadata. This collection references the sequencing status of individual genomes.", "created": "2019-06-11T14:17:12.343+0000", "modified": "2020-03-26T09:37:26.767+0000", "resources": [{"id": 1166, "mirId": "MIR:00100521", "urlPattern": "http://www.genomesonline.org/cgi-bin/GOLD/GOLDCards.cgi?goldstamp={$id}", "name": "GOLD genome at Department of Energy Joint Genome Institute", "description": "GOLD genome at Department of Energy Joint Genome Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Gi07796", "resourceHomeUrl": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", "institution": {"id": 1165, "name": "Department of Energy Joint Genome Institute, Microbial Genomics and Metagenomics Program, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Gi07796", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 794, "prefix": "knapsack", "mirId": "MIR:00000271", "name": "KNApSAcK", "pattern": "^C\\d{8}", "description": "KNApSAcK provides information on metabolites and the\ntaxonomic class with which they are associated.", "created": "2019-06-11T14:16:41.635+0000", "modified": "2020-04-22T09:28:07.963+0000", "resources": [{"id": 796, "mirId": "MIR:00100350", "urlPattern": "http://www.knapsackfamily.com/knapsack_core/information.php?word={$id}", "name": "KNApSAcK at NAIST", "description": "KNApSAcK at NAIST", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "C00000001", "resourceHomeUrl": "http://www.knapsackfamily.com/KNApSAcK/", "institution": {"id": 795, "name": "Nara Institute of Science and Technology", "homeUrl": "https://www.naist.jp/en/", "description": "Nara Institute of Science and Technology (NAIST) is a Japanese national university located in Kansai Science City, a border region between Nara, Osaka, and Kyoto. Founded in 1991, NAIST consisted of graduate schools in three integrated areas: information science, biological sciences, and materials science.", "rorId": "https://ror.org/05bhada84", "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C00000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2215, "prefix": "pgs", "mirId": "MIR:00000753", "name": "Polygenic Score Catalog", "pattern": "^PGS[0-9]{6}$", "description": "The Polygenic Score (PGS) Catalog is an open database of PGS and the relevant metadata required for accurate application and evaluation.", "created": "2020-04-22T09:46:18.729+0000", "modified": "2020-04-22T09:46:18.729+0000", "resources": [{"id": 2216, "mirId": "MIR:00000755", "urlPattern": "https://www.pgscatalog.org/pgs/{$id}/", "name": "PGS Catalog", "description": "The Polygenic Score (PGS) Catalog is an open database of PGS and the relevant metadata required for accurate application and evaluation.\n\nDeveloped in collaboration with the NHGRI-EBI GWAS Catalog and Health Data Research UK/", "official": true, "providerCode": "pgs", "sampleId": "PGS000018", "resourceHomeUrl": "http://pgscatalog.org", "institution": {"id": 2214, "name": "University of Cambridge", "homeUrl": "https://www.cam.ac.uk/", "description": "The University of Cambridge is a collegiate public research university in Cambridge, United Kingdom. Founded in 1209 and granted a royal charter by King Henry III in 1231, Cambridge is the second-oldest university in the English-speaking world and the world's fourth-oldest surviving university.", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PGS000018", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2251, "prefix": "datanator.gene", "mirId": "MIR:00000720", "name": "Datanator Gene", "pattern": "^K[0-9]+$", "description": "Datanator is an integrated database of genomic and biochemical data designed to help investigators find data about specific molecules and reactions in specific organisms and specific environments for meta-analyses and mechanistic models. Datanator currently includes metabolite concentrations, RNA modifications and half-lives, protein abundances and modifications, and reaction kinetics integrated from several databases and numerous publications. The Datanator website and REST API provide tools for extracting clouds of data about specific molecules and reactions in specific organisms and specific environments, as well as data about similar molecules and reactions in taxonomically similar organisms.", "created": "2020-05-22T09:05:34.813+0000", "modified": "2020-05-22T09:05:34.813+0000", "resources": [{"id": 2252, "mirId": "MIR:00000740", "urlPattern": "https://www.datanator.info/gene/{$id}", "name": "Icahn School of Medicine at Mount Sinai", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", "official": true, "providerCode": "icahn", "sampleId": "K00973", "resourceHomeUrl": "https://datanator.info/", "institution": {"id": 2247, "name": "Icahn School of Medicine at Mount Sinai", "homeUrl": "https://icahn.mssm.edu/", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "K00973", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1078, "prefix": "lrg", "mirId": "MIR:00000376", "name": "Locus Reference Genomic", "pattern": "^LRG_\\d+$", "description": "A Locus Reference Genomic (LRG) is a manually curated record that contains stable genomic, transcript and protein reference sequences for reporting clinically relevant sequence variants. All LRGs are generated and maintained by the NCBI and EMBL-EBI.", "created": "2019-06-11T14:17:05.115+0000", "modified": "2020-05-22T10:35:39.544+0000", "resources": [{"id": 1082, "mirId": "MIR:00100627", "urlPattern": "http://www.ensembl.org/Homo_sapiens/LRG/Summary?lrg={$id}", "name": "Locus Reference Genomic through Ensembl", "description": "Locus Reference Genomic through Ensembl", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LRG_1", "resourceHomeUrl": "http://www.ensembl.org/", "institution": {"id": 1081, "name": "EnSembl, Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1083, "mirId": "MIR:00100629", "urlPattern": "http://asia.ensembl.org/Homo_sapiens/LRG/Summary?lrg={$id}", "name": "Locus Reference Genomic through Ensembl mirror (asia)", "description": "Locus Reference Genomic through Ensembl mirror (asia)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LRG_1", "resourceHomeUrl": "http://asia.ensembl.org/", "institution": {"id": 1081, "name": "EnSembl, Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "SG", "countryName": "Singapore"}, "deprecated": false, "deprecationDate": null}, {"id": 1084, "mirId": "MIR:00100630", "urlPattern": "http://uswest.ensembl.org/Homo_sapiens/LRG/Summary?lrg={$id}", "name": "Locus Reference Genomic through Ensembl mirror (US west)", "description": "Locus Reference Genomic through Ensembl mirror (US west)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LRG_1", "resourceHomeUrl": "http://uswest.ensembl.org/", "institution": {"id": 1081, "name": "EnSembl, Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1085, "mirId": "MIR:00100631", "urlPattern": "http://useast.ensembl.org/Homo_sapiens/LRG/Summary?lrg={$id}", "name": "Locus Reference Genomic through Ensembl mirror (US east)", "description": "Locus Reference Genomic through Ensembl mirror (US east)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LRG_1", "resourceHomeUrl": "http://useast.ensembl.org/", "institution": {"id": 1081, "name": "EnSembl, Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1080, "mirId": "MIR:00100478", "urlPattern": "ftp://ftp.ebi.ac.uk/pub/databases/lrgex/{$id}.xml", "name": "Locus Reference Genomic", "description": "Locus Reference Genomic", "official": true, "providerCode": "ebi", "sampleId": "LRG_1", "resourceHomeUrl": "http://www.lrg-sequence.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LRG_1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 41, "prefix": "miriam.collection", "mirId": "MIR:00000008", "name": "MIRIAM Registry collection", "pattern": "^MIR:000\\d{5}$", "description": "MIRIAM Registry is an online resource created to catalogue collections (Gene Ontology, Taxonomy or PubMed are some examples) and the corresponding resources (physical locations) providing access to those data collections. The Registry provides unique and perennial URIs for each entity of those data collections.", "created": "2019-06-11T14:15:31.442+0000", "modified": "2020-06-04T11:17:21.456+0000", "resources": [{"id": 42, "mirId": "MIR:00100005", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100005/{$id}", "name": "MIRIAM Resources (data collection)", "description": "MIRIAM Resources (data collection)", "official": false, "providerCode": "ebi", "sampleId": "MIR:00000008", "resourceHomeUrl": "https://www.ebi.ac.uk/miriam/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": true, "deprecationDate": "2020-06-04T10:00:30.300+0000"}], "sampleId": "MIR:00000008", "namespaceEmbeddedInLui": false, "deprecated": true, "deprecationDate": "2020-06-04T11:17:21.453+0000"}, {"id": 567, "prefix": "xenbase", "mirId": "MIR:00000186", "name": "Xenbase", "pattern": "^XB\\-\\w+\\-\\d+$", "description": "Xenbase is the model organism database for Xenopus laevis and X. (Silurana) tropicalis. It contains genomic, development data and community information for Xenopus research. it includes gene expression patterns that incorporates image data from the literature, large scale screens and community submissions.", "created": "2019-06-11T14:16:21.651+0000", "modified": "2020-06-09T19:30:57.158+0000", "resources": [{"id": 569, "mirId": "MIR:00100232", "urlPattern": "https://www.xenbase.org/entry/{$id}", "name": "Xenbase at University of Calgary", "description": "Xenbase at University of Calgary", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "XB-GENE-922462", "resourceHomeUrl": "https://www.xenbase.org/", "institution": {"id": 568, "name": "University of Calgary", "homeUrl": "https://www.ucalgary.ca/", "description": "The University of Calgary is one of Canada\u2019s top comprehensive research universities, combining the best of university tradition with the city of Calgary\u2019s vibrant energy and diversity.", "rorId": "https://ror.org/03yjb2x39", "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "XB-GENE-922462", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2265, "prefix": "uniprot.chain", "mirId": "MIR:00000739", "name": "UniProt Chain", "pattern": "^PRO_[0-9]{10}$", "description": "This collection is a subset of UniProtKB that provides a means to reference the proteolytic cleavage products of a precursor protein.", "created": "2020-06-09T20:12:07.077+0000", "modified": "2020-06-26T08:48:10.292+0000", "resources": [{"id": 2266, "mirId": "MIR:00000728", "urlPattern": "http://purl.uniprot.org/annotation/{$id}", "name": "UniProt Chain through Universal Protein Resource", "description": "The UniProt Knowledgebase (UniProtKB) is a comprehensive resource for protein sequence and functional information with extensive cross-references to more than 120 external databases. This collection is a subset of UniProtKB that provides a means to reference the proteolytic cleavage products of a precursor protein.\n", "official": true, "providerCode": "upr", "sampleId": "PRO_0000016681", "resourceHomeUrl": "https://www.uniprot.org", "institution": {"id": 24, "name": "UniProt Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PRO_0000016681", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 350, "prefix": "mi", "mirId": "MIR:00000109", "name": "Molecular Interactions Ontology", "pattern": "^MI:\\d{4}$", "description": "The Molecular Interactions (MI) ontology forms a structured controlled vocabulary for the annotation of experiments concerned with protein-protein interactions. MI is developed by the HUPO Proteomics Standards Initiative.", "created": "2019-06-11T14:16:01.860+0000", "modified": "2020-06-26T10:17:31.752+0000", "resources": [{"id": 351, "mirId": "MIR:00100142", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/mi/terms?obo_id=MI:{$id}", "name": "Molecular Interactions Ontology through OLS", "description": "Molecular Interactions Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0308", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/mi", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0308", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 2277, "prefix": "molmedb", "mirId": "MIR:00000768", "name": "MolMeDB", "pattern": "^[m,M]{2}[0-9]{5}[0-9]*$", "description": "MolMeDB is an open chemistry database about interactions of molecules with membranes. We collect information on how chemicals interact with individual membranes either from experiment or from simulations. ", "created": "2020-07-03T09:30:53.125+0000", "modified": "2020-07-03T09:30:53.125+0000", "resources": [{"id": 2278, "mirId": "MIR:00000749", "urlPattern": "https://molmedb.upol.cz/mol/{$id}", "name": "Palack\u00fd University, Olomouc", "description": "Palack\u00fd University Olomouc is a university with long-standing tradition. Founded in the 16th century, it is the oldest university in Moravia and the second-oldest university in the Czech Republic. Today it is a modern higher education facility with a wide range of study programmes and copious scientific and research activities. In 2019, more than 22 000 students studied in accredited study programmes, exchange programmes and lifelong learning programmes at eight faculties. Palack\u00fd University Olomouc is one of the very top Czech universities, and ranks among the best universities in the world, according to international rankings.", "official": true, "providerCode": "upol", "sampleId": "MM00040", "resourceHomeUrl": "http://www.upol.cz/en/", "institution": {"id": 2276, "name": "Palack\u00fd University, Olomouc", "homeUrl": "http://www.upol.cz/en/", "description": "Palack\u00fd University Olomouc is a university with long-standing tradition. Founded in the 16th century, it is the oldest university in Moravia and the second-oldest university in the Czech Republic. Today it is a modern higher education facility with a wide range of study programmes and copious scientific and research activities. In 2019, more than 22 000 students studied in accredited study programmes, exchange programmes and lifelong learning programmes at eight faculties. Palack\u00fd University Olomouc is one of the very top Czech universities, and ranks among the best universities in the world, according to international rankings.", "rorId": null, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}}, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MM00040", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2293, "prefix": "odam", "mirId": "MIR:00000722", "name": "Open Data for Access and Mining", "pattern": "^[A-Za-z0-9]+$", "description": "Experimental data table management software to make research data accessible and available for reuse with minimal effort on the part of the data provider. Designed to manage experimental data tables in an easy way for users, ODAM provides a model for structuring both data and metadata that facilitates data handling and analysis. It also encourages data dissemination according to FAIR principles by making the data interoperable and reusable by both humans and machines, allowing the dataset to be explored and then extracted in whole or in part as needed.", "created": "2020-07-08T15:12:19.317+0000", "modified": "2020-07-08T15:12:19.317+0000", "resources": [{"id": 2294, "mirId": "MIR:00000759", "urlPattern": "http://pmb-bordeaux.fr/getdata/json/{$id}/datapackage?links=1", "name": "INRA", "description": "Bordeaux Metabolome Facility provides equipments and expertise for the study of metabolome, lipidome and metabolic fluxes.", "official": true, "providerCode": "bmf", "sampleId": "frim1", "resourceHomeUrl": "https://metabolome.cgfb.u-bordeaux.fr/", "institution": {"id": 2292, "name": "National Research Institute for Agriculture, Food and Environment", "homeUrl": "https://www.inrae.fr/", "description": "INRAE is France's new National Research Institute for Agriculture, Food and Environment, created on January 1, 2020, It was formed by the merger of INRA, the National Institute for Agricultural Research, and IRSTEA, the National Research Institute of Science and Technology for the Environment and Agriculture.", "rorId": "https://ror.org/003vg9w96", "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "frim1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1468, "prefix": "hgnc.family", "mirId": "MIR:00000520", "name": "HGNC Family", "pattern": "^[A-Z0-9-]+(#[A-Z0-9-]+)?$", "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. In addition, HGNC also provides symbols for both structural and functional gene families. This collection refers to records using the HGNC family symbol.", "created": "2019-06-11T14:17:39.700+0000", "modified": "2020-07-16T06:11:33.736+0000", "resources": [{"id": 1469, "mirId": "MIR:00100671", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100671/{$id}", "name": "HGNC Family at HUGO Genome Nomenclature Committee", "description": "HGNC Family at HUGO Genome Nomenclature Committee", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PADI", "resourceHomeUrl": "https://www.genenames.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": true, "deprecationDate": "2020-07-16T06:11:29.395+0000"}], "sampleId": "PADI", "namespaceEmbeddedInLui": false, "deprecated": true, "deprecationDate": "2020-07-16T06:11:33.734+0000"}, {"id": 2306, "prefix": "hgnc.genegroup", "mirId": "MIR:00000709", "name": "HGNC Gene Group", "pattern": "^\\d+$", "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. In addition, HGNC also provides a unique numerical ID to identify gene families, providing a display of curated hierarchical relationships between families.", "created": "2020-07-16T06:20:43.698+0000", "modified": "2020-07-16T06:20:43.698+0000", "resources": [{"id": 2307, "mirId": "MIR:00000703", "urlPattern": "https://www.genenames.org/cgi-bin/genefamilies/set/{$id}", "name": "HGNC Gene Group at HUGO Genome Nomenclature Committee", "description": "HGNC Gene Group at HUGO Genome Nomenclature Committee", "official": true, "providerCode": "ebi", "sampleId": "141", "resourceHomeUrl": "https://www.genenames.org", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "141", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 689, "prefix": "doid", "mirId": "MIR:00000233", "name": "Human Disease Ontology", "pattern": "^DOID:\\d+$", "description": "The Disease Ontology has been developed as a standardized ontology for human disease with the purpose of providing the biomedical community with consistent, reusable and sustainable descriptions of human disease terms, phenotype characteristics and related medical vocabulary disease concepts.", "created": "2019-06-11T14:16:32.719+0000", "modified": "2020-07-20T14:34:20.285+0000", "resources": [{"id": 690, "mirId": "MIR:00100292", "urlPattern": "http://purl.bioontology.org/ontology/DOID/DOID:{$id}", "name": "Human Disease Ontology through BioPortal", "description": "Human Disease Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "11337", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/DOID", "institution": {"id": 571, "name": "National Center for Biomedical Ontology, Stanford University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 693, "mirId": "MIR:00100297", "urlPattern": "http://disease-ontology.org/term/DOID:{$id}", "name": "Human Disease Ontology at Northwestern University", "description": "Human Disease Ontology at Northwestern University", "official": false, "providerCode": "hdo", "sampleId": "11337", "resourceHomeUrl": "http://disease-ontology.org/", "institution": {"id": 692, "name": "University of Maryland (Maryland) and Northwestern University (Illinois)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 691, "mirId": "MIR:00100293", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/doid/terms?obo_id=DOID:{$id}", "name": "Human Disease Ontology through OLS", "description": "Human Disease Ontology through OLS", "official": true, "providerCode": "ols", "sampleId": "11337", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/doid", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "11337", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1292, "prefix": "go_ref", "mirId": "MIR:00000450", "name": "Gene Ontology Reference", "pattern": "^GO_REF:\\d{7}$", "description": "The GO reference collection is a set of abstracts that can be cited in the GO ontologies (e.g. as dbxrefs for term definitions) and annotation files (in the Reference column). It provides two types of reference; It can be used to provide details of why specific Evidence codes (see http://identifiers.org/eco/) are assigned, or to present abstract-style descriptions of \"GO content\" meetings at which substantial changes in the ontologies are discussed and made.", "created": "2019-06-11T14:17:23.452+0000", "modified": "2020-07-30T07:27:34.233+0000", "resources": [{"id": 1293, "mirId": "MIR:00100584", "urlPattern": "https://github.com/geneontology/go-site/blob/master/metadata/gorefs/goref-{$id}.md", "name": "Gene Ontology Reference at The Gene Ontology Consortium", "description": "Gene Ontology Reference at The Gene Ontology Consortium", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0000041", "resourceHomeUrl": "http://www.geneontology.org/cgi-bin/references.cgi", "institution": {"id": 89, "name": "The Gene Ontology Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000041", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1934, "prefix": "gcst", "mirId": "MIR:00000715", "name": "GWAS Catalog", "pattern": "^GCST\\d{6}\\d*$", "description": "The GWAS Catalog provides a consistent, searchable, visualisable and freely available database of published SNP-trait associations, which can be easily integrated with other resources, and is accessed by scientists, clinicians and other users worldwide.", "created": "2019-06-17T12:55:17.868+0000", "modified": "2020-09-23T11:03:41.882+0000", "resources": [{"id": 1935, "mirId": "MIR:00000775", "urlPattern": "https://www.ebi.ac.uk/gwas/studies/{$id}", "name": "European Bioinformatics Institute", "description": "The European Bioinformatics Institute (EMBL-EBI) helps scientists realise the potential of 'big data' in biology, exploiting complex information to make discoveries that benefit humankind.", "official": true, "providerCode": "ebi", "sampleId": "GCST000035", "resourceHomeUrl": "https://www.ebi.ac.uk", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GCST000035", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2370, "prefix": "pkdb", "mirId": "MIR:00000708", "name": "PK-DB", "pattern": "^PKDB[0-9]{5}$", "description": "PK-DB an open database for pharmacokinetics information from clinical trials as well as pre-clinical research. The focus of PK-DB is to provide high-quality pharmacokinetics data enriched with the required meta-information for computational modeling and data integration. ", "created": "2020-10-07T10:25:14.491+0000", "modified": "2020-10-07T10:25:14.491+0000", "resources": [{"id": 2371, "mirId": "MIR:00000714", "urlPattern": "https://pk-db.com/data/{$id}", "name": "Humboldt University of Berlin", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01hcx6992' with Wikidata IDs [Q152087], and ISNI IDs [0000 0001 2248 7639]", "official": true, "providerCode": "pkdb", "sampleId": "PKDB00198", "resourceHomeUrl": "https://www.hu-berlin.de/?set_language=en&cl=en", "institution": {"id": 2369, "name": "Humboldt University of Berlin", "homeUrl": "https://www.hu-berlin.de/?set_language=en&cl=en", "description": "Humboldt University of Berlin is a university in the central borough of Mitte in Berlin, Germany. It was established by Frederick William III on the initiative of Wilhelm von Humboldt, Johann Gottlieb Fichte and Friedrich Ernst Daniel Schleiermacher as the University of Berlin (Universit\u00e4t zu Berlin) in 1809, and opened in 1810.", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PKDB00198", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2377, "prefix": "morpheus", "mirId": "MIR:00000725", "name": "Morpheus model repository", "pattern": "^M[0-9]{4,}$", "description": "The Morpheus model repository is an open-access data resource to store, search and retrieve unpublished and published computational models of spatio-temporal and multicellular biological systems, encoded in the MorpheusML language and readily executable with the Morpheus software.\n", "created": "2020-10-07T10:43:05.918+0000", "modified": "2020-10-07T10:43:05.918+0000", "resources": [{"id": 2378, "mirId": "MIR:00000700", "urlPattern": "https://morpheus.gitlab.io/models/{$id}", "name": "Morpheus.lab", "description": "Morpheus.lab is affiliated with the Center for Information Services and High Performance Computing (ZIH)\nat Technische Universit\u00e4t Dresden, Germany. Morpheus.lab develops and maintains the open-source software Morpheus, the domain-specific language MorpheusML, online courses, a user forum and the model repository.", "official": true, "providerCode": "morpheus.lab", "sampleId": "M0001", "resourceHomeUrl": "https://morpheus.gitlab.io/", "institution": {"id": 2376, "name": "TU Dresden", "homeUrl": "https://tu-dresden.de/?set_language=en", "description": "The Technische Universit\u00e4t Dresden (TUD) is one of the largest \u201cTechnische Universit\u00e4ten\u201d in Germany and one of the leading and most dynamic universities in Germany. As a full-curriculum university with 17 faculties in five schools it offers a broad variety of 124 disciplines and covers a wide research spectrum. Its focuses Health Sciences, Biomedicine & Bioengineering, Information Technology & Microelectronics, Smart Materials & Structures, Energy, Mobility & Environment as well as Culture & Societal Change are considered exemplary in Germany and throughout Europe.", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "M0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2384, "prefix": "glycopost", "mirId": "MIR:00000721", "name": "GlycoPOST", "pattern": "^GPST[0-9]{6}$", "description": "GlycoPOST is a mass spectrometry data repository for glycomics and glycoproteomics. Users can release their \"raw/processed\" data via this site with a unique identifier number for the paper publication. Submission conditions are in accordance with the Minimum Information Required for a Glycomics Experiment (MIRAGE) guidelines.", "created": "2020-10-08T09:25:59.424+0000", "modified": "2020-10-08T09:25:59.424+0000", "resources": [{"id": 2385, "mirId": "MIR:00000704", "urlPattern": "https://glycopost.glycosmos.org/entry/{$id}", "name": "Niigata University", "description": "Niigata University has a long institutional history, with origins going back some 150 years. Since its inauguration as a national university in 1949 under the new university system, it has played an important role in higher education and research in Japan. Over the years, it has grown into a large-scale comprehensive university offering bachelor's, master's, and doctoral degree programs under ten faculties and five graduate schools in a wide range of disciplines spanning the humanities, education, law, economics, science, engineering, agriculture, medicine, health sciences, and dentistry. With a student body of approximately 13,000 and 3,000 academic and administrative staff members, and as a research-oriented university, it boasts several world-leading research institutes, including the Brain Research Institute and the Research Institute for Natural Hazards and Disaster Recovery as well as a university hospital providing high-level medical care as an advanced treatment hospital for the region.", "official": true, "providerCode": "glycopost", "sampleId": "GPST000024", "resourceHomeUrl": "https://glycopost.glycosmos.org", "institution": {"id": 2383, "name": "Niigata University", "homeUrl": "https://www.niigata-u.ac.jp/", "description": "Niigata University has a long institutional history, with origins going back some 150 years. Since its inauguration as a national university in 1949 under the new university system, it has played an important role in higher education and research in Japan. Over the years, it has grown into a large-scale comprehensive university offering bachelor's, master's, and doctoral degree programs under ten faculties and five graduate schools in a wide range of disciplines spanning the humanities, education, law, economics, science, engineering, agriculture, medicine, health sciences, and dentistry. With a student body of approximately 13,000 and 3,000 academic and administrative staff members, and as a research-oriented university, it boasts several world-leading research institutes, including the Brain Research Institute and the Research Institute for Natural Hazards and Disaster Recovery as well as a university hospital providing high-level medical care as an advanced treatment hospital for the region.", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GPST000024", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1280, "prefix": "uberon", "mirId": "MIR:00000446", "name": "UBERON", "pattern": "^UBERON:\\d+$", "description": "Uberon is an integrated cross-species anatomy ontology representing a variety of entities classified according to traditional anatomical criteria such as structure, function and developmental lineage. The ontology includes comprehensive relationships to taxon-specific anatomical ontologies, allowing integration of functional, phenotype and expression data.", "created": "2019-06-11T14:17:22.433+0000", "modified": "2021-02-27T10:19:43.666+0000", "resources": [{"id": 1281, "mirId": "MIR:00100579", "urlPattern": "http://purl.bioontology.org/ontology/UBERON/UBERON:{$id}", "name": "UBERON through bioPortal", "description": "UBERON through bioPortal", "official": false, "providerCode": "bptl", "sampleId": "0008203", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/UBERON", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1282, "mirId": "MIR:00100580", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/uberon/terms?obo_id=UBERON:{$id}", "name": "UBERON through OLS", "description": "UBERON through OLS", "official": false, "providerCode": "ols", "sampleId": "0008203", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/uberon", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0008203", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 2524, "prefix": "ped.ensemble", "mirId": "MIR:00000795", "name": "Protein Ensemble Database ensemble", "pattern": "^PED\\d{5}e\\d{3}$", "description": "The Protein Ensemble Database is an open access database for the deposition of structural ensembles, including intrinsically disordered proteins.", "created": "2021-02-17T18:06:52.762+0000", "modified": "2021-02-17T18:06:52.762+0000", "resources": [{"id": 2525, "mirId": "MIR:00000791", "urlPattern": "https://proteinensemble.org/{$id}", "name": "PED - Protein Ensemble Database", "description": "The Protein Ensemble Database (PED) is an open access database for the deposition of structural ensembles, including intrinsically disordered proteins.", "official": true, "providerCode": "ped.ensemble", "sampleId": "PED00017e001", "resourceHomeUrl": "https://proteinensemble.org/", "institution": {"id": 1769, "name": "University of Padua", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PED00017e001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2527, "prefix": "repeatsdb.structure", "mirId": "MIR:00000764", "name": "RepeatsDB Structure", "pattern": "^[0-9][A-Za-z0-9]{3}[A-Za-z0-9][A-Za-z0-9]?[0-9]?[0-9]?$", "description": "RepeatsDB is a database of annotated tandem repeat protein structures. This collection references structural entries in the database.", "created": "2021-02-17T18:09:04.420+0000", "modified": "2021-02-17T18:09:04.420+0000", "resources": [{"id": 2528, "mirId": "MIR:00000780", "urlPattern": "https://repeatsdb.org/structure/{$id}", "name": "RepeatsDB", "description": "RepeatsDB is a database of annotated tandem repeat protein structures. This collection references structural entries in the database.", "official": true, "providerCode": "repeatsdb.structure", "sampleId": "2gc4E", "resourceHomeUrl": "https://repeatsdb.org/", "institution": {"id": 1769, "name": "University of Padua", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2gc4E", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2416, "prefix": "biosimulators", "mirId": "MIR:00000767", "name": "BioSimulators", "pattern": "[a-zA-Z0-9-_]+", "description": "BioSimulators is a registry of containerized simulation tools that support a common interface. The containers in BioSimulators support a range of modeling frameworks (e.g., logical, constraint-based, continuous kinetic, discrete kinetic), simulation algorithms (e.g., CVODE, FBA, SSA), and modeling formats (e.g., BGNL, SBML, SED-ML).", "created": "2020-10-22T01:16:20.744+0000", "modified": "2020-10-22T01:16:20.744+0000", "resources": [{"id": 2417, "mirId": "MIR:00000746", "urlPattern": "https://biosimulators.org/simulators/{$id}", "name": "BioSimulators", "description": "The BioSimulators project aims to make it easier for the research community to reuse biosimulation tools through standards and a registry of simulation tools.", "official": true, "providerCode": "icahn", "sampleId": "vcell", "resourceHomeUrl": "https://biosimulators.org/", "institution": {"id": 2247, "name": "Icahn School of Medicine at Mount Sinai", "homeUrl": "https://icahn.mssm.edu/", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "vcell", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2423, "prefix": "gsso", "mirId": "MIR:00000712", "name": "Gender, Sex, and Sexual Orientation (GSSO) Ontology", "pattern": "^GSSO:\\d{6}$", "description": "The Gender, Sex, and Sexual Orientation (GSSO) ontology is an interdisciplinary ontology connecting terms from biology, medicine, psychology, sociology, and gender studies, aiming to bridge gaps between linguistic variations inside and outside of the health care environment. A large focus of the ontology is its consideration of LGBTQIA+ terminology.", "created": "2020-11-05T10:42:17.722+0000", "modified": "2020-11-05T10:59:53.808+0000", "resources": [{"id": 2424, "mirId": "MIR:00000758", "urlPattern": "http://purl.obolibrary.org/obo/GSSO_{$id}", "name": "National Center for Biomedical Ontology (NCBO) BioPortal", "description": "One of the National Centers for Biomedical Computing, and is funded by the NIH. Among the goals of the NCBO are to provide tools for discovery and access of biomedical ontologies, which are a type of controlled vocabulary designed to allow the expression of complex relationships in machine-readable form.", "official": true, "providerCode": "bioportal", "sampleId": "002368", "resourceHomeUrl": "https://bioportal.bioontology.org/", "institution": {"id": 2422, "name": "University of Cincinnati", "homeUrl": "https://www.uc.edu/", "description": "UC is a public research university with an enrollment of more than 46,000 students and has been named \"Among the top tier of the Best National Universities,\" according to U.S. News & World Report.", "rorId": "https://ror.org/01e3m7079", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "002368", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1357, "prefix": "ligandbox", "mirId": "MIR:00000477", "name": "LigandBox", "pattern": "^(HTS|KSH)[0-9]{4}-[0-9]{8}|PDB_[0-9,A-Z]{2,3}|[CD][0-9]{5}$", "description": "LigandBox is a database of 3D compound structures. Compound information is collected from the catalogues of various commercial suppliers, with approved drugs and biochemical compounds taken from KEGG and PDB databases. Each chemical compound in the database has several 3D conformers with hydrogen atoms and atomic charges, which are ready to be docked into receptors using docking programs. Various physical properties, such as aqueous solubility (LogS) and carcinogenicity have also been calculated to characterize the ADME-Tox properties of the compounds.", "created": "2019-06-11T14:17:28.979+0000", "modified": "2020-11-20T10:55:30.526+0000", "resources": [{"id": 1359, "mirId": "MIR:00100612", "urlPattern": "http://www.mypresto5.com/ligandbox/cgi-bin/liginf.cgi?id={$id}", "name": "LigandBox at N2PC", "description": "LigandBox at N2PC", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "D00001", "resourceHomeUrl": "http://www.mypresto5.com/ligandbox/cgi-bin/index.cgi?LANG=en", "institution": {"id": 1358, "name": "Next generation Natural Products Chemistry", "homeUrl": "https://www.natprodchem.jp/", "description": "https://www.natprodchem.jp/files/english.pdf", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "D00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1666, "prefix": "pgx", "mirId": "MIR:00000600", "name": "Progenetix", "pattern": "^\\w{3,15}[-_]\\w[\\w.-]{3,128}$", "description": "The Progenetix database provides an overview of mutation data in cancer, with a focus on copy number abnormalities (CNV / CNA), for all types of human malignancies. The resource contains genome profiles of more than 130'000 individual samples and represents about 700 cancer types, according to the NCIt \"neoplasm\" classification. Additionally to this genome profiles and associated metadata, the website present information about thousands of publications referring to cancer genome profiling experiments, and services for mapping cancer classifications and accessing supplementary data through its APIs.", "created": "2019-06-11T14:17:59.445+0000", "modified": "2020-11-25T15:01:33.103+0000", "resources": [{"id": 1668, "mirId": "MIR:00100801", "urlPattern": "https://progenetix.org/services/ids/{$id}", "name": "Progenetix", "description": "Progenetix", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "pgxbs-kftva5zv", "resourceHomeUrl": "https://progenetix.org/", "institution": {"id": 1667, "name": "University of Zurich", "homeUrl": "https://www.uzh.ch/en.html", "description": "No description available", "rorId": "https://ror.org/02crff812", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "pgxbs-kftva5zv", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2477, "prefix": "covid19", "mirId": "MIR:00000789", "name": "SARS-CoV-2", "pattern": "^\\w+_COVID19_[-\\w]+$", "description": "Curated contextual database gathering samples related to SARS-CoV-2 virus and covid-19 disease.", "created": "2020-12-14T12:49:56.333+0000", "modified": "2020-12-14T12:49:56.333+0000", "resources": [{"id": 2478, "mirId": "MIR:00000787", "urlPattern": "https://covid19.sfb.uit.no/api/records/{$id}", "name": "Elixir@UiT", "description": "Elixir@UiT is the local branch of ELIXIR-NO node based at UiT.", "official": true, "providerCode": "sfb", "sampleId": "SFB_COVID19_MW286762", "resourceHomeUrl": "https://covid19.sfb.uit.no", "institution": {"id": 2476, "name": "University of Troms\u00f8 - The Arctic University of Norway", "homeUrl": "https://uit.no/startsida", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/00wge5k78' with Wikidata IDs [Q279724], and ISNI IDs [0000000122595234]", "rorId": null, "location": {"countryCode": "NO", "countryName": "Norway"}}, "location": {"countryCode": "NO", "countryName": "Norway"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SFB_COVID19_MW286762", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2484, "prefix": "oma.hog", "mirId": "MIR:00000785", "name": "OMA HOGs", "pattern": "^HOG:[0-9]{7}(\\.[0-9a-z.]+)?(_[0-9]+)?$", "description": "Hierarchical orthologous groups predicted by OMA (Orthologous MAtrix) database. Hierarchical orthologous groups are sets of genes that have started diverging from a single common ancestor gene at a certain taxonomic level of reference. ", "created": "2020-12-14T12:57:54.560+0000", "modified": "2020-12-14T12:57:54.560+0000", "resources": [{"id": 2485, "mirId": "MIR:00000761", "urlPattern": "https://omabrowser.org/oma/hog/resolve/HOG:{$id}/", "name": "ETH Zurich", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05a28rw58' with Wikidata IDs [Q11942], and ISNI IDs [0000 0001 2156 2780]", "official": true, "providerCode": "oma", "sampleId": "HOG:0459895", "resourceHomeUrl": "https://omabrowser.org", "institution": {"id": 2483, "name": "ETH Zurich", "homeUrl": "https://ethz.ch/en.html", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05a28rw58' with Wikidata IDs [Q11942], and ISNI IDs [0000 0001 2156 2780]", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HOG:0459895", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 2497, "prefix": "vmhgene", "mirId": "MIR:00000774", "name": "VMH Gene", "pattern": "^[0-9]+\\.[0-9]+", "description": "The Virtual Metabolic Human (VMH) is a resource that combines human and gut microbiota metabolism with nutrition and disease.", "created": "2021-02-01T15:47:59.756+0000", "modified": "2021-02-01T15:47:59.756+0000", "resources": [{"id": 2498, "mirId": "MIR:00000794", "urlPattern": "https://www.vmh.life/#gene/{$id}", "name": "VMH Gene", "description": "VMH Gene, provided by Thiele Group, NUI Galway. \nThe VMH database captures information on human and gut microbial metabolism and links this information to hundreds of diseases and nutritional data.", "official": true, "providerCode": "NUI", "sampleId": "8639.1", "resourceHomeUrl": "https://www.vmh.life/", "institution": {"id": 2496, "name": "National University of Ireland, Galway", "homeUrl": "http://www.nuigalway.ie/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03bea9k73' with Wikidata IDs [Q644478], and ISNI IDs [0000 0004 0488 0789]", "rorId": null, "location": {"countryCode": "IE", "countryName": "Ireland"}}, "location": {"countryCode": "IE", "countryName": "Ireland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "8639.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1523, "prefix": "gwascentral.phenotype", "mirId": "MIR:00000543", "name": "GWAS Central Phenotype", "pattern": "^HGVPM\\d+$", "description": "GWAS Central (previously the Human Genome Variation database of Genotype-to-Phenotype information) is a database of summary level findings from genetic association studies, both large and small. It gathers datasets from public domain projects, and accepts direct data submission. It is based upon Marker information encompassing SNP and variant information from public databases, to which allele and genotype frequency data, and genetic association findings are additionally added. A Study (most generic level) contains one or more Experiments, one or more Sample Panels of test subjects, and one or more Phenotypes. This collection references a GWAS Central Phenotype.", "created": "2019-06-11T14:17:44.698+0000", "modified": "2021-02-01T16:43:30.697+0000", "resources": [{"id": 1524, "mirId": "MIR:00100720", "urlPattern": "https://www.gwascentral.org/phenotype/{$id}", "name": "GWAS Central Phenotype at University of Leicester", "description": "GWAS Central Phenotype at University of Leicester", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HGVPM623", "resourceHomeUrl": "https://www.gwascentral.org/phenotypes", "institution": {"id": 1079, "name": "Department of Genetics, University of Leicester, Leicester", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HGVPM623", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2518, "prefix": "clinvar.submitter", "mirId": "MIR:00000769", "name": "ClinVar Submitter", "pattern": "^\\d+$", "description": "ClinVar archives reports of relationships among medically important variants and phenotypes. It records human variation, interpretations of the relationship specific variations to human health, and supporting evidence for each interpretation. Each ClinVar record (RCV identifier) represents an aggregated view of interpretations of the same variation and condition from one or more submitters (Submitter IDs). Submissions for individual variation/phenotype combinations (SCV identifier) are also collected and made available separately. This collection references submitters (submitter ids) that submit the submissions (SCVs).", "created": "2021-02-17T17:56:14.329+0000", "modified": "2021-02-17T17:56:14.329+0000", "resources": [{"id": 2519, "mirId": "MIR:00000783", "urlPattern": "https://www.ncbi.nlm.nih.gov/clinvar/submitters/{$id}", "name": "ClinVar Submitter at NCBI", "description": "ClinVar Submitter ids are assigned by NCBI for all authorized submitters of clinvar submissions (SCVs)", "official": true, "providerCode": "ncbi", "sampleId": "26957", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/clinvar/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "26957", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2521, "prefix": "ped", "mirId": "MIR:00000777", "name": "Protein Ensemble Database", "pattern": "^PED\\d{5}$", "description": "The Protein Ensemble Database is an open access database for the deposition of structural ensembles, including intrinsically disordered proteins.", "created": "2021-02-17T18:02:05.160+0000", "modified": "2021-02-17T18:02:05.160+0000", "resources": [{"id": 2522, "mirId": "MIR:00000784", "urlPattern": "https://proteinensemble.org/{$id}", "name": "PED - Protein Ensemble Database", "description": "The Protein Ensemble Database (PED) is an open access database for the deposition of structural ensembles, including intrinsically disordered proteins.", "official": true, "providerCode": "ped", "sampleId": "PED00037", "resourceHomeUrl": "https://proteinensemble.org/", "institution": {"id": 1769, "name": "University of Padua", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PED00037", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2532, "prefix": "repeatsdb.protein", "mirId": "MIR:00000792", "name": "RepeatsDB Protein", "pattern": "^[OPQopq][0-9][A-Za-z0-9]{3}[0-9]|[A-Na-nR-Zr-z][0-9]([A-Za-z][A-Za-z0-9]{2}[0-9]){1,2}$", "description": "RepeatsDB is a database of annotated tandem repeat protein structures. This collection references protein entries in the database.", "created": "2021-02-17T18:11:07.592+0000", "modified": "2021-02-17T18:11:07.592+0000", "resources": [{"id": 2533, "mirId": "MIR:00000699", "urlPattern": "https://repeatsdb.org/protein/{$id}", "name": "RepeatsDB", "description": "RepeatsDB is a database of annotated tandem repeat protein structures. This collection references structural entries in the database.", "official": true, "providerCode": "", "sampleId": "P29894", "resourceHomeUrl": "https://repeatsdb.org/", "institution": {"id": 1769, "name": "University of Padua", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P29894", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2548, "prefix": "gateway", "mirId": "MIR:00000796", "name": "gateway", "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "description": "The Health Data Research Innovation Gateway (the 'Gateway') provides a common entry point to discover and enquire about access to UK health datasets for research and innovation. It provides detailed information about the datasets, which are held by members of the UK Health Data Research Alliance, such as a description, size of the population, and the legal basis for access.", "created": "2021-02-26T07:35:34.234+0000", "modified": "2021-02-26T07:35:34.234+0000", "resources": [{"id": 2549, "mirId": "MIR:00000697", "urlPattern": "https://web.www.healthdatagateway.org/dataset/{$id}", "name": "Health Data Research UK", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04rtjaj74' with no Wikidata information, and no ISNI information", "official": true, "providerCode": "hdruk", "sampleId": "fd8d0743-344a-4758-bb97-f8ad84a37357", "resourceHomeUrl": "https://www.hdruk.ac.uk", "institution": {"id": 2547, "name": "Health Data Research UK", "homeUrl": "https://www.hdruk.ac.uk", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04rtjaj74' with no Wikidata information, and no ISNI information", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "fd8d0743-344a-4758-bb97-f8ad84a37357", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1585, "prefix": "metanetx.compartment", "mirId": "MIR:00000569", "name": "MetaNetX compartment", "pattern": "^(MNX[CD]\\d+|BOUNDARY|IN|OUT)$", "description": "MetaNetX/MNXref integrates various information from genome-scale metabolic network reconstructions such as information on reactions, metabolites and compartments. This information undergoes a reconciliation process to minimise for discrepancies between different data sources, and makes the data accessible under a common namespace. This collection references cellular compartments.", "created": "2019-06-11T14:17:50.805+0000", "modified": "2021-02-26T09:49:03.051+0000", "resources": [{"id": 1586, "mirId": "MIR:00100750", "urlPattern": "https://www.metanetx.org/comp_info/{$id}", "name": "MetaNetX compartment at SIB Swiss Institute of Bioinformatics", "description": "MetaNetX compartment at SIB Swiss Institute of Bioinformatics", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MNXC15", "resourceHomeUrl": "https://www.metanetx.org/", "institution": {"id": 1581, "name": "Vital-IT group, SIB Swiss Institute of Bioinformatics, Lausanne", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MNXC15", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2559, "prefix": "qtldb", "mirId": "MIR:00000798", "name": "Animal Genome QTL", "pattern": "^\\d+$", "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection is species-independent.", "created": "2021-02-26T10:27:01.032+0000", "modified": "2021-02-26T10:27:01.032+0000", "resources": [{"id": 2560, "mirId": "MIR:00000797", "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}", "name": "Animal QTL DB at Iowa State University", "description": "Animal QTL DB at Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University", "official": true, "providerCode": "iastate", "sampleId": "4685", "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", "institution": {"id": 2558, "name": "Iowa State University", "homeUrl": "https://www.iastate.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04rswrd78' with Wikidata IDs [Q1136919], and ISNI IDs [0000 0004 1936 7312]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4685", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2565, "prefix": "runbiosimulations", "mirId": "MIR:00000897", "name": "runBioSimulations", "pattern": "[0-9a-z]{24,24}", "description": "runBioSimulations is a platform for sharing simulation experiments and their results. runBioSimulations enables investigators to use a wide range of simulation tools to execute a wide range of simulations. runBioSimulations permanently saves the results of these simulations, and investigators can share results by sharing URLs similar to sharing URLs for files with DropBox and Google Drive.", "created": "2021-02-28T15:53:07.380+0000", "modified": "2021-02-28T15:53:07.380+0000", "resources": [{"id": 2566, "mirId": "MIR:00000898", "urlPattern": "https://run.biosimulations.org/simulations/{$id}", "name": "Icahn School of Medicine at Mount Sinai", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04a9tmd77' with Wikidata IDs [Q1950740], and ISNI IDs [0000 0001 0670 2351]", "official": true, "providerCode": "icahn", "sampleId": "5fde96bdc5f1aa9ff0cce18a", "resourceHomeUrl": "https://icahn.mssm.edu/", "institution": {"id": 2247, "name": "Icahn School of Medicine at Mount Sinai", "homeUrl": "https://icahn.mssm.edu/", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5fde96bdc5f1aa9ff0cce18a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2571, "prefix": "chembl", "mirId": "MIR:00000799", "name": "ChEMBL", "pattern": "^CHEMBL\\d+$", "description": "ChEMBL is a database of bioactive compounds, their quantitative properties and bioactivities (binding constants, pharmacology and ADMET, etc). The data is abstracted and curated from the primary scientific literature.", "created": "2021-02-28T16:13:04.331+0000", "modified": "2021-02-28T16:13:04.331+0000", "resources": [{"id": 2572, "mirId": "MIR:00000800", "urlPattern": "https://www.ebi.ac.uk/chembl/entity/{$id}", "name": "European Bioinformatics Institute", "description": "ChEMBL is a database of bioactive compounds, their quantitative properties and bioactivities (binding constants, pharmacology and ADMET, etc). The data is abstracted and curated from the primary scientific literature.", "official": true, "providerCode": "ebi", "sampleId": "CHEMBL4303805", "resourceHomeUrl": "https://www.ebi.ac.uk/chembl", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CHEMBL4303805", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2585, "prefix": "ito", "mirId": "MIR:00000802", "name": "Intelligence Task Ontology", "pattern": "^.+$", "description": "The Intelligence Task Ontology (ITO) provides a comprehensive map of machine intelligence tasks, as well as broader human intelligence or hybrid human/machine intelligence tasks.", "created": "2021-03-15T19:37:56.820+0000", "modified": "2021-03-15T19:37:56.820+0000", "resources": [{"id": 2586, "mirId": "MIR:00000801", "urlPattern": "https://bioportal.bioontology.org/ontologies/ITO/?p=classes&conceptid=https%3A%2F%2Fai-strategies.org%2Fontology%2F{$id}", "name": "BioPortal at National Center for Biomedical Ontology", "description": "BioPortal at National Center for Biomedical Ontology", "official": true, "providerCode": "ito", "sampleId": "ITO_01625", "resourceHomeUrl": "https://bioportal.bioontology.org/", "institution": {"id": 2584, "name": "Institute of Artificial Intelligence and Decision Support, Medical University of Vienna", "homeUrl": "https://www.meduniwien.ac.at/web/en/", "description": "The Institute of Artificial Intelligence and Decision Support at the Medical University of Vienna is dedicated to enabling scientific progress and good decision making by facilitating artificial intelligence technologies.", "rorId": null, "location": {"countryCode": "AT", "countryName": "Austria"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ITO_01625", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2589, "prefix": "odc.sci", "mirId": "MIR:00000804", "name": "Open Data Commons for Spinal Cord Injury", "pattern": "^[0-9]*$", "description": "The Open Data Commons for Spinal Cord Injury is a cloud-based community-driven repository to store, share, and publish spinal cord injury research data.", "created": "2021-03-15T19:43:45.400+0000", "modified": "2021-03-15T19:43:45.400+0000", "resources": [{"id": 2590, "mirId": "MIR:00000803", "urlPattern": "https://odc-sci.org/data/{$id}", "name": "Open Data Commons for Spinal Cord Injury", "description": "Open Data Commons for Spinal Cord Injury hosted on on SciCrunch.org", "official": true, "providerCode": "odc.sci", "sampleId": "602", "resourceHomeUrl": "https://odc-sci.org", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "602", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2594, "prefix": "igsn", "mirId": "MIR:00000806", "name": "International Geo Sample Number", "pattern": "^[A-Za-z]{2,4}[A-Za-z0-9.-]{1,71}$", "description": "IGSN is a globally unique and persistent identifier for material samples and specimens. IGSNs are obtained from IGSN e.V. Agents.", "created": "2021-03-15T19:52:42.073+0000", "modified": "2021-03-15T19:52:42.073+0000", "resources": [{"id": 2595, "mirId": "MIR:00000805", "urlPattern": "http://igsn.org/{$id}", "name": "SESAR, the System for Earth Sample Registration", "description": "SESAR is a community platform that operates a sample registry for researchers, institutions, and sample facilities to openly share information about their samples. SESAR provides tools to upload sample metadata and register samples with IGSN as a globally unique identifier to make them Findable, Accessible, Interoperable, and Reusable (FAIR). SESAR\u2019s services include providing access to the sample metadata catalog via the SESAR Catalog Search tool, maintaining sample metadata profiles, and distributing IGSN.\n \nSESAR is a project funded by the US National Science Foundation.", "official": true, "providerCode": "Not Applicable", "sampleId": "AU124", "resourceHomeUrl": "http://www.geosamples.org/", "institution": {"id": 2593, "name": "IGSN Implementation Organization e.V., Potsdam, Germany", "homeUrl": "https://www.igsn.org/", "description": "The IGSN e.V. is the implementation organization of the IGSN. It is an international, non-profit organization which operates a central registration system for IGSN. IGSN are globally unique and persistent identifiers for material samples. IGSN resolve to persistent landing pages, which are managed by the federated IGSN Agents.", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AU124", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2605, "prefix": "signor", "mirId": "MIR:00000808", "name": "SIGNOR", "pattern": "^SIGNOR\\-[A-Z]+\\d+$", "description": "SIGNOR, the SIGnaling Network Open Resource, organizes and stores in a structured format signaling information published in the scientific literature.", "created": "2021-04-12T18:19:18.033+0000", "modified": "2021-04-12T18:19:18.033+0000", "resources": [{"id": 2606, "mirId": "MIR:00000807", "urlPattern": "https://signor.uniroma2.it/relation_result.php?id={$id}", "name": "SIGNOR", "description": "SIGNOR, the SIGnaling Network Open Resource, organizes and stores in a structured format signaling information published in the scientific literature.", "official": true, "providerCode": "signor", "sampleId": "SIGNOR-C2", "resourceHomeUrl": "https://signor.uniroma2.it/", "institution": {"id": 2604, "name": "University of Rome Tor Vergata", "homeUrl": "http://web.uniroma2.it/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/02p77k626' with Wikidata IDs [Q1031803], and ISNI IDs [0000 0001 2300 0941]", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SIGNOR-C2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1644, "prefix": "envo", "mirId": "MIR:00000591", "name": "Environment Ontology", "pattern": "^ENVO:\\d{7,8}$", "description": "The Environment Ontology is a resource and research target for the semantically controlled description of environmental entities. The ontology's initial aim was the representation of the biomes, environmental features, and environmental materials pertinent to genomic and microbiome-related investigations.", "created": "2019-06-11T14:17:57.267+0000", "modified": "2021-04-17T20:07:01.902+0000", "resources": [{"id": 1645, "mirId": "MIR:00100790", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/envo/terms?obo_id=ENVO:{$id}", "name": "The Environment Ontology through OLS", "description": "The Environment Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "09200010", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/envo", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1646, "mirId": "MIR:00100791", "urlPattern": "http://purl.bioontology.org/ontology/ENVO/ENVO:{$id}", "name": "The Environment Ontology through BioPortal", "description": "The Environment Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "09200010", "resourceHomeUrl": "http://purl.bioontology.org/ontology/ENVO/", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "09200010", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 2647, "prefix": "ilx", "mirId": "MIR:00000814", "name": "InterLex", "pattern": "^[0-9]+$", "description": "InterLex is a dynamic lexicon, initially built on the foundation of NeuroLex (PMID: 24009581), of biomedical terms and common data elements designed to help improve the way that biomedical scientists communicate about their data, so that information systems can find data more easily and provide more powerful means of integrating data across distributed resources and datasets. InterLex allows for the association of data fields and data values to common data elements and terminologies enabling the crowdsourcing of data-terminology mappings within and across communities. InterLex provides a stable layer on top of the many other existing terminologies, lexicons, ontologies, and common data element collections and provides a set of inter-lexical and inter-data-lexical mappings. ", "created": "2021-05-22T16:59:04.850+0000", "modified": "2021-05-22T16:59:04.850+0000", "resources": [{"id": 2648, "mirId": "MIR:00000813", "urlPattern": "https://scicrunch.org/scicrunch/interlex/view/ilx_{$id}", "name": "FAIR Data Informatics Laboratory", "description": "The FAIR Data Informatics Lab at UCSD is a leader in developing and providing novel informatics infrastructure and tools for making data FAIR: Findable, Accessible, Interoperable and Reusable. ", "official": true, "providerCode": "ilx", "sampleId": "0101963", "resourceHomeUrl": "https://www.fdilab.org", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0101963", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2650, "prefix": "odc.tbi", "mirId": "MIR:00000816", "name": "Open Data Commons for Traumatic Brain Injury", "pattern": "^[0-9]*$", "description": "The Open Data Commons for Traumatic Brain Injury is a cloud-based community-driven repository to store, share, and publish traumatic brain injury research data.", "created": "2021-05-22T17:51:43.225+0000", "modified": "2021-05-22T17:51:43.225+0000", "resources": [{"id": 2651, "mirId": "MIR:00000815", "urlPattern": "https://odc-tbi.org/data/{$id}", "name": "Open Data Commons for Traumatic Brain Injury", "description": "Open Data Commons for Traumatic Brain Injury hosted on on SciCrunch.org", "official": true, "providerCode": "odc.tbi", "sampleId": "408", "resourceHomeUrl": "https://odc-tbi.org", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "408", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2665, "prefix": "ccdc", "mirId": "MIR:00000818", "name": "CCDC Number", "pattern": "^\\d{6,7}$", "description": "The Cambridge Crystallographic Data Centre (CCDC) develops and maintains the Cambridge Stuctural Database, the world's most comprehensive archive of small-molecule crystal structure data. A CCDC Number is a unique identifier assigned to a dataset deposited with the CCDC.", "created": "2021-05-30T10:05:35.955+0000", "modified": "2021-05-30T10:05:35.955+0000", "resources": [{"id": 2666, "mirId": "MIR:00000817", "urlPattern": "https://www.ccdc.cam.ac.uk/services/structures?pid=ccdc:{$id}&sid=IDORG", "name": "Cambridge Crystallographic Data Centre", "description": "The Cambridge Crystallographic Data Centre (CCDC) is dedicated to the advancement of chemistry and crystallography through the provision of high quality scientific data services and software. It compiles and disseminates the Cambridge Structural Database, a trusted and comprehensive collection of curated small molecule crystal structure data.", "official": true, "providerCode": "ccdc", "sampleId": "1829126", "resourceHomeUrl": "https://www.ccdc.cam.ac.uk/", "institution": {"id": 2664, "name": "Cambridge Crystallographic Data Centre", "homeUrl": "https://www.ccdc.cam.ac.uk/", "description": "The Cambridge Crystallographic Data Centre (CCDC) is dedicated to the advancement of chemistry and crystallography through the provision of high quality scientific data services and software. It compiles and disseminates the Cambridge Structural Database, a trusted and comprehensive collection of curated small molecule crystal structure data.", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1829126", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2668, "prefix": "csd", "mirId": "MIR:00000820", "name": "Cambridge Structural Database", "pattern": "^[A-Z]{6}(\\d{2})?$", "description": "The Cambridge Stuctural Database (CSD) is the world's most comprehensive collection of small-molecule crystal structures. Entries curated into the CSD are identified by a CSD Refcode.", "created": "2021-05-30T10:06:48.264+0000", "modified": "2021-05-30T10:06:48.264+0000", "resources": [{"id": 2669, "mirId": "MIR:00000819", "urlPattern": "https://www.ccdc.cam.ac.uk/services/structures?pid=csd:{$id}&sid=IDORG", "name": "Cambridge Crystallographic Data Centre", "description": "The Cambridge Crystallographic Data Centre (CCDC) is dedicated to the advancement of chemistry and crystallography through the provision of high quality scientific data services and software. It compiles and disseminates the Cambridge Structural Database, a trusted and comprehensive collection of curated small molecule crystal structure data.", "official": true, "providerCode": "csd", "sampleId": "PELNAW", "resourceHomeUrl": "https://www.ccdc.cam.ac.uk/", "institution": {"id": 2664, "name": "Cambridge Crystallographic Data Centre", "homeUrl": "https://www.ccdc.cam.ac.uk/", "description": "The Cambridge Crystallographic Data Centre (CCDC) is dedicated to the advancement of chemistry and crystallography through the provision of high quality scientific data services and software. It compiles and disseminates the Cambridge Structural Database, a trusted and comprehensive collection of curated small molecule crystal structure data.", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PELNAW", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2677, "prefix": "geogeo", "mirId": "MIR:00000824", "name": "Geographical Entity Ontology", "pattern": "^GEO_[0-9]{9}$", "description": "An ontology and inventory of geopolitical entities such as nations and their components (states, provinces, districts, counties) and the actual physical territories over which they have jurisdiction. We thus distinguish and assign different identifiers to the US in \"The US declared war on Germany\" vs. the US in \"The plane entered US airspace\".", "created": "2021-05-30T10:17:36.624+0000", "modified": "2021-05-30T10:17:36.624+0000", "resources": [{"id": 2678, "mirId": "MIR:00000821", "urlPattern": "http://purl.obolibrary.org/obo/{$id}", "name": "University of Florida Biomedical Informatics Program", "description": "The biomedical informatics program at the University of Florida, hosted by both the UF Clinical and Translational Science Institute and the Department of Health Outcomes & Biomedical Informatics", "official": true, "providerCode": "obo", "sampleId": "GEO_000000021", "resourceHomeUrl": "https://github.com/ufbmi", "institution": {"id": 2676, "name": "University of Florida Biomedical Informatics Program", "homeUrl": "https://github.com/ufbmi", "description": "The biomedical informatics program at the University of Florida, hosted by both the UF Clinical and Translational Science Institute and the Department of Health Outcomes & Biomedical Informatics", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GEO_000000021", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 278, "prefix": "rhea", "mirId": "MIR:00000082", "name": "Rhea", "pattern": "^\\d{5}$", "description": " Rhea is an expert-curated knowledgebase of chemical and transport reactions of biological interest. Enzyme-catalyzed and spontaneously occurring reactions are curated from peer-reviewed literature and represented in a computationally tractable manner by using the ChEBI (Chemical Entities of Biological Interest) ontology to describe reaction participants.\n\nRhea covers the reactions described by the IUBMB Enzyme Nomenclature as well as many additional reactions and can be used for enzyme annotation, genome-scale metabolic modeling and omics-related analyses. Rhea is the standard for enzyme and transporter annotation in UniProtKB.", "created": "2019-06-11T14:15:55.126+0000", "modified": "2021-05-30T10:38:10.762+0000", "resources": [{"id": 280, "mirId": "MIR:00100113", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100113/{$id}", "name": "Rhea", "description": "Rhea", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "10040", "resourceHomeUrl": "https://www.rhea-db.org/", "institution": {"id": 279, "name": "European Bioinformatics Institute and Swiss Institute of Bioinformatics", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": true, "deprecationDate": "2021-05-30T10:47:40.110+0000"}, {"id": 2683, "mirId": "MIR:00000827", "urlPattern": "https://www.rhea-db.org/rhea/{$id}", "name": "SIB Swiss Institute of Bioinformatics", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "official": false, "providerCode": "sib", "sampleId": "10040", "resourceHomeUrl": "https://www.rhea-db.org/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "12345", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2702, "prefix": "cellrepo", "mirId": "MIR:00000829", "name": "Cell Version Control Repository", "pattern": "^[0-9]+$", "description": "The Cell Version Control Repository is the single worldwide version control repository for engineered and natural cell lines", "created": "2021-06-24T15:54:23.109+0000", "modified": "2021-06-24T15:54:23.109+0000", "resources": [{"id": 2703, "mirId": "MIR:00000826", "urlPattern": "https://cellrepo.ico2s.org/repositories/{$id}", "name": "CellRepo", "description": "CellRepo is the single worldwide version control repository for engineered and natural cell lines", "official": true, "providerCode": "cellrepo", "sampleId": "82", "resourceHomeUrl": "https://cellrepo.ico2s.org/", "institution": {"id": 2701, "name": "Interdisciplinary Computing and Complex BioSystems (ICOS) Research Group, Newcastle University, Newcastle upon Tyne, UK", "homeUrl": "https://ico2s.org/", "description": "The mission of the ICOS group is to carry out ground breaking research at the interface of computing science and complex biological systems. We seek to create the next generation of algorithms that provide innovative solutions to problems arising in natural complex systems (e.g. in biology, chemistry, physics) as well as synthetic ones (e.g. in biological engineering, health care, software engineering) and derive new knowledge from them. To accomplish its mission, the group leverages its interdisciplinary expertise in Machine Intelligence, Complex Systems and Computational Biology and pursues collaborative activities with relevant stakeholders.", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "82", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2709, "prefix": "mlc", "mirId": "MIR:00000828", "name": "MLCommons Association", "pattern": "^[0-9a-zA-Z\\.\\-\\_]+$", "description": "MLCommons Association artifacts, including benchmark results, datasets, and saved models.", "created": "2021-06-24T16:02:06.844+0000", "modified": "2021-06-24T16:02:06.844+0000", "resources": [{"id": 2710, "mirId": "MIR:00000823", "urlPattern": "https://www.mlcommons.org/mlc-id/{$id}", "name": "MLCommons Association", "description": "The MLCommons Association is a non-profit founded to \"make ML better for everyone\" through benchmarks, public datasets, and best practices. The MLCommons board has representatives from Alibaba, Google, GraphCore, Facebook, Intel, Qualcomm, Myrtle.ai, NVIDIA, and a Harvard faculty member, and the organization has over 50 members consisting of companies and academics.", "official": true, "providerCode": "mlc", "sampleId": "0.7-123", "resourceHomeUrl": "https://mlcommons.org/en/", "institution": {"id": 2708, "name": "MLCommons Association", "homeUrl": "https://mlcommons.org/", "description": "The MLCommons Association is a non-profit founded to \"make ML better for everyone\" through benchmarks, public datasets, and best practices. The MLCommons board has representatives from Alibaba, Google, GraphCore, Facebook, Intel, Qualcomm, Myrtle.ai, NVIDIA, and a Harvard faculty member, and the organization has over 50 members consisting of companies and academics.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0.7-123", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2720, "prefix": "corrdb", "mirId": "MIR:00000831", "name": "CorrDB", "pattern": "^[0-9]+$", "description": "A genetic correlation is the proportion of shared variance between two traits that is due to genetic causes; a phenotypic correlation is the degree to which two traits co-vary among individuals in a population. In the genomics era, while gene expression, genetic association, and network analysis provide unprecedented means to decode the genetic basis of complex phenotypes, it is important to recognize the possible effects genetic progress in one trait can have on other traits. This database is designed to collect all published livestock genetic/phenotypic trait correlation data, aimed at facilitating genetic network analysis or systems biology studies.", "created": "2021-07-06T14:35:18.469+0000", "modified": "2021-07-06T14:35:18.469+0000", "resources": [{"id": 2721, "mirId": "MIR:00000825", "urlPattern": "https://www.animalgenome.org/CorrDB/q/?id=CorrID:{$id}", "name": "USA National Animal Genome Research Program", "description": "National Animal Genome Research Program, NAGRP Bioinformatics Coordination Project, supported by funding from the USDA-NRI (former CSREES), USA", "official": true, "providerCode": "CorrDB", "sampleId": "37232", "resourceHomeUrl": "https://www.animalgenome.org", "institution": {"id": 2558, "name": "Iowa State University", "homeUrl": "https://www.iastate.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04rswrd78' with Wikidata IDs [Q1136919], and ISNI IDs [0000 0004 1936 7312]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "37232", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2714, "prefix": "glyconavi", "mirId": "MIR:00000830", "name": "GlycoNAVI", "pattern": "^GN_[A-Za-z]*[_]*[A-Za-z0-9-:_]+$", "description": "GlycoNAVI is a website for carbohydrate research. It consists of the \"GlycoNAVI Database\" that provides information such as existence ratios and names of glycans, 3D structures of glycans and complex glycoconjugates, and the \"GlycoNAVI tools\" such as editing of 2D structures of glycans, glycan structure viewers, and conversion tools.", "created": "2021-06-28T19:11:39.342+0000", "modified": "2022-11-08T15:20:10.791+0000", "resources": [{"id": 2715, "mirId": "MIR:00000822", "urlPattern": "https://glyconavi.org/hub/?id={$id}", "name": "The Noguchi Institute", "description": "The Noguchi Institute is a research institute licensed as a public interest incorporated foundation. It conducts research and education related to glycans.", "official": true, "providerCode": "glyconavi", "sampleId": "GN_G03681DA", "resourceHomeUrl": "https://www.noguchi.or.jp/", "institution": {"id": 2713, "name": "The Noguchi Institute", "homeUrl": "https://www.noguchi.or.jp/", "description": "The Noguchi Institute is a research institute licensed as a public interest incorporated foundation. It conducts research and education related to glycans.", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GN_GlyTouCan_G03681DA", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2746, "prefix": "4dn", "mirId": "MIR:00000833", "name": "4D Nucleome", "pattern": "^4DN[A-Z]{2}[A-Z0-9]{7}$", "description": "The 4D Nucleome Data Portal hosts data generated by the 4DN Network and other reference nucleomics data sets. The 4D Nucleome Network aims to understand the principles underlying nuclear organization in space and time, the role nuclear organization plays in gene expression and cellular function, and how changes in nuclear organization affect normal development as well as various diseases.", "created": "2021-08-05T19:25:24.806+0000", "modified": "2021-08-05T19:25:24.806+0000", "resources": [{"id": 2747, "mirId": "MIR:00000832", "urlPattern": "https://data.4dnucleome.org/{$id}", "name": "4DN-DCIC (4D Nucleome Data Coordination and Integration Center)", "description": "4D Nucleome Data Coordination and Integration Center at the Department of Biomedical Informatics, Harvard Medical School", "official": true, "providerCode": "4dn", "sampleId": "4DNES265ETYQ", "resourceHomeUrl": "https://data.4dnucleome.org/", "institution": {"id": 2745, "name": "Harvard Medical School", "homeUrl": "https://hms.harvard.edu/", "description": "Since the School was established in 1782, faculty members have improved human health by innovating in their roles as physicians, mentors and scholars. They\u2019ve piloted educational models, developed new curricula to address emerging needs in health care, and produced thousands of leaders and compassionate caregivers who are shaping the fields of science and medicine throughout the world with their expertise and passion.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4DNES265ETYQ", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2751, "prefix": "civic.aid", "mirId": "MIR:00000835", "name": "CIViC Assertion", "pattern": "^[0-9]+$", "description": "A CIViC assertion classifies the clinical significance of a variant-disease relationship under recognized guidelines. The CIViC Assertion (AID) summarizes a collection of Evidence Items (EIDs) that covers predictive/therapeutic, diagnostic, prognostic or predisposing clinical information for a variant in a specific cancer context. CIViC currently has two main types of Assertions: those based on variants of primarily somatic origin (predictive/therapeutic, prognostic, and diagnostic) and those based on variants of primarily germline origin (predisposing). When the number and quality of Predictive, Prognostic, Diagnostic or Predisposing Evidence Items (EIDs) in CIViC sufficiently cover what is known for a particular variant and cancer type, then a corresponding assertion be created in CIViC.", "created": "2021-08-05T19:47:08.870+0000", "modified": "2021-08-05T19:47:08.870+0000", "resources": [{"id": 2752, "mirId": "MIR:00000834", "urlPattern": "https://civicdb.org/links/assertions/{$id}", "name": "Clinical Interpretation of Variants in Cancer (CIViC)", "description": "CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer.", "official": true, "providerCode": "civicdb", "sampleId": "3", "resourceHomeUrl": "https://civicdb.org/", "institution": {"id": 2750, "name": "Washington University in St. Louis", "homeUrl": "https://wustl.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01yc7t268' with Wikidata IDs [Q777403], and ISNI IDs [0000 0001 2355 7002]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2756, "prefix": "nmdc", "mirId": "MIR:00000837", "name": "National Microbiome Data Collaborative", "pattern": "^[A-Za-z0-9._~\\-\\:]+$", "description": "The National Microbiome Data Collaborative (NMDC) is an initiative to empower the research community to harness microbiome data exploration and discovery through a collaborative integrative data science ecosystem.", "created": "2021-08-05T19:51:36.087+0000", "modified": "2021-08-05T19:51:36.087+0000", "resources": [{"id": 2757, "mirId": "MIR:00000836", "urlPattern": "https://drs.microbiomedata.org/objects/{$id}", "name": "Lawrence Berkeley National Laboratory", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/02jbv0t02' with Wikidata IDs [Q1133630,Q4686229], and ISNI IDs [0000 0001 2231 4551]", "official": true, "providerCode": "nmdc", "sampleId": "6m4e-1vbv-03", "resourceHomeUrl": "https://ror.org/02jbv0t02", "institution": {"id": 2755, "name": "Lawrence Berkeley National Laboratory", "homeUrl": "https://ror.org/02jbv0t02", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/02jbv0t02' with Wikidata IDs [Q1133630,Q4686229], and ISNI IDs [0000 0001 2231 4551]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "6m4e-1vbv-03", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2784, "prefix": "civic.eid", "mirId": "MIR:00000839", "name": "CIViC Evidence", "pattern": "^[0-9]+$", "description": "Evidence Items are the central building block of the Clinical Interpretation of Variants in Cancer (CIViC) knowledgebase. The clinical Evidence Item is a piece of information that has been manually curated from trustable medical literature about a Variant or genomic \u2018event\u2019 that has implications in cancer Predisposition, Diagnosis (aka molecular classification), Prognosis, Predictive response to therapy, Oncogenicity or protein Function. For example, an Evidence Item might describe a line of evidence supporting the notion that tumors with a somatic BRAF V600 mutation generally respond well to the drug dabrafenib. A Variant may be a single nucleotide substitution, a small insertion or deletion, an RNA gene fusion, a chromosomal rearrangement, an RNA expression pattern (e.g. over-expression), etc. Each clinical Evidence statement corresponds to a single citable Source (a publication or conference abstract).", "created": "2021-08-08T09:28:56.816+0000", "modified": "2021-08-08T09:28:56.816+0000", "resources": [{"id": 2785, "mirId": "MIR:00000838", "urlPattern": "https://civicdb.org/links/evidence/{$id}", "name": "Clinical Interpretation of Variants in Cancer (CIViC)", "description": "CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer.", "official": true, "providerCode": "civicdb", "sampleId": "1199", "resourceHomeUrl": "https://civicdb.org/", "institution": {"id": 2750, "name": "Washington University in St. Louis", "homeUrl": "https://wustl.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01yc7t268' with Wikidata IDs [Q777403], and ISNI IDs [0000 0001 2355 7002]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1199", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2789, "prefix": "sedml.format", "mirId": "MIR:00000841", "name": "SED-ML data format", "pattern": "^[a-z]+(\\..*?)?$", "description": "Data format that can be used in conjunction with the Simulation Experimental Description Markup Language (SED-ML).", "created": "2021-08-08T09:33:59.109+0000", "modified": "2021-08-08T09:33:59.109+0000", "resources": [{"id": 2790, "mirId": "MIR:00000840", "urlPattern": "https://sed-ml.org/urns.html#format:{$id}", "name": "SED-ML Editors", "description": "Editorial board responsible for defining the Simulation Experimental Description Markup Language (SED-ML).", "official": true, "providerCode": "sedml", "sampleId": "csv", "resourceHomeUrl": "http://sed-ml.org/", "institution": {"id": 2788, "name": "SED-ML Editors", "homeUrl": "http://sed-ml.org/", "description": "Editorial board responsible for defining the Simulation Experimental Description Markup Language (SED-ML).", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "csv", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2792, "prefix": "sedml.language", "mirId": "MIR:00000843", "name": "SED-ML model format", "pattern": "^[a-z]+(\\..*?)?$", "description": "Model format that can be used in conjunction with the Simulation Experimental Description Markup Language (SED-ML).", "created": "2021-08-08T09:34:23.184+0000", "modified": "2021-08-08T09:34:23.184+0000", "resources": [{"id": 2793, "mirId": "MIR:00000842", "urlPattern": "https://sed-ml.org/urns.html#language:{$id}", "name": "SED-ML Editors", "description": "Editorial board responsible for defining the Simulation Experimental Description Markup Language (SED-ML).", "official": true, "providerCode": "sedml", "sampleId": "sbml.level-3.version-2", "resourceHomeUrl": "http://sed-ml.org/", "institution": {"id": 2788, "name": "SED-ML Editors", "homeUrl": "http://sed-ml.org/", "description": "Editorial board responsible for defining the Simulation Experimental Description Markup Language (SED-ML).", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "sbml.level-3.version-2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2796, "prefix": "pmr", "mirId": "MIR:00000845", "name": "Physiome Model Repository", "pattern": "^[a-z0-9]{32,32}$", "description": "Resource for the community to store, retrieve, search, reference, and reuse CellML models.", "created": "2021-08-08T09:39:33.533+0000", "modified": "2021-08-08T09:39:33.533+0000", "resources": [{"id": 2797, "mirId": "MIR:00000844", "urlPattern": "https://models.physiomeproject.org/exposure/{$id}", "name": "University of Auckland", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03b94tp07' with Wikidata IDs [Q492467], and ISNI IDs [0000 0004 0372 3343]", "official": true, "providerCode": "abi", "sampleId": "ebf69ca24298b28b2361e7d43eb52d6c", "resourceHomeUrl": "https://www.auckland.ac.nz/en.html", "institution": {"id": 2795, "name": "University of Auckland", "homeUrl": "https://www.auckland.ac.nz/en.html", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03b94tp07' with Wikidata IDs [Q492467], and ISNI IDs [0000 0004 0372 3343]", "rorId": null, "location": {"countryCode": "NZ", "countryName": "New Zealand"}}, "location": {"countryCode": "NZ", "countryName": "New Zealand"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ebf69ca24298b28b2361e7d43eb52d6c", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2800, "prefix": "funderregistry", "mirId": "MIR:00000847", "name": "FunderRegistry", "pattern": "^\\d{9,9}$", "description": "The Funder Registry is an open registry of persistent identifiers for grant-giving organizations around the world.", "created": "2021-08-08T09:41:19.080+0000", "modified": "2021-08-08T09:41:19.080+0000", "resources": [{"id": 2801, "mirId": "MIR:00000846", "urlPattern": "http://data.crossref.org/fundingdata/funder/10.13039/{$id}", "name": "Crossref", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/02twcfp32' with Wikidata IDs [Q5188229], and ISNI IDs [0000 0004 0506 2673]", "official": true, "providerCode": "crossref", "sampleId": "100000001", "resourceHomeUrl": "https://www.crossref.org/", "institution": {"id": 2799, "name": "Crossref", "homeUrl": "https://www.crossref.org/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/02twcfp32' with Wikidata IDs [Q5188229], and ISNI IDs [0000 0004 0506 2673]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "100000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2804, "prefix": "linguist", "mirId": "MIR:00000849", "name": "Linguist", "pattern": "^[a-zA-Z0-9 +#'*]+$", "description": "Registry of programming languages for the Linguist program for detecting and highlighting programming languages.", "created": "2021-08-08T09:42:52.720+0000", "modified": "2021-08-08T09:42:52.720+0000", "resources": [{"id": 2805, "mirId": "MIR:00000848", "urlPattern": "https://raw.githubusercontent.com/github/linguist/master/lib/linguist/languages.yml#{$id}", "name": "GitHub, Inc.", "description": "GitHub, Inc. is a provider of Internet hosting for software development and version control using Git.", "official": true, "providerCode": "github", "sampleId": "Python", "resourceHomeUrl": "https://github.com/", "institution": {"id": 2803, "name": "GitHub, Inc.", "homeUrl": "https://github.com/", "description": "GitHub, Inc. is a provider of Internet hosting for software development and version control using Git.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Python", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2807, "prefix": "sio", "mirId": "MIR:00000851", "name": "Semanticscience Integrated Ontology", "pattern": "^SIO_\\d{6,6}$", "description": "The semanticscience integrated ontology (SIO) provides a simple, integrated upper level ontology (types, relations) for consistent knowledge representation across physical, processual and informational entities.", "created": "2021-08-08T09:47:01.408+0000", "modified": "2021-08-08T09:47:01.408+0000", "resources": [{"id": 2808, "mirId": "MIR:00000850", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/sio/terms?short_form={$id}", "name": "European Bioinformatics Institute", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "official": true, "providerCode": "ols", "sampleId": "SIO_000276", "resourceHomeUrl": "https://www.ebi.ac.uk", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SIO_000276", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2810, "prefix": "github", "mirId": "MIR:00000853", "name": "github", "pattern": "^[a-zA-Z0-9-_]+/[a-zA-Z0-9-_]+$", "description": "GitHub is an online host of Git source code repositories.", "created": "2021-08-08T09:49:13.100+0000", "modified": "2021-08-08T09:49:13.100+0000", "resources": [{"id": 2811, "mirId": "MIR:00000852", "urlPattern": "https://github.com/{$id}", "name": "GitHub, Inc.", "description": "GitHub, Inc. is a provider of Internet hosting for software development and version control using Git.", "official": true, "providerCode": "github", "sampleId": "identifiers-org/registry", "resourceHomeUrl": "https://github.com/", "institution": {"id": 2803, "name": "GitHub, Inc.", "homeUrl": "https://github.com/", "description": "GitHub, Inc. is a provider of Internet hosting for software development and version control using Git.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "identifiers-org/registry", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2813, "prefix": "datanator.reaction", "mirId": "MIR:00000855", "name": "Datanator Reaction", "pattern": "^.*?--%3E.*?$", "description": "\tDatanator is an integrated database of genomic and biochemical data designed to help investigators find data about specific molecules and reactions in specific organisms and specific environments for meta-analyses and mechanistic models. Datanator currently includes metabolite concentrations, RNA modifications and half-lives, protein abundances and modifications, and reaction kinetics integrated from several databases and numerous publications. The Datanator website and REST API provide tools for extracting clouds of data about specific molecules and reactions in specific organisms and specific environments, as well as data about similar molecules and reactions in taxonomically similar organisms.", "created": "2021-08-08T09:56:43.759+0000", "modified": "2021-08-08T13:31:35.848+0000", "resources": [{"id": 2814, "mirId": "MIR:00000854", "urlPattern": "https://datanator.info/reaction/{$id}", "name": "Icahn School of Medicine at Mount Sinai", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04a9tmd77' with Wikidata IDs [Q1950740], and ISNI IDs [0000 0001 0670 2351]", "official": true, "providerCode": "datanator.reaction", "sampleId": "XLYOFNOQVPJJNP-UHFFFAOYSA-N,NBSCHQHZLSJFNQ-GASJEMHNSA-N--%3ENBIIXXVUZAFLBC-UHFFFAOYSA-N,WQZGKKKJIJFFOK-GASJEMHNSA-N", "resourceHomeUrl": "https://icahn.mssm.edu/", "institution": {"id": 2247, "name": "Icahn School of Medicine at Mount Sinai", "homeUrl": "https://icahn.mssm.edu/", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "XLYOFNOQVPJJNP-UHFFFAOYSA-N,NBSCHQHZLSJFNQ-GASJEMHNSA-N--%3ENBIIXXVUZAFLBC-UHFFFAOYSA-N,WQZGKKKJIJFFOK-GASJEMHNSA-N", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2844, "prefix": "identifiers.namespace", "mirId": "MIR:00000859", "name": "Identifiers.org namespace", "pattern": "^[a-z_\\.]+$", "description": "Identifiers.org is an established resolving system that enables the referencing of data for the scientific community, with a current focus on the Life Sciences domain.", "created": "2021-09-05T17:52:59.264+0000", "modified": "2021-09-05T17:52:59.264+0000", "resources": [{"id": 2845, "mirId": "MIR:00000858", "urlPattern": "https://registry.identifiers.org/registry/{$id}", "name": "European Bioinformatics Institute", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "official": true, "providerCode": "ebi", "sampleId": "pubmed", "resourceHomeUrl": "https://www.ebi.ac.uk", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "pubmed", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2821, "prefix": "dg.4dfc", "mirId": "MIR:00000857", "name": "NCI Data Commons Framework Services", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "created": "2021-08-09T15:20:17.184+0000", "modified": "2021-08-09T15:20:17.184+0000", "resources": [{"id": 2822, "mirId": "MIR:00000856", "urlPattern": "https://nci-crdc.datacommons.io/ga4gh/drs/v1/objects/{$id}", "name": "NCI Data Commons Framework Services", "description": "DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "official": true, "providerCode": "dg.4dfc", "sampleId": "81944ba1-81d0-436e-8552-33d77a27834b", "resourceHomeUrl": "https://nci-crdc.datacommons.io/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "81944ba1-81d0-436e-8552-33d77a27834b", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2848, "prefix": "re3data", "mirId": "MIR:00000861", "name": "re3data", "pattern": "^r3d\\d{9,9}$", "description": "Re3data is a global registry of research data repositories that covers research data repositories from different academic disciplines.", "created": "2021-09-05T17:53:47.458+0000", "modified": "2021-09-05T17:53:47.458+0000", "resources": [{"id": 2849, "mirId": "MIR:00000860", "urlPattern": "https://www.re3data.org/repository/{$id}", "name": "DataCite", "description": "DataCite is a leading global non-profit organisation that provides persistent identifiers (DOIs) for research data and other research outputs.", "official": true, "providerCode": "datacite", "sampleId": "r3d100010772", "resourceHomeUrl": "https://datacite.org", "institution": {"id": 2847, "name": "DataCite", "homeUrl": "https://datacite.org", "description": "DataCite is a leading global non-profit organisation that provides persistent identifiers (DOIs) for research data and other research outputs.", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "r3d100010772", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2852, "prefix": "pypi", "mirId": "MIR:00000863", "name": "PyPI", "pattern": "^[a-zA-Z_][a-zA-Z0-9\\-_]+$", "description": "The Python Package Index (PyPI) is a repository for Python packages.", "created": "2021-09-05T17:54:24.640+0000", "modified": "2021-09-05T17:54:24.640+0000", "resources": [{"id": 2853, "mirId": "MIR:00000862", "urlPattern": "https://pypi.org/project/{$id}/", "name": "Python Software Foundation", "description": "The Python Software Foundation (PSF) is a 501(c)(3) non-profit corporation that holds the intellectual property rights behind the Python programming language.", "official": true, "providerCode": "psf", "sampleId": "numpy", "resourceHomeUrl": "https://www.python.org/psf/", "institution": {"id": 2851, "name": "Python Software Foundation", "homeUrl": "https://www.python.org/psf/", "description": "The Python Software Foundation (PSF) is a 501(c)(3) non-profit corporation that holds the intellectual property rights behind the Python programming language.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "numpy", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2857, "prefix": "iedb", "mirId": "MIR:00000865", "name": "Immune Epitope Database (IEDB)", "pattern": "^[0-9]+$", "description": "The Immune Epitope Database (IEDB) is a freely available resource funded by NIAID. It catalogs experimental data on antibody and T cell epitopes studied in humans, non-human primates, and other animal species in the context of infectious disease, allergy, autoimmunity and transplantation. The IEDB also hosts tools to assist in the prediction and analysis of epitopes.", "created": "2021-09-05T17:58:19.858+0000", "modified": "2021-09-05T17:58:19.858+0000", "resources": [{"id": 2858, "mirId": "MIR:00000864", "urlPattern": "https://www.iedb.org/reference/{$id}", "name": "La Jolla Institute for Immunology", "description": "La Jolla Institute for Immunology is a non-profit\nresearch organization located in La Jolla, California. The Institute\nresearches immunology and immune system diseases. The institute was\nfounded in 1988. La Jolla Institute for Immunology is a collaborative\nresearch organization that has forged many partnerships within the\nresearch community in San Diego, across the United States, and abroad.", "official": true, "providerCode": "lji", "sampleId": "1038233", "resourceHomeUrl": "https://www.lji.org/", "institution": {"id": 2856, "name": "La Jolla Institute for Immunology", "homeUrl": "https://www.lji.org/", "description": "La Jolla Institute for Immunology is a non-profit\nresearch organization located in La Jolla, California. The Institute\nresearches immunology and immune system diseases. The institute was\nfounded in 1988. La Jolla Institute for Immunology is a collaborative\nresearch organization that has forged many partnerships within the\nresearch community in San Diego, across the United States, and abroad.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1038233", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2862, "prefix": "lgai.cede", "mirId": "MIR:00000867", "name": "LG Chemical Entity Detection Dataset (LGCEDe)", "pattern": "^LGCEDe-S-\\d{9}$", "description": "LG Chemical Entity Detection Dataset (LGCEDe) is only available open-dataset with molecular instance level annotations (i.e. atom-bond level position annotations within an image) for molecular structure images. This dataset was designed to encourage research on detection-based pipelines for Optical Chemical Structure Recognition (OCSR).", "created": "2021-09-05T18:01:14.906+0000", "modified": "2021-09-05T18:01:14.906+0000", "resources": [{"id": 2863, "mirId": "MIR:00000866", "urlPattern": "https://s3.us-east-2.amazonaws.com/lg.cede/{$id}", "name": "LG AI Research", "description": "LG AI Research is a subsidiary of the Korean Corporation LG. Mainly focuses on research related to Artificial Intelligence, Big data and data-driven applications to real-world problems.", "official": true, "providerCode": "lgai.cede", "sampleId": "LGCEDe-S-000002244", "resourceHomeUrl": "https://www.lgresearch.ai", "institution": {"id": 2861, "name": "LG AI Research", "homeUrl": "https://www.lgresearch.ai", "description": "LG AI Research is a subsidiary of the Korean Corporation LG. Mainly focuses on research related to Artificial Intelligence, Big data and data-driven applications to real-world problems.", "rorId": null, "location": {"countryCode": "KR", "countryName": "Korea, Republic of"}}, "location": {"countryCode": "KR", "countryName": "Korea, Republic of"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LGCEDe-S-000002244", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2881, "prefix": "dg.4503", "mirId": "MIR:00000869", "name": "BioData Catalyst", "pattern": "[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "Full implementation of the DRS 1.1 standard with support for persistent identifiers. Open source DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "created": "2021-09-29T19:10:32.057+0000", "modified": "2021-09-29T19:10:32.057+0000", "resources": [{"id": 2882, "mirId": "MIR:00000868", "urlPattern": "https://gen3.biodatacatalyst.nhlbi.nih.gov/ga4gh/drs/v1/objects/{$id}", "name": "BioData Catalyst", "description": "Full implementation of the DRS 1.1 standard with support for persistent identifiers. Open source DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "official": true, "providerCode": "dg.4503", "sampleId": "0000ffeb-36e0-4a29-b21d-84423bda979d", "resourceHomeUrl": "https://gen3.biodatacatalyst.nhlbi.nih.gov", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000ffeb-36e0-4a29-b21d-84423bda979d", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2884, "prefix": "dg.anv0", "mirId": "MIR:00000871", "name": "Anvil", "pattern": "[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}", "description": "DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "created": "2021-09-29T19:11:14.294+0000", "modified": "2021-09-29T19:11:14.294+0000", "resources": [{"id": 2885, "mirId": "MIR:00000870", "urlPattern": "https://gen3.theanvil.io/ga4gh/drs/v1/objects/{$id}", "name": "Anvil", "description": "DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "official": true, "providerCode": "dg.anv0", "sampleId": "00077f1c-c45a-47ba-8e6c-1bf6b6b43fce", "resourceHomeUrl": "https://gen3.theanvil.io", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00077f1c-c45a-47ba-8e6c-1bf6b6b43fce", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2892, "prefix": "dg.6vts", "mirId": "MIR:00000876", "name": "JCOIN", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "Full implementation of the DRS 1.1 standard with support for persistent identifiers. Open source DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "created": "2021-09-29T19:13:19.448+0000", "modified": "2021-09-29T19:13:19.448+0000", "resources": [{"id": 2893, "mirId": "MIR:00000875", "urlPattern": "https://jcoin.datacommons.io/ga4gh/drs/v1/objects/{$id}", "name": "JCOIN", "description": "Full implementation of the DRS 1.1 standard with support for persistent identifiers. Open source DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "official": true, "providerCode": "dg.6vts", "sampleId": "2afacf00-9a1d-4d80-8c32-69d3923d3913", "resourceHomeUrl": "https://jcoin.datacommons.io", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2afacf00-9a1d-4d80-8c32-69d3923d3913", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2896, "prefix": "uniref", "mirId": "MIR:00000878", "name": "UniRef", "pattern": "^UniRef(100|90|50)_([OPQ][0-9][A-Z0-9]{3}[0-9]|[A-NR-Z][0-9]([A-Z][A-Z0-9]{2}[0-9]){1,2}|UPI[A-F0-9]{10})$", "description": "The UniProt Reference Clusters (UniRef) provide clustered sets of sequences from the UniProt Knowledgebase (including isoforms) and selected UniParc records in order to obtain complete coverage of the sequence space at several resolutions while hiding redundant sequences (but not their descriptions) from view.", "created": "2021-09-29T19:13:56.614+0000", "modified": "2021-09-29T19:13:56.614+0000", "resources": [{"id": 2897, "mirId": "MIR:00000877", "urlPattern": "https://www.uniprot.org/uniref/{$id}", "name": "UniProt Consortium", "description": "UniProt is a collaboration between the European Bioinformatics Institute (EMBL-EBI), the SIB Swiss Institute of Bioinformatics and the Protein Information Resource (PIR)", "official": true, "providerCode": "uniref", "sampleId": "UniRef90_P00750", "resourceHomeUrl": "https://www.uniprot.org/", "institution": {"id": 24, "name": "UniProt Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "UniRef90_P00750", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2903, "prefix": "biosimulations", "mirId": "MIR:00000880", "name": "biosimulations", "pattern": "^[a-zA-Z0-9_-]{3,}$", "description": "BioSimulations is an open repository of simulation projects, including simulation experiments, their results, and data visualizations of their results. BioSimulations supports a broad range of model languages, modeling frameworks, simulation algorithms, and simulation software tools.", "created": "2021-10-11T12:50:59.916+0000", "modified": "2021-10-11T12:50:59.916+0000", "resources": [{"id": 2904, "mirId": "MIR:00000879", "urlPattern": "https://biosimulations.org/projects/{$id}", "name": "Icahn School of Medicine at Mount Sinai", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04a9tmd77' with Wikidata IDs [Q1950740], and ISNI IDs [0000 0001 0670 2351]", "official": true, "providerCode": "icahn", "sampleId": "Yeast-cell-cycle-Irons-J-Theor-Biol-2009", "resourceHomeUrl": "https://icahn.mssm.edu/", "institution": {"id": 2247, "name": "Icahn School of Medicine at Mount Sinai", "homeUrl": "https://icahn.mssm.edu/", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Yeast-cell-cycle-Irons-J-Theor-Biol-2009", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2929, "prefix": "assembly", "mirId": "MIR:00000884", "name": "Assembly", "pattern": "^[a-zA-Z0-9_\\.]+$", "description": "A database providing information on the structure of assembled genomes, assembly names and other meta-data, statistical reports, and links to genomic sequence data.", "created": "2021-10-17T10:22:37.356+0000", "modified": "2021-10-17T10:22:37.356+0000", "resources": [{"id": 2930, "mirId": "MIR:00000883", "urlPattern": "https://www.ncbi.nlm.nih.gov/assembly/{$id}", "name": "National Center for Biotechnology Information", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "official": true, "providerCode": "ncbi", "sampleId": "GCF_000005845.2", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GCF_000005845.2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2926, "prefix": "nucleotide", "mirId": "MIR:00000882", "name": "Nucleotide", "pattern": "^[a-zA-Z0-9_\\.]+$", "description": "The Nucleotide database is a collection of sequences from several sources, including GenBank, RefSeq, TPA and PDB. Genome, gene and transcript sequence data provide the foundation for biomedical research and discovery.", "created": "2021-10-17T10:21:25.826+0000", "modified": "2021-10-17T10:24:40.143+0000", "resources": [{"id": 2927, "mirId": "MIR:00000881", "urlPattern": "https://www.ncbi.nlm.nih.gov/nuccore/{$id}", "name": "National Center for Biotechnology Information", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "official": true, "providerCode": "ncbi", "sampleId": "880798137", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "880798137", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2168, "prefix": "dandi", "mirId": "MIR:00000786", "name": "DANDI: Distributed Archives for Neurophysiology Data Integration", "pattern": "^\\d{6}(\\/\\d+\\.\\d+\\.\\d+)?$", "description": "DANDI works with BICCN and other BRAIN Initiative awardees to curate data using community data standards such as NWB and BIDS, and to make data and software for cellular neurophysiology FAIR (Findable, Accessible, Interoperable, and Reusable).\nDANDI references electrical and optical cellular neurophysiology recordings and associated MRI and/or optical imaging data.\nThese data will help scientists uncover and understand cellular level mechanisms of brain function. Scientists will study the formation of neural networks, how cells and networks enable functions such as learning and memory, and how these functions are disrupted in neurological disorders.", "created": "2020-03-24T05:11:19.658+0000", "modified": "2021-10-18T12:32:14.264+0000", "resources": [{"id": 2169, "mirId": "MIR:00000750", "urlPattern": "https://dandiarchive.org/dandiset/{$id}", "name": "DANDI: Distributed Archives for Neurophysiology Data Integration", "description": "DANDI is a Web platform for scientists to share, collaborate, and process data from cellular neurophysiology experiments. DANDI works with BICCN and other BRAIN Initiative awardees to curate data using community data standards such as NWB and BIDS, and to make data and software for cellular neurophysiology FAIR (Findable, Accessible, Interoperable, and Reusable). DANDI will store electrical and optical cellular neurophysiology recordings and associated MRI and/or optical imaging data. DANDI will provide: 1) A cloud platform for neurophysiology data storage for the purposes of collaboration and dissemination of data; 2) Easy to use tools for neurophysiology data submission, visualization, and access in the archive; and 3) Standardized applications for data ingestion, visualization and processing, which facilitate adoption of NWB and other standards. These data will help scientists uncover and understand cellular level mechanisms of brain function. Scientists will study the formation of neural networks, how cells and networks enable functions such as learning and memory, and how these functions are disrupted in neurological disorders.", "official": true, "providerCode": "dandi", "sampleId": "000017", "resourceHomeUrl": "https://dandiarchive.org/", "institution": {"id": 2167, "name": "Massachusetts Institute of Technology", "homeUrl": "http://web.mit.edu/", "description": "Founded to accelerate the nation\u2019s industrial revolution, MIT is profoundly American. With ingenuity and drive, our graduates have invented fundamental technologies, launched new industries, and created millions of American jobs. At the same time, and without the slightest sense of contradiction, MIT is profoundly global(opens in new window). Our community gains tremendous strength as a magnet for talent from around the world. Through teaching, research, and innovation, MIT\u2019s exceptional community pursues its mission of service to the nation and the world.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000017", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2969, "prefix": "dg.f82a1a", "mirId": "MIR:00000887", "name": "Kids First", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "Full implementation of the DRS 1.1 standard with support for persistent identifiers. Open source DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "created": "2021-11-01T17:49:13.981+0000", "modified": "2021-11-01T17:49:13.981+0000", "resources": [{"id": 2970, "mirId": "MIR:00000886", "urlPattern": "https://data.kidsfirstdrc.org/ga4gh/drs/v1/objects/{$id}", "name": "Kids First", "description": "Full implementation of the DRS 1.1 standard with support for persistent identifiers. Open source DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "official": true, "providerCode": "dg.f82a1a", "sampleId": "00026f50-858a-446b-8ed9-b0e3ecd7b20e", "resourceHomeUrl": "https://kidsfirstdrc.org", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00026f50-858a-446b-8ed9-b0e3ecd7b20e", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2986, "prefix": "bbtp", "mirId": "MIR:00000889", "name": "Blue Brain Project Topological sampling Knowledge Graph", "pattern": "\\b[0-9a-f]{8}\\b-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-\\b[0-9a-f]{12}\\b", "description": "Input data and analysis results for the paper \"Topology of synaptic connectivity constrains neuronal stimulus representation, predicting two complementary coding strategies (https://www.biorxiv.org/content/10.1101/2020.11.02.363929v2 ).", "created": "2022-01-09T18:52:31.186+0000", "modified": "2022-01-09T18:52:31.186+0000", "resources": [{"id": 2987, "mirId": "MIR:00000888", "urlPattern": "https://bbp.epfl.ch/nexus/web/studios/public/topological-sampling/studios/data:{$id}", "name": "Blue Brain Project, EPFL", "description": "The goal of the Blue Brain Project is to build biologically detailed digital reconstructions and simulations of the mouse brain.", "official": true, "providerCode": "bbp", "sampleId": "f0ba2f3e-aa6f-4264-8d18-8ee65cf6f61a", "resourceHomeUrl": "https://portal.bluebrain.epfl.ch", "institution": {"id": 2985, "name": "Blue Brain Project, EPFL", "homeUrl": "https://portal.bluebrain.epfl.ch", "description": "The goal of the Blue Brain Project is to build biologically detailed digital reconstructions and simulations of the mouse brain.", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "f0ba2f3e-aa6f-4264-8d18-8ee65cf6f61a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2991, "prefix": "fcb", "mirId": "MIR:00000891", "name": "the FAIR Cookbook", "pattern": "^FCB\\d{3}", "description": "Created by researchers and data managers professionals, the FAIR Cookbook is an online resource for the Life Sciences with recipes that help you to make and keep data Findable, Accessible, Interoperable, and Reusable (FAIR).\n\n", "created": "2022-01-09T18:54:14.401+0000", "modified": "2022-01-09T18:54:14.401+0000", "resources": [{"id": 2992, "mirId": "MIR:00000890", "urlPattern": "https://w3id.org/faircookbook/{$id}", "name": "Permanent Identifiers for the Web", "description": "The purpose of this website is to provide a secure, permanent URL re-direction service for Web applications. This service is run by the W3C Permanent Identifier Community Group.\nWeb applications that deal with Linked Data often need to specify and use URLs that are very stable. They utilize services such as this one to ensure that applications using their URLs will always be re-directed to a working website. This website operates like a switchboard, connecting requests for information with the true location of the information on the Web. The switchboard can be reconfigured to point to a new location if the old location stops working.\n\n", "official": true, "providerCode": "fcb", "sampleId": "FCB005", "resourceHomeUrl": "https://w3id.org", "institution": {"id": 2990, "name": "University of Oxford", "homeUrl": "https://www.ox.ac.uk/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/052gg0110' with Wikidata IDs [Q34433,Q5260389,Q56612600,Q7529574,Q6786826,Q1095537], and ISNI IDs [0000 0004 1936 8948]", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "FCB005", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2995, "prefix": "vcell", "mirId": "MIR:00000893", "name": "VCell Published Models", "pattern": "^\\d{5,}$", "description": "Models developed with the Virtual Cell (VCell) software prorgam.", "created": "2022-01-09T18:57:18.476+0000", "modified": "2022-01-09T18:57:18.476+0000", "resources": [{"id": 2996, "mirId": "MIR:00000892", "urlPattern": "https://vcell.org/biomodel-{$id}", "name": "University of Connecticut Health Center", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/02kzs4y22' with Wikidata IDs [Q7895298], and ISNI IDs [0000000419370394]", "official": true, "providerCode": "uchc", "sampleId": "201022999", "resourceHomeUrl": "https://health.uconn.edu/", "institution": {"id": 2994, "name": "University of Connecticut Health Center", "homeUrl": "https://health.uconn.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/02kzs4y22' with Wikidata IDs [Q7895298], and ISNI IDs [0000000419370394]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "201022999", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2999, "prefix": "dg.5b0d", "mirId": "MIR:00000895", "name": "BloodPAC", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The Blood Profiling Atlas in Cancer (BloodPAC) supports the management, analysis and sharing of liquid biopsy data for the oncology research community and aims to accelerate discovery and development of therapies, diagnostic tests, and other technologies for cancer treatment and prevention. The data commons supports cross-project analyses by harmonizing data from different projects through the collaborative development of a data dictionary, providing an API for data queries and download, and providing a cloud-based analysis workspace with rich tools and resources.", "created": "2022-01-09T18:59:10.775+0000", "modified": "2022-01-09T18:59:10.775+0000", "resources": [{"id": 3000, "mirId": "MIR:00000894", "urlPattern": "https://data.bloodpac.org/ga4gh/drs/v1/objects/{$id}", "name": "BloodPAC", "description": "The Blood Profiling Atlas in Cancer (BloodPAC) supports the management, analysis and sharing of liquid biopsy data for the oncology research community and aims to accelerate discovery and development of therapies, diagnostic tests, and other technologies for cancer treatment and prevention. The data commons supports cross-project analyses by harmonizing data from different projects through the collaborative development of a data dictionary, providing an API for data queries and download, and providing a cloud-based analysis workspace with rich tools and resources.", "official": true, "providerCode": "dg.5b0d", "sampleId": "00000d53-99bc-4d3e-8ed7-6dc358baccb7", "resourceHomeUrl": "https://data.bloodpac.org/.", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00000d53-99bc-4d3e-8ed7-6dc358baccb7", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3009, "prefix": "bitbucket", "mirId": "MIR:00000899", "name": "Bitbucket", "pattern": "^[0-9A-Za-z-_\\.]+/[0-9A-Za-z-_\\.]+$", "description": "Bitbucket is a Git-based source code repository hosting service owned by Atlassian.", "created": "2022-01-09T19:35:12.259+0000", "modified": "2022-01-09T19:35:12.259+0000", "resources": [{"id": 3010, "mirId": "MIR:00000896", "urlPattern": "https://bitbucket.org/{$id}", "name": "Atlassian", "description": "Atlassian Corporation Plc is an Australian software company that develops products for software developers, project managers and other software development teams.", "official": true, "providerCode": "atlassian", "sampleId": "andreadega/systems-biology-compiler", "resourceHomeUrl": "https://www.atlassian.com/", "institution": {"id": 3008, "name": "Atlassian", "homeUrl": "https://www.atlassian.com/", "description": "Atlassian Corporation Plc is an Australian software company that develops products for software developers, project managers and other software development teams.", "rorId": null, "location": {"countryCode": "AU", "countryName": "Australia"}}, "location": {"countryCode": "AU", "countryName": "Australia"}, "deprecated": false, "deprecationDate": null}], "sampleId": "andreadega/systems-biology-compiler", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3020, "prefix": "bbkg", "mirId": "MIR:00000903", "name": "Blue Brain Project Knowledge Graph", "pattern": "^[-\\w]+(?:\\/[-\\w]+)(?:\\/\\b[0-9a-f]{8}\\b-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-\\b[0-9a-f]{12}\\b)$", "description": "Blue Brain Project's published data as knowledge graphs and Web Studios.", "created": "2022-01-10T18:54:31.118+0000", "modified": "2022-01-10T18:54:31.118+0000", "resources": [{"id": 3021, "mirId": "MIR:00000902", "urlPattern": "https://bbp.epfl.ch/nexus/web/studios/public/{$id}", "name": "Blue Brain Project, EPFL", "description": "The goal of the Blue Brain Project is to build biologically detailed digital reconstructions and simulations of the mouse brain.", "official": true, "providerCode": "bbkg", "sampleId": "topological-sampling/studios/f0ba2f3e-aa6f-4264-8d18-8ee65cf6f61a", "resourceHomeUrl": "https://portal.bluebrain.epfl.ch", "institution": {"id": 2985, "name": "Blue Brain Project, EPFL", "homeUrl": "https://portal.bluebrain.epfl.ch", "description": "The goal of the Blue Brain Project is to build biologically detailed digital reconstructions and simulations of the mouse brain.", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "topological-sampling/studios/f0ba2f3e-aa6f-4264-8d18-8ee65cf6f61a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3146, "prefix": "dg.80b6", "mirId": "MIR:00000919", "name": "GenoMEL Data Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The GenoMEL data commons supports the management, analysis and sharing of next generation sequencing data for the GenoMEL research community and aims to accelerate opportunities for discovery of susceptibility genes for melanoma. The data commons supports cross-project analyses by harmonizing data from different projects through the development of a data dictionary and utilization of common workflows, providing an API for data queries, and providing a cloud-based analysis workspace with rich tools and resources.", "created": "2022-02-27T20:31:14.555+0000", "modified": "2022-02-27T20:31:14.555+0000", "resources": [{"id": 3147, "mirId": "MIR:00000918", "urlPattern": "https://genomel.bionimbus.org/ga4gh/drs/v1/objects/{$id}", "name": "GenoMEL Data Commons", "description": "The GenoMEL data commons supports the management, analysis and sharing of next generation sequencing data for the GenoMEL research community and aims to accelerate opportunities for discovery of susceptibility genes for melanoma. The data commons supports cross-project analyses by harmonizing data from different projects through the development of a data dictionary and utilization of common workflows, providing an API for data queries, and providing a cloud-based analysis workspace with rich tools and resources.", "official": true, "providerCode": "dg.80b6", "sampleId": "000e5d06-1326-4b6f-8d8a-95c63374c7c1", "resourceHomeUrl": "https://genomel.bionimbus.org/", "institution": {"id": 3145, "name": "Open Commons Consortium ", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000e5d06-1326-4b6f-8d8a-95c63374c7c1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3036, "prefix": "modeldb.concept", "mirId": "MIR:00000905", "name": "ModelDB concept", "pattern": "\\d+", "description": "Concept used by ModelDB, an accessible location for storing and efficiently retrieving computational neuroscience models.", "created": "2022-01-29T10:45:35.629+0000", "modified": "2022-01-29T10:45:35.629+0000", "resources": [{"id": 3037, "mirId": "MIR:00000904", "urlPattern": "https://senselab.med.yale.edu/ModelDB/ModelList?id={$id}", "name": "Yale University", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03v76x132' with Wikidata IDs [Q56612637,Q49112], and ISNI IDs [0000000419368710]", "official": true, "providerCode": "yale", "sampleId": "3639", "resourceHomeUrl": "https://www.yale.edu", "institution": {"id": 3035, "name": "Yale University", "homeUrl": "https://www.yale.edu", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03v76x132' with Wikidata IDs [Q56612637,Q49112], and ISNI IDs [0000000419368710]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3639", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3039, "prefix": "civic.gid", "mirId": "MIR:00000907", "name": "CIViC Gene", "pattern": "^[0-9]+$", "description": "A CIViC Gene Summary is created to provide a high-level overview of clinical relevance of cancer variants for the gene. Gene Summaries in CIViC focus on emphasizing the clinical relevance from a molecular perspective rather than describing the biological function of the gene unless necessary to contextualize its clinical relevance in cancer. Gene Summaries include relevant cancer subtypes, specific treatments for the gene\u2019s associated variants, pathway interactions, functional alterations caused by the variants in the gene, and normal/abnormal functions of the gene with associated roles in oncogenesis", "created": "2022-01-29T10:47:57.098+0000", "modified": "2022-01-29T10:47:57.098+0000", "resources": [{"id": 3040, "mirId": "MIR:00000906", "urlPattern": "https://civicdb.org/links/gene/{$id}", "name": "Clinical Interpretation of Variants in Cancer (CIViC)", "description": "CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer.", "official": true, "providerCode": "civicdb", "sampleId": "272", "resourceHomeUrl": "https://civicdb.org/", "institution": {"id": 2750, "name": "Washington University in St. Louis", "homeUrl": "https://wustl.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01yc7t268' with Wikidata IDs [Q777403], and ISNI IDs [0000 0001 2355 7002]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "272", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3042, "prefix": "civic.vid", "mirId": "MIR:00000909", "name": "CIViC Variant", "pattern": "^[0-9]+$", "description": "CIViC variants are usually genomic alterations, including single nucleotide variants (SNVs), insertion/deletion events (indels), copy number alterations (CNV\u2019s such as amplification or deletion), structural variants (SVs such as translocations and inversions), and other events that differ from the \u201cnormal\u201d genome. In some cases a CIViC variant may represent events of the transcriptome or proteome. For example, \u2018expression\u2019 or \u2018over-expression\u2019 is a valid variant. Regardless of the variant, it must have a Predictive, Prognostic, Predisposing, Diagnostic, Oncogenic, or Functional relevance that is clinical in nature to be entered in CIViC. i.e. There must be some rationale for why curation of this variant could ultimately aid clinical decision making.", "created": "2022-01-29T10:48:56.640+0000", "modified": "2022-01-29T10:48:56.640+0000", "resources": [{"id": 3043, "mirId": "MIR:00000908", "urlPattern": "https://civicdb.org/links/variant/{$id}", "name": "Clinical Interpretation of Variants in Cancer (CIViC)", "description": "CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer.", "official": true, "providerCode": "civicdb", "sampleId": "12", "resourceHomeUrl": "https://civicdb.org/", "institution": {"id": 2750, "name": "Washington University in St. Louis", "homeUrl": "https://wustl.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01yc7t268' with Wikidata IDs [Q777403], and ISNI IDs [0000 0001 2355 7002]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "12", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3013, "prefix": "gitlab", "mirId": "MIR:00000901", "name": "GitLab", "pattern": "^[0-9A-Za-z_][0-9A-Za-z-_()\\. ]*/[0-9A-Za-z_][0-9A-Za-z-_\\. ]*$", "description": "GitLab is The DevOps platform that empowers organizations to maximize the overall return on software development by delivering software faster and efficiently, while strengthening security and compliance. With GitLab, every team in your organization can collaboratively plan, build, secure, and deploy software to drive business outcomes faster with complete transparency, consistency and traceability.", "created": "2022-01-09T19:35:24.140+0000", "modified": "2022-01-29T17:48:48.838+0000", "resources": [{"id": 3014, "mirId": "MIR:00000900", "urlPattern": "https://gitlab.com/{$id}", "name": "GitLab B.V.", "description": "GitLab is an open core company which develops software for the software development lifecycle with 30 million estimated registered users and more than 1 million active license users, and has an active community of more than 2,500 contributors.", "official": true, "providerCode": "gitlab", "sampleId": "morpheus.lab/morpheus", "resourceHomeUrl": "https://gitlab.com/", "institution": {"id": 3012, "name": "GitLab B.V.", "homeUrl": "https://gitlab.com/", "description": "GitLab is an open core company which develops software for the software development lifecycle with 30 million estimated registered users and more than 1 million active license users, and has an active community of more than 2,500 contributors.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "morpheus.lab/morpheus", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3047, "prefix": "rism", "mirId": "MIR:00000911", "name": "RISM Online", "pattern": "^[a-z]+/[0-9]+$", "description": "RISM Online is a new service that will publish the bibliographic and authority data from the catalogue of the R\u00e9pertoire International des Sources Musicales project.", "created": "2022-01-29T10:51:36.384+0000", "modified": "2022-01-31T08:57:14.676+0000", "resources": [{"id": 3048, "mirId": "MIR:00000910", "urlPattern": "https://rism.online/{$id}", "name": "RISM Digital Center", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01kk1vy78' with no Wikidata information, and no ISNI information", "official": true, "providerCode": "rism", "sampleId": "people/11035", "resourceHomeUrl": "https://rism.digital/", "institution": {"id": 3046, "name": "RISM Digital Center", "homeUrl": "https://rism.digital/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01kk1vy78' with no Wikidata information, and no ISNI information", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "people/11035", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3067, "prefix": "crop2ml", "mirId": "MIR:00001015", "name": "CropMRepository", "pattern": "^[0-9]{9}$", "description": "CropMRespository is a database of soil and crop biophysical process models.", "created": "2022-02-01T17:20:51.953+0000", "modified": "2022-02-01T17:20:51.953+0000", "resources": [{"id": 3068, "mirId": "MIR:00001016", "urlPattern": "http://www.crop2ml.org/cropmdb/{$id}", "name": "Crop2ML model repository", "description": "CropMRespository is a database of soil and crop biophysical process models.", "official": true, "providerCode": "cropmdb", "sampleId": "000000001", "resourceHomeUrl": "http://www.crop2ml.org", "institution": {"id": 2292, "name": "National Research Institute for Agriculture, Food and Environment", "homeUrl": "https://www.inrae.fr/", "description": "INRAE is France's new National Research Institute for Agriculture, Food and Environment, created on January 1, 2020, It was formed by the merger of INRA, the National Institute for Agricultural Research, and IRSTEA, the National Research Institute of Science and Technology for the Environment and Agriculture.", "rorId": "https://ror.org/003vg9w96", "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3135, "prefix": "dg.f738", "mirId": "MIR:00000916", "name": "VA Data Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The VA Data Commons supports the research and analysis of US military Veteran medical and genomic data and aims to accelerate scientific discovery and development of therapies, diagnostic tests, and other technologies for improving the lives of Veterans and beyond.", "created": "2022-02-27T20:29:04.474+0000", "modified": "2022-02-27T20:29:04.474+0000", "resources": [{"id": 3136, "mirId": "MIR:00001017", "urlPattern": "https://va.data-commons.org/ga4gh/drs/v1/objects/{$id}", "name": "VA Data Commons", "description": "The VA Data Commons supports the research and analysis of US military Veteran medical and genomic data and aims to accelerate scientific discovery and development of therapies, diagnostic tests, and other technologies for improving the lives of Veterans and beyond.", "official": true, "providerCode": "dg.F738/", "sampleId": "8d8e55d1-1774-4f8d-99d3-dccec73d191a", "resourceHomeUrl": "https://va.data-commons.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "8d8e55d1-1774-4f8d-99d3-dccec73d191a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3139, "prefix": "dg.nacd", "mirId": "MIR:00000917", "name": "https://accessclinicaldata.niaid.nih.gov/", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "AccessClinicalData@NIAID is a NIAID cloud-based, secure data platform that enables sharing of and access to reports and data sets from NIAID COVID-19 and other sponsored clinical trials for the basic and clinical research community.", "created": "2022-02-27T20:30:23.278+0000", "modified": "2022-02-27T20:30:23.278+0000", "resources": [{"id": 3140, "mirId": "MIR:00000999", "urlPattern": "https://accessclinicaldata.niaid.nih.gov/ga4gh/drs/v1/objects/{$id}", "name": "https://accessclinicaldata.niaid.nih.gov/", "description": "AccessClinicalData@NIAID is a NIAID cloud-based, secure data platform that enables sharing of and access to reports and data sets from NIAID COVID-19 and other sponsored clinical trials for the basic and clinical research community", "official": true, "providerCode": "dg.nacd", "sampleId": "2096a0d6-1846-4b98-9ba3-e4065d82111d", "resourceHomeUrl": "https://accessclinicaldata.niaid.nih.gov/", "institution": {"id": 3164, "name": " Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2096a0d6-1846-4b98-9ba3-e4065d82111d", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3142, "prefix": "dg.4825", "mirId": "MIR:00001019", "name": "ACCOuNT Data Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "This website provides a centralized, cloud-based discovery portal for African American pharmacogenomics data and aims to accelerate discovery of novel genetic variants in African Americans related to clinically actionable cardiovascular phenotypes.", "created": "2022-02-27T20:30:53.595+0000", "modified": "2022-02-27T20:30:53.595+0000", "resources": [{"id": 3143, "mirId": "MIR:00001013", "urlPattern": "https://acct.bionimbus.org/ga4gh/drs/v1/objects/{$id}", "name": "ACCOuNT Data Commons", "description": "This website provides a centralized, cloud-based discovery portal for African American pharmacogenomics data and aims to accelerate discovery of novel genetic variants in African Americans related to clinically actionable cardiovascular phenotypes.", "official": true, "providerCode": "dg.4825", "sampleId": "003a12b5-1002-4791-bf7f-0d6f71ebd67b", "resourceHomeUrl": "https://acct.bionimbus.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "003a12b5-1002-4791-bf7f-0d6f71ebd67b", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3149, "prefix": "dg.ea80", "mirId": "MIR:00001021", "name": "NIDDK IBD Genetics Consortium Portal", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The Inflammatory Bowel Disease Genetics Consortium Data Commons supports the management, analysis, and sharing of genetic data to support the vision and mission of the IBD genetics consortium.", "created": "2022-02-27T20:31:33.330+0000", "modified": "2022-02-27T20:31:33.330+0000", "resources": [{"id": 3150, "mirId": "MIR:00000920", "urlPattern": "https://ibdgc.datacommons.io/ga4gh/drs/v1/objects/{$id}", "name": "NIDDK IBD Genetics Consortium Portal", "description": "The Inflammatory Bowel Disease Genetics Consortium Data Commons supports the management, analysis, and sharing of genetic data to support the vision and mission of the IBD genetics consortium.", "official": true, "providerCode": "dg.EA80", "sampleId": "00083977-d4d7-4593-a216-2b9c931b8b03", "resourceHomeUrl": "https://ibdgc.datacommons.io/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00083977-d4d7-4593-a216-2b9c931b8b03", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3152, "prefix": "4503", "mirId": "MIR:00001020", "name": "BioData Catalyst", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "NHLBI BioData Catalyst supports the management, analysis and sharing of human disease data for the research community and aims to advance basic understanding of the genetic basis of complex traits and accelerate discovery and development of therapies, diagnostic tests, and other technologies for diseases like cancer. The data commons supports cross-project analyses by harmonizing data from different projects through the collaborative development of a data dictionary, providing an API for data queries and download, and providing a cloud-based analysis workspace with rich tools and resources.", "created": "2022-02-27T20:31:54.933+0000", "modified": "2022-02-27T20:31:54.933+0000", "resources": [{"id": 3153, "mirId": "MIR:00000921", "urlPattern": "https://gen3.biodatacatalyst.nhlbi.nih.gov/ga4gh/drs/v1/objects/{$id}", "name": "BioData Catalyst", "description": "NHLBI BioData Catalyst supports the management, analysis and sharing of human disease data for the research community and aims to advance basic understanding of the genetic basis of complex traits and accelerate discovery and development of therapies, diagnostic tests, and other technologies for diseases like cancer. The data commons supports cross-project analyses by harmonizing data from different projects through the collaborative development of a data dictionary, providing an API for data queries and download, and providing a cloud-based analysis workspace with rich tools and resources.", "official": true, "providerCode": "dg.4503", "sampleId": "3dab719c-1fa0-461b-a543-5f0e564a9be4", "resourceHomeUrl": "https://gen3.biodatacatalyst.nhlbi.nih.gov/", "institution": {"id": 3145, "name": "Open Commons Consortium ", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3dab719c-1fa0-461b-a543-5f0e564a9be4", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3171, "prefix": "dg.md1r", "mirId": "MIR:00000932", "name": "MIDRC Data Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The Medical Imaging & Data Resource Center (MIDRC) Data Commons supports the management, analysis and sharing of medical imaging data for the improvement of patient outcomes.", "created": "2022-02-27T20:33:39.208+0000", "modified": "2022-02-27T20:33:39.208+0000", "resources": [{"id": 3172, "mirId": "MIR:00000931", "urlPattern": "https://data.midrc.org/ga4gh/drs/v1/objects/{$id}", "name": "MIDRC Data Commons", "description": "The Medical Imaging & Data Resource Center (MIDRC) Data Commons supports the management, analysis and sharing of medical imaging data for the improvement of patient outcomes.", "official": true, "providerCode": "dg.MD1R", "sampleId": "000007c3-356a-4d59-a6c0-0ee920b60305", "resourceHomeUrl": "https://data.midrc.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000007c3-356a-4d59-a6c0-0ee920b60305", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3196, "prefix": "pmr.workspace", "mirId": "MIR:00000948", "name": "Physiome Model Repository workspace", "pattern": "^[a-zA-Z0-9_\\-]+(/.*?)?$", "description": "Workspace (Git repository) for modeling projects managed by the Physiome Model Repository", "created": "2022-02-27T20:41:50.311+0000", "modified": "2022-02-27T20:41:50.311+0000", "resources": [{"id": 3197, "mirId": "MIR:00000947", "urlPattern": "https://models.physiomeproject.org/workspace/{$id}", "name": "University of Auckland", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03b94tp07' with Wikidata IDs [Q492467], and ISNI IDs [0000 0004 0372 3343]", "official": true, "providerCode": "abi", "sampleId": "modularmassactionprimer", "resourceHomeUrl": "https://www.auckland.ac.nz/en.html", "institution": {"id": 2795, "name": "University of Auckland", "homeUrl": "https://www.auckland.ac.nz/en.html", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03b94tp07' with Wikidata IDs [Q492467], and ISNI IDs [0000 0004 0372 3343]", "rorId": null, "location": {"countryCode": "NZ", "countryName": "New Zealand"}}, "location": {"countryCode": "NZ", "countryName": "New Zealand"}, "deprecated": false, "deprecationDate": null}], "sampleId": "modularmassactionprimer", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3155, "prefix": "dg.373f", "mirId": "MIR:00000922", "name": "The AnVIL", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The AnVIL supports the management, analysis and sharing of human disease data for the research community and aims to advance basic understanding of the genetic basis of complex traits and accelerate discovery and development of therapies, diagnostic tests, and other technologies for diseases like cancer. The data commons supports cross-project analyses by harmonizing data from different projects through the collaborative development of a data dictionary, providing an API for data queries and download, and providing a cloud-based analysis workspace with rich tools and resources.", "created": "2022-02-27T20:32:23.416+0000", "modified": "2022-02-27T20:32:23.416+0000", "resources": [{"id": 3156, "mirId": "MIR:00000913", "urlPattern": "https://gen3.theanvil.io/ga4gh/drs/v1/objects/{$id}", "name": "The AnVIL", "description": "The AnVIL supports the management, analysis and sharing of human disease data for the research community and aims to advance basic understanding of the genetic basis of complex traits and accelerate discovery and development of therapies, diagnostic tests, and other technologies for diseases like cancer. The data commons supports cross-project analyses by harmonizing data from different projects through the collaborative development of a data dictionary, providing an API for data queries and download, and providing a cloud-based analysis workspace with rich tools and resources.", "official": true, "providerCode": "dg.373F", "sampleId": "6f2f1d6c-c5b5-4171-8b5f-9b1ac8c8a8ca", "resourceHomeUrl": "https://gen3.theanvil.io/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "6f2f1d6c-c5b5-4171-8b5f-9b1ac8c8a8ca", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3158, "prefix": "dg.7c5b", "mirId": "MIR:00000925", "name": "Environmental Data Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "This website provides a centralized, cloud-based portal for the open redistribution and analysis of environmental datasets and satellite imagery from OCC stakeholders like NASA and NOAA and aims to support the earth science research community as well as human assisted disaster relief.", "created": "2022-02-27T20:32:37.384+0000", "modified": "2022-02-27T20:32:37.384+0000", "resources": [{"id": 3159, "mirId": "MIR:00000923", "urlPattern": "https://portal.occ-data.org/loginga4gh/drs/v1/objects/{$id}", "name": "Environmental Data Commons", "description": "This website provides a centralized, cloud-based portal for the open redistribution and analysis of environmental datasets and satellite imagery from OCC stakeholders like NASA and NOAA and aims to support the earth science research community as well as human assisted disaster relief.", "official": true, "providerCode": "dg.7C5B", "sampleId": "00000014-990c-48f2-b0a8-fbb533860512", "resourceHomeUrl": "https://portal.occ-data.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00000014-990c-48f2-b0a8-fbb533860512", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3161, "prefix": "f82a1a", "mirId": "MIR:00000926", "name": "Kids First Data Catalog", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The Kids First Data Catalog supports the Kids First Data Resource Center by providing a digital object services that allow interoperability between data commons, including authentication and authorization for controlled access data.", "created": "2022-02-27T20:32:53.923+0000", "modified": "2022-02-27T20:32:53.923+0000", "resources": [{"id": 3162, "mirId": "MIR:00000924", "urlPattern": "https://data.kidsfirstdrc.org/ga4gh/drs/v1/objects/{$id}", "name": "Kids First Data Catalog", "description": "The Kids First Data Catalog supports the Kids First Data Resource Center by providing a digital object services that allow interoperability between data commons, including authentication and authorization for controlled access data.", "official": true, "providerCode": "dg.F82A1A", "sampleId": "0000324e-e2d9-4ccd-b25b-2d16c8a87b28", "resourceHomeUrl": "https://data.kidsfirstdrc.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000324e-e2d9-4ccd-b25b-2d16c8a87b28", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3165, "prefix": "dg.712c", "mirId": "MIR:00000928", "name": "NHLBI BioData Catalyst", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "NHLBI BioData Catalyst supports the management, analysis and sharing of human disease data for the research community and aims to advance basic understanding of the genetic basis of complex traits and accelerate discovery and development of therapies, diagnostic tests, and other technologies for diseases like cancer. The data commons supports cross-project analyses by harmonizing data from different projects through the collaborative development of a data dictionary, providing an API for data queries and download, and providing a cloud-based analysis workspace with rich tools and resources.\n", "created": "2022-02-27T20:33:06.143+0000", "modified": "2022-02-27T20:33:06.143+0000", "resources": [{"id": 3166, "mirId": "MIR:00000927", "urlPattern": "https://staging.gen3.biodatacatalyst.nhlbi.nih.gov/ga4gh/drs/v1/objects/{$id}", "name": "NHLBI BioData Catalyst", "description": "NHLBI BioData Catalyst supports the management, analysis and sharing of human disease data for the research community and aims to advance basic understanding of the genetic basis of complex traits and accelerate discovery and development of therapies, diagnostic tests, and other technologies for diseases like cancer. The data commons supports cross-project analyses by harmonizing data from different projects through the collaborative development of a data dictionary, providing an API for data queries and download, and providing a cloud-based analysis workspace with rich tools and resources.\n", "official": true, "providerCode": "dg.712C", "sampleId": "0129cb63-1cc7-4151-b119-5e3ba3a8eb07", "resourceHomeUrl": "https://staging.gen3.biodatacatalyst.nhlbi.nih.gov/", "institution": {"id": 3164, "name": " Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0129cb63-1cc7-4151-b119-5e3ba3a8eb07", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3168, "prefix": "dg.63d5", "mirId": "MIR:00001026", "name": "Chicago Pandemic Response Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "Chicago Pandemic Response Commons known as CCC is the first regional data commons launched under the Pandemic Response Commons Consortium. Born out of a consortium of Chicago-area civic and healthcare organizations with support from several technology partners, the PRC represents a persistent data resource for the research community engaging with COVID-19.", "created": "2022-02-27T20:33:18.862+0000", "modified": "2022-02-27T20:33:18.862+0000", "resources": [{"id": 3169, "mirId": "MIR:00000929", "urlPattern": "https://chicagoland.pandemicresponsecommons.org/ga4gh/drs/v1/objects/{$id}", "name": "Chicago Pandemic Response Commons", "description": "Chicago Pandemic Response Commons known as CCC is the first regional data commons launched under the Pandemic Response Commons Consortium. Born out of a consortium of Chicago-area civic and healthcare organizations with support from several technology partners, the PRC represents a persistent data resource for the research community engaging with COVID-19.", "official": true, "providerCode": "dg.63D5", "sampleId": "00002b0f-0adf-4015-b2b7-b38f9337044a", "resourceHomeUrl": "https://chicagoland.pandemicresponsecommons.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00002b0f-0adf-4015-b2b7-b38f9337044a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3174, "prefix": "6vts", "mirId": "MIR:00000934", "name": "JCOIN Portal", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The Helping to End Addiction Long-termSM Initiative, or NIH HEAL InitiativeSM, will support the Justice Community Opioid Innovation Network (JCOIN) to study approaches to increase high-quality care for people with opioid misuse and OUD in justice settings. JCOIN will test strategies to expand effective treatment and care in partnership with local and state justice systems and community-based treatment providers.", "created": "2022-02-27T20:34:03.581+0000", "modified": "2022-02-27T20:34:03.581+0000", "resources": [{"id": 3175, "mirId": "MIR:00000933", "urlPattern": "https://jcoin.datacommons.io/ga4gh/drs/v1/objects/{$id}", "name": "JCOIN Portal", "description": "The Helping to End Addiction Long-termSM Initiative, or NIH HEAL InitiativeSM, will support the Justice Community Opioid Innovation Network (JCOIN) to study approaches to increase high-quality care for people with opioid misuse and OUD in justice settings. JCOIN will test strategies to expand effective treatment and care in partnership with local and state justice systems and community-based treatment providers.", "official": true, "providerCode": "dg.6VTS", "sampleId": "005bf193-fa93-44c0-9b2b-9b039f94d692", "resourceHomeUrl": "https://jcoin.datacommons.io/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "005bf193-fa93-44c0-9b2b-9b039f94d692", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3177, "prefix": "dg.nci35", "mirId": "MIR:00000936", "name": "NCI Data Commons Framework Services", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The vision of DCFS is to make it easier to develop, operate, and interoperate data commons, data clouds, knowledge bases, and other resources for managing, analyzing, and sharing research data that can be part of a large data commons ecosystem.", "created": "2022-02-27T20:37:35.848+0000", "modified": "2022-02-27T20:37:35.848+0000", "resources": [{"id": 3178, "mirId": "MIR:00000935", "urlPattern": "https://nci-crdc.datacommons.io/login/ga4gh/drs/v1/objects/{$id}", "name": "NCI Data Commons Framework Services", "description": "The vision of DCFS is to make it easier to develop, operate, and interoperate data commons, data clouds, knowledge bases, and other resources for managing, analyzing, and sharing research data that can be part of a large data commons ecosystem.", "official": true, "providerCode": "dg.NCI35", "sampleId": "81944ba1-81d0-436e-8552-33d77a27834b", "resourceHomeUrl": "https://nci-crdc.datacommons.io/login", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "81944ba1-81d0-436e-8552-33d77a27834b", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3180, "prefix": "dg.vp07", "mirId": "MIR:00000938", "name": "Veterans Precision Oncology Data Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The Veterans Data Commons supports the management, analysis and sharing of veteran oncologic data for the research community and aims to accelerate discovery and development of therapies, diagnostic tests, and other technologies for precision oncology.", "created": "2022-02-27T20:37:55.926+0000", "modified": "2022-02-27T20:37:55.926+0000", "resources": [{"id": 3181, "mirId": "MIR:00000937", "urlPattern": "https://vpodc.data-commons.org/ga4gh/drs/v1/objects/{$id}", "name": "Veterans Precision Oncology Data Commons", "description": "The Veterans Data Commons supports the management, analysis and sharing of veteran oncologic data for the research community and aims to accelerate discovery and development of therapies, diagnostic tests, and other technologies for precision oncology.", "official": true, "providerCode": "dg.VP07", "sampleId": "000bf826-73ba-4685-aa6c-3e0971a2f260", "resourceHomeUrl": "https://vpodc.data-commons.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000bf826-73ba-4685-aa6c-3e0971a2f260", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3183, "prefix": "dg.c78ne", "mirId": "MIR:00000940", "name": "Canine Data Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "This website analyzes and shares genomic architecture of modern dog breeds and runs analysis for canine cancer to create clean, easy to navigate visualizations for data-driven discovery for canine cancer.", "created": "2022-02-27T20:38:48.115+0000", "modified": "2022-02-27T20:38:48.115+0000", "resources": [{"id": 3184, "mirId": "MIR:00000939", "urlPattern": "https://caninedc.org/ga4gh/drs/v1/objects/{$id}", "name": "Canine Data Commons", "description": "This website analyzes and shares genomic architecture of modern dog breeds and runs analysis for canine cancer to create clean, easy to navigate visualizations for data-driven discovery for canine cancer.", "official": true, "providerCode": "dg.C78ne", "sampleId": "0002346e-5ee7-45fb-8c92-8333f8e13854", "resourceHomeUrl": "https://caninedc.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0002346e-5ee7-45fb-8c92-8333f8e13854", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3186, "prefix": "dg.h34l", "mirId": "MIR:00000942", "name": "The HEAL platform", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The HEAL Platform is a cloud-based and multifunctional web interface that provides a secure environment for discovery and analysis of NIH HEAL results and data. It is designed to serve users with a variety of objectives, backgrounds, and specialties.\n\nThe HEAL Platform represents a dynamic Data Ecosystem that aggregates and hosts data from multiple resources to make data discovery and access easy for users.\n\nThe platform provides a way to search and query over study metadata and diverse data types, generated by different projects and organizations and stored across multiple secure repositories.\n\nThe HEAL platform also offers a secure and cost-effective cloud-computing environment for data analysis, empowering collaborative research and development of new analytical tools. New workflows and results of analyses can be shared with the HEAL community to enable collaborative, high-impact publications that address the opioid crisis.", "created": "2022-02-27T20:39:04.388+0000", "modified": "2022-02-27T20:39:04.388+0000", "resources": [{"id": 3187, "mirId": "MIR:00000941", "urlPattern": "https://healdata.org/ga4gh/drs/v1/objects/{$id}", "name": "The HEAL Platform", "description": "The HEAL Platform is a cloud-based and multifunctional web interface that provides a secure environment for discovery and analysis of NIH HEAL results and data. It is designed to serve users with a variety of objectives, backgrounds, and specialties.\n\nThe HEAL Platform represents a dynamic Data Ecosystem that aggregates and hosts data from multiple resources to make data discovery and access easy for users.\n\nThe platform provides a way to search and query over study metadata and diverse data types, generated by different projects and organizations and stored across multiple secure repositories.\n\nThe HEAL platform also offers a secure and cost-effective cloud-computing environment for data analysis, empowering collaborative research and development of new analytical tools. New workflows and results of analyses can be shared with the HEAL community to enable collaborative, high-impact publications that address the opioid crisis.", "official": true, "providerCode": "dg.h34L", "sampleId": "022911d6-af91-4b02-8f96-9107c77c98b8", "resourceHomeUrl": "https://healdata.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "022911d6-af91-4b02-8f96-9107c77c98b8", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3189, "prefix": "dg.h35l", "mirId": "MIR:00000944", "name": "HEAL Data Platform", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "This website supports the management, analysis and sharing of data for the research community and aims to accelerate discovery and development of therapies, diagnostic tests, and other technologies.", "created": "2022-02-27T20:40:41.328+0000", "modified": "2022-02-27T20:40:41.328+0000", "resources": [{"id": 3190, "mirId": "MIR:00000943", "urlPattern": "https://externaldata.healdata.org/ga4gh/drs/v1/objects/{$id}", "name": "HEAL Data Platform", "description": "This website supports the management, analysis and sharing of data for the research community and aims to accelerate discovery and development of therapies, diagnostic tests, and other technologies.", "official": true, "providerCode": "dg.h34L", "sampleId": "007e4996-c902-49a0-8fe8-b363f1d3fb23", "resourceHomeUrl": "https://externaldata.healdata.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "007e4996-c902-49a0-8fe8-b363f1d3fb23", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3193, "prefix": "dg.um33r90", "mirId": "MIR:00000946", "name": "UMCCR AGHA Data Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The UMCCR AGHA Data Commons supports the management, analysis and sharing of data for the research community.", "created": "2022-02-27T20:40:56.446+0000", "modified": "2022-02-27T20:40:56.446+0000", "resources": [{"id": 3194, "mirId": "MIR:00000945", "urlPattern": "https://gen3.agha.umccr.org/ga4gh/drs/v1/objects/{$id}", "name": "UMCCR AGHA Data Commons", "description": "The UMCCR AGHA Data Commons supports the management, analysis and sharing of data for the research community.", "official": true, "providerCode": "dg.UM33R90", "sampleId": "0aa770b4-66b3-4009-9f02-852236b0544f", "resourceHomeUrl": "https://gen3.agha.umccr.org/", "institution": {"id": 3192, "name": " Open Commons Consortium ", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0aa770b4-66b3-4009-9f02-852236b0544f", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3203, "prefix": "ps", "mirId": "MIR:00000951", "name": "Pennsieve", "pattern": "N:package:[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}", "description": "Pennsieve is a publicly accessible Scientific Data Management and publication platform. The platform supports data curation, sharing and publishing complex scientific datasets with a focus on integration between graph-based metadata and file-archival. The platform provides a \"peer\"-reviewed publication mechanism and public datasets are available through its Discover Web Application and APIs. ", "created": "2022-03-15T08:27:12.699+0000", "modified": "2022-03-15T08:27:12.699+0000", "resources": [{"id": 3204, "mirId": "MIR:00000950", "urlPattern": "https://discover.pennsieve.io/package/{$id}", "name": "Pennsieve Discover", "description": "Pennsieve Discover is a public repository for scientific datasets and specializes in FAIR distribution of public datasets that combine large files and graph based metadata records. ", "official": true, "providerCode": "ps", "sampleId": "N:package:e3243db3-7986-488e-9a10-c7a0bfdcfe8a", "resourceHomeUrl": "https://discover.pennsieve.io", "institution": {"id": 1674, "name": "University of Pennsylvania", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "N:package:e3243db3-7986-488e-9a10-c7a0bfdcfe8a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2638, "prefix": "icdc", "mirId": "MIR:00000812", "name": "Integrated Canine Data Commons", "pattern": "^\\d{6}$", "description": "The Integrated Canine Data Commons is one of several repositories within the NCI Cancer Research Data Commons (CRDC), a cloud-based data science infrastructure that provides secure access to a large, comprehensive, and expanding collection of cancer research data. The ICDC was established to further research on human cancers by enabling comparative analysis with canine cancer.", "created": "2021-05-10T19:40:34.200+0000", "modified": "2022-03-31T16:55:06.915+0000", "resources": [{"id": 2639, "mirId": "MIR:00000811", "urlPattern": "https://caninecommons.cancer.gov/#/study/{$id}", "name": "Integrated Canine Data Commons", "description": "Integrated Canine Data Commons at National Cancer Institute (USA)", "official": true, "providerCode": "icdc", "sampleId": "000009", "resourceHomeUrl": "https://caninecommons.cancer.gov/#/", "institution": {"id": 2637, "name": "National Cancer Institute", "homeUrl": "https://www.cancer.gov/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/040gcmg81' with Wikidata IDs [Q664846], and ISNI IDs [0000 0004 1936 8075]", "rorId": "https://ror.org/040gcmg81", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000009", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 361, "prefix": "pdb-ccd", "mirId": "MIR:00000113", "name": "Chemical Component Dictionary", "pattern": "^\\w{1,3}$", "description": "The Chemical Component Dictionary is as an external reference file describing all residue and small molecule components found in Protein Data Bank entries. It contains detailed chemical descriptions for standard and modified amino acids/nucleotides, small molecule ligands, and solvent molecules. Each chemical definition includes descriptions of chemical properties such as stereochemical assignments, aromatic bond assignments, idealized coordinates, chemical descriptors (SMILES & InChI), and systematic chemical names.", "created": "2019-06-11T14:16:03.054+0000", "modified": "2022-05-18T15:48:21.884+0000", "resources": [{"id": 362, "mirId": "MIR:00100146", "urlPattern": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/chemicalCompound/show/{$id}", "name": "Protein Data Bank Chemical Component Dictionary at EBI", "description": "Protein Data Bank Chemical Component Dictionary at EBI", "official": false, "providerCode": "ebi", "sampleId": "AB0", "resourceHomeUrl": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AB0", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3252, "prefix": "civic.sid", "mirId": "MIR:00000953", "name": "CIViC Source", "pattern": "^[0-9]+$", "description": "In CIViC, each Evidence Item must be associated with a Source Type and Source ID, which link the Evidence Item to the original source of information supporting clinical claims. Currently, CIViC accepts publications indexed on PubMed OR abstracts published through the American Society of Clinical Oncology (ASCO). Each such source entered into CIViC is assigned a unique identifier and expert curators can curate guidance that assists future curators in the interpretation of information from this source.", "created": "2022-08-08T18:32:17.171+0000", "modified": "2022-08-08T18:32:17.171+0000", "resources": [{"id": 3253, "mirId": "MIR:00000952", "urlPattern": "https://civicdb.org/links/sources/{$id}", "name": "Clinical Interpretation of Variants in Cancer (CIViC)", "description": "CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer.", "official": true, "providerCode": "civicdb", "sampleId": "62", "resourceHomeUrl": "https://civicdb.org/", "institution": {"id": 2750, "name": "Washington University in St. Louis", "homeUrl": "https://wustl.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01yc7t268' with Wikidata IDs [Q777403], and ISNI IDs [0000 0001 2355 7002]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "62", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3255, "prefix": "civic.tid", "mirId": "MIR:00000955", "name": "CIViC Therapy", "pattern": "^[0-9]+$", "description": "Therapies (often drugs) in CIViC are associated with Predictive Evidence Types, which describe sensitivity, resistance or adverse response to therapies when a given variant is present. The Therapy field may also be used to describe more general treatment types and regimes, such as FOLFOX or Radiation, as long as the literature derived Evidence Item makes a scientific association between the Therapy (treatment type) and the presence of the variant.", "created": "2022-08-08T18:33:25.710+0000", "modified": "2022-08-08T18:33:25.710+0000", "resources": [{"id": 3256, "mirId": "MIR:00000954", "urlPattern": "https://civicdb.org/links/drugs/{$id}", "name": "Clinical Interpretation of Variants in Cancer (CIViC)", "description": "CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer.", "official": true, "providerCode": "civicdb", "sampleId": "14", "resourceHomeUrl": "https://civicdb.org/", "institution": {"id": 2750, "name": "Washington University in St. Louis", "homeUrl": "https://wustl.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01yc7t268' with Wikidata IDs [Q777403], and ISNI IDs [0000 0001 2355 7002]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "14", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3258, "prefix": "civic.did", "mirId": "MIR:00000957", "name": "CIViC Disease", "pattern": "^[0-9]+$", "description": "Within the CIViC database, the disease should be the cancer or cancer subtype that is a result of the described variant. The disease selected should be as specific as possible should reflect the disease type used in the source that supports the evidence statement.", "created": "2022-08-08T18:34:15.882+0000", "modified": "2022-08-08T18:34:15.882+0000", "resources": [{"id": 3259, "mirId": "MIR:00000956", "urlPattern": "https://civicdb.org/links/diseases/{$id}", "name": "Clinical Interpretation of Variants in Cancer (CIViC)", "description": "CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer.https://civicdb.org/\n", "official": true, "providerCode": "civicdb", "sampleId": "46", "resourceHomeUrl": "https://civicdb.org/", "institution": {"id": 2750, "name": "Washington University in St. Louis", "homeUrl": "https://wustl.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01yc7t268' with Wikidata IDs [Q777403], and ISNI IDs [0000 0001 2355 7002]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "46", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3263, "prefix": "metatlas", "mirId": "MIR:00000959", "name": "Metabolic Atlas", "pattern": "^MA[MR]\\d{5}[a-z]?$", "description": "Metabolic Atlas facilitates metabolic modelling by presenting open source genome-scale metabolic models for easy browsing and analysis.", "created": "2022-08-08T18:36:40.981+0000", "modified": "2022-08-08T18:36:40.981+0000", "resources": [{"id": 3264, "mirId": "MIR:00000958", "urlPattern": "https://metabolicatlas.org/identifier/MetabolicAtlas/{$id}", "name": "Metabolic Atlas", "description": "Metabolic Atlas is a web platform integrating open-source genome scale metabolic models (GEMs) for easy browsing and analysis. The goal is to collect curated GEMs, and to bring these models closer to FAIR principles. The website provides visualisations and comparisons of the GEMs, and links to resources, algorithms, other databases, and more general software applications.", "official": true, "providerCode": "metatlas", "sampleId": "MAR01234", "resourceHomeUrl": "https://metabolicatlas.org", "institution": {"id": 3262, "name": "National Bioinformatics Infrastructure Sweden", "homeUrl": "https://nbis.se", "description": "NBIS (National Bioinformatics Infrastructure Sweden) is a distributed national research infrastructure supported by the Swedish Research Council (Vetenskapsr\u00e5det), Science for Life Laboratory, all major Swedish universities and the Knut and Alice Wallenberg Foundation, providing state-of-the-art bioinformatics to the Swedish life science researchers community. NBIS is also the Swedish contact point to the European infrastructure for biological information ELIXIR.\n\nPresent NBIS staff has expertise in protein bioinformatics, mass spectrometry (MS), next generation sequencing (NGS), large-scale data handling and integration, metagenomics, systems biology, biostatistics and RNAseq.\n\nNBIS is predominantly offering bioinformatics support in various projects, depending on the user needs. In the projects, the NBIS persons are working close to the research group, and they spend part of their time to teach the users in order to propagate the bioinformatics knowledge. Furthermore, NBIS provides infrastructure and tools for bioinformatics analyses in order to facilitate these analyses for the users.\n\nNBIS forms the bioinformatics platform at the Science for Life Laboratory.", "rorId": null, "location": {"countryCode": "SE", "countryName": "Sweden"}}, "location": {"countryCode": "SE", "countryName": "Sweden"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MAR01234", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3271, "prefix": "ror", "mirId": "MIR:00000961", "name": "ROR", "pattern": "^0[a-hj-km-np-tv-z|0-9]{6}[0-9]{2}$", "description": "ROR (Research Organization Registry) is a global, community-led registry\nof open persistent identifiers for research organizations. ROR is jointly\noperated by California Digital Library, Crossref, and Datacite.", "created": "2022-08-15T19:28:35.707+0000", "modified": "2022-08-18T13:14:34.725+0000", "resources": [{"id": 3272, "mirId": "MIR:00001056", "urlPattern": "https://ror.org/{$id}", "name": "ROR", "description": "ROR (Research Organization Registry) is a global, community-led registry of open persistent identifiers for research organizations. ", "official": true, "providerCode": "ror", "sampleId": "03yrm5c26", "resourceHomeUrl": "https://ror.org", "institution": {"id": 3270, "name": "California Digital Library", "homeUrl": "https://www.cdlib.org/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03yrm5c26' with Wikidata IDs [Q5020447], and ISNI IDs [0000 0001 1957 5136]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "03yrm5c26", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3292, "prefix": "clb", "mirId": "MIR:00000964", "name": "ChecklistBank", "pattern": "^[0-9]+(LR)?$", "description": "ChecklistBank is an index and repository for taxonomic and nomenclatural datasets", "created": "2022-11-03T14:17:05.019+0000", "modified": "2022-11-03T14:17:05.019+0000", "resources": [{"id": 3293, "mirId": "MIR:00000963", "urlPattern": "https://www.checklistbank.org/dataset/{$id}", "name": "ChecklistBank", "description": "ChecklistBank at GBIF. Codeveloped with the Catalogue of Life", "official": true, "providerCode": "clb", "sampleId": "1010", "resourceHomeUrl": "https://www.checklistbank.org", "institution": {"id": 3291, "name": "Global Biodiversity Information Facility", "homeUrl": "https://www.gbif.org/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05fjyn938' with Wikidata IDs [Q1531570], and no ISNI information", "rorId": null, "location": {"countryCode": "DK", "countryName": "Denmark"}}, "location": {"countryCode": "DK", "countryName": "Denmark"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1010", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3298, "prefix": "drugcentral", "mirId": "MIR:00000966", "name": "DrugCentral", "pattern": "^[0-9]+$", "description": "DrugCentral (http://drugcentral.org) is an open-access online drug compendium. DrugCentral integrates structure, bioactivity, regulatory, pharmacologic actions and indications for active pharmaceutical ingredients approved by FDA and other regulatory agencies. Monitoring of regulatory agencies for new drugs approvals ensures the resource is up-to-date. DrugCentral integrates content for active ingredients with pharmaceutical formulations, indexing drugs and drug label annotations, complementing similar resources available online. Its complementarity with other online resources is facilitated by cross referencing to external resources. At the molecular level, DrugCentral bridges drug-target interactions with pharmacological action and indications. The integration with FDA drug labels enables text mining applications for drug adverse events and clinical trial information. Chemical structure overlap between DrugCentral and five online drug resources, and the overlap between DrugCentral FDA-approved drugs and their presence in four different chemical collections, are discussed. DrugCentral can be accessed via the web application or downloaded in relational database format.", "created": "2022-11-04T09:54:32.976+0000", "modified": "2022-11-04T09:54:32.976+0000", "resources": [{"id": 3299, "mirId": "MIR:00000965", "urlPattern": "https://drugcentral.org/drugcard/{$id}", "name": "University of New Mexico", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05fs6jp91' with Wikidata IDs [Q1190812], and ISNI IDs [0000 0001 2188 8502]", "official": true, "providerCode": "drugcentral", "sampleId": "257", "resourceHomeUrl": "http://www.unm.edu/", "institution": {"id": 3297, "name": "University of New Mexico", "homeUrl": "http://www.unm.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05fs6jp91' with Wikidata IDs [Q1190812], and ISNI IDs [0000 0001 2188 8502]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "257", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3307, "prefix": "skm", "mirId": "MIR:00000968", "name": "Stress Knowledge Map", "pattern": "^rx[0-9]{5}$", "description": "Stress Knowledge Map (SKM, available at https://skm.nib.si) is a knowledge graph resulting from the integration of dispersed published information on plant molecular responses to biotic and abiotic stressors. ", "created": "2022-11-04T12:17:30.200+0000", "modified": "2022-11-04T12:17:30.200+0000", "resources": [{"id": 3308, "mirId": "MIR:00000967", "urlPattern": "https://skm.nib.si/api/pss/reactions?reaction_id={$id}&return_field=summary", "name": "National Institute of Biology", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03s5t0r17' with no Wikidata information, and ISNI IDs [0000 0004 0637 0790]", "official": true, "providerCode": "skm", "sampleId": "rx00408", "resourceHomeUrl": "http://www.nib.si/eng/", "institution": {"id": 3306, "name": "National Institute of Biology", "homeUrl": "http://www.nib.si/eng/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03s5t0r17' with no Wikidata information, and ISNI IDs [0000 0004 0637 0790]", "rorId": null, "location": {"countryCode": "SI", "countryName": "Slovenia"}}, "location": {"countryCode": "SI", "countryName": "Slovenia"}, "deprecated": false, "deprecationDate": null}], "sampleId": "rx00408", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3311, "prefix": "col", "mirId": "MIR:00000969", "name": "Catalogue of Life", "pattern": "^[23456789BCDFGHJKLMNPQRSTVWXYZ]{1,6}$", "description": "Identifier of a taxon or synonym in the Catalogue of Life", "created": "2022-11-04T13:50:22.141+0000", "modified": "2022-11-04T13:50:22.141+0000", "resources": [{"id": 3312, "mirId": "MIR:00000970", "urlPattern": "https://www.checklistbank.org/dataset/3LR/taxon/{$id}", "name": "ChecklistBank", "description": "ChecklistBank, an index and repository for taxonomic data, hosted at GBIF\n", "official": true, "providerCode": "clb", "sampleId": "4QHKG", "resourceHomeUrl": "https://www.checklistbank.org", "institution": {"id": 3291, "name": "Global Biodiversity Information Facility", "homeUrl": "https://www.gbif.org/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05fjyn938' with Wikidata IDs [Q1531570], and no ISNI information", "rorId": null, "location": {"countryCode": "DK", "countryName": "Denmark"}}, "location": {"countryCode": "DK", "countryName": "Denmark"}, "deprecated": false, "deprecationDate": null}, {"id": 3328, "mirId": "MIR:00000971", "urlPattern": "https://www.catalogueoflife.org/data/taxon/{$id}", "name": "Catalogue of Life (COL)", "description": "The Catalogue of Life website providing a view onto the latest release of the COL Checklist.", "official": false, "providerCode": "col", "sampleId": "4QHKG", "resourceHomeUrl": "https://www.catalogueoflife.org", "institution": {"id": 3291, "name": "Global Biodiversity Information Facility", "homeUrl": "https://www.gbif.org/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05fjyn938' with Wikidata IDs [Q1531570], and no ISNI information", "rorId": null, "location": {"countryCode": "DK", "countryName": "Denmark"}}, "location": {"countryCode": "DK", "countryName": "Denmark"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4QHKG", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}]}} \ No newline at end of file +{"apiVersion": null, "errorMessage": null, "payload": {"namespaces": [{"id": 1, "prefix": "chebi", "mirId": "MIR:00000002", "name": "ChEBI", "pattern": "^CHEBI:\\d+$", "description": "Chemical Entities of Biological Interest (ChEBI) is a freely available dictionary of molecular entities focused on 'small' chemical compounds.", "created": "2019-06-11T14:15:26.925+0000", "modified": "2019-06-11T14:15:26.925+0000", "resources": [{"id": 3, "mirId": "MIR:00100009", "urlPattern": "https://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:{$id}", "name": "ChEBI (Chemical Entities of Biological Interest)", "description": "ChEBI (Chemical Entities of Biological Interest)", "official": true, "providerCode": "ebi", "sampleId": "36927", "resourceHomeUrl": "https://www.ebi.ac.uk/chebi/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 4, "mirId": "MIR:00100158", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/chebi/terms?obo_id=CHEBI:{$id}", "name": "ChEBI through OLS", "description": "ChEBI through OLS", "official": false, "providerCode": "ols", "sampleId": "36927", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/chebi", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 6, "mirId": "MIR:00100565", "urlPattern": "http://purl.bioontology.org/ontology/CHEBI/CHEBI:{$id}", "name": "ChEBI through BioPortal", "description": "ChEBI through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "36927", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/CHEBI", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "36927", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 13, "prefix": "ec-code", "mirId": "MIR:00000004", "name": "Enzyme Nomenclature", "pattern": "^\\d+\\.-\\.-\\.-|\\d+\\.\\d+\\.-\\.-|\\d+\\.\\d+\\.\\d+\\.-|\\d+\\.\\d+\\.\\d+\\.(n)?\\d+$", "description": "The Enzyme Classification contains the recommendations of the Nomenclature Committee of the International Union of Biochemistry and Molecular Biology on the nomenclature and classification of enzyme-catalysed reactions.", "created": "2019-06-11T14:15:28.483+0000", "modified": "2019-06-11T14:15:28.483+0000", "resources": [{"id": 14, "mirId": "MIR:00100001", "urlPattern": "https://www.ebi.ac.uk/intenz/query?cmd=SearchEC&ec={$id}", "name": "IntEnZ (Integrated relational Enzyme database)", "description": "IntEnZ (Integrated relational Enzyme database)", "official": false, "providerCode": "intenz", "sampleId": "1.1.1.1", "resourceHomeUrl": "https://www.ebi.ac.uk/intenz/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 16, "mirId": "MIR:00100002", "urlPattern": "https://www.genome.jp/dbget-bin/www_bget?ec:{$id}", "name": "KEGG Ligand Database for Enzyme Nomenclature", "description": "KEGG Ligand Database for Enzyme Nomenclature", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1.1.1.1", "resourceHomeUrl": "https://www.genome.jp/dbget-bin/www_bfind?enzyme", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}, {"id": 20, "mirId": "MIR:00100308", "urlPattern": "http://www.enzyme-database.org/query.php?ec={$id}", "name": "ExploreEnz at Trinity College", "description": "ExploreEnz at Trinity College", "official": false, "providerCode": "expenz", "sampleId": "1.1.1.1", "resourceHomeUrl": "http://www.enzyme-database.org/", "institution": {"id": 19, "name": "Trinity College, Dublin", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IE", "countryName": "Ireland"}}, "location": {"countryCode": "IE", "countryName": "Ireland"}, "deprecated": false, "deprecationDate": null}, {"id": 22, "mirId": "MIR:00100835", "urlPattern": "https://www.ebi.ac.uk/enzymeportal/ec/{$id}", "name": "Enzyme Portal through EMBL-EBI", "description": "Enzyme Portal through EMBL-EBI", "official": false, "providerCode": "enzymeportal", "sampleId": "1.1.1.1", "resourceHomeUrl": "https://www.ebi.ac.uk/enzymeportal", "institution": {"id": 21, "name": "Enzyme Portal at European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 18, "mirId": "MIR:00100003", "urlPattern": "https://enzyme.expasy.org/EC/{$id}", "name": "Enzyme nomenclature database, ExPASy (Expert Protein Analysis System)", "description": "Enzyme nomenclature database, ExPASy (Expert Protein Analysis System)", "official": false, "providerCode": "expasy", "sampleId": "1.1.1.1", "resourceHomeUrl": "https://enzyme.expasy.org/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1.1.1.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 23, "prefix": "uniprot", "mirId": "MIR:00000005", "name": "UniProt Knowledgebase", "pattern": "^([A-N,R-Z][0-9]([A-Z][A-Z, 0-9][A-Z, 0-9][0-9]){1,2})|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])(\\.\\d+)?$", "description": "The UniProt Knowledgebase (UniProtKB) is a comprehensive resource for protein sequence and functional information with extensive cross-references to more than 120 external databases. Besides amino acid sequence and a description, it also provides taxonomic data and citation information.", "created": "2019-06-11T14:15:29.457+0000", "modified": "2019-06-11T14:15:29.457+0000", "resources": [{"id": 27, "mirId": "MIR:00100330", "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}", "name": "UniProt through NCBI", "description": "UniProt through NCBI", "official": false, "providerCode": "ncbi", "sampleId": "P0DP23", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/protein/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 25, "mirId": "MIR:00100164", "urlPattern": "https://purl.uniprot.org/uniprot/{$id}", "name": "Universal Protein Resource using Persistent URL system", "description": "Universal Protein Resource using Persistent URL system", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "P0DP23", "resourceHomeUrl": "https://www.uniprot.org/", "institution": {"id": 24, "name": "UniProt Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P0DP23", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 28, "prefix": "taxonomy", "mirId": "MIR:00000006", "name": "Taxonomy", "pattern": "^\\d+$", "description": "The taxonomy contains the relationships between all living forms for which nucleic acid or protein sequence have been determined.", "created": "2019-06-11T14:15:29.882+0000", "modified": "2019-06-11T14:15:29.882+0000", "resources": [{"id": 29, "mirId": "MIR:00100007", "urlPattern": "https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id={$id}", "name": "NCBI Taxonomy", "description": "NCBI Taxonomy", "official": true, "providerCode": "ncbi", "sampleId": "9606", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/Taxonomy/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 30, "mirId": "MIR:00100019", "urlPattern": "https://purl.uniprot.org/taxonomy/{$id}", "name": "Taxonomy through UniProt PURL", "description": "Taxonomy through UniProt PURL", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "9606", "resourceHomeUrl": "https://www.uniprot.org/taxonomy/", "institution": {"id": 24, "name": "UniProt Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 31, "mirId": "MIR:00100299", "urlPattern": "https://www.ebi.ac.uk/ena/data/view/Taxon:{$id}", "name": "European Nucleotide Archive (ENA)", "description": "European Nucleotide Archive (ENA)", "official": false, "providerCode": "ebi", "sampleId": "9606", "resourceHomeUrl": "https://www.ebi.ac.uk/ena/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 32, "mirId": "MIR:00100507", "urlPattern": "http://purl.bioontology.org/ontology/NCBITAXON/{$id}", "name": "BioPortal", "description": "BioPortal", "official": false, "providerCode": "bptl", "sampleId": "9606", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/NCBITAXON", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 35, "mirId": "MIR:00100770", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ncbitaxon/terms?short_form=NCBITaxon_{$id}", "name": "NCBI Taxonomy through OLS", "description": "NCBI Taxonomy through OLS", "official": false, "providerCode": "ols", "sampleId": "9606", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ncbitaxon/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 34, "mirId": "MIR:00100695", "urlPattern": "https://bio2rdf.org/taxonomy:{$id}", "name": "Bio2RDF", "description": "Bio2RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "9606", "resourceHomeUrl": "https://bio2rdf.org/", "institution": {"id": 33, "name": "Bio2RDF.org", "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "9606", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 36, "prefix": "biomodels.db", "mirId": "MIR:00000007", "name": "BioModels Database", "pattern": "^((BIOMD|MODEL)\\d{10})|(BMID\\d{12})$", "description": "BioModels Database is a data resource that allows biologists to store, search and retrieve published mathematical models of biological interests.", "created": "2019-06-11T14:15:30.877+0000", "modified": "2019-06-11T14:15:30.877+0000", "resources": [{"id": 37, "mirId": "MIR:00100006", "urlPattern": "https://www.ebi.ac.uk/biomodels/{$id}", "name": "BioModels Database", "description": "BioModels Database", "official": true, "providerCode": "ebi", "sampleId": "BIOMD0000000048", "resourceHomeUrl": "https://www.ebi.ac.uk/biomodels/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 39, "mirId": "MIR:00100107", "urlPattern": "http://biomodels.caltech.edu/{$id}", "name": "Caltech mirror", "description": "Caltech mirror", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BIOMD0000000048", "resourceHomeUrl": "http://biomodels.caltech.edu/", "institution": {"id": 38, "name": "California Institute of Technology", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 40, "mirId": "MIR:00100855", "urlPattern": "https://www.omicsdi.org/dataset/biomodels/{$id}", "name": "BioModels through OmicsDI", "description": "BioModels through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "BIOMD0000000048", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BIOMD0000000048", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 43, "prefix": "icd", "mirId": "MIR:00000009", "name": "ICD", "pattern": "^[A-Z]\\d+(\\.[-\\d+])?$", "description": "The International Classification of Diseases is the international standard diagnostic classification for all general epidemiological and many health management purposes.", "created": "2019-06-11T14:15:31.658+0000", "modified": "2019-06-11T14:15:31.658+0000", "resources": [{"id": 45, "mirId": "MIR:00100016", "urlPattern": "http://apps.who.int/classifications/icd10/browse/2010/en#/{$id}", "name": "International Statistical Classification of Diseases and Related Health Problems", "description": "International Statistical Classification of Diseases and Related Health Problems", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "C34", "resourceHomeUrl": "http://www.who.int/classifications/icd/en/", "institution": {"id": 44, "name": "German Institute of Medical Documentation and Information", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C34", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 46, "prefix": "intact", "mirId": "MIR:00000010", "name": "IntAct", "pattern": "^EBI\\-[0-9]+$", "description": "IntAct provides a freely available, open source database system and analysis tools for protein interaction data.", "created": "2019-06-11T14:15:31.920+0000", "modified": "2019-06-11T14:15:31.920+0000", "resources": [{"id": 47, "mirId": "MIR:00100017", "urlPattern": "https://www.ebi.ac.uk/intact/interaction/{$id}", "name": "IntAct at EBI", "description": "IntAct at EBI", "official": true, "providerCode": "ebi", "sampleId": "EBI-2307691", "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EBI-2307691", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 48, "prefix": "interpro", "mirId": "MIR:00000011", "name": "InterPro", "pattern": "^IPR\\d{6}$", "description": "InterPro is a database of protein families, domains and functional sites in which identifiable features found in known proteins can be applied to unknown protein sequences.", "created": "2019-06-11T14:15:32.153+0000", "modified": "2019-06-11T14:15:32.153+0000", "resources": [{"id": 49, "mirId": "MIR:00100018", "urlPattern": "https://www.ebi.ac.uk/interpro/entry/{$id}", "name": "InterPro", "description": "InterPro", "official": true, "providerCode": "ebi", "sampleId": "IPR000100", "resourceHomeUrl": "https://www.ebi.ac.uk/interpro/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 50, "mirId": "MIR:00100697", "urlPattern": "http://interpro.bio2rdf.org/describe/?url=http://bio2rdf.org/interpro:{$id}", "name": "Bio2RDF", "description": "Bio2RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "IPR000100", "resourceHomeUrl": "http://interpro.bio2rdf.org/fct/", "institution": {"id": 33, "name": "Bio2RDF.org", "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "IPR000100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 51, "prefix": "kegg.pathway", "mirId": "MIR:00000012", "name": "KEGG Pathway", "pattern": "^\\w{2,4}\\d{5}$", "description": "KEGG PATHWAY is a collection of manually drawn pathway maps representing our knowledge on the molecular interaction and reaction networks.", "created": "2019-06-11T14:15:32.480+0000", "modified": "2019-06-11T14:15:32.480+0000", "resources": [{"id": 52, "mirId": "MIR:00100020", "urlPattern": "https://www.kegg.jp/entry/{$id}", "name": "KEGG PATHWAY Database", "description": "KEGG PATHWAY Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "hsa00620", "resourceHomeUrl": "https://www.genome.jp/kegg/pathway.html", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "hsa00620", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 53, "prefix": "kegg.compound", "mirId": "MIR:00000013", "name": "KEGG Compound", "pattern": "^C\\d+$", "description": "KEGG compound contains our knowledge on the universe of chemical substances that are relevant to life.", "created": "2019-06-11T14:15:32.730+0000", "modified": "2019-06-11T14:15:32.730+0000", "resources": [{"id": 54, "mirId": "MIR:00100021", "urlPattern": "https://www.kegg.jp/entry/{$id}", "name": "KEGG LIGAND Database", "description": "KEGG LIGAND Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "C12345", "resourceHomeUrl": "https://www.genome.jp/kegg/ligand.html", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C12345", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 55, "prefix": "kegg.reaction", "mirId": "MIR:00000014", "name": "KEGG Reaction", "pattern": "^R\\d+$", "description": "KEGG reaction contains our knowledge on the universe of reactions that are relevant to life.", "created": "2019-06-11T14:15:32.930+0000", "modified": "2019-06-11T14:15:32.930+0000", "resources": [{"id": 56, "mirId": "MIR:00100022", "urlPattern": "https://www.kegg.jp/entry/{$id}", "name": "KEGG Reaction Database", "description": "KEGG Reaction Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "R00100", "resourceHomeUrl": "https://www.genome.jp/kegg/reaction/", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "R00100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 57, "prefix": "pubmed", "mirId": "MIR:00000015", "name": "PubMed", "pattern": "^\\d+$", "description": "PubMed is a service of the U.S. National Library of Medicine that includes citations from MEDLINE and other life science journals for biomedical articles back to the 1950s.", "created": "2019-06-11T14:15:33.142+0000", "modified": "2019-06-11T14:15:33.142+0000", "resources": [{"id": 58, "mirId": "MIR:00100023", "urlPattern": "https://www.ncbi.nlm.nih.gov/pubmed/{$id}", "name": "NCBI PubMed", "description": "NCBI PubMed", "official": true, "providerCode": "ncbi", "sampleId": "16333295", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/PubMed/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 60, "mirId": "MIR:00100064", "urlPattern": "http://www.hubmed.org/display.cgi?uids={$id}", "name": "HubMed", "description": "HubMed", "official": false, "providerCode": "hubmed", "sampleId": "16333295", "resourceHomeUrl": "http://www.hubmed.org/", "institution": {"id": 59, "name": "University Health Network", "homeUrl": "https://www.uhn.ca/", "description": "The University Health Network has grown out of a series of mergers between our current hospitals, as we have adjusted and change to accommodate our growing and changing patient community in and around the GTA.", "rorId": "https://ror.org/042xt5161", "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 62, "mirId": "MIR:00100497", "urlPattern": "http://europepmc.org/abstract/MED/{$id}", "name": "Europe PMC", "description": "Europe PMC", "official": false, "providerCode": "epmc", "sampleId": "16333295", "resourceHomeUrl": "http://europepmc.org/", "institution": {"id": 61, "name": "Europe PubMed Central partners", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 64, "mirId": "MIR:00100745", "urlPattern": "http://linkedlifedata.com/resource/pubmed/id/{$id}", "name": "PubMed through Linkedlife data", "description": "PubMed through Linkedlife data", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "23735196", "resourceHomeUrl": "http://linkedlifedata.com/", "institution": {"id": 63, "name": "Linkedlifedata, Ontotext, Sofia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "BG", "countryName": "Bulgaria"}}, "location": {"countryCode": "BG", "countryName": "Bulgaria"}, "deprecated": false, "deprecationDate": null}, {"id": 2466, "mirId": "MIR:00000788", "urlPattern": "https://scholia.toolforge.org/pubmed/{$id}", "name": "Scholia", "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", "official": false, "providerCode": "scholia", "sampleId": "29029422", "resourceHomeUrl": "https://scholia.toolforge.org/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "16333295", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 65, "prefix": "mim", "mirId": "MIR:00000016", "name": "OMIM", "pattern": "^[*#+%^]?\\d{6}$", "description": "Online Mendelian Inheritance in Man is a catalog of human genes and genetic disorders.", "created": "2019-06-11T14:15:33.878+0000", "modified": "2019-06-11T14:15:33.878+0000", "resources": [{"id": 67, "mirId": "MIR:00100024", "urlPattern": "https://omim.org/entry/{$id}", "name": "OMIM at John Hopkins", "description": "OMIM at John Hopkins", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "603903", "resourceHomeUrl": "https://omim.org/", "institution": {"id": 66, "name": "Johns Hopkins University, Baltimore, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 68, "mirId": "MIR:00100777", "urlPattern": "http://mirror.omim.org/entry/{$id}", "name": "OMIM mirror at John Hopkins", "description": "OMIM mirror at John Hopkins", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "603903", "resourceHomeUrl": "http://mirror.omim.org/", "institution": {"id": 66, "name": "Johns Hopkins University, Baltimore, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "603903", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 69, "prefix": "pirsf", "mirId": "MIR:00000017", "name": "PIRSF", "pattern": "^PIRSF\\d{6}$", "description": "The PIR SuperFamily concept is being used as a guiding principle to provide comprehensive and non-overlapping clustering of UniProtKB sequences into a hierarchical order to reflect their evolutionary relationships.", "created": "2019-06-11T14:15:34.294+0000", "modified": "2019-06-11T14:15:34.294+0000", "resources": [{"id": 71, "mirId": "MIR:00100025", "urlPattern": "https://pir.georgetown.edu/cgi-bin/ipcSF?id={$id}", "name": "PIRSF", "description": "PIRSF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PIRSF000100", "resourceHomeUrl": "https://pir.georgetown.edu/", "institution": {"id": 70, "name": "Georgetown University Medical Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PIRSF000100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 72, "prefix": "reactome", "mirId": "MIR:00000018", "name": "Reactome", "pattern": "(^R-[A-Z]{3}-\\d+(-\\d+)?(\\.\\d+)?$)|(^REACT_\\d+(\\.\\d+)?$)", "description": "The Reactome project is a collaboration to develop a curated resource of core pathways and reactions in human biology.", "created": "2019-06-11T14:15:34.555+0000", "modified": "2019-06-11T14:15:34.555+0000", "resources": [{"id": 74, "mirId": "MIR:00100026", "urlPattern": "https://reactome.org/content/detail/{$id}", "name": "Reactome, a curated knowledgebase of biological pathways", "description": "Reactome, a curated knowledgebase of biological pathways", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "R-HSA-201451", "resourceHomeUrl": "https://www.reactome.org/", "institution": {"id": 73, "name": "Ontario Institute for Cancer Research, NYU Medical School, Cold Spring Harbor Laboratory and European Bioinformatics Institute", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "R-HSA-201451", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 78, "prefix": "pdb", "mirId": "MIR:00000020", "name": "Protein Data Bank", "pattern": "^[0-9][A-Za-z0-9]{3}$", "description": "The Protein Data Bank is the single worldwide archive of structural data of biological macromolecules.", "created": "2019-06-11T14:15:35.100+0000", "modified": "2019-06-11T14:15:35.100+0000", "resources": [{"id": 83, "mirId": "MIR:00100096", "urlPattern": "http://proteopedia.org/wiki/index.php/{$id}", "name": "Proteopedia", "description": "Proteopedia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2gc4", "resourceHomeUrl": "http://www.proteopedia.org/", "institution": {"id": 82, "name": "Weizmann Institute of Science", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IL", "countryName": "Israel"}}, "location": {"countryCode": "IL", "countryName": "Israel"}, "deprecated": false, "deprecationDate": null}, {"id": 86, "mirId": "MIR:00100166", "urlPattern": "https://www.ebi.ac.uk/pdbsum/{$id}", "name": "Protein Databank through PDBsum", "description": "Protein Databank through PDBsum", "official": false, "providerCode": "ebi", "sampleId": "2gc4", "resourceHomeUrl": "https://www.ebi.ac.uk/pdbsum/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 80, "mirId": "MIR:00100029", "urlPattern": "https://www.rcsb.org/structure/{$id}", "name": "RCSB PDB", "description": "RCSB PDB", "official": false, "providerCode": "rcsb", "sampleId": "2gc4", "resourceHomeUrl": "https://www.rcsb.org/", "institution": {"id": 79, "name": "Rutgers, The State University of New Jersey", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 85, "mirId": "MIR:00100165", "urlPattern": "https://pdbj.org/mine/summary/{$id}", "name": "Protein Data Bank Japan (PDBj)", "description": "Protein Data Bank Japan (PDBj)", "official": false, "providerCode": "pdbj", "sampleId": "2gc4", "resourceHomeUrl": "http://www.pdbj.org/", "institution": {"id": 84, "name": "Institute for Protein Research, Osaka University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}, {"id": 81, "mirId": "MIR:00100037", "urlPattern": "https://www.ebi.ac.uk/pdbe/entry/pdb/{$id}", "name": "Protein Databank in Europe (PDBe)", "description": "Protein Databank in Europe (PDBe)", "official": false, "providerCode": "pdbe", "sampleId": "2gc4", "resourceHomeUrl": "http://www.pdbe.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 3061, "mirId": "MIR:00001018", "urlPattern": "https://www.wwpdb.org/pdb?id={$id}", "name": "Worldwide Protein Data Bank", "description": "The Worldwide PDB (wwPDB) organization manages the PDB archive and ensures that the PDB is freely and publicly available to the global community.", "official": true, "providerCode": "wwpdb", "sampleId": "2g4c", "resourceHomeUrl": "https://www.wwpdb.org/", "institution": {"id": 3060, "name": "Worldwide Protein Data Bank", "homeUrl": "https://www.wwpdb.org/", "description": "The Worldwide PDB (wwPDB) organization manages the PDB archive and ensures that the PDB is freely and publicly available to the global community.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2gc4", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 87, "prefix": "go", "mirId": "MIR:00000022", "name": "Gene Ontology", "pattern": "^GO:\\d{7}$", "description": "The Gene Ontology project provides a controlled vocabulary to describe gene and gene product attributes in any organism.", "created": "2019-06-11T14:15:35.970+0000", "modified": "2019-06-11T14:15:35.970+0000", "resources": [{"id": 88, "mirId": "MIR:00100012", "urlPattern": "https://www.ebi.ac.uk/QuickGO/GTerm?id=GO:{$id}", "name": "QuickGO (Gene Ontology browser)", "description": "QuickGO (Gene Ontology browser)", "official": false, "providerCode": "quickgo", "sampleId": "0006915", "resourceHomeUrl": "https://www.ebi.ac.uk/QuickGO/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 90, "mirId": "MIR:00100013", "urlPattern": "http://amigo.geneontology.org/amigo/term/GO:{$id}", "name": "AmiGO 2", "description": "AmiGO 2", "official": true, "providerCode": "amigo", "sampleId": "0006915", "resourceHomeUrl": "http://amigo.geneontology.org/", "institution": {"id": 89, "name": "The Gene Ontology Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 92, "mirId": "MIR:00100015", "urlPattern": "http://www.informatics.jax.org/searches/GO.cgi?id=GO:{$id}", "name": "GO Browser", "description": "GO Browser", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0006915", "resourceHomeUrl": "http://www.informatics.jax.org/searches/GO_form.shtml", "institution": {"id": 91, "name": "The Jackson Laboratory", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 93, "mirId": "MIR:00100237", "urlPattern": "http://purl.bioontology.org/ontology/GO/GO:{$id}", "name": "GO through BioPortal", "description": "GO through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0006915", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/GO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 95, "mirId": "MIR:00100585", "urlPattern": "http://www.pantherdb.org/panther/category.do?categoryAcc=GO:{$id}", "name": "GO through PANTHER", "description": "GO through PANTHER", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0000003", "resourceHomeUrl": "http://www.pantherdb.org/", "institution": {"id": 94, "name": "Keck School of Medicine, University of Southern California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 96, "mirId": "MIR:00100675", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/go/terms?obo_id=GO:{$id}", "name": "GO through OLS", "description": "GO through OLS", "official": false, "providerCode": "ols", "sampleId": "0006915", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/go", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0006915", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 97, "prefix": "sgd", "mirId": "MIR:00000023", "name": "SGD", "pattern": "^((S\\d+$)|(Y[A-Z]{2}\\d{3}[a-zA-Z](\\-[A-Z])?))$", "description": "The Saccharomyces Genome Database (SGD) project collects information and maintains a database of the molecular biology of the yeast Saccharomyces cerevisiae.", "created": "2019-06-11T14:15:37.056+0000", "modified": "2019-06-11T14:15:37.056+0000", "resources": [{"id": 99, "mirId": "MIR:00100033", "urlPattern": "https://www.yeastgenome.org/locus/{$id}", "name": "SGD", "description": "SGD", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "S000003909", "resourceHomeUrl": "https://www.yeastgenome.org/", "institution": {"id": 98, "name": "Stanford University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 100, "mirId": "MIR:00100703", "urlPattern": "http://sgd.bio2rdf.org/describe/?url=http://bio2rdf.org/sgd:{$id}", "name": "Bio2RDF", "description": "Bio2RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "S000003909", "resourceHomeUrl": "http://sgd.bio2rdf.org/fct", "institution": {"id": 33, "name": "Bio2RDF.org", "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 102, "mirId": "MIR:00100892", "urlPattern": "https://bioentity.link/#/lexicon/public/{$id}", "name": "SGD through BioEntity Link", "description": "SGD through BioEntity Link", "official": false, "providerCode": "bioentitylink", "sampleId": "S000003909", "resourceHomeUrl": "https://bioentity.link/", "institution": {"id": 101, "name": "InSilico Inc, in Eugene, Oregon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 104, "mirId": "MIR:00100906", "urlPattern": "https://www.alliancegenome.org/gene/SGD:{$id}", "name": "SGD through the Alliance of Genome Resources", "description": "SGD through the Alliance of Genome Resources", "official": false, "providerCode": "agr", "sampleId": "S000003909", "resourceHomeUrl": "https://www.alliancegenome.org", "institution": {"id": 103, "name": "Alliance of Genome Resources", "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "S000003909", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 105, "prefix": "sbo", "mirId": "MIR:00000024", "name": "Systems Biology Ontology", "pattern": "^SBO:\\d{7}$", "description": "The goal of the Systems Biology Ontology is to develop controlled vocabularies and ontologies tailored specifically for the kinds of problems being faced in Systems Biology, especially in the context of computational modeling. SBO is a project of the BioModels.net effort.", "created": "2019-06-11T14:15:37.756+0000", "modified": "2019-06-11T14:15:37.756+0000", "resources": [{"id": 108, "mirId": "MIR:00100242", "urlPattern": "http://purl.bioontology.org/ontology/SBO/SBO:{$id}", "name": "SBO through BioPortal", "description": "SBO through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0000262", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/SBO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 106, "mirId": "MIR:00100034", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100034/{$id}", "name": "SBO", "description": "SBO", "official": false, "providerCode": "biomodels.sbo", "sampleId": "0000262", "resourceHomeUrl": "https://www.ebi.ac.uk/sbo/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": true, "deprecationDate": "2022-11-10T10:15:12.911+0000"}, {"id": 107, "mirId": "MIR:00100176", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/sbo/terms?obo_id=SBO:{$id}", "name": "SBO through OLS", "description": "SBO through OLS", "official": true, "providerCode": "ols", "sampleId": "0000262", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/sbo", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000262", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 109, "prefix": "kegg.drug", "mirId": "MIR:00000025", "name": "KEGG Drug", "pattern": "^D\\d+$", "description": "KEGG DRUG contains chemical structures of drugs and additional information such as therapeutic categories and target molecules.", "created": "2019-06-11T14:15:38.268+0000", "modified": "2019-06-11T14:15:38.268+0000", "resources": [{"id": 110, "mirId": "MIR:00100035", "urlPattern": "https://www.kegg.jp/entry/{$id}", "name": "KEGG DRUG Database", "description": "KEGG DRUG Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "D00123", "resourceHomeUrl": "https://www.genome.jp/kegg/drug/", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "D00123", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 111, "prefix": "kegg.glycan", "mirId": "MIR:00000026", "name": "KEGG Glycan", "pattern": "^G\\d+$", "description": "KEGG GLYCAN, a part of the KEGG LIGAND database, is a collection of experimentally determined glycan structures. It contains all unique structures taken from CarbBank, structures entered from recent publications, and structures present in KEGG pathways.", "created": "2019-06-11T14:15:38.579+0000", "modified": "2019-06-11T14:15:38.579+0000", "resources": [{"id": 112, "mirId": "MIR:00100036", "urlPattern": "https://www.kegg.jp/entry/{$id}", "name": "KEGG GLYCAN Database", "description": "KEGG GLYCAN Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "G00123", "resourceHomeUrl": "https://www.genome.jp/kegg/glycan/", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "G00123", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 113, "prefix": "wb", "mirId": "MIR:00000027", "name": "WormBase", "pattern": "^WB[A-Z][a-z]+\\d+$", "description": "WormBase is an online bioinformatics database of the biology and genome of the model organism Caenorhabditis elegans and other nematodes. It is used by the C. elegans research community both as an information resource and as a mode to publish and distribute their results. This collection references WormBase-accessioned entities.", "created": "2019-06-11T14:15:38.790+0000", "modified": "2019-06-11T14:15:38.790+0000", "resources": [{"id": 114, "mirId": "MIR:00100038", "urlPattern": "https://www.wormbase.org/get?name={$id}", "name": "WormBase", "description": "WormBase", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "WBGene00000001", "resourceHomeUrl": "https://www.wormbase.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 115, "mirId": "MIR:00100890", "urlPattern": "https://bioentity.link/#/lexicon/public/{$id}", "name": "WormBase through BioEntity Link", "description": "WormBase through BioEntity Link", "official": false, "providerCode": "bioentitylink", "sampleId": "WBGene00021291", "resourceHomeUrl": "https://bioentity.link/", "institution": {"id": 101, "name": "InSilico Inc, in Eugene, Oregon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 116, "mirId": "MIR:00100901", "urlPattern": "https://www.alliancegenome.org/gene/WB:{$id}", "name": "WormBase through the Alliance of Genome Resources", "description": "WormBase through the Alliance of Genome Resources", "official": false, "providerCode": "agr", "sampleId": "WBGene00000001", "resourceHomeUrl": "https://www.alliancegenome.org", "institution": {"id": 103, "name": "Alliance of Genome Resources", "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "WBGene00000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 75, "prefix": "doi", "mirId": "MIR:00000019", "name": "DOI", "pattern": "^(doi\\:)?10\\.\\d+/.*$", "description": "The Digital Object Identifier System is for identifying content objects in the digital environment.", "created": "2019-06-11T14:15:34.841+0000", "modified": "2023-01-05T18:09:18.209+0000", "resources": [{"id": 77, "mirId": "MIR:00100010", "urlPattern": "https://doi.org/{$id}", "name": "Digital Object Identifier", "description": "Digital Object Identifier", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "10.1038/nbt1156", "resourceHomeUrl": "https://www.doi.org/", "institution": {"id": 76, "name": "International DOI Foundation", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 2462, "mirId": "MIR:00000793", "urlPattern": "https://scholia.toolforge.org/doi/{$id}", "name": "Scholia", "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", "official": false, "providerCode": "scholia", "sampleId": "10.1186/S13321-016-0161-3", "resourceHomeUrl": "https://scholia.toolforge.org/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "10.1038/nbt1156", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 7, "prefix": "ensembl", "mirId": "MIR:00000003", "name": "Ensembl", "pattern": "^((ENS[FPTG]\\d{11}(\\.\\d+)?)|(FB\\w{2}\\d{7})|(Y[A-Z]{2}\\d{3}[a-zA-Z](\\-[A-Z])?)|([A-Z_a-z0-9]+(\\.)?(t)?(\\d+)?([a-z])?))$", "description": "Ensembl is a joint project between EMBL - EBI and the Sanger Institute to develop a software system which produces and maintains automatic annotation on selected eukaryotic genomes. This collections also references outgroup organisms.", "created": "2019-06-11T14:15:27.869+0000", "modified": "2023-01-09T13:51:48.046+0000", "resources": [{"id": 9, "mirId": "MIR:00100011", "urlPattern": "https://www.ensembl.org/id/{$id}", "name": "Ensembl at Sanger/EMBL-EBI", "description": "Ensembl at Sanger/EMBL-EBI", "official": true, "providerCode": "ebi", "sampleId": "ENSG00000139618", "resourceHomeUrl": "https://www.ensembl.org/", "institution": {"id": 8, "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 10, "mirId": "MIR:00100561", "urlPattern": "http://uswest.ensembl.org/id/{$id}", "name": "Ensembl US West mirror", "description": "Ensembl US West mirror", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ENSG00000139618", "resourceHomeUrl": "http://uswest.ensembl.org/", "institution": {"id": 8, "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 11, "mirId": "MIR:00100562", "urlPattern": "http://useast.ensembl.org/id/{$id}", "name": "Ensembl US East mirror", "description": "Ensembl US East mirror", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ENSG00000139618", "resourceHomeUrl": "http://useast.ensembl.org/", "institution": {"id": 8, "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 12, "mirId": "MIR:00100563", "urlPattern": "http://asia.ensembl.org/id/{$id}", "name": "Ensembl Asia mirror", "description": "Ensembl Asia mirror", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ENSG00000139618", "resourceHomeUrl": "http://asia.ensembl.org/", "institution": {"id": 8, "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "SG", "countryName": "Singapore"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ENSG00000139618", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 117, "prefix": "pfam", "mirId": "MIR:00000028", "name": "Pfam", "pattern": "^PF\\d{5}$", "description": "The Pfam database contains information about protein domains and families. For each entry a protein sequence alignment and a Hidden Markov Model is stored.", "created": "2019-06-11T14:15:39.270+0000", "modified": "2019-06-11T14:15:39.270+0000", "resources": [{"id": 118, "mirId": "MIR:00100685", "urlPattern": "https://pfam.xfam.org/family/{$id}", "name": "Pfam at EMBL-EBI", "description": "Pfam at EMBL-EBI", "official": true, "providerCode": "ebi", "sampleId": "PF01234", "resourceHomeUrl": "https://pfam.xfam.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PF01234", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 119, "prefix": "insdc", "mirId": "MIR:00000029", "name": "Nucleotide Sequence Database", "pattern": "^([A-Z]\\d{5}|[A-Z]{2}\\d{6}|[A-Z]{4}\\d{8}|[A-J][A-Z]{2}\\d{5})(\\.\\d+)?$", "description": "The International Nucleotide Sequence Database Collaboration (INSDC) consists of a joint effort to collect and disseminate databases containing DNA and RNA sequences.", "created": "2019-06-11T14:15:39.496+0000", "modified": "2019-06-11T14:15:39.496+0000", "resources": [{"id": 120, "mirId": "MIR:00100049", "urlPattern": "https://www.ncbi.nlm.nih.gov/nuccore/{$id}", "name": "INSDC through GenBank", "description": "INSDC through GenBank", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "X58356", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/Genbank/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 122, "mirId": "MIR:00100066", "urlPattern": "http://getentry.ddbj.nig.ac.jp/getentry?database=ddbj&accession_number={$id}", "name": "INSDC through DDBJ", "description": "INSDC through DDBJ", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "X58356", "resourceHomeUrl": "http://www.ddbj.nig.ac.jp/", "institution": {"id": 121, "name": "DNA Data Bank of Japan, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}, {"id": 123, "mirId": "MIR:00100487", "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", "name": "INSDC through European Nucleotide Archive (ENA)", "description": "INSDC through European Nucleotide Archive (ENA)", "official": false, "providerCode": "ebi", "sampleId": "X58356", "resourceHomeUrl": "https://www.ebi.ac.uk/ena/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 124, "mirId": "MIR:00100490", "urlPattern": "https://www.ncbi.nlm.nih.gov/nuccore/{$id}", "name": "INSDC through Nucleotide database at NCBI", "description": "INSDC through Nucleotide database at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "X58356", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/nuccore/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "X58356", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 125, "prefix": "fb", "mirId": "MIR:00000030", "name": "FlyBase", "pattern": "^FB\\w{2}\\d{7}$", "description": "FlyBase is the database of the Drosophila Genome Projects and of associated literature.", "created": "2019-06-11T14:15:40.188+0000", "modified": "2019-06-11T14:15:40.188+0000", "resources": [{"id": 127, "mirId": "MIR:00100050", "urlPattern": "http://flybase.org/reports/{$id}.html", "name": "The FlyBase Database", "description": "The FlyBase Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "FBgn0011293", "resourceHomeUrl": "http://flybase.org/", "institution": {"id": 126, "name": "The FlyBase Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 128, "mirId": "MIR:00100893", "urlPattern": "https://bioentity.link/#/lexicon/public/{$id}", "name": "FlyBase through BioEntity Link", "description": "FlyBase through BioEntity Link", "official": false, "providerCode": "bioentitylink", "sampleId": "FBgn0011293", "resourceHomeUrl": "https://bioentity.link/", "institution": {"id": 101, "name": "InSilico Inc, in Eugene, Oregon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 129, "mirId": "MIR:00100904", "urlPattern": "https://www.alliancegenome.org/gene/FB:{$id}", "name": "FlyBase through the Alliance of Genome Resources", "description": "FlyBase through the Alliance of Genome Resources", "official": false, "providerCode": "agr", "sampleId": "FBgn0011293", "resourceHomeUrl": "https://www.alliancegenome.org", "institution": {"id": 103, "name": "Alliance of Genome Resources", "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "FBgn0011293", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 130, "prefix": "wormpep", "mirId": "MIR:00000031", "name": "Wormpep", "pattern": "^CE\\d{5}$", "description": "Wormpep contains the predicted proteins from the Caenorhabditis elegans genome sequencing project.", "created": "2019-06-11T14:15:40.709+0000", "modified": "2019-06-11T14:15:40.709+0000", "resources": [{"id": 132, "mirId": "MIR:00100051", "urlPattern": "https://www.wormbase.org/db/seq/protein?name={$id}", "name": "Wormpep (Master)", "description": "Wormpep (Master)", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "CE28239", "resourceHomeUrl": "https://www.wormbase.org/db/seq/protein", "institution": {"id": 131, "name": "Cold Spring Harbor Laboratory", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CE28239", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 133, "prefix": "prosite", "mirId": "MIR:00000032", "name": "PROSITE", "pattern": "^PS\\d{5}$", "description": "PROSITE consists of documentation entries describing protein domains, families and functional sites as well as associated patterns and profiles to identify them.", "created": "2019-06-11T14:15:40.983+0000", "modified": "2019-06-11T14:15:40.983+0000", "resources": [{"id": 135, "mirId": "MIR:00100056", "urlPattern": "https://prosite.expasy.org/{$id}", "name": "ExPASy PROSITE", "description": "ExPASy PROSITE", "official": false, "providerCode": "expasy", "sampleId": "PS00001", "resourceHomeUrl": "https://www.expasy.org/prosite/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PS00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 136, "prefix": "pubchem.substance", "mirId": "MIR:00000033", "name": "PubChem-substance", "pattern": "^\\d+$", "description": "PubChem provides information on the biological activities of small molecules. It is a component of NIH's Molecular Libraries Roadmap Initiative. PubChem Substance archives chemical substance records.", "created": "2019-06-11T14:15:41.269+0000", "modified": "2019-06-11T14:15:41.269+0000", "resources": [{"id": 137, "mirId": "MIR:00100058", "urlPattern": "https://pubchem.ncbi.nlm.nih.gov/substance/{$id}", "name": "NCBI PubChem Substance", "description": "NCBI PubChem Substance", "official": false, "providerCode": "ncbi", "sampleId": "100101", "resourceHomeUrl": "https://pubchem.ncbi.nlm.nih.gov/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "100101", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 138, "prefix": "pubchem.compound", "mirId": "MIR:00000034", "name": "PubChem-compound", "pattern": "^\\d+$", "description": "PubChem provides information on the biological activities of small molecules. It is a component of NIH's Molecular Libraries Roadmap Initiative. PubChem Compound archives chemical structures and records.", "created": "2019-06-11T14:15:41.493+0000", "modified": "2019-06-11T14:15:41.493+0000", "resources": [{"id": 139, "mirId": "MIR:00100059", "urlPattern": "https://pubchem.ncbi.nlm.nih.gov/compound/{$id}", "name": "NCBI PubChem Compound", "description": "NCBI PubChem Compound", "official": true, "providerCode": "ncbi", "sampleId": "100101", "resourceHomeUrl": "https://pubchem.ncbi.nlm.nih.gov/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 2449, "mirId": "MIR:00000698", "urlPattern": "https://scholia.toolforge.org/pubchem/{$id}", "name": "Scholia", "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", "official": false, "providerCode": "scholia", "sampleId": "14123361", "resourceHomeUrl": "https://scholia.toolforge.org/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "100101", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 140, "prefix": "arxiv", "mirId": "MIR:00000035", "name": "arXiv", "pattern": "^(\\w+(\\-\\w+)?(\\.\\w+)?)?\\d{4,7}(\\.\\d+(v\\d+)?)?$", "description": "arXiv is an e-print service in the fields of physics, mathematics, non-linear science, computer science, and quantitative biology.", "created": "2019-06-11T14:15:41.707+0000", "modified": "2019-06-11T14:15:41.707+0000", "resources": [{"id": 142, "mirId": "MIR:00100060", "urlPattern": "https://arxiv.org/abs/{$id}", "name": "Cornell University arXiv", "description": "Cornell University arXiv", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0807.4956v1", "resourceHomeUrl": "https://arxiv.org/", "institution": {"id": 141, "name": "Cornell University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0807.4956v1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 143, "prefix": "arrayexpress", "mirId": "MIR:00000036", "name": "ArrayExpress", "pattern": "^[AEP]-\\w{4}-\\d+$", "description": "ArrayExpress is a public repository for microarray data, which is aimed at storing MIAME-compliant data in accordance with Microarray Gene Expression Data (MGED) recommendations.", "created": "2019-06-11T14:15:41.970+0000", "modified": "2019-06-11T14:15:41.970+0000", "resources": [{"id": 144, "mirId": "MIR:00100061", "urlPattern": "https://www.ebi.ac.uk/arrayexpress/experiments/{$id}", "name": "ArrayExpress", "description": "ArrayExpress", "official": true, "providerCode": "ebi", "sampleId": "E-MEXP-1712", "resourceHomeUrl": "https://www.ebi.ac.uk/arrayexpress/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 145, "mirId": "MIR:00100854", "urlPattern": "https://www.omicsdi.org/dataset/arrayexpress-repository/{$id}", "name": "ArrayExpress through OmicsDI", "description": "ArrayExpress through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "E-MEXP-1712", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "E-MEXP-1712", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 146, "prefix": "mgi", "mirId": "MIR:00000037", "name": "Mouse Genome Database", "pattern": "^MGI:\\d+$", "description": "The Mouse Genome Database (MGD) project includes data on gene characterization, nomenclature, mapping, gene homologies among mammals, sequence links, phenotypes, allelic variants and mutants, and strain data.", "created": "2019-06-11T14:15:42.331+0000", "modified": "2019-06-11T14:15:42.331+0000", "resources": [{"id": 147, "mirId": "MIR:00100062", "urlPattern": "http://www.informatics.jax.org/accession/MGI:{$id}", "name": "Mouse Genome Informatics Database", "description": "Mouse Genome Informatics Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "2442292", "resourceHomeUrl": "http://www.informatics.jax.org/", "institution": {"id": 91, "name": "The Jackson Laboratory", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 148, "mirId": "MIR:00100894", "urlPattern": "https://bioentity.link/#/lexicon/public/MGI:{$id}", "name": "MGD through BioEntity Link", "description": "MGD through BioEntity Link", "official": false, "providerCode": "bioentitylink", "sampleId": "2442292", "resourceHomeUrl": "https://bioentity.link/", "institution": {"id": 101, "name": "InSilico Inc, in Eugene, Oregon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 149, "mirId": "MIR:00100903", "urlPattern": "https://www.alliancegenome.org/gene/MGI:{$id}", "name": "MGI through the Alliance of Genome Resources", "description": "MGI through the Alliance of Genome Resources", "official": false, "providerCode": "agr", "sampleId": "2442292", "resourceHomeUrl": "https://www.alliancegenome.org", "institution": {"id": 103, "name": "Alliance of Genome Resources", "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2442292", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 150, "prefix": "sabiork.reaction", "mirId": "MIR:00000038", "name": "SABIO-RK Reaction", "pattern": "^\\d+$", "description": "SABIO-RK is a relational database system that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. The reaction data set provides information regarding the organism in which a reaction is observed, pathways in which it participates, and links to further information.", "created": "2019-06-11T14:15:42.838+0000", "modified": "2019-06-11T14:15:42.838+0000", "resources": [{"id": 152, "mirId": "MIR:00100063", "urlPattern": "http://sabiork.h-its.org/newSearch?q=sabioreactionid:{$id}", "name": "SABIO-RK reaction", "description": "SABIO-RK reaction", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "75", "resourceHomeUrl": "http://sabiork.h-its.org/", "institution": {"id": 151, "name": "Heidelberg Institute for Theoretical Studies (HITS gGmbH)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "75", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 156, "prefix": "tcdb", "mirId": "MIR:00000040", "name": "Transport Classification Database", "pattern": "^\\d+(\\.[A-Z])?(\\.\\d+)?(\\.\\d+)?(\\.\\d+)?$", "description": "The database details a comprehensive IUBMB approved classification system for membrane transport proteins known as the Transporter Classification (TC) system. The TC system is analogous to the Enzyme Commission (EC) system for classification of enzymes, but incorporates phylogenetic information additionally.", "created": "2019-06-11T14:15:43.342+0000", "modified": "2019-06-11T14:15:43.342+0000", "resources": [{"id": 158, "mirId": "MIR:00100068", "urlPattern": "http://www.tcdb.org/search/result.php?tc={$id}", "name": "TCDB", "description": "TCDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "5.A.1.1.1", "resourceHomeUrl": "http://www.tcdb.org/", "institution": {"id": 157, "name": "Division of Biological Sciences, UCSD", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5.A.1.1.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 159, "prefix": "uniparc", "mirId": "MIR:00000041", "name": "UniParc", "pattern": "^UPI[A-F0-9]{10}$", "description": "The UniProt Archive (UniParc) is a database containing non-redundant protein sequence information from many sources. Each unique sequence is given a stable and unique identifier (UPI) making it possible to identify the same protein from different source databases.", "created": "2019-06-11T14:15:43.590+0000", "modified": "2019-06-11T14:15:43.590+0000", "resources": [{"id": 160, "mirId": "MIR:00100069", "urlPattern": "https://www.ebi.ac.uk/cgi-bin/dbfetch?db=uniparc&id={$id}", "name": "UniProt Archive (UniParc)", "description": "UniProt Archive (UniParc)", "official": false, "providerCode": "ebi", "sampleId": "UPI000000000A", "resourceHomeUrl": "https://www.ebi.ac.uk/uniparc/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 161, "mirId": "MIR:00100476", "urlPattern": "https://www.uniprot.org/uniparc/{$id}", "name": "UniParc through UniProt", "description": "UniParc through UniProt", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "UPI000000000A", "resourceHomeUrl": "http://www.uniprot.org/uniparc/", "institution": {"id": 24, "name": "UniProt Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "UPI000000000A", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 162, "prefix": "mint", "mirId": "MIR:00000042", "name": "MINT", "pattern": "^MINT\\-\\d{1,7}$", "description": "The Molecular INTeraction database (MINT) stores, in a structured format, information about molecular interactions by extracting experimental details from work published in peer-reviewed journals.", "created": "2019-06-11T14:15:43.925+0000", "modified": "2019-06-11T14:15:43.925+0000", "resources": [{"id": 164, "mirId": "MIR:00100070", "urlPattern": "http://mint.bio.uniroma2.it/mint/search/inFrameInteraction.do?interactionAc={$id}", "name": "The Molecular INTeraction database (MINT)", "description": "The Molecular INTeraction database (MINT)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MINT-10000", "resourceHomeUrl": "http://mint.bio.uniroma2.it/mint/", "institution": {"id": 163, "name": "University of Rome Tor Vergata, Rome", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}, {"id": 165, "mirId": "MIR:00100654", "urlPattern": "https://www.ebi.ac.uk/intact/query/interaction_id:{$id}", "name": "MINT subset through IntAct", "description": "MINT subset through IntAct", "official": false, "providerCode": "ebi", "sampleId": "MINT-7905142", "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MINT-10000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 166, "prefix": "dip", "mirId": "MIR:00000044", "name": "Database of Interacting Proteins", "pattern": "^DIP(\\:)?\\-\\d{1,}[ENXS]$", "description": "The database of interacting protein (DIP) database stores experimentally determined interactions between proteins. It combines information from a variety of sources to create a single, consistent set of protein-protein interactions", "created": "2019-06-11T14:15:44.329+0000", "modified": "2019-06-11T14:15:44.329+0000", "resources": [{"id": 168, "mirId": "MIR:00100072", "urlPattern": "https://dip.doe-mbi.ucla.edu/dip/DIPview.cgi?ID={$id}", "name": "Database of interacting proteins", "description": "Database of interacting proteins", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "DIP-743N", "resourceHomeUrl": "https://dip.doe-mbi.ucla.edu/", "institution": {"id": 167, "name": "UCLA", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DIP-743N", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 169, "prefix": "signaling-gateway", "mirId": "MIR:00000045", "name": "Signaling Gateway", "pattern": "A\\d{6}$", "description": "The Signaling Gateway provides information on mammalian proteins involved in cellular signaling.", "created": "2019-06-11T14:15:44.579+0000", "modified": "2019-06-11T14:15:44.579+0000", "resources": [{"id": 171, "mirId": "MIR:00100073", "urlPattern": "http://www.signaling-gateway.org/molecule/query?afcsid={$id}", "name": "Signaling Gateway Molecule Pages", "description": "Signaling Gateway Molecule Pages", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "A001094", "resourceHomeUrl": "http://www.signaling-gateway.org/molecule", "institution": {"id": 170, "name": "UC San Diego", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "A001094", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 172, "prefix": "resid", "mirId": "MIR:00000046", "name": "RESID", "pattern": "^AA\\d{4}$", "description": "The RESID Database of Protein Modifications is a comprehensive collection of annotations and structures for protein modifications including amino-terminal, carboxyl-terminal and peptide chain cross-link post-translational modifications.", "created": "2019-06-11T14:15:44.821+0000", "modified": "2019-06-11T14:15:44.821+0000", "resources": [{"id": 174, "mirId": "MIR:00100653", "urlPattern": "http://pir0.georgetown.edu/cgi-bin/resid?id={$id}", "name": "RESID at Georgetown University", "description": "RESID at Georgetown University", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "AA0001", "resourceHomeUrl": "http://pir0.georgetown.edu/resid/", "institution": {"id": 173, "name": "Georgetown University Medical Center, Washington", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AA0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 175, "prefix": "rgd", "mirId": "MIR:00000047", "name": "Rat Genome Database", "pattern": "^\\d{4,}$", "description": "Rat Genome Database seeks to collect, consolidate, and integrate rat genomic and genetic data with curated functional and physiological data and make these data widely available to the scientific community. This collection references genes.", "created": "2019-06-11T14:15:45.062+0000", "modified": "2019-06-11T14:15:45.062+0000", "resources": [{"id": 177, "mirId": "MIR:00100075", "urlPattern": "http://rgd.mcw.edu/rgdweb/report/gene/main.html?id={$id}", "name": "Rat Genome Database", "description": "Rat Genome Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "2018", "resourceHomeUrl": "http://rgd.mcw.edu/", "institution": {"id": 176, "name": "Medical College of Wisconsin", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 178, "mirId": "MIR:00100905", "urlPattern": "https://www.alliancegenome.org/gene/RGD:{$id}", "name": "RGD through the Alliance of Genome Resources", "description": "RGD through the Alliance of Genome Resources", "official": false, "providerCode": "agr", "sampleId": "2018", "resourceHomeUrl": "https://www.alliancegenome.org", "institution": {"id": 103, "name": "Alliance of Genome Resources", "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2018", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 179, "prefix": "tair.protein", "mirId": "MIR:00000048", "name": "TAIR Protein", "pattern": "^AASequence:\\d{10}$", "description": "The Arabidopsis Information Resource (TAIR) maintains a database of genetic and molecular biology data for the model higher plant Arabidopsis thaliana. This provides protein information for a given gene model and provides links to other sources such as UniProtKB and GenPept", "created": "2019-06-11T14:15:45.813+0000", "modified": "2019-06-11T14:15:45.813+0000", "resources": [{"id": 181, "mirId": "MIR:00100076", "urlPattern": "http://arabidopsis.org/servlets/TairObject?accession={$id}", "name": "The Arabidopsis Information Resource (TAIR) Protein", "description": "The Arabidopsis Information Resource (TAIR) Protein", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AASequence:1009107926", "resourceHomeUrl": "http://arabidopsis.org/index.jsp", "institution": {"id": 180, "name": "Carnegie Institution of Washington Department of Plant Biology and National Center for Genome Resources (NCGR)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AASequence:1009107926", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 182, "prefix": "tair.gene", "mirId": "MIR:00000049", "name": "TAIR Gene", "pattern": "^Gene:\\d{7}$", "description": "The Arabidopsis Information Resource (TAIR) maintains a database of genetic and molecular biology data for the model higher plant Arabidopsis thaliana. This is the reference gene model for a given locus.", "created": "2019-06-11T14:15:46.061+0000", "modified": "2019-06-11T14:15:46.061+0000", "resources": [{"id": 183, "mirId": "MIR:00100077", "urlPattern": "http://arabidopsis.org/servlets/TairObject?accession={$id}", "name": "The Arabidopsis Information Resource (TAIR) Gene", "description": "The Arabidopsis Information Resource (TAIR) Gene", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Gene:2200934", "resourceHomeUrl": "http://arabidopsis.org/index.jsp", "institution": {"id": 180, "name": "Carnegie Institution of Washington Department of Plant Biology and National Center for Genome Resources (NCGR)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Gene:2200934", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 184, "prefix": "tair.locus", "mirId": "MIR:00000050", "name": "TAIR Locus", "pattern": "^\\d{7}$", "description": "The Arabidopsis Information Resource (TAIR) maintains a database of genetic and molecular biology data for the model higher plant Arabidopsis thaliana. The name of a Locus is unique and used by TAIR, TIGR, and MIPS.", "created": "2019-06-11T14:15:46.274+0000", "modified": "2019-06-11T14:15:46.274+0000", "resources": [{"id": 185, "mirId": "MIR:00100078", "urlPattern": "http://www.arabidopsis.org/servlets/TairObject?accession=Locus:{$id}", "name": "The Arabidopsis Information Resource (TAIR) Locus", "description": "The Arabidopsis Information Resource (TAIR) Locus", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2200950", "resourceHomeUrl": "http://arabidopsis.org/index.jsp", "institution": {"id": 180, "name": "Carnegie Institution of Washington Department of Plant Biology and National Center for Genome Resources (NCGR)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2200950", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 186, "prefix": "hmdb", "mirId": "MIR:00000051", "name": "HMDB", "pattern": "^HMDB\\d+$", "description": "The Human Metabolome Database (HMDB) is a database containing detailed information about small molecule metabolites found in the human body.It contains or links 1) chemical 2) clinical and 3) molecular biology/biochemistry data.", "created": "2019-06-11T14:15:46.469+0000", "modified": "2019-06-11T14:15:46.469+0000", "resources": [{"id": 188, "mirId": "MIR:00100079", "urlPattern": "http://www.hmdb.ca/metabolites/{$id}", "name": "The Human Metabolome Database", "description": "The Human Metabolome Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HMDB00001", "resourceHomeUrl": "http://www.hmdb.ca/", "institution": {"id": 334, "name": "University of Alberta", "homeUrl": "https://www.ualberta.ca", "description": "The University of Alberta in Edmonton is one of Canada's top teaching and research universities, with an international reputation for excellence across the humanities, sciences, creative arts, business, engineering and health sciences.", "rorId": "https://ror.org/0160cpw27", "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HMDB00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 189, "prefix": "lipidmaps", "mirId": "MIR:00000052", "name": "LIPID MAPS", "pattern": "^LM(FA|GL|GP|SP|ST|PR|SL|PK)[0-9]{4}([0-9a-zA-Z]{4,6})?$", "description": "The LIPID MAPS Lipid Classification System is comprised of eight lipid categories, each with its own subclassification hierarchy. All lipids in the LIPID MAPS Structure Database (LMSD) have been classified using this system and have been assigned LIPID MAPS ID's which reflects their position in the classification hierarchy.", "created": "2019-06-11T14:15:46.708+0000", "modified": "2019-06-11T14:15:46.708+0000", "resources": [{"id": 191, "mirId": "MIR:00100080", "urlPattern": "http://www.lipidmaps.org/data/LMSDRecord.php?LMID={$id}", "name": "Department of Bioengineering and the San Diego Supercomputer Center", "description": "Department of Bioengineering and the San Diego Supercomputer Center", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "LMPR0102010012", "resourceHomeUrl": "http://www.lipidmaps.org", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 2458, "mirId": "MIR:00000781", "urlPattern": "https://scholia.toolforge.org/lipidmaps/{$id}", "name": "Scholia", "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", "official": false, "providerCode": "scholia", "sampleId": "LMFA00000007", "resourceHomeUrl": "https://scholia.toolforge.org/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LMPR0102010012", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 192, "prefix": "peptideatlas", "mirId": "MIR:00000053", "name": "PeptideAtlas", "pattern": "^PAp[0-9]{8}$", "description": "The PeptideAtlas Project provides a publicly accessible database of peptides identified in tandem mass spectrometry proteomics studies and software tools.", "created": "2019-06-11T14:15:46.969+0000", "modified": "2019-06-11T14:15:46.969+0000", "resources": [{"id": 194, "mirId": "MIR:00100081", "urlPattern": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/Summarize_Peptide?query=QUERY&searchForThis={$id}", "name": "PeptideAtlas at ISB", "description": "PeptideAtlas at ISB", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "PAp00000009", "resourceHomeUrl": "http://www.peptideatlas.org/", "institution": {"id": 193, "name": "Institute for Systems Biology", "homeUrl": "https://isbscience.org/", "description": "ISB was created in 2000 as the first-ever institute dedicated to systems biology.", "rorId": "https://ror.org/02tpgw303", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PAp00000009", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 195, "prefix": "geo", "mirId": "MIR:00000054", "name": "GEO", "pattern": "^G(PL|SM|SE|DS)\\d+$", "description": "The Gene Expression Omnibus (GEO) is a gene expression repository providing a curated, online resource for gene expression data browsing, query and retrieval.", "created": "2019-06-11T14:15:47.245+0000", "modified": "2019-06-11T14:15:47.245+0000", "resources": [{"id": 196, "mirId": "MIR:00100082", "urlPattern": "https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc={$id}", "name": "Gene Expression Omnibus at NCBI", "description": "Gene Expression Omnibus at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "GDS1234", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/geo/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GDS1234", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 197, "prefix": "eco", "mirId": "MIR:00000055", "name": "Evidence Code Ontology", "pattern": "ECO:\\d{7}$", "description": "Evidence codes can be used to specify the type of supporting evidence for a piece of knowledge. This allows inference of a 'level of support' between an entity and an annotation made to an entity.", "created": "2019-06-11T14:15:47.447+0000", "modified": "2019-06-11T14:15:47.447+0000", "resources": [{"id": 198, "mirId": "MIR:00100083", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/eco/terms?obo_id=ECO:{$id}", "name": "Evidence Codes via the Ontology Lookup Service (OLS)", "description": "Evidence Codes via the Ontology Lookup Service (OLS)", "official": false, "providerCode": "ols", "sampleId": "0000006", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/eco", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 199, "mirId": "MIR:00100235", "urlPattern": "http://purl.bioontology.org/ontology/ECO/ECO:{$id}", "name": "Evidence Code Ontology through BioPortal", "description": "Evidence Code Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0000006", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/ECO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000006", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 200, "prefix": "mod", "mirId": "MIR:00000056", "name": "Protein Modification Ontology", "pattern": "^MOD:\\d{5}", "description": "The Proteomics Standards Initiative modification ontology (PSI-MOD) aims to define a concensus nomenclature and ontology reconciling, in a hierarchical representation, the complementary descriptions of residue modifications.", "created": "2019-06-11T14:15:47.775+0000", "modified": "2019-06-11T14:15:47.775+0000", "resources": [{"id": 201, "mirId": "MIR:00100084", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/mod/terms?obo_id=MOD:{$id}", "name": "Protein modifications ontology via the Ontology Lookup Service (OLS)", "description": "Protein modifications ontology via the Ontology Lookup Service (OLS)", "official": false, "providerCode": "ols", "sampleId": "00001", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/mod", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 202, "mirId": "MIR:00100239", "urlPattern": "http://bioportal.bioontology.org/ontologies/1041?p=terms&conceptid=MOD:{$id}", "name": "Protein modifications ontology through BioPortal", "description": "Protein modifications ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "00001", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PSIMOD", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00001", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 203, "prefix": "sgd.pathways", "mirId": "MIR:00000057", "name": "Saccharomyces genome database pathways", "pattern": "^PWY\\w{2}\\-\\d{3}$", "description": "Curated biochemical pathways for Saccharomyces cerevisiae at Saccharomyces genome database (SGD).", "created": "2019-06-11T14:15:48.132+0000", "modified": "2019-06-11T14:15:48.132+0000", "resources": [{"id": 205, "mirId": "MIR:00100085", "urlPattern": "http://pathway.yeastgenome.org/YEAST/new-image?type=PATHWAY&object={$id}", "name": "Saccharomyces cerevisiae pathways at SGD.", "description": "Saccharomyces cerevisiae pathways at SGD.", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PWY3O-214", "resourceHomeUrl": "http://pathway.yeastgenome.org/", "institution": {"id": 204, "name": "SGD, Stanford University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PWY3O-214", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 206, "prefix": "biogrid", "mirId": "MIR:00000058", "name": "BioGRID", "pattern": "^\\d+$", "description": "BioGRID is a database of physical and genetic interactions in Saccharomyces cerevisiae, Caenorhabditis elegans, Drosophila melanogaster, Homo sapiens, and Schizosaccharomyces pombe.", "created": "2019-06-11T14:15:48.429+0000", "modified": "2019-06-11T14:15:48.429+0000", "resources": [{"id": 208, "mirId": "MIR:00100086", "urlPattern": "http://thebiogrid.org/{$id}", "name": "BioGRID database of physical and genetic interactions", "description": "BioGRID database of physical and genetic interactions", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "31623", "resourceHomeUrl": "http://thebiogrid.org/", "institution": {"id": 207, "name": "Ontario Cancer Institute", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "31623", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 209, "prefix": "merops", "mirId": "MIR:00000059", "name": "MEROPS", "pattern": "^[SCTAGMNU]\\d{2}\\.([AB]\\d{2}|\\d{3})$", "description": "The MEROPS database is an information resource for peptidases (also termed proteases, proteinases and proteolytic enzymes) and the proteins that inhibit them.", "created": "2019-06-11T14:15:48.677+0000", "modified": "2019-06-11T14:15:48.677+0000", "resources": [{"id": 211, "mirId": "MIR:00100087", "urlPattern": "http://merops.sanger.ac.uk/cgi-bin/pepsum?mid={$id}", "name": "MEROPS database at Sanger Institute", "description": "MEROPS database at Sanger Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "S01.001", "resourceHomeUrl": "http://merops.sanger.ac.uk/index.htm", "institution": {"id": 210, "name": "Wellcome Trust Sanger Institute", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "S01.001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 212, "prefix": "panther.family", "mirId": "MIR:00000060", "name": "PANTHER Family", "pattern": "^PTHR\\d{5}(\\:SF\\d{1,3})?$", "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. This collection references groups of genes that have been organised as families.", "created": "2019-06-11T14:15:48.923+0000", "modified": "2019-06-11T14:15:48.923+0000", "resources": [{"id": 213, "mirId": "MIR:00100088", "urlPattern": "http://www.pantherdb.org/panther/family.do?clsAccession={$id}", "name": "PANTHER Family at USC (Los Angeles)", "description": "PANTHER Family at USC (Los Angeles)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PTHR12345", "resourceHomeUrl": "http://www.pantherdb.org/", "institution": {"id": 94, "name": "Keck School of Medicine, University of Southern California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PTHR12345", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 214, "prefix": "prints", "mirId": "MIR:00000061", "name": "PRINTS", "pattern": "^PR\\d{5}$", "description": "PRINTS is a compendium of protein fingerprints. A fingerprint is a group of conserved motifs used to characterise a protein family; its diagnostic power is refined by iterative scanning of a SWISS-PROT/TrEMBL composite. Usually the motifs do not overlap, but are separated along a sequence, though they may be contiguous in 3D-space. Fingerprints can encode protein folds and functionalities more flexibly and powerfully than can single motifs, full diagnostic potency deriving from the mutual context provided by motif neighbours.", "created": "2019-06-11T14:15:49.123+0000", "modified": "2019-06-11T14:15:49.123+0000", "resources": [{"id": 216, "mirId": "MIR:00100089", "urlPattern": "http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?prints_accn={$id}&display_opts=Prints&category=None&queryform=false®expr=off", "name": "PRINTS through SPRINT", "description": "PRINTS through SPRINT", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PR00001", "resourceHomeUrl": "http://www.bioinf.manchester.ac.uk/dbbrowser/sprint/", "institution": {"id": 215, "name": "University of Manchester", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PR00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 217, "prefix": "ligandexpo", "mirId": "MIR:00000062", "name": "Ligand Expo", "pattern": "^(\\w){3}$", "description": "Ligand Expo is a data resource for finding information about small molecules bound to proteins and nucleic acids.", "created": "2019-06-11T14:15:49.385+0000", "modified": "2019-06-11T14:15:49.385+0000", "resources": [{"id": 218, "mirId": "MIR:00100090", "urlPattern": "http://ligand-depot.rutgers.edu/pyapps/ldHandler.py?formid=cc-index-search&target={$id}&operation=ccid", "name": "Ligand Expo at RutgersRCSB PDB", "description": "Ligand Expo at RutgersRCSB PDB", "official": false, "providerCode": "rcsb", "sampleId": "ABC", "resourceHomeUrl": "http://ligand-depot.rutgers.edu/index.html", "institution": {"id": 79, "name": "Rutgers, The State University of New Jersey", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 219, "mirId": "MIR:00100615", "urlPattern": "http://ligand-expo.rcsb.org/pyapps/ldHandler.py?formid=cc-index-search&target={$id}&operation=ccid", "name": "Ligand Expo at Rutgers", "description": "Ligand Expo at Rutgers", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ABC", "resourceHomeUrl": "http://ligand-expo.rcsb.org/", "institution": {"id": 79, "name": "Rutgers, The State University of New Jersey", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ABC", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 223, "prefix": "isbn", "mirId": "MIR:00000064", "name": "ISBN", "pattern": "^(ISBN)?(-13|-10)?[:]?[ ]?(\\d{2,3}[ -]?)?\\d{1,5}[ -]?\\d{1,7}[ -]?\\d{1,6}[ -]?(\\d|X)$", "description": "The International Standard Book Number (ISBN) is for identifying printed books.", "created": "2019-06-11T14:15:50.037+0000", "modified": "2019-06-11T14:15:50.037+0000", "resources": [{"id": 225, "mirId": "MIR:00100092", "urlPattern": "http://isbndb.com/search-all.html?kw={$id}", "name": "ISBNDB - ISBN Database", "description": "ISBNDB - ISBN Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "9781584885658", "resourceHomeUrl": "http://isbndb.com/", "institution": {"id": 224, "name": "ISNBdb project, San Gabriel, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 227, "mirId": "MIR:00100093", "urlPattern": "http://www.worldcat.org/isbn/{$id}", "name": "ISBN database at WorldCat", "description": "ISBN database at WorldCat", "official": false, "providerCode": "worldcat", "sampleId": "9781584885658", "resourceHomeUrl": "http://www.worldcat.org/", "institution": {"id": 226, "name": "OCLC Online Computer Library Center, Inc. Ohio", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "9781584885658", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 228, "prefix": "pride", "mirId": "MIR:00000065", "name": "PRIDE", "pattern": "^\\d+$", "description": "The PRIDE PRoteomics IDEntifications database is a centralized, standards compliant, public data repository that provides protein and peptide identifications together with supporting evidence. This collection references experiments and assays.", "created": "2019-06-11T14:15:50.454+0000", "modified": "2019-06-11T14:15:50.454+0000", "resources": [{"id": 229, "mirId": "MIR:00100094", "urlPattern": "https://www.ebi.ac.uk/pride/archive/assays/{$id}", "name": "PRIDE at EBI", "description": "PRIDE at EBI", "official": true, "providerCode": "ebi", "sampleId": "1", "resourceHomeUrl": "https://www.ebi.ac.uk/pride/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 230, "prefix": "3dmet", "mirId": "MIR:00000066", "name": "3DMET", "pattern": "^B\\d{5}$", "description": "3DMET is a database collecting three-dimensional structures of natural metabolites.", "created": "2019-06-11T14:15:50.652+0000", "modified": "2019-06-11T14:15:50.652+0000", "resources": [{"id": 232, "mirId": "MIR:00100095", "urlPattern": "http://www.3dmet.dna.affrc.go.jp/cgi/show_data.php?acc={$id}", "name": "3DMET database", "description": "3DMET database", "official": false, "providerCode": "nias", "sampleId": "B00162", "resourceHomeUrl": "http://www.3dmet.dna.affrc.go.jp/", "institution": {"id": 231, "name": "National Institute of Agrobiological Sciences", "homeUrl": "http://www.naro.affrc.go.jp/archive/nias/index_e.html", "description": "The National Institute of Agrobiological Sciences (NIAS) is the largest agricultural research institute in Japan for basic life sciences. As a major research institute of the Ministry of Agriculture, Forestry and Fisheries (MAFF), it was formerly known as the National Institute of Agrobiological Resources (NIAR) until it was re-established as an independent administrative institution in April 1, 2001. The institute focuses on understanding the biological phenomena of agriculturally important plants, insects, microbes and animals to create innovative technologies, and eventually contribute to the solution of global issues such as food shortage due to rapid population growth and environmental problems due to climate change", "rorId": "https://ror.org/01786mp71", "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "B00162", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 233, "prefix": "fma", "mirId": "MIR:00000067", "name": "FMA", "pattern": "^FMA:\\d+$", "description": "The Foundational Model of Anatomy Ontology (FMA) is a biomedical informatics ontology. It is concerned with the representation of classes or types and relationships necessary for the symbolic representation of the phenotypic structure of the human body. Specifically, the FMA is a domain ontology that represents a coherent body of explicit declarative knowledge about human anatomy.", "created": "2019-06-11T14:15:50.895+0000", "modified": "2019-06-11T14:15:50.895+0000", "resources": [{"id": 234, "mirId": "MIR:00100097", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/fma/terms?obo_id=FMA:{$id}", "name": "Foundational Model of Anatomy via Ontology Lookup Service (OLS)", "description": "Foundational Model of Anatomy via Ontology Lookup Service (OLS)", "official": false, "providerCode": "ols", "sampleId": "67112", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/fma/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 235, "mirId": "MIR:00100236", "urlPattern": "http://purl.bioontology.org/ontology/FMA_subset/FMA:{$id}", "name": "Foundational Model of Anatomy through BioPortal", "description": "Foundational Model of Anatomy through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "67112", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/FMA", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "67112", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 236, "prefix": "matrixdb.association", "mirId": "MIR:00000068", "name": "MatrixDB", "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])_.*|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9]_.*)|(GAG_.*)|(MULT_.*)|(PFRAG_.*)|(LIP_.*)|(CAT_.*)$", "description": "MatrixDB stores experimentally determined interactions involving at least one extracellular biomolecule. It includes mostly protein-protein and protein-glycosaminoglycan interactions, as well as interactions with lipids and cations.", "created": "2019-06-11T14:15:51.252+0000", "modified": "2019-06-11T14:15:51.252+0000", "resources": [{"id": 238, "mirId": "MIR:00100098", "urlPattern": "http://matrixdb.univ-lyon1.fr//cgi-bin/current/newPort?type=association&value={$id}&class=Association", "name": "MatrixDB Association", "description": "MatrixDB Association", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "P00747__P07355", "resourceHomeUrl": "http://matrixdb.univ-lyon1.fr/", "institution": {"id": 237, "name": "Institut de Biologie et Chimie des Prot\u00e9ines, Lyon University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P00747__P07355", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 239, "prefix": "ncbigene", "mirId": "MIR:00000069", "name": "NCBI Gene", "pattern": "^\\d+$", "description": "Entrez Gene is the NCBI's database for gene-specific information, focusing on completely sequenced genomes, those with an active research community to contribute gene-specific information, or those that are scheduled for intense sequence analysis.", "created": "2019-06-11T14:15:51.483+0000", "modified": "2019-06-11T14:15:51.483+0000", "resources": [{"id": 240, "mirId": "MIR:00100099", "urlPattern": "https://www.ncbi.nlm.nih.gov/gene/{$id}", "name": "Entrez Gene (NCBI)", "description": "Entrez Gene (NCBI)", "official": true, "providerCode": "ncbi", "sampleId": "100010", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/gene", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 241, "mirId": "MIR:00100693", "urlPattern": "http://ncbigene.bio2rdf.org/describe/?url=http://bio2rdf.org/ncbigene:{$id}", "name": "Bio2RDF", "description": "Bio2RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "100010", "resourceHomeUrl": "http://ncbigene.bio2rdf.org/fct", "institution": {"id": 33, "name": "Bio2RDF.org", "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "100010", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 242, "prefix": "kegg.genes", "mirId": "MIR:00000070", "name": "KEGG Genes", "pattern": "^\\w+:[\\w\\d\\.-]*$", "description": "KEGG GENES is a collection of gene catalogs for all complete genomes and some partial genomes, generated from publicly available resources.", "created": "2019-06-11T14:15:51.781+0000", "modified": "2019-06-11T14:15:51.781+0000", "resources": [{"id": 243, "mirId": "MIR:00100100", "urlPattern": "http://www.kegg.jp/entry/{$id}", "name": "KEGG GENES Database", "description": "KEGG GENES Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "syn:ssr3451", "resourceHomeUrl": "http://www.genome.jp/kegg/genes.html", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "syn:ssr3451", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 244, "prefix": "brenda", "mirId": "MIR:00000071", "name": "BRENDA", "pattern": "^((\\d+\\.-\\.-\\.-)|(\\d+\\.\\d+\\.-\\.-)|(\\d+\\.\\d+\\.\\d+\\.-)|(\\d+\\.\\d+\\.\\d+\\.\\d+))$", "description": "BRENDA is a collection of enzyme functional data available to the scientific community. Data on enzyme function are extracted directly from the primary literature The database covers information on classification and nomenclature, reaction and specificity, functional parameters, occurrence, enzyme structure and stability, mutants and enzyme engineering, preparation and isolation, the application of enzymes, and ligand-related data.", "created": "2019-06-11T14:15:51.985+0000", "modified": "2019-06-11T14:15:51.985+0000", "resources": [{"id": 246, "mirId": "MIR:00100101", "urlPattern": "https://www.brenda-enzymes.org/php/result_flat.php4?ecno={$id}", "name": "Brenda enzyme database", "description": "Brenda enzyme database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1.1.1.1", "resourceHomeUrl": "https://www.brenda-enzymes.org/", "institution": {"id": 245, "name": "Technical University Braunschweig, Institute for Bioinformatics and Biochemistry", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1.1.1.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 247, "prefix": "pubchem.bioassay", "mirId": "MIR:00000072", "name": "PubChem-bioassay", "pattern": "^\\d+$", "description": "PubChem provides information on the biological activities of small molecules. It is a component of NIH's Molecular Libraries Roadmap Initiative. PubChem bioassay archives active compounds and bioassay results.", "created": "2019-06-11T14:15:52.227+0000", "modified": "2019-06-11T14:15:52.227+0000", "resources": [{"id": 248, "mirId": "MIR:00100102", "urlPattern": "https://pubchem.ncbi.nlm.nih.gov/bioassay/{$id}", "name": "PubChem Bioassay at NCBI", "description": "PubChem Bioassay at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "1018", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=pcassay", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1018", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1659, "prefix": "bao", "mirId": "MIR:00000597", "name": "BioAssay Ontology", "pattern": "^\\d{7}$", "description": "The BioAssay Ontology (BAO) describes chemical biology screening assays and their results including high-throughput screening (HTS) data for the purpose of categorizing assays and data analysis.", "created": "2019-06-11T14:17:58.671+0000", "modified": "2019-06-11T14:17:58.671+0000", "resources": [{"id": 1660, "mirId": "MIR:00100797", "urlPattern": "http://bioportal.bioontology.org/ontologies/BAO/bao:BAO_{$id}", "name": "BioAssay Ontology through BioPortal", "description": "BioAssay Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0002989", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/BAO/", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1661, "mirId": "MIR:00100798", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/bao/terms?obo_id=BAO:{$id}", "name": "BioAssay Ontology through OLS", "description": "BioAssay Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0002989", "resourceHomeUrl": "https://bioportal.bioontology.org/ontologies/BAO/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0002989", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 249, "prefix": "pathwaycommons", "mirId": "MIR:00000073", "name": "Pathway Commons", "pattern": "^\\d+$", "description": "Pathway Commons is a convenient point of access to biological pathway information collected from public pathway databases, which you can browse or search. It is a collection of publicly available pathways from multiple organisms that provides researchers with convenient access to a comprehensive collection of pathways from multiple sources represented in a common language.", "created": "2019-06-11T14:15:52.436+0000", "modified": "2019-06-11T14:15:52.436+0000", "resources": [{"id": 251, "mirId": "MIR:00100103", "urlPattern": "http://www.pathwaycommons.org/pc/record2.do?id={$id}", "name": "Pathway Commons", "description": "Pathway Commons", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "485991", "resourceHomeUrl": "http://www.pathwaycommons.org/pc/", "institution": {"id": 250, "name": "Memorial Sloan-Kettering Cancer Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "485991", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 252, "prefix": "hovergen", "mirId": "MIR:00000074", "name": "HOVERGEN", "pattern": "^HBG\\d+$", "description": "HOVERGEN is a database of homologous vertebrate genes that allows one to select sets of homologous genes among vertebrate species, and to visualize multiple alignments and phylogenetic trees.", "created": "2019-06-11T14:15:52.667+0000", "modified": "2019-06-11T14:15:52.667+0000", "resources": [{"id": 254, "mirId": "MIR:00100104", "urlPattern": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?query={$id}&db=HOVERGEN", "name": "Hovergen", "description": "Hovergen", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HBG004341", "resourceHomeUrl": "http://pbil.univ-lyon1.fr/databases/hovergen.php", "institution": {"id": 253, "name": "Laboratoire de Biom\u00e9trie, G\u00e9n\u00e9tique et Biologie des Populations", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HBG004341", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 255, "prefix": "mmmp:biomaps", "mirId": "MIR:00000075", "name": "Melanoma Molecular Map Project Biomaps", "pattern": "^\\d+$", "description": "A collection of molecular interaction maps and pathways involved in cancer development and progression with a focus on melanoma.", "created": "2019-06-11T14:15:52.916+0000", "modified": "2019-06-11T14:15:52.916+0000", "resources": [{"id": 257, "mirId": "MIR:00100105", "urlPattern": "http://www.mmmp.org/MMMP/public/biomap/viewBiomap.mmmp?id={$id}", "name": "main webpage", "description": "main webpage", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "37", "resourceHomeUrl": "http://www.mmmp.org/MMMP/public/biomap/listBiomap.mmmp", "institution": {"id": 256, "name": "Melanoma Molecular Map Project", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "37", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 261, "prefix": "macie", "mirId": "MIR:00000077", "name": "MACiE", "pattern": "^M\\d{4}$", "description": "MACiE (Mechanism, Annotation and Classification in Enzymes) is a database of enzyme reaction mechanisms. Each entry in MACiE consists of an overall reaction describing the chemical compounds involved, as well as the species name in which the reaction occurs. The individual reaction stages for each overall reaction are listed with mechanisms, alternative mechanisms, and amino acids involved.", "created": "2019-06-11T14:15:53.388+0000", "modified": "2019-06-11T14:15:53.388+0000", "resources": [{"id": 262, "mirId": "MIR:00100108", "urlPattern": "https://www.ebi.ac.uk/thornton-srv/databases/cgi-bin/MACiE/entry/getPage.pl?id={$id}", "name": "MACiE database of mechanisms, annotation and classification in enzymes", "description": "MACiE database of mechanisms, annotation and classification in enzymes", "official": true, "providerCode": "ebi", "sampleId": "M0001", "resourceHomeUrl": "https://www.ebi.ac.uk/thornton-srv/databases/MACiE/index.html", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "M0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 263, "prefix": "mirbase", "mirId": "MIR:00000078", "name": "miRBase Sequence", "pattern": "MI\\d{7}", "description": "The miRBase Sequence Database is a searchable database of published miRNA sequences and annotation. The data were previously provided by the miRNA Registry. Each entry in the miRBase Sequence database represents a predicted hairpin portion of a miRNA transcript (termed mir in the database), with information on the location and sequence of the mature miRNA sequence (termed miR).", "created": "2019-06-11T14:15:53.607+0000", "modified": "2019-06-11T14:15:53.607+0000", "resources": [{"id": 265, "mirId": "MIR:00100135", "urlPattern": "http://www.mirbase.org/cgi-bin/mirna_entry.pl?acc={$id}", "name": "miRBase Sequence Database", "description": "miRBase Sequence Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MI0000001", "resourceHomeUrl": "http://www.mirbase.org/", "institution": {"id": 264, "name": "Faculty of Life Sciences, University of Manchester", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MI0000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 266, "prefix": "zfin", "mirId": "MIR:00000079", "name": "ZFIN Bioentity", "pattern": "^ZDB\\-\\w+\\-\\d+\\-\\d+$", "description": "ZFIN serves as the zebrafish model organism database. This collection references all zebrafish biological entities in ZFIN.", "created": "2019-06-11T14:15:53.859+0000", "modified": "2019-06-11T14:15:53.859+0000", "resources": [{"id": 268, "mirId": "MIR:00100110", "urlPattern": "http://zfin.org/{$id}", "name": "ZFIN at University of Oregon", "description": "ZFIN at University of Oregon", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "ZDB-GENE-041118-11", "resourceHomeUrl": "http://zfin.org", "institution": {"id": 267, "name": "Zebrafish Information Network, University of Oregon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 269, "mirId": "MIR:00100891", "urlPattern": "https://bioentity.link/#/lexicon/public/{$id}", "name": "ZFIN through BioEntity Link", "description": "ZFIN through BioEntity Link", "official": false, "providerCode": "bioentitylink", "sampleId": "ZDB-GENE-041118-11", "resourceHomeUrl": "https://bioentity.link/", "institution": {"id": 101, "name": "InSilico Inc, in Eugene, Oregon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 270, "mirId": "MIR:00100902", "urlPattern": "https://test.alliancegenome.org/gene/ZFIN:{$id}", "name": "ZFIN through the Alliance of Genome Resources", "description": "ZFIN through the Alliance of Genome Resources", "official": false, "providerCode": "agr", "sampleId": "ZDB-GENE-041118-11", "resourceHomeUrl": "https://www.alliancegenome.org", "institution": {"id": 103, "name": "Alliance of Genome Resources", "homeUrl": "https://www.alliancegenome.org", "description": "The primary mission of the Alliance of Genome Resources (the Alliance) is to develop and maintain sustainable genome information resources that facilitate the use of diverse model organisms in understanding the genetic and genomic basis of human biology, health and disease.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ZDB-GENE-041118-11", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 271, "prefix": "hgnc", "mirId": "MIR:00000080", "name": "HGNC", "pattern": "^((HGNC|hgnc):)?\\d{1,5}$", "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. HGNC identifiers refer to records in the HGNC symbol database.", "created": "2019-06-11T14:15:54.375+0000", "modified": "2019-06-11T14:15:54.375+0000", "resources": [{"id": 272, "mirId": "MIR:00100111", "urlPattern": "https://www.genenames.org/data/gene-symbol-report/#!/hgnc_id/{$id}", "name": "HUGO Genome Nomenclature Committee", "description": "HUGO Genome Nomenclature Committee", "official": true, "providerCode": "ebi", "sampleId": "2674", "resourceHomeUrl": "https://www.genenames.org", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2674", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 273, "prefix": "so", "mirId": "MIR:00000081", "name": "Sequence Ontology", "pattern": "^SO:\\d{7}$", "description": "The Sequence Ontology (SO) is a structured controlled vocabulary for the parts of a genomic annotation. It provides a common set of terms and definitions to facilitate the exchange, analysis and management of genomic data.", "created": "2019-06-11T14:15:54.604+0000", "modified": "2019-06-11T14:15:54.604+0000", "resources": [{"id": 275, "mirId": "MIR:00100112", "urlPattern": "http://www.sequenceontology.org/miso/current_release/term/SO:{$id}", "name": "Sequence Ontology", "description": "Sequence Ontology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0000704", "resourceHomeUrl": "http://www.sequenceontology.org/", "institution": {"id": 274, "name": "Department of Molecular and Cellular Biology, University of California, Berkeley", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 276, "mirId": "MIR:00100241", "urlPattern": "http://purl.bioontology.org/ontology/SO/SO:{$id}", "name": "Sequence Ontology through BioPortal", "description": "Sequence Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0000704", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/SO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 277, "mirId": "MIR:00100628", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/so/terms?obo_id=SO:{$id}", "name": "Sequence Ontology through Ontology Lookup Service (OLS)", "description": "Sequence Ontology through Ontology Lookup Service (OLS)", "official": false, "providerCode": "ols", "sampleId": "0000704", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/so", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000704", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 281, "prefix": "chembl.compound", "mirId": "MIR:00000084", "name": "ChEMBL compound", "pattern": "^CHEMBL\\d+$", "description": "ChEMBL is a database of bioactive compounds, their quantitative properties and bioactivities (binding constants, pharmacology and ADMET, etc). The data is abstracted and curated from the primary scientific literature.", "created": "2019-06-11T14:15:55.368+0000", "modified": "2019-06-11T14:15:55.368+0000", "resources": [{"id": 282, "mirId": "MIR:00100115", "urlPattern": "https://www.ebi.ac.uk/chembl/compound/inspect/{$id}", "name": "ChEMBL compound database at EBI", "description": "ChEMBL compound database at EBI", "official": true, "providerCode": "ebi", "sampleId": "CHEMBL308052", "resourceHomeUrl": "https://www.ebi.ac.uk/chembldb/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 284, "mirId": "MIR:00100484", "urlPattern": "http://linkedchemistry.info/chembl/chemblid/{$id}", "name": "ChEMBL compound RDF", "description": "ChEMBL compound RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CHEMBL308052", "resourceHomeUrl": "https://github.com/egonw/chembl.rdf", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}, {"id": 285, "mirId": "MIR:00100744", "urlPattern": "https://rdf.ebi.ac.uk/resource/chembl/molecule/{$id}", "name": "ChEMBL compound RDF through EBI RDF Platform", "description": "ChEMBL compound RDF through EBI RDF Platform", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CHEMBL308052", "resourceHomeUrl": "https://www.ebi.ac.uk/rdf/services/chembl/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CHEMBL308052", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 286, "prefix": "chembl.target", "mirId": "MIR:00000085", "name": "ChEMBL target", "pattern": "^CHEMBL\\d+$", "description": "ChEMBL is a database of bioactive compounds, their quantitative properties and bioactivities (binding constants, pharmacology and ADMET, etc). The data is abstracted and curated from the primary scientific literature.", "created": "2019-06-11T14:15:55.880+0000", "modified": "2019-06-11T14:15:55.880+0000", "resources": [{"id": 287, "mirId": "MIR:00100116", "urlPattern": "https://www.ebi.ac.uk/chembl/target/inspect/{$id}", "name": "ChEMBL targets database at EBI", "description": "ChEMBL targets database at EBI", "official": true, "providerCode": "ebi", "sampleId": "CHEMBL3467", "resourceHomeUrl": "https://www.ebi.ac.uk/chembldb/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 288, "mirId": "MIR:00100485", "urlPattern": "http://linkedchemistry.info/chembl/chemblid/{$id}", "name": "ChEMBL target RDF", "description": "ChEMBL target RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CHEMBL3467", "resourceHomeUrl": "https://github.com/egonw/chembl.rdf", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}, {"id": 289, "mirId": "MIR:00100743", "urlPattern": "https://rdf.ebi.ac.uk/resource/chembl/target/{$id}", "name": "ChEMBL target RDF through EBI RDF Platform", "description": "ChEMBL target RDF through EBI RDF Platform", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CHEMBL3467", "resourceHomeUrl": "https://rdf.ebi.ac.uk/resource/chembl/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CHEMBL3467", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 290, "prefix": "sabiork.kineticrecord", "mirId": "MIR:00000086", "name": "SABIO-RK Kinetic Record", "pattern": "^\\d+$", "description": "SABIO-RK is a relational database system that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. The kinetic record data set provides information regarding the kinetic law, measurement conditions, parameter details and other reference information.", "created": "2019-06-11T14:15:56.334+0000", "modified": "2019-06-11T14:15:56.334+0000", "resources": [{"id": 291, "mirId": "MIR:00100117", "urlPattern": "http://sabiork.h-its.org/kineticLawEntry.jsp?viewData=true&kinlawid={$id}", "name": "SABIO-RK Reaction Kinetics Database - Kinetic Dataset", "description": "SABIO-RK Reaction Kinetics Database - Kinetic Dataset", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "5046", "resourceHomeUrl": "http://sabiork.h-its.org/", "institution": {"id": 151, "name": "Heidelberg Institute for Theoretical Studies (HITS gGmbH)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5046", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 292, "prefix": "lgic", "mirId": "MIR:00000087", "name": "Ligand-Gated Ion Channel database", "pattern": "^\\w+$", "description": "The Ligand-Gated Ion Channel database provides nucleic and proteic sequences of the subunits of ligand-gated ion channels. These transmembrane proteins can exist under different conformations, at least one of which forms a pore through the membrane connecting two neighbouring compartments. The database can be used to generate multiple sequence alignments from selected subunits, and gives the atomic coordinates of subunits, or portion of subunits, where available.", "created": "2019-06-11T14:15:56.548+0000", "modified": "2019-06-11T14:15:56.548+0000", "resources": [{"id": 293, "mirId": "MIR:00100118", "urlPattern": "https://www.ebi.ac.uk/compneur-srv/LGICdb/HTML/{$id}.php", "name": "Ligand-Gated Ion Channel database at EBI", "description": "Ligand-Gated Ion Channel database at EBI", "official": false, "providerCode": "ebi", "sampleId": "5HT3Arano", "resourceHomeUrl": "https://www.ebi.ac.uk/compneur-srv/LGICdb/LGICdb.php", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5HT3Arano", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 294, "prefix": "atc", "mirId": "MIR:00000088", "name": "Anatomical Therapeutic Chemical", "pattern": "^[A-Z](\\d+([A-Z]{1,2}(\\d+)?)?)?$", "description": "The Anatomical Therapeutic Chemical (ATC) classification system, divides active substances into different groups according to the organ or system on which they act and their therapeutic, pharmacological and chemical properties. Drugs are classified in groups at five different levels; Drugs are divided into fourteen main groups (1st level), with pharmacological/therapeutic subgroups (2nd level). The 3rd and 4th levels are chemical/pharmacological/therapeutic subgroups and the 5th level is the chemical substance. The Anatomical Therapeutic Chemical (ATC) classification system and the Defined Daily Dose (DDD) is a tool for exchanging and comparing data on drug use at international, national or local levels.", "created": "2019-06-11T14:15:56.747+0000", "modified": "2019-06-11T14:15:56.747+0000", "resources": [{"id": 296, "mirId": "MIR:00100119", "urlPattern": "http://www.whocc.no/atc_ddd_index/?code={$id}", "name": "Anatomical Therapeutic Chemical Index at WHO", "description": "Anatomical Therapeutic Chemical Index at WHO", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "A10BA02", "resourceHomeUrl": "http://www.whocc.no/atc_ddd_index/", "institution": {"id": 295, "name": "World Health Organisation", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "A10BA02", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 297, "prefix": "pharmgkb.pathways", "mirId": "MIR:00000089", "name": "PharmGKB Pathways", "pattern": "^PA\\d+$", "description": "The PharmGKB database is a central repository for genetic, genomic, molecular and cellular phenotype data and clinical information about people who have participated in pharmacogenomics research studies. The data includes, but is not limited to, clinical and basic pharmacokinetic and pharmacogenomic research in the cardiovascular, pulmonary, cancer, pathways, metabolic and transporter domains. \r\nPharmGKB Pathways are drug centric, gene based, interactive pathways which focus on candidate genes and gene groups and associated genotype and phenotype data of relevance for pharmacogenetic and pharmacogenomic studies.", "created": "2019-06-11T14:15:57.006+0000", "modified": "2019-06-11T14:15:57.006+0000", "resources": [{"id": 299, "mirId": "MIR:00100120", "urlPattern": "http://www.pharmgkb.org/pathway/{$id}", "name": "PharmGKB at Stanford", "description": "PharmGKB at Stanford", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PA146123006", "resourceHomeUrl": "http://www.pharmgkb.org/", "institution": {"id": 298, "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PA146123006", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 300, "prefix": "pharmgkb.disease", "mirId": "MIR:00000090", "name": "PharmGKB Disease", "pattern": "^PA\\d+$", "description": "The PharmGKB database is a central repository for genetic, genomic, molecular and cellular phenotype data and clinical information about people who have participated in pharmacogenomics research studies. The data includes, but is not limited to, clinical and basic pharmacokinetic and pharmacogenomic research in the cardiovascular, pulmonary, cancer, pathways, metabolic and transporter domains.", "created": "2019-06-11T14:15:57.258+0000", "modified": "2019-06-11T14:15:57.258+0000", "resources": [{"id": 301, "mirId": "MIR:00100121", "urlPattern": "http://www.pharmgkb.org/disease/{$id}", "name": "PharmGKB Disease at Stanford", "description": "PharmGKB Disease at Stanford", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PA447218", "resourceHomeUrl": "http://www.pharmgkb.org/", "institution": {"id": 298, "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PA447218", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 258, "prefix": "wikipathways", "mirId": "MIR:00000076", "name": "WikiPathways", "pattern": "WP\\d{1,5}(\\_r\\d+)?$", "description": "WikiPathways is a resource providing an open and public collection of pathway maps created and curated by the community in a Wiki-like style.", "created": "2019-06-11T14:15:53.125+0000", "modified": "2023-01-05T18:26:05.922+0000", "resources": [{"id": 260, "mirId": "MIR:00100106", "urlPattern": "http://www.wikipathways.org/instance/{$id}", "name": "WikiPathways", "description": "WikiPathways", "official": true, "providerCode": "um", "sampleId": "WP100", "resourceHomeUrl": "http://www.wikipathways.org/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 2316, "mirId": "MIR:00000696", "urlPattern": "https://scholia.toolforge.org/wikipathways/{$id}", "name": "Scholia", "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.\n", "official": false, "providerCode": "scholia", "sampleId": "WP111", "resourceHomeUrl": "https://scholia.toolforge.org/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "WP100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 302, "prefix": "pharmgkb.drug", "mirId": "MIR:00000091", "name": "PharmGKB Drug", "pattern": "^PA\\d+$", "description": "The PharmGKB database is a central repository for genetic, genomic, molecular and cellular phenotype data and clinical information about people who have participated in pharmacogenomics research studies. The data includes, but is not limited to, clinical and basic pharmacokinetic and pharmacogenomic research in the cardiovascular, pulmonary, cancer, pathways, metabolic and transporter domains.", "created": "2019-06-11T14:15:57.451+0000", "modified": "2019-06-11T14:15:57.451+0000", "resources": [{"id": 303, "mirId": "MIR:00100122", "urlPattern": "http://www.pharmgkb.org/drug/{$id}", "name": "PharmGKB Drug at Stanford", "description": "PharmGKB Drug at Stanford", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PA448710", "resourceHomeUrl": "http://www.pharmgkb.org/", "institution": {"id": 298, "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PA448710", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 304, "prefix": "ttd.drug", "mirId": "MIR:00000092", "name": "TTD Drug", "pattern": "^DAP\\d+$", "description": "The Therapeutic Target Database (TTD) is designed to provide information about the known therapeutic protein and nucleic acid targets described in the literature, the targeted disease conditions, the pathway information and the corresponding drugs/ligands directed at each of these targets. Cross-links to other databases allow the access to information about the sequence, 3D structure, function, nomenclature, drug/ligand binding properties, drug usage and effects, and related literature for each target.", "created": "2019-06-11T14:15:57.654+0000", "modified": "2019-06-11T14:15:57.654+0000", "resources": [{"id": 306, "mirId": "MIR:00100123", "urlPattern": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDRUG.asp?ID={$id}", "name": "Therapeutic Target Database Drug", "description": "Therapeutic Target Database Drug", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "DAP000773", "resourceHomeUrl": "http://bidd.nus.edu.sg/group/ttd/ttd.asp", "institution": {"id": 305, "name": "Computational Science Department, National University of Singapore", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "SG", "countryName": "Singapore"}}, "location": {"countryCode": "SG", "countryName": "Singapore"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DAP000773", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 307, "prefix": "ttd.target", "mirId": "MIR:00000093", "name": "TTD Target", "pattern": "^TTDS\\d+$", "description": "The Therapeutic Target Database (TTD) is designed to provide information about the known therapeutic protein and nucleic acid targets described in the literature, the targeted disease conditions, the pathway information and the corresponding drugs/ligands directed at each of these targets. Cross-links to other databases are also introduced to facilitate the access of information about the sequence, 3D structure, function, nomenclature, drug/ligand binding properties, drug usage and effects, and related literature for each target.", "created": "2019-06-11T14:15:57.896+0000", "modified": "2019-06-11T14:15:57.896+0000", "resources": [{"id": 308, "mirId": "MIR:00100124", "urlPattern": "http://bidd.nus.edu.sg/group/TTD/ZFTTDDetail.asp?ID={$id}", "name": "Therapeutic Target Database Target", "description": "Therapeutic Target Database Target", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TTDS00056", "resourceHomeUrl": "http://bidd.nus.edu.sg/group/ttd/ttd.asp", "institution": {"id": 305, "name": "Computational Science Department, National University of Singapore", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "SG", "countryName": "Singapore"}}, "location": {"countryCode": "SG", "countryName": "Singapore"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TTDS00056", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 309, "prefix": "neurondb", "mirId": "MIR:00000094", "name": "NeuronDB", "pattern": "^\\d+$", "description": "NeuronDB provides a dynamically searchable database of three types of neuronal properties: voltage gated conductances, neurotransmitter receptors, and neurotransmitter substances. It contains tools that provide for integration of these properties in a given type of neuron and compartment, and for comparison of properties across different types of neurons and compartments.", "created": "2019-06-11T14:15:58.106+0000", "modified": "2019-06-11T14:15:58.106+0000", "resources": [{"id": 311, "mirId": "MIR:00100125", "urlPattern": "http://senselab.med.yale.edu/NeuronDB/NeuronProp.aspx?id={$id}", "name": "NeuronDB at SenseLab", "description": "NeuronDB at SenseLab", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "265", "resourceHomeUrl": "http://senselab.med.yale.edu/NeuronDB/", "institution": {"id": 310, "name": "Yale University School of Medicine", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "265", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 312, "prefix": "neuromorpho", "mirId": "MIR:00000095", "name": "NeuroMorpho", "pattern": "^\\w+$", "description": "NeuroMorpho.Org is a centrally curated inventory of digitally reconstructed neurons.", "created": "2019-06-11T14:15:58.342+0000", "modified": "2019-06-11T14:15:58.342+0000", "resources": [{"id": 314, "mirId": "MIR:00100126", "urlPattern": "http://neuromorpho.org/neuron_info.jsp?neuron_name={$id}", "name": "NeuroMorpho", "description": "NeuroMorpho", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Rosa2", "resourceHomeUrl": "http://neuromorpho.org/index.jsp", "institution": {"id": 313, "name": "Krasnow Institute, Virginia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Rosa2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 315, "prefix": "chemidplus", "mirId": "MIR:00000096", "name": "ChemIDplus", "pattern": "^\\d+\\-\\d+\\-\\d+$", "description": "ChemIDplus is a web-based search system that provides access to structure and nomenclature authority files used for the identification of chemical substances cited in National Library of Medicine (NLM) databases. It also provides structure searching and direct links to many biomedical resources at NLM and on the Internet for chemicals of interest.", "created": "2019-06-11T14:15:58.577+0000", "modified": "2019-06-11T14:15:58.577+0000", "resources": [{"id": 317, "mirId": "MIR:00100127", "urlPattern": "https://chem.nlm.nih.gov/chemidplus/rn/{$id}", "name": "ChemIDplus at National Library of Medicine", "description": "ChemIDplus at National Library of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "57-27-2", "resourceHomeUrl": "https://chem.nlm.nih.gov/chemidplus/chemidheavy.jsp", "institution": {"id": 316, "name": "National Library of Medicine, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "57-27-2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 318, "prefix": "biosystems", "mirId": "MIR:00000097", "name": "BioSystems", "pattern": "^\\d+$", "description": "The NCBI BioSystems database centralizes and cross-links existing biological systems databases, increasing their utility and target audience by integrating their pathways and systems into NCBI resources.", "created": "2019-06-11T14:15:58.906+0000", "modified": "2019-06-11T14:15:58.906+0000", "resources": [{"id": 319, "mirId": "MIR:00100128", "urlPattern": "https://www.ncbi.nlm.nih.gov/biosystems/{$id}", "name": "BioSystems database at NCBI", "description": "BioSystems database at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "001", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/biosystems/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 320, "prefix": "ctd.chemical", "mirId": "MIR:00000098", "name": "CTD Chemical", "pattern": "^[CD]\\d+$", "description": "The Comparative Toxicogenomics Database (CTD) presents scientifically reviewed and curated information on chemicals, relevant genes and proteins, and their interactions in vertebrates and invertebrates. It integrates sequence, reference, species, microarray, and general toxicology information to provide a unique centralized resource for toxicogenomic research. The database also provides visualization capabilities that enable cross-species comparisons of gene and protein sequences.", "created": "2019-06-11T14:15:59.108+0000", "modified": "2019-06-11T14:15:59.108+0000", "resources": [{"id": 322, "mirId": "MIR:00100129", "urlPattern": "http://ctdbase.org/detail.go?type=chem&acc={$id}", "name": "Comparative Toxicogenomics Database (Chemical)", "description": "Comparative Toxicogenomics Database (Chemical)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "D001151", "resourceHomeUrl": "http://ctdbase.org/", "institution": {"id": 321, "name": "The Mount Desert Island Biological Laboratory", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "D001151", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 323, "prefix": "ctd.disease", "mirId": "MIR:00000099", "name": "CTD Disease", "pattern": "^D\\d+$", "description": "The Comparative Toxicogenomics Database (CTD) presents scientifically reviewed and curated information on chemicals, relevant genes and proteins, and their interactions in vertebrates and invertebrates. It integrates sequence, reference, species, microarray, and general toxicology information to provide a unique centralized resource for toxicogenomic research. The database also provides visualization capabilities that enable cross-species comparisons of gene and protein sequences.", "created": "2019-06-11T14:15:59.348+0000", "modified": "2019-06-11T14:15:59.348+0000", "resources": [{"id": 324, "mirId": "MIR:00100130", "urlPattern": "http://ctdbase.org/detail.go?type=disease&db=MESH&acc={$id}", "name": "Comparative Toxicogenomics Database (Disease)", "description": "Comparative Toxicogenomics Database (Disease)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "D053716", "resourceHomeUrl": "http://ctdbase.org/", "institution": {"id": 321, "name": "The Mount Desert Island Biological Laboratory", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "D053716", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 325, "prefix": "ctd.gene", "mirId": "MIR:00000100", "name": "CTD Gene", "pattern": "^\\d+$", "description": "The Comparative Toxicogenomics Database (CTD) presents scientifically reviewed and curated information on chemicals, relevant genes and proteins, and their interactions in vertebrates and invertebrates. It integrates sequence, reference, species, microarray, and general toxicology information to provide a unique centralized resource for toxicogenomic research. The database also provides visualization capabilities that enable cross-species comparisons of gene and protein sequences.", "created": "2019-06-11T14:15:59.547+0000", "modified": "2019-06-11T14:15:59.547+0000", "resources": [{"id": 326, "mirId": "MIR:00100131", "urlPattern": "http://ctdbase.org/detail.go?type=gene&acc={$id}", "name": "Comparative Toxicogenomics Database (Gene)", "description": "Comparative Toxicogenomics Database (Gene)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "101", "resourceHomeUrl": "http://ctdbase.org/", "institution": {"id": 321, "name": "The Mount Desert Island Biological Laboratory", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "101", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 327, "prefix": "bionumbers", "mirId": "MIR:00000101", "name": "BioNumbers", "pattern": "^\\d+$", "description": "BioNumbers is a database of key numberical information that may be used in molecular biology. Along with the numbers, it contains references to the original literature, useful comments, and related numeric data.", "created": "2019-06-11T14:15:59.756+0000", "modified": "2019-06-11T14:15:59.756+0000", "resources": [{"id": 329, "mirId": "MIR:00100132", "urlPattern": "https://bionumbers.hms.harvard.edu/bionumber.aspx?id={$id}", "name": "BioNumbers database", "description": "BioNumbers database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "104674", "resourceHomeUrl": "https://bionumbers.hms.harvard.edu", "institution": {"id": 328, "name": "Weizmann Institute", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IL", "countryName": "Israel"}}, "location": {"countryCode": "IL", "countryName": "Israel"}, "deprecated": false, "deprecationDate": null}], "sampleId": "104674", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 330, "prefix": "drugbank", "mirId": "MIR:00000102", "name": "DrugBank", "pattern": "^DB\\d{5}$", "description": "The DrugBank database is a bioinformatics and chemoinformatics resource that combines detailed drug (i.e. chemical, pharmacological and pharmaceutical) data with comprehensive drug target (i.e. sequence, structure, and pathway) information. This collection references drug information.", "created": "2019-06-11T14:16:00.005+0000", "modified": "2019-06-11T14:16:00.005+0000", "resources": [{"id": 332, "mirId": "MIR:00100133", "urlPattern": "http://www.drugbank.ca/drugs/{$id}", "name": "DrugBank drug information", "description": "DrugBank drug information", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "DB00001", "resourceHomeUrl": "http://www.drugbank.ca/", "institution": {"id": 331, "name": "Departments of Computing Science & Biological Sciences, University of Alberta", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DB00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 333, "prefix": "t3db", "mirId": "MIR:00000103", "name": "T3DB", "pattern": "^T3D\\d+$", "description": "Toxin and Toxin Target Database (T3DB) is a bioinformatics resource that combines detailed toxin data with comprehensive toxin target information.", "created": "2019-06-11T14:16:00.251+0000", "modified": "2019-06-11T14:16:00.251+0000", "resources": [{"id": 335, "mirId": "MIR:00100136", "urlPattern": "http://www.t3db.org/toxins/{$id}", "name": "Toxin and Toxin Target Database", "description": "Toxin and Toxin Target Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "T3D0001", "resourceHomeUrl": "http://www.t3db.org/", "institution": {"id": 334, "name": "University of Alberta", "homeUrl": "https://www.ualberta.ca", "description": "The University of Alberta in Edmonton is one of Canada's top teaching and research universities, with an international reputation for excellence across the humanities, sciences, creative arts, business, engineering and health sciences.", "rorId": "https://ror.org/0160cpw27", "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "T3D0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 336, "prefix": "smpdb", "mirId": "MIR:00000104", "name": "Small Molecule Pathway Database", "pattern": "^SMP\\d+$", "description": "The Small Molecule Pathway Database (SMPDB) contains small molecule pathways found in humans, which are presented visually. All SMPDB pathways include information on the relevant organs, subcellular compartments, protein cofactors, protein locations, metabolite locations, chemical structures and protein quaternary structures. Accompanying data includes detailed descriptions and references, providing an overview of the pathway, condition or processes depicted in each diagram.", "created": "2019-06-11T14:16:00.499+0000", "modified": "2019-06-11T14:16:00.499+0000", "resources": [{"id": 337, "mirId": "MIR:00100137", "urlPattern": "http://smpdb.ca/view/{$id}", "name": "Small Molecule Pathway Database", "description": "Small Molecule Pathway Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SMP00001", "resourceHomeUrl": "https://smpdb.ca/", "institution": {"id": 334, "name": "University of Alberta", "homeUrl": "https://www.ualberta.ca", "description": "The University of Alberta in Edmonton is one of Canada's top teaching and research universities, with an international reputation for excellence across the humanities, sciences, creative arts, business, engineering and health sciences.", "rorId": "https://ror.org/0160cpw27", "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SMP00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 338, "prefix": "phosphosite.protein", "mirId": "MIR:00000105", "name": "PhosphoSite Protein", "pattern": "^\\d{5}$", "description": "PhosphoSite is a mammalian protein database that provides information about in vivo phosphorylation sites. This datatype refers to protein-level information, providing a list of phosphorylation sites for each protein in the database.", "created": "2019-06-11T14:16:00.712+0000", "modified": "2019-06-11T14:16:00.712+0000", "resources": [{"id": 340, "mirId": "MIR:00100138", "urlPattern": "http://www.phosphosite.org/proteinAction.do?id={$id}", "name": "PhosphoSite", "description": "PhosphoSite", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "12300", "resourceHomeUrl": "http://www.phosphosite.org/homeAction.do", "institution": {"id": 339, "name": "Cell Signaling Technology, Inc.", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "12300", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 344, "prefix": "biomodels.teddy", "mirId": "MIR:00000107", "name": "TEDDY", "pattern": "^TEDDY_\\d{7}$", "description": "The Terminology for Description of Dynamics (TEDDY) is an ontology for dynamical behaviours, observable dynamical phenomena, and control elements of bio-models and biological systems in Systems Biology and Synthetic Biology.", "created": "2019-06-11T14:16:01.178+0000", "modified": "2019-06-11T14:16:01.178+0000", "resources": [{"id": 345, "mirId": "MIR:00100140", "urlPattern": "http://purl.bioontology.org/ontology/TEDDY/{$id}", "name": "TEDDY through BioPortal", "description": "TEDDY through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "TEDDY_0000066", "resourceHomeUrl": "http://teddyontology.sourceforge.net/", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 346, "mirId": "MIR:00100761", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/teddy/terms?short_form={$id}", "name": "TEDDY though OLS", "description": "TEDDY though OLS", "official": false, "providerCode": "ols", "sampleId": "TEDDY_0000066", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/teddy", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TEDDY_0000066", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 347, "prefix": "biomodels.kisao", "mirId": "MIR:00000108", "name": "KiSAO", "pattern": "^KISAO_\\d+$", "description": "The Kinetic Simulation Algorithm Ontology (KiSAO) is an ontology that describes simulation algorithms and methods used for biological kinetic models, and the relationships between them. This provides a means to unambiguously refer to simulation algorithms when describing a simulation experiment.", "created": "2019-06-11T14:16:01.508+0000", "modified": "2019-06-11T14:16:01.508+0000", "resources": [{"id": 348, "mirId": "MIR:00100141", "urlPattern": "http://purl.bioontology.org/ontology/KISAO/kisao:{$id}", "name": "KiSAO via NCBO's Bioportal", "description": "KiSAO via NCBO's Bioportal", "official": false, "providerCode": "bptl", "sampleId": "KISAO_0000057", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/KISAO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 349, "mirId": "MIR:00100757", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/kisao/terms?short_form={$id}", "name": "KiSAO through OLS", "description": "KiSAO through OLS", "official": false, "providerCode": "ols", "sampleId": "KISAO_0000057", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/kisao", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "KISAO_0000057", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 352, "prefix": "cl", "mirId": "MIR:00000110", "name": "Cell Type Ontology", "pattern": "^CL:\\d{7}$", "description": "The Cell Ontology is designed as a structured controlled vocabulary for cell types. The ontology was constructed for use by the model organism and other bioinformatics databases, incorporating cell types from prokaryotes to mammals, and includes plants and fungi.", "created": "2019-06-11T14:16:02.066+0000", "modified": "2019-06-11T14:16:02.066+0000", "resources": [{"id": 353, "mirId": "MIR:00100143", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/cl/terms?obo_id=CL:{$id}", "name": "Cell Type Ontology through OLS", "description": "Cell Type Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0000232", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/cl", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 354, "mirId": "MIR:00100234", "urlPattern": "http://purl.bioontology.org/ontology/CL/CL:{$id}", "name": "Cell Type Ontology through BioPortal", "description": "Cell Type Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0000232", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/CL", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000232", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 355, "prefix": "bto", "mirId": "MIR:00000111", "name": "Brenda Tissue Ontology", "pattern": "^BTO:\\d{7}$", "description": "The Brenda tissue ontology is a structured controlled vocabulary eastablished to identify the source of an enzyme cited in the Brenda enzyme database. It comprises terms of tissues, cell lines, cell types and cell cultures from uni- and multicellular organisms.", "created": "2019-06-11T14:16:02.399+0000", "modified": "2019-06-11T14:16:02.399+0000", "resources": [{"id": 356, "mirId": "MIR:00100144", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/bto/terms?obo_id=BTO:{$id}", "name": "Brenda Tissue Ontology through OLS", "description": "Brenda Tissue Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0000146", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/bto", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 357, "mirId": "MIR:00100233", "urlPattern": "http://purl.bioontology.org/ontology/BTO/BTO:{$id}", "name": "Brenda Tissue Ontology through BioPortal", "description": "Brenda Tissue Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0000146", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/BTO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000146", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 358, "prefix": "pato", "mirId": "MIR:00000112", "name": "PATO", "pattern": "^PATO:\\d{7}$", "description": "PATO is an ontology of phenotypic qualities, intended for use in a number of applications, primarily defining composite phenotypes and phenotype annotation.", "created": "2019-06-11T14:16:02.730+0000", "modified": "2019-06-11T14:16:02.730+0000", "resources": [{"id": 359, "mirId": "MIR:00100145", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/pato/terms?obo_id=PATO:{$id}", "name": "PATO through OLS", "description": "PATO through OLS", "official": false, "providerCode": "ols", "sampleId": "0001998", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/pato", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 360, "mirId": "MIR:00100238", "urlPattern": "http://purl.bioontology.org/ontology/PATO/PATO:{$id}", "name": "PATO through BioPortal", "description": "PATO through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0001998", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PATO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0001998", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 363, "prefix": "glycomedb", "mirId": "MIR:00000114", "name": "GlycomeDB", "pattern": "^\\w+$", "description": "GlycomeDB is the result of a systematic data integration effort, and provides an overview of all carbohydrate structures available in public databases, as well as cross-links.", "created": "2019-06-11T14:16:03.253+0000", "modified": "2019-06-11T14:16:03.253+0000", "resources": [{"id": 365, "mirId": "MIR:00100147", "urlPattern": "https://glytoucan.org/Structures/Glycans/{$id}", "name": "GlycomeDB carbohydrate structure database", "description": "GlycomeDB carbohydrate structure database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "G77500AY", "resourceHomeUrl": "https://glytoucan.org/", "institution": {"id": 364, "name": "German Cancer Research Center, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "G77500AY", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 366, "prefix": "lipidbank", "mirId": "MIR:00000115", "name": "LipidBank", "pattern": "^\\w+\\d+$", "description": "LipidBank is an open, publicly free database of natural lipids including fatty acids, glycerolipids, sphingolipids, steroids, and various vitamins.", "created": "2019-06-11T14:16:03.490+0000", "modified": "2019-06-11T14:16:03.490+0000", "resources": [{"id": 368, "mirId": "MIR:00100148", "urlPattern": "http://lipidbank.jp/cgi-bin/detail.cgi?id={$id}", "name": "LipidBank the Lipid database", "description": "LipidBank the Lipid database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BBA0001", "resourceHomeUrl": "http://lipidbank.jp/index.html", "institution": {"id": 367, "name": "Department of Computational Biology, University of Tokyo, Tokyo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BBA0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 369, "prefix": "kegg.orthology", "mirId": "MIR:00000116", "name": "KEGG Orthology", "pattern": "^K\\d+$", "description": "KEGG Orthology (KO) consists of manually defined, generalised ortholog groups that correspond to KEGG pathway nodes and BRITE hierarchy nodes in all organisms.", "created": "2019-06-11T14:16:03.735+0000", "modified": "2019-06-11T14:16:03.735+0000", "resources": [{"id": 370, "mirId": "MIR:00100149", "urlPattern": "http://www.kegg.jp/entry/{$id}", "name": "KEGG Orthology Database", "description": "KEGG Orthology Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "K00001", "resourceHomeUrl": "http://www.genome.jp/kegg/ko.html", "institution": {"id": 367, "name": "Department of Computational Biology, University of Tokyo, Tokyo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "K00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 371, "prefix": "prodom", "mirId": "MIR:00000117", "name": "ProDom", "pattern": "^PD\\d+$", "description": "ProDom is a database of protein domain families generated from the global comparison of all available protein sequences.", "created": "2019-06-11T14:16:03.923+0000", "modified": "2019-06-11T14:16:03.923+0000", "resources": [{"id": 373, "mirId": "MIR:00100150", "urlPattern": "http://prodom.prabi.fr/prodom/current/cgi-bin/request.pl?question=DBEN&query={$id}", "name": "ProDom Protein Domain Database", "description": "ProDom Protein Domain Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PD10000", "resourceHomeUrl": "http://prodom.prabi.fr/prodom/current/html/home.php", "institution": {"id": 372, "name": "Laboratoire des Interactions Plantes-Microorganismes, INRA/CNRS", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PD10000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 374, "prefix": "smart", "mirId": "MIR:00000118", "name": "SMART", "pattern": "^SM\\d{5}$", "description": "The Simple Modular Architecture Research Tool (SMART) is an online tool for the identification and annotation of protein domains, and the analysis of domain architectures.", "created": "2019-06-11T14:16:04.151+0000", "modified": "2019-06-11T14:16:04.151+0000", "resources": [{"id": 376, "mirId": "MIR:00100151", "urlPattern": "http://smart.embl-heidelberg.de/smart/do_annotation.pl?DOMAIN={$id}", "name": "SMART (Simple Modular Architecture Research Tool)", "description": "SMART (Simple Modular Architecture Research Tool)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SM00015", "resourceHomeUrl": "http://smart.embl-heidelberg.de/", "institution": {"id": 375, "name": "EMBL, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SM00015", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 377, "prefix": "cdd", "mirId": "MIR:00000119", "name": "Conserved Domain Database", "pattern": "^(cd)?\\d{5}$", "description": "The Conserved Domain Database (CDD) is a collection of multiple sequence alignments and derived database search models, which represent protein domains conserved in molecular evolution.", "created": "2019-06-11T14:16:04.400+0000", "modified": "2019-06-11T14:16:04.400+0000", "resources": [{"id": 379, "mirId": "MIR:00100152", "urlPattern": "https://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid={$id}", "name": "Conserved Domain Database at NCBI", "description": "Conserved Domain Database at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "cd00400", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=cdd", "institution": {"id": 378, "name": "National Library of Medicine, National Institutes of Health, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "cd00400", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 380, "prefix": "ro", "mirId": "MIR:00000120", "name": "Relation Ontology", "pattern": "^RO_\\d{7}$", "description": "The OBO Relation Ontology provides consistent and unambiguous formal definitions of the relational expressions used in biomedical ontologies.", "created": "2019-06-11T14:16:04.654+0000", "modified": "2019-06-11T14:16:04.654+0000", "resources": [{"id": 382, "mirId": "MIR:00100764", "urlPattern": "http://purl.obolibrary.org/obo/{$id}", "name": "OBO Relation Ontology through OntoBee", "description": "OBO Relation Ontology through OntoBee", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "RO_0002533", "resourceHomeUrl": "http://obofoundry.org/ontology/ro.html", "institution": {"id": 381, "name": "University of Michigan Medical School (MI), Lawrence Berkeley National Laboratory (CA) and Science Commons (MA)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 383, "mirId": "MIR:00100767", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ro/terms?short_form={$id}", "name": "OBO Relation Ontology through OLS", "description": "OBO Relation Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "RO_0002533", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ro", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "RO_0002533", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 384, "prefix": "mmdb", "mirId": "MIR:00000121", "name": "Molecular Modeling Database", "pattern": "^\\d{1,5}$", "description": "The Molecular Modeling Database (MMDB) is a database of experimentally determined structures obtained from the Protein Data Bank (PDB). Since structures are known for a large fraction of all protein families, structure homologs may facilitate inference of biological function, or the identification of binding or catalytic sites.", "created": "2019-06-11T14:16:05.062+0000", "modified": "2019-06-11T14:16:05.062+0000", "resources": [{"id": 385, "mirId": "MIR:00100154", "urlPattern": "http://www.ncbi.nlm.nih.gov/Structure/mmdb/mmdbsrv.cgi?uid={$id}", "name": "MMDB at NCBI", "description": "MMDB at NCBI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "50885", "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/sites/entrez?db=structure", "institution": {"id": 378, "name": "National Library of Medicine, National Institutes of Health, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "50885", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 386, "prefix": "imex", "mirId": "MIR:00000122", "name": "IMEx", "pattern": "^IM-\\d+(-?)(\\d+?)$", "description": "The International Molecular Exchange (IMEx) is a consortium of molecular interaction databases which collaborate to share manual curation efforts and provide accessibility to multiple information sources.", "created": "2019-06-11T14:16:05.272+0000", "modified": "2019-06-11T14:16:05.272+0000", "resources": [{"id": 387, "mirId": "MIR:00100155", "urlPattern": "https://www.ebi.ac.uk/intact/imex/main.xhtml?query={$id}", "name": "IMEx Consortium running at EBI", "description": "IMEx Consortium running at EBI", "official": false, "providerCode": "ebi", "sampleId": "IM-19210-3", "resourceHomeUrl": "https://www.imexconsortium.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 388, "mirId": "MIR:00100663", "urlPattern": "https://imexcentral.org/icentral/imex/rec/{$id}", "name": "IMEx Consortium though Intact", "description": "IMEx Consortium though Intact", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "IM-19210-3", "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "IM-19210-3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 389, "prefix": "irefweb", "mirId": "MIR:00000123", "name": "iRefWeb", "pattern": "^\\d+$", "description": "iRefWeb is an interface to a relational database containing the latest build of the interaction Reference Index (iRefIndex) which integrates protein interaction data from ten different interaction databases: BioGRID, BIND, CORUM, DIP, HPRD, INTACT, MINT, MPPI, MPACT and OPHID. In addition, iRefWeb associates interactions with the PubMed record from which they are derived.", "created": "2019-06-11T14:16:05.614+0000", "modified": "2019-06-11T14:16:05.614+0000", "resources": [{"id": 391, "mirId": "MIR:00100156", "urlPattern": "http://wodaklab.org/iRefWeb/interaction/show/{$id}", "name": "iRefWeb Protein Interaction Reference Index", "description": "iRefWeb Protein Interaction Reference Index", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "617102", "resourceHomeUrl": "http://wodaklab.org/iRefWeb/", "institution": {"id": 390, "name": "Wodak Lab, Hospital for Sick Children, Toronto", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "617102", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 392, "prefix": "mpid", "mirId": "MIR:00000124", "name": "Microbial Protein Interaction Database", "pattern": "^\\d+$", "description": "The microbial protein interaction database (MPIDB) provides physical microbial interaction data. The interactions are manually curated from the literature or imported from other databases, and are linked to supporting experimental evidence, as well as evidences based on interaction conservation, protein complex membership, and 3D domain contacts.", "created": "2019-06-11T14:16:05.849+0000", "modified": "2019-06-11T14:16:05.849+0000", "resources": [{"id": 394, "mirId": "MIR:00100157", "urlPattern": "http://www.jcvi.org/mpidb/experiment.php?interaction_id={$id}", "name": "Microbial Protein Interaction Database", "description": "Microbial Protein Interaction Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "172", "resourceHomeUrl": "http://www.jcvi.org/mpidb/about.php", "institution": {"id": 393, "name": "J. Craig Venter Institute, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 395, "mirId": "MIR:00100655", "urlPattern": "https://www.ebi.ac.uk/intact/query/interaction_id:MPIDB-INT-{$id}", "name": "Microbial Protein Interaction Database subset through IntAct", "description": "Microbial Protein Interaction Database subset through IntAct", "official": false, "providerCode": "ebi", "sampleId": "1776", "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "172", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 396, "prefix": "phosphosite.residue", "mirId": "MIR:00000125", "name": "PhosphoSite Residue", "pattern": "^\\d+$", "description": "PhosphoSite is a mammalian protein database that provides information about in vivo phosphorylation sites. This datatype refers to residue-level information, providing a information about a single modification position in a specific protein sequence.", "created": "2019-06-11T14:16:06.208+0000", "modified": "2019-06-11T14:16:06.208+0000", "resources": [{"id": 397, "mirId": "MIR:00100159", "urlPattern": "http://www.phosphosite.org/siteAction.do?id={$id}", "name": "PhosphoSite Residue", "description": "PhosphoSite Residue", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2842", "resourceHomeUrl": "http://www.phosphosite.org/homeAction.do", "institution": {"id": 339, "name": "Cell Signaling Technology, Inc.", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2842", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 398, "prefix": "neurolex", "mirId": "MIR:00000126", "name": "NeuroLex", "pattern": "^([Bb]irnlex_|Sao|nlx_|GO_|CogPO|HDO|nifext_)\\d+$", "description": "The NeuroLex project is a dynamic lexicon of terms used in neuroscience. It is supported by the Neuroscience Information Framework project and incorporates information from the NIF standardised ontology (NIFSTD), and its predecessor, the Biomedical Informatics Research Network Lexicon (BIRNLex).", "created": "2019-06-11T14:16:06.417+0000", "modified": "2019-06-11T14:16:06.417+0000", "resources": [{"id": 400, "mirId": "MIR:00100160", "urlPattern": "http://www.neurolex.org/wiki/{$id}", "name": "NeuroLex Neuroscience Lexicon", "description": "NeuroLex Neuroscience Lexicon", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "Birnlex_721", "resourceHomeUrl": "http://www.neurolex.org/wiki/Main_Page", "institution": {"id": 399, "name": "Department of Neuroscience, University of California, San Diego", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 401, "mirId": "MIR:00100183", "urlPattern": "http://purl.bioontology.org/ontology/BIRNLEX/{$id}", "name": "NeuroLex through NCBO's BioPortal", "description": "NeuroLex through NCBO's BioPortal", "official": false, "providerCode": "bptl", "sampleId": "birnlex_1672", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/BIRNLEX", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Birnlex_721", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 402, "prefix": "obi", "mirId": "MIR:00000127", "name": "Ontology for Biomedical Investigations", "pattern": "(^OBI:\\d{7}$)|(^OBI_\\d{7}$)", "description": "The Ontology for Biomedical Investigations (OBI) project is developing an integrated ontology for the description of biological and clinical investigations. The ontology will represent the design of an investigation, the protocols and instrumentation used, the material used, the data generated and the type analysis performed on it. Currently OBI is being built under the Basic Formal Ontology (BFO).", "created": "2019-06-11T14:16:06.780+0000", "modified": "2019-06-11T14:16:06.780+0000", "resources": [{"id": 404, "mirId": "MIR:00100162", "urlPattern": "http://purl.obolibrary.org/obo/{$id}", "name": "OBI through Ontobee", "description": "OBI through Ontobee", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "OBI_0000070", "resourceHomeUrl": "http://www.ontobee.org/", "institution": {"id": 403, "name": "University of Michigan Medical School (MI), awrence Berkeley National Laboratory (CA) and Science Commons (MA)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 405, "mirId": "MIR:00100177", "urlPattern": "http://purl.bioontology.org/ontology/OBI/{$id}", "name": "Ontology for Biomedical Investigations through Bioportal", "description": "Ontology for Biomedical Investigations through Bioportal", "official": false, "providerCode": "bptl", "sampleId": "OBI:0000070", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/OBI", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 406, "mirId": "MIR:00100760", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/obi/terms?obo_id={$id}", "name": "OBI through OLS", "description": "OBI through OLS", "official": false, "providerCode": "ols", "sampleId": "OBI:0000070", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/obi", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "OBI_0000070", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 831, "prefix": "asap", "mirId": "MIR:00000283", "name": "ASAP", "pattern": "^[A-Za-z0-9-]+$", "description": "ASAP (a systematic annotation package for community analysis of genomes) stores bacterial genome sequence and functional characterization data. It includes multiple genome sequences at various stages of analysis, corresponding experimental data and access to collections of related genome resources.", "created": "2019-06-11T14:16:44.568+0000", "modified": "2019-06-11T14:16:44.568+0000", "resources": [{"id": 833, "mirId": "MIR:00100364", "urlPattern": "http://asap.ahabs.wisc.edu/asap/feature_info.php?LocationID=WIS&FeatureID={$id}", "name": "ASAP at University of Wisconsin", "description": "ASAP at University of Wisconsin", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ABE-0009634", "resourceHomeUrl": "http://asap.ahabs.wisc.edu/asap/home.php", "institution": {"id": 2054, "name": "University of Wisconsin-Madison", "homeUrl": "https://www.wisc.edu/", "description": "The University of Wisconsin\u2013Madison is a public research university in Madison, Wisconsin. Founded when Wisconsin achieved statehood in 1848, UW\u2013Madison is the official state university of Wisconsin, and the flagship campus of the University of Wisconsin System.\nIt was the first public university established in Wisconsin and remains the oldest and largest public university in the state. It became a land-grant institution in 1866.\nThe 933-acre (378 ha) main campus, located on the shores of Lake Mendota, includes four National Historic Landmarks.\nThe University also owns and operates a historic 1,200-acre (486 ha) arboretum established in 1932, located 4 miles (6.4 km) south of the main campus.", "rorId": "https://ror.org/01y2jtd41", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ABE-0009634", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 407, "prefix": "sabiork.ec", "mirId": "MIR:00000128", "name": "SABIO-RK EC Record", "pattern": "^((\\d+)|(\\d+\\.\\d+)|(\\d+\\.\\d+\\.\\d+)|(\\d+\\.\\d+\\.\\d+\\.\\d+))$", "description": "SABIO-RK is a relational database system that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. The EC record provides for a given enzyme classification (EC) the associated list of enzyme-catalysed reactions and their corresponding kinetic data.", "created": "2019-06-11T14:16:07.366+0000", "modified": "2019-06-11T14:16:07.366+0000", "resources": [{"id": 409, "mirId": "MIR:00100163", "urlPattern": "http://sabiork.h-its.org/newSearch?q=ecnumber:{$id}", "name": "SABIO-RK Reaction Kinetics Database - Enzyme Classification (EC)", "description": "SABIO-RK Reaction Kinetics Database - Enzyme Classification (EC)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2.7.1.1", "resourceHomeUrl": "http://sabiork.h-its.org/", "institution": {"id": 408, "name": "Heidelberg Institute for Theoretical Studies (HITS gGmbH)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2.7.1.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 410, "prefix": "opb", "mirId": "MIR:00000129", "name": "Ontology of Physics for Biology", "pattern": "^OPB_\\d+$", "description": "The OPB is a reference ontology of classical physics as applied to the dynamics of biological systems. It is designed to encompass the multiple structural scales (multiscale atoms to organisms) and multiple physical domains (multidomain fluid dynamics, chemical kinetics, particle diffusion, etc.) that are encountered in the study and analysis of biological organisms.", "created": "2019-06-11T14:16:07.624+0000", "modified": "2019-06-11T14:16:07.624+0000", "resources": [{"id": 411, "mirId": "MIR:00100167", "urlPattern": "http://purl.bioontology.org/ontology/OPB?conceptid=http%3A%2F%2Fbhi.washington.edu%2FOPB%23{$id}", "name": "Ontology of Physics for Biology through Bioportal", "description": "Ontology of Physics for Biology through Bioportal", "official": false, "providerCode": "bptl", "sampleId": "OPB_00573", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/OPB", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "OPB_00573", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 412, "prefix": "jws", "mirId": "MIR:00000130", "name": "JWS Online", "pattern": "^\\w+$", "description": "JWS Online is a repository of curated biochemical pathway models, and additionally provides the ability to run simulations of these models in a web browser.", "created": "2019-06-11T14:16:07.820+0000", "modified": "2019-06-11T14:16:07.820+0000", "resources": [{"id": 414, "mirId": "MIR:00100168", "urlPattern": "http://jjj.biochem.sun.ac.za/models/{$id}/", "name": "JWS Online Model Repository at Stellenbosch", "description": "JWS Online Model Repository at Stellenbosch", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "curien", "resourceHomeUrl": "http://jjj.biochem.sun.ac.za/models/", "institution": {"id": 413, "name": "Department of Biochemistry, Stellenbosch University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "ZA", "countryName": "South Africa"}}, "location": {"countryCode": "ZA", "countryName": "South Africa"}, "deprecated": false, "deprecationDate": null}, {"id": 418, "mirId": "MIR:00100170", "urlPattern": "http://jjj.mib.ac.uk/models/{$id}", "name": "JWS Online Model Repository at Manchester", "description": "JWS Online Model Repository at Manchester", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "curien", "resourceHomeUrl": "http://jjj.mib.ac.uk/index.html", "institution": {"id": 417, "name": "Manchester Interdisciplinary Biocentre, University of Manchester", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 416, "mirId": "MIR:00100169", "urlPattern": "http://jjj.bio.vu.nl/models/{$id}/", "name": "JWS Online Model Repository at Amsterdam", "description": "JWS Online Model Repository at Amsterdam", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "curien", "resourceHomeUrl": "http://jjj.bio.vu.nl/models/", "institution": {"id": 415, "name": "University of Amsterdam", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "curien", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 419, "prefix": "modeldb", "mirId": "MIR:00000131", "name": "ModelDB", "pattern": "^\\d+$", "description": "ModelDB is a curated, searchable database of published models in the computational neuroscience domain. It accommodates models expressed in textual form, including procedural or declarative languages (e.g. C++, XML dialects) and source code written for any simulation environment.", "created": "2019-06-11T14:16:08.429+0000", "modified": "2019-06-11T14:16:08.429+0000", "resources": [{"id": 420, "mirId": "MIR:00100171", "urlPattern": "http://senselab.med.yale.edu/ModelDB/ShowModel.asp?model={$id}", "name": "ModelDB at SenseLab", "description": "ModelDB at SenseLab", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "45539", "resourceHomeUrl": "http://senselab.med.yale.edu/ModelDB/", "institution": {"id": 310, "name": "Yale University School of Medicine", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "45539", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 421, "prefix": "subtiwiki", "mirId": "MIR:00000132", "name": "SubtiWiki", "pattern": "^BSU\\d{5}$", "description": "SubtiWiki is a scientific wiki for the model bacterium Bacillus subtilis. It provides comprehensive information on all genes and their proteins and RNA products, as well as information related to the current investigation of the gene/protein. \r\nNote: Currently, direct access to RNA products is restricted. This is expected to be rectified soon.", "created": "2019-06-11T14:16:08.635+0000", "modified": "2019-06-11T14:16:08.635+0000", "resources": [{"id": 423, "mirId": "MIR:00100172", "urlPattern": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/{$id}", "name": "SubtiWiki website", "description": "SubtiWiki website", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BSU29180", "resourceHomeUrl": "http://www.subtiwiki.uni-goettingen.de/wiki/index.php/Main_Page", "institution": {"id": 422, "name": "University of G\u00f6ttingen, Department for General Microbiology", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BSU29180", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 424, "prefix": "pid.pathway", "mirId": "MIR:00000133", "name": "NCI Pathway Interaction Database: Pathway", "pattern": "^\\w+$", "description": "The Pathway Interaction Database is a highly-structured, curated collection of information about known human biomolecular interactions and key cellular processes assembled into signaling pathways. This datatype provides access to pathway information.", "created": "2019-06-11T14:16:08.872+0000", "modified": "2019-06-11T14:16:08.872+0000", "resources": [{"id": 426, "mirId": "MIR:00100173", "urlPattern": "http://pid.nci.nih.gov/search/pathway_landing.shtml?what=graphic&jpg=on&pathway_id={$id}", "name": "NCI Pathway Interaction Database (Pathway)", "description": "NCI Pathway Interaction Database (Pathway)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "pi3kcipathway", "resourceHomeUrl": "http://pid.nci.nih.gov/", "institution": {"id": 425, "name": "National Cancer Institute, Rockville, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "pi3kcipathway", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 427, "prefix": "doqcs.model", "mirId": "MIR:00000134", "name": "Database of Quantitative Cellular Signaling: Model", "pattern": "^\\d+$", "description": "The Database of Quantitative Cellular Signaling is a repository of models of signaling pathways. It includes reaction schemes, concentrations, rate constants, as well as annotations on the models. The database provides a range of search, navigation, and comparison functions. This datatype provides access to specific models.", "created": "2019-06-11T14:16:09.111+0000", "modified": "2019-06-11T14:16:09.111+0000", "resources": [{"id": 429, "mirId": "MIR:00100174", "urlPattern": "http://doqcs.ncbs.res.in/template.php?&y=accessiondetails&an={$id}", "name": "Database of Quantitative Cellular Signaling (DOQCS) - Model Access", "description": "Database of Quantitative Cellular Signaling (DOQCS) - Model Access", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "57", "resourceHomeUrl": "http://doqcs.ncbs.res.in/", "institution": {"id": 428, "name": "National Centre for Biological Sciences, Bangalore", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "57", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 430, "prefix": "doqcs.pathway", "mirId": "MIR:00000135", "name": "Database of Quantitative Cellular Signaling: Pathway", "pattern": "^\\d+$", "description": "The Database of Quantitative Cellular Signaling is a repository of models of signaling pathways. It includes reaction schemes, concentrations, rate constants, as well as annotations on the models. The database provides a range of search, navigation, and comparison functions. This datatype provides access to pathways.", "created": "2019-06-11T14:16:09.372+0000", "modified": "2019-06-11T14:16:09.372+0000", "resources": [{"id": 431, "mirId": "MIR:00100175", "urlPattern": "http://doqcs.ncbs.res.in/template.php?&y=pathwaydetails&pn={$id}", "name": "Database of Quantitative Cellular Signaling (DOQCS) - Pathway Access", "description": "Database of Quantitative Cellular Signaling (DOQCS) - Pathway Access", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "131", "resourceHomeUrl": "http://doqcs.ncbs.res.in/", "institution": {"id": 428, "name": "National Centre for Biological Sciences, Bangalore", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "131", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 432, "prefix": "uo", "mirId": "MIR:00000136", "name": "Unit Ontology", "pattern": "^UO:\\d{7}?", "description": "Ontology of standardized units", "created": "2019-06-11T14:16:09.596+0000", "modified": "2019-06-11T14:16:09.596+0000", "resources": [{"id": 433, "mirId": "MIR:00100178", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/uo/terms?obo_id=UO:{$id}", "name": "Unit Ontology via Ontology Lookup Service", "description": "Unit Ontology via Ontology Lookup Service", "official": false, "providerCode": "ols", "sampleId": "0000080", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/uo", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 434, "mirId": "MIR:00100243", "urlPattern": "http://purl.bioontology.org/ontology/UO/UO:{$id}", "name": "Unit Ontology through BioPortal", "description": "Unit Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0000080", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/UO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000080", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 435, "prefix": "clinicaltrials", "mirId": "MIR:00000137", "name": "ClinicalTrials.gov", "pattern": "^NCT\\d{8}$", "description": "ClinicalTrials.gov provides free access to information on clinical studies for a wide range of diseases and conditions. Studies listed in the database are conducted in 175 countries", "created": "2019-06-11T14:16:09.937+0000", "modified": "2019-06-11T14:16:09.937+0000", "resources": [{"id": 437, "mirId": "MIR:00100179", "urlPattern": "https://clinicaltrials.gov/ct2/show/{$id}", "name": "ClinicalTrials.gov at NIH", "description": "ClinicalTrials.gov at NIH", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "NCT00222573", "resourceHomeUrl": "https://clinicaltrials.gov/", "institution": {"id": 436, "name": "National Library of Medicine and ClinicalTrials.gov, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "NCT00222573", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 438, "prefix": "chemspider", "mirId": "MIR:00000138", "name": "ChemSpider", "pattern": "^\\d+$", "description": "ChemSpider is a collection of compound data from across the web, which aggregates chemical structures and their associated information into a single searchable repository entry. These entries are supplemented with additional properties, related information and links back to original data sources.", "created": "2019-06-11T14:16:10.254+0000", "modified": "2019-06-11T14:16:10.254+0000", "resources": [{"id": 440, "mirId": "MIR:00100180", "urlPattern": "http://www.chemspider.com/Chemical-Structure.{$id}.html", "name": "ChemSpider at RSC", "description": "ChemSpider at RSC", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "56586", "resourceHomeUrl": "http://www.chemspider.com/", "institution": {"id": 439, "name": "Royal Society of Chemistry, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "56586", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 441, "prefix": "ncit", "mirId": "MIR:00000139", "name": "NCIt", "pattern": "^C\\d+$", "description": "NCI Thesaurus (NCIt) provides reference terminology covering vocabulary for clinical care, translational and basic research, and public information and administrative activities, providing a stable and unique identification code.", "created": "2019-06-11T14:16:10.500+0000", "modified": "2019-06-11T14:16:10.500+0000", "resources": [{"id": 443, "mirId": "MIR:00100181", "urlPattern": "http://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI%20Thesaurus&code={$id}", "name": "NCIt at National Cancer Institute", "description": "NCIt at National Cancer Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "C80519", "resourceHomeUrl": "http://ncit.nci.nih.gov/", "institution": {"id": 442, "name": "National Cancer Institute, Center for Bioinformatics, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 444, "mirId": "MIR:00100868", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ncit/terms?short_form=NCIT_{$id}", "name": "NCIt through OLS", "description": "NCIt through OLS", "official": false, "providerCode": "ols", "sampleId": "C16353", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ncit", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C80519", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 445, "prefix": "biocatalogue.service", "mirId": "MIR:00000140", "name": "BioCatalogue", "pattern": "^\\d+$", "description": "The BioCatalogue provides a common interface for registering, browsing and annotating Web Services to the Life Science community. Registered services are monitored, allowing the identification of service problems and changes and the filtering-out of unavailable or unreliable resources. BioCatalogue is free to use, for all.", "created": "2019-06-11T14:16:10.872+0000", "modified": "2019-06-11T14:16:10.872+0000", "resources": [{"id": 446, "mirId": "MIR:00100182", "urlPattern": "https://www.biocatalogue.org/services/{$id}", "name": "BioCatalogue at EMBL-EBI", "description": "BioCatalogue at EMBL-EBI", "official": false, "providerCode": "ebi", "sampleId": "614", "resourceHomeUrl": "https://www.biocatalogue.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "614", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 451, "prefix": "omia", "mirId": "MIR:00000142", "name": "OMIA", "pattern": "^\\d+$", "description": "Online Mendelian Inheritance in Animals is a a database of genes, inherited disorders and traits in animal species (other than human and mouse).", "created": "2019-06-11T14:16:11.523+0000", "modified": "2019-06-11T14:16:11.523+0000", "resources": [{"id": 453, "mirId": "MIR:00100185", "urlPattern": "http://omia.angis.org.au/{$id}/", "name": "OMIA at University of Sydney", "description": "OMIA at University of Sydney", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1000", "resourceHomeUrl": "http://omia.angis.org.au/", "institution": {"id": 452, "name": "Reprogen, Faculty of Veterinary Science, University of Sydney", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "AU", "countryName": "Australia"}}, "location": {"countryCode": "AU", "countryName": "Australia"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 454, "prefix": "csa", "mirId": "MIR:00000144", "name": "CSA", "pattern": "^[0-9][A-Za-z0-9]{3}$", "description": "The Catalytic Site Atlas (CSA) is a database documenting enzyme active sites and catalytic residues in enzymes of 3D structure. It uses a defined classification for catalytic residues which includes only those residues thought to be directly involved in some aspect of the reaction catalysed by an enzyme.", "created": "2019-06-11T14:16:11.769+0000", "modified": "2019-06-11T14:16:11.769+0000", "resources": [{"id": 455, "mirId": "MIR:00100188", "urlPattern": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/SearchResults.php?PDBID={$id}", "name": "CSA at EBI", "description": "CSA at EBI", "official": false, "providerCode": "ebi", "sampleId": "1a05", "resourceHomeUrl": "https://www.ebi.ac.uk/thornton-srv/databases/CSA/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1a05", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 456, "prefix": "cgd", "mirId": "MIR:00000145", "name": "Candida Genome Database", "pattern": "^CAL\\d{7}$", "description": "The Candida Genome Database (CGD) provides access to genomic sequence data and manually curated functional information about genes and proteins of the human pathogen Candida albicans. It collects gene names and aliases, and assigns gene ontology terms to describe the molecular function, biological process, and subcellular localization of gene products.", "created": "2019-06-11T14:16:11.955+0000", "modified": "2019-06-11T14:16:11.955+0000", "resources": [{"id": 458, "mirId": "MIR:00100189", "urlPattern": "http://www.candidagenome.org/cgi-bin/locus.pl?dbid={$id}", "name": "Candida Genome Database at Stanford University", "description": "Candida Genome Database at Stanford University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CAL0003079", "resourceHomeUrl": "http://www.candidagenome.org/", "institution": {"id": 457, "name": "Stanford University,", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CAL0003079", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 459, "prefix": "antweb", "mirId": "MIR:00000146", "name": "AntWeb", "pattern": "^casent\\d+(\\-D\\d+)?$", "description": "AntWeb is a website documenting the known species of ants, with records for each species linked to their geographical distribution, life history, and includes pictures.", "created": "2019-06-11T14:16:12.204+0000", "modified": "2019-06-11T14:16:12.204+0000", "resources": [{"id": 461, "mirId": "MIR:00100190", "urlPattern": "http://www.antweb.org/specimen.do?name={$id}", "name": "AntWeb at California Academy of Sciences", "description": "AntWeb at California Academy of Sciences", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "casent0106247", "resourceHomeUrl": "http://www.antweb.org/", "institution": {"id": 460, "name": "California Academy of Sciences, Goldengate Park, San Francisco", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "casent0106247", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 462, "prefix": "pmc", "mirId": "MIR:00000147", "name": "PMC International", "pattern": "PMC\\d+", "description": "PMC International (PMCI) is a free full-text archive of biomedical and life sciences journal literature. PMCI is a collaborative effort between the U.S. National Institutes of Health and the National Library of Medicine, the publishers whose journal content makes up the PMC archive, and organizations in other countries that share NIH's and NLM's interest in archiving life sciences literature.", "created": "2019-06-11T14:16:12.446+0000", "modified": "2019-06-11T14:16:12.446+0000", "resources": [{"id": 465, "mirId": "MIR:00100498", "urlPattern": "http://europepmc.org/articles/{$id}", "name": "Europe PMC", "description": "Europe PMC", "official": true, "providerCode": "epmc", "sampleId": "PMC3084216", "resourceHomeUrl": "http://europepmc.org/", "institution": {"id": 61, "name": "Europe PubMed Central partners", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 464, "mirId": "MIR:00100191", "urlPattern": "https://www.ncbi.nlm.nih.gov/pmc/articles/{$id}/?tool=pubmed", "name": "PubMed Central", "description": "PubMed Central", "official": false, "providerCode": "ncbi", "sampleId": "PMC3084216", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/pmc/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PMC3084216", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 834, "prefix": "atcc", "mirId": "MIR:00000284", "name": "ATCC", "pattern": "^\\d+$", "description": "The American Type Culture Collection (ATCC) is a private, nonprofit biological resource center whose mission focuses on the acquisition, authentication, production, preservation, development and distribution of standard reference microorganisms, cell lines and other materials for research in the life sciences.", "created": "2019-06-11T14:16:44.811+0000", "modified": "2019-06-11T14:16:44.811+0000", "resources": [{"id": 836, "mirId": "MIR:00100365", "urlPattern": "https://www.atcc.org/products/{$id}", "name": "ATCC in Virginia", "description": "ATCC in Virginia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "11303", "resourceHomeUrl": "http://www.atcc.org/", "institution": {"id": 835, "name": "American Type Culture Collection", "homeUrl": "https://atcc.org", "description": "ATCC is the premier global biological materials resource and standards organization whose mission focuses on the acquisition, authentication, production, preservation, development, and distribution of standard reference microorganisms, cell lines, and other materials. While maintaining traditional collection materials, ATCC develops high quality products, standards, and services to support scientific research and breakthroughs that improve the health of global populations.", "rorId": "https://ror.org/03thhhv76", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "11303", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 466, "prefix": "amoebadb", "mirId": "MIR:00000148", "name": "AmoebaDB", "pattern": "^EDI_\\d+$", "description": "AmoebaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:12.793+0000", "modified": "2019-06-11T14:16:12.793+0000", "resources": [{"id": 468, "mirId": "MIR:00100193", "urlPattern": "https://amoebadb.org/amoeba/app/record/gene/{$id}", "name": "AmoebaDB at EuPathDB", "description": "AmoebaDB at EuPathDB", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "EDI_244000", "resourceHomeUrl": "http://amoebadb.org/amoeba/", "institution": {"id": 467, "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EDI_244000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 469, "prefix": "cryptodb", "mirId": "MIR:00000149", "name": "CryptoDB", "pattern": "^\\w+", "description": "CryptoDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:13.024+0000", "modified": "2019-06-11T14:16:13.024+0000", "resources": [{"id": 470, "mirId": "MIR:00100194", "urlPattern": "https://cryptodb.org/cryptodb/app/record/gene/{$id}", "name": "CryptoDB at EuPathDB", "description": "CryptoDB at EuPathDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "cgd7_230", "resourceHomeUrl": "https://cryptodb.org/cryptodb/", "institution": {"id": 467, "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "cgd7_230", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 471, "prefix": "plasmodb", "mirId": "MIR:00000150", "name": "PlasmoDB", "pattern": "^\\w+$", "description": "AmoebaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:13.221+0000", "modified": "2019-06-11T14:16:13.221+0000", "resources": [{"id": 472, "mirId": "MIR:00100195", "urlPattern": "http://plasmodb.org/plasmo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", "name": "PlasmoDB at EuPathDB", "description": "PlasmoDB at EuPathDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PF11_0344", "resourceHomeUrl": "http://plasmodb.org/plasmo/", "institution": {"id": 467, "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PF11_0344", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 473, "prefix": "giardiadb", "mirId": "MIR:00000151", "name": "GiardiaDB", "pattern": "^\\w+$", "description": "GiardiaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:13.424+0000", "modified": "2019-06-11T14:16:13.424+0000", "resources": [{"id": 474, "mirId": "MIR:00100196", "urlPattern": "https://giardiadb.org/giardiadb/app/record/gene/{$id}", "name": "GiardiaDB at EuPathDB", "description": "GiardiaDB at EuPathDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "GL50803_102438", "resourceHomeUrl": "https://giardiadb.org/giardiadb/", "institution": {"id": 467, "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GL50803_102438", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 475, "prefix": "microsporidia", "mirId": "MIR:00000152", "name": "MicrosporidiaDB", "pattern": "^\\w+$", "description": "MicrosporidiaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:13.630+0000", "modified": "2019-06-11T14:16:13.630+0000", "resources": [{"id": 476, "mirId": "MIR:00100197", "urlPattern": "http://microsporidiadb.org/micro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", "name": "MicrosporidiaDB at EuPathDB", "description": "MicrosporidiaDB at EuPathDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ECU03_0820i", "resourceHomeUrl": "http://microsporidiadb.org/micro/", "institution": {"id": 467, "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ECU03_0820i", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 477, "prefix": "toxoplasma", "mirId": "MIR:00000153", "name": "ToxoDB", "pattern": "^\\w+$", "description": "ToxoDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:13.817+0000", "modified": "2019-06-11T14:16:13.817+0000", "resources": [{"id": 478, "mirId": "MIR:00100198", "urlPattern": "http://toxodb.org/toxo/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", "name": "ToxoDB at EuPathDB", "description": "ToxoDB at EuPathDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TGME49_053730", "resourceHomeUrl": "http://toxodb.org/toxo/", "institution": {"id": 467, "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TGME49_053730", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 479, "prefix": "trichdb", "mirId": "MIR:00000154", "name": "TrichDB", "pattern": "^\\w+$", "description": "TrichDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:14.019+0000", "modified": "2019-06-11T14:16:14.019+0000", "resources": [{"id": 480, "mirId": "MIR:00100199", "urlPattern": "http://trichdb.org/trichdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", "name": "TrichDB at EuPathDB", "description": "TrichDB at EuPathDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TVAG_386080", "resourceHomeUrl": "http://trichdb.org/trichdb/", "institution": {"id": 467, "name": "Center for Tropical & Emerging Global Diseases, University of Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TVAG_386080", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 481, "prefix": "tritrypdb", "mirId": "MIR:00000155", "name": "TriTrypDB", "pattern": "^\\w+(\\.)?\\w+(\\.)?\\w+", "description": "TriTrypDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:14.213+0000", "modified": "2019-06-11T14:16:14.213+0000", "resources": [{"id": 483, "mirId": "MIR:00100200", "urlPattern": "http://tritrypdb.org/tritrypdb/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", "name": "TriTrypDB at EuPathDB", "description": "TriTrypDB at EuPathDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Tb927.8.620", "resourceHomeUrl": "http://tritrypdb.org/tritrypdb/", "institution": {"id": 482, "name": "Wellcome Trust Sanger Institute, Hinxton", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Tb927.8.620", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 484, "prefix": "bdgp.insertion", "mirId": "MIR:00000156", "name": "BDGP insertion DB", "pattern": "^\\w+$", "description": "BDGP gene disruption collection provides a public resource of gene disruptions of Drosophila genes using a single transposable element.", "created": "2019-06-11T14:16:14.437+0000", "modified": "2019-06-11T14:16:14.437+0000", "resources": [{"id": 486, "mirId": "MIR:00100201", "urlPattern": "http://flypush.imgen.bcm.tmc.edu/pscreen/details.php?line={$id}", "name": "BDGP Gene Disruption Project", "description": "BDGP Gene Disruption Project", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "KG09531", "resourceHomeUrl": "http://flypush.imgen.bcm.tmc.edu/pscreen/", "institution": {"id": 485, "name": "Baylor College of Medicine", "homeUrl": "https://www.bcm.edu", "description": "Baylor College of Medicine is a health sciences university that creates knowledge and applies science and discoveries to further education, healthcare and community service locally and globally.", "rorId": "https://ror.org/02pttbw34", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "KG09531", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 487, "prefix": "beetlebase", "mirId": "MIR:00000157", "name": "BeetleBase", "pattern": "^TC\\d+$", "description": "BeetleBase is a comprehensive sequence database and community resource for Tribolium genetics, genomics and developmental biology. It incorporates information about genes, mutants, genetic markers, expressed sequence tags and publications.", "created": "2019-06-11T14:16:14.695+0000", "modified": "2019-06-11T14:16:14.695+0000", "resources": [{"id": 489, "mirId": "MIR:00100202", "urlPattern": "http://beetlebase.org/cgi-bin/gbrowse/BeetleBase3.gff3/?name={$id}", "name": "BeetleBase at Kansas State University", "description": "BeetleBase at Kansas State University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TC010103", "resourceHomeUrl": "http://beetlebase.org/", "institution": {"id": 488, "name": "Kansas State University", "homeUrl": "https://www.k-state.edu/", "description": "Kansas State University is a comprehensive, research, land-grant institution serving students and the people of Kansas, the nation, and the world.", "rorId": "https://ror.org/05p1j8758", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TC010103", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 490, "prefix": "bold.taxonomy", "mirId": "MIR:00000158", "name": "BOLD Taxonomy", "pattern": "^\\d+$", "description": "The Barcode of Life Data System (BOLD) is an informatics workbench aiding the acquisition, storage, analysis and publication of DNA barcode records. The associated taxonomy browser shows the progress of DNA barcoding and provides sample collection site distribution, and taxon occurence information.", "created": "2019-06-11T14:16:14.938+0000", "modified": "2019-06-11T14:16:14.938+0000", "resources": [{"id": 492, "mirId": "MIR:00100203", "urlPattern": "http://www.boldsystems.org/index.php/Taxbrowser_Taxonpage?taxid={$id}", "name": "BOLD taxonomy browser", "description": "BOLD taxonomy browser", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "27267", "resourceHomeUrl": "http://www.boldsystems.org/", "institution": {"id": 491, "name": "Canadian Centre for DNA Barcoding, Biodiversity Institute of Ontario", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "27267", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 493, "prefix": "dbest", "mirId": "MIR:00000159", "name": "dbEST", "pattern": "^([A-Z]+)?\\d+(\\.\\d+)?$", "description": "The dbEST contains sequence data and other information on \"single-pass\" cDNA sequences, or \"Expressed Sequence Tags\", from a number of organisms.", "created": "2019-06-11T14:16:15.166+0000", "modified": "2019-06-11T14:16:15.166+0000", "resources": [{"id": 494, "mirId": "MIR:00100204", "urlPattern": "https://www.ncbi.nlm.nih.gov/nucest/{$id}", "name": "dbEST at NCBI", "description": "dbEST at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "BP100000", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/nucest", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 495, "mirId": "MIR:00100331", "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", "name": "dbEST through European Nucleotide Archive (ENA)", "description": "dbEST through European Nucleotide Archive (ENA)", "official": false, "providerCode": "ebi", "sampleId": "BP100000.1", "resourceHomeUrl": "https://www.ebi.ac.uk/ena", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 496, "mirId": "MIR:00100651", "urlPattern": "http://getentry.ddbj.nig.ac.jp/getentry/na/{$id}", "name": "dbEST through DNA Data Bank of Japan (DDBJ)", "description": "dbEST through DNA Data Bank of Japan (DDBJ)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BP100000", "resourceHomeUrl": "http://www.ddbj.nig.ac.jp/", "institution": {"id": 121, "name": "DNA Data Bank of Japan, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BP100000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 497, "prefix": "dbprobe", "mirId": "MIR:00000160", "name": "dbProbe", "pattern": "^\\d+$", "description": "The NCBI Probe Database is a public registry of nucleic acid reagents designed for use in a wide variety of biomedical research applications, together with information on reagent distributors, probe effectiveness, and computed sequence similarities.", "created": "2019-06-11T14:16:15.607+0000", "modified": "2019-06-11T14:16:15.607+0000", "resources": [{"id": 498, "mirId": "MIR:00100205", "urlPattern": "https://www.ncbi.nlm.nih.gov/probe/?term={$id}", "name": "dbProbe at NCBI", "description": "dbProbe at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "1000000", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=probe", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1000000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 499, "prefix": "dbsnp", "mirId": "MIR:00000161", "name": "dbSNP", "pattern": "^rs\\d+$", "description": "The dbSNP database is a repository for both single base nucleotide subsitutions and short deletion and insertion polymorphisms.", "created": "2019-06-11T14:16:15.831+0000", "modified": "2019-06-11T14:16:15.831+0000", "resources": [{"id": 500, "mirId": "MIR:00100206", "urlPattern": "https://www.ncbi.nlm.nih.gov/snp/{$id}", "name": "dbSNP at NCBI", "description": "dbSNP at NCBI", "official": true, "providerCode": "ncbi", "sampleId": "rs121909098", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/snp/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 502, "mirId": "MIR:00100927", "urlPattern": "https://ccg.epfl.ch/cgi-bin/snp2tfbs/snpviewer_form_parser.cgi?snpid={$id}", "name": "SNP2TFBS", "description": "SNP2TFBS", "official": false, "providerCode": "sib", "sampleId": "rs11603840", "resourceHomeUrl": "https://ccg.epfl.ch/snp2tfbs/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "rs121909098", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 503, "prefix": "unists", "mirId": "MIR:00000162", "name": "UniSTS", "pattern": "^\\d+$", "description": "UniSTS is a comprehensive database of sequence tagged sites (STSs) derived from STS-based maps and other experiments. STSs are defined by PCR primer pairs and are associated with additional information such as genomic position, genes, and sequences.", "created": "2019-06-11T14:16:16.225+0000", "modified": "2019-06-11T14:16:16.225+0000", "resources": [{"id": 504, "mirId": "MIR:00100207", "urlPattern": "https://www.ncbi.nlm.nih.gov/genome/sts/sts.cgi?uid={$id}", "name": "UniSTS at NCBI", "description": "UniSTS at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "456789", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sites/entrez?db=unists", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "456789", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 505, "prefix": "ecogene", "mirId": "MIR:00000163", "name": "EcoGene", "pattern": "^EG\\d+$", "description": "The EcoGene database contains updated information about the E. coli K-12 genome and proteome sequences, including extensive gene bibliographies. A major EcoGene focus has been the re-evaluation of translation start sites.", "created": "2019-06-11T14:16:16.429+0000", "modified": "2019-06-11T14:16:16.429+0000", "resources": [{"id": 507, "mirId": "MIR:00100208", "urlPattern": "http://www.ecogene.org/gene/{$id}", "name": "EcoGene at University of Miami", "description": "EcoGene at University of Miami", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "EG10173", "resourceHomeUrl": "http://ecogene.org/", "institution": {"id": 506, "name": "Miller School of Medicine, University of Miami", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EG10173", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 837, "prefix": "bdgp.est", "mirId": "MIR:00000285", "name": "BDGP EST", "pattern": "^\\w+(\\.)?(\\d+)?$", "description": "The BDGP EST database collects the expressed sequence tags (ESTs) derived from a variety of tissues and developmental stages for Drosophila melanogaster. All BDGP ESTs are available at dbEST (NCBI).", "created": "2019-06-11T14:16:45.049+0000", "modified": "2019-06-11T14:16:45.049+0000", "resources": [{"id": 838, "mirId": "MIR:00100366", "urlPattern": "https://www.ncbi.nlm.nih.gov/nucest/{$id}", "name": "BDGP EST at NCBI", "description": "BDGP EST at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "EY223054.1", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/dbEST/index.html", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EY223054.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 508, "prefix": "gabi", "mirId": "MIR:00000164", "name": "GABI", "pattern": "^\\w+$", "description": "GabiPD (Genome Analysis of Plant Biological Systems Primary Database) constitutes a repository for a wide array of heterogeneous data from high-throughput experiments in several plant species. These data (i.e. genomics, transcriptomics, proteomics and metabolomics), originating from different model or crop species, can be accessed through a central gene 'Green Card'.", "created": "2019-06-11T14:16:16.652+0000", "modified": "2019-06-11T14:16:16.652+0000", "resources": [{"id": 510, "mirId": "MIR:00100210", "urlPattern": "http://www.gabipd.org/database/cgi-bin/GreenCards.pl.cgi?BioObjectId={$id}&Mode=ShowBioObject", "name": "GABI at Max Planck", "description": "GABI at Max Planck", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "2679240", "resourceHomeUrl": "http://www.gabipd.org/", "institution": {"id": 509, "name": "Max Planck Institute of Molecular Plant Physiology, Berlin", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2679240", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 511, "prefix": "greengenes", "mirId": "MIR:00000165", "name": "GreenGenes", "pattern": "^\\d+$", "description": "A 16S rRNA gene database which provides chimera screening, standard alignment, and taxonomic classification using multiple published taxonomies.", "created": "2019-06-11T14:16:16.885+0000", "modified": "2019-06-11T14:16:16.885+0000", "resources": [{"id": 513, "mirId": "MIR:00100211", "urlPattern": "http://greengenes.lbl.gov/cgi-bin/show_one_record_v2.pl?prokMSA_id={$id}", "name": "GreenGenes at Lawrence Berkeley", "description": "GreenGenes at Lawrence Berkeley", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "100000", "resourceHomeUrl": "http://greengenes.lbl.gov/", "institution": {"id": 512, "name": "Center for Environmental Biotechnology, Lawrence Berkeley National Laboratory, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "100000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 514, "prefix": "grin.taxonomy", "mirId": "MIR:00000166", "name": "GRIN Plant Taxonomy", "pattern": "^\\d+$", "description": "GRIN (Germplasm Resources Information Network) Taxonomy for Plants provides information on scientific and common names, classification, distribution, references, and economic impact.", "created": "2019-06-11T14:16:17.150+0000", "modified": "2019-06-11T14:16:17.150+0000", "resources": [{"id": 516, "mirId": "MIR:00100212", "urlPattern": "http://www.ars-grin.gov/cgi-bin/npgs/html/taxon.pl?{$id}", "name": "GRIN at Maryland", "description": "GRIN at Maryland", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "19333", "resourceHomeUrl": "http://www.ars-grin.gov/cgi-bin/npgs/html/index.pl?language=en", "institution": {"id": 515, "name": "National Germplasm Resources Laboratory, Beltsville, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "19333", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 517, "prefix": "hinv.locus", "mirId": "MIR:00000167", "name": "H-InvDb Locus", "pattern": "^HIX\\d{7}(\\.\\d+)?$", "description": "H-Invitational Database (H-InvDB) is an integrated database of human genes and transcripts. It provides curated annotations of human genes and transcripts including gene structures, alternative splicing isoforms, non-coding functional RNAs, protein functions, functional domains, sub-cellular localizations, metabolic pathways, protein 3D structure, genetic polymorphisms (SNPs, indels and microsatellite repeats), relation with diseases, gene expression profiling, molecular evolutionary features, protein-protein interactions (PPIs) and gene families/groups. This datatype provides access to the 'Locus' view.", "created": "2019-06-11T14:16:17.382+0000", "modified": "2019-06-11T14:16:17.382+0000", "resources": [{"id": 519, "mirId": "MIR:00100213", "urlPattern": "http://h-invitational.jp/hinv/spsoup/locus_view?hix_id={$id}", "name": "H-Invitational Locus View at BIRC", "description": "H-Invitational Locus View at BIRC", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HIX0004394", "resourceHomeUrl": "http://h-invitational.jp/hinv/ahg-db/index.jsp", "institution": {"id": 518, "name": "BIRC, Tokyo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HIX0004394", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 520, "prefix": "hinv.transcript", "mirId": "MIR:00000168", "name": "H-InvDb Transcript", "pattern": "^HIT\\d{9}(\\.\\d+)?$", "description": "H-Invitational Database (H-InvDB) is an integrated database of human genes and transcripts. It provides curated annotations of human genes and transcripts including gene structures, alternative splicing isoforms, non-coding functional RNAs, protein functions, functional domains, sub-cellular localizations, metabolic pathways, protein 3D structure, genetic polymorphisms (SNPs, indels and microsatellite repeats), relation with diseases, gene expression profiling, molecular evolutionary features, protein-protein interactions (PPIs) and gene families/groups. This datatype provides access to the 'Transcript' view.", "created": "2019-06-11T14:16:17.622+0000", "modified": "2019-06-11T14:16:17.622+0000", "resources": [{"id": 521, "mirId": "MIR:00100214", "urlPattern": "http://h-invitational.jp/hinv/spsoup/transcript_view?hit_id={$id}", "name": "H-Invitational Transcript View at BIRC", "description": "H-Invitational Transcript View at BIRC", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HIT000195363", "resourceHomeUrl": "http://h-invitational.jp/hinv/ahg-db/index.jsp", "institution": {"id": 518, "name": "BIRC, Tokyo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HIT000195363", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 522, "prefix": "hinv.protein", "mirId": "MIR:00000169", "name": "H-InvDb Protein", "pattern": "^HIP\\d{9}(\\.\\d+)?$", "description": "H-Invitational Database (H-InvDB) is an integrated database of human genes and transcripts. It provides curated annotations of human genes and transcripts including gene structures, alternative splicing isoforms, non-coding functional RNAs, protein functions, functional domains, sub-cellular localizations, metabolic pathways, protein 3D structure, genetic polymorphisms (SNPs, indels and microsatellite repeats), relation with diseases, gene expression profiling, molecular evolutionary features, protein-protein interactions (PPIs) and gene families/groups. This datatype provides access to the 'Protein' view.", "created": "2019-06-11T14:16:17.817+0000", "modified": "2019-06-11T14:16:17.817+0000", "resources": [{"id": 523, "mirId": "MIR:00100215", "urlPattern": "http://h-invitational.jp/hinv/protein/protein_view.cgi?hip_id={$id}", "name": "H-Invitational Protein View at BIRC", "description": "H-Invitational Protein View at BIRC", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HIP000030660", "resourceHomeUrl": "http://h-invitational.jp/hinv/ahg-db/index.jsp", "institution": {"id": 518, "name": "BIRC, Tokyo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HIP000030660", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 524, "prefix": "homd.seq", "mirId": "MIR:00000170", "name": "HOMD Sequence Metainformation", "pattern": "^SEQF\\d+$", "description": "The Human Oral Microbiome Database (HOMD) provides a site-specific comprehensive database for the more than 600 prokaryote species that are present in the human oral cavity. It contains genomic information based on a curated 16S rRNA gene-based provisional naming scheme, and taxonomic information. This datatype contains genomic sequence information.", "created": "2019-06-11T14:16:18.019+0000", "modified": "2019-06-11T14:16:18.019+0000", "resources": [{"id": 526, "mirId": "MIR:00100216", "urlPattern": "http://www.homd.org/modules.php?op=modload&name=GenomeList&file=index&link=detailinfo&seqid={$id}", "name": "HOMD sequence metainformation at The Forsyth Institute", "description": "HOMD sequence metainformation at The Forsyth Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SEQF1003", "resourceHomeUrl": "http://www.homd.org/index.php", "institution": {"id": 525, "name": "The Forsyth Institute, Boston", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SEQF1003", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 527, "prefix": "homd.taxon", "mirId": "MIR:00000171", "name": "HOMD Taxonomy", "pattern": "^\\d+$", "description": "The Human Oral Microbiome Database (HOMD) provides a site-specific comprehensive database for the more than 600 prokaryote species that are present in the human oral cavity. It contains genomic information based on a curated 16S rRNA gene-based provisional naming scheme, and taxonomic information. This datatype contains taxonomic information.", "created": "2019-06-11T14:16:18.268+0000", "modified": "2019-06-11T14:16:18.268+0000", "resources": [{"id": 528, "mirId": "MIR:00100217", "urlPattern": "http://www.homd.org/modules.php?op=modload&name=HOMD&file=index&oraltaxonid={$id}&view=dynamic", "name": "HOMD taxon information at The Forsyth Institute", "description": "HOMD taxon information at The Forsyth Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "811", "resourceHomeUrl": "http://www.homd.org/index.php", "institution": {"id": 525, "name": "The Forsyth Institute, Boston", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "811", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 529, "prefix": "ird.segment", "mirId": "MIR:00000172", "name": "IRD Segment Sequence", "pattern": "^\\w+(\\_)?\\d+(\\.\\d+)?$", "description": "Influenza Research Database (IRD) contains information related to influenza virus, including genomic sequence, strain, protein, epitope and bibliographic information. The Segment Details page contains descriptive information and annotation data about a particular genomic segment and its encoded product(s).", "created": "2019-06-11T14:16:18.461+0000", "modified": "2019-06-11T14:16:18.461+0000", "resources": [{"id": 531, "mirId": "MIR:00100218", "urlPattern": "http://www.fludb.org/brc/fluSegmentDetails.do?ncbiGenomicAccession={$id}", "name": "IRD at BioHealthBase", "description": "IRD at BioHealthBase", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CY077097", "resourceHomeUrl": "http://www.fludb.org/", "institution": {"id": 530, "name": "Southwestern Medical Center, University of Texas, Dallas", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CY077097", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 532, "prefix": "isfinder", "mirId": "MIR:00000173", "name": "ISFinder", "pattern": "^IS\\w+(\\-\\d)?$", "description": "ISfinder is a database of bacterial insertion sequences (IS). It assigns IS nomenclature and acts as a repository for ISs. Each IS is annotated with information such as the open reading frame DNA sequence, the sequence of the ends of the element and target sites, its origin and distribution together with a bibliography, where available.", "created": "2019-06-11T14:16:18.690+0000", "modified": "2019-06-11T14:16:18.690+0000", "resources": [{"id": 534, "mirId": "MIR:00100219", "urlPattern": "https://www-is.biotoul.fr/scripts/ficheIS.php?name={$id}", "name": "IS Finder at CNRS", "description": "IS Finder at CNRS", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ISA1083-2", "resourceHomeUrl": "http://www-is.biotoul.fr/i", "institution": {"id": 533, "name": "Laboratoire de Microbiologie et G\u00e9n\u00e9tique Mol\u00e9culaires, CNRS, Toulouse", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ISA1083-2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 535, "prefix": "jcm", "mirId": "MIR:00000174", "name": "Japan Collection of Microorganisms", "pattern": "^\\d+$", "description": "The Japan Collection of Microorganisms (JCM) collects, catalogues, and distributes cultured microbial strains, restricted to those classified in Risk Group 1 or 2.", "created": "2019-06-11T14:16:18.921+0000", "modified": "2019-06-11T14:16:18.921+0000", "resources": [{"id": 537, "mirId": "MIR:00100220", "urlPattern": "http://www.jcm.riken.go.jp/cgi-bin/jcm/jcm_number?JCM={$id}", "name": "JCM at RIKEN BioResource Center", "description": "JCM at RIKEN BioResource Center", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "17254", "resourceHomeUrl": "http://www.jcm.riken.go.jp/", "institution": {"id": 536, "name": "RIKEN BioResource Center, Ibaraki", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "17254", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 538, "prefix": "img.taxon", "mirId": "MIR:00000175", "name": "Integrated Microbial Genomes Taxon", "pattern": "^\\d+$", "description": "The integrated microbial genomes (IMG) system is a data management, analysis and annotation platform for all publicly available genomes. IMG contains both draft and complete JGI (DoE Joint Genome Institute) microbial genomes integrated with all other publicly available genomes from all three domains of life, together with a large number of plasmids and viruses. This datatype refers to taxon information.", "created": "2019-06-11T14:16:19.173+0000", "modified": "2019-06-11T14:16:19.173+0000", "resources": [{"id": 540, "mirId": "MIR:00100221", "urlPattern": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=TaxonDetail&taxon_oid={$id}", "name": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", "description": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "648028003", "resourceHomeUrl": "http://img.jgi.doe.gov/", "institution": {"id": 539, "name": "Lawrence Berkeley National Laboratory, Berkeley", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "648028003", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 541, "prefix": "img.gene", "mirId": "MIR:00000176", "name": "Integrated Microbial Genomes Gene", "pattern": "^\\d+$", "description": "The integrated microbial genomes (IMG) system is a data management, analysis and annotation platform for all publicly available genomes. IMG contains both draft and complete JGI (DoE Joint Genome Institute) microbial genomes integrated with all other publicly available genomes from all three domains of life, together with a large number of plasmids and viruses. This datatype refers to gene information.", "created": "2019-06-11T14:16:19.420+0000", "modified": "2019-06-11T14:16:19.420+0000", "resources": [{"id": 542, "mirId": "MIR:00100222", "urlPattern": "http://img.jgi.doe.gov/cgi-bin/w/main.cgi?section=GeneDetail&gene_oid={$id}", "name": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", "description": "Integrated Microbial Genomes Taxon at Lawrence Berkeley National Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "638309541", "resourceHomeUrl": "http://img.jgi.doe.gov/", "institution": {"id": 539, "name": "Lawrence Berkeley National Laboratory, Berkeley", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "638309541", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 543, "prefix": "maizegdb.locus", "mirId": "MIR:00000177", "name": "MaizeGDB Locus", "pattern": "^\\d+$", "description": "MaizeGDB is the maize research community's central repository for genetics and genomics information.", "created": "2019-06-11T14:16:19.610+0000", "modified": "2019-06-11T14:16:19.610+0000", "resources": [{"id": 545, "mirId": "MIR:00100223", "urlPattern": "http://www.maizegdb.org/cgi-bin/displaylocusrecord.cgi?id={$id}", "name": "MaizeGDB at Missouri", "description": "MaizeGDB at Missouri", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "25011", "resourceHomeUrl": "http://www.maizegdb.org/", "institution": {"id": 544, "name": "Division of Plant Sciences, Missouri", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "25011", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 546, "prefix": "mycobank", "mirId": "MIR:00000178", "name": "MycoBank", "pattern": "^\\d+$", "description": "MycoBank is an online database, documenting new mycological names and combinations, eventually combined with descriptions and illustrations.", "created": "2019-06-11T14:16:19.843+0000", "modified": "2019-06-11T14:16:19.843+0000", "resources": [{"id": 548, "mirId": "MIR:00100224", "urlPattern": "http://www.mycobank.org/Biolomics.aspx?Table=Mycobank&MycoBankNr_={$id}", "name": "MycoBank at Fungal Biodiversity Centre", "description": "MycoBank at Fungal Biodiversity Centre", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "349124", "resourceHomeUrl": "http://www.mycobank.org/", "institution": {"id": 547, "name": "CBS-KNAW Fungal Biodiversity Centre, Utrecht", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "349124", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 549, "prefix": "nbrc", "mirId": "MIR:00000179", "name": "NITE Biological Research Center Catalogue", "pattern": "^\\d+$", "description": "NITE Biological Research Center (NBRC) provides a collection of microbial resources, performing taxonomic characterization of individual microorganisms such as bacteria including actinomycetes and archaea, yeasts, fungi, algaes, bacteriophages and DNA resources for academic research and industrial applications. A catalogue is maintained which states strain nomenclature, synonyms, and culture and sequence information.", "created": "2019-06-11T14:16:20.103+0000", "modified": "2019-06-11T14:16:20.103+0000", "resources": [{"id": 551, "mirId": "MIR:00100225", "urlPattern": "http://www.nbrc.nite.go.jp/NBRC2/NBRCCatalogueDetailServlet?ID=NBRC&CAT={$id}", "name": "NBRC Catalogue at National Institute of Technology Evaluation", "description": "NBRC Catalogue at National Institute of Technology Evaluation", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "00001234", "resourceHomeUrl": "http://www.nbrc.nite.go.jp/e/index.html", "institution": {"id": 550, "name": "National Institute of Technology Evaluation, Tokyo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00001234", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 552, "prefix": "pseudomonas", "mirId": "MIR:00000180", "name": "Pseudomonas Genome Database", "pattern": "^P\\w+$", "description": "The Pseudomonas Genome Database is a resource for peer-reviewed, continually updated annotation for all Pseudomonas species. It includes gene and protein sequence information, as well as regulation and predicted function and annotation.", "created": "2019-06-11T14:16:20.362+0000", "modified": "2019-06-11T14:16:20.362+0000", "resources": [{"id": 554, "mirId": "MIR:00100226", "urlPattern": "http://www.pseudomonas.com/feature/show/?locus_tag={$id}", "name": "Pseudomonas Genome Database at Simon Fraser University", "description": "Pseudomonas Genome Database at Simon Fraser University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PSEEN0001", "resourceHomeUrl": "http://www.pseudomonas.com/", "institution": {"id": 553, "name": "Simon Fraser University, British Columbia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PSEEN0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 555, "prefix": "gramene.protein", "mirId": "MIR:00000181", "name": "Gramene protein", "pattern": "^\\d+$", "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This datatype refers to proteins in Gramene.", "created": "2019-06-11T14:16:20.589+0000", "modified": "2019-06-11T14:16:20.589+0000", "resources": [{"id": 557, "mirId": "MIR:00100227", "urlPattern": "http://www.gramene.org/db/protein/protein_search?protein_id={$id}", "name": "Gramene Protein at Cold Spring Harbor", "description": "Gramene Protein at Cold Spring Harbor", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "78073", "resourceHomeUrl": "http://www.gramene.org/", "institution": {"id": 556, "name": "Cold Spring Harbor Laboratory, New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "78073", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 558, "prefix": "gramene.gene", "mirId": "MIR:00000182", "name": "Gramene genes", "pattern": "^GR\\:\\d+$", "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This datatype refers to genes in Gramene.", "created": "2019-06-11T14:16:20.812+0000", "modified": "2019-06-11T14:16:20.812+0000", "resources": [{"id": 559, "mirId": "MIR:00100228", "urlPattern": "http://www.gramene.org/db/genes/search_gene?acc={$id}", "name": "Gramene Genes at Cold Spring Harbor", "description": "Gramene Genes at Cold Spring Harbor", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "GR:0080039", "resourceHomeUrl": "http://www.gramene.org/", "institution": {"id": 556, "name": "Cold Spring Harbor Laboratory, New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GR:0080039", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 560, "prefix": "gramene.taxonomy", "mirId": "MIR:00000183", "name": "Gramene Taxonomy", "pattern": "^GR\\_tax\\:\\d+$", "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This datatype refers to taxonomic information in Gramene.", "created": "2019-06-11T14:16:21.008+0000", "modified": "2019-06-11T14:16:21.008+0000", "resources": [{"id": 561, "mirId": "MIR:00100229", "urlPattern": "http://www.gramene.org/db/ontology/search?id={$id}", "name": "Gramene Taxonomy at Cold Spring Harbor", "description": "Gramene Taxonomy at Cold Spring Harbor", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "GR_tax:013681", "resourceHomeUrl": "http://www.gramene.org/", "institution": {"id": 556, "name": "Cold Spring Harbor Laboratory, New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GR_tax:013681", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 562, "prefix": "gramene.qtl", "mirId": "MIR:00000184", "name": "Gramene QTL", "pattern": "^\\w+$", "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This datatype refers to quantitative trait loci identified in Gramene.", "created": "2019-06-11T14:16:21.219+0000", "modified": "2019-06-11T14:16:21.219+0000", "resources": [{"id": 563, "mirId": "MIR:00100230", "urlPattern": "http://www.gramene.org/db/qtl/qtl_display?qtl_accession_id={$id}", "name": "Gramene Quantitative Trait Loci at Cold Spring Harbor", "description": "Gramene Quantitative Trait Loci at Cold Spring Harbor", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CQG5", "resourceHomeUrl": "http://www.gramene.org/", "institution": {"id": 556, "name": "Cold Spring Harbor Laboratory, New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CQG5", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 564, "prefix": "sgn", "mirId": "MIR:00000185", "name": "Sol Genomics Network", "pattern": "^\\d+$", "description": "The Sol Genomics Network (SGN) is a database and website dedicated to the genomic information of the nightshade family, which includes species such as tomato, potato, pepper, petunia and eggplant.", "created": "2019-06-11T14:16:21.425+0000", "modified": "2019-06-11T14:16:21.425+0000", "resources": [{"id": 566, "mirId": "MIR:00100231", "urlPattern": "http://solgenomics.net/phenome/locus_display.pl?locus_id={$id}", "name": "Sol Genomics Network at Boyce Thompson Institute for Plant Research", "description": "Sol Genomics Network at Boyce Thompson Institute for Plant Research", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0001", "resourceHomeUrl": "http://solgenomics.net/", "institution": {"id": 565, "name": "Boyce Thompson Institute for Plant Research, New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 570, "prefix": "bioportal", "mirId": "MIR:00000187", "name": "BioPortal", "pattern": "^\\d+$", "description": "BioPortal is an open repository of biomedical ontologies that provides access via Web services and Web browsers to ontologies developed in OWL, RDF, OBO format and Prot\u00e9g\u00e9 frames. BioPortal functionality includes the ability to browse, search and visualize ontologies.", "created": "2019-06-11T14:16:21.882+0000", "modified": "2019-06-11T14:16:21.882+0000", "resources": [{"id": 572, "mirId": "MIR:00100244", "urlPattern": "http://bioportal.bioontology.org/ontologies/{$id}", "name": "BioPortal at National Center for Biomedical Ontology", "description": "BioPortal at National Center for Biomedical Ontology", "official": false, "providerCode": "bptl", "sampleId": "1046", "resourceHomeUrl": "http://bioportal.bioontology.org/", "institution": {"id": 571, "name": "National Center for Biomedical Ontology, Stanford University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1046", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 573, "prefix": "miriam.resource", "mirId": "MIR:00000188", "name": "MIRIAM Registry resource", "pattern": "^MIR:001\\d{5}$", "description": "MIRIAM Registry is an online resource created to catalogue data types (Gene Ontology, Taxonomy or PubMed are some examples), their URIs and the corresponding resources (or physical locations), whether these are controlled vocabularies or databases.", "created": "2019-06-11T14:16:22.127+0000", "modified": "2019-06-11T14:16:22.127+0000", "resources": [{"id": 574, "mirId": "MIR:00100245", "urlPattern": "https://www.ebi.ac.uk/miriam/main/resources/{$id}", "name": "MIRIAM Registry (resources)", "description": "MIRIAM Registry (resources)", "official": false, "providerCode": "ebi", "sampleId": "MIR:00100005", "resourceHomeUrl": "https://www.ebi.ac.uk/miriam/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MIR:00100005", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 575, "prefix": "edam", "mirId": "MIR:00000189", "name": "EDAM Ontology", "pattern": "^(data|topic|operation|format)\\_\\d{4}$", "description": "EDAM is an ontology of general bioinformatics concepts, including topics, data types, formats, identifiers and operations. EDAM provides a controlled vocabulary for the description, in semantic terms, of things such as: web services (e.g. WSDL files), applications, tool collections and packages, work-benches and workflow software, databases and ontologies, XSD data schema and data objects, data syntax and file formats, web portals and pages, resource catalogues and documents (such as scientific publications).", "created": "2019-06-11T14:16:22.318+0000", "modified": "2019-06-11T14:16:22.318+0000", "resources": [{"id": 576, "mirId": "MIR:00100536", "urlPattern": "http://purl.bioontology.org/ontology/EDAM/{$id}", "name": "EDAM through BioPortal", "description": "EDAM through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "data_1664", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/EDAM", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 577, "mirId": "MIR:00100762", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/edam/terms?short_form={$id}", "name": "EDAM through OLS", "description": "EDAM through OLS", "official": false, "providerCode": "ols", "sampleId": "data_1664", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/edam", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "data_1664", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 578, "prefix": "pmdb", "mirId": "MIR:00000190", "name": "Protein Model Database", "pattern": "^PM\\d{7}", "description": "The Protein Model DataBase (PMDB), is a database that collects manually built three dimensional protein models, obtained by different structure prediction techniques.", "created": "2019-06-11T14:16:22.644+0000", "modified": "2019-06-11T14:16:22.644+0000", "resources": [{"id": 580, "mirId": "MIR:00100247", "urlPattern": "https://bioinformatics.cineca.it/PMDB/user//search.php?idsearch={$id}", "name": "Protein Model Database at University of Rome", "description": "Protein Model Database at University of Rome", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PM0012345", "resourceHomeUrl": "https://bioinformatics.cineca.it/PMDB/", "institution": {"id": 579, "name": "CASPUR and Biocomputing group, Department of Biochemical Sciences, University of Rome, Rome", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PM0012345", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 581, "prefix": "arachnoserver", "mirId": "MIR:00000193", "name": "ArachnoServer", "pattern": "^AS\\d{6}$", "description": "ArachnoServer (www.arachnoserver.org) is a manually curated database providing information on the sequence, structure and biological activity of protein toxins from spider venoms. It include a molecular target ontology designed specifically for venom toxins, as well as current and historic taxonomic information.", "created": "2019-06-11T14:16:22.902+0000", "modified": "2019-06-11T14:16:22.902+0000", "resources": [{"id": 583, "mirId": "MIR:00100250", "urlPattern": "http://www.arachnoserver.org/toxincard.html?id={$id}", "name": "ArachnoServer at Brisbane", "description": "ArachnoServer at Brisbane", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AS000060", "resourceHomeUrl": "http://www.arachnoserver.org/", "institution": {"id": 582, "name": "Institute for Molecular Bioscience, The University of Queensland, Brisbane", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "AU", "countryName": "Australia"}}, "location": {"countryCode": "AU", "countryName": "Australia"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AS000060", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 584, "prefix": "biocyc", "mirId": "MIR:00000194", "name": "BioCyc", "pattern": "^[A-Z-0-9]+(\\:)?[A-Za-z0-9+_.%-:]+$", "description": "BioCyc is a collection of Pathway/Genome Databases (PGDBs) which provides an electronic reference source on the genomes and metabolic pathways of sequenced organisms.", "created": "2019-06-11T14:16:23.132+0000", "modified": "2019-06-11T14:16:23.132+0000", "resources": [{"id": 586, "mirId": "MIR:00100251", "urlPattern": "http://biocyc.org/getid?id={$id}", "name": "BioCyc at SRI International", "description": "BioCyc at SRI International", "official": false, "providerCode": "sri", "sampleId": "ECOLI:CYT-D-UBIOX-CPLX", "resourceHomeUrl": "http://biocyc.org", "institution": {"id": 1692, "name": "SRI International", "homeUrl": "https://www.sri.com/", "description": "SRI is an independent, nonprofit research center that works with clients to take the most advanced R&D from the laboratory to the marketplace.", "rorId": "https://ror.org/05s570m15", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ECOLI:CYT-D-UBIOX-CPLX", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 587, "prefix": "cazy", "mirId": "MIR:00000195", "name": "CAZy", "pattern": "^(GT|GH|PL|CE|CBM)\\d+(\\_\\d+)?$", "description": "The Carbohydrate-Active Enzyme (CAZy) database is a resource specialized in enzymes that build and breakdown complex carbohydrates and glycoconjugates. These enzymes are classified into families based on structural features.", "created": "2019-06-11T14:16:23.358+0000", "modified": "2019-06-11T14:16:23.358+0000", "resources": [{"id": 589, "mirId": "MIR:00100252", "urlPattern": "http://www.cazy.org/{$id}.html", "name": "CAZy at CNRS", "description": "CAZy at CNRS", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "GT10", "resourceHomeUrl": "http://www.cazy.org/", "institution": {"id": 588, "name": "Architecture et Fonction des Macromol\u00e9cules Biologiques", "homeUrl": "http://www.afmb.univ-mrs.fr", "description": "The Architecture et Fonction des Macromol\u00e9cules Biologiques (AFMB) laboratory, overseen by the CNRS and AMU, is a center of structural biology localized on the Luminy campus in the South of Marseilles, France, and in partnership with INRA under contract.", "rorId": "https://ror.org/04jm8zw14", "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GT10", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 590, "prefix": "goa", "mirId": "MIR:00000196", "name": "GOA", "pattern": "^(([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9]))|(URS[0-9A-F]{10}(_[0-9]+){0,1})|(EBI-[0-9]+)$", "description": "The GOA (Gene Ontology Annotation) project provides high-quality Gene Ontology (GO) annotations to proteins in the UniProt Knowledgebase (UniProtKB) and International Protein Index (IPI). This involves electronic annotation and the integration of high-quality manual GO annotation from all GO Consortium model organism groups and specialist groups.", "created": "2019-06-11T14:16:23.594+0000", "modified": "2019-06-11T14:16:23.594+0000", "resources": [{"id": 591, "mirId": "MIR:00100253", "urlPattern": "https://www.ebi.ac.uk/QuickGO/GProtein?ac={$id}", "name": "GOA through QuickGO", "description": "GOA through QuickGO", "official": false, "providerCode": "quickgo", "sampleId": "P12345", "resourceHomeUrl": "https://www.ebi.ac.uk/GOA/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P12345", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 592, "prefix": "paleodb", "mirId": "MIR:00000197", "name": "PaleoDB", "pattern": "^\\d+$", "description": "The Paleobiology Database seeks to provide researchers and the public with information about the entire fossil record. It stores global, collection-based occurrence and taxonomic data for marine and terrestrial animals and plants of any geological age, as well as web-based software for statistical analysis of the data.", "created": "2019-06-11T14:16:23.782+0000", "modified": "2019-06-11T14:16:23.782+0000", "resources": [{"id": 594, "mirId": "MIR:00100254", "urlPattern": "http://fossilworks.org/?a=taxonInfo&taxon_no={$id}", "name": "PaleoDB at Macquarie University", "description": "PaleoDB at Macquarie University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "83088", "resourceHomeUrl": "http://paleodb.org/", "institution": {"id": 593, "name": "Macquarie University, Sydney", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "AU", "countryName": "Australia"}}, "location": {"countryCode": "AU", "countryName": "Australia"}, "deprecated": false, "deprecationDate": null}], "sampleId": "83088", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 595, "prefix": "compulyeast", "mirId": "MIR:00000198", "name": "Compulyeast", "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])$", "description": "Compluyeast-2D-DB is a two-dimensional polyacrylamide gel electrophoresis federated database. This collection references a subset of Uniprot, and contains general information about the protein record.", "created": "2019-06-11T14:16:24.045+0000", "modified": "2019-06-11T14:16:24.045+0000", "resources": [{"id": 597, "mirId": "MIR:00100257", "urlPattern": "http://compluyeast2dpage.dacya.ucm.es/cgi-bin/2d/2d.cgi?ac={$id}", "name": "Compluyeast database at Universidad Complutense Madrid", "description": "Compluyeast database at Universidad Complutense Madrid", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "O08709", "resourceHomeUrl": "http://compluyeast2dpage.dacya.ucm.es/", "institution": {"id": 596, "name": "Department Microbiology II, Universidad Complutense Madrid, Madrid", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "ES", "countryName": "Spain"}}, "location": {"countryCode": "ES", "countryName": "Spain"}, "deprecated": false, "deprecationDate": null}], "sampleId": "O08709", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 601, "prefix": "echobase", "mirId": "MIR:00000200", "name": "EchoBASE", "pattern": "^EB\\d+$", "description": "EchoBASE is a database designed to contain and manipulate information from post-genomic experiments using the model bacterium Escherichia coli K-12. The database is built on an enhanced annotation of the updated genome sequence of strain MG1655 and the association of experimental data with the E.coli genes and their products.", "created": "2019-06-11T14:16:24.496+0000", "modified": "2019-06-11T14:16:24.496+0000", "resources": [{"id": 603, "mirId": "MIR:00100259", "urlPattern": "http://www.york.ac.uk/res/thomas/Gene.cfm?recordID={$id}", "name": "EchoBASE at the University of York", "description": "EchoBASE at the University of York", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "EB0170", "resourceHomeUrl": "http://www.york.ac.uk/", "institution": {"id": 602, "name": "Department of Biology (Area 10), University of York, York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EB0170", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 598, "prefix": "disprot", "mirId": "MIR:00000199", "name": "DisProt", "pattern": "^DP\\d{5}$", "description": "DisProt is a database of intrinsically disordered proteins and protein disordered regions, manually curated from literature.", "created": "2019-06-11T14:16:24.278+0000", "modified": "2021-02-17T17:15:29.025+0000", "resources": [{"id": 600, "mirId": "MIR:00100258", "urlPattern": "https://disprot.org/{$id}", "name": "DisProt at University of Padua", "description": "DisProt at University of Padua", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "DP00003", "resourceHomeUrl": "https://disprot.org/", "institution": {"id": 1769, "name": "University of Padua", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DP00003", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 604, "prefix": "eggnog", "mirId": "MIR:00000201", "name": "eggNOG", "pattern": "^\\w+$", "description": "eggNOG (evolutionary genealogy of genes: Non-supervised Orthologous Groups) is a database of orthologous groups of genes. The orthologous groups are annotated with functional description lines (derived by identifying a common denominator for the genes based on their various annotations), with functional categories (i.e derived from the original COG/KOG categories).", "created": "2019-06-11T14:16:24.719+0000", "modified": "2019-06-11T14:16:24.719+0000", "resources": [{"id": 606, "mirId": "MIR:00100260", "urlPattern": "http://eggnog.embl.de/version_3.0/cgi/search.py?search_term_0={$id}", "name": "eggNOG Version 3 at European Molecular Biology Laboratory", "description": "eggNOG Version 3 at European Molecular Biology Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "veNOG12876", "resourceHomeUrl": "http://eggnog.embl.de/version_3.0/", "institution": {"id": 605, "name": "European Molecular Biology Laboratory, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "veNOG12876", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 607, "prefix": "ensembl.bacteria", "mirId": "MIR:00000202", "name": "Ensembl Bacteria", "pattern": "^((EB\\w+)|([A-Z0-9]+\\_[A-Z0-9]+))$", "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with bacterial genomes.", "created": "2019-06-11T14:16:24.944+0000", "modified": "2019-06-11T14:16:24.944+0000", "resources": [{"id": 608, "mirId": "MIR:00100261", "urlPattern": "https://bacteria.ensembl.org/id/{$id}", "name": "Ensembl Bacteria at EBI", "description": "Ensembl Bacteria at EBI", "official": false, "providerCode": "ebi", "sampleId": "MU9_3181", "resourceHomeUrl": "https://bacteria.ensembl.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MU9_3181", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 609, "prefix": "ensembl.protist", "mirId": "MIR:00000203", "name": "Ensembl Protists", "pattern": "^\\w+$", "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with protist genomes.", "created": "2019-06-11T14:16:25.183+0000", "modified": "2019-06-11T14:16:25.183+0000", "resources": [{"id": 610, "mirId": "MIR:00100262", "urlPattern": "https://protists.ensembl.org/id/{$id}", "name": "Ensembl Protists at EBI", "description": "Ensembl Protists at EBI", "official": false, "providerCode": "ebi", "sampleId": "PF3D7_1328700", "resourceHomeUrl": "https://protists.ensembl.org", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PF3D7_1328700", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 611, "prefix": "ensembl.metazoa", "mirId": "MIR:00000204", "name": "Ensembl Metazoa", "pattern": "^\\w+(\\.)?\\d+$", "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with metazoa genomes.", "created": "2019-06-11T14:16:25.396+0000", "modified": "2019-06-11T14:16:25.396+0000", "resources": [{"id": 612, "mirId": "MIR:00100263", "urlPattern": "https://metazoa.ensembl.org/id/{$id}", "name": "Enzembl Metazoa at EBI", "description": "Enzembl Metazoa at EBI", "official": false, "providerCode": "ebi", "sampleId": "FBtr0084214", "resourceHomeUrl": "https://metazoa.ensembl.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "FBtr0084214", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 613, "prefix": "ensembl.plant", "mirId": "MIR:00000205", "name": "Ensembl Plants", "pattern": "^\\w+(\\.\\d+)?(\\.\\d+)?$", "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with plant genomes.", "created": "2019-06-11T14:16:25.597+0000", "modified": "2019-06-11T14:16:25.597+0000", "resources": [{"id": 614, "mirId": "MIR:00100264", "urlPattern": "https://plants.ensembl.org/id/{$id}", "name": "Enzembl Plants at EBI", "description": "Enzembl Plants at EBI", "official": false, "providerCode": "ebi", "sampleId": "AT1G73965", "resourceHomeUrl": "https://plants.ensembl.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AT1G73965", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 615, "prefix": "ensembl.fungi", "mirId": "MIR:00000206", "name": "Ensembl Fungi", "pattern": "^[A-Z-a-z0-9]+$", "description": "Ensembl Genomes consists of five sub-portals (for bacteria, protists, fungi, plants and invertebrate metazoa) designed to complement the availability of vertebrate genomes in Ensembl. This collection is concerned with fungal genomes.", "created": "2019-06-11T14:16:25.804+0000", "modified": "2019-06-11T14:16:25.804+0000", "resources": [{"id": 616, "mirId": "MIR:00100265", "urlPattern": "https://fungi.ensembl.org/id/{$id}", "name": "Enzembl Fungi at EBI", "description": "Enzembl Fungi at EBI", "official": false, "providerCode": "ebi", "sampleId": "CADAFLAT00006211", "resourceHomeUrl": "https://fungi.ensembl.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CADAFLAT00006211", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 617, "prefix": "hcvdb", "mirId": "MIR:00000207", "name": "HCVDB", "pattern": "^M\\d{5}$", "description": "the European Hepatitis C Virus Database (euHCVdb, http://euhcvdb.ibcp.fr), a collection of computer-annotated sequences based on reference genomes.mainly dedicated to HCV protein sequences, 3D structures and functional analyses.", "created": "2019-06-11T14:16:26.018+0000", "modified": "2019-06-11T14:16:26.018+0000", "resources": [{"id": 619, "mirId": "MIR:00100266", "urlPattern": "https://euhcvdb.ibcp.fr/euHCVdb/do/displayHCVEntry?primaryAC={$id}", "name": "HCVDB at CNRS", "description": "HCVDB at CNRS", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "M58335", "resourceHomeUrl": "http://euhcvdb.ibcp.fr/euHCVdb/", "institution": {"id": 618, "name": "Institut de Biologie et Chimie des Prot\u00e9ines, CNRS, University of Lyon , Lyon-Gerland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "M58335", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 620, "prefix": "genatlas", "mirId": "MIR:00000208", "name": "Genatlas", "pattern": "^\\w+$", "description": "GenAtlas is a database containing information on human genes, markers and phenotypes.", "created": "2019-06-11T14:16:26.301+0000", "modified": "2019-06-11T14:16:26.301+0000", "resources": [{"id": 622, "mirId": "MIR:00100267", "urlPattern": "http://genatlas.medecine.univ-paris5.fr/fiche.php?symbol={$id}", "name": "Genatlas at Paris Descartes University", "description": "Genatlas at Paris Descartes University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HBB", "resourceHomeUrl": "http://genatlas.medecine.univ-paris5.fr/", "institution": {"id": 621, "name": "Paris Descartes University, Paris", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HBB", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 623, "prefix": "cath.superfamily", "mirId": "MIR:00000209", "name": "CATH superfamily", "pattern": "^\\d+(\\.\\d+(\\.\\d+(\\.\\d+)?)?)?$", "description": "The CATH database is a hierarchical domain classification of protein structures in the Protein Data Bank. Protein structures are classified using a combination of automated and manual procedures. There are four major levels in this hierarchy; Class (secondary structure classification, e.g. mostly alpha), Architecture (classification based on overall shape), Topology (fold family) and Homologous superfamily (protein domains which are thought to share a common ancestor). This colelction is concerned with superfamily classification.", "created": "2019-06-11T14:16:26.635+0000", "modified": "2019-06-11T14:16:26.635+0000", "resources": [{"id": 625, "mirId": "MIR:00100268", "urlPattern": "http://www.cathdb.info/cathnode/{$id}", "name": "CATH superfamily at UCL", "description": "CATH superfamily at UCL", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1.10.10.200", "resourceHomeUrl": "http://www.cathdb.info/", "institution": {"id": 624, "name": "Institute of Structural and Molecular Biology, University College London", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1.10.10.200", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 626, "prefix": "cath.domain", "mirId": "MIR:00000210", "name": "CATH domain", "pattern": "^\\w+$", "description": "The CATH database is a hierarchical domain classification of protein structures in the Protein Data Bank. Protein structures are classified using a combination of automated and manual procedures. There are four major levels in this hierarchy; Class (secondary structure classification, e.g. mostly alpha), Architecture (classification based on overall shape), Topology (fold family) and Homologous superfamily (protein domains which are thought to share a common ancestor). This colelction is concerned with CATH domains.", "created": "2019-06-11T14:16:26.899+0000", "modified": "2019-06-11T14:16:26.899+0000", "resources": [{"id": 627, "mirId": "MIR:00100269", "urlPattern": "http://www.cathdb.info/domain/{$id}", "name": "CATH domain at UCL", "description": "CATH domain at UCL", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1cukA01", "resourceHomeUrl": "http://www.cathdb.info/", "institution": {"id": 624, "name": "Institute of Structural and Molecular Biology, University College London", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1cukA01", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 628, "prefix": "genefarm", "mirId": "MIR:00000211", "name": "GeneFarm", "pattern": "^\\d+$", "description": "GeneFarm is a database whose purpose is to store traceable annotations for Arabidopsis nuclear genes and gene products.", "created": "2019-06-11T14:16:27.145+0000", "modified": "2019-06-11T14:16:27.145+0000", "resources": [{"id": 630, "mirId": "MIR:00100270", "urlPattern": "https://urgi.versailles.inra.fr/Genefarm/Gene/display_gene.htpl?GENE_ID={$id}", "name": "GeneFarm at Unit\u00e9 de Recherche en G\u00e9nomique V\u00e9g\u00e9tale", "description": "GeneFarm at Unit\u00e9 de Recherche en G\u00e9nomique V\u00e9g\u00e9tale", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4892", "resourceHomeUrl": "http://urgi.versailles.inra.fr/Genefarm/", "institution": {"id": 629, "name": "Unit\u00e9 de Recherche en G\u00e9nomique V\u00e9g\u00e9tale, Evry", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4892", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 631, "prefix": "gpcrdb", "mirId": "MIR:00000212", "name": "GPCRDB", "pattern": "^\\w+$", "description": "The G protein-coupled receptor database (GPCRDB) collects, large amounts of heterogeneous data on GPCRs. It contains experimental data on sequences, ligand-binding constants, mutations and oligomers, and derived data such as multiple sequence alignments and homology models.", "created": "2019-06-11T14:16:27.419+0000", "modified": "2019-06-11T14:16:27.419+0000", "resources": [{"id": 633, "mirId": "MIR:00100271", "urlPattern": "http://www.gpcrdb.org/protein/{$id}/", "name": "GPCRDB at Radboud University", "description": "GPCRDB at Radboud University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "RL3R1_HUMAN", "resourceHomeUrl": "http://www.gpcrdb.org/", "institution": {"id": 632, "name": "Radboud University Nijmegen Medical Centre, Nijmegen,", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "RL3R1_HUMAN", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 634, "prefix": "hogenom", "mirId": "MIR:00000213", "name": "HOGENOM", "pattern": "^\\w+$", "description": "HOGENOM is a database of homologous genes from fully sequenced organisms (bacteria, archeae and eukarya). This collection references phylogenetic trees which can be retrieved using either UniProt accession numbers, or HOGENOM tree family identifier.", "created": "2019-06-11T14:16:27.678+0000", "modified": "2019-06-11T14:16:27.678+0000", "resources": [{"id": 636, "mirId": "MIR:00100272", "urlPattern": "http://pbil.univ-lyon1.fr/cgi-bin/view-tree.pl?db=HOGENOM5&query={$id}", "name": "HOGENOM at CNRS", "description": "HOGENOM at CNRS", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HBG284870", "resourceHomeUrl": "http://pbil.univ-lyon1.fr/databases/hogenom/", "institution": {"id": 635, "name": "Laboratoire de Biom\u00e9trie et Biologie Evolutive, CNRS, Lyon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HBG284870", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 637, "prefix": "genetree", "mirId": "MIR:00000214", "name": "GeneTree", "pattern": "^ENSGT\\d+$", "description": "Genetree displays the maximum likelihood phylogenetic (protein) trees representing the evolutionary history of the genes. These are constructed using the canonical protein for every gene in Ensembl.", "created": "2019-06-11T14:16:27.950+0000", "modified": "2019-06-11T14:16:27.950+0000", "resources": [{"id": 638, "mirId": "MIR:00100273", "urlPattern": "http://www.ensembl.org/Multi/GeneTree/Image?db=core;gt={$id}", "name": "GeneTree at Ensembl", "description": "GeneTree at Ensembl", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ENSGT00550000074763", "resourceHomeUrl": "http://www.ensembl.org/", "institution": {"id": 8, "name": "Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ENSGT00550000074763", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 639, "prefix": "hssp", "mirId": "MIR:00000215", "name": "HSSP", "pattern": "^\\w{4}$", "description": "HSSP (homology-derived structures of proteins) is a derived database merging structural (2-D and 3-D) and sequence information (1-D). For each protein of known 3D structure from the Protein Data Bank, the database has a file with all sequence homologues, properly aligned to the PDB protein.", "created": "2019-06-11T14:16:28.184+0000", "modified": "2019-06-11T14:16:28.184+0000", "resources": [{"id": 641, "mirId": "MIR:00100274", "urlPattern": "ftp://ftp.embl-heidelberg.de/pub/databases/protein_extras/hssp/{$id}.hssp.bz2", "name": "HSSP at EMBL", "description": "HSSP at EMBL", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "102l", "resourceHomeUrl": "http://swift.cmbi.kun.nl/swift/hssp/", "institution": {"id": 640, "name": "Protein Design Group, European Molecular Biology Laboratory, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}, {"id": 643, "mirId": "MIR:00100458", "urlPattern": "ftp://ftp.cmbi.ru.nl/pub/molbio/data/hssp/{$id}.hssp.bz2", "name": "HSSP at CMBI", "description": "HSSP at CMBI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "102l", "resourceHomeUrl": "ftp://ftp.cmbi.ru.nl/pub/molbio/data/hssp/", "institution": {"id": 642, "name": "Nijmegen Centre for Molecular Life Sciences, CMBI, Nijmegen", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "102l", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 644, "prefix": "myco.tuber", "mirId": "MIR:00000216", "name": "MycoBrowser tuberculosis", "pattern": "^Rv\\d{4}(A|B|c)?$", "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria tuberculosis information.", "created": "2019-06-11T14:16:28.639+0000", "modified": "2019-06-11T14:16:28.639+0000", "resources": [{"id": 646, "mirId": "MIR:00100275", "urlPattern": "http://tuberculist.epfl.ch/quicksearch.php?gene+name={$id}", "name": "MycoBrowser tuberculosis at Global Health Institute", "description": "MycoBrowser tuberculosis at Global Health Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Rv1908c", "resourceHomeUrl": "http://tuberculist.epfl.ch/", "institution": {"id": 645, "name": "Global Health Institute, Lausanne", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Rv1908c", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 647, "prefix": "myco.lepra", "mirId": "MIR:00000217", "name": "MycoBrowser leprae", "pattern": "^ML\\w+$", "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria leprae information.", "created": "2019-06-11T14:16:28.887+0000", "modified": "2019-06-11T14:16:28.887+0000", "resources": [{"id": 648, "mirId": "MIR:00100276", "urlPattern": "http://mycobrowser.epfl.ch/leprosysearch.php?gene+name={$id}", "name": "MycoBrowser leprae at Global Health Institute", "description": "MycoBrowser leprae at Global Health Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ML0224", "resourceHomeUrl": "http://mycobrowser.epfl.ch/leprosy.html", "institution": {"id": 645, "name": "Global Health Institute, Lausanne", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ML0224", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 649, "prefix": "myco.marinum", "mirId": "MIR:00000218", "name": "MycoBrowser marinum", "pattern": "^MMAR\\_\\d+$", "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria marinum information.", "created": "2019-06-11T14:16:29.087+0000", "modified": "2019-06-11T14:16:29.087+0000", "resources": [{"id": 650, "mirId": "MIR:00100277", "urlPattern": "http://mycobrowser.epfl.ch/marinosearch.php?gene+name={$id}", "name": "MycoBrowser marinum at Global Health Institute", "description": "MycoBrowser marinum at Global Health Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MMAR_2462", "resourceHomeUrl": "http://mycobrowser.epfl.ch/marinolist.html", "institution": {"id": 645, "name": "Global Health Institute, Lausanne", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MMAR_2462", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 651, "prefix": "myco.smeg", "mirId": "MIR:00000219", "name": "MycoBrowser smegmatis", "pattern": "^MSMEG\\w+$", "description": "Mycobrowser is a resource that provides both in silico generated and manually reviewed information within databases dedicated to the complete genomes of Mycobacterium tuberculosis, Mycobacterium leprae, Mycobacterium marinum and Mycobacterium smegmatis. This collection references Mycobacteria smegmatis information.", "created": "2019-06-11T14:16:29.310+0000", "modified": "2019-06-11T14:16:29.310+0000", "resources": [{"id": 652, "mirId": "MIR:00100278", "urlPattern": "http://mycobrowser.epfl.ch/smegmasearch.php?gene+name={$id}", "name": "MycoBrowser smegmatis at Global Health Institute", "description": "MycoBrowser smegmatis at Global Health Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MSMEG_3769", "resourceHomeUrl": "http://mycobrowser.epfl.ch/smegmalist.html", "institution": {"id": 645, "name": "Global Health Institute, Lausanne", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MSMEG_3769", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 653, "prefix": "orphanet", "mirId": "MIR:00000220", "name": "Orphanet", "pattern": "^\\d+$", "description": "Orphanet is a reference portal for information on rare diseases and orphan drugs. It\u2019s aim is to help improve the diagnosis, care and treatment of patients with rare diseases.", "created": "2019-06-11T14:16:29.544+0000", "modified": "2019-06-11T14:16:29.544+0000", "resources": [{"id": 655, "mirId": "MIR:00100279", "urlPattern": "http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng=EN&Expert={$id}", "name": "Orphanet at Inserm", "description": "Orphanet at Inserm", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "85163", "resourceHomeUrl": "http://www.orpha.net/consor/", "institution": {"id": 654, "name": "Inserm, H\u00f4pital Broussais, Paris", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}, {"id": 656, "mirId": "MIR:00100701", "urlPattern": "http://orphanet.bio2rdf.org/describe/?url=http://bio2rdf.org/orphanet:{$id}", "name": "Bio2RDF", "description": "Bio2RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "85163", "resourceHomeUrl": "http://orphanet.bio2rdf.org/fct", "institution": {"id": 33, "name": "Bio2RDF.org", "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "85163", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 657, "prefix": "orthodb", "mirId": "MIR:00000221", "name": "OrthoDB", "pattern": "^\\w+$", "description": "OrthoDB presents a catalog of eukaryotic orthologous protein-coding genes across vertebrates, arthropods, and fungi. Orthology refers to the last common ancestor of the species under consideration, and thus OrthoDB explicitly delineates orthologs at each radiation along the species phylogeny. The database of orthologs presents available protein descriptors, together with Gene Ontology and InterPro attributes, which serve to provide general descriptive annotations of the orthologous groups", "created": "2019-06-11T14:16:29.860+0000", "modified": "2019-06-11T14:16:29.860+0000", "resources": [{"id": 659, "mirId": "MIR:00100280", "urlPattern": "http://cegg.unige.ch/orthodb/results?searchtext={$id}", "name": "OrthoDB at Swiss Institute of Bioinformatics", "description": "OrthoDB at Swiss Institute of Bioinformatics", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q9P0K8", "resourceHomeUrl": "http://cegg.unige.ch/orthodb4", "institution": {"id": 658, "name": "Department of Genetic Medicine and Development, Swiss Institute of Bioinformatics, Geneva", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Q9P0K8", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 660, "prefix": "peroxibase", "mirId": "MIR:00000222", "name": "Peroxibase", "pattern": "^\\d+$", "description": "Peroxibase provides access to peroxidase sequences from all kingdoms of life, and provides a series of bioinformatics tools and facilities suitable for analysing these sequences.", "created": "2019-06-11T14:16:30.097+0000", "modified": "2019-06-11T14:16:30.097+0000", "resources": [{"id": 662, "mirId": "MIR:00100281", "urlPattern": "http://peroxibase.toulouse.inra.fr/browse/process/view_perox.php?id={$id}", "name": "Peroxibase at University of Geneva", "description": "Peroxibase at University of Geneva", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "5282", "resourceHomeUrl": "http://peroxibase.toulouse.inra.fr/", "institution": {"id": 661, "name": "Department of Plant Biology, University of Geneva, Geneva", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5282", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 663, "prefix": "phylomedb", "mirId": "MIR:00000223", "name": "PhylomeDB", "pattern": "^\\w+$", "description": "PhylomeDB is a database of complete phylomes derived for different genomes within a specific taxonomic range. It provides alignments, phylogentic trees and tree-based orthology predictions for all encoded proteins.", "created": "2019-06-11T14:16:30.326+0000", "modified": "2019-06-11T14:16:30.326+0000", "resources": [{"id": 665, "mirId": "MIR:00100282", "urlPattern": "http://phylomedb.org/?seqid={$id}", "name": "PhylomeDB at Centro de Investigaci\u00f3n Pr\u00edncipe Felipe", "description": "PhylomeDB at Centro de Investigaci\u00f3n Pr\u00edncipe Felipe", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Phy000CLXM_RAT", "resourceHomeUrl": "http://phylomedb.org/", "institution": {"id": 664, "name": "Centre for Genomic Regulation", "homeUrl": "https://www.crg.eu", "description": "The Centre for Genomic Regulation (CRG) is an international biomedical research institute of excellence, created in December 2000. It is a non-profit foundation funded by the Catalan Government through the Departments of Business & Knowledge, the Spanish Ministry of Science, Innovation & Universities, the \"la Caixa\" Banking Foundation, and includes the participation of Pompeu Fabra University.", "rorId": "https://ror.org/03wyzt892", "location": {"countryCode": "ES", "countryName": "Spain"}}, "location": {"countryCode": "ES", "countryName": "Spain"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Phy000CLXM_RAT", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 666, "prefix": "pmap.substratedb", "mirId": "MIR:00000224", "name": "SubstrateDB", "pattern": "^\\d+$", "description": "The Proteolysis MAP is a resource for proteolytic networks and pathways. PMAP is comprised of five databases, linked together in one environment. SubstrateDB contains molecular information on documented protease substrates.", "created": "2019-06-11T14:16:30.547+0000", "modified": "2019-06-11T14:16:30.547+0000", "resources": [{"id": 668, "mirId": "MIR:00100283", "urlPattern": "http://substrate.burnham.org/protein/annotation/{$id}/html", "name": "SubstrateDB at The Burnham Institute for Medical Research", "description": "SubstrateDB at The Burnham Institute for Medical Research", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1915", "resourceHomeUrl": "http://substrate.burnham.org/", "institution": {"id": 667, "name": "The Center on Proteolytic Pathways, The Cancer Research Center and The Inflammatory and Infectious Disease Center, The Burnham Institute for Medical Research, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1915", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 669, "prefix": "pmap.cutdb", "mirId": "MIR:00000225", "name": "CutDB", "pattern": "^\\d+$", "description": "The Proteolysis MAP is a resource for proteolytic networks and pathways. PMAP is comprised of five databases, linked together in one environment. CutDB is a database of individual proteolytic events (cleavage sites).", "created": "2019-06-11T14:16:30.793+0000", "modified": "2019-06-11T14:16:30.793+0000", "resources": [{"id": 670, "mirId": "MIR:00100284", "urlPattern": "http://cutdb.burnham.org/relation/show/{$id}", "name": "CutDB at The Burnham Institute for Medical Research", "description": "CutDB at The Burnham Institute for Medical Research", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "25782", "resourceHomeUrl": "http://cutdb.burnham.org", "institution": {"id": 667, "name": "The Center on Proteolytic Pathways, The Cancer Research Center and The Inflammatory and Infectious Disease Center, The Burnham Institute for Medical Research, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "25782", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 671, "prefix": "protclustdb", "mirId": "MIR:00000226", "name": "ProtClustDB", "pattern": "^\\w+$", "description": "ProtClustDB is a collection of related protein sequences (clusters) consisting of Reference Sequence proteins encoded by complete genomes. This database contains both curated and non-curated clusters.", "created": "2019-06-11T14:16:31.086+0000", "modified": "2019-06-11T14:16:31.086+0000", "resources": [{"id": 672, "mirId": "MIR:00100285", "urlPattern": "https://www.ncbi.nlm.nih.gov/sites/entrez?Db=proteinclusters&Cmd=DetailsSearch&Term={$id}", "name": "ProtClustDB at NCBI", "description": "ProtClustDB at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "O80725", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/proteinclusters?db=proteinclusters", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "O80725", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 673, "prefix": "pmp", "mirId": "MIR:00000227", "name": "PMP", "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])$", "description": "The number of known protein sequences exceeds those of experimentally solved protein structures. Homology (or comparative) modeling methods make use of experimental protein structures to build models for evolutionary related proteins. The Protein Model Portal (PMP) provides a single portal to access these models, which are accessed through their UniProt identifiers.", "created": "2019-06-11T14:16:31.282+0000", "modified": "2019-06-11T14:16:31.282+0000", "resources": [{"id": 675, "mirId": "MIR:00100286", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100286/{$id}", "name": "PMP at University of Basel", "description": "PMP at University of Basel", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q0VCA6", "resourceHomeUrl": "http://www.proteinmodelportal.org/", "institution": {"id": 674, "name": "Biozentrum, University of Basel, Basel", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": true, "deprecationDate": "2020-03-03T06:27:49.602+0000"}], "sampleId": "Q0VCA6", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 676, "prefix": "protonet.proteincard", "mirId": "MIR:00000228", "name": "ProtoNet ProteinCard", "pattern": "^\\d+$", "description": "ProtoNet provides automatic hierarchical classification of protein sequences in the UniProt database, partitioning the protein space into clusters of similar proteins. This collection references protein information.", "created": "2019-06-11T14:16:31.529+0000", "modified": "2019-06-11T14:16:31.529+0000", "resources": [{"id": 678, "mirId": "MIR:00100287", "urlPattern": "http://www.protonet.cs.huji.ac.il/requested/protein_card.php?protein_id={$id}", "name": "ProtoNet at Hebrew University", "description": "ProtoNet at Hebrew University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "16941567", "resourceHomeUrl": "http://www.protonet.cs.huji.ac.il/", "institution": {"id": 677, "name": "Hebrew University, Jerusalem", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IL", "countryName": "Israel"}}, "location": {"countryCode": "IL", "countryName": "Israel"}, "deprecated": false, "deprecationDate": null}], "sampleId": "16941567", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 679, "prefix": "protonet.cluster", "mirId": "MIR:00000229", "name": "ProtoNet Cluster", "pattern": "^\\d+$", "description": "ProtoNet provides automatic hierarchical classification of protein sequences in the UniProt database, partitioning the protein space into clusters of similar proteins. This collection references cluster information.", "created": "2019-06-11T14:16:31.786+0000", "modified": "2019-06-11T14:16:31.786+0000", "resources": [{"id": 680, "mirId": "MIR:00100288", "urlPattern": "http://www.protonet.cs.huji.ac.il/requested/cluster_card.php?cluster={$id}", "name": "ProtoNet at Hebrew University", "description": "ProtoNet at Hebrew University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4349895", "resourceHomeUrl": "http://www.protonet.cs.huji.ac.il/", "institution": {"id": 677, "name": "Hebrew University, Jerusalem", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IL", "countryName": "Israel"}}, "location": {"countryCode": "IL", "countryName": "Israel"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4349895", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 681, "prefix": "rebase", "mirId": "MIR:00000230", "name": "REBASE", "pattern": "^\\d+$", "description": "REBASE is a comprehensive database of information about restriction enzymes, DNA methyltransferases and related proteins involved in the biological process of restriction-modification (R-M). It contains fully referenced information about recognition and cleavage sites, isoschizomers, neoschizomers, commercial availability, methylation sensitivity, crystal and sequence data.", "created": "2019-06-11T14:16:32.004+0000", "modified": "2019-06-11T14:16:32.004+0000", "resources": [{"id": 683, "mirId": "MIR:00100289", "urlPattern": "http://rebase.neb.com/rebase/enz/{$id}.html", "name": "REBASE at New England Biolabs", "description": "REBASE at New England Biolabs", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "101", "resourceHomeUrl": "http://rebase.neb.com/rebase/", "institution": {"id": 682, "name": "New England Biolabs, Ipswich, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "101", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 684, "prefix": "swiss-model", "mirId": "MIR:00000231", "name": "SWISS-MODEL Repository", "pattern": "^\\w+$", "description": "The SWISS-MODEL Repository is a database of 3D protein structure models generated by the SWISS-MODEL homology-modelling pipeline for UniProtKB protein sequences.", "created": "2019-06-11T14:16:32.267+0000", "modified": "2019-06-11T14:16:32.267+0000", "resources": [{"id": 686, "mirId": "MIR:00100290", "urlPattern": "https://swissmodel.expasy.org/repository/uniprot/{$id}", "name": "SWISS-MODEL at SIB Swiss Institute of Bioinformatics", "description": "SWISS-MODEL at SIB Swiss Institute of Bioinformatics", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "P23298", "resourceHomeUrl": "https://swissmodel.expasy.org", "institution": {"id": 685, "name": "Biozentrum, University of Basel and SIB Swiss Institute of Bioinformatics, Basel", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P23298", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 687, "prefix": "vectorbase", "mirId": "MIR:00000232", "name": "VectorBase", "pattern": "^\\D{4}\\d{6}(\\-\\D{2})?$", "description": "VectorBase is an NIAID-funded Bioinformatic Resource Center focused on invertebrate vectors of human pathogens. VectorBase annotates and curates vector genomes providing a web accessible integrated resource for the research community. Currently, VectorBase contains genome information for three mosquito species: Aedes aegypti, Anopheles gambiae and Culex quinquefasciatus, a body louse Pediculus humanus and a tick species Ixodes scapularis.", "created": "2019-06-11T14:16:32.515+0000", "modified": "2019-06-11T14:16:32.515+0000", "resources": [{"id": 688, "mirId": "MIR:00100291", "urlPattern": "https://vectorbase.org/gene/{$id}", "name": "Vectorbase at EMBL-EBI", "description": "Vectorbase at EMBL-EBI", "official": true, "providerCode": "ebi", "sampleId": "ISCW007415", "resourceHomeUrl": "https://www.vectorbase.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ISCW007415", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 696, "prefix": "mirbase.mature", "mirId": "MIR:00000235", "name": "miRBase mature sequence", "pattern": "MIMAT\\d{7}", "description": "The miRBase Sequence Database is a searchable database of published miRNA sequences and annotation. This collection refers specifically to the mature miRNA sequence.", "created": "2019-06-11T14:16:33.415+0000", "modified": "2019-06-11T14:16:33.415+0000", "resources": [{"id": 697, "mirId": "MIR:00100296", "urlPattern": "http://www.mirbase.org/cgi-bin/mature.pl?mature_acc={$id}", "name": "miRBase", "description": "miRBase", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MIMAT0000001", "resourceHomeUrl": "http://www.mirbase.org/", "institution": {"id": 264, "name": "Faculty of Life Sciences, University of Manchester", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MIMAT0000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 698, "prefix": "nextprot", "mirId": "MIR:00000236", "name": "nextProt", "pattern": "^NX_\\w+", "description": "neXtProt is a resource on human proteins, and includes information such as proteins\u2019 function, subcellular location, expression, interactions and role in diseases.", "created": "2019-06-11T14:16:33.634+0000", "modified": "2019-06-11T14:16:33.634+0000", "resources": [{"id": 700, "mirId": "MIR:00100300", "urlPattern": "https://www.nextprot.org/db/entry/{$id}", "name": "nextProt at Swiss Institute of Bioinformatics", "description": "nextProt at Swiss Institute of Bioinformatics", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "NX_O00165", "resourceHomeUrl": "https://www.nextprot.org/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "NX_O00165", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 701, "prefix": "cas", "mirId": "MIR:00000237", "name": "CAS", "pattern": "^\\d{1,7}\\-\\d{2}\\-\\d$", "description": "CAS (Chemical Abstracts Service) is a division of the American Chemical Society and is the producer of comprehensive databases of chemical information.", "created": "2019-06-11T14:16:33.869+0000", "modified": "2019-06-11T14:16:33.869+0000", "resources": [{"id": 703, "mirId": "MIR:00100301", "urlPattern": "https://commonchemistry.cas.org/detail?ref={$id}", "name": "CAS Common Chemistry", "description": "CAS Common Chemistry", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "50-00-0", "resourceHomeUrl": "https://commonchemistry.cas.org/", "institution": {"id": 702, "name": "CAS American Chemical Society", "homeUrl": "https://www.cas.org", "description": "CAS is a global organization of expert scientists, technologists, and business leaders with a successful and extended history of delivering scientific information opportunities.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 2454, "mirId": "MIR:00000732", "urlPattern": "https://scholia.toolforge.org/cas/{$id}", "name": "Scholia", "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", "official": false, "providerCode": "scholia", "sampleId": "50-00-0", "resourceHomeUrl": "https://scholia.toolforge.org/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "50-00-0", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 704, "prefix": "kegg.genome", "mirId": "MIR:00000238", "name": "KEGG Genome", "pattern": "^(T0\\d+|\\w{3,5})$", "description": "KEGG Genome is a collection of organisms whose genomes have been completely sequenced.", "created": "2019-06-11T14:16:34.113+0000", "modified": "2019-06-11T14:16:34.113+0000", "resources": [{"id": 706, "mirId": "MIR:00100303", "urlPattern": "http://www.kegg.jp/entry/{$id}", "name": "KEGG Genome Database", "description": "KEGG Genome Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "eco", "resourceHomeUrl": "http://www.genome.jp/kegg/catalog/org_list.html", "institution": {"id": 705, "name": "Kyoto University Bioinformatics Center, Kyoto", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "eco", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 707, "prefix": "kegg.metagenome", "mirId": "MIR:00000239", "name": "KEGG Metagenome", "pattern": "^T3\\d+$", "description": "The KEGG Metagenome Database collection information on environmental samples (ecosystems) of genome sequences for multiple species.", "created": "2019-06-11T14:16:34.345+0000", "modified": "2019-06-11T14:16:34.345+0000", "resources": [{"id": 708, "mirId": "MIR:00100304", "urlPattern": "http://www.kegg.jp/entry/{$id}", "name": "KEGG Metagenome Database", "description": "KEGG Metagenome Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "T30002", "resourceHomeUrl": "http://www.genome.jp/kegg/catalog/org_list3.html", "institution": {"id": 705, "name": "Kyoto University Bioinformatics Center, Kyoto", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "T30002", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 709, "prefix": "narcis", "mirId": "MIR:00000240", "name": "NARCIS", "pattern": "^oai\\:cwi\\.nl\\:\\d+$", "description": "NARCIS provides access to scientific information, including (open access) publications from the repositories of all the Dutch universities, KNAW, NWO and a number of research institutes, which is not referenced in other citation databases.", "created": "2019-06-11T14:16:34.542+0000", "modified": "2019-06-11T14:16:34.542+0000", "resources": [{"id": 711, "mirId": "MIR:00100306", "urlPattern": "http://www.narcis.nl/publication/RecordID/{$id}", "name": "NARCIS at The Hague", "description": "NARCIS at The Hague", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "oai:cwi.nl:4725", "resourceHomeUrl": "http://www.narcis.nl/?Language=en", "institution": {"id": 710, "name": "NARCIS, Royal Netherlands Academy of Science and Arts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "oai:cwi.nl:4725", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 712, "prefix": "jcsd", "mirId": "MIR:00000241", "name": "Japan Chemical Substance Dictionary", "pattern": "^J\\d{1,3}(\\.\\d{3})?(\\.\\d{1,3})?[A-Za-z]$", "description": "The Japan Chemical Substance Dictionary is an organic compound dictionary database prepared by the Japan Science and Technology Agency (JST).", "created": "2019-06-11T14:16:34.772+0000", "modified": "2019-06-11T14:16:34.772+0000", "resources": [{"id": 714, "mirId": "MIR:00100307", "urlPattern": "http://jglobal.jst.go.jp/en/redirect?Nikkaji_No={$id}", "name": "Japan Chemical Substance Dictionary", "description": "Japan Chemical Substance Dictionary", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "J55.713G", "resourceHomeUrl": "http://jglobal.jst.go.jp/en/", "institution": {"id": 713, "name": "Japan Science and Technology Agency", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "J55.713G", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 715, "prefix": "pw", "mirId": "MIR:00000242", "name": "Pathway Ontology", "pattern": "^PW:\\d{7}$", "description": "The Pathway Ontology captures information on biological networks, the relationships between netweorks and the alterations or malfunctioning of such networks within a hierarchical structure. The five main branches of the ontology are: classic metabolic pathways, regulatory, signaling, drug, and disease pathwaysfor complex human conditions.", "created": "2019-06-11T14:16:35.052+0000", "modified": "2019-06-11T14:16:35.052+0000", "resources": [{"id": 717, "mirId": "MIR:00100309", "urlPattern": "http://rgd.mcw.edu/rgdweb/ontology/annot.html?acc_id=PW:{$id}", "name": "Pathway Ontology at Rat Genome Database", "description": "Pathway Ontology at Rat Genome Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0000208", "resourceHomeUrl": "http://rgd.mcw.edu/rgdweb/ontology/search.html", "institution": {"id": 716, "name": "Medical College of Wisconsin, Wisconsin", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 718, "mirId": "MIR:00100310", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/pw/terms?obo_id=PW:{$id}", "name": "Pathway Ontology through OLS", "description": "Pathway Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0000208", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/pw", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 720, "mirId": "MIR:00100311", "urlPattern": "http://purl.bioontology.org/ontology/PW/PW:{$id}", "name": "Pathway Ontology through BioPortal", "description": "Pathway Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0000208", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PW", "institution": {"id": 719, "name": "National Center for Biomedical Ontology, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000208", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 694, "prefix": "cco", "mirId": "MIR:00000234", "name": "Cell Cycle Ontology", "pattern": "^CCO:\\w+$", "description": "The Cell Cycle Ontology is an application ontology that captures and integrates detailed knowledge on the cell cycle process.", "created": "2019-06-11T14:16:33.213+0000", "modified": "2023-01-10T14:47:52.365+0000", "resources": [{"id": 695, "mirId": "MIR:00100294", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/cco/terms?obo_id=CCO:{$id}", "name": "Cell Cycle Ontology through OLS", "description": "Cell Cycle Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0000003", "resourceHomeUrl": "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=CCO", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000003", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 721, "prefix": "insdc.sra", "mirId": "MIR:00000243", "name": "Sequence Read Archive", "pattern": "^[SED]R[APRSXZ]\\d+$", "description": "The Sequence Read Archive (SRA) stores raw sequencing data from the next generation of sequencing platforms Data submitted to SRA. It is organized using a metadata model consisting of six objects: study, sample, experiment, run, analysis and submission. The SRA study contains high-level information including goals of the study and literature references, and may be linked to the INSDC BioProject database.", "created": "2019-06-11T14:16:35.560+0000", "modified": "2019-06-11T14:16:35.560+0000", "resources": [{"id": 722, "mirId": "MIR:00100312", "urlPattern": "https://www.ncbi.nlm.nih.gov/sra/{$id}", "name": "Sequence Read Archive at NCBI", "description": "Sequence Read Archive at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "SRX000007", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/sra", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 723, "mirId": "MIR:00100313", "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", "name": "European Nucleotide Archive (ENA)", "description": "European Nucleotide Archive (ENA)", "official": false, "providerCode": "ebi", "sampleId": "SRX000007", "resourceHomeUrl": "https://www.ebi.ac.uk/ena", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 724, "mirId": "MIR:00100314", "urlPattern": "http://trace.ddbj.nig.ac.jp/DRASearch/experiment?acc={$id}", "name": "DDBJ Sequence Read Archive (DRA)", "description": "DDBJ Sequence Read Archive (DRA)", "official": false, "providerCode": "ddbj", "sampleId": "SRX000007", "resourceHomeUrl": "http://trace.ddbj.nig.ac.jp/dra/", "institution": {"id": 121, "name": "DNA Data Bank of Japan, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SRX000007", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 725, "prefix": "scretf", "mirId": "MIR:00000244", "name": "ScerTF", "pattern": "^\\w+$", "description": "ScerTF is a database of position weight matrices (PWMs) for transcription factors in Saccharomyces species. It identifies a single matrix for each TF that best predicts in vivo data, providing metrics related to the performance of that matrix in accurately representing the DNA binding specificity of the annotated transcription factor.", "created": "2019-06-11T14:16:35.987+0000", "modified": "2019-06-11T14:16:35.987+0000", "resources": [{"id": 727, "mirId": "MIR:00100315", "urlPattern": "http://stormo.wustl.edu/ScerTF/details/{$id}/", "name": "ScerTF at Washington University", "description": "ScerTF at Washington University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "RSC3", "resourceHomeUrl": "http://stormo.wustl.edu/ScerTF/", "institution": {"id": 726, "name": "Department of Genetics, Washington University Medical School, St Louis, Missouri", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "RSC3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 728, "prefix": "pharmgkb.gene", "mirId": "MIR:00000245", "name": "PharmGKB Gene", "pattern": "^PA\\w+$", "description": "The PharmGKB database is a central repository for genetic, genomic, molecular and cellular phenotype data and clinical information about people who have participated in pharmacogenomics research studies. The data includes, but is not limited to, clinical and basic pharmacokinetic and pharmacogenomic research in the cardiovascular, pulmonary, cancer, pathways, metabolic and transporter domains.", "created": "2019-06-11T14:16:36.222+0000", "modified": "2019-06-11T14:16:36.222+0000", "resources": [{"id": 729, "mirId": "MIR:00100316", "urlPattern": "http://www.pharmgkb.org/gene/{$id}", "name": "PharmGKB Gene at Stanford", "description": "PharmGKB Gene at Stanford", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PA131", "resourceHomeUrl": "http://www.pharmgkb.org/", "institution": {"id": 298, "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PA131", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 730, "prefix": "mirnest", "mirId": "MIR:00000246", "name": "miRNEST", "pattern": "^MNEST\\d+$", "description": "miRNEST is a database of animal, plant and virus microRNAs, containing miRNA predictions conducted on Expressed Sequence Tags of animal and plant species.", "created": "2019-06-11T14:16:36.416+0000", "modified": "2019-06-11T14:16:36.416+0000", "resources": [{"id": 732, "mirId": "MIR:00100317", "urlPattern": "http://rhesus.amu.edu.pl/mirnest/copy/details.php?id={$id}", "name": "miRNEST at Adam Mickiewicz University", "description": "miRNEST at Adam Mickiewicz University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MNEST029358", "resourceHomeUrl": "http://rhesus.amu.edu.pl/mirnest/copy/", "institution": {"id": 731, "name": "Institute of Molecular Biology, Adam Mickiewicz University, Poznan", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "PL", "countryName": "Poland"}}, "location": {"countryCode": "PL", "countryName": "Poland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MNEST029358", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 733, "prefix": "napp", "mirId": "MIR:00000247", "name": "NAPP", "pattern": "^\\d+$", "description": "NAPP (Nucleic Acids Phylogenetic Profiling is a clustering method based on conserved noncoding RNA (ncRNA) elements in a bacterial genomes. Short intergenic regions from a reference genome are compared with other genomes to identify RNA rich clusters.", "created": "2019-06-11T14:16:36.669+0000", "modified": "2019-06-11T14:16:36.669+0000", "resources": [{"id": 735, "mirId": "MIR:00100318", "urlPattern": "http://rna.igmors.u-psud.fr/NAPP/Niveau2.php?specie={$id}", "name": "NAPP at CNRS", "description": "NAPP at CNRS", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "351", "resourceHomeUrl": "http://napp.u-psud.fr/", "institution": {"id": 734, "name": "Institut de G\u00e9n\u00e9tique et Microbiologie, UMR 8621, CNRS, Universit\u00e9 Paris Sud, Paris", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "351", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 736, "prefix": "noncodev3", "mirId": "MIR:00000248", "name": "NONCODE v3", "pattern": "^\\d+$", "description": "NONCODE is a database of expression and functional lncRNA (long noncoding RNA) data obtained from microarray studies. LncRNAs have been shown to play key roles in various biological processes such as imprinting control, circuitry controlling pluripotency and differentiation, immune responses and chromosome dynamics. The collection references NONCODE version 3. This was replaced in 2013 by version 4.", "created": "2019-06-11T14:16:36.900+0000", "modified": "2019-06-11T14:16:36.900+0000", "resources": [{"id": 738, "mirId": "MIR:00100319", "urlPattern": "http://www.noncode.org/NONCODERv3/ncrna.php?ncid={$id}", "name": "NONCODE at Chinese Academy of Sciences", "description": "NONCODE at Chinese Academy of Sciences", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "377550", "resourceHomeUrl": "http://www.noncode.org/", "institution": {"id": 737, "name": "Chinese Academy of Sciences", "homeUrl": "http://english.cas.cn/", "description": "The Chinese Academy of Sciences is the linchpin of China\u2019s drive to explore and harness high technology and the natural sciences for the benefit of China and the world. CAS brings together scientists and engineers from China and around the world to address both theoretical and applied problems using world-class scientific and management approaches.", "rorId": "https://ror.org/034t30j35", "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "377550", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 739, "prefix": "virsirna", "mirId": "MIR:00000249", "name": "VIRsiRNA", "pattern": "^virsi\\d+$", "description": "The VIRsiRNA database contains details of siRNA/shRNA which target viral genome regions. It provides efficacy information where available, as well as the siRNA sequence, viral target and subtype, as well as the target genomic region.", "created": "2019-06-11T14:16:37.163+0000", "modified": "2019-06-11T14:16:37.163+0000", "resources": [{"id": 741, "mirId": "MIR:00100320", "urlPattern": "http://crdd.osdd.net/servers/virsirnadb/record.php?details={$id}", "name": "VIRsiRNA at Institute of Microbial Technology", "description": "VIRsiRNA at Institute of Microbial Technology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "virsi1909", "resourceHomeUrl": "http://crdd.osdd.net/servers/virsirnadb", "institution": {"id": 740, "name": "Institute of Microbial Technology, Council of Scientific and Industrial Research (CSIR), Chandigarh, India", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "virsi1909", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 742, "prefix": "elm", "mirId": "MIR:00000250", "name": "ELM", "pattern": "^[A-Za-z_0-9]+$", "description": "Linear motifs are short, evolutionarily plastic components of regulatory proteins. Mainly focused on the eukaryotic sequences,the Eukaryotic Linear Motif resource (ELM) is a database of curated motif classes and instances.", "created": "2019-06-11T14:16:37.386+0000", "modified": "2019-06-11T14:16:37.386+0000", "resources": [{"id": 744, "mirId": "MIR:00100321", "urlPattern": "http://elm.eu.org/elms/elmPages/{$id}.html", "name": "ELM at EMBL (Germany)", "description": "ELM at EMBL (Germany)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CLV_MEL_PAP_1", "resourceHomeUrl": "http://elm.eu.org/", "institution": {"id": 743, "name": "Structural and Computational Biology, European Molecular Biology Laboratory, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CLV_MEL_PAP_1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 745, "prefix": "mimodb", "mirId": "MIR:00000251", "name": "MimoDB", "pattern": "^\\d+$", "description": "MimoDB is a database collecting peptides that have been selected from random peptide libraries based on their ability to bind small compounds, nucleic acids, proteins, cells, tissues and organs. It also stores other information such as the corresponding target, template, library, and structures. As of March 2016, this database was renamed Biopanning Data Bank.", "created": "2019-06-11T14:16:37.622+0000", "modified": "2019-06-11T14:16:37.622+0000", "resources": [{"id": 747, "mirId": "MIR:00100322", "urlPattern": "http://immunet.cn/bdb/index.php/mimoset/{$id}", "name": "BDB at University of Electronic Science and Technology of China", "description": "BDB at University of Electronic Science and Technology of China", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1", "resourceHomeUrl": "http://immunet.cn/bdb/", "institution": {"id": 746, "name": "Key Laboratory for Neuroinformation of Ministry of Education, University of Electronic Science and Technology of China, Sichuan", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 748, "prefix": "sitex", "mirId": "MIR:00000252", "name": "SitEx", "pattern": "^\\d+$", "description": "SitEx is a database containing information on eukaryotic protein functional sites. It stores the amino acid sequence positions in the functional site, in relation to the exon structure of encoding gene This can be used to detect the exons involved in shuffling in protein evolution, or to design protein-engineering experiments.", "created": "2019-06-11T14:16:37.867+0000", "modified": "2019-06-11T14:16:37.867+0000", "resources": [{"id": 750, "mirId": "MIR:00100323", "urlPattern": "http://www-bionet.sscc.ru/sitex/index.php?siteid={$id}", "name": "SitEx at Novosibirsk State University", "description": "SitEx at Novosibirsk State University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1000", "resourceHomeUrl": "http://www-bionet.sscc.ru/sitex/", "institution": {"id": 749, "name": "Novosibirsk State University, Novosibirsk", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "RU", "countryName": "Russian Federation"}}, "location": {"countryCode": "RU", "countryName": "Russian Federation"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 751, "prefix": "bykdb", "mirId": "MIR:00000253", "name": "BYKdb", "pattern": "^[A-Z0-9]+$", "description": "The bacterial tyrosine kinase database (BYKdb) that collects sequences of putative and authentic bacterial tyrosine kinases, providing structural and functional information.", "created": "2019-06-11T14:16:38.105+0000", "modified": "2019-06-11T14:16:38.105+0000", "resources": [{"id": 753, "mirId": "MIR:00100324", "urlPattern": "https://bykdb.ibcp.fr/data/html/annotated/{$id}.html", "name": "BYKdb at CNRS", "description": "BYKdb at CNRS", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "A0A009E7X8", "resourceHomeUrl": "https://bykdb.ibcp.fr/BYKdb/", "institution": {"id": 752, "name": "Unit\u00e9 Bases Mol\u00e9culaires et Structurales des Syst\u00e8mes Infectieux; CNRS - Universit\u00e9 Claude Bernard, Lyon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "A0A009E7X8", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 754, "prefix": "conoserver", "mirId": "MIR:00000254", "name": "Conoserver", "pattern": "^\\d+$", "description": "ConoServer is a database specialized in the sequence and structures of conopeptides, which are peptides expressed by carnivorous marine cone snails.", "created": "2019-06-11T14:16:38.340+0000", "modified": "2019-06-11T14:16:38.340+0000", "resources": [{"id": 755, "mirId": "MIR:00100325", "urlPattern": "http://www.conoserver.org/?page=card&table=protein&id={$id}", "name": "ConoServer at University of Queensland", "description": "ConoServer at University of Queensland", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2639", "resourceHomeUrl": "http://www.conoserver.org/", "institution": {"id": 582, "name": "Institute for Molecular Bioscience, The University of Queensland, Brisbane", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "AU", "countryName": "Australia"}}, "location": {"countryCode": "AU", "countryName": "Australia"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2639", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 756, "prefix": "topfind", "mirId": "MIR:00000255", "name": "TopFind", "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])$", "description": "TopFIND is a database of protein termini, terminus modifications and their proteolytic processing in the species: Homo sapiens, Mus musculus, Arabidopsis thaliana, Saccharomyces cerevisiae and Escherichia coli.", "created": "2019-06-11T14:16:38.521+0000", "modified": "2019-06-11T14:16:38.521+0000", "resources": [{"id": 758, "mirId": "MIR:00100326", "urlPattern": "http://clipserve.clip.ubc.ca/topfind/proteins/{$id}", "name": "TopFind at University of British Columbia", "description": "TopFind at University of British Columbia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q9UKQ2", "resourceHomeUrl": "http://clipserve.clip.ubc.ca/topfind", "institution": {"id": 757, "name": "Department of Oral Biological and Medical Sciences, University of British Columbia, Vancouver", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Q9UKQ2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 759, "prefix": "mipmod", "mirId": "MIR:00000256", "name": "MIPModDB", "pattern": "^\\w+$", "description": "MIPModDb is a database of comparative protein structure models of MIP (Major Intrinsic Protein) family of proteins, identified from complete genome sequence. It provides key information of MIPs based on their sequence and structures.", "created": "2019-06-11T14:16:38.756+0000", "modified": "2019-06-11T14:16:38.756+0000", "resources": [{"id": 761, "mirId": "MIR:00100327", "urlPattern": "http://bioinfo.iitk.ac.in/MIPModDB/result.php?code={$id}", "name": "MIPModDB at Indian Institute of Technology Kanpur", "description": "MIPModDB at Indian Institute of Technology Kanpur", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HOSAPI0399", "resourceHomeUrl": "http://bioinfo.iitk.ac.in/MIPModDB", "institution": {"id": 760, "name": "Department of Biological Sciences and Bioengineering, Indian Institute of Technology Kanpur, Kanpur", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HOSAPI0399", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 762, "prefix": "cellimage", "mirId": "MIR:00000257", "name": "Cell Image Library", "pattern": "^\\d+$", "description": "The Cell: An Image Library\u2122 is a freely accessible, public repository of reviewed and annotated images, videos, and animations of cells from a variety of organisms, showcasing cell architecture, intracellular functionalities, and both normal and abnormal processes.", "created": "2019-06-11T14:16:38.984+0000", "modified": "2019-06-11T14:16:38.984+0000", "resources": [{"id": 764, "mirId": "MIR:00100328", "urlPattern": "http://cellimagelibrary.org/images/{$id}", "name": "Cell Image Library at American Society for Cell Biology", "description": "Cell Image Library at American Society for Cell Biology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "24801", "resourceHomeUrl": "http://cellimagelibrary.org/", "institution": {"id": 763, "name": "National Center for Microscopy and Imaging Research", "homeUrl": "https://ncmir.ucsd.edu", "description": "The mission of NCMIR is to develop technologies to bridge understanding of biological systems between the gross anatomical and molecular scales and to make these technologies broadly available to biomedical researchers. NCMIR provides expertise, infrastructure, technological development, and an environment in which new information about the 3D ultrastructure of tissues, cells, and macromolecular complexes may be accurately and easily obtained and analyzed.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "24801", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 767, "prefix": "cabri", "mirId": "MIR:00000261", "name": "CABRI", "pattern": "^([A-Za-z]+)?(\\_)?([A-Za-z-]+)\\:([A-Za-z0-9 ]+)$", "description": "CABRI (Common Access to Biotechnological Resources and Information) is an online service where users can search a number of European Biological Resource Centre catalogues. It lists the availability of a particular organism or genetic resource and defines the set of technical specifications and procedures which should be used to handle it.", "created": "2019-06-11T14:16:39.396+0000", "modified": "2019-06-11T14:16:39.396+0000", "resources": [{"id": 769, "mirId": "MIR:00100334", "urlPattern": "http://www.cabri.org/CABRI/srs-bin/wgetz?-e+-page+EntryPage+[{$id}]", "name": "CABRI Cell Lines catalogue in Genova (SRS)", "description": "CABRI Cell Lines catalogue in Genova (SRS)", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "dsmz_mutz-id:ACC 291", "resourceHomeUrl": "http://www.cabri.org/", "institution": {"id": 768, "name": "National Cancer Research Institute of Genova, Genova", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}, {"id": 771, "mirId": "MIR:00100335", "urlPattern": "http://www.be.cabri.org/CABRI/srs-bin/wgetz?-e+-page+EntryPage+[{$id}]", "name": "CABRI Cell Lines catalogue in Brussels (SRS)", "description": "CABRI Cell Lines catalogue in Brussels (SRS)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "dsmz_mutz-id:ACC 291", "resourceHomeUrl": "http://www.be.cabri.org/", "institution": {"id": 770, "name": "BCCM", "homeUrl": "http://bccm.belspo.be/", "description": "he BCCM consortium has grown to become one of the most important culture collections in the world, both in terms of the size and quality of the collections (bacteria, yeasts, moulds, plasmids, diatoms, DNA libraries) and its expertise. Not only does the consortium keep more than 200,000 quality controlled, characterised and documented units of biological material, but it also offers its expertise through services and partnership projects.", "rorId": null, "location": {"countryCode": "BE", "countryName": "Belgium"}}, "location": {"countryCode": "BE", "countryName": "Belgium"}, "deprecated": false, "deprecationDate": null}], "sampleId": "dsmz_mutz-id:ACC 291", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 772, "prefix": "huge", "mirId": "MIR:00000263", "name": "HUGE", "pattern": "^KIAA\\d{4}$", "description": "The Human Unidentified Gene-Encoded (HUGE) protein database contains results from sequence analysis of human novel large (>4 kb) cDNAs identified in the Kazusa cDNA sequencing project.", "created": "2019-06-11T14:16:39.763+0000", "modified": "2019-06-11T14:16:39.763+0000", "resources": [{"id": 774, "mirId": "MIR:00100339", "urlPattern": "http://www.kazusa.or.jp/huge/gfpage/{$id}/", "name": "HUGE at Kazusa DNA Research Institute", "description": "HUGE at Kazusa DNA Research Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "KIAA0001", "resourceHomeUrl": "http://www.kazusa.or.jp/huge/", "institution": {"id": 773, "name": "Kazusa DNA Research Institute, Chiba", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "KIAA0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 775, "prefix": "bindingdb", "mirId": "MIR:00000264", "name": "BindingDB", "pattern": "^\\w\\d+$", "description": "BindingDB is the first public database of protein-small molecule affinity data.", "created": "2019-06-11T14:16:39.982+0000", "modified": "2019-06-11T14:16:39.982+0000", "resources": [{"id": 777, "mirId": "MIR:00100340", "urlPattern": "http://www.bindingdb.org/compact/{$id}", "name": "BindingDB", "description": "BindingDB", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "e999", "resourceHomeUrl": "https://www.bindingdb.org", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "e999", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 839, "prefix": "dictybase.gene", "mirId": "MIR:00000286", "name": "Dictybase Gene", "pattern": "^DDB_G\\d+$", "description": "The dictyBase database provides data on the model organism Dictyostelium discoideum and related species. It contains the complete genome sequence, ESTs, gene models and functional annotations. This collection references gene information.", "created": "2019-06-11T14:16:45.247+0000", "modified": "2019-06-11T14:16:45.247+0000", "resources": [{"id": 841, "mirId": "MIR:00100367", "urlPattern": "http://dictybase.org/gene/{$id}", "name": "Dictybase Gene at Northwestern University", "description": "Dictybase Gene at Northwestern University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "DDB_G0267522", "resourceHomeUrl": "http://dictybase.org/", "institution": {"id": 840, "name": "Northwestern University Biomedical Informatics Center and Center for Genetic Medicine, Chicago, Illinois", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DDB_G0267522", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 778, "prefix": "string", "mirId": "MIR:00000265", "name": "STRING", "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])|([0-9][A-Za-z0-9]{3})$", "description": "STRING (Search Tool for Retrieval of Interacting Genes/Proteins) is a database of known and predicted protein interactions.\r\nThe interactions include direct (physical) and indirect (functional) associations; they are derived from four sources:Genomic Context, High-throughput Experiments,(Conserved) Coexpression, Previous Knowledge. STRING quantitatively integrates interaction data from these sources for a large number of organisms, and transfers information between these organisms where applicable.", "created": "2019-06-11T14:16:40.213+0000", "modified": "2019-06-11T14:16:40.213+0000", "resources": [{"id": 779, "mirId": "MIR:00100341", "urlPattern": "http://string.embl.de/interactions/{$id}", "name": "STRING at Heidelberg", "description": "STRING at Heidelberg", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "P53350", "resourceHomeUrl": "http://string.embl.de/", "institution": {"id": 605, "name": "European Molecular Biology Laboratory, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}, {"id": 780, "mirId": "MIR:00100342", "urlPattern": "http://string-db.org/interactions/{$id}", "name": "STRING Mirror at Heidelberg", "description": "STRING Mirror at Heidelberg", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "P53350", "resourceHomeUrl": "http://string-db.org/", "institution": {"id": 605, "name": "European Molecular Biology Laboratory, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P53350", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 781, "prefix": "stitch", "mirId": "MIR:00000266", "name": "STITCH", "pattern": "^\\w{14}$", "description": "STITCH is a resource to explore known and predicted interactions of chemicals and proteins. Chemicals are linked to other chemicals and proteins by evidence derived from experiments, databases and the literature.", "created": "2019-06-11T14:16:40.524+0000", "modified": "2019-06-11T14:16:40.524+0000", "resources": [{"id": 782, "mirId": "MIR:00100343", "urlPattern": "http://stitch.embl.de/interactions/{$id}", "name": "STITCH", "description": "STITCH", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BQJCRHHNABKAKU", "resourceHomeUrl": "http://stitch.embl.de/", "institution": {"id": 605, "name": "European Molecular Biology Laboratory, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BQJCRHHNABKAKU", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 783, "prefix": "atcvet", "mirId": "MIR:00000267", "name": "Anatomical Therapeutic Chemical Vetinary", "pattern": "^Q[A-Z0-9]+$", "description": "The ATCvet system for the classification of veterinary medicines is based on the same overall principles as the ATC system for substances used in human medicine. In ATCvet systems, preparations are divided into groups, according to their therapeutic use. First, they are divided into 15 anatomical groups (1st level), classified as QA-QV in the ATCvet system, on the basis of their main therapeutic use.", "created": "2019-06-11T14:16:40.712+0000", "modified": "2019-06-11T14:16:40.712+0000", "resources": [{"id": 784, "mirId": "MIR:00100344", "urlPattern": "http://www.whocc.no/atcvet/atcvet_index/?code={$id}", "name": "Anatomical Therapeutic Chemical Vet Index at WHO", "description": "Anatomical Therapeutic Chemical Vet Index at WHO", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "QJ51RV02", "resourceHomeUrl": "http://www.whocc.no/atcvet/atcvet_index/", "institution": {"id": 295, "name": "World Health Organisation", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "QJ51RV02", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 785, "prefix": "phenolexplorer", "mirId": "MIR:00000268", "name": "Phenol-Explorer", "pattern": "^\\d+$", "description": "Phenol-Explorer is an electronic database on polyphenol content in foods. Polyphenols form a wide group of natural antioxidants present in a large number of foods and beverages. They contribute to food characteristics such as taste, colour or shelf-life. They also participate in the prevention of several major chronic diseases such as cardiovascular diseases, diabetes, cancers, neurodegenerative diseases or osteoporosis.", "created": "2019-06-11T14:16:40.928+0000", "modified": "2019-06-11T14:16:40.928+0000", "resources": [{"id": 787, "mirId": "MIR:00100345", "urlPattern": "http://phenol-explorer.eu/foods/{$id}", "name": "Phenol-Explorer Database on Phenol content of foods", "description": "Phenol-Explorer Database on Phenol content of foods", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "75", "resourceHomeUrl": "http://www.phenol-explorer.eu/foods/", "institution": {"id": 786, "name": "INRA and University of Alberta", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "75", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 788, "prefix": "snomedct", "mirId": "MIR:00000269", "name": "SNOMED CT", "pattern": "^(\\w+)?\\d+$", "description": "SNOMED CT (Systematized Nomenclature of Medicine -- Clinical Terms), is a systematically organized computer processable collection of medical terminology covering most areas of clinical information such as diseases, findings, procedures, microorganisms, pharmaceuticals, etc.", "created": "2019-06-11T14:16:41.184+0000", "modified": "2019-06-11T14:16:41.184+0000", "resources": [{"id": 790, "mirId": "MIR:00100405", "urlPattern": "http://www.snomedbrowser.com/Codes/Details/{$id}", "name": "SNOMED-CT at The National Pathology Exchange", "description": "SNOMED-CT at The National Pathology Exchange", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "284196006", "resourceHomeUrl": "http://www.snomedbrowser.com/", "institution": {"id": 789, "name": "The Health Informatics Service, NHS, West Yorkshire", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "284196006", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 791, "prefix": "mesh.2012", "mirId": "MIR:00000270", "name": "MeSH 2012", "pattern": "^[A-Za-z0-9]+$", "description": "MeSH (Medical Subject Headings) is the National Library of Medicine's controlled vocabulary thesaurus. It consists of sets of terms naming descriptors in a hierarchical structure that permits searching at various levels of specificity. This thesaurus is used by NLM for indexing articles from biomedical journals, cataloging of books, documents, etc. This collection references MeSH terms published in 2012.", "created": "2019-06-11T14:16:41.417+0000", "modified": "2019-06-11T14:16:41.417+0000", "resources": [{"id": 793, "mirId": "MIR:00100349", "urlPattern": "http://www.nlm.nih.gov/cgi/mesh/2012/MB_cgi?mode=&index={$id}&view=expanded", "name": "MeSH at National Library of Medicine", "description": "MeSH at National Library of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "17186", "resourceHomeUrl": "http://www.nlm.nih.gov/mesh/", "institution": {"id": 792, "name": "U.S. National Library of Medicine, National Institute of Health, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "17186", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 797, "prefix": "cdpd", "mirId": "MIR:00000272", "name": "Canadian Drug Product Database", "pattern": "^\\d+$", "description": "The Canadian Drug Product Database (DPD) contains product specific information on drugs approved for use in Canada, and includes human pharmaceutical and biological drugs, veterinary drugs and disinfectant products. This information includes 'brand name', 'route of administration' and a Canadian 'Drug Identification Number' (DIN).", "created": "2019-06-11T14:16:41.852+0000", "modified": "2019-06-11T14:16:41.852+0000", "resources": [{"id": 799, "mirId": "MIR:00100351", "urlPattern": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/info.do?lang=eng&code={$id}", "name": "Canadian Drug Identification Number at Health Canada", "description": "Canadian Drug Identification Number at Health Canada", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "63250", "resourceHomeUrl": "http://webprod3.hc-sc.gc.ca/dpd-bdpp/index-eng.jsp", "institution": {"id": 798, "name": "Health Canada, Ottawa, Ontario", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "63250", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 805, "prefix": "gmd", "mirId": "MIR:00000274", "name": "Golm Metabolome Database", "pattern": "^([0-9a-fA-F]){8}(-([0-9a-fA-F]){4}){3}-([0-9a-fA-F]){12}$", "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. This collection references metabolite information, relating the biologically active substance to metabolic pathways or signalling phenomena.", "created": "2019-06-11T14:16:42.514+0000", "modified": "2019-06-11T14:16:42.514+0000", "resources": [{"id": 807, "mirId": "MIR:00100354", "urlPattern": "http://gmd.mpimp-golm.mpg.de/Metabolites/{$id}.aspx", "name": "Golm Metabolome Database at Max Planck Institute of Molecular Plant Physiology", "description": "Golm Metabolome Database at Max Planck Institute of Molecular Plant Physiology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "68513255-fc44-4041-bc4b-4fd2fae7541d", "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", "institution": {"id": 806, "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "68513255-fc44-4041-bc4b-4fd2fae7541d", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 808, "prefix": "homologene", "mirId": "MIR:00000275", "name": "HomoloGene", "pattern": "^\\d+$", "description": "HomoloGene is a system for automated detection of homologs among the annotated genes of several completely sequenced eukaryotic genomes.", "created": "2019-06-11T14:16:42.733+0000", "modified": "2019-06-11T14:16:42.733+0000", "resources": [{"id": 809, "mirId": "MIR:00100355", "urlPattern": "https://www.ncbi.nlm.nih.gov/homologene/{$id}", "name": "Homologene at NCBI", "description": "Homologene at NCBI", "official": true, "providerCode": "ncbi", "sampleId": "1000", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/homologene/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 810, "mirId": "MIR:00100699", "urlPattern": "http://homologene.bio2rdf.org/describe/?url=http://bio2rdf.org/homologene:{$id}", "name": "Bio2RDF", "description": "Bio2RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1000", "resourceHomeUrl": "http://homologene.bio2rdf.org/fct", "institution": {"id": 33, "name": "Bio2RDF.org", "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 811, "prefix": "umbbd.compound", "mirId": "MIR:00000276", "name": "UM-BBD Compound", "pattern": "^c\\d+$", "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the UM-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. This collection refers to compound information.", "created": "2019-06-11T14:16:42.994+0000", "modified": "2019-06-11T14:16:42.994+0000", "resources": [{"id": 813, "mirId": "MIR:00100357", "urlPattern": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=c&compID={$id}", "name": "Biocatalysis/Biodegradation Database Mirror (Compound) at ETH Zurich", "description": "Biocatalysis/Biodegradation Database Mirror (Compound) at ETH Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "c0001", "resourceHomeUrl": "http://umbbd.ethz.ch/", "institution": {"id": 812, "name": "ETH, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "c0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 814, "prefix": "abs", "mirId": "MIR:00000277", "name": "ABS", "pattern": "^A\\d+$", "description": "The database of Annotated regulatory Binding Sites (from orthologous promoters), ABS, is a public database of known binding sites identified in promoters of orthologous vertebrate genes that have been manually curated from bibliography.", "created": "2019-06-11T14:16:43.224+0000", "modified": "2019-06-11T14:16:43.224+0000", "resources": [{"id": 816, "mirId": "MIR:00100358", "urlPattern": "http://genome.crg.es/datasets/abs2005/entries/{$id}.html", "name": "ABS at IMIM", "description": "ABS at IMIM", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "A0014", "resourceHomeUrl": "http://genome.crg.es/datasets/abs2005/", "institution": {"id": 815, "name": "Institut Municipal d'Investigació Mèdica, Barcelona", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "ES", "countryName": "Spain"}}, "location": {"countryCode": "ES", "countryName": "Spain"}, "deprecated": false, "deprecationDate": null}], "sampleId": "A0014", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 817, "prefix": "apd", "mirId": "MIR:00000278", "name": "APD", "pattern": "^\\d{5}$", "description": "The antimicrobial peptide database (APD) provides information on anticancer, antiviral, antifungal and antibacterial peptides.", "created": "2019-06-11T14:16:43.451+0000", "modified": "2019-06-11T14:16:43.451+0000", "resources": [{"id": 819, "mirId": "MIR:00100359", "urlPattern": "http://aps.unmc.edu/AP/database/query_output.php?ID={$id}", "name": "APD at Nebraska", "description": "APD at Nebraska", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "01001", "resourceHomeUrl": "http://aps.unmc.edu/AP/", "institution": {"id": 818, "name": "Eppley Institute for Research in Cancer and Allied Diseases, University of Nebraska Medical Center, Omaha", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "01001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 820, "prefix": "chemdb", "mirId": "MIR:00000279", "name": "ChemDB", "pattern": "^\\d+$", "description": "ChemDB is a chemical database containing commercially available small molecules, important for use as synthetic building blocks, probes in systems biology and as leads for the discovery of drugs and other useful compounds.", "created": "2019-06-11T14:16:43.696+0000", "modified": "2019-06-11T14:16:43.696+0000", "resources": [{"id": 822, "mirId": "MIR:00100360", "urlPattern": "http://cdb.ics.uci.edu/cgibin/ChemicalDetailWeb.py?chemical_id={$id}", "name": "ChemDB at UC Irvine", "description": "ChemDB at UC Irvine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "3966782", "resourceHomeUrl": "http://cdb.ics.uci.edu/", "institution": {"id": 821, "name": "University of California, Irvine", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3966782", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 823, "prefix": "dpv", "mirId": "MIR:00000280", "name": "DPV", "pattern": "^\\d+$", "description": "Description of Plant Viruses (DPV) provides information about viruses, viroids and satellites of plants, fungi and protozoa. It provides taxonomic information, including brief descriptions of each family and genus, and classified lists of virus sequences. The database also holds detailed information for all sequences of viruses, viroids and satellites of plants, fungi and protozoa that are complete or that contain at least one complete gene.", "created": "2019-06-11T14:16:43.916+0000", "modified": "2019-06-11T14:16:43.916+0000", "resources": [{"id": 825, "mirId": "MIR:00100361", "urlPattern": "http://www.dpvweb.net/dpv/showdpv.php?dpvno={$id}", "name": "DPV at Rothamsted", "description": "DPV at Rothamsted", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "100", "resourceHomeUrl": "http://www.dpvweb.net/", "institution": {"id": 824, "name": "Plant-Pathogen Interactions Division, Wheat Pathogenesis Programme, Rothamsted Research Harpenden, Hertfordshire", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 826, "prefix": "iuphar.receptor", "mirId": "MIR:00000281", "name": "IUPHAR receptor", "pattern": "^\\d+$", "description": "The IUPHAR Compendium details the molecular, biophysical and pharmacological properties of identified mammalian sodium, calcium and potassium channels, as well as the related cyclic nucleotide-modulated ion channels and transient receptor potential channels. It includes information on nomenclature systems, and on inter and intra-species molecular structure variation. This collection references individual receptors or subunits.", "created": "2019-06-11T14:16:44.139+0000", "modified": "2019-06-11T14:16:44.139+0000", "resources": [{"id": 828, "mirId": "MIR:00100362", "urlPattern": "http://www.guidetopharmacology.org/GRAC/ObjectDisplayForward?objectId={$id}", "name": "IUPHAR Receptor at University of Edinburgh", "description": "IUPHAR Receptor at University of Edinburgh", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "101", "resourceHomeUrl": "http://www.guidetopharmacology.org/targets.jsp", "institution": {"id": 827, "name": "Centre for Cardiovascular Science, University of Edinburgh, Edinburgh", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "101", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 829, "prefix": "aceview.worm", "mirId": "MIR:00000282", "name": "Aceview Worm", "pattern": "^[a-z0-9-]+$", "description": "AceView provides a curated sequence representation of all public mRNA sequences (mRNAs from GenBank or RefSeq, and single pass cDNA sequences from dbEST and Trace). These are aligned on the genome and clustered into a minimal number of alternative transcript variants and grouped into genes. In addition, alternative features such as promoters, and expression in tissues is recorded. This collection references C. elegans genes and expression.", "created": "2019-06-11T14:16:44.374+0000", "modified": "2019-06-11T14:16:44.374+0000", "resources": [{"id": 830, "mirId": "MIR:00100363", "urlPattern": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/av.cgi?db=worm&c=Gene&l={$id}", "name": "AceView Worm at NCBI", "description": "AceView Worm at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "aap-1", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/IEB/Research/Acembly/index.html?worm", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "aap-1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 800, "prefix": "massbank", "mirId": "MIR:00000273", "name": "MassBank", "pattern": "^MSBNK-[0-9a-zA-Z_]+-[A-Z0-9_]+$", "description": "MassBank is a federated database of reference spectra from different instruments, including high-resolution mass spectra of small metabolites (<3000 Da).", "created": "2019-06-11T14:16:42.071+0000", "modified": "2022-12-13T16:15:18.652+0000", "resources": [{"id": 804, "mirId": "MIR:00100666", "urlPattern": "https://massbank.eu/MassBank/RecordDisplay?id={$id}", "name": "MassBank in Europe", "description": "MassBank in Europe", "official": false, "providerCode": "massbankeu", "sampleId": "PB000166", "resourceHomeUrl": "https://massbank.eu/", "institution": {"id": 803, "name": "NORMAN Network and The MassBank Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}, {"id": 802, "mirId": "MIR:00100353", "urlPattern": "https://massbank.jp/RecordDisplay?id={$id}", "name": "MassBank in Japan", "description": "MassBank in Japan", "official": true, "providerCode": "massbankjp", "sampleId": "PB000166", "resourceHomeUrl": "http://www.massbank.jp", "institution": {"id": 801, "name": "The MassBank Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MSBNK-IPB_Halle-PB000166", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 842, "prefix": "imgt.ligm", "mirId": "MIR:00000287", "name": "IMGT LIGM", "pattern": "^M\\d+$", "description": "IMGT, the international ImMunoGeneTics project, is a collection of high-quality integrated databases specialising in Immunoglobulins, T cell receptors and the Major Histocompatibility Complex (MHC) of all vertebrate species. IMGT/LIGM is a comprehensive database of fully annotated sequences of Immunoglobulins and T cell receptors from human and other vertebrates.", "created": "2019-06-11T14:16:45.469+0000", "modified": "2019-06-11T14:16:45.469+0000", "resources": [{"id": 844, "mirId": "MIR:00100369", "urlPattern": "http://genius.embnet.dkfz-heidelberg.de/menu/cgi-bin/srs7.1.3.1/wgetz?-id+4ktAl1fNMTA+-e+[IMGT:'{$id}']", "name": "IMGT LIGM through DKFZ (SRS)", "description": "IMGT LIGM through DKFZ (SRS)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "M94112", "resourceHomeUrl": "http://genius.embnet.dkfz-heidelberg.de/", "institution": {"id": 843, "name": "DKFZ TP3, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}, {"id": 846, "mirId": "MIR:00100428", "urlPattern": "http://www.imgt.org/ligmdb/view?id={$id}", "name": "IMGT LIGM at CNRS", "description": "IMGT LIGM at CNRS", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "M94112", "resourceHomeUrl": "http://www.imgt.org/", "institution": {"id": 845, "name": "CNRS, Montpellier University, Montpellier", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "M94112", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 847, "prefix": "worfdb", "mirId": "MIR:00000288", "name": "Worfdb", "pattern": "^\\w+(\\.\\d+)?", "description": "WOrfDB (Worm ORFeome DataBase) contains data from the cloning of complete set of predicted protein-encoding Open Reading Frames (ORFs) of Caenorhabditis elegans. This collection describes experimentally defined transcript structures of unverified genes through RACE (Rapid Amplification of cDNA Ends).", "created": "2019-06-11T14:16:45.846+0000", "modified": "2019-06-11T14:16:45.846+0000", "resources": [{"id": 849, "mirId": "MIR:00100370", "urlPattern": "http://worfdb.dfci.harvard.edu/index.php?search_type=name&page=showresultrc&race_query={$id}", "name": "Worm Orf DB at Harvard", "description": "Worm Orf DB at Harvard", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "T01B6.1", "resourceHomeUrl": "http://worfdb.dfci.harvard.edu/", "institution": {"id": 848, "name": "Center for Cancer Systems Biology, Harvard Medical School, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "T01B6.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 850, "prefix": "nextdb", "mirId": "MIR:00000289", "name": "NEXTDB", "pattern": "^[A-Za-z0-9]+$", "description": "NextDb is a database that provides information on the expression pattern map of the 100Mb genome of the nematode Caenorhabditis elegans. This was done through EST analysis and systematic whole mount in situ hybridization. Information available includes 5' and 3' ESTs, and in-situ hybridization images of 11,237 cDNA clones.", "created": "2019-06-11T14:16:46.065+0000", "modified": "2019-06-11T14:16:46.065+0000", "resources": [{"id": 852, "mirId": "MIR:00100371", "urlPattern": "http://nematode.lab.nig.ac.jp/db2/ShowCloneInfo.php?clone={$id}", "name": "NEXTDB at Shizuoka", "description": "NEXTDB at Shizuoka", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "6b1", "resourceHomeUrl": "http://nematode.lab.nig.ac.jp/", "institution": {"id": 851, "name": "National Institute of Genetics, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "6b1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 853, "prefix": "soybase", "mirId": "MIR:00000291", "name": "SoyBase", "pattern": "^\\w+(\\-)?\\w+(\\-)?\\w+$", "description": "SoyBase is a repository for curated genetics, genomics and related data resources for soybean.", "created": "2019-06-11T14:16:46.310+0000", "modified": "2019-06-11T14:16:46.310+0000", "resources": [{"id": 855, "mirId": "MIR:00100373", "urlPattern": "http://www.soybase.org/sbt/search/search_results.php?category=SNP&search_term={$id}", "name": "SoyBase at Iowa State University", "description": "SoyBase at Iowa State University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BARC-013845-01256", "resourceHomeUrl": "http://soybase.org/", "institution": {"id": 854, "name": "USDA-ARS-CICGRU, Iowa State University, Iowa", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BARC-013845-01256", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 856, "prefix": "hamap", "mirId": "MIR:00000292", "name": "HAMAP", "pattern": "^MF_\\d+$", "description": "HAMAP is a system that identifies and semi-automatically annotates proteins that are part of well-conserved and orthologous microbial families or subfamilies. These are used to build rules which are used to propagate annotations to member bacterial, archaeal and plastid-encoded protein entries.", "created": "2019-06-11T14:16:46.532+0000", "modified": "2019-06-11T14:16:46.532+0000", "resources": [{"id": 857, "mirId": "MIR:00100374", "urlPattern": "https://hamap.expasy.org/unirule/{$id}", "name": "HAPMAP at Swiss Institute of Bioinformatics", "description": "HAPMAP at Swiss Institute of Bioinformatics", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MF_01400", "resourceHomeUrl": "https://hamap.expasy.org/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MF_01400", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 858, "prefix": "rouge", "mirId": "MIR:00000293", "name": "Rouge", "pattern": "^m\\w+$", "description": "The Rouge protein database contains results from sequence analysis of novel large (>4 kb) cDNAs identified in the Kazusa cDNA sequencing project.", "created": "2019-06-11T14:16:46.721+0000", "modified": "2019-06-11T14:16:46.721+0000", "resources": [{"id": 860, "mirId": "MIR:00100375", "urlPattern": "http://www.kazusa.or.jp/rouge/gfpage/{$id}/", "name": "Rouge at Kazusa DNA Research Institute", "description": "Rouge at Kazusa DNA Research Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "mKIAA4200", "resourceHomeUrl": "http://www.kazusa.or.jp/rouge/", "institution": {"id": 859, "name": "Kazusa DNA Research Institute, Chiba", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "mKIAA4200", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 861, "prefix": "arrayexpress.platform", "mirId": "MIR:00000294", "name": "ArrayExpress Platform", "pattern": "^[AEP]-\\w{4}-\\d+$", "description": "ArrayExpress is a public repository for microarray data, which is aimed at storing MIAME-compliant data in accordance with Microarray Gene Expression Data (MGED) recommendations.This collection references the specific platforms used in the generation of experimental results.", "created": "2019-06-11T14:16:46.944+0000", "modified": "2019-06-11T14:16:46.944+0000", "resources": [{"id": 862, "mirId": "MIR:00100376", "urlPattern": "https://www.ebi.ac.uk/arrayexpress/arrays/{$id}", "name": "ArrayExpress Platform at EBI", "description": "ArrayExpress Platform at EBI", "official": false, "providerCode": "ebi", "sampleId": "A-GEOD-50", "resourceHomeUrl": "https://www.ebi.ac.uk/arrayexpress/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "A-GEOD-50", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 863, "prefix": "cgsc", "mirId": "MIR:00000295", "name": "CGSC Strain", "pattern": "^\\d+$", "description": "The CGSC Database of E. coli genetic information includes genotypes and reference information for the strains in the CGSC collection, the names, synonyms, properties, and map position for genes, gene product information, and information on specific mutations and references to primary literature.", "created": "2019-06-11T14:16:47.138+0000", "modified": "2019-06-11T14:16:47.138+0000", "resources": [{"id": 865, "mirId": "MIR:00100377", "urlPattern": "http://cgsc.biology.yale.edu/Site.php?ID={$id}", "name": "CGSC at Yale university", "description": "CGSC at Yale university", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "74", "resourceHomeUrl": "http://cgsc.biology.yale.edu/index.php", "institution": {"id": 864, "name": "Dept. of Molecular, Cellular, and Developmental Biology, Yale University, Conneticut", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "74", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 866, "prefix": "dragondb.dna", "mirId": "MIR:00000297", "name": "DragonDB DNA", "pattern": "^\\d\\w+$", "description": "DragonDB is a genetic and genomic database for Antirrhinum majus (Snapdragon). This collection refers to DNA sequence information.", "created": "2019-06-11T14:16:47.375+0000", "modified": "2019-06-11T14:16:47.375+0000", "resources": [{"id": 868, "mirId": "MIR:00100379", "urlPattern": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name={$id};class=DNA", "name": "DragonDB DNA at University of British Columbia", "description": "DragonDB DNA at University of British Columbia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "3hB06", "resourceHomeUrl": "http://www.antirrhinum.net/", "institution": {"id": 867, "name": "University of British Columbia, Vancouver", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3hB06", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 869, "prefix": "dragondb.protein", "mirId": "MIR:00000298", "name": "DragonDB Protein", "pattern": "^\\w+$", "description": "DragonDB is a genetic and genomic database for Antirrhinum majus (Snapdragon). This collection refers to protein sequence information.", "created": "2019-06-11T14:16:47.607+0000", "modified": "2019-06-11T14:16:47.607+0000", "resources": [{"id": 870, "mirId": "MIR:00100380", "urlPattern": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name={$id};class=Peptide", "name": "DragonDB Protein at University of British Columbia", "description": "DragonDB Protein at University of British Columbia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AMDEFA", "resourceHomeUrl": "http://www.antirrhinum.net/", "institution": {"id": 867, "name": "University of British Columbia, Vancouver", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AMDEFA", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 871, "prefix": "dragondb.locus", "mirId": "MIR:00000299", "name": "DragonDB Locus", "pattern": "^\\w+$", "description": "DragonDB is a genetic and genomic database for Antirrhinum majus (Snapdragon). This collection refers to Locus information.", "created": "2019-06-11T14:16:47.798+0000", "modified": "2019-06-11T14:16:47.798+0000", "resources": [{"id": 872, "mirId": "MIR:00100381", "urlPattern": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name={$id}&class=Locus", "name": "DragonDB Locus at University of British Columbia", "description": "DragonDB Locus at University of British Columbia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "DEF", "resourceHomeUrl": "http://www.antirrhinum.net/", "institution": {"id": 867, "name": "University of British Columbia, Vancouver", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DEF", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 873, "prefix": "dragondb.allele", "mirId": "MIR:00000300", "name": "DragonDB Allele", "pattern": "^\\w+$", "description": "DragonDB is a genetic and genomic database for Antirrhinum majus (Snapdragon). This collection refers to allele information.", "created": "2019-06-11T14:16:47.981+0000", "modified": "2019-06-11T14:16:47.981+0000", "resources": [{"id": 874, "mirId": "MIR:00100382", "urlPattern": "http://antirrhinum.net/cgi-bin/ace/generic/tree/DragonDB?name={$id}&class=Allele", "name": "DragonDB Allele at University of British Columbia", "description": "DragonDB Allele at University of British Columbia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "cho", "resourceHomeUrl": "http://www.antirrhinum.net/", "institution": {"id": 867, "name": "University of British Columbia, Vancouver", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "cho", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 875, "prefix": "issn", "mirId": "MIR:00000301", "name": "ISSN", "pattern": "^\\d{4}-\\d{3}[\\dX]$", "description": "The International Standard Serial Number (ISSN) is a unique eight-digit number used to identify a print or electronic periodical publication, rather than individual articles or books.", "created": "2019-06-11T14:16:48.189+0000", "modified": "2019-06-11T14:16:48.189+0000", "resources": [{"id": 877, "mirId": "MIR:00100383", "urlPattern": "https://catalog.loc.gov/vwebv/search?searchCode=STNO&searchArg={$id}&searchType=1&recCount=25", "name": "ISSN at Library of Congress", "description": "ISSN at Library of Congress", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0745-4570", "resourceHomeUrl": "http://catalog.loc.gov/webvoy.htm", "institution": {"id": 876, "name": "Library of Congress Online Catalogue, Washington DC", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 879, "mirId": "MIR:00100924", "urlPattern": "https://portal.issn.org/resource/ISSN/{$id}", "name": "ISSN Portal", "description": "ISSN Portal", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "1776-3045", "resourceHomeUrl": "https://portal.issn.org", "institution": {"id": 878, "name": "ISSN International Centre, Paris", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0745-4570", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 880, "prefix": "merops.family", "mirId": "MIR:00000302", "name": "MEROPS Family", "pattern": "^[SCTAGMNU]\\d+$", "description": "The MEROPS database is an information resource for peptidases (also termed proteases, proteinases and proteolytic enzymes) and the proteins that inhibit them. These are hierarchically classified and assigned to a Family on the basis of statistically significant similarities in amino acid sequence. Families thought to be homologous are grouped together in a Clan. This collection references peptidase families.", "created": "2019-06-11T14:16:48.579+0000", "modified": "2019-06-11T14:16:48.579+0000", "resources": [{"id": 881, "mirId": "MIR:00100384", "urlPattern": "http://merops.sanger.ac.uk/cgi-bin/famsum?family={$id}", "name": "Merops Family at Sanger Institute", "description": "Merops Family at Sanger Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "S1", "resourceHomeUrl": "http://merops.sanger.ac.uk/index.htm", "institution": {"id": 482, "name": "Wellcome Trust Sanger Institute, Hinxton", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "S1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 882, "prefix": "mo", "mirId": "MIR:00000303", "name": "MGED Ontology", "pattern": "^\\w+$", "description": "The MGED Ontology (MO) provides terms for annotating all aspects of a microarray experiment from the design of the experiment and array layout, through to the preparation of the biological sample and the protocols used to hybridize the RNA and analyze the data.", "created": "2019-06-11T14:16:48.772+0000", "modified": "2019-06-11T14:16:48.772+0000", "resources": [{"id": 883, "mirId": "MIR:00100385", "urlPattern": "http://purl.bioontology.org/ontology/MO/{$id}", "name": "MGED Ontology at BioPortal", "description": "MGED Ontology at BioPortal", "official": false, "providerCode": "bptl", "sampleId": "ArrayGroup", "resourceHomeUrl": "http://bioportal.bioontology.org/", "institution": {"id": 571, "name": "National Center for Biomedical Ontology, Stanford University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 885, "mirId": "MIR:00100568", "urlPattern": "https://mged.sourceforge.net/ontologies/MGEDontology.php#{$id}", "name": "MGED Ontology at SourceForge", "description": "MGED Ontology at SourceForge", "official": false, "providerCode": "ebi", "sampleId": "ArrayGroup", "resourceHomeUrl": "https://mged.sourceforge.net/ontologies/MGEDontology.php", "institution": {"id": 884, "name": "(Ontology Working Group), European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ArrayGroup", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 886, "prefix": "nasc", "mirId": "MIR:00000304", "name": "NASC code", "pattern": "^(\\w+)?\\d+$", "description": "The Nottingham Arabidopsis Stock Centre (NASC) provides seed and information resources to the International Arabidopsis Genome Programme and the wider research community.", "created": "2019-06-11T14:16:49.131+0000", "modified": "2019-06-11T14:16:49.131+0000", "resources": [{"id": 888, "mirId": "MIR:00100386", "urlPattern": "http://arabidopsis.info/StockInfo?NASC_id={$id}", "name": "NASC at University of Nottingham", "description": "NASC at University of Nottingham", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "N1899", "resourceHomeUrl": "http://arabidopsis.info/", "institution": {"id": 887, "name": "The Nottingham Arabidopsis Stock Centre, University of Nottingham", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "N1899", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 889, "prefix": "niaest", "mirId": "MIR:00000305", "name": "NIAEST", "pattern": "^\\w\\d{4}\\w\\d{2}(\\-[35])?$", "description": "A catalog of mouse genes expressed in early embryos, embryonic and adult stem cells, including 250000 ESTs, was assembled by the NIA (National Institute on Aging) assembled.This collection represents the name and sequence from individual cDNA clones.", "created": "2019-06-11T14:16:49.376+0000", "modified": "2019-06-11T14:16:49.376+0000", "resources": [{"id": 891, "mirId": "MIR:00100387", "urlPattern": "http://lgsun.grc.nia.nih.gov/cgi-bin/pro3?sname1={$id}", "name": "NIAEST at National Institute on Aging", "description": "NIAEST at National Institute on Aging", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "J0705A10", "resourceHomeUrl": "http://lgsun.grc.nia.nih.gov/cDNA/", "institution": {"id": 890, "name": "National Institute on Aging, NIH", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "J0705A10", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 892, "prefix": "pazar", "mirId": "MIR:00000306", "name": "Pazar Transcription Factor", "pattern": "^TF\\w+$", "description": "The PAZAR database unites independently created and maintained data collections of transcription factor and regulatory sequence annotation. It provides information on the sequence and target of individual transcription factors.", "created": "2019-06-11T14:16:49.605+0000", "modified": "2019-06-11T14:16:49.605+0000", "resources": [{"id": 894, "mirId": "MIR:00100388", "urlPattern": "http://www.pazar.info/cgi-bin/tf_search.cgi?geneID={$id}", "name": "Pazar Transcription Factor at University of British Columbia", "description": "Pazar Transcription Factor at University of British Columbia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TF0001053", "resourceHomeUrl": "http://www.pazar.info/", "institution": {"id": 893, "name": "Centre for Molecular Medicine and Therapeutics, University of British Columbia, Vancouver", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TF0001053", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 895, "prefix": "po", "mirId": "MIR:00000307", "name": "Plant Ontology", "pattern": "^PO:\\d+$", "description": "The Plant Ontology is a structured vocabulary and database resource that links plant anatomy, morphology and growth and development to plant genomics data.", "created": "2019-06-11T14:16:49.830+0000", "modified": "2019-06-11T14:16:49.830+0000", "resources": [{"id": 897, "mirId": "MIR:00100389", "urlPattern": "http://www.plantontology.org/amigo/go.cgi?view=details&query=PO:{$id}", "name": "Plant Ontology through Amigo", "description": "Plant Ontology through Amigo", "official": false, "providerCode": "amigo", "sampleId": "0009089", "resourceHomeUrl": "http://www.plantontology.org/", "institution": {"id": 896, "name": "Cold Spring Harbor Laboratory, Cold Spring Harbor, New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 898, "mirId": "MIR:00100390", "urlPattern": "http://purl.bioontology.org/ontology/PO/PO:{$id}", "name": "Plant Ontology through BioPortal", "description": "Plant Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0009089", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 899, "mirId": "MIR:00100676", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/po/terms?obo_id=PO:{$id}", "name": "Plant Ontology through OLS", "description": "Plant Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0009089", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/po", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0009089", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 900, "prefix": "rnamods", "mirId": "MIR:00000308", "name": "RNA Modification Database", "pattern": "^\\d{3}$", "description": "The RNA modification database provides a comprehensive listing of post-transcriptionally modified nucleosides from RNA. The database consists of all RNA-derived ribonucleosides of known structure, including those from established sequence positions, as well as those detected or characterized from hydrolysates of RNA.", "created": "2019-06-11T14:16:50.326+0000", "modified": "2019-06-11T14:16:50.326+0000", "resources": [{"id": 902, "mirId": "MIR:00100391", "urlPattern": "http://mods.rna.albany.edu/mods/modifications/view/{$id}", "name": "RNA Modification Database at University of Utah", "description": "RNA Modification Database at University of Utah", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "101", "resourceHomeUrl": "http://rna-mdb.cas.albany.edu/RNAmods/rnaover.htm", "institution": {"id": 901, "name": "Department of Medicinal Chemistry and Department of Biochemistry, University of Utah, Salt Lake City, Utah", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "101", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 903, "prefix": "treebase", "mirId": "MIR:00000312", "name": "TreeBASE", "pattern": "^TB[1,2]?:[A-Z][a-z]?\\d+$", "description": "TreeBASE is a relational database designed to manage and explore information on phylogenetic relationships. It includes phylogenetic trees and data matrices, together with information about the relevant publication, taxa, morphological and sequence-based characters, and published analyses. Data in TreeBASE are exposed to the public if they are used in a publication that is in press or published in a peer-reviewed scientific journal, etc.", "created": "2019-06-11T14:16:50.556+0000", "modified": "2019-06-11T14:16:50.556+0000", "resources": [{"id": 905, "mirId": "MIR:00100395", "urlPattern": "http://purl.org/phylo/treebase/phylows/study/{$id}?format=html", "name": "TreeBASE (hosted at National Evolutionary Synthesis Center)", "description": "TreeBASE (hosted at National Evolutionary Synthesis Center)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TB2:S1000", "resourceHomeUrl": "http://treebase.org/", "institution": {"id": 904, "name": "Phyloinformatics Research Foundation, Durham, North Carolina", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TB2:S1000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1235, "prefix": "cst.ab", "mirId": "MIR:00000430", "name": "Cell Signaling Technology Antibody", "pattern": "^\\d+$", "description": "Cell Signaling Technology is a commercial organisation which provides a pathway portal to showcase their phospho-antibody products. This collection references antibody products.", "created": "2019-06-11T14:17:18.559+0000", "modified": "2019-06-11T14:17:18.559+0000", "resources": [{"id": 1236, "mirId": "MIR:00100553", "urlPattern": "http://www.cellsignal.com/products/{$id}.html", "name": "CST Antibody at Cell Signaling Technology", "description": "CST Antibody at Cell Signaling Technology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "3305", "resourceHomeUrl": "http://www.cellsignal.com/catalog/index.html", "institution": {"id": 1233, "name": "Cell Signaling Technology, Inc., Danvers, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3305", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 906, "prefix": "tgd", "mirId": "MIR:00000313", "name": "Tetrahymena Genome Database", "pattern": "^TTHERM\\_\\d+$", "description": "The Tetrahymena Genome Database (TGD) Wiki is a database of information about the Tetrahymena thermophila genome sequence. It provides information curated from the literature about each published gene, including a standardized gene name, a link to the genomic locus, gene product annotations utilizing the Gene Ontology, and links to published literature.", "created": "2019-06-11T14:16:50.779+0000", "modified": "2019-06-11T14:16:50.779+0000", "resources": [{"id": 907, "mirId": "MIR:00100396", "urlPattern": "http://ciliate.org/index.php/feature/details/{$id}", "name": "TGD at Stanford University", "description": "TGD at Stanford University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TTHERM_00648910", "resourceHomeUrl": "http://ciliate.org/index.php/", "institution": {"id": 298, "name": "Department of Genetics, School of Medicine, Stanford University, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TTHERM_00648910", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 908, "prefix": "tigrfam", "mirId": "MIR:00000315", "name": "TIGRFAMS", "pattern": "^TIGR\\d+$", "description": "TIGRFAMs is a resource consisting of curated multiple sequence alignments, Hidden Markov Models (HMMs) for protein sequence classification, and associated information designed to support automated annotation of (mostly prokaryotic) proteins.", "created": "2019-06-11T14:16:50.975+0000", "modified": "2019-06-11T14:16:50.975+0000", "resources": [{"id": 910, "mirId": "MIR:00100398", "urlPattern": "http://www.jcvi.org/cgi-bin/tigrfams/HmmReportPage.cgi?acc={$id}", "name": "TIGRFAM at JCVI", "description": "TIGRFAM at JCVI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TIGR00010", "resourceHomeUrl": "http://www.jcvi.org/cgi-bin/tigrfams/Listing.cgi", "institution": {"id": 909, "name": "The Institute for Genomic Research, Rockville, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TIGR00010", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 911, "prefix": "atfdb.family", "mirId": "MIR:00000316", "name": "Animal TFDB Family", "pattern": "^\\w+$", "description": "The Animal Transcription Factor DataBase (AnimalTFDB) classifies TFs in sequenced animal genomes, as well as collecting the transcription co-factors and chromatin remodeling factors of those genomes. This collections refers to transcription factor families, and the species in which they are found.", "created": "2019-06-11T14:16:51.241+0000", "modified": "2019-06-11T14:16:51.241+0000", "resources": [{"id": 913, "mirId": "MIR:00100399", "urlPattern": "http://www.bioguo.org/AnimalTFDB/family.php?fam={$id}", "name": "Animal TFDB at Hubei Bioinformatics & Molecular Imaging Key Laboratory", "description": "Animal TFDB at Hubei Bioinformatics & Molecular Imaging Key Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CUT", "resourceHomeUrl": "http://www.bioguo.org/AnimalTFDB/family_index.php", "institution": {"id": 912, "name": "Hubei Bioinformatics and Molecular Imaging Key Laboratory, Wuhan", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CUT", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 914, "prefix": "iuphar.family", "mirId": "MIR:00000317", "name": "IUPHAR family", "pattern": "^\\d+$", "description": "The IUPHAR Compendium details the molecular, biophysical and pharmacological properties of identified mammalian sodium, calcium and potassium channels, as well as the related cyclic nucleotide-modulated ion channels and the recently described transient receptor potential channels. It includes information on nomenclature systems, and on inter and intra-species molecular structure variation. This collection references families of receptors or subunits.", "created": "2019-06-11T14:16:51.481+0000", "modified": "2019-06-11T14:16:51.481+0000", "resources": [{"id": 916, "mirId": "MIR:00100708", "urlPattern": "http://www.guidetopharmacology.org/GRAC/FamilyDisplayForward?familyId={$id}", "name": "The IUPHAR/BPS Guide to PHARMACOLOGY", "description": "The IUPHAR/BPS Guide to PHARMACOLOGY", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "78", "resourceHomeUrl": "http://www.guidetopharmacology.org/", "institution": {"id": 915, "name": "International Union of Pharmacology, Edinburgh", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "78", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 917, "prefix": "dbg2introns", "mirId": "MIR:00000318", "name": "DBG2 Introns", "pattern": "^\\w{1,2}\\.(\\w{1,2}\\.)?[A-Za-z0-9]+$", "description": "The Database for Bacterial Group II Introns provides a catalogue of full-length, non-redundant group II introns present in bacterial DNA sequences in GenBank.", "created": "2019-06-11T14:16:51.708+0000", "modified": "2019-06-11T14:16:51.708+0000", "resources": [{"id": 919, "mirId": "MIR:00100401", "urlPattern": "http://webapps2.ucalgary.ca/~groupii/cgi-bin/intron.cgi?name={$id}", "name": "Bacterial Group II Introns at University of Calgary", "description": "Bacterial Group II Introns at University of Calgary", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Cu.me.I1", "resourceHomeUrl": "http://webapps2.ucalgary.ca/~groupii/", "institution": {"id": 568, "name": "University of Calgary", "homeUrl": "https://www.ucalgary.ca/", "description": "The University of Calgary is one of Canada\u2019s top comprehensive research universities, combining the best of university tradition with the city of Calgary\u2019s vibrant energy and diversity.", "rorId": "https://ror.org/03yjb2x39", "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Cu.me.I1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 920, "prefix": "sdbs", "mirId": "MIR:00000319", "name": "Spectral Database for Organic Compounds", "pattern": "\\d+$", "description": "The Spectral Database for Organic Compounds (SDBS) is an integrated spectral database system for organic compounds. It provides access to 6 different types of spectra for each compound, including Mass spectrum (EI-MS), a Fourier transform infrared spectrum (FT-IR), and NMR spectra.", "created": "2019-06-11T14:16:51.940+0000", "modified": "2019-06-11T14:16:51.940+0000", "resources": [{"id": 922, "mirId": "MIR:00100402", "urlPattern": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/cre_frame_disp.cgi?sdbsno={$id}", "name": "SDBS at AIST", "description": "SDBS at AIST", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4544", "resourceHomeUrl": "http://riodb01.ibase.aist.go.jp/sdbs/cgi-bin/direct_frame_top.cgi", "institution": {"id": 921, "name": "National Institute of Advanced Industrial Science and Technology (AIST)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4544", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 923, "prefix": "vbase2", "mirId": "MIR:00000320", "name": "Vbase2", "pattern": "^\\w+$", "description": "The database VBASE2 provides germ-line sequences of human and mouse immunoglobulin variable (V) genes.", "created": "2019-06-11T14:16:52.167+0000", "modified": "2019-06-11T14:16:52.167+0000", "resources": [{"id": 925, "mirId": "MIR:00100403", "urlPattern": "http://www.vbase2.org/vgene.php?id={$id}", "name": "Vbase2 at German Research Centre for Biotechnology", "description": "Vbase2 at German Research Centre for Biotechnology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "humIGHV025", "resourceHomeUrl": "http://www.vbase2.org/vbase2.php", "institution": {"id": 924, "name": "Department of Experimental Immunology, German Research Centre for Biotechnology, Braunschweig", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "humIGHV025", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 926, "prefix": "spike.map", "mirId": "MIR:00000321", "name": "SPIKE Map", "pattern": "^spike\\d{5}$", "description": "SPIKE (Signaling Pathways Integrated Knowledge Engine) is a repository that can store, organise and allow retrieval of pathway information in a way that will be useful for the research community. The database currently focuses primarily on pathways describing DNA damage response, cell cycle, programmed cell death and hearing related pathways. Pathways are regularly updated, and additional pathways are gradually added. The complete database and the individual maps are freely exportable in several formats. This collection references pathway maps.", "created": "2019-06-11T14:16:52.396+0000", "modified": "2019-06-11T14:16:52.396+0000", "resources": [{"id": 928, "mirId": "MIR:00100404", "urlPattern": "http://www.cs.tau.ac.il/~spike/maps/{$id}.html", "name": "SPIKE database at Tel Aviv University", "description": "SPIKE database at Tel Aviv University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "spike00001", "resourceHomeUrl": "http://www.cs.tau.ac.il/~spike/", "institution": {"id": 927, "name": "School of Computer Sciences and School of Medicine, Tel Aviv University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IL", "countryName": "Israel"}}, "location": {"countryCode": "IL", "countryName": "Israel"}, "deprecated": false, "deprecationDate": null}], "sampleId": "spike00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 929, "prefix": "metlin", "mirId": "MIR:00000322", "name": "METLIN", "pattern": "^\\d{4}$", "description": "The METLIN (Metabolite and Tandem Mass Spectrometry) Database is a repository of metabolite information as well as tandem mass spectrometry data, providing public access to its comprehensive MS and MS/MS metabolite data. An annotated list of known metabolites and their mass, chemical formula, and structure are available, with each metabolite linked to external resources for further reference and inquiry.", "created": "2019-06-11T14:16:52.640+0000", "modified": "2019-06-11T14:16:52.640+0000", "resources": [{"id": 931, "mirId": "MIR:00100406", "urlPattern": "http://metlin.scripps.edu/metabo_info.php?molid={$id}", "name": "METLIN at Scripps Center, Molecular Biology and Center for Mass Spectrometry, La Jolla", "description": "METLIN at Scripps Center, Molecular Biology and Center for Mass Spectrometry, La Jolla", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1455", "resourceHomeUrl": "http://masspec.scripps.edu/", "institution": {"id": 930, "name": "Scripps Research Institute, San Diego", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1455", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 932, "prefix": "genecards", "mirId": "MIR:00000323", "name": "GeneCards", "pattern": "^[A-Za-z-0-9_]+(\\@)?$", "description": "The GeneCards human gene database stores gene related transcriptomic, genetic, proteomic, functional and disease information. It uses standard nomenclature and approved gene symbols. GeneCards presents a complete summary for each human gene.", "created": "2019-06-11T14:16:52.858+0000", "modified": "2019-06-11T14:16:52.858+0000", "resources": [{"id": 934, "mirId": "MIR:00100407", "urlPattern": "https://www.genecards.org/cgi-bin/carddisp.pl?gene={$id}", "name": "GeneCards at Weizmann Institute", "description": "GeneCards at Weizmann Institute", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "ABL1", "resourceHomeUrl": "http://www.genecards.org/", "institution": {"id": 933, "name": "Department of Molecular Genetics, Weizmann Institute of Science, Rehovot", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IL", "countryName": "Israel"}}, "location": {"countryCode": "IL", "countryName": "Israel"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ABL1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 935, "prefix": "mmrrc", "mirId": "MIR:00000324", "name": "MMRRC", "pattern": "^\\d+$", "description": "The MMRRC database is a repository of available mouse stocks and embryonic stem cell line collections.", "created": "2019-06-11T14:16:53.082+0000", "modified": "2019-06-11T14:16:53.082+0000", "resources": [{"id": 937, "mirId": "MIR:00100414", "urlPattern": "http://www.mmrrc.org/catalog/getSDS.php?mmrrc_id={$id}", "name": "MMRRC at University of North Carolina", "description": "MMRRC at University of North Carolina", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "70", "resourceHomeUrl": "http://www.mmrrc.org/", "institution": {"id": 936, "name": "University of North Carolina", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "70", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 938, "prefix": "umbbd.reaction", "mirId": "MIR:00000325", "name": "UM-BBD Reaction", "pattern": "^r\\d+$", "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the UM-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. This collection refers to reaction information.", "created": "2019-06-11T14:16:53.335+0000", "modified": "2019-06-11T14:16:53.335+0000", "resources": [{"id": 939, "mirId": "MIR:00100416", "urlPattern": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=r&reacID={$id}", "name": "Biocatalysis/Biodegradation Database Mirror (Reaction) at ETH Zurich", "description": "Biocatalysis/Biodegradation Database Mirror (Reaction) at ETH Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "r0001", "resourceHomeUrl": "http://umbbd.ethz.ch/", "institution": {"id": 812, "name": "ETH, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "r0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 940, "prefix": "umbbd.enzyme", "mirId": "MIR:00000326", "name": "UM-BBD Enzyme", "pattern": "^e\\d+$", "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the UM-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. This collection refers to enzyme information.", "created": "2019-06-11T14:16:53.546+0000", "modified": "2019-06-11T14:16:53.546+0000", "resources": [{"id": 941, "mirId": "MIR:00100418", "urlPattern": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=ep&enzymeID={$id}", "name": "Biocatalysis/Biodegradation Database Mirror (Enzyme) at ETH Zurich", "description": "Biocatalysis/Biodegradation Database Mirror (Enzyme) at ETH Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "e0333", "resourceHomeUrl": "http://umbbd.ethz.ch/", "institution": {"id": 812, "name": "ETH, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "e0333", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 942, "prefix": "umbbd.pathway", "mirId": "MIR:00000327", "name": "UM-BBD Pathway", "pattern": "^\\w+$", "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The goal of the UM-BBD is to provide information on microbial enzyme-catalyzed reactions that are important for biotechnology. This collection refers to pathway information.", "created": "2019-06-11T14:16:53.741+0000", "modified": "2019-06-11T14:16:53.741+0000", "resources": [{"id": 943, "mirId": "MIR:00100420", "urlPattern": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=p&pathway_abbr={$id}", "name": "Biocatalysis/Biodegradation Database Mirror (Pathway) at ETH Zurich", "description": "Biocatalysis/Biodegradation Database Mirror (Pathway) at ETH Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ala", "resourceHomeUrl": "http://umbbd.ethz.ch/", "institution": {"id": 812, "name": "ETH, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ala", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 944, "prefix": "umbbd.rule", "mirId": "MIR:00000328", "name": "UM-BBD Biotransformation Rule", "pattern": "^bt\\d+$", "description": "The University of Minnesota Biocatalysis/Biodegradation Database (UM-BBD) contains information on microbial biocatalytic reactions and biodegradation pathways for primarily xenobiotic, chemical compounds. The UM-BBD Pathway Prediction System (PPS) predicts microbial catabolic reactions using substructure searching, a rule-base, and atom-to-atom mapping. The PPS recognizes organic functional groups found in a compound and predicts transformations based on biotransformation rules. These rules are based on reactions found in the UM-BBD database. This collection references those rules.", "created": "2019-06-11T14:16:53.927+0000", "modified": "2019-06-11T14:16:53.927+0000", "resources": [{"id": 945, "mirId": "MIR:00100421", "urlPattern": "http://www.umbbd.ethz.ch/servlets/rule.jsp?rule={$id}", "name": "Biocatalysis/Biodegradation Database Mirror (Biotransformation Rule) at ETH Zurich", "description": "Biocatalysis/Biodegradation Database Mirror (Biotransformation Rule) at ETH Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "bt0001", "resourceHomeUrl": "http://umbbd.ethz.ch/servlets/pageservlet?ptype=allrules", "institution": {"id": 812, "name": "ETH, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "bt0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 946, "prefix": "mirex", "mirId": "MIR:00000329", "name": "mirEX", "pattern": "^\\d+(\\w+)?$", "description": "mirEX is a comprehensive platform for comparative analysis of primary microRNA expression data, storing RT\u2013qPCR-based gene expression profile over seven development stages of Arabidopsis. It also provides RNA structural models, publicly available deep sequencing results and experimental procedure details. This collection provides profile information for a single microRNA over all development stages.", "created": "2019-06-11T14:16:54.147+0000", "modified": "2019-06-11T14:16:54.147+0000", "resources": [{"id": 947, "mirId": "MIR:00100423", "urlPattern": "http://comgen.pl/mirex1/?page=results/record&name={$id}&exref=pp2a&limit=yes", "name": "mirEX at Adam Mickiewicz University", "description": "mirEX at Adam Mickiewicz University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "165a", "resourceHomeUrl": "http://comgen.pl/mirex/?page=home", "institution": {"id": 731, "name": "Institute of Molecular Biology, Adam Mickiewicz University, Poznan", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "PL", "countryName": "Poland"}}, "location": {"countryCode": "PL", "countryName": "Poland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "165a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 948, "prefix": "dictybase.est", "mirId": "MIR:00000330", "name": "Dictybase EST", "pattern": "^DDB\\d+$", "description": "The dictyBase database provides data on the model organism Dictyostelium discoideum and related species. It contains the complete genome sequence, ESTs, gene models and functional annotations. This collection references expressed sequence tag (EST) information.", "created": "2019-06-11T14:16:54.345+0000", "modified": "2019-06-11T14:16:54.345+0000", "resources": [{"id": 949, "mirId": "MIR:00100424", "urlPattern": "http://dictybase.org/db/cgi-bin/feature_page.pl?primary_id={$id}", "name": "Dictybase Gene at Northwestern University", "description": "Dictybase Gene at Northwestern University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "DDB0016567", "resourceHomeUrl": "http://dictybase.org/", "institution": {"id": 840, "name": "Northwestern University Biomedical Informatics Center and Center for Genetic Medicine, Chicago, Illinois", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DDB0016567", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1768, "prefix": "mobidb", "mirId": "MIR:00000637", "name": "MobiDB", "pattern": "^[OPQ][0-9][A-Z0-9]{3}[0-9]|[A-NR-Z][0-9]([A-Z][A-Z0-9]{2}[0-9]){1,2}$", "description": "MobiDB is a database of protein disorder and mobility annotations.", "created": "2019-06-11T14:18:08.223+0000", "modified": "2019-06-11T14:18:08.223+0000", "resources": [{"id": 1770, "mirId": "MIR:00100842", "urlPattern": "https://mobidb.org/{$id}", "name": "MobiDB", "description": "MobiDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "P10636", "resourceHomeUrl": "https://mobidb.org/", "institution": {"id": 1769, "name": "University of Padua", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P10636", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 950, "prefix": "imgt.hla", "mirId": "MIR:00000331", "name": "IMGT HLA", "pattern": "^[A-Z0-9*:]+$", "description": "IMGT, the international ImMunoGeneTics project, is a collection of high-quality integrated databases specialising in Immunoglobulins, T cell receptors and the Major Histocompatibility Complex (MHC) of all vertebrate species. IMGT/HLA is a database for sequences of the human MHC, referred to as HLA. It includes all the official sequences for the WHO Nomenclature Committee For Factors of the HLA System. This collection references allele information through the WHO nomenclature.", "created": "2019-06-11T14:16:54.535+0000", "modified": "2019-06-11T14:16:54.535+0000", "resources": [{"id": 951, "mirId": "MIR:00100425", "urlPattern": "https://www.ebi.ac.uk/cgi-bin/imgt/hla/get_allele.cgi?{$id}", "name": "IMGT HLA at EBI", "description": "IMGT HLA at EBI", "official": false, "providerCode": "ebi", "sampleId": "A*01:01:01:01", "resourceHomeUrl": "https://www.ebi.ac.uk/imgt/hla/allele.html", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "A*01:01:01:01", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 952, "prefix": "bdsc", "mirId": "MIR:00000332", "name": "Bloomington Drosophila Stock Center", "pattern": "^\\d+$", "description": "The Bloomington Drosophila Stock Center collects, maintains and distributes Drosophila melanogaster strains for research.", "created": "2019-06-11T14:16:54.741+0000", "modified": "2019-06-11T14:16:54.741+0000", "resources": [{"id": 954, "mirId": "MIR:00100426", "urlPattern": "https://bdsc.indiana.edu/stocks/{$id}", "name": "BDSC at Indiana University", "description": "BDSC at Indiana University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "33607", "resourceHomeUrl": "https://bdsc.indiana.edu/about/mission.html", "institution": {"id": 953, "name": "Department of Biology, Indiana University, Bloomington", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "33607", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 955, "prefix": "opm", "mirId": "MIR:00000333", "name": "OPM", "pattern": "^[0-9][A-Za-z0-9]{3}$", "description": "The Orientations of Proteins in Membranes (OPM) database provides spatial positions of membrane-bound peptides and proteins of known three-dimensional structure in the lipid bilayer, together with their structural classification, topology and intracellular localization.", "created": "2019-06-11T14:16:54.970+0000", "modified": "2019-06-11T14:16:54.970+0000", "resources": [{"id": 957, "mirId": "MIR:00100427", "urlPattern": "http://opm.phar.umich.edu/protein.php?pdbid={$id}", "name": "OPM at University of Michigan", "description": "OPM at University of Michigan", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1h68", "resourceHomeUrl": "http://opm.phar.umich.edu/", "institution": {"id": 956, "name": "Department of Medicinal Chemistry, College of Pharmacy, University of Michigan", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1h68", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 958, "prefix": "allergome", "mirId": "MIR:00000334", "name": "Allergome", "pattern": "^\\d+$", "description": "Allergome is a repository of data related to all IgE-binding compounds. Its purpose is to collect a list of allergenic sources and molecules by using the widest selection criteria and sources.", "created": "2019-06-11T14:16:55.214+0000", "modified": "2019-06-11T14:16:55.214+0000", "resources": [{"id": 960, "mirId": "MIR:00100429", "urlPattern": "http://www.allergome.org/script/dettaglio.php?id_molecule={$id}", "name": "Allergome at Rome", "description": "Allergome at Rome", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1948", "resourceHomeUrl": "http://www.allergome.org/", "institution": {"id": 959, "name": "Center for Clinical and Experimental Allergology, Rome", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1948", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 961, "prefix": "pombase", "mirId": "MIR:00000335", "name": "PomBase", "pattern": "^S\\w+(\\.)?\\w+(\\.)?$", "description": "PomBase is a model organism database established to provide access to molecular data and biological information for the fission yeast Schizosaccharomyces pombe. It encompasses annotation of genomic sequence and features, comprehensive manual literature curation and genome-wide data sets.", "created": "2019-06-11T14:16:55.438+0000", "modified": "2019-06-11T14:16:55.438+0000", "resources": [{"id": 963, "mirId": "MIR:00100430", "urlPattern": "https://www.pombase.org/gene/{$id}", "name": "PomBase at University of Cambridge", "description": "PomBase at University of Cambridge", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SPCC13B11.01", "resourceHomeUrl": "https://www.pombase.org/", "institution": {"id": 962, "name": "Cambridge Systems Biology Centre, Department of Biochemistry, University of Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SPCC13B11.01", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 964, "prefix": "hpa", "mirId": "MIR:00000336", "name": "HPA", "pattern": "^ENSG\\d{11}$", "description": "The Human Protein Atlas (HPA) is a publicly available database with high-resolution images showing the spatial distribution of proteins in different normal and cancer human cell lines. Primary access to this collection is through Ensembl Gene identifiers.", "created": "2019-06-11T14:16:55.662+0000", "modified": "2019-06-11T14:16:55.662+0000", "resources": [{"id": 966, "mirId": "MIR:00100431", "urlPattern": "http://www.proteinatlas.org/{$id}", "name": "Human Protein Atlas at AlbaNova University", "description": "Human Protein Atlas at AlbaNova University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ENSG00000026508", "resourceHomeUrl": "http://www.proteinatlas.org/", "institution": {"id": 965, "name": "Department of Proteomics, School of Biotechnology, AlbaNova University Center, Stockholm", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "SE", "countryName": "Sweden"}}, "location": {"countryCode": "SE", "countryName": "Sweden"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ENSG00000026508", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 967, "prefix": "jaxmice", "mirId": "MIR:00000337", "name": "JAX Mice", "pattern": "^\\d+$", "description": "JAX Mice is a catalogue of mouse strains supplied by the Jackson Laboratory.", "created": "2019-06-11T14:16:55.877+0000", "modified": "2019-06-11T14:16:55.877+0000", "resources": [{"id": 969, "mirId": "MIR:00100432", "urlPattern": "http://jaxmice.jax.org/strain/{$id}.html", "name": "JAX Mice at Jackson Laboratory", "description": "JAX Mice at Jackson Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "005012", "resourceHomeUrl": "http://jaxmice.jax.org/", "institution": {"id": 968, "name": "The Jackson Laboratory, Sacremento, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "005012", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 970, "prefix": "ubio.namebank", "mirId": "MIR:00000338", "name": "uBio NameBank", "pattern": "^\\d+$", "description": "NameBank is a \"biological name server\" focused on storing names and objectively-derived nomenclatural attributes. NameBank is a repository for all recorded names including scientific names, vernacular (or common names), misspelled names, as well as ad-hoc nomenclatural labels that may have limited context.", "created": "2019-06-11T14:16:56.122+0000", "modified": "2019-06-11T14:16:56.122+0000", "resources": [{"id": 972, "mirId": "MIR:00100433", "urlPattern": "http://www.ubio.org/browser/details.php?namebankID={$id}", "name": "uBio NameBank at The Marine Biological Laboratory", "description": "uBio NameBank at The Marine Biological Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2555646", "resourceHomeUrl": "http://www.ubio.org", "institution": {"id": 971, "name": "Marine Biological Laboratory, Woods Hole, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2555646", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 973, "prefix": "yetfasco", "mirId": "MIR:00000339", "name": "YeTFasCo", "pattern": "^\\w+\\_\\d+(\\.\\d+)?$", "description": "The Yeast Transcription Factor Specificity Compendium (YeTFasCO) is a database of transcription factor specificities for the yeast Saccharomyces cerevisiae in Position Frequency Matrix (PFM) or Position Weight Matrix (PWM) formats.", "created": "2019-06-11T14:16:56.366+0000", "modified": "2019-06-11T14:16:56.366+0000", "resources": [{"id": 975, "mirId": "MIR:00100434", "urlPattern": "http://yetfasco.ccbr.utoronto.ca/showPFM.php?mot={$id}", "name": "YeTFasCo at University of Toronto", "description": "YeTFasCo at University of Toronto", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "YOR172W_571.0", "resourceHomeUrl": "http://yetfasco.ccbr.utoronto.ca/", "institution": {"id": 974, "name": "Department of Molecular Genetics, Terrence Donnelly Centre for Cellular and Biomolecular Research, University of Toronto, Toronto", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "YOR172W_571.0", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 976, "prefix": "tarbase", "mirId": "MIR:00000340", "name": "TarBase", "pattern": "^[a-z]{3}\\-(mir|let|lin)\\-\\w+(\\-\\w+\\-\\w+)?", "description": "TarBase stores microRNA (miRNA) information for miRNA\u2013gene interactions, as well as miRNA- and gene-related facts to information specific to the interaction and the experimental validation methodologies used.", "created": "2019-06-11T14:16:56.599+0000", "modified": "2019-06-11T14:16:56.599+0000", "resources": [{"id": 978, "mirId": "MIR:00100713", "urlPattern": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index&mirnas={$id}", "name": "TarBase v7 at University of Thessaly", "description": "TarBase v7 at University of Thessaly", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "hsa-let-7a-2-3p", "resourceHomeUrl": "http://diana.imis.athena-innovation.gr/DianaTools/index.php?r=tarbase/index", "institution": {"id": 977, "name": "DIANA-Lab, Department of Electrical & Computer Engineering, University of Thessaly", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GR", "countryName": "Greece"}}, "location": {"countryCode": "GR", "countryName": "Greece"}, "deprecated": false, "deprecationDate": null}], "sampleId": "hsa-let-7a-2-3p", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 979, "prefix": "charprot", "mirId": "MIR:00000341", "name": "CharProt", "pattern": "^CH_\\d+$", "description": "CharProt is a database of biochemically characterized proteins designed to support automated annotation pipelines. Entries are annotated with gene name, symbol and various controlled vocabulary terms, including Gene Ontology terms, Enzyme Commission number and TransportDB accession.", "created": "2019-06-11T14:16:56.827+0000", "modified": "2019-06-11T14:16:56.827+0000", "resources": [{"id": 981, "mirId": "MIR:00100436", "urlPattern": "http://www.jcvi.org/charprotdb/index.cgi/view/{$id}", "name": "CharProt at JCVI", "description": "CharProt at JCVI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CH_001923", "resourceHomeUrl": "http://www.jcvi.org/charprotdb", "institution": {"id": 980, "name": "J Craig Venter institute, Rockville, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CH_001923", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 982, "prefix": "oma.protein", "mirId": "MIR:00000342", "name": "OMA Protein", "pattern": "^[A-Z0-9]{5}\\d+$", "description": "OMA (Orthologous MAtrix) is a database that identifies orthologs among publicly available, complete genome sequences. It identifies orthologous relationships which can be accessed either group-wise, where all group members are orthologous to all other group members, or on a sequence-centric basis, where for a given protein all its orthologs in all other species are displayed. This collection references individual protein records.", "created": "2019-06-11T14:16:57.058+0000", "modified": "2019-06-11T14:16:57.058+0000", "resources": [{"id": 984, "mirId": "MIR:00100437", "urlPattern": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayEntry&p1={$id}", "name": "OMA Protein through OMA browser at ETH Zurich", "description": "OMA Protein through OMA browser at ETH Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HUMAN16963", "resourceHomeUrl": "https://omabrowser.org/cgi-bin/gateway.pl", "institution": {"id": 983, "name": "ETH Zurich, Computer Science, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HUMAN16963", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 985, "prefix": "oma.grp", "mirId": "MIR:00000343", "name": "OMA Group", "pattern": "^[A-Z]+$", "description": "OMA (Orthologous MAtrix) is a database that identifies orthologs among publicly available, complete genome sequences. It identifies orthologous relationships which can be accessed either group-wise, where all group members are orthologous to all other group members, or on a sequence-centric basis, where for a given protein all its orthologs in all other species are displayed. This collection references groupings of orthologs.", "created": "2019-06-11T14:16:57.285+0000", "modified": "2019-06-11T14:16:57.285+0000", "resources": [{"id": 986, "mirId": "MIR:00100438", "urlPattern": "https://omabrowser.org/cgi-bin/gateway.pl?f=DisplayGroup&p1={$id}", "name": "OMA Group through OMA browser at ETH Zurich", "description": "OMA Group through OMA browser at ETH Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LCSCCPN", "resourceHomeUrl": "https://omabrowser.org/cgi-bin/gateway.pl", "institution": {"id": 983, "name": "ETH Zurich, Computer Science, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LCSCCPN", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 987, "prefix": "ncbiprotein", "mirId": "MIR:00000344", "name": "NCBI Protein", "pattern": "^(\\w+\\d+(\\.\\d+)?)|(NP_\\d+)$", "description": "The Protein database is a collection of sequences from several sources, including translations from annotated coding regions in GenBank, RefSeq and TPA, as well as records from SwissProt, PIR, PRF, and PDB.", "created": "2019-06-11T14:16:57.477+0000", "modified": "2019-06-11T14:16:57.477+0000", "resources": [{"id": 988, "mirId": "MIR:00100439", "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}", "name": "NCBI Protein at NCBI", "description": "NCBI Protein at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "CAA71118.1", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/protein", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CAA71118.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 989, "prefix": "genpept", "mirId": "MIR:00000345", "name": "GenPept", "pattern": "^\\w{3}\\d{5}(\\.\\d+)?$", "description": "The GenPept database is a collection of sequences based on translations from annotated coding regions in GenBank.", "created": "2019-06-11T14:16:57.671+0000", "modified": "2019-06-11T14:16:57.671+0000", "resources": [{"id": 990, "mirId": "MIR:00100440", "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}?report=genpept", "name": "GenPept at NCBI", "description": "GenPept at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "CAA71118.1", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/protein", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CAA71118.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 991, "prefix": "unigene", "mirId": "MIR:00000346", "name": "UniGene", "pattern": "^\\d+$", "description": "A UniGene entry is a set of transcript sequences that appear to come from the same transcription locus (gene or expressed pseudogene), together with information on protein similarities, gene expression, cDNA clone reagents, and genomic location.", "created": "2019-06-11T14:16:57.856+0000", "modified": "2019-06-11T14:16:57.856+0000", "resources": [{"id": 993, "mirId": "MIR:00100441", "urlPattern": "http://www.ncbi.nlm.nih.gov/UniGene/clust.cgi?UGID={$id}", "name": "UniGene at NCBI", "description": "UniGene at NCBI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4900", "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/unigene", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4900", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 994, "prefix": "bitterdb.rec", "mirId": "MIR:00000347", "name": "BitterDB Receptor", "pattern": "^\\d+$", "description": "BitterDB is a database of compounds reported to taste bitter to humans. The compounds can be searched by name, chemical structure, similarity to other bitter compounds, association with a particular human bitter taste receptor, and so on. The database also contains information on mutations in bitter taste receptors that were shown to influence receptor activation by bitter compounds. The aim of BitterDB is to facilitate studying the chemical features associated with bitterness. This collection references receptors.", "created": "2019-06-11T14:16:58.089+0000", "modified": "2019-06-11T14:16:58.089+0000", "resources": [{"id": 996, "mirId": "MIR:00100442", "urlPattern": "http://bitterdb.agri.huji.ac.il/Receptor.php?id={$id}", "name": "BitterDB Receptor at The Hebrew University of Jerusalem", "description": "BitterDB Receptor at The Hebrew University of Jerusalem", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1", "resourceHomeUrl": "http://bitterdb.agri.huji.ac.il/dbbitter.php", "institution": {"id": 995, "name": "The Robert H Smith Faculty of Agriculture, Food and Environment, The Institute of Biochemistry, Food Science and Nutrition, The Hebrew University of Jerusalem, Rehovot", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IL", "countryName": "Israel"}}, "location": {"countryCode": "IL", "countryName": "Israel"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 997, "prefix": "bitterdb.cpd", "mirId": "MIR:00000348", "name": "BitterDB Compound", "pattern": "^\\d+$", "description": "BitterDB is a database of compounds reported to taste bitter to humans. The compounds can be searched by name, chemical structure, similarity to other bitter compounds, association with a particular human bitter taste receptor, and so on. The database also contains information on mutations in bitter taste receptors that were shown to influence receptor activation by bitter compounds. The aim of BitterDB is to facilitate studying the chemical features associated with bitterness. This collection references compounds.", "created": "2019-06-11T14:16:58.347+0000", "modified": "2019-06-11T14:16:58.347+0000", "resources": [{"id": 998, "mirId": "MIR:00100443", "urlPattern": "http://bitterdb.agri.huji.ac.il/bitterdb/compound.php?id={$id}", "name": "BitterDB Compound at The Hebrew University of Jerusalem", "description": "BitterDB Compound at The Hebrew University of Jerusalem", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "46", "resourceHomeUrl": "http://bitterdb.agri.huji.ac.il/dbbitter.php", "institution": {"id": 995, "name": "The Robert H Smith Faculty of Agriculture, Food and Environment, The Institute of Biochemistry, Food Science and Nutrition, The Hebrew University of Jerusalem, Rehovot", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IL", "countryName": "Israel"}}, "location": {"countryCode": "IL", "countryName": "Israel"}, "deprecated": false, "deprecationDate": null}], "sampleId": "46", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 999, "prefix": "bioproject", "mirId": "MIR:00000349", "name": "BioProject", "pattern": "^PRJ[DEN][A-Z]\\d+$", "description": "BioProject provides an organizational framework to access metadata about research projects and the data from the projects that are deposited into different databases. It provides information about a project\u2019s scope, material, objectives, funding source and general relevance categories.", "created": "2019-06-11T14:16:58.543+0000", "modified": "2019-06-11T14:16:58.543+0000", "resources": [{"id": 1001, "mirId": "MIR:00100444", "urlPattern": "http://trace.ddbj.nig.ac.jp/BPSearch/bioproject?acc={$id}", "name": "BioProject at DNA Data Bank of Japan", "description": "BioProject at DNA Data Bank of Japan", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PRJDB3", "resourceHomeUrl": "http://trace.ddbj.nig.ac.jp/bioproject/", "institution": {"id": 1000, "name": "DNA Data Bank of Japan, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}, {"id": 1002, "mirId": "MIR:00100445", "urlPattern": "https://www.ncbi.nlm.nih.gov/bioproject?term={$id}", "name": "BioProject at NCBI", "description": "BioProject at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "PRJDB3", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/bioproject", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1003, "mirId": "MIR:00100446", "urlPattern": "https://www.ebi.ac.uk/ena/browser/view/{$id}", "name": "BioProject at European Nucleotide Archive (ENA)", "description": "BioProject at European Nucleotide Archive (ENA)", "official": false, "providerCode": "ebi", "sampleId": "PRJDB3", "resourceHomeUrl": "https://www.ebi.ac.uk/ena/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PRJDB3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1004, "prefix": "biosample", "mirId": "MIR:00000350", "name": "BioSample", "pattern": "^SAM[NED](\\w)?\\d+$", "description": "The BioSample Database stores information about biological samples used in molecular experiments, such as sequencing, gene expression or proteomics. It includes reference samples, such as cell lines, which are repeatedly used in experiments. Accession numbers for the reference samples will be exchanged with a similar database at NCBI, and DDBJ (Japan). Record access may be affected due to different release cycles and inter-institutional synchronisation.", "created": "2019-06-11T14:16:59.017+0000", "modified": "2019-06-11T14:16:59.017+0000", "resources": [{"id": 1005, "mirId": "MIR:00100447", "urlPattern": "https://www.ebi.ac.uk/biosamples/sample/{$id}", "name": "BioSamples Database at EBI", "description": "BioSamples Database at EBI", "official": true, "providerCode": "ebi", "sampleId": "SAMEA2397676", "resourceHomeUrl": "https://www.ebi.ac.uk/biosamples/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1006, "mirId": "MIR:00100706", "urlPattern": "http://www.ncbi.nlm.nih.gov/biosample?term={$id}", "name": "BioSample at NCBI", "description": "BioSample at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "SAMN00000002", "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/biosample", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1008, "mirId": "MIR:00100707", "urlPattern": "http://trace.ddbj.nig.ac.jp/BSSearch/biosample?acc={$id}", "name": "BioSample at DNA Data Bank of Japan", "description": "BioSample at DNA Data Bank of Japan", "official": false, "providerCode": "ddbj", "sampleId": "SAMD00005257", "resourceHomeUrl": "http://trace.ddbj.nig.ac.jp/biosample/", "institution": {"id": 1007, "name": "Institution DNA Data Bank of Japan, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SAMEA2397676", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1009, "prefix": "piroplasma", "mirId": "MIR:00000351", "name": "PiroplasmaDB", "pattern": "^TA\\d+$", "description": "PiroplasmaDB is one of the databases that can be accessed through the EuPathDB (http://EuPathDB.org; formerly ApiDB) portal, covering eukaryotic pathogens of the genera Cryptosporidium, Giardia, Leishmania, Neospora, Plasmodium, Toxoplasma, Trichomonas and Trypanosoma. While each of these groups is supported by a taxon-specific database built upon the same infrastructure, the EuPathDB portal offers an entry point to all these resources, and the opportunity to leverage orthology for searches across genera.", "created": "2019-06-11T14:16:59.494+0000", "modified": "2019-06-11T14:16:59.494+0000", "resources": [{"id": 1011, "mirId": "MIR:00100448", "urlPattern": "http://piroplasmadb.org/piro/showRecord.do?name=GeneRecordClasses.GeneRecordClass&source_id={$id}", "name": "PiroplasmaBD at EuPathDB", "description": "PiroplasmaBD at EuPathDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TA14985", "resourceHomeUrl": "http://piroplasmadb.org/", "institution": {"id": 1010, "name": "Center for Tropical & Emerging Global Diseases, University of Georgia, Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TA14985", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1012, "prefix": "unite", "mirId": "MIR:00000352", "name": "Unite", "pattern": "^UDB\\d{6}$", "description": "UNITE is a fungal rDNA internal transcribed spacer (ITS) sequence database. It focuses on high-quality ITS sequences generated from fruiting bodies collected and identified by experts and deposited in public herbaria. Entries may be supplemented with metadata on describing locality, habitat, soil, climate, and interacting taxa.", "created": "2019-06-11T14:16:59.723+0000", "modified": "2019-06-11T14:16:59.723+0000", "resources": [{"id": 1014, "mirId": "MIR:00100449", "urlPattern": "http://unite.ut.ee/bl_forw.php?nimi={$id}", "name": "Unite at University of Tartu", "description": "Unite at University of Tartu", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "UDB000691", "resourceHomeUrl": "http://unite.ut.ee/", "institution": {"id": 1013, "name": "Institute of Botany, University of Tartu, Tartu", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "EE", "countryName": "Estonia"}}, "location": {"countryCode": "EE", "countryName": "Estonia"}, "deprecated": false, "deprecationDate": null}], "sampleId": "UDB000691", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1015, "prefix": "ncim", "mirId": "MIR:00000353", "name": "NCIm", "pattern": "^C\\d+$", "description": "NCI Metathesaurus (NCIm) is a wide-ranging biomedical terminology database that covers most terminologies used by NCI for clinical care, translational and basic research, and public information and administrative activities. It integrates terms and definitions from different terminologies, including NCI Thesaurus, however the representation is not identical.", "created": "2019-06-11T14:16:59.945+0000", "modified": "2019-06-11T14:16:59.945+0000", "resources": [{"id": 1016, "mirId": "MIR:00100450", "urlPattern": "http://ncim.nci.nih.gov/ncimbrowser/ConceptReport.jsp?dictionary=NCI%20MetaThesaurus&code={$id}", "name": "NCIm at National Cancer Institue", "description": "NCIm at National Cancer Institue", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "C0026339", "resourceHomeUrl": "http://ncim.nci.nih.gov/", "institution": {"id": 442, "name": "National Cancer Institute, Center for Bioinformatics, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C0026339", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1017, "prefix": "proglyc", "mirId": "MIR:00000354", "name": "ProGlycProt", "pattern": "^[A-Z]C\\d{1,3}$", "description": "ProGlycProt (Prokaryotic Glycoprotein) is a repository of bacterial and archaeal glycoproteins with at least one experimentally validated glycosite (glycosylated residue). Each entry in the database is fully cross-referenced and enriched with available published information about source organism, coding gene, protein, glycosites, glycosylation type, attached glycan, associated oligosaccharyl/glycosyl transferases (OSTs/GTs), supporting references, and applicable additional information.", "created": "2019-06-11T14:17:00.162+0000", "modified": "2019-06-11T14:17:00.162+0000", "resources": [{"id": 1019, "mirId": "MIR:00100451", "urlPattern": "http://www.proglycprot.org/detail.aspx?ProId={$id}", "name": "ProGlycProt at IMT", "description": "ProGlycProt at IMT", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AC119", "resourceHomeUrl": "http://www.proglycprot.org/", "institution": {"id": 1018, "name": "Institute of Microbial Technology, Council of Scientific and Industrial Research (CSIR), Chandigarh", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AC119", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1020, "prefix": "polbase", "mirId": "MIR:00000355", "name": "PolBase", "pattern": "^[A-Za-z-0-9]+$", "description": "Polbase is a database of DNA polymerases providing information on polymerase protein sequence, target DNA sequence, enzyme structure, sequence mutations and details on polymerase activity.", "created": "2019-06-11T14:17:00.403+0000", "modified": "2019-06-11T14:17:00.403+0000", "resources": [{"id": 1021, "mirId": "MIR:00100452", "urlPattern": "https://polbase.neb.com/polymerases/{$id}#sequences", "name": "PolBase at New England BioLabs", "description": "PolBase at New England BioLabs", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "19-T4", "resourceHomeUrl": "http://polbase.neb.com/", "institution": {"id": 682, "name": "New England Biolabs, Ipswich, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "19-T4", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1022, "prefix": "nuclearbd", "mirId": "MIR:00000356", "name": "NucleaRDB", "pattern": "^\\w+\\_\\w+$", "description": "NucleaRDB is an information system that stores heterogenous data on Nuclear Hormone Receptors (NHRs). It contains data on sequences, ligand binding constants and mutations for NHRs.", "created": "2019-06-11T14:17:00.593+0000", "modified": "2019-06-11T14:17:00.593+0000", "resources": [{"id": 1024, "mirId": "MIR:00100453", "urlPattern": "http://www.receptors.org/nucleardb/proteins/{$id}", "name": "NucleaRDB at Radboud University Nijmegen Medical Centre", "description": "NucleaRDB at Radboud University Nijmegen Medical Centre", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "prgr_human", "resourceHomeUrl": "http://www.receptors.org/nucleardb/", "institution": {"id": 1023, "name": "CMBI, Radboud University Nijmegen Medical Centre, Dreijenplein, Wageningen", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "prgr_human", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1025, "prefix": "supfam", "mirId": "MIR:00000357", "name": "SUPFAM", "pattern": "^\\w+$", "description": "SUPERFAMILY provides structural, functional and evolutionary information for proteins from all completely sequenced genomes, and large sequence collections such as UniProt.", "created": "2019-06-11T14:17:00.815+0000", "modified": "2019-06-11T14:17:00.815+0000", "resources": [{"id": 1027, "mirId": "MIR:00100454", "urlPattern": "http://supfam.org/SUPERFAMILY/cgi-bin/scop.cgi?ipid={$id}", "name": "SUPFAM at MRC and University of Bristol", "description": "SUPFAM at MRC and University of Bristol", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SSF57615", "resourceHomeUrl": "http://supfam.org/SUPERFAMILY/", "institution": {"id": 1026, "name": "MRC Laboratory of Molecular Biology, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SSF57615", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1028, "prefix": "ricegap", "mirId": "MIR:00000358", "name": "Rice Genome Annotation Project", "pattern": "^LOC\\_Os\\d{1,2}g\\d{5}$", "description": "The objective of this project is to provide high quality annotation for the rice genome Oryza sativa spp japonica cv Nipponbare. All genes are annotated with functional annotation including expression data, gene ontologies, and tagged lines.", "created": "2019-06-11T14:17:01.041+0000", "modified": "2019-06-11T14:17:01.041+0000", "resources": [{"id": 1029, "mirId": "MIR:00100455", "urlPattern": "http://rice.plantbiology.msu.edu/cgi-bin/ORF_infopage.cgi?&orf={$id}", "name": "Rice Genome Annotation Project at TIGR", "description": "Rice Genome Annotation Project at TIGR", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LOC_Os02g13300", "resourceHomeUrl": "http://rice.plantbiology.msu.edu/annotation_pseudo_current.shtml", "institution": {"id": 909, "name": "The Institute for Genomic Research, Rockville, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LOC_Os02g13300", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1030, "prefix": "pina", "mirId": "MIR:00000359", "name": "PINA", "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])$", "description": "Protein Interaction Network Analysis (PINA) platform is an integrated platform for protein interaction network construction, filtering, analysis, visualization and management. It integrates protein-protein interaction data from six public curated databases and builds a complete, non-redundant protein interaction dataset for six model organisms.", "created": "2019-06-11T14:17:01.276+0000", "modified": "2019-06-11T14:17:01.276+0000", "resources": [{"id": 1032, "mirId": "MIR:00100456", "urlPattern": "http://cbg.garvan.unsw.edu.au/pina/interactome.oneP.do?ac={$id}&showExtend=null", "name": "Protein Interaction Network Analysis (PINA) at Garvan Institute", "description": "Protein Interaction Network Analysis (PINA) at Garvan Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q13485", "resourceHomeUrl": "http://cbg.garvan.unsw.edu.au/pina/", "institution": {"id": 1031, "name": "Garvan Institute of Medical Research, Sydney", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "AU", "countryName": "Australia"}}, "location": {"countryCode": "AU", "countryName": "Australia"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Q13485", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1033, "prefix": "tissuelist", "mirId": "MIR:00000360", "name": "Tissue List", "pattern": "^TS-\\d{4}$", "description": "The UniProt Tissue List is a controlled vocabulary of terms used to annotate biological tissues. It also contains cross-references to other ontologies where tissue types are specified.", "created": "2019-06-11T14:17:01.500+0000", "modified": "2019-06-11T14:17:01.500+0000", "resources": [{"id": 1035, "mirId": "MIR:00100457", "urlPattern": "https://www.uniprot.org/tissues/{$id}", "name": "Tissue List at Swiss Institute of Bioinformatics", "description": "Tissue List at Swiss Institute of Bioinformatics", "official": false, "providerCode": "sib", "sampleId": "TS-0285", "resourceHomeUrl": "https://www.uniprot.org/docs/tisslist.txt", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TS-0285", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1036, "prefix": "bacmap.biog", "mirId": "MIR:00000361", "name": "BacMap Biography", "pattern": "^\\d+$", "description": "BacMap is an electronic, interactive atlas of fully sequenced bacterial genomes. It contains labeled, zoomable and searchable chromosome maps for sequenced prokaryotic (archaebacterial and eubacterial) species. Each map can be zoomed to the level of individual genes and each gene is hyperlinked to a richly annotated gene card. All bacterial genome maps are supplemented with separate prophage genome maps as well as separate tRNA and rRNA maps. Each bacterial chromosome entry in BacMap contains graphs and tables on a variety of gene and protein statistics. Likewise, every bacterial species entry contains a bacterial 'biography' card, with taxonomic details, phenotypic details, textual descriptions and images. This collection references 'biography' information.", "created": "2019-06-11T14:17:01.735+0000", "modified": "2019-06-11T14:17:01.735+0000", "resources": [{"id": 1038, "mirId": "MIR:00100459", "urlPattern": "http://bacmap.wishartlab.com/organisms/{$id}", "name": "BacMap Biography at University of Alberta", "description": "BacMap Biography at University of Alberta", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1050", "resourceHomeUrl": "http://bacmap.wishartlab.com/", "institution": {"id": 1037, "name": "Department of Computing Science, Food and Nutritional Science, University of Alberta, Edmonton", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1050", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1039, "prefix": "hgnc.symbol", "mirId": "MIR:00000362", "name": "HGNC Symbol", "pattern": "^[A-Za-z-0-9_]+(\\@)?$", "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. This collection refers to records using the HGNC symbol.", "created": "2019-06-11T14:17:01.955+0000", "modified": "2019-06-11T14:17:01.955+0000", "resources": [{"id": 1040, "mirId": "MIR:00100460", "urlPattern": "https://www.genenames.org/cgi-bin/gene_symbol_report?match={$id}", "name": "HGNC Symbol at HUGO Genome Nomenclature Committee", "description": "HGNC Symbol at HUGO Genome Nomenclature Committee", "official": false, "providerCode": "ebi", "sampleId": "DAPK1", "resourceHomeUrl": "https://www.genenames.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DAPK1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1041, "prefix": "panther.pathway", "mirId": "MIR:00000363", "name": "PANTHER Pathway", "pattern": "^P\\d{5}$", "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. The PANTHER Pathway collection references pathway information, primarily for signaling pathways, each with subfamilies and protein sequences mapped to individual pathway components.", "created": "2019-06-11T14:17:02.153+0000", "modified": "2019-06-11T14:17:02.153+0000", "resources": [{"id": 1042, "mirId": "MIR:00100461", "urlPattern": "http://www.pantherdb.org/pathway/pathwayDiagram.jsp?catAccession={$id}", "name": "PANTHER Pathway at USC (Los Angeles)", "description": "PANTHER Pathway at USC (Los Angeles)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "P00024", "resourceHomeUrl": "http://www.pantherdb.org/", "institution": {"id": 94, "name": "Keck School of Medicine, University of Southern California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P00024", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1043, "prefix": "fairsharing", "mirId": "MIR:00000364", "name": "FAIRsharing", "pattern": "^bsg-[dscp]?\\d{6}$", "description": "The web-based FAIRSharing catalogues aim to centralize bioscience data policies, reporting standards and links to other related portals. This collection references bioinformatics data exchange standards, which includes 'Reporting Guidelines', Format Specifications and Terminologies.", "created": "2019-06-11T14:17:02.358+0000", "modified": "2019-06-11T14:17:02.358+0000", "resources": [{"id": 1045, "mirId": "MIR:00100463", "urlPattern": "https://fairsharing.org/{$id}", "name": "FAIRSharing at University of Oxford", "description": "FAIRSharing at University of Oxford", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "bsg-000052", "resourceHomeUrl": "https://fairsharing.org/", "institution": {"id": 1044, "name": "Oxford e-Research Centre, University of Oxford, Oxford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "bsg-000052", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1046, "prefix": "fungidb", "mirId": "MIR:00000365", "name": "FungiDB", "pattern": "^[A-Za-z_0-9]+$", "description": "FungiDB is a genomic resource for fungal genomes. It contains contains genome sequence and annotation from several fungal classes, including the Ascomycota classes, Eurotiomycetes, Sordariomycetes, Saccharomycetes and the Basidiomycota orders, Pucciniomycetes and Tremellomycetes, and the basal 'Zygomycete' lineage Mucormycotina.", "created": "2019-06-11T14:17:02.591+0000", "modified": "2019-06-11T14:17:02.591+0000", "resources": [{"id": 1048, "mirId": "MIR:00100464", "urlPattern": "https://fungidb.org/fungidb/app/record/gene/{$id}", "name": "FungiDB at University of California", "description": "FungiDB at University of California", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CNBG_0001", "resourceHomeUrl": "https://fungidb.org/fungidb", "institution": {"id": 1047, "name": "Department of Plant Pathology & Microbiology, University of California, Riverside, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CNBG_0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1771, "prefix": "neurovault.image", "mirId": "MIR:00000638", "name": "NeuroVault Image", "pattern": "^[1-9][0-9]*$", "description": "Neurovault is an online repository for statistical maps, parcellations and atlases of the brain. This collection references individual images.", "created": "2019-06-11T14:18:08.473+0000", "modified": "2019-06-11T14:18:08.473+0000", "resources": [{"id": 1772, "mirId": "MIR:00100843", "urlPattern": "https://neurovault.org/images/{$id}", "name": "NeuroVault", "description": "NeuroVault", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "58788", "resourceHomeUrl": "http://neurovault.org", "institution": {"id": 98, "name": "Stanford University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "58788", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1049, "prefix": "darc", "mirId": "MIR:00000366", "name": "DARC", "pattern": "^\\d+$", "description": "DARC (Database of Aligned Ribosomal Complexes) stores available cryo-EM (electron microscopy) data and atomic coordinates of ribosomal particles from the PDB, which are aligned within a common coordinate system. The aligned coordinate system simplifies direct visualization of conformational changes in the ribosome, such as subunit rotation and head-swiveling, as well as direct comparison of bound ligands, such as antibiotics or translation factors.", "created": "2019-06-11T14:17:02.814+0000", "modified": "2019-06-11T14:17:02.814+0000", "resources": [{"id": 1051, "mirId": "MIR:00100465", "urlPattern": "http://darcsite.genzentrum.lmu.de/darc/view.php?id={$id}", "name": "DARC at University of Munich", "description": "DARC at University of Munich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1250", "resourceHomeUrl": "http://darcsite.genzentrum.lmu.de/darc/index.php", "institution": {"id": 1050, "name": "Gene Center and Department for Biochemistry and Center for integrated Protein Science Munich, University of Munich, Munich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1250", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1052, "prefix": "drsc", "mirId": "MIR:00000367", "name": "DRSC", "pattern": "^DRSC\\d+$", "description": "The DRSC (Drosophila RNAi Screening Cente) tracks both production of reagents for RNA interference (RNAi) screening in Drosophila cells and RNAi screen results. It maintains a list of Drosophila gene names, identifiers, symbols and synonyms and provides information for cell-based or in vivo RNAi reagents, other types of reagents, screen results, etc. corresponding for a given gene.", "created": "2019-06-11T14:17:03.033+0000", "modified": "2019-06-11T14:17:03.033+0000", "resources": [{"id": 1054, "mirId": "MIR:00100466", "urlPattern": "http://www.flyrnai.org/cgi-bin/RNAi_gene_lookup_public.pl?gname={$id}", "name": "DRSC at Harvard Medical School", "description": "DRSC at Harvard Medical School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "DRSC05221", "resourceHomeUrl": "http://flyrnai.org/", "institution": {"id": 1053, "name": "Department of Genetics, Harvard Medical School, Boston, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DRSC05221", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1055, "prefix": "oridb.schizo", "mirId": "MIR:00000368", "name": "OriDB Schizosaccharomyces", "pattern": "^\\d+$", "description": "OriDB is a database of collated genome-wide mapping studies of confirmed and predicted replication origin sites in Saccharomyces cerevisiae and the fission yeast Schizosaccharomyces pombe. This collection references Schizosaccharomyces pombe.", "created": "2019-06-11T14:17:03.255+0000", "modified": "2019-06-11T14:17:03.255+0000", "resources": [{"id": 1057, "mirId": "MIR:00100467", "urlPattern": "http://pombe.oridb.org/details.php?id={$id}", "name": "OriDB Schizosaccharomyces at University of Nottingham", "description": "OriDB Schizosaccharomyces at University of Nottingham", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1", "resourceHomeUrl": "http://pombe.oridb.org/index.php", "institution": {"id": 1056, "name": "Centre for Genetics and Genomics, The University of Nottingham, Queen's Medical Centre, Nottingham", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1058, "prefix": "oridb.sacch", "mirId": "MIR:00000369", "name": "OriDB Saccharomyces", "pattern": "^\\d+$", "description": "OriDB is a database of collated genome-wide mapping studies of confirmed and predicted replication origin sites in Saccharomyces cerevisiae and the fission yeast Schizosaccharomyces pombe. This collection references Saccharomyces cerevisiae.", "created": "2019-06-11T14:17:03.475+0000", "modified": "2019-06-11T14:17:03.475+0000", "resources": [{"id": 1059, "mirId": "MIR:00100468", "urlPattern": "http://cerevisiae.oridb.org/details.php?id={$id}", "name": "OriDB Saccharomyces at University of Nottingham", "description": "OriDB Saccharomyces at University of Nottingham", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1", "resourceHomeUrl": "http://cerevisiae.oridb.org/index.php", "institution": {"id": 1056, "name": "Centre for Genetics and Genomics, The University of Nottingham, Queen's Medical Centre, Nottingham", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1060, "prefix": "pscdb", "mirId": "MIR:00000370", "name": "PSCDB", "pattern": "^\\d+$", "description": "The PSCDB (Protein Structural Change DataBase) collects information on the relationship between protein structural change upon ligand binding. Each entry page provides detailed information about this structural motion.", "created": "2019-06-11T14:17:03.650+0000", "modified": "2019-06-11T14:17:03.650+0000", "resources": [{"id": 1062, "mirId": "MIR:00100469", "urlPattern": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/{$id}.html", "name": "PSCDB at Nagoya University", "description": "PSCDB at Nagoya University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "051", "resourceHomeUrl": "http://idp1.force.cs.is.nagoya-u.ac.jp/pscdb/index.html", "institution": {"id": 1061, "name": "Graduate School of Information Science, Nagoya University, Furo-cho, Chikusa-ku", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "051", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1063, "prefix": "scop", "mirId": "MIR:00000371", "name": "SCOP", "pattern": "^\\d+$", "description": "The SCOP (Structural Classification of Protein) database is a comprehensive ordering of all proteins of known structure according to their evolutionary, functional and structural relationships. The basic classification unit is the protein domain. Domains are hierarchically classified into species, proteins, families, superfamilies, folds, and classes.", "created": "2019-06-11T14:17:03.870+0000", "modified": "2019-06-11T14:17:03.870+0000", "resources": [{"id": 1065, "mirId": "MIR:00100470", "urlPattern": "http://scop.mrc-lmb.cam.ac.uk/scop/search.cgi?sunid={$id}", "name": "SCOP at MRC", "description": "SCOP at MRC", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "47419", "resourceHomeUrl": "http://scop.mrc-lmb.cam.ac.uk/scop/", "institution": {"id": 1064, "name": "MRC Laboratory of Molecular Biology, Centre for Protein Engineering, Hills Road, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1067, "mirId": "MIR:00100471", "urlPattern": "http://scop.berkeley.edu/sunid={$id}", "name": "SCOP at Berkeley", "description": "SCOP at Berkeley", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "47419", "resourceHomeUrl": "http://scop.berkeley.edu/", "institution": {"id": 1066, "name": "University of California, Berkeley", "homeUrl": "https://www.berkeley.edu/", "description": "From a group of academic pioneers in 1868 to the Free Speech Movement in 1964, Berkeley is a place where the brightest minds from across the globe come together to explore, ask questions and improve the world.", "rorId": "https://ror.org/01an7q238", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "47419", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1068, "prefix": "ena.embl", "mirId": "MIR:00000372", "name": "ENA", "pattern": "^[A-Z]+[0-9]+(\\.\\d+)?$", "description": "The European Nucleotide Archive (ENA) captures and presents information relating to experimental workflows that are based around nucleotide sequencing. ENA is made up of a number of distinct databases that includes EMBL-Bank, the Sequence Read Archive (SRA) and the Trace Archive each with their own data formats and standards. This collection references Embl-Bank identifiers.", "created": "2019-06-11T14:17:04.223+0000", "modified": "2019-06-11T14:17:04.223+0000", "resources": [{"id": 1070, "mirId": "MIR:00100889", "urlPattern": "https://www.ncbi.nlm.nih.gov/nuccore/{$id}", "name": "ENA through GenBank", "description": "ENA through GenBank", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BN000065", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/Genbank/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1069, "mirId": "MIR:00100473", "urlPattern": "https://www.ebi.ac.uk/ena/browser/view/{$id}", "name": "ENA at European Bioinformatics Institute", "description": "ENA at European Bioinformatics Institute", "official": true, "providerCode": "ebi", "sampleId": "BN000065", "resourceHomeUrl": "https://www.ebi.ac.uk/ena/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BN000065", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1071, "prefix": "dommino", "mirId": "MIR:00000373", "name": "DOMMINO", "pattern": "^[0-9][A-Za-z0-9]{3}$", "description": "DOMMINO is a database of macromolecular interactions that includes the interactions between protein domains, interdomain linkers, N- and C-terminal regions and protein peptides.", "created": "2019-06-11T14:17:04.514+0000", "modified": "2019-06-11T14:17:04.514+0000", "resources": [{"id": 1073, "mirId": "MIR:00100474", "urlPattern": "http://orion.rnet.missouri.edu/~nz953/DOMMINO/index.php/result/show_network/{$id}", "name": "DOMMINO at University of Missouri", "description": "DOMMINO at University of Missouri", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2GC4", "resourceHomeUrl": "http://dommino.org/", "institution": {"id": 1072, "name": "Informatics Institute and Department of Computer Science and Bond Life Science Center, University of Missouri, Columbia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2GC4", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1074, "prefix": "panther.node", "mirId": "MIR:00000374", "name": "PANTHER Node", "pattern": "^PTN\\d{9}$", "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. PANTHER tree is a key element of the PANTHER System to represent \u2018all\u2019 of the evolutionary events in the gene family. PANTHER nodes represent the evolutionary events, either speciation or duplication, within the tree. PANTHER is maintaining stable identifier for these nodes.", "created": "2019-06-11T14:17:04.735+0000", "modified": "2019-06-11T14:17:04.735+0000", "resources": [{"id": 1075, "mirId": "MIR:00100475", "urlPattern": "http://www.pantree.org/node/annotationNode.jsp?id={$id}", "name": "PANTHER Node at USC (Los Angeles)", "description": "PANTHER Node at USC (Los Angeles)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PTN000000026", "resourceHomeUrl": "http://pantree.org/", "institution": {"id": 94, "name": "Keck School of Medicine, University of Southern California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PTN000000026", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1076, "prefix": "ccds", "mirId": "MIR:00000375", "name": "Consensus CDS", "pattern": "^CCDS\\d+\\.\\d+$", "description": "The Consensus CDS (CCDS) project is a collaborative effort to identify a core set of human and mouse protein coding regions that are consistently annotated and of high quality. The CCDS set is calculated following coordinated whole genome annotation updates carried out by the NCBI, WTSI, and Ensembl. The long term goal is to support convergence towards a standard set of gene annotations.", "created": "2019-06-11T14:17:04.925+0000", "modified": "2019-06-11T14:17:04.925+0000", "resources": [{"id": 1077, "mirId": "MIR:00100477", "urlPattern": "http://www.ncbi.nlm.nih.gov/CCDS/CcdsBrowse.cgi?REQUEST=CCDS&DATA={$id}", "name": "Consensus CDS at NCBI", "description": "Consensus CDS at NCBI", "official": true, "providerCode": "ncbi", "sampleId": "CCDS13573.1", "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/CCDS/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CCDS13573.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1086, "prefix": "hprd", "mirId": "MIR:00000377", "name": "HPRD", "pattern": "^\\d+$", "description": "The Human Protein Reference Database (HPRD) represents a centralized platform to visually depict and integrate information pertaining to domain architecture, post-translational modifications, interaction networks and disease association for each protein in the human proteome.", "created": "2019-06-11T14:17:05.741+0000", "modified": "2019-06-11T14:17:05.741+0000", "resources": [{"id": 1088, "mirId": "MIR:00100479", "urlPattern": "http://www.hprd.org/protein/{$id}", "name": "Human Protein Reference Database", "description": "Human Protein Reference Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "00001", "resourceHomeUrl": "http://www.hprd.org/", "institution": {"id": 1087, "name": "Institute of Bioinformatics, International Tech Park, Bangalore", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1089, "prefix": "gxa.gene", "mirId": "MIR:00000378", "name": "GXA Gene", "pattern": "^\\w+$", "description": "The Gene Expression Atlas (GXA) is a semantically enriched database of meta-analysis based summary statistics over a curated subset of ArrayExpress Archive, servicing queries for condition-specific gene expression patterns as well as broader exploratory searches for biologically interesting genes/samples. This collection references genes.", "created": "2019-06-11T14:17:05.964+0000", "modified": "2019-06-11T14:17:05.964+0000", "resources": [{"id": 1090, "mirId": "MIR:00100482", "urlPattern": "https://www.ebi.ac.uk/gxa/genes/{$id}", "name": "GXA Gene at EBI", "description": "GXA Gene at EBI", "official": false, "providerCode": "ebi", "sampleId": "AT4G01080", "resourceHomeUrl": "https://www.ebi.ac.uk/gxa/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AT4G01080", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1091, "prefix": "gxa.expt", "mirId": "MIR:00000379", "name": "GXA Expt", "pattern": "^[AEP]-\\w{4}-\\d+$", "description": "The Gene Expression Atlas (GXA) is a semantically enriched database of meta-analysis based summary statistics over a curated subset of ArrayExpress Archive, servicing queries for condition-specific gene expression patterns as well as broader exploratory searches for biologically interesting genes/samples. This collection references experiments.", "created": "2019-06-11T14:17:06.163+0000", "modified": "2019-06-11T14:17:06.163+0000", "resources": [{"id": 1092, "mirId": "MIR:00100483", "urlPattern": "https://www.ebi.ac.uk/gxa/experiments/{$id}", "name": "GXA Expt at EBI", "description": "GXA Expt at EBI", "official": true, "providerCode": "ebi", "sampleId": "E-MTAB-2037", "resourceHomeUrl": "https://www.ebi.ac.uk/gxa/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1093, "mirId": "MIR:00100857", "urlPattern": "https://www.omicsdi.org/dataset/atlas-experiments/{$id}", "name": "GXA Expt through OmicsDI", "description": "GXA Expt through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "E-MTAB-2037", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "E-MTAB-2037", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1094, "prefix": "metabolights", "mirId": "MIR:00000380", "name": "MetaboLights", "pattern": "^MTBLS\\d+$", "description": "MetaboLights is a database for Metabolomics experiments and derived information. The database is cross-species, cross-technique and covers metabolite structures and their reference spectra as well as their biological roles, locations and concentrations, and experimental data from metabolic experiments. This collection references individual metabolomics studies.", "created": "2019-06-11T14:17:06.457+0000", "modified": "2019-06-11T14:17:06.457+0000", "resources": [{"id": 1095, "mirId": "MIR:00100486", "urlPattern": "https://www.ebi.ac.uk/metabolights/{$id}", "name": "MetaboLights at EBI", "description": "MetaboLights at EBI", "official": true, "providerCode": "ebi", "sampleId": "MTBLS1", "resourceHomeUrl": "https://www.ebi.ac.uk/metabolights/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1096, "mirId": "MIR:00100853", "urlPattern": "https://www.omicsdi.org/dataset/metabolights_dataset/{$id}", "name": "MataboLights through OmicsDI", "description": "MataboLights through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "MTBLS1", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MTBLS1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1097, "prefix": "nbn", "mirId": "MIR:00000381", "name": "National Bibliography Number", "pattern": "^urn\\:nbn\\:[A-Za-z_0-9]+\\:([A-Za-z_0-9]+)-[A-Za-z_0-9]+$", "description": "The National Bibliography Number (NBN), is a URN-based publication identifier system employed by a variety of national libraries such as those of Germany, the Netherlands and Switzerland. They are used to identify documents archived in national libraries, in their native format or language, and are typically used for documents which do not have a publisher-assigned identifier.", "created": "2019-06-11T14:17:06.748+0000", "modified": "2019-06-11T14:17:06.748+0000", "resources": [{"id": 1099, "mirId": "MIR:00100488", "urlPattern": "http://nbn-resolving.org/resolver?identifier={$id}&verb=redirect", "name": "NBN through URN Resolver at German National Library", "description": "NBN through URN Resolver at German National Library", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "urn:nbn:fi:tkk-004781", "resourceHomeUrl": "http://nbn-resolving.org/resolve_urn.htm", "institution": {"id": 1098, "name": "Deutsche Nationalbibliothek, Frankfurt", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "urn:nbn:fi:tkk-004781", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1100, "prefix": "orcid", "mirId": "MIR:00000382", "name": "ORCID", "pattern": "^\\d{4}-\\d{4}-\\d{4}-\\d{3}(\\d|X)$", "description": "ORCID (Open Researcher and Contributor ID) is an open, non-profit, community-based effort to create and maintain a registry of unique identifiers for individual researchers. ORCID records hold non-sensitive information such as name, email, organization name, and research activities.", "created": "2019-06-11T14:17:06.994+0000", "modified": "2019-06-11T14:17:06.994+0000", "resources": [{"id": 1102, "mirId": "MIR:00100489", "urlPattern": "https://orcid.org/{$id}", "name": "ORCID at Bethesda", "description": "ORCID at Bethesda", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0000-0002-5355-2576", "resourceHomeUrl": "https://orcid.org", "institution": {"id": 1101, "name": "ORCID Inc, Bethesda, Mayrland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000-0002-5355-2576", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1103, "prefix": "inchi", "mirId": "MIR:00000383", "name": "InChI", "pattern": "^InChI\\=1S?\\/[A-Za-z0-9\\.]+(\\+[0-9]+)?(\\/[cnpqbtmsih][A-Za-z0-9\\-\\+\\(\\)\\,\\/\\?\\;\\.]+)*$", "description": "The IUPAC International Chemical Identifier (InChI) is a non-proprietary identifier for chemical substances that can be used in printed and electronic data sources. It is derived solely from a structural representation of that substance, such that a single compound always yields the same identifier.", "created": "2019-06-11T14:17:07.236+0000", "modified": "2019-06-11T14:17:07.236+0000", "resources": [{"id": 1106, "mirId": "MIR:00100492", "urlPattern": "http://www.chemspider.com/{$id}", "name": "InChI through Chemspider", "description": "InChI through Chemspider", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", "resourceHomeUrl": "http://www.chemspider.com/", "institution": {"id": 439, "name": "Royal Society of Chemistry, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1108, "mirId": "MIR:00100493", "urlPattern": "http://webbook.nist.gov/cgi/cbook.cgi?{$id}", "name": "InChI through NIST", "description": "InChI through NIST", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", "resourceHomeUrl": "http://webbook.nist.gov/chemistry", "institution": {"id": 1107, "name": "National Institute of Standards and Technology, Gaithersburg, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1109, "mirId": "MIR:00100494", "urlPattern": "https://www.ebi.ac.uk/chebi/advancedSearchFT.do?searchString={$id}", "name": "InChI through ChEBI", "description": "InChI through ChEBI", "official": false, "providerCode": "ebi", "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", "resourceHomeUrl": "https://www.ebi.ac.uk/chebi/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1105, "mirId": "MIR:00100491", "urlPattern": "http://rdf.openmolecules.net/?{$id}", "name": "InChI through RDF Open Molecules", "description": "InChI through RDF Open Molecules", "official": false, "providerCode": "um", "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", "resourceHomeUrl": "http://rdf.openmolecules.net/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1110, "prefix": "wikipedia.en", "mirId": "MIR:00000384", "name": "Wikipedia (En)", "pattern": "^[A-Za-z-0-9_]+$", "description": "Wikipedia is a multilingual, web-based, free-content encyclopedia project based on an openly editable model. It is written collaboratively by largely anonymous Internet volunteers who write without pay.", "created": "2019-06-11T14:17:07.845+0000", "modified": "2019-06-11T14:17:07.845+0000", "resources": [{"id": 1112, "mirId": "MIR:00100495", "urlPattern": "http://en.wikipedia.org/wiki/{$id}", "name": "Wikipedia (English)", "description": "Wikipedia (English)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SM_UB-81", "resourceHomeUrl": "http://en.wikipedia.org/wiki/Main_Page", "institution": {"id": 1111, "name": "Wikimedia Foundation, San Francisco, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1114, "mirId": "MIR:00100496", "urlPattern": "http://dbpedia.org/page/{$id}", "name": "Wikipedia structured content through DBpedia", "description": "Wikipedia structured content through DBpedia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SM_UB-81", "resourceHomeUrl": "http://wiki.dbpedia.org/", "institution": {"id": 1113, "name": "OpenLink Software, Burlington, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SM_UB-81", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1115, "prefix": "phosphopoint.kinase", "mirId": "MIR:00000385", "name": "PhosphoPoint Kinase", "pattern": "^\\w+$", "description": "PhosphoPOINT is a database of the human kinase and phospho-protein interactome. It describes the interactions among kinases, their potential substrates and their interacting (phospho)-proteins. It also incorporates gene expression and uses gene ontology (GO) terms to annotate interactions. This collection references kinase information.", "created": "2019-06-11T14:17:08.222+0000", "modified": "2019-06-11T14:17:08.222+0000", "resources": [{"id": 1117, "mirId": "MIR:00100499", "urlPattern": "http://kinase.bioinformatics.tw/showall.jsp?type=Kinase&info=Gene&name={$id}&drawing=0&sorting=0&kinome=1", "name": "PhosphoPoint Kinase at National Taiwan University", "description": "PhosphoPoint Kinase at National Taiwan University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AURKA", "resourceHomeUrl": "http://kinase.bioinformatics.tw/", "institution": {"id": 1116, "name": "Department of Computer Science and Information Engineering, National Taiwan University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AURKA", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1118, "prefix": "phosphopoint.protein", "mirId": "MIR:00000386", "name": "PhosphoPoint Phosphoprotein", "pattern": "^\\w+$", "description": "PhosphoPOINT is a database of the human kinase and phospho-protein interactome. It describes the interactions among kinases, their potential substrates and their interacting (phospho)-proteins. It also incorporates gene expression and uses gene ontology (GO) terms to annotate interactions. This collection references phosphoprotein information.", "created": "2019-06-11T14:17:08.458+0000", "modified": "2019-06-11T14:17:08.458+0000", "resources": [{"id": 1119, "mirId": "MIR:00100500", "urlPattern": "http://kinase.bioinformatics.tw/showall.jsp?type=PhosphoProtein&info=Gene&name={$id}&drawing=0&sorting=0&kinome=0", "name": "PhosphoPoint Phosphoprotein at National Taiwan University", "description": "PhosphoPoint Phosphoprotein at National Taiwan University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AURKA", "resourceHomeUrl": "http://kinase.bioinformatics.tw/", "institution": {"id": 1116, "name": "Department of Computer Science and Information Engineering, National Taiwan University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AURKA", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1120, "prefix": "inchikey", "mirId": "MIR:00000387", "name": "InChIKey", "pattern": "^[A-Z]{14}\\-[A-Z]{10}(\\-[A-Z])?", "description": "The IUPAC International Chemical Identifier (InChI, see MIR:00000383) is an identifier for chemical substances, and is derived solely from a structural representation of that substance. Since these can be quite unwieldly, particularly for web use, the InChIKey was developed. These are of a fixed length (25 character) and were created as a condensed, more web friendly, digital representation of the InChI.", "created": "2019-06-11T14:17:08.649+0000", "modified": "2019-06-11T14:17:08.649+0000", "resources": [{"id": 1121, "mirId": "MIR:00100501", "urlPattern": "http://www.chemspider.com/inchikey={$id}", "name": "InChIKey through ChemSpider", "description": "InChIKey through ChemSpider", "official": true, "providerCode": "chemspider", "sampleId": "RYYVLZVUVIJVGH-UHFFFAOYSA-N", "resourceHomeUrl": "http://www.chemspider.com/", "institution": {"id": 439, "name": "Royal Society of Chemistry, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1122, "mirId": "MIR:00100505", "urlPattern": "http://cactus.nci.nih.gov/chemical/structure/{$id}/names", "name": "InChiKey resolver at NCI", "description": "InChiKey resolver at NCI", "official": true, "providerCode": "cactus", "sampleId": "RYYVLZVUVIJVGH-UHFFFAOYSA-N", "resourceHomeUrl": "http://cactus.nci.nih.gov/chemical/structure", "institution": {"id": 425, "name": "National Cancer Institute, Rockville, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 2470, "mirId": "MIR:00000779", "urlPattern": "https://scholia.toolforge.org/inchikey/{$id}", "name": "Scholia", "description": "Scholia is a service that creates visual scholarly profiles for topic, people, organizations, species, chemicals, etc using bibliographic and other information in Wikidata.", "official": false, "providerCode": "scholia", "sampleId": "WUUVSJBKHXDKBS-ROFOPDMZSA-N", "resourceHomeUrl": "https://scholia.toolforge.org/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "RYYVLZVUVIJVGH-UHFFFAOYSA-N", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1123, "prefix": "uniprot.isoform", "mirId": "MIR:00000388", "name": "UniProt Isoform", "pattern": "^([A-N,R-Z][0-9][A-Z][A-Z, 0-9][A-Z, 0-9][0-9])|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])(\\-\\d+)$", "description": "The UniProt Knowledgebase (UniProtKB) is a comprehensive resource for protein sequence and functional information with extensive cross-references to more than 120 external databases. This collection is a subset of UniProtKB, and provides a means to reference isoform information.", "created": "2019-06-11T14:17:08.943+0000", "modified": "2019-06-11T14:17:08.943+0000", "resources": [{"id": 1124, "mirId": "MIR:00100502", "urlPattern": "http://www.uniprot.org/uniprot/{$id}", "name": "UniProt Isoform through Universal Protein Resource", "description": "UniProt Isoform through Universal Protein Resource", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q5BJF6-3", "resourceHomeUrl": "http://www.uniprot.org/", "institution": {"id": 24, "name": "UniProt Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1125, "mirId": "MIR:00100503", "urlPattern": "http://purl.uniprot.org/uniprot/{$id}", "name": "UniProt Isoform through Universal Protein Resource using Persistent URL system", "description": "UniProt Isoform through Universal Protein Resource using Persistent URL system", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q5BJF6-3", "resourceHomeUrl": "http://purl.uniprot.org/", "institution": {"id": 24, "name": "UniProt Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1126, "mirId": "MIR:00100504", "urlPattern": "http://www.uniprot.org/uniparc/?query={$id}", "name": "UniProt Isoform through UniParc", "description": "UniProt Isoform through UniParc", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q5BJF6-3", "resourceHomeUrl": "http://www.uniprot.org/uniparc/", "institution": {"id": 24, "name": "UniProt Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Q5BJF6-3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1127, "prefix": "kegg.environ", "mirId": "MIR:00000389", "name": "KEGG Environ", "pattern": "^(ev\\:)?E\\d+$", "description": "KEGG ENVIRON (renamed from EDRUG) is a collection of crude drugs, essential oils, and other health-promoting substances, which are mostly natural products of plants. It will contain environmental substances and other health-damagine substances as well. Each KEGG ENVIRON entry is identified by the E number and is associated with the chemical component, efficacy information, and source species information whenever applicable.", "created": "2019-06-11T14:17:09.349+0000", "modified": "2019-06-11T14:17:09.349+0000", "resources": [{"id": 1128, "mirId": "MIR:00100506", "urlPattern": "http://www.kegg.jp/entry/{$id}", "name": "KEGG ENVIRON Database", "description": "KEGG ENVIRON Database", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "ev:E00032", "resourceHomeUrl": "http://www.genome.jp/kegg/drug/environ.html", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ev:E00032", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1129, "prefix": "cldb", "mirId": "MIR:00000390", "name": "CLDB", "pattern": "^(cl|tum)\\d+$", "description": "The Cell Line Data Base (CLDB) is a reference information source for human and animal cell lines. It provides the characteristics of the cell lines and their availability through distributors, allowing cell line requests to be made from collections and laboratories.", "created": "2019-06-11T14:17:09.531+0000", "modified": "2019-06-11T14:17:09.531+0000", "resources": [{"id": 1131, "mirId": "MIR:00100508", "urlPattern": "http://bioinformatics.hsanmartino.it/hypercldb/{$id}.html", "name": "CLDB at Genova", "description": "CLDB at Genova", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "cl3603", "resourceHomeUrl": "http://bioinformatics.hsanmartino.it/hypercldb/indexes.html", "institution": {"id": 1130, "name": "Ospedale San Martino", "homeUrl": "http://www.ospedalesanmartino.it", "description": "NOTE - No international description has been found on its website, so it's not been possible to include a brief summary here.", "rorId": "https://ror.org/04d7es448", "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "cl3603", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1132, "prefix": "efo", "mirId": "MIR:00000391", "name": "Experimental Factor Ontology", "pattern": "^\\d{7}$", "description": "The Experimental Factor Ontology (EFO) provides a systematic description of many experimental variables available in EBI databases. It combines parts of several biological ontologies, such as anatomy, disease and chemical compounds. The scope of EFO is to support the annotation, analysis and visualization of data handled by the EBI Functional Genomics Team.", "created": "2019-06-11T14:17:09.753+0000", "modified": "2019-06-11T14:17:09.753+0000", "resources": [{"id": 1133, "mirId": "MIR:00100509", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/efo/terms?obo_id=EFO:{$id}", "name": "EFO through OLS", "description": "EFO through OLS", "official": false, "providerCode": "ols", "sampleId": "0004859", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/efo", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1134, "mirId": "MIR:00100510", "urlPattern": "http://purl.bioontology.org/ontology/EFO/efo:EFO_{$id}", "name": "EFO through BioPortal", "description": "EFO through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0004859", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/EFO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1135, "mirId": "MIR:00100511", "urlPattern": "https://www.ebi.ac.uk/efo/EFO_{$id}", "name": "EFO through Functional Genomics Group (EBI)", "description": "EFO through Functional Genomics Group (EBI)", "official": false, "providerCode": "ebi", "sampleId": "0004859", "resourceHomeUrl": "https://www.ebi.ac.uk/efo/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0004859", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1136, "prefix": "hgmd", "mirId": "MIR:00000392", "name": "HGMD", "pattern": "^[A-Z_0-9]+$", "description": "The Human Gene Mutation Database (HGMD) collates data on germ-line mutations in nuclear genes associated with human inherited disease. It includes information on single base-pair substitutions in coding, regulatory and splicing-relevant regions; micro-deletions and micro-insertions; indels; triplet repeat expansions as well as gross deletions; insertions; duplications; and complex rearrangements. Each mutation entry is unique, and includes cDNA reference sequences for most genes, splice junction sequences, disease-associated and functional polymorphisms, as well as links to data present in publicly available online locus-specific mutation databases.", "created": "2019-06-11T14:17:10.208+0000", "modified": "2019-06-11T14:17:10.208+0000", "resources": [{"id": 1138, "mirId": "MIR:00100512", "urlPattern": "http://www.hgmd.cf.ac.uk/ac/gene.php?gene={$id}", "name": "HGMD at Cardiff University", "description": "HGMD at Cardiff University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CALM1", "resourceHomeUrl": "http://www.hgmd.cf.ac.uk/ac/index.php", "institution": {"id": 1137, "name": "Cardiff University, Cardiff", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CALM1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1139, "prefix": "aphidbase.transcript", "mirId": "MIR:00000393", "name": "AphidBase Transcript", "pattern": "^ACYPI\\d{6}(-RA)?$", "description": "AphidBase is a centralized bioinformatic resource that was developed to facilitate community annotation of the pea aphid genome by the International Aphid Genomics Consortium (IAGC). The AphidBase Information System was designed to organize and distribute genomic data and annotations for a large international community. This collection references the transcript report, which describes genomic location, sequence and exon information.", "created": "2019-06-11T14:17:10.425+0000", "modified": "2019-06-11T14:17:10.425+0000", "resources": [{"id": 1141, "mirId": "MIR:00100513", "urlPattern": "http://bipaa.genouest.org/apps/grs-2.3/grs?reportID=aphidbase_transcript_report&objectID={$id}", "name": "AphidBase at INRA", "description": "AphidBase at INRA", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ACYPI000159", "resourceHomeUrl": "http://www.aphidbase.com/aphidbase", "institution": {"id": 1140, "name": "INRA UMR, Le Rheu", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ACYPI000159", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1142, "prefix": "affy.probeset", "mirId": "MIR:00000394", "name": "Affymetrix Probeset", "pattern": "\\d{4,}((_[asx])?_at)?", "description": "An Affymetrix ProbeSet is a collection of up to 11 short (~22 nucleotide) microarray probes designed to measure a single gene or a family of genes as a unit. Multiple probe sets may be available for each gene under consideration.", "created": "2019-06-11T14:17:10.647+0000", "modified": "2019-06-11T14:17:10.647+0000", "resources": [{"id": 1144, "mirId": "MIR:00100514", "urlPattern": "https://www.affymetrix.com/LinkServlet?probeset={$id}", "name": "Affymetrix ProbeSet in Santa Clara", "description": "Affymetrix ProbeSet in Santa Clara", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "243002_at", "resourceHomeUrl": "http://www.affymetrix.com/", "institution": {"id": 1143, "name": "Affymetrix", "homeUrl": "https://www.thermofisher.com/uk/en/home/life-science/microarray-analysis.html", "description": "Thermo Fisher Scientific provides innovative Affymetrix\u2122 products, tools, and resources that help advance the work of researchers via microarray analysis", "rorId": "https://ror.org/012kjw534", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1145, "mirId": "MIR:00100672", "urlPattern": "http://cu.affymetrix.bio2rdf.org/describe/?url=http://bio2rdf.org/affymetrix:{$id}", "name": "Bio2RDF", "description": "Bio2RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "243002_at", "resourceHomeUrl": "http://cu.affymetrix.bio2rdf.org/fct/", "institution": {"id": 33, "name": "Bio2RDF.org", "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "243002_at", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1146, "prefix": "treefam", "mirId": "MIR:00000395", "name": "TreeFam", "pattern": "^\\w{1,2}\\d+$", "description": "TreeFam is a database of phylogenetic trees of gene families found in animals. Automatically generated trees are curated, to create a curated resource that presents the accurate evolutionary history of all animal gene families, as well as reliable ortholog and paralog assignments.", "created": "2019-06-11T14:17:10.973+0000", "modified": "2019-06-11T14:17:10.973+0000", "resources": [{"id": 1148, "mirId": "MIR:00100515", "urlPattern": "http://www.treefam.org/family/{$id}", "name": "TreeFam database", "description": "TreeFam database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TF101014", "resourceHomeUrl": "http://www.treefam.org/", "institution": {"id": 1147, "name": "Beijing Genomics Institute", "homeUrl": "https://www.bgi.com", "description": "BGI Genomics is a publicly listed commercial genomics company, providing a wide range of next generation sequencing services and a broad portfolio of genetic tests for medical institutions, research institutions and other public and private partners.\nEstablished in 1999, we have almost 20 years of genomics experience. Our mission is to leverage our genomics expertise in order to advance life science research and improve human health for the benefit of mankind.", "rorId": "https://ror.org/045pn2j94", "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TF101014", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1149, "prefix": "caps", "mirId": "MIR:00000396", "name": "CAPS-DB", "pattern": "^\\d+$", "description": "CAPS-DB is a structural classification of helix-cappings or caps compiled from protein structures. The regions of the polypeptide chain immediately preceding or following an alpha-helix are known as Nt- and Ct cappings, respectively. Caps extracted from protein structures have been structurally classified based on geometry and conformation and organized in a tree-like hierarchical classification where the different levels correspond to different properties of the caps.", "created": "2019-06-11T14:17:11.199+0000", "modified": "2019-06-11T14:17:11.199+0000", "resources": [{"id": 1151, "mirId": "MIR:00100516", "urlPattern": "http://www.bioinsilico.org/cgi-bin/CAPSDB/getCAPScluster?nidcl={$id}", "name": "CAPS-DB at Leeds Institute of Molecular Medicine", "description": "CAPS-DB at Leeds Institute of Molecular Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "434", "resourceHomeUrl": "http://www.bioinsilico.org/cgi-bin/CAPSDB/staticHTML/home", "institution": {"id": 1150, "name": "Leeds Institute of Molecular Medicine, Section of Experimental Therapeutics, University of Leeds, Leeds", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "434", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1152, "prefix": "cubedb", "mirId": "MIR:00000397", "name": "Cube db", "pattern": "^[A-Za-z_0-9]+$", "description": "Cube-DB is a database of pre-evaluated results for detection of functional divergence in human/vertebrate protein families. It analyzes comparable taxonomical samples for all paralogues under consideration, storing functional specialisation at the level of residues. The data are presented as a table of per-residue scores, and mapped onto related structures where available.", "created": "2019-06-11T14:17:11.437+0000", "modified": "2019-06-11T14:17:11.437+0000", "resources": [{"id": 1154, "mirId": "MIR:00100517", "urlPattern": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/data/{$id}/", "name": "Cube db at Bioinformatics Institute (Singapore)", "description": "Cube db at Bioinformatics Institute (Singapore)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AKR", "resourceHomeUrl": "http://epsf.bmad.bii.a-star.edu.sg/cube/db/html/home.html", "institution": {"id": 1153, "name": "BII Bioinformatics Institute", "homeUrl": "http://www.bii.a-star.edu.sg", "description": "The BII focuses on theoretical approaches aimed at understanding biomolecular mechanisms that underlie biological phenomena, the development of computational methods to support this discovery process, and experimental verification of predicted molecular and cellular functions of genes and proteins with biochemical methods.", "rorId": "https://ror.org/044w3nw43", "location": {"countryCode": "SG", "countryName": "Singapore"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AKR", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1155, "prefix": "ideal", "mirId": "MIR:00000398", "name": "IDEAL", "pattern": "^IID\\d+$", "description": "IDEAL provides a collection of knowledge on experimentally verified intrinsically disordered proteins. It contains manual annotations by curators on intrinsically disordered regions, interaction regions to other molecules, post-translational modification sites, references and structural domain assignments.", "created": "2019-06-11T14:17:11.651+0000", "modified": "2019-06-11T14:17:11.651+0000", "resources": [{"id": 1157, "mirId": "MIR:00100518", "urlPattern": "http://idp1.force.cs.is.nagoya-u.ac.jp/IDEAL/ideal.php?id={$id}", "name": "IDEAL at Nagoya University", "description": "IDEAL at Nagoya University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "IID00001", "resourceHomeUrl": "http://www.ideal.force.cs.is.nagoya-u.ac.jp/IDEAL/", "institution": {"id": 1156, "name": "Nagoya University", "homeUrl": "http://en.nagoya-u.ac.jp/", "description": "Nagoya University has a 144-year history, dating from when the Temporary\u3000Medical School/Public Hospital -- the forerunner of today's Nagoya University -- was established in 1871. The University became the last Imperial University of Japan in 1939, and the educational reforms in 1949 led to the beginning of Nagoya University under the new education system. From that time to this day, the University has been pursuing steady development.", "rorId": "https://ror.org/04chrp450", "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "IID00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1158, "prefix": "stap", "mirId": "MIR:00000399", "name": "STAP", "pattern": "^[0-9][A-Za-z0-9]{3}$", "description": "STAP (Statistical Torsional Angles Potentials) was developed since, according to several studies, some nuclear magnetic resonance (NMR) structures are of lower quality, are less reliable and less suitable for structural analysis than high-resolution X-ray crystallographic structures. The refined NMR solution structures (statistical torsion angle potentials; STAP) in the database are refined from the Protein Data Bank (PDB).", "created": "2019-06-11T14:17:11.871+0000", "modified": "2019-06-11T14:17:11.871+0000", "resources": [{"id": 1160, "mirId": "MIR:00100519", "urlPattern": "http://psb.kobic.re.kr/STAP/refinement1/result.php?search={$id}", "name": "STAP at Korean Bioinformation Center", "description": "STAP at Korean Bioinformation Center", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1a24", "resourceHomeUrl": "http://psb.kobic.re.kr/STAP/refinement/", "institution": {"id": 1159, "name": "Korean Bioinformation Center, Korea Research Institute of Bioscience and Biotechnology, Daejeon", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "KR", "countryName": "Korea, Republic of"}}, "location": {"countryCode": "KR", "countryName": "Korea, Republic of"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1a24", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1161, "prefix": "pocketome", "mirId": "MIR:00000400", "name": "Pocketome", "pattern": "^[A-Za-z_0-9]+", "description": "Pocketome is an encyclopedia of conformational ensembles of all druggable binding sites that can be identified experimentally from co-crystal structures in the Protein Data Bank. Each Pocketome entry corresponds to a small molecule binding site in a protein which has been co-crystallized in complex with at least one drug-like small molecule, and is represented in at least two PDB entries.", "created": "2019-06-11T14:17:12.099+0000", "modified": "2019-06-11T14:17:12.099+0000", "resources": [{"id": 1163, "mirId": "MIR:00100520", "urlPattern": "http://www.pocketome.org/files/{$id}.html", "name": "Pocketome at UCSD Skaggs School", "description": "Pocketome at UCSD Skaggs School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1433C_TOBAC_1_252", "resourceHomeUrl": "http://www.pocketome.org/sfSearch.cgi?act=browseall", "institution": {"id": 1162, "name": "UCSD Skaggs School of Pharmacy and Pharmaceutical Sciences, La Jolla, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1433C_TOBAC_1_252", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1169, "prefix": "bugbase.protocol", "mirId": "MIR:00000403", "name": "BugBase Protocol", "pattern": "^\\d+$", "description": "BugBase is a MIAME-compliant microbial gene expression and comparative genomic database. It stores experimental annotation and multiple raw and analysed data formats, as well as protocols for bacterial microarray designs. This collection references design protocols.", "created": "2019-06-11T14:17:12.749+0000", "modified": "2019-06-11T14:17:12.749+0000", "resources": [{"id": 1171, "mirId": "MIR:00100523", "urlPattern": "http://bugs.sgul.ac.uk/bugsbase/tabs/protocol.php?protocol_id={$id}&action=view", "name": "BugBase Protocol at University of London", "description": "BugBase Protocol at University of London", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "67", "resourceHomeUrl": "http://bugs.sgul.ac.uk/E-BUGS", "institution": {"id": 1170, "name": "St George's, University of London", "homeUrl": "https://www.sgul.ac.uk/", "description": "St George\u2019s Hospital Medical School was established in 1733 and initially based at Hyde Park Corner, before moving to our Tooting site in 1980. It was the second institution in England to provide formal training courses for doctors.\nSt George\u2019s has a dynamic research culture, with teams working to improve the health of people of all ages, from children to the elderly, in populations locally and globally.", "rorId": "https://ror.org/040f08y74", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "67", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1172, "prefix": "bugbase.expt", "mirId": "MIR:00000404", "name": "BugBase Expt", "pattern": "^\\d+$", "description": "BugBase is a MIAME-compliant microbial gene expression and comparative genomic database. It stores experimental annotation and multiple raw and analysed data formats, as well as protocols for bacterial microarray designs. This collection references microarray experiments.", "created": "2019-06-11T14:17:12.968+0000", "modified": "2019-06-11T14:17:12.968+0000", "resources": [{"id": 1173, "mirId": "MIR:00100524", "urlPattern": "http://bugs.sgul.ac.uk/bugsbase/tabs/experiment.php?expt_id={$id}&action=view", "name": "BugBase Expt at University of London", "description": "BugBase Expt at University of London", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "288", "resourceHomeUrl": "http://bugs.sgul.ac.uk/E-BUGS", "institution": {"id": 1170, "name": "St George's, University of London", "homeUrl": "https://www.sgul.ac.uk/", "description": "St George\u2019s Hospital Medical School was established in 1733 and initially based at Hyde Park Corner, before moving to our Tooting site in 1980. It was the second institution in England to provide formal training courses for doctors.\nSt George\u2019s has a dynamic research culture, with teams working to improve the health of people of all ages, from children to the elderly, in populations locally and globally.", "rorId": "https://ror.org/040f08y74", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "288", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1174, "prefix": "tol", "mirId": "MIR:00000405", "name": "Tree of Life", "pattern": "^\\d+$", "description": "The Tree of Life Web Project (ToL) is a collaborative effort of biologists and nature enthusiasts from around the world. On more than 10,000 World Wide Web pages, the project provides information about biodiversity, the characteristics of different groups of organisms, and their evolutionary history (phylogeny). \r\n\r\nEach page contains information about a particular group, with pages linked one to another hierarchically, in the form of the evolutionary tree of life. Starting with the root of all Life on Earth and moving out along diverging branches to individual species, the structure of the ToL project thus illustrates the genetic connections between all living things.", "created": "2019-06-11T14:17:13.167+0000", "modified": "2019-06-11T14:17:13.167+0000", "resources": [{"id": 1176, "mirId": "MIR:00100525", "urlPattern": "http://tolweb.org/{$id}", "name": "Tree of Life Web", "description": "Tree of Life Web", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "98034", "resourceHomeUrl": "http://tolweb.org/tree/", "institution": {"id": 1175, "name": "University of Arizona", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "98034", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1177, "prefix": "vario", "mirId": "MIR:00000406", "name": "VariO", "pattern": "^VariO:\\d+$", "description": "The Variation Ontology (VariO) is an ontology for the standardized, systematic description of effects, consequences and mechanisms of variations. It describes the effects of variations at the DNA, RNA and/or protein level.", "created": "2019-06-11T14:17:13.429+0000", "modified": "2019-06-11T14:17:13.429+0000", "resources": [{"id": 1180, "mirId": "MIR:00100566", "urlPattern": "http://purl.bioontology.org/ontology/VARIO/VariO:{$id}", "name": "VariO through BioPortal", "description": "VariO through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0294", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/VARIO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1181, "mirId": "MIR:00100677", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/vario/terms?obo_id=VariO:{$id}", "name": "VariO through OLS", "description": "VariO through OLS", "official": false, "providerCode": "ols", "sampleId": "0294", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/vario", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1179, "mirId": "MIR:00100526", "urlPattern": "http://www.ontobee.org/search?ontology=VariO&keywords=VariO_{$id}&submit=Search+terms", "name": "VariO at Lund University", "description": "VariO at Lund University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0294", "resourceHomeUrl": "http://www.variationontology.org/", "institution": {"id": 1178, "name": "Department of Experimental Medical Science, Lund University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "SE", "countryName": "Sweden"}}, "location": {"countryCode": "SE", "countryName": "Sweden"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0294", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1182, "prefix": "vipr", "mirId": "MIR:00000407", "name": "ViPR Strain", "pattern": "^[A-Za-z 0-9]+$", "description": "The Virus Pathogen Database and Analysis Resource (ViPR) supports bioinformatics workflows for a broad range of human virus pathogens and other related viruses. It provides access to sequence records, gene and protein annotations, immune epitopes, 3D structures, and host factor data. This collection references viral strain information.", "created": "2019-06-11T14:17:13.893+0000", "modified": "2019-06-11T14:17:13.893+0000", "resources": [{"id": 1184, "mirId": "MIR:00100527", "urlPattern": "http://www.viprbrc.org/brc/viprStrainDetails.do?strainName={$id}&decorator=arena", "name": "ViPR Strain at J. Craig Venter Institute", "description": "ViPR Strain at J. Craig Venter Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BeAn 70563", "resourceHomeUrl": "http://www.viprbrc.org/brc/home.do?decorator=vipr", "institution": {"id": 1183, "name": "J. Craig Venter Institute, San Diego, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BeAn 70563", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1185, "prefix": "epd", "mirId": "MIR:00000408", "name": "EPD", "pattern": "^[A-Z-_0-9]+$", "description": "The Eukaryotic Promoter Database (EPD) is an annotated non-redundant collection of eukaryotic POL II promoters, for which the transcription start site has been determined experimentally. Access to promoter sequences is provided by pointers to positions in nucleotide sequence entries. The annotation part of an entry includes description of the initiation site mapping data, cross-references to other databases, and bibliographic references. EPD is structured in a way that facilitates dynamic extraction of biologically meaningful promoter subsets for comparative sequence analysis.", "created": "2019-06-11T14:17:14.109+0000", "modified": "2019-06-11T14:17:14.109+0000", "resources": [{"id": 1186, "mirId": "MIR:00100528", "urlPattern": "http://epd.vital-it.ch/cgi-bin/query_result.pl?out_format=NICE&Entry_0={$id}", "name": "EPD at Swiss Institute of Bioinformatics", "description": "EPD at Swiss Institute of Bioinformatics", "official": false, "providerCode": "sib", "sampleId": "TA_H3", "resourceHomeUrl": "http://epd.vital-it.ch/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TA_H3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1187, "prefix": "rfam", "mirId": "MIR:00000409", "name": "RFAM", "pattern": "^RF\\d{5}$", "description": "The Rfam database is a collection of RNA families, each represented by multiple sequence alignments, consensus secondary structures and covariance models (CMs). The families in Rfam break down into three broad functional classes: non-coding RNA genes, structured cis-regulatory elements and self-splicing RNAs. Typically these functional RNAs often have a conserved secondary structure which may be better preserved than the RNA sequence. The CMs used to describe each family are a slightly more complicated relative of the profile hidden Markov models (HMMs) used by Pfam. CMs can simultaneously model RNA sequence and the structure in an elegant and accurate fashion.", "created": "2019-06-11T14:17:14.331+0000", "modified": "2019-06-11T14:17:14.331+0000", "resources": [{"id": 1188, "mirId": "MIR:00100686", "urlPattern": "https://rfam.xfam.org/family/{$id}", "name": "Rfam at EMBL-EBI", "description": "Rfam at EMBL-EBI", "official": true, "providerCode": "ebi", "sampleId": "RF00230", "resourceHomeUrl": "https://rfam.xfam.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "RF00230", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1189, "prefix": "fbol", "mirId": "MIR:00000410", "name": "Fungal Barcode", "pattern": "^\\d+$", "description": "DNA barcoding is the use of short standardised segments of the genome for identification of species in all the Kingdoms of Life. The goal of the Fungal Barcoding site is to promote the DNA barcoding of fungi and other fungus-like organisms.", "created": "2019-06-11T14:17:14.533+0000", "modified": "2019-06-11T14:17:14.533+0000", "resources": [{"id": 1191, "mirId": "MIR:00100532", "urlPattern": "http://www.fungalbarcoding.org/BioloMICS.aspx?Table=Fungal barcodes&Rec={$id}&Fields=All&ExactMatch=T", "name": "Fungal Barcode at Fungal Biodiversity Centre", "description": "Fungal Barcode at Fungal Biodiversity Centre", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2224", "resourceHomeUrl": "http://www.fungalbarcoding.org/", "institution": {"id": 1190, "name": "Fungal Biodiversity Centre, Utrecht", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2224", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1192, "prefix": "aftol.taxonomy", "mirId": "MIR:00000411", "name": "AFTOL", "pattern": "^\\d+$", "description": "The Assembling the Fungal Tree of Life (AFTOL) project is dedicated to significantly enhancing our understanding of the evolution of the Kingdom Fungi, which represents one of the major clades of life. There are roughly 80,000 described species of Fungi, but the actual diversity in the group has been estimated to be about 1.5 million species.", "created": "2019-06-11T14:17:14.756+0000", "modified": "2019-06-11T14:17:14.756+0000", "resources": [{"id": 1194, "mirId": "MIR:00100533", "urlPattern": "http://wasabi.lutzonilab.net/pub/displayTaxonInfo?aftol_id={$id}", "name": "AFTOL at University of Minnesota", "description": "AFTOL at University of Minnesota", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "959", "resourceHomeUrl": "http://aftol.org/data.php", "institution": {"id": 1193, "name": "Department of Plant Biology, University of Minnesota, Minnesota", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "959", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1195, "prefix": "aspgd.locus", "mirId": "MIR:00000412", "name": "AspGD Locus", "pattern": "^[A-Za-z_0-9]+$", "description": "The Aspergillus Genome Database (AspGD) is a repository for information relating to fungi of the genus Aspergillus, which includes organisms of clinical, agricultural and industrial importance. AspGD facilitates comparative genomics by providing a full-featured genomics viewer, as well as matched and standardized sets of genomic information for the sequenced aspergilli. This collection references gene information.", "created": "2019-06-11T14:17:14.975+0000", "modified": "2019-06-11T14:17:14.975+0000", "resources": [{"id": 1197, "mirId": "MIR:00100534", "urlPattern": "http://www.aspergillusgenome.org/cgi-bin/locus.pl?dbid={$id}", "name": "AspGD at Stanford Medical School", "description": "AspGD at Stanford Medical School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ASPL0000349247", "resourceHomeUrl": "http://www.aspgd.org/", "institution": {"id": 1196, "name": "Department of Genetics, Stanford University Medical School, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ASPL0000349247", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1198, "prefix": "aspgd.protein", "mirId": "MIR:00000413", "name": "AspGD Protein", "pattern": "^[A-Za-z_0-9]+$", "description": "The Aspergillus Genome Database (AspGD) is a repository for information relating to fungi of the genus Aspergillus, which includes organisms of clinical, agricultural and industrial importance. AspGD facilitates comparative genomics by providing a full-featured genomics viewer, as well as matched and standardized sets of genomic information for the sequenced aspergilli. This collection references protein information.", "created": "2019-06-11T14:17:15.227+0000", "modified": "2019-06-11T14:17:15.227+0000", "resources": [{"id": 1199, "mirId": "MIR:00100535", "urlPattern": "http://www.aspergillusgenome.org/cgi-bin/protein/proteinPage.pl?dbid={$id}", "name": "AspGD Protein at Stanford Medical School", "description": "AspGD Protein at Stanford Medical School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ASPL0000349247", "resourceHomeUrl": "http://www.aspgd.org/", "institution": {"id": 1196, "name": "Department of Genetics, Stanford University Medical School, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ASPL0000349247", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1237, "prefix": "ndc", "mirId": "MIR:00000431", "name": "National Drug Code", "pattern": "^\\d+\\-\\d+\\-\\d+", "description": "The National Drug Code (NDC) is a unique, three-segment number used by the Food and Drug Administration (FDA) to identify drug products for commercial use. This is required by the Drug Listing Act of 1972. The FDA publishes and updates the listed NDC numbers daily.", "created": "2019-06-11T14:17:18.754+0000", "modified": "2019-06-11T14:17:18.754+0000", "resources": [{"id": 1239, "mirId": "MIR:00100554", "urlPattern": "http://www.hipaaspace.com/Medical_Billing/Coding/National.Drug.Codes/{$id}", "name": "National Drug Code at Food and Drug Administration", "description": "National Drug Code at Food and Drug Administration", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "0002-1975-61", "resourceHomeUrl": "http://www.accessdata.fda.gov/scripts/cder/ndc/", "institution": {"id": 1238, "name": "U.S. Food and Drug Administration, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1240, "mirId": "MIR:00100700", "urlPattern": "http://ndc.bio2rdf.org/describe/?url=http://bio2rdf.org/ndc:{$id}", "name": "Bio2RDF", "description": "Bio2RDF", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0002-1975-61", "resourceHomeUrl": "http://ndc.bio2rdf.org/fct", "institution": {"id": 33, "name": "Bio2RDF.org", "homeUrl": "https://bio2rdf.org", "description": "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences. Bio2RDF defines a set of simple conventions to create RDF(S) compatible Linked Data from a diverse set of heterogeneously formatted sources obtained from multiple data providers.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0002-1975-61", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1200, "prefix": "autdb", "mirId": "MIR:00000415", "name": "AutDB", "pattern": "^[A-Z]+[A-Z-0-9]{2,}$", "description": "AutDB is a curated database for autism research. It is built on information extracted from the studies on molecular genetics and biology of Autism Spectrum Disorders (ASD). The four modules of AutDB include information on Human Genes, Animal models, Protein Interactions (PIN) and Copy Number Variants (CNV) respectively. It provides an annotated list of ASD candidate genes in the form of reference dataset for interrogating molecular mechanisms underlying the disorder.", "created": "2019-06-11T14:17:15.426+0000", "modified": "2019-06-11T14:17:15.426+0000", "resources": [{"id": 1202, "mirId": "MIR:00100538", "urlPattern": "http://autism.mindspec.org/GeneDetail/{$id}", "name": "AutDB at MindSpec", "description": "AutDB at MindSpec", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ADA", "resourceHomeUrl": "http://autism.mindspec.org/autdb/", "institution": {"id": 1201, "name": "MindSpec Inc., Fairfax, Virginia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ADA", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1203, "prefix": "bacmap.map", "mirId": "MIR:00000416", "name": "BacMap Map", "pattern": "^\\w+(\\_)?\\d+(\\.\\d+)?$", "description": "BacMap is an electronic, interactive atlas of fully sequenced bacterial genomes. It contains labeled, zoomable and searchable chromosome maps for sequenced prokaryotic (archaebacterial and eubacterial) species. Each map can be zoomed to the level of individual genes and each gene is hyperlinked to a richly annotated gene card. All bacterial genome maps are supplemented with separate prophage genome maps as well as separate tRNA and rRNA maps. Each bacterial chromosome entry in BacMap contains graphs and tables on a variety of gene and protein statistics. Likewise, every bacterial species entry contains a bacterial 'biography' card, with taxonomic details, phenotypic details, textual descriptions and images. This collection references genome map information.", "created": "2019-06-11T14:17:15.634+0000", "modified": "2019-06-11T14:17:15.634+0000", "resources": [{"id": 1204, "mirId": "MIR:00100539", "urlPattern": "http://bacmap.wishartlab.com/maps/{$id}/index.html", "name": "BacMap Genome Map at University of Alberta", "description": "BacMap Genome Map at University of Alberta", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AP011135", "resourceHomeUrl": "http://bacmap.wishartlab.com/", "institution": {"id": 1037, "name": "Department of Computing Science, Food and Nutritional Science, University of Alberta, Edmonton", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AP011135", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1205, "prefix": "bgee.family", "mirId": "MIR:00000417", "name": "Bgee family", "pattern": "^(ENSFM|ENSGTV:)\\d+$", "description": "Bgee is a database of gene expression patterns within particular anatomical structures within a species, and between different animal species. This collection refers to expression across species.", "created": "2019-06-11T14:17:15.821+0000", "modified": "2019-06-11T14:17:15.821+0000", "resources": [{"id": 1207, "mirId": "MIR:00100540", "urlPattern": "http://bgee.unil.ch/bgee/bgee?page=gene_family&action=family_details&gene_family_id={$id}", "name": "Bgee at Lausanne", "description": "Bgee at Lausanne", "official": false, "providerCode": "sib", "sampleId": "ENSFM00500000270089", "resourceHomeUrl": "http://bgee.unil.ch/bgee/bgee", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ENSFM00500000270089", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1208, "prefix": "bgee.gene", "mirId": "MIR:00000418", "name": "Bgee gene", "pattern": "^[A-Za-z]+\\d+$", "description": "Bgee is a database to retrieve and compare gene expression patterns in multiple species, produced from multiple data types (RNA-Seq, Affymetrix, in situ hybridization, and EST data). This collection references genes in Bgee.", "created": "2019-06-11T14:17:16.067+0000", "modified": "2019-06-11T14:17:16.067+0000", "resources": [{"id": 1210, "mirId": "MIR:00100541", "urlPattern": "https://bgee.org/?page=gene&gene_id={$id}", "name": "Bgee gene", "description": "Bgee gene", "official": false, "providerCode": "sib", "sampleId": "FBgn0000015", "resourceHomeUrl": "https://bgee.org/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "FBgn0000015", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1211, "prefix": "bgee.stage", "mirId": "MIR:00000419", "name": "Bgee stage", "pattern": "^(FBvd|XtroDO|HsapDO|MmusDO)\\:\\d+$", "description": "Bgee is a database of gene expression patterns within particular anatomical structures within a species, and between different animal species. This collection refers to developmental stages.", "created": "2019-06-11T14:17:16.333+0000", "modified": "2019-06-11T14:17:16.333+0000", "resources": [{"id": 1212, "mirId": "MIR:00100542", "urlPattern": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organs&stage_id={$id}&stage_children=on", "name": "Bgee at Lausanne", "description": "Bgee at Lausanne", "official": false, "providerCode": "sib", "sampleId": "HsapDO:0000004", "resourceHomeUrl": "http://bgee.unil.ch/bgee/bgee", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HsapDO:0000004", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1213, "prefix": "bgee.organ", "mirId": "MIR:00000420", "name": "Bgee organ", "pattern": "^(XAO|ZFA|EHDAA|EMAPA|EV|MA)\\:\\d+$", "description": "Bgee is a database of gene expression patterns within particular anatomical structures within a species, and between different animal species. This collection refers to anatomical structures.", "created": "2019-06-11T14:17:16.514+0000", "modified": "2019-06-11T14:17:16.514+0000", "resources": [{"id": 1214, "mirId": "MIR:00100543", "urlPattern": "http://bgee.unil.ch/bgee/bgee?page=anatomy&action=organ_details&organ_id={$id}&organ_children=on", "name": "Bgee at Lausanne", "description": "Bgee at Lausanne", "official": false, "providerCode": "sib", "sampleId": "EHDAA:2185", "resourceHomeUrl": "http://bgee.unil.ch/bgee/bgee", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EHDAA:2185", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1215, "prefix": "biocarta.pathway", "mirId": "MIR:00000421", "name": "BioCarta Pathway", "pattern": "^([hm]\\_)?\\w+Pathway$", "description": "BioCarta is a supplier and distributor of characterized reagents and assays for biopharmaceutical and academic research. It catalogs community produced online maps depicting molecular relationships from areas of active research, generating classical pathways as well as suggestions for new pathways. This collections references pathway maps.", "created": "2019-06-11T14:17:16.688+0000", "modified": "2019-06-11T14:17:16.688+0000", "resources": [{"id": 1216, "mirId": "MIR:00100544", "urlPattern": "https://cgap.nci.nih.gov/Pathways/BioCarta/{$id}", "name": "BioCarta Pathway at NCI", "description": "BioCarta Pathway at NCI", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "h_aktPathway", "resourceHomeUrl": "https://www.biocarta.com/", "institution": {"id": 442, "name": "National Cancer Institute, Center for Bioinformatics, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "h_aktPathway", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1219, "prefix": "gmd.profile", "mirId": "MIR:00000423", "name": "Golm Metabolome Database Profile", "pattern": "^([0-9a-fA-F]){8}(-([0-9a-fA-F]){4}){3}-([0-9a-fA-F]){12}$", "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. GMD's metabolite profiles provide relative metabolite concentrations normalised according to fresh weight (or comparable quantitative data, such as volume, cell count, etc.) and internal standards (e.g. ribotol) of biological reference conditions and tissues.", "created": "2019-06-11T14:17:17.038+0000", "modified": "2019-06-11T14:17:17.038+0000", "resources": [{"id": 1220, "mirId": "MIR:00100546", "urlPattern": "http://gmd.mpimp-golm.mpg.de/profile/default.aspx?XemlId={$id}", "name": "Golm Metabolome Database (Profile) at Max Planck Institute of Molecular Plant Physiology", "description": "Golm Metabolome Database (Profile) at Max Planck Institute of Molecular Plant Physiology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "10b38aaf-b977-4950-85b8-f4775f66658d", "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", "institution": {"id": 806, "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "10b38aaf-b977-4950-85b8-f4775f66658d", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1221, "prefix": "gmd.gcms", "mirId": "MIR:00000424", "name": "Golm Metabolome Database GC-MS spectra", "pattern": "^([0-9a-fA-F]){8}(-([0-9a-fA-F]){4}){3}-([0-9a-fA-F]){12}$", "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. Analytes are subjected to a gas chromatograph coupled to a mass spectrometer, which records the mass spectrum and the retention time linked to an analyte. This collection references GC-MS spectra.", "created": "2019-06-11T14:17:17.255+0000", "modified": "2019-06-11T14:17:17.255+0000", "resources": [{"id": 1222, "mirId": "MIR:00100547", "urlPattern": "http://gmd.mpimp-golm.mpg.de/Spectrums/{$id}", "name": "Golm Metabolome Database (GC-MS Spectra) at Max Planck Institute of Molecular Plant Physiology", "description": "Golm Metabolome Database (GC-MS Spectra) at Max Planck Institute of Molecular Plant Physiology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "53d583d8-40c6-40e1-9296-23f821cd77a5", "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", "institution": {"id": 806, "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "53d583d8-40c6-40e1-9296-23f821cd77a5", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1223, "prefix": "gmd.ref", "mirId": "MIR:00000425", "name": "Golm Metabolome Database Reference Substance", "pattern": "^([0-9a-fA-F]){8}(-([0-9a-fA-F]){4}){3}-([0-9a-fA-F]){12}$", "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. Since metabolites often cannot be obtained in their respective native biological state, for example organic acids may be only acquirable as salts, the concept of reference substance was introduced. This collection references reference substances.", "created": "2019-06-11T14:17:17.475+0000", "modified": "2019-06-11T14:17:17.475+0000", "resources": [{"id": 1224, "mirId": "MIR:00100548", "urlPattern": "http://gmd.mpimp-golm.mpg.de/ReferenceSubstances/{$id}", "name": "Golm Metabolome Database (Reference Substance) at Max Planck Institute of Molecular Plant Physiology", "description": "Golm Metabolome Database (Reference Substance) at Max Planck Institute of Molecular Plant Physiology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "8cf84adb-b4db-4807-ac98-0004247c35df", "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", "institution": {"id": 806, "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "8cf84adb-b4db-4807-ac98-0004247c35df", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1225, "prefix": "gmd.analyte", "mirId": "MIR:00000426", "name": "Golm Metabolome Database Analyte", "pattern": "^([0-9a-fA-F]){8}(-([0-9a-fA-F]){4}){3}-([0-9a-fA-F]){12}$", "description": "Golm Metabolome Database (GMD) provides public access to custom mass spectral libraries, metabolite profiling experiments as well as additional information and tools. For GC-MS profiling analyses, polar metabolite extracts are chemically converted, i.e. derivatised into less polar and volatile compounds, so called analytes. This collection references analytes.", "created": "2019-06-11T14:17:17.661+0000", "modified": "2019-06-11T14:17:17.661+0000", "resources": [{"id": 1226, "mirId": "MIR:00100549", "urlPattern": "http://gmd.mpimp-golm.mpg.de/Analytes/{$id}", "name": "Golm Metabolome Database (Analyte) at Max Planck Institute of Molecular Plant Physiology", "description": "Golm Metabolome Database (Analyte) at Max Planck Institute of Molecular Plant Physiology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4f0fa9b6-514f-4ff4-98cc-0009bc08eb80", "resourceHomeUrl": "http://gmd.mpimp-golm.mpg.de/", "institution": {"id": 806, "name": "Max Planck Institute of Molecular Plant Physiology, Potsdam", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4f0fa9b6-514f-4ff4-98cc-0009bc08eb80", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1227, "prefix": "intact.molecule", "mirId": "MIR:00000427", "name": "IntAct Molecule", "pattern": "^EBI\\-[0-9]+$", "description": "IntAct provides a freely available, open source database system and analysis tools for protein interaction data. This collection references interactor molecules.", "created": "2019-06-11T14:17:17.850+0000", "modified": "2019-06-11T14:17:17.850+0000", "resources": [{"id": 1228, "mirId": "MIR:00100550", "urlPattern": "https://www.ebi.ac.uk/intact/molecule/{$id}", "name": "IntAct Molecule at EBI", "description": "IntAct Molecule at EBI", "official": false, "providerCode": "ebi", "sampleId": "EBI-366083", "resourceHomeUrl": "https://www.ebi.ac.uk/intact/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EBI-366083", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1229, "prefix": "depod", "mirId": "MIR:00000428", "name": "DEPOD", "pattern": "^[A-Z0-9]+$", "description": "The human DEPhOsphorylation Database (DEPOD) contains information on known human active phosphatases and their experimentally verified protein and nonprotein substrates. Reliability scores are provided for dephosphorylation interactions, according to the type of assay used, as well as the number of laboratories that have confirmed such interaction. Phosphatase and substrate entries are listed along with the dephosphorylation site, bioassay type, and original literature, and contain links to other resources.", "created": "2019-06-11T14:17:18.034+0000", "modified": "2019-06-11T14:17:18.034+0000", "resources": [{"id": 1231, "mirId": "MIR:00100551", "urlPattern": "http://www.depod.bioss.uni-freiburg.de/showp.php?gene={$id}", "name": "DEPOD at EMBL", "description": "DEPOD at EMBL", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PTPN1", "resourceHomeUrl": "http://www.depod.bioss.uni-freiburg.de", "institution": {"id": 1230, "name": "European Molecular Biology Laboratory EMBL, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PTPN1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1232, "prefix": "cst", "mirId": "MIR:00000429", "name": "Cell Signaling Technology Pathways", "pattern": "^[A-Za-z0-9_-]+$", "description": "Cell Signaling Technology is a commercial organisation which provides a pathway portal to showcase their phospho-antibody products. This collection references pathways.", "created": "2019-06-11T14:17:18.324+0000", "modified": "2019-06-11T14:17:18.324+0000", "resources": [{"id": 1234, "mirId": "MIR:00100552", "urlPattern": "http://www.cellsignal.com/reference/pathway/{$id}.html", "name": "CST Pathways at Cell Signaling Technology", "description": "CST Pathways at Cell Signaling Technology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Akt_PKB", "resourceHomeUrl": "http://www.cellsignal.com/pathways/index.html", "institution": {"id": 1233, "name": "Cell Signaling Technology, Inc., Danvers, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Akt_PKB", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1241, "prefix": "phytozome.locus", "mirId": "MIR:00000432", "name": "Phytozome Locus", "pattern": "^[A-Za-z0-9]+$", "description": "Phytozome is a project to facilitate comparative genomic studies amongst green plants. Famlies of orthologous and paralogous genes that represent the modern descendents of ancestral gene sets are constructed at key phylogenetic nodes. These families allow easy access to clade specific orthology/paralogy relationships as well as clade specific genes and gene expansions. This collection references locus information.", "created": "2019-06-11T14:17:19.049+0000", "modified": "2019-06-11T14:17:19.049+0000", "resources": [{"id": 1243, "mirId": "MIR:00100556", "urlPattern": "http://www.phytozome.net/genePage.php?crown&method=0&search=1&detail=1&searchText=locusname:{$id}", "name": "Phytozome Locus at Joint Genome Institute", "description": "Phytozome Locus at Joint Genome Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Glyma0021s00410", "resourceHomeUrl": "http://www.phytozome.net/", "institution": {"id": 1242, "name": "Joint Genome Institute, California, and the Center for Integrative Genomics, Lausanne", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Glyma0021s00410", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1244, "prefix": "subtilist", "mirId": "MIR:00000433", "name": "SubtiList", "pattern": "^BG\\d+$", "description": "SubtiList serves to collate and integrate various aspects of the genomic information from B. subtilis, the paradigm of sporulating Gram-positive bacteria.\r\nSubtiList provides a complete dataset of DNA and protein sequences derived from the paradigm strain B. subtilis 168, linked to the relevant annotations and functional assignments.", "created": "2019-06-11T14:17:19.310+0000", "modified": "2019-06-11T14:17:19.310+0000", "resources": [{"id": 1246, "mirId": "MIR:00100557", "urlPattern": "http://genolist.pasteur.fr/SubtiList/genome.cgi?external_query+{$id}", "name": "SubtiList at Pasteur Institute", "description": "SubtiList at Pasteur Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BG11523", "resourceHomeUrl": "http://genolist.pasteur.fr/SubtiList/", "institution": {"id": 1245, "name": "Pasteur Institute, Paris", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BG11523", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1247, "prefix": "dailymed", "mirId": "MIR:00000434", "name": "DailyMed", "pattern": "^[A-Za-z0-9-]+", "description": "DailyMed provides information about marketed drugs. This information includes FDA labels (package inserts). The Web site provides a standard, comprehensive, up-to-date, look-up and download resource of medication content and labeling as found in medication package inserts. Drug labeling is the most recent submitted to the Food and Drug Administration (FDA) and currently in use; it may include, for example, strengthened warnings undergoing FDA review or minor editorial changes. These labels have been reformatted to make them easier to read.", "created": "2019-06-11T14:17:19.532+0000", "modified": "2019-06-11T14:17:19.532+0000", "resources": [{"id": 1249, "mirId": "MIR:00100558", "urlPattern": "https://dailymed.nlm.nih.gov/dailymed/drugInfo.cfm?setid={$id}", "name": "DailyMed at NLM", "description": "DailyMed at NLM", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "973a9333-fec7-46dd-8eb5-25738f06ee54", "resourceHomeUrl": "https://dailymed.nlm.nih.gov/dailymed/", "institution": {"id": 1248, "name": "U.S. National Library of Medicine, Bethesda, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "973a9333-fec7-46dd-8eb5-25738f06ee54", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1250, "prefix": "sider.drug", "mirId": "MIR:00000435", "name": "SIDER Drug", "pattern": "^\\d+$", "description": "SIDER (Side Effect Resource) is a public, computer-readable side effect resource that connects drugs to side effect terms. It aggregates dispersed public information on side effects. This collection references drugs in SIDER.", "created": "2019-06-11T14:17:19.846+0000", "modified": "2019-06-11T14:17:19.846+0000", "resources": [{"id": 1252, "mirId": "MIR:00100559", "urlPattern": "http://sideeffects.embl.de/drugs/{$id}/", "name": "SIDER Drug v2 at EMBL (Heidelberg)", "description": "SIDER Drug v2 at EMBL (Heidelberg)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2244", "resourceHomeUrl": "http://sideeffects.embl.de/", "institution": {"id": 1251, "name": "Structural and Computational Biology Unit, European Molecular Biology Laboratory, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2244", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1253, "prefix": "sider.effect", "mirId": "MIR:00000436", "name": "SIDER Side Effect", "pattern": "^C\\d+$", "description": "SIDER (Side Effect Resource) is a public, computer-readable side effect resource that connects drugs to side effect terms. It aggregates dispersed public information on side effects. This collection references side effects of drugs as referenced in SIDER.", "created": "2019-06-11T14:17:20.079+0000", "modified": "2019-06-11T14:17:20.079+0000", "resources": [{"id": 1254, "mirId": "MIR:00100560", "urlPattern": "http://sideeffects.embl.de/se/{$id}/", "name": "SIDER Side Effect v2 at EMBL (Heidelberg)", "description": "SIDER Side Effect v2 at EMBL (Heidelberg)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "C0017565", "resourceHomeUrl": "http://sideeffects.embl.de/", "institution": {"id": 1251, "name": "Structural and Computational Biology Unit, European Molecular Biology Laboratory, Heidelberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C0017565", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1255, "prefix": "wikigenes", "mirId": "MIR:00000437", "name": "WikiGenes", "pattern": "^\\d+$", "description": "WikiGenes is a collaborative knowledge resource for the life sciences, which is based on the general wiki idea but employs specifically developed technology to serve as a rigorous scientific tool. The rationale behind WikiGenes is to provide a platform for the scientific community to collect, communicate and evaluate knowledge about genes, chemicals, diseases and other biomedical concepts in a bottom-up process.", "created": "2019-06-11T14:17:20.303+0000", "modified": "2019-06-11T14:17:20.303+0000", "resources": [{"id": 1257, "mirId": "MIR:00100567", "urlPattern": "http://www.wikigenes.org/e/gene/e/{$id}.html", "name": "WikiGenes at Massachusetts Institute of Technology", "description": "WikiGenes at Massachusetts Institute of Technology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "3771877", "resourceHomeUrl": "http://www.wikigenes.org/", "institution": {"id": 1256, "name": "Computer Science and Artificial Intelligence Laboratory, Massachusetts Institute of Technology, Cambridge, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3771877", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1258, "prefix": "broad", "mirId": "MIR:00000438", "name": "Broad Fungal Genome Initiative", "pattern": "^S\\d+$", "description": "Magnaporthe grisea, the causal agent of rice blast disease, is one of the most devasting threats to food security worldwide and is a model organism for studying fungal phytopathogenicity and host-parasite interactions. The Magnaporthe comparative genomics database provides accesses to multiple fungal genomes from the Magnaporthaceae family to facilitate the comparative analysis. As part of the Broad Fungal Genome Initiative, the Magnaporthe comparative project includes the finished M. oryzae (formerly M. grisea) genome, as well as the draft assemblies of Gaeumannomyces graminis var. tritici and M. poae.", "created": "2019-06-11T14:17:20.539+0000", "modified": "2019-06-11T14:17:20.539+0000", "resources": [{"id": 1260, "mirId": "MIR:00100569", "urlPattern": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/GeneDetails.html?sp={$id}", "name": "Broad Fungal Genome Initiative at Broad Institute", "description": "Broad Fungal Genome Initiative at Broad Institute", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "S7000002168151102", "resourceHomeUrl": "https://www.broadinstitute.org/annotation/genome/magnaporthe_grisea/", "institution": {"id": 1259, "name": "Broad Institute of MIT and Harvard, Cambridge, Massachuchetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "S7000002168151102", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1261, "prefix": "coriell", "mirId": "MIR:00000439", "name": "Coriell Cell Repositories", "pattern": "^[A-Z]{2}\\d+$", "description": "The Coriell Cell Repositories provide essential research reagents to the scientific community by establishing, verifying, maintaining, and distributing cell cultures and DNA derived from cell cultures. These collections, supported by funds from the National Institutes of Health (NIH) and several foundations, are extensively utilized by research scientists around the world.", "created": "2019-06-11T14:17:20.763+0000", "modified": "2019-06-11T14:17:20.763+0000", "resources": [{"id": 1263, "mirId": "MIR:00100570", "urlPattern": "http://ccr.coriell.org/Sections/Search/Sample_Detail.aspx?Ref={$id}", "name": "Coriell Cell Repositories at Coriell Institute", "description": "Coriell Cell Repositories at Coriell Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "GM17027", "resourceHomeUrl": "http://ccr.coriell.org/", "institution": {"id": 1262, "name": "Coriell Institute for Medical Research, New Jersey", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GM17027", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1264, "prefix": "corum", "mirId": "MIR:00000440", "name": "CORUM", "pattern": "^\\d+$", "description": "The CORUM database provides a resource of manually annotated protein complexes from mammalian organisms. Annotation includes protein complex function, localization, subunit composition, literature references and more. All information is obtained from individual experiments published in scientific articles, data from high-throughput experiments is excluded.", "created": "2019-06-11T14:17:20.995+0000", "modified": "2019-06-11T14:17:20.995+0000", "resources": [{"id": 1266, "mirId": "MIR:00100571", "urlPattern": "https://mips.helmholtz-muenchen.de/corum/?id={$id}", "name": "CORUM at Institute for Bioinformatics and Systems Biology (Germany)", "description": "CORUM at Institute for Bioinformatics and Systems Biology (Germany)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "100", "resourceHomeUrl": "https://mips.helmholtz-muenchen.de/genre/proj/corum/", "institution": {"id": 1265, "name": "Institute for Bioinformatics and Systems Biology, Helmholtz Zentrum M&uuml;nchen-German Research Center for Environmental Health, Neuherberg", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1267, "prefix": "ecoliwiki", "mirId": "MIR:00000442", "name": "EcoliWiki", "pattern": "^[A-Za-z0-9-]+$", "description": "EcoliWiki is a wiki-based resource to store information related to non-pathogenic E. coli, its phages, plasmids, and mobile genetic elements. This collection references genes.", "created": "2019-06-11T14:17:21.287+0000", "modified": "2019-06-11T14:17:21.287+0000", "resources": [{"id": 1269, "mirId": "MIR:00100573", "urlPattern": "http://ecoliwiki.net/colipedia/index.php/{$id}:Gene", "name": "EcoliWiki at Texas Agrilife Research", "description": "EcoliWiki at Texas Agrilife Research", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "aaeA", "resourceHomeUrl": "http://ecoliwiki.net/colipedia/", "institution": {"id": 1268, "name": "Texas Agrilife Research, Texas A&M University College Station", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "aaeA", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1270, "prefix": "genprop", "mirId": "MIR:00000443", "name": "Genome Properties", "pattern": "^GenProp\\d+$", "description": "Genome properties is an annotation system whereby functional attributes can be assigned to a genome, based on the presence of a defined set of protein signatures within that genome.", "created": "2019-06-11T14:17:21.507+0000", "modified": "2019-06-11T14:17:21.507+0000", "resources": [{"id": 1271, "mirId": "MIR:00100910", "urlPattern": "https://www.ebi.ac.uk/interpro/genomeproperties/#{$id}", "name": "Genome Properties", "description": "Genome Properties", "official": true, "providerCode": "ebi", "sampleId": "GenProp0699", "resourceHomeUrl": "https://www.ebi.ac.uk/interpro/genomeproperties/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GenProp0699", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1272, "prefix": "jstor", "mirId": "MIR:00000444", "name": "JSTOR", "pattern": "^\\d+$", "description": "JSTOR (Journal Storage) is a digital library containing digital versions of historical academic journals, as well as books, pamphlets and current issues of journals. Some public domain content is free to access, while other articles require registration.", "created": "2019-06-11T14:17:21.690+0000", "modified": "2019-06-11T14:17:21.690+0000", "resources": [{"id": 1274, "mirId": "MIR:00100575", "urlPattern": "http://www.jstor.org/stable/{$id}", "name": "JSTOR Online", "description": "JSTOR Online", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "3075966", "resourceHomeUrl": "http://www.jstor.org/", "institution": {"id": 1273, "name": "Ithaka Harbors, Inc., New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3075966", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1275, "prefix": "ma", "mirId": "MIR:00000445", "name": "Mouse Adult Gross Anatomy", "pattern": "^MA:\\d+$", "description": "A structured controlled vocabulary of the adult anatomy of the mouse (Mus)", "created": "2019-06-11T14:17:21.919+0000", "modified": "2019-06-11T14:17:21.919+0000", "resources": [{"id": 1276, "mirId": "MIR:00100576", "urlPattern": "http://purl.bioontology.org/ontology/MA/MA:{$id}", "name": "Mouse Adult Gross Anatomy through BioPortal", "description": "Mouse Adult Gross Anatomy through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0002502", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/MA", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1277, "mirId": "MIR:00100577", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ma/terms?obo_id=MA:{$id}", "name": "Mouse Adult Gross Anatomy through OLS", "description": "Mouse Adult Gross Anatomy through OLS", "official": false, "providerCode": "ols", "sampleId": "0002502", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ma", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1279, "mirId": "MIR:00100578", "urlPattern": "http://www.informatics.jax.org/searches/AMA.cgi?id=MA:{$id}", "name": "Mouse Adult Gross Anatomy at The Jackson Laboratory", "description": "Mouse Adult Gross Anatomy at The Jackson Laboratory", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "0002502", "resourceHomeUrl": "http://www.informatics.jax.org/", "institution": {"id": 1278, "name": "The Jackson Laboratory, Bar Harbor, Maine", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0002502", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1283, "prefix": "unimod", "mirId": "MIR:00000447", "name": "Unimod", "pattern": "^\\d+$", "description": "Unimod is a public domain database created to provide a community supported, comprehensive database of protein modifications for mass spectrometry applications. That is, accurate and verifiable values, derived from elemental compositions, for the mass differences introduced by all types of natural and artificial modifications. Other important information includes any mass change, (neutral loss), that occurs during MS/MS analysis, and site specificity, (which residues are susceptible to modification and any constraints on the position of the modification within the protein or peptide).", "created": "2019-06-11T14:17:22.748+0000", "modified": "2019-06-11T14:17:22.748+0000", "resources": [{"id": 1285, "mirId": "MIR:00100581", "urlPattern": "http://www.unimod.org/modifications_view.php?editid1={$id}", "name": "Unimod at Matrix Sciences Ltd.", "description": "Unimod at Matrix Sciences Ltd.", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1200", "resourceHomeUrl": "http://www.unimod.org/", "institution": {"id": 1284, "name": "Matrix Science Ltd., London", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1200", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1286, "prefix": "vbrc", "mirId": "MIR:00000448", "name": "VBRC", "pattern": "^\\d+$", "description": "The VBRC provides bioinformatics resources to support scientific research directed at viruses belonging to the Arenaviridae, Bunyaviridae, Filoviridae, Flaviviridae, Paramyxoviridae, Poxviridae, and Togaviridae families. The Center consists of a relational database and web application that support the data storage, annotation, analysis, and information exchange goals of this work. Each data release contains the complete genomic sequences for all viral pathogens and related strains that are available for species in the above-named families. In addition to sequence data, the VBRC provides a curation for each virus species, resulting in a searchable, comprehensive mini-review of gene function relating genotype to biological phenotype, with special emphasis on pathogenesis.", "created": "2019-06-11T14:17:22.962+0000", "modified": "2019-06-11T14:17:22.962+0000", "resources": [{"id": 1288, "mirId": "MIR:00100582", "urlPattern": "http://vbrc.org/gene_detail.asp?gene_id={$id}", "name": "VBRC at University of Alabama", "description": "VBRC at University of Alabama", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "35742", "resourceHomeUrl": "http://vbrc.org/", "institution": {"id": 1287, "name": "University of Alabama, Birmingham and the University of Victoria, British Columbia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "35742", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1289, "prefix": "viralzone", "mirId": "MIR:00000449", "name": "ViralZone", "pattern": "^\\d+$", "description": "ViralZone is a resource bridging textbook knowledge with genomic and proteomic sequences. It provides fact sheets on all known virus families/genera with easy access to sequence data. A selection of reference strains (RefStrain) provides annotated standards to circumvent the exponential increase of virus sequences. Moreover ViralZone offers a complete set of detailed and accurate virion pictures.", "created": "2019-06-11T14:17:23.207+0000", "modified": "2019-06-11T14:17:23.207+0000", "resources": [{"id": 1291, "mirId": "MIR:00100583", "urlPattern": "http://viralzone.expasy.org/all_by_protein/{$id}.html", "name": "ViralZone at SIB", "description": "ViralZone at SIB", "official": false, "providerCode": "sib", "sampleId": "992", "resourceHomeUrl": "http://www.expasy.org/viralzone/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "992", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1294, "prefix": "rgd.qtl", "mirId": "MIR:00000451", "name": "Rat Genome Database qTL", "pattern": "^\\d+$", "description": "Rat Genome Database seeks to collect, consolidate, and integrate rat genomic and genetic data with curated functional and physiological data and make these data widely available to the scientific community. This collection references quantitative trait loci (qTLs), providing phenotype and disease descriptions, mapping, and strain information as well as links to markers and candidate genes.", "created": "2019-06-11T14:17:23.659+0000", "modified": "2019-06-11T14:17:23.659+0000", "resources": [{"id": 1296, "mirId": "MIR:00100586", "urlPattern": "http://rgd.mcw.edu/rgdweb/report/qtl/main.html?id={$id}", "name": "Rat Genome Database qTL at Medical College of Wisconsin", "description": "Rat Genome Database qTL at Medical College of Wisconsin", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1354581", "resourceHomeUrl": "http://rgd.mcw.edu/", "institution": {"id": 1295, "name": "Medical College of Wisconsin, Milwaukee, Wisconsin", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1354581", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1297, "prefix": "rgd.strain", "mirId": "MIR:00000452", "name": "Rat Genome Database strain", "pattern": "^\\d+$", "description": "Rat Genome Database seeks to collect, consolidate, and integrate rat genomic and genetic data with curated functional and physiological data and make these data widely available to the scientific community. This collection references strain reports, which include a description of strain origin, disease, phenotype, genetics and immunology.", "created": "2019-06-11T14:17:23.876+0000", "modified": "2019-06-11T14:17:23.876+0000", "resources": [{"id": 1298, "mirId": "MIR:00100587", "urlPattern": "http://rgd.mcw.edu/rgdweb/report/strain/main.html?id={$id}", "name": "Rat Genome Database strain at Medical College of Wisconsin", "description": "Rat Genome Database strain at Medical College of Wisconsin", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "5688061", "resourceHomeUrl": "http://rgd.mcw.edu/", "institution": {"id": 1295, "name": "Medical College of Wisconsin, Milwaukee, Wisconsin", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5688061", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1299, "prefix": "door", "mirId": "MIR:00000453", "name": "DOOR", "pattern": "^\\d+$", "description": "DOOR (Database for prOkaryotic OpeRons) contains computationally predicted operons of all the sequenced prokaryotic genomes. It includes operons for RNA genes.", "created": "2019-06-11T14:17:24.062+0000", "modified": "2019-06-11T14:17:24.062+0000", "resources": [{"id": 1301, "mirId": "MIR:00100588", "urlPattern": "http://csbl.bmb.uga.edu/DOOR/operon.php?id={$id}", "name": "DOOR v1 at University of Georgia", "description": "DOOR v1 at University of Georgia", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1398574", "resourceHomeUrl": "http://csbl.bmb.uga.edu/DOOR/operon.php", "institution": {"id": 1300, "name": "Computational Systems Biology Laboratory, Department of Biochemistry and Molecular Biology, University of Georgia, Athens, Georgia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1398574", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1302, "prefix": "degradome", "mirId": "MIR:00000454", "name": "Degradome Database", "pattern": "^[AMCST][0-9x][0-9]$", "description": "The Degradome Database contains information on the complete set of predicted proteases present in a a variety of mammalian species that have been subjected to whole genome sequencing. Each protease sequence is curated and, when necessary, cloned and sequenced.", "created": "2019-06-11T14:17:24.294+0000", "modified": "2019-06-11T14:17:24.294+0000", "resources": [{"id": 1304, "mirId": "MIR:00100589", "urlPattern": "http://degradome.uniovi.es/cgi-bin/protease/{$id}", "name": "Degradome Database at", "description": "Degradome Database at", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Ax1", "resourceHomeUrl": "http://degradome.uniovi.es/", "institution": {"id": 1303, "name": "Departamento de Bioqu&amp;iacute;mica y Biolog&amp;iacute;a Molecular, Facultad de Medicina, Universidad de Oviedo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "ES", "countryName": "Spain"}}, "location": {"countryCode": "ES", "countryName": "Spain"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Ax1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1305, "prefix": "dbd", "mirId": "MIR:00000455", "name": "DBD", "pattern": "^\\d+$", "description": "The DBD (transcription factor database) provides genome-wide transcription factor predictions for organisms across the tree of life. The prediction method identifies sequence-specific DNA-binding transcription factors through homology using profile hidden Markov models (HMMs) of domains from Pfam and SUPERFAMILY. It does not include basal transcription factors or chromatin-associated proteins.", "created": "2019-06-11T14:17:24.514+0000", "modified": "2019-06-11T14:17:24.514+0000", "resources": [{"id": 1306, "mirId": "MIR:00100590", "urlPattern": "http://www.transcriptionfactor.org/index.cgi?Search/Domain+domain:{$id}+cat:DBD", "name": "DBD at MRC Laboratory of Molecular Biology", "description": "DBD at MRC Laboratory of Molecular Biology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0045310", "resourceHomeUrl": "http://www.transcriptionfactor.org/", "institution": {"id": 1026, "name": "MRC Laboratory of Molecular Biology, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0045310", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1307, "prefix": "datf", "mirId": "MIR:00000456", "name": "DATF", "pattern": "^AT[1-5]G\\d{5}(\\.\\d+)?$", "description": "DATF contains known and predicted Arabidopsis transcription factors (1827 genes in 56 families) with the unique information of 1177 cloned sequences and many other features including 3D structure templates, EST expression information, transcription factor binding sites and nuclear location signals.", "created": "2019-06-11T14:17:24.701+0000", "modified": "2019-06-11T14:17:24.701+0000", "resources": [{"id": 1309, "mirId": "MIR:00100591", "urlPattern": "http://planttfdb.cbi.pku.edu.cn/tf.php?sp=Ath&did={$id}", "name": "DATF through PlantTFDB", "description": "DATF through PlantTFDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AT1G01030.1", "resourceHomeUrl": "http://datf.cbi.pku.edu.cn/", "institution": {"id": 1612, "name": "Peking University", "homeUrl": "http://english.pku.edu.cn/", "description": "Peking University is a comprehensive and national key university. The campus, known as \"Yan Yuan\"\uff08the garden of Yan\uff09, is situated at Haidian District in the western suburb of Beijing, with a total area of 2,743,532 square metres (or 274 hectares). It stands near to the Yuanmingyuan Garden and the Summer Palace.\nPeking University is proud of its outstanding faculty, including 48 members of the Chinese Academy of Sciences (CAS), 9 members of the Chinese Academy of Engineering (CAE), and 21 members of the Third World Academy of Sciences (TWAS).", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AT1G01030.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1310, "prefix": "iuphar.ligand", "mirId": "MIR:00000457", "name": "IUPHAR ligand", "pattern": "^\\d+$", "description": "The IUPHAR Compendium details the molecular, biophysical and pharmacological properties of identified mammalian sodium, calcium and potassium channels, as well as the related cyclic nucleotide-modulated ion channels and the recently described transient receptor potential channels. It includes information on nomenclature systems, and on inter and intra-species molecular structure variation. This collection references ligands.", "created": "2019-06-11T14:17:24.936+0000", "modified": "2019-06-11T14:17:24.936+0000", "resources": [{"id": 1311, "mirId": "MIR:00100592", "urlPattern": "http://www.guidetopharmacology.org/GRAC/LigandDisplayForward?ligandId={$id}", "name": "IUPHAR ligand at University of Edinburgh", "description": "IUPHAR ligand at University of Edinburgh", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "1755", "resourceHomeUrl": "http://www.guidetopharmacology.org/GRAC/LigandListForward?database=all", "institution": {"id": 827, "name": "Centre for Cardiovascular Science, University of Edinburgh, Edinburgh", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1755", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1312, "prefix": "molbase", "mirId": "MIR:00000458", "name": "Molbase", "pattern": "^(\\d{1,7}\\-\\d{2}\\-\\d)|([A-Za-z0-9\\+\\-\\_]+)$", "description": "Molbase provides compound data information for researchers as well as listing suppliers and price information. It can be searched by keyword or CAS indetifier.", "created": "2019-06-11T14:17:25.144+0000", "modified": "2019-06-11T14:17:25.144+0000", "resources": [{"id": 1314, "mirId": "MIR:00100593", "urlPattern": "http://www.molbase.com/en/index.php?app=search&search_keyword={$id}", "name": "Molbase at Chinese Academy of Sciences", "description": "Molbase at Chinese Academy of Sciences", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "128796-39-4", "resourceHomeUrl": "http://www.molbase.com/", "institution": {"id": 1313, "name": "Chinese Academy of Sciences, Xuhui District Shanghai", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "128796-39-4", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1315, "prefix": "yrcpdr", "mirId": "MIR:00000459", "name": "YRC PDR", "pattern": "^\\d+$", "description": "The Yeast Resource Center Public Data Repository (YRC PDR) serves as a single point of access for the experimental data produced from many collaborations typically studying Saccharomyces cerevisiae (baker's yeast). The experimental data include large amounts of mass spectrometry results from protein co-purification experiments, yeast two-hybrid interaction experiments, fluorescence microscopy images and protein structure predictions.", "created": "2019-06-11T14:17:25.397+0000", "modified": "2019-06-11T14:17:25.397+0000", "resources": [{"id": 1317, "mirId": "MIR:00100594", "urlPattern": "http://yeastrc.org/pdr/viewProtein.do?id={$id}", "name": "YRC PDR at University of Washington", "description": "YRC PDR at University of Washington", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2673500", "resourceHomeUrl": "http://www.yeastrc.org/pdr/", "institution": {"id": 1316, "name": "Department of Biochemistry, University of Washington, Seattle", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2673500", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1318, "prefix": "yid", "mirId": "MIR:00000460", "name": "Yeast Intron Database v3", "pattern": "^[A-Z0-9]+$", "description": "The YEast Intron Database (version 3) contains information on the spliceosomal introns of the yeast Saccharomyces cerevisiae. It includes expression data that relates to the efficiency of splicing relative to other processes in strains of yeast lacking nonessential splicing factors. The data are displayed on each intron page. An updated version of the database is available through [MIR:00000521].", "created": "2019-06-11T14:17:25.610+0000", "modified": "2019-06-11T14:17:25.610+0000", "resources": [{"id": 1320, "mirId": "MIR:00100595", "urlPattern": "http://metarray.ucsc.edu/cgi-bin/intron/yirIntrondb?orfName={$id}", "name": "Yeast Intron Database version 3 at Baskin School of Engineering", "description": "Yeast Intron Database version 3 at Baskin School of Engineering", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SNR17A", "resourceHomeUrl": "http://compbio.soe.ucsc.edu/yeast_introns.html", "institution": {"id": 1319, "name": "University of California, Santa Cruz", "homeUrl": "https://www.ucsc.edu", "description": "UC Santa Cruz opened in 1965 with 650 students. During the 2018-2019 academic year, 16,983 undergraduate and 1,822 graduate students were enrolled.\n", "rorId": "https://ror.org/03s65by71", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SNR17A", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1321, "prefix": "funcbase.fly", "mirId": "MIR:00000461", "name": "FuncBase Fly", "pattern": "^\\d+$", "description": "Computational gene function prediction can serve to focus experimental resources on high-priority experimental tasks. FuncBase is a web resource for viewing quantitative machine learning-based gene function annotations. Quantitative annotations of genes, including fungal and mammalian genes, with Gene Ontology terms are accompanied by a community feedback system. Evidence underlying function annotations is shown. FuncBase provides links to external resources, and may be accessed directly or via links from species-specific databases. This collection references Drosophila data.", "created": "2019-06-11T14:17:25.854+0000", "modified": "2019-06-11T14:17:25.854+0000", "resources": [{"id": 1323, "mirId": "MIR:00100596", "urlPattern": "http://func.mshri.on.ca/fly/genes/list_functional_scores/{$id}", "name": "FuncBase Fly at Harvard Medical School", "description": "FuncBase Fly at Harvard Medical School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "10194", "resourceHomeUrl": "http://func.mshri.on.ca/fly", "institution": {"id": 1322, "name": "Harvard Medical School, Boston, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "10194", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1324, "prefix": "funcbase.human", "mirId": "MIR:00000462", "name": "FuncBase Human", "pattern": "^\\d+$", "description": "Computational gene function prediction can serve to focus experimental resources on high-priority experimental tasks. FuncBase is a web resource for viewing quantitative machine learning-based gene function annotations. Quantitative annotations of genes, including fungal and mammalian genes, with Gene Ontology terms are accompanied by a community feedback system. Evidence underlying function annotations is shown. FuncBase provides links to external resources, and may be accessed directly or via links from species-specific databases. This collection references human data.", "created": "2019-06-11T14:17:26.074+0000", "modified": "2019-06-11T14:17:26.074+0000", "resources": [{"id": 1325, "mirId": "MIR:00100597", "urlPattern": "http://func.mshri.on.ca/human/genes/list_functional_scores/{$id}", "name": "FuncBase Human at Harvard Medical School", "description": "FuncBase Human at Harvard Medical School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "119514", "resourceHomeUrl": "http://func.mshri.on.ca/human/", "institution": {"id": 1322, "name": "Harvard Medical School, Boston, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "119514", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1326, "prefix": "funcbase.mouse", "mirId": "MIR:00000463", "name": "FuncBase Mouse", "pattern": "^\\d+$", "description": "Computational gene function prediction can serve to focus experimental resources on high-priority experimental tasks. FuncBase is a web resource for viewing quantitative machine learning-based gene function annotations. Quantitative annotations of genes, including fungal and mammalian genes, with Gene Ontology terms are accompanied by a community feedback system. Evidence underlying function annotations is shown. FuncBase provides links to external resources, and may be accessed directly or via links from species-specific databases. This collection references mouse.", "created": "2019-06-11T14:17:26.285+0000", "modified": "2019-06-11T14:17:26.285+0000", "resources": [{"id": 1327, "mirId": "MIR:00100598", "urlPattern": "http://func.mshri.on.ca/mouse/genes/list_functional_scores/{$id}", "name": "FuncBase Mouse at Harvard Medical School", "description": "FuncBase Mouse at Harvard Medical School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1351341", "resourceHomeUrl": "http://func.mshri.on.ca/mouse/", "institution": {"id": 1322, "name": "Harvard Medical School, Boston, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1351341", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1881, "prefix": "cbioportal", "mirId": "MIR:00000679", "name": "The cBioPortal for Cancer Genomics", "pattern": "^[a-z0-9\\_]+$", "description": "The cBioPortal for Cancer Genomics provides visualization, analysis and download of large-scale cancer genomics data sets.", "created": "2019-06-11T14:18:18.874+0000", "modified": "2019-06-11T14:18:18.874+0000", "resources": [{"id": 1883, "mirId": "MIR:00100909", "urlPattern": "http://www.cbioportal.org/study?id={$id}#summary", "name": "The cBioPortal for Cancer Genomics", "description": "The cBioPortal for Cancer Genomics", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "laml_tcga_pub", "resourceHomeUrl": "http://www.cbioportal.org", "institution": {"id": 1882, "name": "Memorial Sloan Kettering Cancer Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "laml_tcga_pub", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1328, "prefix": "funcbase.yeast", "mirId": "MIR:00000464", "name": "FuncBase Yeast", "pattern": "^\\d+$", "description": "Computational gene function prediction can serve to focus experimental resources on high-priority experimental tasks. FuncBase is a web resource for viewing quantitative machine learning-based gene function annotations. Quantitative annotations of genes, including fungal and mammalian genes, with Gene Ontology terms are accompanied by a community feedback system. Evidence underlying function annotations is shown. FuncBase provides links to external resources, and may be accessed directly or via links from species-specific databases. This collection references yeast.", "created": "2019-06-11T14:17:26.470+0000", "modified": "2019-06-11T14:17:26.470+0000", "resources": [{"id": 1329, "mirId": "MIR:00100599", "urlPattern": "http://func.mshri.on.ca/yeast/genes/list_functional_scores/{$id}", "name": "FuncBase Yeast at Harvard Medical School", "description": "FuncBase Yeast at Harvard Medical School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2701", "resourceHomeUrl": "http://func.mshri.on.ca/yeast", "institution": {"id": 1322, "name": "Harvard Medical School, Boston, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2701", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1330, "prefix": "ydpm", "mirId": "MIR:00000465", "name": "YDPM", "pattern": "^Y[A-Z]{2}\\d+[CW]$", "description": "The YDPM database serves to support the Yeast Deletion and the Mitochondrial Proteomics Project. The project aims to increase the understanding of mitochondrial function and biogenesis in the context of the cell. In the Deletion Project, strains from the deletion collection were monitored under 9 different media conditions selected for the study of mitochondrial function. The YDPM database contains both the raw data and growth rates calculated for each strain in each media condition.", "created": "2019-06-11T14:17:26.654+0000", "modified": "2019-06-11T14:17:26.654+0000", "resources": [{"id": 1332, "mirId": "MIR:00100600", "urlPattern": "http://www-deletion.stanford.edu/cgi-bin/YDPM/YDPM_search.cgi?thelist={$id}", "name": "YDPM at Stanford University School of Medicine", "description": "YDPM at Stanford University School of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "YAL001C", "resourceHomeUrl": "http://www-deletion.stanford.edu/YDPM/", "institution": {"id": 1331, "name": "Stanford University School of Medicine, Stanford, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "YAL001C", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1333, "prefix": "wb.rnai", "mirId": "MIR:00000466", "name": "WormBase RNAi", "pattern": "^WBRNAi\\d{8}$", "description": "WormBase is an online bioinformatics database of the biology and genome of the model organism Caenorhabditis elegans and related nematodes. It is used by the C. elegans research community both as an information resource and as a mode to publish and distribute their results. This collection references RNAi experiments, detailing target and phenotypes.", "created": "2019-06-11T14:17:26.886+0000", "modified": "2019-06-11T14:17:26.886+0000", "resources": [{"id": 1334, "mirId": "MIR:00100601", "urlPattern": "https://www.wormbase.org/species/c_elegans/rnai/{$id}", "name": "WormBase RNAi", "description": "WormBase RNAi", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "WBRNAi00086878", "resourceHomeUrl": "https://www.wormbase.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "WBRNAi00086878", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1335, "prefix": "pass2", "mirId": "MIR:00000468", "name": "PASS2", "pattern": "^\\d+$", "description": "The PASS2 database provides alignments of proteins related at the superfamily level and are characterized by low sequence identity.", "created": "2019-06-11T14:17:27.086+0000", "modified": "2019-06-11T14:17:27.086+0000", "resources": [{"id": 1337, "mirId": "MIR:00100603", "urlPattern": "http://caps.ncbs.res.in/cgi-bin/pass2//show_sf.py?sf_id={$id}", "name": "PASS2 at National centre for Biological Sciences (India)", "description": "PASS2 at National centre for Biological Sciences (India)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "46977", "resourceHomeUrl": "http://caps.ncbs.res.in/pass2/", "institution": {"id": 1336, "name": "National centre for Biological Sciences, TIFR, GKVK campus, Bangalore, Karnataka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "46977", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1338, "prefix": "iceberg.element", "mirId": "MIR:00000469", "name": "ICEberg element", "pattern": "^\\d+$", "description": "ICEberg (Integrative and conjugative elements) is a database of integrative and conjugative elements (ICEs) found in bacteria. ICEs are conjugative self-transmissible elements that can integrate into and excise from a host chromosome, and can carry likely virulence determinants, antibiotic-resistant factors and/or genes coding for other beneficial traits. It contains details of ICEs found in representatives bacterial species, and which are organised as families. This collection references ICE elements.", "created": "2019-06-11T14:17:27.338+0000", "modified": "2019-06-11T14:17:27.338+0000", "resources": [{"id": 1340, "mirId": "MIR:00100604", "urlPattern": "http://db-mml.sjtu.edu.cn/ICEberg/feature_page.php?ice_id={$id}", "name": "ICEberg element at Shanghai Jiaotong University", "description": "ICEberg element at Shanghai Jiaotong University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "100", "resourceHomeUrl": "http://db-mml.sjtu.edu.cn/ICEberg/", "institution": {"id": 1339, "name": "State Key Laboratory of Microbial Metabolism and School of Life Sciences &amp;amp;amp; Biotechnology, Shanghai Jiaotong University, Shanghai", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1341, "prefix": "iceberg.family", "mirId": "MIR:00000470", "name": "ICEberg family", "pattern": "^\\d+$", "description": "ICEberg (Integrative and conjugative elements) is a database of integrative and conjugative elements (ICEs) found in bacteria. ICEs are conjugative self-transmissible elements that can integrate into and excise from a host chromosome, and can carry likely virulence determinants, antibiotic-resistant factors and/or genes coding for other beneficial traits. It contains details of ICEs found in representatives bacterial species, and which are organised as families. This collection references ICE families.", "created": "2019-06-11T14:17:27.601+0000", "modified": "2019-06-11T14:17:27.601+0000", "resources": [{"id": 1343, "mirId": "MIR:00100605", "urlPattern": "http://db-mml.sjtu.edu.cn/ICEberg/browse_result.php?type=fam&fam_id={$id}", "name": "ICEberg family at Shanghai Jiaotong University", "description": "ICEberg family at Shanghai Jiaotong University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1", "resourceHomeUrl": "http://db-mml.sjtu.edu.cn/ICEberg/", "institution": {"id": 1342, "name": "State Key Laboratory of Microbial Metabolism and School of Life Sciences &amp; Biotechnology, Shanghai Jiaotong University, Shanghai", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1344, "prefix": "vfdb.genus", "mirId": "MIR:00000471", "name": "VFDB Genus", "pattern": "^\\w+$", "description": "VFDB is a repository of virulence factors (VFs) of pathogenic bacteria.This collection references VF information by Genus.", "created": "2019-06-11T14:17:27.811+0000", "modified": "2019-06-11T14:17:27.811+0000", "resources": [{"id": 1346, "mirId": "MIR:00100606", "urlPattern": "http://www.mgc.ac.cn/cgi-bin/VFs/genus.cgi?Genus={$id}", "name": "VFDB Genus at Institute of Pathogen Biology", "description": "VFDB Genus at Institute of Pathogen Biology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Chlamydia", "resourceHomeUrl": "http://www.mgc.ac.cn/VFs/", "institution": {"id": 1345, "name": "State Key Laboratory for Molecular Virology and Genetic Engineering, Institute of Pathogen Biology, Chinese Academy Medical Sciences and Peking Union Medical College, Beijing", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Chlamydia", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1347, "prefix": "vfdb.gene", "mirId": "MIR:00000472", "name": "VFDB Gene", "pattern": "^\\w+$", "description": "VFDB is a repository of virulence factors (VFs) of pathogenic bacteria.This collection references VF genes.", "created": "2019-06-11T14:17:28.027+0000", "modified": "2019-06-11T14:17:28.027+0000", "resources": [{"id": 1348, "mirId": "MIR:00100607", "urlPattern": "http://www.mgc.ac.cn/cgi-bin/VFs/gene.cgi?GeneID={$id}", "name": "VFDB Gene at Institute of Pathogen Biology", "description": "VFDB Gene at Institute of Pathogen Biology", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "VFG2154", "resourceHomeUrl": "http://www.mgc.ac.cn/VFs/", "institution": {"id": 1345, "name": "State Key Laboratory for Molecular Virology and Genetic Engineering, Institute of Pathogen Biology, Chinese Academy Medical Sciences and Peking Union Medical College, Beijing", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "VFG2154", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1349, "prefix": "mesh.2013", "mirId": "MIR:00000473", "name": "MeSH 2013", "pattern": "^[A-Za-z0-9]+$", "description": "MeSH (Medical Subject Headings) is the National Library of Medicine's controlled vocabulary thesaurus. It consists of sets of terms naming descriptors in a hierarchical structure that permits searching at various levels of specificity. This thesaurus is used by NLM for indexing articles from biomedical journals, cataloging of books, documents, etc. This collection references MeSH terms published in 2013.", "created": "2019-06-11T14:17:28.224+0000", "modified": "2019-06-11T14:17:28.224+0000", "resources": [{"id": 1350, "mirId": "MIR:00100608", "urlPattern": "http://www.nlm.nih.gov/cgi/mesh/2013/MB_cgi?mode=&index={$id}&view=expanded", "name": "MeSH 2013 at National Library of Medicine", "description": "MeSH 2013 at National Library of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "17165", "resourceHomeUrl": "http://www.nlm.nih.gov/mesh/", "institution": {"id": 792, "name": "U.S. National Library of Medicine, National Institute of Health, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "17165", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1351, "prefix": "kegg.module", "mirId": "MIR:00000474", "name": "KEGG Module", "pattern": "^([a-z]{3,5}_)?M\\d{5}$", "description": "KEGG Modules are manually defined functional units used in the annotation and biological interpretation of sequenced genomes. Each module corresponds to a set of 'KEGG Orthology' (MIR:00000116) entries. KEGG Modules can represent pathway, structural, functional or signature modules.", "created": "2019-06-11T14:17:28.414+0000", "modified": "2019-06-11T14:17:28.414+0000", "resources": [{"id": 1352, "mirId": "MIR:00100609", "urlPattern": "http://www.kegg.jp/entry/{$id}", "name": "KEGG Module at Kyoto University Bioinformatics Center", "description": "KEGG Module at Kyoto University Bioinformatics Center", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "M00002", "resourceHomeUrl": "http://www.kegg.jp/kegg/module.html", "institution": {"id": 367, "name": "Department of Computational Biology, University of Tokyo, Tokyo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "M00002", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1353, "prefix": "kegg.disease", "mirId": "MIR:00000475", "name": "KEGG Disease", "pattern": "^H\\d+$", "description": "The KEGG DISEASE database is a collection of disease entries capturing knowledge on genetic and environmental perturbations. Each disease entry contains a list of known genetic factors (disease genes), environmental factors, diagnostic markers, and therapeutic drugs. Diseases are viewed as perturbed states of the molecular system, and drugs as perturbants to the molecular system.", "created": "2019-06-11T14:17:28.601+0000", "modified": "2019-06-11T14:17:28.601+0000", "resources": [{"id": 1354, "mirId": "MIR:00100610", "urlPattern": "http://www.kegg.jp/entry/{$id}", "name": "KEGG Disease at Kyoto University Bioinformatics Center", "description": "KEGG Disease at Kyoto University Bioinformatics Center", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "H00076", "resourceHomeUrl": "http://www.genome.jp/kegg/disease/", "institution": {"id": 705, "name": "Kyoto University Bioinformatics Center, Kyoto", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "H00076", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1355, "prefix": "medlineplus", "mirId": "MIR:00000476", "name": "MedlinePlus", "pattern": "^\\d+$", "description": "MedlinePlus is the National Institutes of Health's Web site for patients and their families and friends. Produced by the National Library of Medicine, it provides information about diseases, conditions, and wellness issues using non-technical terms and language.", "created": "2019-06-11T14:17:28.795+0000", "modified": "2019-06-11T14:17:28.795+0000", "resources": [{"id": 1356, "mirId": "MIR:00100611", "urlPattern": "http://www.nlm.nih.gov/medlineplus/ency/article/{$id}.htm", "name": "MedlinePlus at NCBI", "description": "MedlinePlus at NCBI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "002804", "resourceHomeUrl": "http://www.nlm.nih.gov/medlineplus/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "002804", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1360, "prefix": "glycoepitope", "mirId": "MIR:00000478", "name": "GlycoEpitope", "pattern": "^EP\\d{4}$", "description": "GlycoEpitope is a database containing useful information about carbohydrate antigens (glyco-epitopes) and the antibodies (polyclonal or monoclonal) that can be used to analyze their expression. This collection references Glycoepitopes.", "created": "2019-06-11T14:17:29.214+0000", "modified": "2019-06-11T14:17:29.214+0000", "resources": [{"id": 1362, "mirId": "MIR:00100613", "urlPattern": "https://www.glycoepitope.jp/epitopes/{$id}", "name": "GlycoEpitope at Ritsumeikan University", "description": "GlycoEpitope at Ritsumeikan University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "EP0311", "resourceHomeUrl": "https://www.glycoepitope.jp/epitopes/", "institution": {"id": 1361, "name": "Kawasaki laboratory, Research Center for Glycobiotechnology, Ritsumeikan University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EP0311", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1363, "prefix": "jcggdb", "mirId": "MIR:00000479", "name": "JCGGDB", "pattern": "^JCGG-STR\\d{6}$", "description": "JCGGDB (Japan Consortium for Glycobiology and Glycotechnology DataBase) is a database that aims to integrate all glycan-related data held in various repositories in Japan. This includes databases for large-quantity synthesis of glycogenes and glycans, analysis and detection of glycan structure and glycoprotein, glycan-related differentiation markers, glycan functions, glycan-related diseases and transgenic and knockout animals, etc.", "created": "2019-06-11T14:17:29.437+0000", "modified": "2019-06-11T14:17:29.437+0000", "resources": [{"id": 1365, "mirId": "MIR:00100614", "urlPattern": "http://jcggdb.jp/idb/jcggdb/{$id}", "name": "JCGGDB at Advanced Science Institute (Japan)", "description": "JCGGDB at Advanced Science Institute (Japan)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "JCGG-STR008690", "resourceHomeUrl": "http://jcggdb.jp/index_en.html", "institution": {"id": 1364, "name": "RIKEN Advanced Science Institute", "homeUrl": "http://www.riken.jp/en/about/reports/evaluation/asi/", "description": "Established by RIKEN in April 2008, based on the DRI (Discovery Research Institute) and the FRS (Frontier Research System). ASI is unique since it is structured as comprehensive system supporting the full range of scientific fields including high energy/nuclear/astro-physics, condensed matter physics, chemistry, electronic engineering, biology and medicine.", "rorId": "https://ror.org/030vbmf58", "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "JCGG-STR008690", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1366, "prefix": "noncodev4.gene", "mirId": "MIR:00000480", "name": "NONCODE v4 Gene", "pattern": "^NONHSAG\\d{5}$", "description": "NONCODE is a database of expression and functional lncRNA (long noncoding RNA) data obtained from microarray studies. LncRNAs have been shown to play key roles in various biological processes such as imprinting control, circuitry controlling pluripotency and differentiation, immune responses and chromosome dynamics. The collection references NONCODE version 4 and relates to gene regions.", "created": "2019-06-11T14:17:29.649+0000", "modified": "2019-06-11T14:17:29.649+0000", "resources": [{"id": 1367, "mirId": "MIR:00100616", "urlPattern": "http://www.bioinfo.org/NONCODEv4/show_gene.php?id={$id}", "name": "NONCODE v4 Gene at Chinese Academy of Sciences", "description": "NONCODE v4 Gene at Chinese Academy of Sciences", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "NONHSAG00001", "resourceHomeUrl": "http://www.bioinfo.org/NONCODEv4/", "institution": {"id": 737, "name": "Chinese Academy of Sciences", "homeUrl": "http://english.cas.cn/", "description": "The Chinese Academy of Sciences is the linchpin of China\u2019s drive to explore and harness high technology and the natural sciences for the benefit of China and the world. CAS brings together scientists and engineers from China and around the world to address both theoretical and applied problems using world-class scientific and management approaches.", "rorId": "https://ror.org/034t30j35", "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "NONHSAG00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1884, "prefix": "vfb", "mirId": "MIR:00000680", "name": "Virtual Fly Brain", "pattern": "^[0-9a-zA-Z]{8}$", "description": "An interactive tool for neurobiologists to explore the detailed neuroanatomy, neuron connectivity and gene expression of the Drosophila melanogaster.", "created": "2019-06-11T14:18:19.150+0000", "modified": "2019-06-11T14:18:19.150+0000", "resources": [{"id": 1886, "mirId": "MIR:00100911", "urlPattern": "http://virtualflybrain.org/reports/{$id}", "name": "Virtual Fly Brain", "description": "Virtual Fly Brain", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "00000001", "resourceHomeUrl": "https://VirtualFlyBrain.org", "institution": {"id": 1885, "name": "The University of Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1368, "prefix": "noncodev4.rna", "mirId": "MIR:00000481", "name": "NONCODE v4 Transcript", "pattern": "^NONHSAT\\d{6}$", "description": "NONCODE is a database of expression and functional lncRNA (long noncoding RNA) data obtained from microarray studies. LncRNAs have been shown to play key roles in various biological processes such as imprinting control, circuitry controlling pluripotency and differentiation, immune responses and chromosome dynamics. The collection references NONCODE version 4 and relates to individual transcripts.", "created": "2019-06-11T14:17:29.833+0000", "modified": "2019-06-11T14:17:29.833+0000", "resources": [{"id": 1369, "mirId": "MIR:00100617", "urlPattern": "http://www.bioinfo.org/NONCODEv4/show_rna.php?id={$id}", "name": "NONCODE v4 Transcript at Chinese Academy of Sciences", "description": "NONCODE v4 Transcript at Chinese Academy of Sciences", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "NONHSAT000001", "resourceHomeUrl": "http://www.bioinfo.org/NONCODEv4/", "institution": {"id": 737, "name": "Chinese Academy of Sciences", "homeUrl": "http://english.cas.cn/", "description": "The Chinese Academy of Sciences is the linchpin of China\u2019s drive to explore and harness high technology and the natural sciences for the benefit of China and the world. CAS brings together scientists and engineers from China and around the world to address both theoretical and applied problems using world-class scientific and management approaches.", "rorId": "https://ror.org/034t30j35", "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "NONHSAT000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1370, "prefix": "oryzabase.gene", "mirId": "MIR:00000482", "name": "Oryzabase Gene", "pattern": "^\\d+$", "description": "Oryzabase provides a view of rice (Oryza sativa) as a model monocot plant by integrating biological data with molecular genomic information. It contains information about rice development and anatomy, rice mutants, and genetic resources, especially for wild varieties of rice. Developmental and anatomical descriptions include in situ gene expression data serving as stage and tissue markers. This collection references gene information.", "created": "2019-06-11T14:17:30.027+0000", "modified": "2019-06-11T14:17:30.027+0000", "resources": [{"id": 1372, "mirId": "MIR:00100618", "urlPattern": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/gene/detail/{$id}", "name": "Oryzabase v4 Gene at National Institute of Genetics (Japan)", "description": "Oryzabase v4 Gene at National Institute of Genetics (Japan)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "117", "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "institution": {"id": 1371, "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "117", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1373, "prefix": "oryzabase.mutant", "mirId": "MIR:00000483", "name": "Oryzabase Mutant", "pattern": "^\\d+$", "description": "Oryzabase provides a view of rice (Oryza sativa) as a model monocot plant by integrating biological data with molecular genomic information. It contains information about rice development and anatomy, rice mutants, and genetic resources, especially for wild varieties of rice. Developmental and anatomical descriptions include in situ gene expression data serving as stage and tissue markers. This collection references mutant strain information.", "created": "2019-06-11T14:17:30.248+0000", "modified": "2019-06-11T14:17:30.248+0000", "resources": [{"id": 1374, "mirId": "MIR:00100619", "urlPattern": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/inducedMutationLine/detail/{$id}", "name": "Oryzabase v4 Mutant at National Institute of Genetics (Japan)", "description": "Oryzabase v4 Mutant at National Institute of Genetics (Japan)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "21393", "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "institution": {"id": 1371, "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "21393", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1375, "prefix": "oryzabase.strain", "mirId": "MIR:00000484", "name": "Oryzabase Strain", "pattern": "^\\d+$", "description": "Oryzabase provides a view of rice (Oryza sativa) as a model monocot plant by integrating biological data with molecular genomic information. It contains information about rice development and anatomy, rice mutants, and genetic resources, especially for wild varieties of rice. Developmental and anatomical descriptions include in situ gene expression data serving as stage and tissue markers. This collection references wild strain information.", "created": "2019-06-11T14:17:30.425+0000", "modified": "2019-06-11T14:17:30.425+0000", "resources": [{"id": 1376, "mirId": "MIR:00100620", "urlPattern": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/strain/wildCore/detail/{$id}", "name": "Oryzabase v4 Strain at National Institute of Genetics (Japan)", "description": "Oryzabase v4 Strain at National Institute of Genetics (Japan)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1", "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "institution": {"id": 1371, "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1377, "prefix": "oryzabase.stage", "mirId": "MIR:00000485", "name": "Oryzabase Stage", "pattern": "^\\d+$", "description": "Oryzabase provides a view of rice (Oryza sativa) as a model monocot plant by integrating biological data with molecular genomic information. It contains information about rice development and anatomy, rice mutants, and genetic resources, especially for wild varieties of rice. Developmental and anatomical descriptions include in situ gene expression data serving as stage and tissue markers. This collection references development stage information.", "created": "2019-06-11T14:17:30.616+0000", "modified": "2019-06-11T14:17:30.616+0000", "resources": [{"id": 1378, "mirId": "MIR:00100621", "urlPattern": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/devstageineachorgan/detail/{$id}", "name": "Oryzabase v4 Stage at National Institute of Genetics (Japan)", "description": "Oryzabase v4 Stage at National Institute of Genetics (Japan)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "34", "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "institution": {"id": 1371, "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "34", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1379, "prefix": "otl", "mirId": "MIR:00000486", "name": "Oryza Tag Line", "pattern": "^A[A-Z]+\\d+$", "description": "Oryza Tag Line is a database that was developed to collect information generated from the characterization of rice (Oryza sativa L cv. Nipponbare) insertion lines resulting in potential gene disruptions. It collates morpho-physiological alterations observed during field evaluation, with each insertion line documented through a generic passport data including production records, seed stocks and FST information.", "created": "2019-06-11T14:17:30.833+0000", "modified": "2019-06-11T14:17:30.833+0000", "resources": [{"id": 1381, "mirId": "MIR:00100622", "urlPattern": "http://oryzatagline.cirad.fr/cgi-bin/general_mutant.pl?line={$id}", "name": "Oryza Tag Line at CIRAD-INRA-SUPAGRO-UMI", "description": "Oryza Tag Line at CIRAD-INRA-SUPAGRO-UMI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AADB12", "resourceHomeUrl": "http://oryzatagline.cirad.fr/", "institution": {"id": 1380, "name": "CIRAD-INRA-SUPAGRO-UMII, Biological Systems Department, Montpellier", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AADB12", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1382, "prefix": "genewiki", "mirId": "MIR:00000487", "name": "Gene Wiki", "pattern": "^\\d+$", "description": "The Gene Wiki is project which seeks to provide detailed information on human genes. Initial 'stub' articles are created in an automated manner, with further information added by the community. Gene Wiki can be accessed in wikipedia using Gene identifiers from NCBI.", "created": "2019-06-11T14:17:31.086+0000", "modified": "2019-06-11T14:17:31.086+0000", "resources": [{"id": 1383, "mirId": "MIR:00100623", "urlPattern": "http://plugins.biogps.org/cgi-bin/wp.cgi?id={$id}", "name": "Gene Wiki through BioGPS", "description": "Gene Wiki through BioGPS", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1017", "resourceHomeUrl": "http://en.wikipedia.org/wiki/Gene_Wiki", "institution": {"id": 1111, "name": "Wikimedia Foundation, San Francisco, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1017", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1384, "prefix": "paxdb.organism", "mirId": "MIR:00000488", "name": "PaxDb Organism", "pattern": "^\\d+$", "description": "PaxDb is a resource dedicated to integrating information on absolute protein abundance levels across different organisms. Publicly available experimental data are mapped onto a common namespace and, in the case of tandem mass spectrometry data, re-processed using a standardized spectral counting pipeline. Data sets are scored and ranked to assess consistency against externally provided protein-network information. PaxDb provides whole-organism data as well as tissue-resolved data, for numerous proteins. This collection references protein abundance information by species.", "created": "2019-06-11T14:17:31.315+0000", "modified": "2019-06-11T14:17:31.315+0000", "resources": [{"id": 1386, "mirId": "MIR:00100624", "urlPattern": "http://pax-db.org/#!species/{$id}", "name": "PaxDb v3 at University of Zurich", "description": "PaxDb v3 at University of Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "9606", "resourceHomeUrl": "http://pax-db.org/", "institution": {"id": 1385, "name": "Institute of Molecular Life Sciences, University of Zurich, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "9606", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1387, "prefix": "paxdb.protein", "mirId": "MIR:00000489", "name": "PaxDb Protein", "pattern": "^\\d+$", "description": "PaxDb is a resource dedicated to integrating information on absolute protein abundance levels across different organisms. Publicly available experimental data are mapped onto a common namespace and, in the case of tandem mass spectrometry data, re-processed using a standardized spectral counting pipeline. Data sets are scored and ranked to assess consistency against externally provided protein-network information. PaxDb provides whole-organism data as well as tissue-resolved data, for numerous proteins. This collection references individual protein abundance levels.", "created": "2019-06-11T14:17:31.566+0000", "modified": "2019-06-11T14:17:31.566+0000", "resources": [{"id": 1388, "mirId": "MIR:00100625", "urlPattern": "http://pax-db.org/#!protein/{$id}", "name": "PaxDb v3 at University of Zurich", "description": "PaxDb v3 at University of Zurich", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "977869", "resourceHomeUrl": "http://pax-db.org/", "institution": {"id": 1385, "name": "Institute of Molecular Life Sciences, University of Zurich, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "977869", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1389, "prefix": "pdb.ligand", "mirId": "MIR:00000490", "name": "Protein Data Bank Ligand", "pattern": "^[A-Za-z0-9]+$", "description": "The Protein Data Bank is the single worldwide archive of structural data of biological macromolecules. This collection references ligands.", "created": "2019-06-11T14:17:31.784+0000", "modified": "2019-06-11T14:17:31.784+0000", "resources": [{"id": 1390, "mirId": "MIR:00100626", "urlPattern": "http://www.rcsb.org/pdb/ligand/ligandsummary.do?hetId={$id}", "name": "PDB Ligand at RCSB", "description": "PDB Ligand at RCSB", "official": false, "providerCode": "rcsb", "sampleId": "TRQ", "resourceHomeUrl": "http://www.pdb.org/", "institution": {"id": 79, "name": "Rutgers, The State University of New Jersey", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1391, "mirId": "MIR:00100650", "urlPattern": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/chemicalCompound/show/{$id}", "name": "PDB Ligand at Protein Databank in Europe (PDBe)", "description": "PDB Ligand at Protein Databank in Europe (PDBe)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "TRQ", "resourceHomeUrl": "https://www.pdbe.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TRQ", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1392, "prefix": "merops.inhibitor", "mirId": "MIR:00000491", "name": "MEROPS Inhibitor", "pattern": "^I\\d{2}\\.\\d{3}$", "description": "The MEROPS database is an information resource for peptidases (also termed proteases, proteinases and proteolytic enzymes) and the proteins that inhibit them. This collections references inhibitors.", "created": "2019-06-11T14:17:32.129+0000", "modified": "2019-06-11T14:17:32.129+0000", "resources": [{"id": 1394, "mirId": "MIR:00100632", "urlPattern": "http://merops.sanger.ac.uk/cgi-bin/pepsum?id={$id}", "name": "MEROPS Inhibitor at Sanger Institute", "description": "MEROPS Inhibitor at Sanger Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "I31.952", "resourceHomeUrl": "http://merops.sanger.ac.uk/index.htm", "institution": {"id": 1393, "name": "Wellcome Trust Sanger Institute, Wellcome Trust Genome Campus, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "I31.952", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1395, "prefix": "adw", "mirId": "MIR:00000492", "name": "Animal Diversity Web", "pattern": "^[A-Z_a-z]+$", "description": "Animal Diversity Web (ADW) is an online database of animal natural history, distribution, classification, and conservation biology.", "created": "2019-06-11T14:17:32.366+0000", "modified": "2019-06-11T14:17:32.366+0000", "resources": [{"id": 1397, "mirId": "MIR:00100633", "urlPattern": "https://animaldiversity.org/accounts/{$id}/", "name": "Animal Diversity Web at University of Michigan", "description": "Animal Diversity Web at University of Michigan", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Lycalopex_vetulus", "resourceHomeUrl": "https://animaldiversity.org/", "institution": {"id": 1396, "name": "University of Michigan Museum of Zoology, Ann Arbor, Michigan", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Lycalopex_vetulus", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1398, "prefix": "glida.gpcr", "mirId": "MIR:00000493", "name": "GLIDA GPCR", "pattern": "^[A-Z-_0-9]+$", "description": "The GPCR-LIgand DAtabase (GLIDA) is a GPCR-related chemical genomic database that is primarily focused on the correlation of information between GPCRs and their ligands. It provides correlation data between GPCRs and their ligands, along with chemical information on the ligands. This collection references G-protein coupled receptors.", "created": "2019-06-11T14:17:32.633+0000", "modified": "2019-06-11T14:17:32.633+0000", "resources": [{"id": 1400, "mirId": "MIR:00100634", "urlPattern": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/gpcr_information.php?id={$id}", "name": "GLIDA GPCR at Kyoto University", "description": "GLIDA GPCR at Kyoto University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ACM1_HUMAN", "resourceHomeUrl": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/", "institution": {"id": 1399, "name": "Department of Genomic Drug Discovery Science, Graduate School of Pharmaceutical Sciences, Kyoto University, Sakyo-ku, Kyoto", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ACM1_HUMAN", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1401, "prefix": "glida.ligand", "mirId": "MIR:00000494", "name": "GLIDA Ligand", "pattern": "^L\\d+$", "description": "The GPCR-LIgand DAtabase (GLIDA) is a GPCR-related chemical genomic database that is primarily focused on the correlation of information between GPCRs and their ligands. It provides correlation data between GPCRs and their ligands, along with chemical information on the ligands. This collection references ligands.", "created": "2019-06-11T14:17:32.872+0000", "modified": "2019-06-11T14:17:32.872+0000", "resources": [{"id": 1402, "mirId": "MIR:00100635", "urlPattern": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/ligand_information.php?id={$id}", "name": "GLIDA Ligand at Kyoto University", "description": "GLIDA Ligand at Kyoto University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "L000001", "resourceHomeUrl": "http://pharminfo.pharm.kyoto-u.ac.jp/services/glida/", "institution": {"id": 1399, "name": "Department of Genomic Drug Discovery Science, Graduate School of Pharmaceutical Sciences, Kyoto University, Sakyo-ku, Kyoto", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "L000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1403, "prefix": "grsdb", "mirId": "MIR:00000495", "name": "GRSDB", "pattern": "^\\d+$", "description": "GRSDB is a database of G-quadruplexes and contains information on composition and distribution of putative Quadruplex-forming G-Rich Sequences (QGRS) mapped in the eukaryotic pre-mRNA sequences, including those that are alternatively processed (alternatively spliced or alternatively polyadenylated). The data stored in the GRSDB is based on computational analysis of NCBI Entrez Gene entries and their corresponding annotated genomic nucleotide sequences of RefSeq/GenBank.", "created": "2019-06-11T14:17:33.087+0000", "modified": "2019-06-11T14:17:33.087+0000", "resources": [{"id": 1405, "mirId": "MIR:00100636", "urlPattern": "http://bioinformatics.ramapo.edu/GRSDB2/geneview.php?geneID={$id}", "name": "GRSDB v2 at Ramapo College of New Jersey", "description": "GRSDB v2 at Ramapo College of New Jersey", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "10142", "resourceHomeUrl": "http://bioinformatics.ramapo.edu/GRSDB2/", "institution": {"id": 1404, "name": "Ramapo College", "homeUrl": "https://www.ramapo.edu/", "description": "Established in 1969, Ramapo College offers bachelor\u2019s degrees in the arts, business, humanities, social sciences and the sciences, as well as in professional studies, which include business, elementary education, nursing and social work. In fall 2020, the College will be enrolling students in both a bachelor\u2019s and master\u2019s degree in data science, only one of two higher education institutions in New Jersey to offer both programs.", "rorId": "https://ror.org/03s2x9d90", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "10142", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1447, "prefix": "px", "mirId": "MIR:00000513", "name": "ProteomeXchange", "pattern": "^(R)?PXD\\d{6}$", "description": "The ProteomeXchange provides a single point of submission of Mass Spectrometry (MS) proteomics data for the main existing proteomics repositories, and encourages the data exchange between them for optimal data dissemination.", "created": "2019-06-11T14:17:37.549+0000", "modified": "2019-06-11T14:17:37.549+0000", "resources": [{"id": 1449, "mirId": "MIR:00100660", "urlPattern": "http://proteomecentral.proteomexchange.org/cgi/GetDataset?ID={$id}", "name": "ProteomeXchange at Seattle", "description": "ProteomeXchange at Seattle", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PXD000500", "resourceHomeUrl": "http://www.proteomexchange.org/", "institution": {"id": 193, "name": "Institute for Systems Biology", "homeUrl": "https://isbscience.org/", "description": "ISB was created in 2000 as the first-ever institute dedicated to systems biology.", "rorId": "https://ror.org/02tpgw303", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PXD000500", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1450, "prefix": "biomodels.vocabulary", "mirId": "MIR:00000514", "name": "SBML RDF Vocabulary", "pattern": "^[A-Za-z]+$", "description": "Vocabulary used in the RDF representation of SBML models.", "created": "2019-06-11T14:17:37.784+0000", "modified": "2019-06-11T14:17:37.784+0000", "resources": [{"id": 1452, "mirId": "MIR:00100661", "urlPattern": "http://biomodels.net/rdf/vocabulary.rdf#{$id}", "name": "Vocabulary via BioModels.net", "description": "Vocabulary via BioModels.net", "official": false, "providerCode": "ebi", "sampleId": "rateRule", "resourceHomeUrl": "http://biomodels.net/rdf/vocabulary.rdf", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "rateRule", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1406, "prefix": "fsnp", "mirId": "MIR:00000496", "name": "F-SNP", "pattern": "^rs\\d+$", "description": "The Functional Single Nucleotide Polymorphism (F-SNP) database integrates information obtained from databases about the functional effects of SNPs. These effects are predicted and indicated at the splicing, transcriptional, translational and post-translational level. In particular, users can retrieve SNPs that disrupt genomic regions known to be functional, including splice sites and transcriptional regulatory regions. Users can also identify non-synonymous SNPs that may have deleterious effects on protein structure or function, interfere with protein translation or impede post-translational modification.", "created": "2019-06-11T14:17:33.340+0000", "modified": "2019-06-11T14:17:33.340+0000", "resources": [{"id": 1408, "mirId": "MIR:00100637", "urlPattern": "http://compbio.cs.queensu.ca/cgi-bin/compbio/search/main.cgi?search_mode=id&id_type=snp_id&id_val={$id}", "name": "F-SNP at Queen's University (Canada)", "description": "F-SNP at Queen's University (Canada)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "rs17852708", "resourceHomeUrl": "http://compbio.cs.queensu.ca/F-SNP/", "institution": {"id": 1407, "name": "Computational Biology and Machine Learning Lab, School of Computing, Queen's University, Kingston, Ontario", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "rs17852708", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1409, "prefix": "hdr", "mirId": "MIR:00000497", "name": "Homeodomain Research", "pattern": "^\\d+$", "description": "The Homeodomain Resource is a curated collection of sequence, structure, interaction, genomic and functional information on the homeodomain family. It contains sets of curated homeodomain sequences from fully sequenced genomes, including experimentally derived homeodomain structures, homeodomain protein-protein interactions, homeodomain DNA-binding sites and homeodomain proteins implicated in human genetic disorders.", "created": "2019-06-11T14:17:33.593+0000", "modified": "2019-06-11T14:17:33.593+0000", "resources": [{"id": 1411, "mirId": "MIR:00100638", "urlPattern": "http://research.nhgri.nih.gov/apps/homeodomain/web/index.cgi?mode=view&view=proteins&id={$id}", "name": "Homeodomain Research at National Human Genome Research Institute (NIH)", "description": "Homeodomain Research at National Human Genome Research Institute (NIH)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "63", "resourceHomeUrl": "http://research.nhgri.nih.gov/apps/homeodomain/web/", "institution": {"id": 1410, "name": "Genome Technology Branch, National Human Genome Research Institute, National Institutes of Health, Bethesda, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "63", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1412, "prefix": "norine", "mirId": "MIR:00000498", "name": "NORINE", "pattern": "^NOR\\d+$", "description": "Norine is a database dedicated to nonribosomal peptides (NRPs). In bacteria and fungi, in addition to the traditional ribosomal proteic biosynthesis, an alternative ribosome-independent pathway called NRP synthesis allows peptide production. The molecules synthesized by NRPS contain a high proportion of nonproteogenic amino acids whose primary structure is not always linear, often being more complex and containing cycles and branchings.", "created": "2019-06-11T14:17:33.862+0000", "modified": "2019-06-11T14:17:33.862+0000", "resources": [{"id": 1414, "mirId": "MIR:00100639", "urlPattern": "http://bioinfo.lifl.fr/norine/result.jsp?ID={$id}", "name": "NORINE at Computer Science Laboratory of Lille", "description": "NORINE at Computer Science Laboratory of Lille", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "NOR00681", "resourceHomeUrl": "http://bioinfo.lifl.fr/norine/", "institution": {"id": 1413, "name": "Computer Science Laboratory of Lille, INRIA and ProBioGEM, University of Sciences and Technologies of Lille, Lille", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "NOR00681", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1415, "prefix": "ordb", "mirId": "MIR:00000499", "name": "Olfactory Receptor Database", "pattern": "^\\d+$", "description": "The Olfactory Receptor Database (ORDB) is a repository of genomics and proteomics information of olfactory receptors (ORs). It includes a broad range of chemosensory genes and proteins, that includes in addition to ORs the taste papilla receptors (TPRs), vomeronasal organ receptors (VNRs), insect olfactory receptors (IORs), Caenorhabditis elegans chemosensory receptors (CeCRs), fungal pheromone receptors (FPRs).", "created": "2019-06-11T14:17:34.104+0000", "modified": "2019-06-11T14:17:34.104+0000", "resources": [{"id": 1417, "mirId": "MIR:00100640", "urlPattern": "http://senselab.med.yale.edu/ORDB/Data/{$id}", "name": "Olfactory Receptor Database at Yale University School of Medicine", "description": "Olfactory Receptor Database at Yale University School of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "8497", "resourceHomeUrl": "http://senselab.med.yale.edu/OrDB/", "institution": {"id": 1416, "name": "Center for Medical Informatics, Yale University School of Medicine, New Haven, Connecticut", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "8497", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1418, "prefix": "odor", "mirId": "MIR:00000500", "name": "Odor Molecules DataBase", "pattern": "^\\d+$", "description": "OdorDB stores information related to odorous compounds, specifically identifying those that have been shown to interact with olfactory receptors", "created": "2019-06-11T14:17:34.340+0000", "modified": "2019-06-11T14:17:34.340+0000", "resources": [{"id": 1419, "mirId": "MIR:00100641", "urlPattern": "http://senselab.med.yale.edu/OdorDB/Data/{$id}/?db=5", "name": "Odor Molecules DataBase at Yale University School of Medicine", "description": "Odor Molecules DataBase at Yale University School of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "74", "resourceHomeUrl": "http://senselab.med.yale.edu/OdorDB", "institution": {"id": 1416, "name": "Center for Medical Informatics, Yale University School of Medicine, New Haven, Connecticut", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "74", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1420, "prefix": "p3db.protein", "mirId": "MIR:00000501", "name": "P3DB Protein", "pattern": "^\\d+$", "description": "Plant Protein Phosphorylation DataBase (P3DB) is a database that provides information on experimentally determined phosphorylation sites in the proteins of various plant species. This collection references plant proteins that contain phosphorylation sites.", "created": "2019-06-11T14:17:34.528+0000", "modified": "2019-06-11T14:17:34.528+0000", "resources": [{"id": 1422, "mirId": "MIR:00100642", "urlPattern": "http://www.p3db.org/protein.php?id={$id}&ref=0", "name": "P3DB Protein at University of Missouri", "description": "P3DB Protein at University of Missouri", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "70", "resourceHomeUrl": "http://www.p3db.org/", "institution": {"id": 1421, "name": "Department of Computer Science, University of Missouri, Columbia, Missouri", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "70", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1423, "prefix": "p3db.site", "mirId": "MIR:00000502", "name": "P3DB Site", "pattern": "^\\d+$", "description": "Plant Protein Phosphorylation DataBase (P3DB) is a database that provides information on experimentally determined phosphorylation sites in the proteins of various plant species. This collection references phosphorylation sites in proteins.", "created": "2019-06-11T14:17:34.763+0000", "modified": "2019-06-11T14:17:34.763+0000", "resources": [{"id": 1424, "mirId": "MIR:00100643", "urlPattern": "http://www.p3db.org/phosphosite.php?id={$id}&ref=0", "name": "P3DB Site at University of Missouri", "description": "P3DB Site at University of Missouri", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "65", "resourceHomeUrl": "http://www.p3db.org/", "institution": {"id": 1421, "name": "Department of Computer Science, University of Missouri, Columbia, Missouri", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "65", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1425, "prefix": "topdb", "mirId": "MIR:00000503", "name": "TOPDB", "pattern": "^[A-Z0-9]+$", "description": "The Topology Data Bank of Transmembrane Proteins (TOPDB) is a collection of transmembrane protein datasets containing experimentally derived topology information. It contains information gathered from the literature and from public databases availableon transmembrane proteins. Each record in TOPDB also contains information on the given protein sequence, name, organism and cross references to various other databases.", "created": "2019-06-11T14:17:35.217+0000", "modified": "2019-06-11T14:17:35.217+0000", "resources": [{"id": 1427, "mirId": "MIR:00100644", "urlPattern": "http://topdb.enzim.hu/?m=show&id={$id}", "name": "TOPDB at Hungarian Academy of Sciences", "description": "TOPDB at Hungarian Academy of Sciences", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AP00378", "resourceHomeUrl": "http://topdb.enzim.hu/", "institution": {"id": 1426, "name": "Institute of Enzymology, Hungarian Academy of Sciences, Budapest", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "HU", "countryName": "Hungary"}}, "location": {"countryCode": "HU", "countryName": "Hungary"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AP00378", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1428, "prefix": "cattleqtldb", "mirId": "MIR:00000504", "name": "Animal Genome Cattle QTL", "pattern": "^\\d+$", "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection references cattle QTLs.", "created": "2019-06-11T14:17:35.485+0000", "modified": "2019-06-11T14:17:35.485+0000", "resources": [{"id": 1430, "mirId": "MIR:00100645", "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}", "name": "Animal QTL Cattle at Iowa State University", "description": "Animal QTL Cattle at Iowa State University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4685", "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", "institution": {"id": 1429, "name": "Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University, Iowa", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4685", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1431, "prefix": "chickenqtldb", "mirId": "MIR:00000505", "name": "Animal Genome Chicken QTL", "pattern": "^\\d+$", "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection references chicken QTLs.", "created": "2019-06-11T14:17:35.752+0000", "modified": "2019-06-11T14:17:35.752+0000", "resources": [{"id": 1432, "mirId": "MIR:00100646", "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}", "name": "Animal QTL Chicken at Iowa State University", "description": "Animal QTL Chicken at Iowa State University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "14362", "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", "institution": {"id": 1429, "name": "Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University, Iowa", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "14362", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1433, "prefix": "pigqtldb", "mirId": "MIR:00000506", "name": "Animal Genome Pig QTL", "pattern": "^\\d+$", "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection references pig QTLs.", "created": "2019-06-11T14:17:35.969+0000", "modified": "2019-06-11T14:17:35.969+0000", "resources": [{"id": 1434, "mirId": "MIR:00100647", "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}", "name": "Animal QTL Pig at Iowa State University", "description": "Animal QTL Pig at Iowa State University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "14", "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", "institution": {"id": 1429, "name": "Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University, Iowa", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "14", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1435, "prefix": "sheepqtldb", "mirId": "MIR:00000507", "name": "Animal Genome Sheep QTL", "pattern": "^\\d+$", "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection references sheep QTLs.", "created": "2019-06-11T14:17:36.183+0000", "modified": "2019-06-11T14:17:36.183+0000", "resources": [{"id": 1436, "mirId": "MIR:00100648", "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}", "name": "Animal QTL Sheep at Iowa State University", "description": "Animal QTL Sheep at Iowa State University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "19803", "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", "institution": {"id": 1429, "name": "Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University, Iowa", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "19803", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1439, "prefix": "mgnify.samp", "mirId": "MIR:00000510", "name": "MGnify Sample", "pattern": "^[A-Z]+[0-9]+$", "description": "The EBI Metagenomics service is an automated pipeline for the analysis and archiving of metagenomic data that aims to provide insights into the phylogenetic diversity as well as the functional and metabolic potential of a sample. Metagenomics is the study of all genomes present in any given environment without the need for prior individual identification or amplification. This collection references samples.", "created": "2019-06-11T14:17:36.594+0000", "modified": "2019-06-11T14:17:36.594+0000", "resources": [{"id": 1440, "mirId": "MIR:00100656", "urlPattern": "https://www.ebi.ac.uk/metagenomics/samples/{$id}", "name": "MGnify Sample", "description": "MGnify Sample", "official": false, "providerCode": "ebi", "sampleId": "SRS086444", "resourceHomeUrl": "https://www.ebi.ac.uk/metagenomics", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SRS086444", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1441, "prefix": "ega.study", "mirId": "MIR:00000511", "name": "European Genome-phenome Archive Study", "pattern": "^EGAS\\d{11}$", "description": "The EGA is a service for permanent archiving and sharing of all types of personally identifiable genetic and phenotypic data resulting from biomedical research projects. The EGA contains exclusive data collected from individuals whose consent agreements authorize data release only for specific research use or to bona fide researchers. Strict protocols govern how information is managed, stored and distributed by the EGA project. This collection references 'Studies' which are experimental investigations of a particular phenomenon, often drawn from different datasets.", "created": "2019-06-11T14:17:36.823+0000", "modified": "2019-06-11T14:17:36.823+0000", "resources": [{"id": 1442, "mirId": "MIR:00100657", "urlPattern": "https://www.ebi.ac.uk/ega/studies/{$id}", "name": "EGA Study at European Bioinformatics Institute", "description": "EGA Study at European Bioinformatics Institute", "official": true, "providerCode": "ebi", "sampleId": "EGAS00000000001", "resourceHomeUrl": "https://www.ebi.ac.uk/ega/studies", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1443, "mirId": "MIR:00100851", "urlPattern": "https://www.omicsdi.org/dataset/ega/{$id}", "name": "EGA Study through OmicsDI", "description": "EGA Study through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "EGAS00000000001", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EGAS00000000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1444, "prefix": "ega.dataset", "mirId": "MIR:00000512", "name": "European Genome-phenome Archive Dataset", "pattern": "^EGAD\\d{11}$", "description": "The EGA is a service for permanent archiving and sharing of all types of personally identifiable genetic and phenotypic data resulting from biomedical research projects. The EGA contains exclusive data collected from individuals whose consent agreements authorize data release only for specific research use or to bona fide researchers. Strict protocols govern how information is managed, stored and distributed by the EGA project. This collection references 'Datasets'.", "created": "2019-06-11T14:17:37.233+0000", "modified": "2019-06-11T14:17:37.233+0000", "resources": [{"id": 1445, "mirId": "MIR:00100658", "urlPattern": "https://www.ebi.ac.uk/ega/datasets/{$id}", "name": "EGA Dataset at European Bioinformatics Institute", "description": "EGA Dataset at European Bioinformatics Institute", "official": true, "providerCode": "ebi", "sampleId": "EGAD00000000001", "resourceHomeUrl": "https://www.ebi.ac.uk/ega/dataset", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1446, "mirId": "MIR:00100852", "urlPattern": "https://www.omicsdi.org/dataset/ega/{$id}", "name": "EGA Dataset through OmicsDI", "description": "EGA Dataset through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "EGAD00000000001", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EGAD00000000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1453, "prefix": "pride.project", "mirId": "MIR:00000515", "name": "PRIDE Project", "pattern": "^P(X|R)D\\d{6}$", "description": "The PRIDE PRoteomics IDEntifications database is a centralized, standards compliant, public data repository that provides protein and peptide identifications together with supporting evidence. This collection references projects.", "created": "2019-06-11T14:17:38.030+0000", "modified": "2019-06-11T14:17:38.030+0000", "resources": [{"id": 1454, "mirId": "MIR:00100662", "urlPattern": "https://www.ebi.ac.uk/pride/archive/projects/{$id}", "name": "PRIDE Project at EBI", "description": "PRIDE Project at EBI", "official": true, "providerCode": "ebi", "sampleId": "PXD000440", "resourceHomeUrl": "https://www.ebi.ac.uk/pride/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1455, "mirId": "MIR:00100858", "urlPattern": "https://www.omicsdi.org/dataset/pride/{$id}", "name": "PRIDE Project through OmicsDI", "description": "PRIDE Project through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "PXD000440", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PXD000440", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1456, "prefix": "antibodyregistry", "mirId": "MIR:00000516", "name": "Antibody Registry", "pattern": "^\\d{6}$", "description": "The Antibody Registry provides identifiers for antibodies used in publications. It lists commercial antibodies from numerous vendors, each assigned with a unique identifier. Unlisted antibodies can be submitted by providing the catalog number and vendor information.", "created": "2019-06-11T14:17:38.379+0000", "modified": "2019-06-11T14:17:38.379+0000", "resources": [{"id": 1458, "mirId": "MIR:00100664", "urlPattern": "http://antibodyregistry.org/AB_{$id}", "name": "Antibody Registry at University of California", "description": "Antibody Registry at University of California", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "493771", "resourceHomeUrl": "http://antibodyregistry.org/", "institution": {"id": 1457, "name": "Neuroscience Information Framework, University of California, San Diego, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "493771", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1459, "prefix": "mamo", "mirId": "MIR:00000517", "name": "Mathematical Modelling Ontology", "pattern": "^MAMO_\\d{7}$", "description": "The Mathematical Modelling Ontology (MAMO) is a classification of the types of mathematical models used mostly in the life sciences, their variables, relationships and other relevant features.", "created": "2019-06-11T14:17:38.625+0000", "modified": "2019-06-11T14:17:38.625+0000", "resources": [{"id": 1460, "mirId": "MIR:00100665", "urlPattern": "http://bioportal.bioontology.org/ontologies/MAMO/?p=classes&conceptid=http://identifiers.org/mamo/{$id}", "name": "MAMO through BioPortal", "description": "MAMO through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "MAMO_0000026", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/MAMO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1461, "mirId": "MIR:00100758", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/mamo/terms?short_form={$id}", "name": "MaMO through OLS", "description": "MaMO through OLS", "official": false, "providerCode": "ols", "sampleId": "MAMO_0000026", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/mamo", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MAMO_0000026", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1462, "prefix": "eo", "mirId": "MIR:00000518", "name": "Plant Environment Ontology", "pattern": "^(P)?EO\\:\\d{7}$", "description": "The Plant Environment Ontology is a set of standardized controlled vocabularies to describe various types of treatments given to an individual plant / a population or a cultured tissue and/or cell type sample to evaluate the response on its exposure. It also includes the study types, where the terms can be used to identify the growth study facility. Each growth facility such as field study, growth chamber, green house etc is a environment on its own it may also involve instances of biotic and abiotic environments as supplemental treatments used in these studies.", "created": "2019-06-11T14:17:38.985+0000", "modified": "2019-06-11T14:17:38.985+0000", "resources": [{"id": 1463, "mirId": "MIR:00100667", "urlPattern": "http://archive.gramene.org/db/ontology/search?query=EO:{$id}", "name": "Plant Environment Ontology through Gramene", "description": "Plant Environment Ontology through Gramene", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0007404", "resourceHomeUrl": "http://archive.gramene.org/db/ontology/search_term?id=EO:0007359", "institution": {"id": 556, "name": "Cold Spring Harbor Laboratory, New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1464, "mirId": "MIR:00100668", "urlPattern": "http://purl.bioontology.org/ontology/PECO/EO:{$id}", "name": "Plant Environment Ontology through BioPortal", "description": "Plant Environment Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0007404", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PECO", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1465, "mirId": "MIR:00100669", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/eo/terms?obo_id=EO:{$id}", "name": "Plant Environment Ontology through OLS", "description": "Plant Environment Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0007404", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/eo", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0007404", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1466, "prefix": "idot", "mirId": "MIR:00000519", "name": "Identifiers.org Terms", "pattern": "^[A-Za-z]+$", "description": "Identifiers.org Terms (idot) is an RDF vocabulary providing useful terms for describing datasets.", "created": "2019-06-11T14:17:39.487+0000", "modified": "2019-06-11T14:17:39.487+0000", "resources": [{"id": 1467, "mirId": "MIR:00100670", "urlPattern": "https://biomodels.net/vocab/idot.rdf#{$id}", "name": "IdoT via biomodels.net", "description": "IdoT via biomodels.net", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "identifierPattern", "resourceHomeUrl": "https://identifiers.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "identifierPattern", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1470, "prefix": "yeastintron", "mirId": "MIR:00000521", "name": "Yeast Intron Database v4.3", "pattern": "^[A-Z0-9]+$", "description": "The YEast Intron Database (version 4.3) contains information on the spliceosomal introns of the yeast Saccharomyces cerevisiae. It includes expression data that relates to the efficiency of splicing relative to other processes in strains of yeast lacking nonessential splicing factors. The data are displayed on each intron page. This is an updated version of the previous dataset, which can be accessed through [MIR:00000460].", "created": "2019-06-11T14:17:39.906+0000", "modified": "2019-06-11T14:17:39.906+0000", "resources": [{"id": 1471, "mirId": "MIR:00100673", "urlPattern": "http://intron.ucsc.edu/cgi-bin/yeast4.3/intronreports.pl?outputformat=full&orfName={$id}", "name": "Yeast Intron Database version 4.3 at Baskin School of Engineering", "description": "Yeast Intron Database version 4.3 at Baskin School of Engineering", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SNR17A", "resourceHomeUrl": "http://intron.ucsc.edu/yeast4.3/", "institution": {"id": 1319, "name": "University of California, Santa Cruz", "homeUrl": "https://www.ucsc.edu", "description": "UC Santa Cruz opened in 1965 with 650 students. During the 2018-2019 academic year, 16,983 undergraduate and 1,822 graduate students were enrolled.\n", "rorId": "https://ror.org/03s65by71", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SNR17A", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1472, "prefix": "ardb", "mirId": "MIR:00000522", "name": "Antibiotic Resistance Genes Database", "pattern": "^[A-Z_]{3}[0-9]{4,}$", "description": "The Antibiotic Resistance Genes Database (ARDB) is a manually curated database which characterises genes involved in antibiotic resistance. Each gene and resistance type is annotated with information, including resistance profile, mechanism of action, ontology, COG and CDD annotations, as well as external links to sequence and protein databases. This collection references resistance genes.", "created": "2019-06-11T14:17:40.104+0000", "modified": "2019-06-11T14:17:40.104+0000", "resources": [{"id": 1474, "mirId": "MIR:00100678", "urlPattern": "http://ardb.cbcb.umd.edu/cgi/search.cgi?db=L&field=ni&term={$id}", "name": "ARDB at University of Maryland", "description": "ARDB at University of Maryland", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CAE46076", "resourceHomeUrl": "http://ardb.cbcb.umd.edu/", "institution": {"id": 1473, "name": "Center for Bioinformatics and Computational Biology, University of Maryland, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CAE46076", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1475, "prefix": "proteomicsdb.protein", "mirId": "MIR:00000524", "name": "ProteomicsDB Protein", "pattern": "^\\d+$", "description": "ProteomicsDB is an effort dedicated to expedite the identification of the human proteome and its use across the scientific community. This human proteome data is assembled primarily using information from liquid chromatography tandem-mass-spectrometry (LC-MS/MS) experiments involving human tissues, cell lines and body fluids. Information is accessible for individual proteins, or on the basis of protein coverage on the encoding chromosome, and for peptide components of a protein. This collection provides access to individual proteins.", "created": "2019-06-11T14:17:40.344+0000", "modified": "2019-06-11T14:17:40.344+0000", "resources": [{"id": 1477, "mirId": "MIR:00100680", "urlPattern": "https://www.proteomicsdb.org/#human/proteinDetails/{$id}/summary", "name": "Proteomics DB Protein at Center for Integrated Protein Science", "description": "Proteomics DB Protein at Center for Integrated Protein Science", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "53504", "resourceHomeUrl": "https://www.proteomicsdb.org/#human", "institution": {"id": 1476, "name": "Center for Integrated Protein Science, Munich,", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "53504", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1478, "prefix": "proteomicsdb.peptide", "mirId": "MIR:00000525", "name": "ProteomicsDB Peptide", "pattern": "^\\d+$", "description": "ProteomicsDB is an effort dedicated to expedite the identification of the human proteome and its use across the scientific community. This human proteome data is assembled primarily using information from liquid chromatography tandem-mass-spectrometry (LC-MS/MS) experiments involving human tissues, cell lines and body fluids. Information is accessible for individual proteins, or on the basis of protein coverage on the encoding chromosome, and for peptide components of a protein. This collection provides access to the peptides identified for a given protein.", "created": "2019-06-11T14:17:40.583+0000", "modified": "2019-06-11T14:17:40.583+0000", "resources": [{"id": 1480, "mirId": "MIR:00100681", "urlPattern": "https://www.proteomicsdb.org/#human/proteinDetails/{$id}/peptides/", "name": "Proteomics DB Peptide at Center for Integrated Protein Science", "description": "Proteomics DB Peptide at Center for Integrated Protein Science", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "53504", "resourceHomeUrl": "https://www.proteomicsdb.org/#peptideSearch", "institution": {"id": 1479, "name": "Center for Integrated Protein Science, Munich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "53504", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1481, "prefix": "hpm.protein", "mirId": "MIR:00000526", "name": "Human Proteome Map Protein", "pattern": "^\\d+$", "description": "The Human Proteome Map (HPM) portal integrates the peptide sequencing result from the draft map of the human proteome project. The project was based on LC-MS/MS by utilizing of high resolution and high accuracy Fourier transform mass spectrometry. The HPM contains direct evidence of translation of a number of protein products derived from human genes, based on peptide identifications of multiple organs/tissues and cell types from individuals with clinically defined healthy tissues. The HPM portal provides data on individual proteins, as well as on individual peptide spectra. This collection references proteins.", "created": "2019-06-11T14:17:40.825+0000", "modified": "2019-06-11T14:17:40.825+0000", "resources": [{"id": 1482, "mirId": "MIR:00100682", "urlPattern": "http://www.humanproteomemap.org/protein.php?hpm_id={$id}", "name": "Human Proteome Map Protein at Institute of Bioinformatics (Bangalore)", "description": "Human Proteome Map Protein at Institute of Bioinformatics (Bangalore)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1968", "resourceHomeUrl": "http://www.humanproteomemap.org/index.php", "institution": {"id": 1087, "name": "Institute of Bioinformatics, International Tech Park, Bangalore", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1968", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1483, "prefix": "hpm.peptide", "mirId": "MIR:00000527", "name": "Human Proteome Map Peptide", "pattern": "^\\d+$", "description": "The Human Proteome Map (HPM) portal integrates the peptide sequencing result from the draft map of the human proteome project. The project was based on LC-MS/MS by utilizing of high resolution and high accuracy Fourier transform mass spectrometry. The HPM contains direct evidence of translation of a number of protein products derived from human genes, based on peptide identifications of multiple organs/tissues and cell types from individuals with clinically defined healthy tissues. The HPM portal provides data on individual proteins, as well as on individual peptide spectra. This collection references individual peptides through spectra.", "created": "2019-06-11T14:17:41.032+0000", "modified": "2019-06-11T14:17:41.032+0000", "resources": [{"id": 1484, "mirId": "MIR:00100683", "urlPattern": "http://www.humanproteomemap.org/spectrum.php?pep_id={$id}", "name": "Human Proteome Map Peptide at Institute of Bioinformatics (Bangalore)", "description": "Human Proteome Map Peptide at Institute of Bioinformatics (Bangalore)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "9606117", "resourceHomeUrl": "http://www.humanproteomemap.org/index.php", "institution": {"id": 1087, "name": "Institute of Bioinformatics, International Tech Park, Bangalore", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IN", "countryName": "India"}}, "location": {"countryCode": "IN", "countryName": "India"}, "deprecated": false, "deprecationDate": null}], "sampleId": "9606117", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1485, "prefix": "drugbankv4.target", "mirId": "MIR:00000528", "name": "DrugBank Target v4", "pattern": "^BE\\d{7}$", "description": "The DrugBank database is a bioinformatics and chemoinformatics resource that combines detailed drug (i.e. chemical, pharmacological and pharmaceutical) data with comprehensive drug target (i.e. sequence, structure, and pathway) information. This collection references target information from version 4 of the database.", "created": "2019-06-11T14:17:41.273+0000", "modified": "2019-06-11T14:17:41.273+0000", "resources": [{"id": 1487, "mirId": "MIR:00100687", "urlPattern": "http://www.drugbank.ca/biodb/bio_entities/{$id}", "name": "DrugBank Target information version 4", "description": "DrugBank Target information version 4", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BE0000048", "resourceHomeUrl": "http://www.drugbank.ca/targets", "institution": {"id": 1486, "name": "Departments of Computing Science, Biological Sciences, University of Alberta", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BE0000048", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1488, "prefix": "zinc", "mirId": "MIR:00000529", "name": "ZINC", "pattern": "^(ZINC)?\\d+$", "description": "ZINC is a free public resource for ligand discovery. The database contains over twenty million commercially available molecules in biologically relevant representations that may be downloaded in popular ready-to-dock formats and subsets. The Web site enables searches by structure, biological activity, physical property, vendor, catalog number, name, and CAS number.", "created": "2019-06-11T14:17:41.559+0000", "modified": "2019-06-11T14:17:41.559+0000", "resources": [{"id": 1490, "mirId": "MIR:00100688", "urlPattern": "http://zinc15.docking.org/substances/{$id}", "name": "ZINC at University of California (San Francisco)", "description": "ZINC at University of California (San Francisco)", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "ZINC1084", "resourceHomeUrl": "http://zinc15.docking.org/", "institution": {"id": 1489, "name": "Shoichet Laboratory, Department of Pharmaceutical Chemistry, University of California, San Francisco", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ZINC1084", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1491, "prefix": "foodb.compound", "mirId": "MIR:00000530", "name": "FooDB Compound", "pattern": "^FDB\\d+$", "description": "FooDB is resource on food and its constituent compounds. It includes data on the compound\u2019s nomenclature, its description, information on its structure, chemical class, its physico-chemical data, its food source(s), its color, its aroma, its taste, its physiological effect, presumptive health effects (from published studies), and concentrations in various foods. This collection references compounds.", "created": "2019-06-11T14:17:41.796+0000", "modified": "2019-06-11T14:17:41.796+0000", "resources": [{"id": 1492, "mirId": "MIR:00100689", "urlPattern": "http://foodb.ca/compounds/{$id}", "name": "FooDB database of food additives at University of Alberta", "description": "FooDB database of food additives at University of Alberta", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "FDB002100", "resourceHomeUrl": "http://foodb.ca/foods", "institution": {"id": 334, "name": "University of Alberta", "homeUrl": "https://www.ualberta.ca", "description": "The University of Alberta in Edmonton is one of Canada's top teaching and research universities, with an international reputation for excellence across the humanities, sciences, creative arts, business, engineering and health sciences.", "rorId": "https://ror.org/0160cpw27", "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "FDB002100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1493, "prefix": "unii", "mirId": "MIR:00000531", "name": "UNII", "pattern": "^[A-Z0-9]+$", "description": "The purpose of the joint FDA/USP Substance Registration System (SRS) is to support health information technology initiatives by generating unique ingredient identifiers (UNIIs) for substances in drugs, biologics, foods, and devices. The UNII is a non- proprietary, free, unique, unambiguous, non semantic, alphanumeric identifier based on a substance\u2019s molecular structure and/or descriptive information.", "created": "2019-06-11T14:17:41.988+0000", "modified": "2019-06-11T14:17:41.988+0000", "resources": [{"id": 1494, "mirId": "MIR:00100690", "urlPattern": "http://fdasis.nlm.nih.gov/srs/srsdirect.jsp?regno={$id}", "name": "UNII at U.S. Food and Drug Administration", "description": "UNII at U.S. Food and Drug Administration", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "3G6A5W338E", "resourceHomeUrl": "http://fdasis.nlm.nih.gov/srs/", "institution": {"id": 1238, "name": "U.S. Food and Drug Administration, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 3441, "mirId": "MIR:00000990", "urlPattern": "https://precision.fda.gov/uniisearch/srs/unii/{$id}", "name": "United States Food and Drug Administration", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/034xvzb47' with Wikidata IDs [Q204711], and ISNI IDs [0000 0001 2243 3366]", "official": true, "providerCode": "fda", "sampleId": "3G6A5W338E", "resourceHomeUrl": "https://precision.fda.gov/uniisearch", "institution": {"id": 3440, "name": "United States Food and Drug Administration", "homeUrl": "https://www.fda.gov/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/034xvzb47' with Wikidata IDs [Q204711], and ISNI IDs [0000 0001 2243 3366]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3G6A5W338E", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1495, "prefix": "orphanet.ordo", "mirId": "MIR:00000532", "name": "Orphanet Rare Disease Ontology", "pattern": "^Orphanet(_|:)C?\\d+$", "description": "The Orphanet Rare Disease ontology (ORDO) is a structured vocabulary for rare diseases, capturing relationships between diseases, genes and other relevant features which will form a useful resource for the computational analysis of rare diseases.\r\nIt integrates a nosology (classification of rare diseases), relationships (gene-disease relations, epiemological data) and connections with other terminologies (MeSH, UMLS, MedDRA), databases (OMIM, UniProtKB, HGNC, ensembl, Reactome, IUPHAR, Geantlas) and classifications (ICD10).", "created": "2019-06-11T14:17:42.194+0000", "modified": "2019-06-11T14:17:42.194+0000", "resources": [{"id": 1496, "mirId": "MIR:00100705", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ordo/terms?short_form={$id}", "name": "ORDO via OLS", "description": "ORDO via OLS", "official": true, "providerCode": "ols", "sampleId": "Orphanet_C023", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ordo", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Orphanet_C023", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1497, "prefix": "psipar", "mirId": "MIR:00000533", "name": "Protein Affinity Reagents", "pattern": "^PAR:\\d+$", "description": "Protein Affinity Reagents (PSI-PAR) provides a structured controlled vocabulary for the annotation of experiments concerned with interactions, and interactor production methods. PAR is developed by the HUPO Proteomics Standards Initiative and contains the majority of the terms from the PSI-MI controlled vocabular, as well as additional terms.", "created": "2019-06-11T14:17:42.461+0000", "modified": "2019-06-11T14:17:42.461+0000", "resources": [{"id": 1498, "mirId": "MIR:00100709", "urlPattern": "https://www.ebi.ac.uk/ontology-lookup/?termId={$id}", "name": "Protein Affinity Reagents through OLS", "description": "Protein Affinity Reagents through OLS", "official": false, "providerCode": "ols", "sampleId": "PAR:0116", "resourceHomeUrl": "https://www.ebi.ac.uk/ontology-lookup/browse.do?ontName=PAR", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PAR:0116", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1499, "prefix": "clinvar.record", "mirId": "MIR:00000534", "name": "ClinVar Record", "pattern": "^RCV\\d+(\\.\\d+)?$", "description": "ClinVar archives reports of relationships among medically important variants and phenotypes. It records human variation, interpretations of the relationship specific variations to human health, and supporting evidence for each interpretation. Each ClinVar record (RCV identifier) represents an aggregated view of interpretations of the same variation and condition from one or more submitters. Submissions for individual variation/phenotype combinations (SCV identifier) are also collected and made available separately. This collection references the Record Report, based on RCV accession.", "created": "2019-06-11T14:17:42.685+0000", "modified": "2019-06-11T14:17:42.685+0000", "resources": [{"id": 1501, "mirId": "MIR:00100710", "urlPattern": "http://www.ncbi.nlm.nih.gov/clinvar/{$id}/", "name": "ClinVar Record at NCBI", "description": "ClinVar Record at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "RCV000033555.3", "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/clinvar/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "RCV000033555.3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1502, "prefix": "mgnify.proj", "mirId": "MIR:00000535", "name": "MGnify Project", "pattern": "^[A-Z]+[0-9]+$", "description": "MGnify is a resource for the analysis and archiving of microbiome data to help determine the taxonomic diversity and functional & metabolic potential of environmental samples. Users can submit their own data for analysis or freely browse all of the analysed public datasets held within the repository. In addition, users can request analysis of any appropriate dataset within the European Nucleotide Archive (ENA). User-submitted or ENA-derived datasets can also be assembled on request, prior to analysis.", "created": "2019-06-11T14:17:42.938+0000", "modified": "2019-06-11T14:17:42.938+0000", "resources": [{"id": 1503, "mirId": "MIR:00100711", "urlPattern": "https://www.ebi.ac.uk/metagenomics/projects/{$id}", "name": "MGnify Project", "description": "MGnify Project", "official": false, "providerCode": "ebi", "sampleId": "ERP004492", "resourceHomeUrl": "https://www.ebi.ac.uk/metagenomics", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ERP004492", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1504, "prefix": "euclinicaltrials", "mirId": "MIR:00000536", "name": "EU Clinical Trials", "pattern": "^\\d{4}\\-\\d{6}\\-\\d{2}$", "description": "The EU Clinical Trials Register contains information on clinical trials conducted in the European Union (EU), or the European Economic Area (EEA) which started after 1 May 2004.\r\nIt also includes trials conducted outside these areas if they form part of a paediatric investigation plan (PIP), or are sponsored by a marketing authorisation holder, and involve the use of a medicine in the paediatric population.", "created": "2019-06-11T14:17:43.129+0000", "modified": "2019-06-11T14:17:43.129+0000", "resources": [{"id": 1506, "mirId": "MIR:00100712", "urlPattern": "https://www.clinicaltrialsregister.eu/ctr-search/search?query={$id}", "name": "EU Clinical Trials at European Medicines Agency", "description": "EU Clinical Trials at European Medicines Agency", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2008-005144-16", "resourceHomeUrl": "https://www.clinicaltrialsregister.eu/", "institution": {"id": 1505, "name": "European Medicines Agency, London", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2008-005144-16", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1507, "prefix": "google.patent", "mirId": "MIR:00000537", "name": "Google Patents", "pattern": "^[A-Z]{2}\\d+([A-Z])?$", "description": "Google Patents covers the entire collection of granted patents and published patent applications from the USPTO, EPO, and WIPO. US patent documents date back to 1790, EPO and WIPO to 1978. Google Patents can be searched using patent number, inventor, classification, and filing date.", "created": "2019-06-11T14:17:43.371+0000", "modified": "2019-06-11T14:17:43.371+0000", "resources": [{"id": 1509, "mirId": "MIR:00100714", "urlPattern": "https://www.google.com/patents/{$id}", "name": "Google Patents at Google", "description": "Google Patents at Google", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "US4145692", "resourceHomeUrl": "https://www.google.com/patents/", "institution": {"id": 1508, "name": "Google Incorporated", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "US4145692", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1510, "prefix": "uspto", "mirId": "MIR:00000538", "name": "USPTO", "pattern": "^(D|PP|R|T|H|X|AI)?\\d+$", "description": "The United States Patent and Trademark Office (USPTO) is the federal agency for granting U.S. patents and registering trademarks. As a mechanism that protects new ideas and investments in innovation and creativity, the USPTO is at the cutting edge of the nation's technological progress and achievement.", "created": "2019-06-11T14:17:43.583+0000", "modified": "2019-06-11T14:17:43.583+0000", "resources": [{"id": 1512, "mirId": "MIR:00100715", "urlPattern": "http://patft.uspto.gov/netacgi/nph-Parser?Sect2=PTO1&Sect2=HITOFF&p=1&u=/netahtml/PTO/search-bool.html&r=1&f=G&l=50&d=PALL&RefSrch=yes&Query=PN/{$id}", "name": "USPTO patents at USPTO", "description": "USPTO patents at USPTO", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4145692", "resourceHomeUrl": "http://patft.uspto.gov/netahtml/PTO/index.html", "institution": {"id": 1511, "name": "United States Patent and Trademark Office", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4145692", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1513, "prefix": "cpc", "mirId": "MIR:00000539", "name": "Cooperative Patent Classification", "pattern": "^([A-H,Y]|[A-H, Y]\\d{2}|[A-H, Y]\\d{2}[A-Z]|[A-H, Y]\\d{2}[A-Z]\\d{1,3}|[A-H, Y]\\d{2}[A-Z]\\d{1,3}(\\/)?\\d{2,})$", "description": "The Cooperative Patent Classification (CPC) is a patent classification system, developed jointly by the European Patent Office (EPO) and the United States Patent and Trademark Office (USPTO). It is based on the previous European classification system (ECLA), which itself was a version of the International Patent Classification (IPC) system. The CPC patent classification system has been used by EPO and USPTO since 1st January, 2013.", "created": "2019-06-11T14:17:43.853+0000", "modified": "2019-06-11T14:17:43.853+0000", "resources": [{"id": 1515, "mirId": "MIR:00100716", "urlPattern": "https://worldwide.espacenet.com/classification?locale=en_EP#!/CPC={$id}", "name": "Cooperative Patent Classification at Espace", "description": "Cooperative Patent Classification at Espace", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "A01M1/026", "resourceHomeUrl": "https://worldwide.espacenet.com/classification", "institution": {"id": 1514, "name": "Espace, European Patent Office", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "A01M1/026", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1516, "prefix": "gwascentral.study", "mirId": "MIR:00000540", "name": "GWAS Central Study", "pattern": "^HGVST\\d+$", "description": "GWAS Central (previously the Human Genome Variation database of Genotype-to-Phenotype information) is a database of summary level findings from genetic association studies, both large and small. It gathers datasets from public domain projects, and accepts direct data submission. It is based upon Marker information encompassing SNP and variant information from public databases, to which allele and genotype frequency data, and genetic association findings are additionally added. A Study (most generic level) contains one or more Experiments, one or more Sample Panels of test subjects, and one or more Phenotypes. This collection references a GWAS Central Study.", "created": "2019-06-11T14:17:44.062+0000", "modified": "2019-06-11T14:17:44.062+0000", "resources": [{"id": 1517, "mirId": "MIR:00100717", "urlPattern": "https://www.gwascentral.org/study/{$id}", "name": "GWAS Central Study at University of Leicester", "description": "GWAS Central Study at University of Leicester", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HGVST1828", "resourceHomeUrl": "https://www.gwascentral.org/studies", "institution": {"id": 1079, "name": "Department of Genetics, University of Leicester, Leicester", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HGVST1828", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1518, "prefix": "exac.variant", "mirId": "MIR:00000541", "name": "ExAC Variant", "pattern": "^\\d{1,2}\\-\\d+\\-[GATC]\\-[GATC]$", "description": "The Exome Aggregation Consortium (ExAC) is a coalition of investigators seeking to aggregate and harmonize exome sequencing data from a variety of large-scale sequencing projects, and to make summary data available for the wider scientific community. The data pertains to unrelated individuals sequenced as part of various disease-specific and population genetic studies and serves as a reference set of allele frequencies for severe disease studies. This collection references variant information.", "created": "2019-06-11T14:17:44.275+0000", "modified": "2019-06-11T14:17:44.275+0000", "resources": [{"id": 1520, "mirId": "MIR:00100718", "urlPattern": "http://exac.broadinstitute.org/variant/{$id}", "name": "ExAC Variant at Exome Aggregation Consortium", "description": "ExAC Variant at Exome Aggregation Consortium", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "22-46615880-T-C", "resourceHomeUrl": "http://exac.broadinstitute.org/", "institution": {"id": 1519, "name": "Exome Aggregation Consortium (ExAC), Cambridge, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "22-46615880-T-C", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1521, "prefix": "gwascentral.marker", "mirId": "MIR:00000542", "name": "GWAS Central Marker", "pattern": "^HGVM\\d+$", "description": "GWAS Central (previously the Human Genome Variation database of Genotype-to-Phenotype information) is a database of summary level findings from genetic association studies, both large and small. It gathers datasets from public domain projects, and accepts direct data submission. It is based upon Marker information encompassing SNP and variant information from public databases, to which allele and genotype frequency data, and genetic association findings are additionally added. A Study (most generic level) contains one or more Experiments, one or more Sample Panels of test subjects, and one or more Phenotypes. This collection references a GWAS Central Marker.", "created": "2019-06-11T14:17:44.511+0000", "modified": "2019-06-11T14:17:44.511+0000", "resources": [{"id": 1522, "mirId": "MIR:00100719", "urlPattern": "https://www.gwascentral.org/marker/{$id}", "name": "GWAS Central Marker at University of Leicester", "description": "GWAS Central Marker at University of Leicester", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HGVM15354", "resourceHomeUrl": "https://www.gwascentral.org/markers/", "institution": {"id": 1079, "name": "Department of Genetics, University of Leicester, Leicester", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HGVM15354", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1555, "prefix": "bigg.metabolite", "mirId": "MIR:00000556", "name": "BiGG Metabolite", "pattern": "^[a-z_A-Z0-9]+$", "description": "BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. It more published genome-scale metabolic networks into a single database with a set of stardized identifiers called BiGG IDs. Genes in the BiGG models are mapped to NCBI genome annotations, and metabolites are linked to many external databases (KEGG, PubChem, and many more). This collection references individual metabolotes.", "created": "2019-06-11T14:17:47.850+0000", "modified": "2019-06-11T14:17:47.850+0000", "resources": [{"id": 1556, "mirId": "MIR:00100733", "urlPattern": "http://bigg.ucsd.edu/models/universal/metabolites/{$id}", "name": "BiGG Metabolite at University of Cakifornia", "description": "BiGG Metabolite at University of Cakifornia", "official": false, "providerCode": "ucsd", "sampleId": "12dgr161", "resourceHomeUrl": "http://bigg.ucsd.edu/universal/metabolites", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "12dgr161", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1525, "prefix": "lincs.cell", "mirId": "MIR:00000544", "name": "LINCS Cell", "pattern": "(^LCL-\\d+$)|(^LDC-\\d+$)|(^ES-\\d+$)|(^LSC-\\d+$)|(^LPC-\\d+$)", "description": "The Library of Network-Based Cellular Signatures (LINCS) Program aims to create a network-based understanding of biology by cataloging changes in gene expression and other cellular processes that occur when cells are exposed to a variety of perturbing agents. The LINCS cell model system can have the following cell categories: cell lines, primary cells, induced pluripotent stem cells, differentiated cells, and embryonic stem cells. The metadata contains information provided by each LINCS Data and Signature Generation Center (DSGC) and the association with a tissue or organ from which the cells were derived, in many cases are also associated to a disease.", "created": "2019-06-11T14:17:44.903+0000", "modified": "2019-06-11T14:17:44.903+0000", "resources": [{"id": 1527, "mirId": "MIR:00100721", "urlPattern": "http://lincsportal.ccs.miami.edu/cells/#/view/{$id}", "name": "LINCS Portal", "description": "LINCS Portal", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LCL-2085", "resourceHomeUrl": "http://lincsportal.ccs.miami.edu/cells/", "institution": {"id": 1526, "name": "University of Miami, BD2K-LINCS DCIC", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LCL-2085", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1528, "prefix": "lincs.protein", "mirId": "MIR:00000545", "name": "LINCS Protein", "pattern": "^\\d+$", "description": "The HMS LINCS Database currently contains information on experimental reagents (small molecule perturbagens, cells, and proteins). It aims to collect and disseminate information relating to the fundamental principles of cellular response in humans to perturbation. This collection references proteins.", "created": "2019-06-11T14:17:45.145+0000", "modified": "2019-06-11T14:17:45.145+0000", "resources": [{"id": 1529, "mirId": "MIR:00100722", "urlPattern": "http://lincs.hms.harvard.edu/db/proteins/{$id}/", "name": "LINCS Protein at Harvard Medical School", "description": "LINCS Protein at Harvard Medical School", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "200282", "resourceHomeUrl": "http://lincs.hms.harvard.edu/db/proteins/", "institution": {"id": 1322, "name": "Harvard Medical School, Boston, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "200282", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1530, "prefix": "lincs.smallmolecule", "mirId": "MIR:00000546", "name": "LINCS Small Molecule", "pattern": "^LSM-\\d+$", "description": "The Library of Network-Based Cellular Signatures (LINCS) Program aims to create a network-based understanding of biology by cataloging changes in gene expression and other cellular processes that occur when cells are exposed to a variety of perturbing agents. The LINCS small molecule collection is used as perturbagens in LINCS experiments. The small molecule metadata includes substance-specific batch information provided by each LINCS Data and Signature Generation Center (DSGC).", "created": "2019-06-11T14:17:45.396+0000", "modified": "2019-06-11T14:17:45.396+0000", "resources": [{"id": 1532, "mirId": "MIR:00100723", "urlPattern": "http://lincsportal.ccs.miami.edu/SmallMolecules/#/view/{$id}", "name": "LINCS Portal", "description": "LINCS Portal", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LSM-6306", "resourceHomeUrl": "http://lincsportal.ccs.miami.edu/SmallMolecules/", "institution": {"id": 1531, "name": "University of Miami, BD2K-LINCS DCIC, USA", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LSM-6306", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1533, "prefix": "exac.transcript", "mirId": "MIR:00000547", "name": "ExAC Transcript", "pattern": "^ENST\\d{11}$", "description": "The Exome Aggregation Consortium (ExAC) is a coalition of investigators seeking to aggregate and harmonize exome sequencing data from a variety of large-scale sequencing projects, and to make summary data available for the wider scientific community. The data pertains to unrelated individuals sequenced as part of various disease-specific and population genetic studies and serves as a reference set of allele frequencies for severe disease studies. This collection references transcript information.", "created": "2019-06-11T14:17:45.691+0000", "modified": "2019-06-11T14:17:45.691+0000", "resources": [{"id": 1534, "mirId": "MIR:00100724", "urlPattern": "http://exac.broadinstitute.org/transcript/{$id}", "name": "ExAC Transcript at Exome Aggregation Consortium", "description": "ExAC Transcript at Exome Aggregation Consortium", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ENST00000407236", "resourceHomeUrl": "http://exac.broadinstitute.org/", "institution": {"id": 1519, "name": "Exome Aggregation Consortium (ExAC), Cambridge, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ENST00000407236", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1535, "prefix": "exac.gene", "mirId": "MIR:00000548", "name": "ExAC Gene", "pattern": "^ENSG\\d{11}$", "description": "The Exome Aggregation Consortium (ExAC) is a coalition of investigators seeking to aggregate and harmonize exome sequencing data from a variety of large-scale sequencing projects, and to make summary data available for the wider scientific community. The data pertains to unrelated individuals sequenced as part of various disease-specific and population genetic studies and serves as a reference set of allele frequencies for severe disease studies. This collection references gene information.", "created": "2019-06-11T14:17:45.890+0000", "modified": "2019-06-11T14:17:45.890+0000", "resources": [{"id": 1536, "mirId": "MIR:00100725", "urlPattern": "http://exac.broadinstitute.org/gene/{$id}", "name": "ExAC Gene at Exome Aggregation Consortium", "description": "ExAC Gene at Exome Aggregation Consortium", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ENSG00000169174", "resourceHomeUrl": "http://exac.broadinstitute.org/", "institution": {"id": 1519, "name": "Exome Aggregation Consortium (ExAC), Cambridge, Massachusetts", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ENSG00000169174", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1542, "prefix": "unipathway.compound", "mirId": "MIR:00000551", "name": "UniPathway Compound", "pattern": "^UPC\\d{5}$", "description": "UniPathway is a manually curated resource of enzyme-catalyzed and spontaneous chemical reactions. It provides a hierarchical representation of metabolic pathways and a controlled vocabulary for pathway annotation in UniProtKB. UniPathway data are cross-linked to existing metabolic resources such as ChEBI/Rhea, KEGG and MetaCyc. This collection references compounds.", "created": "2019-06-11T14:17:46.612+0000", "modified": "2019-06-11T14:17:46.612+0000", "resources": [{"id": 1544, "mirId": "MIR:00100728", "urlPattern": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upc?upid={$id}", "name": "UniPathway Compound at Swiss Institute of Bioinformatics (SIB)", "description": "UniPathway Compound at Swiss Institute of Bioinformatics (SIB)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "UPC04349", "resourceHomeUrl": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": true, "deprecationDate": "2019-10-01T12:10:54.792+0000"}], "sampleId": "UPC04349", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1545, "prefix": "seed", "mirId": "MIR:00000552", "name": "SEED Subsystem", "pattern": "^\\w+$", "description": "This cooperative effort, which includes Fellowship for Interpretation of Genomes (FIG), Argonne National Laboratory, and the University of Chicago, focuses on the development of the comparative genomics environment called the SEED. It is a framework to support comparative analysis and annotation of genomes, and the development of curated genomic data (annotation). Curation is performed at the level of subsystems by an expert annotator, across many genomes, and not on a gene by gene basis. This collection references subsystems.", "created": "2019-06-11T14:17:46.875+0000", "modified": "2019-06-11T14:17:46.875+0000", "resources": [{"id": 1547, "mirId": "MIR:00100729", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100729/{$id}", "name": "SEED Subsystem at Argonne National Laboratory", "description": "SEED Subsystem at Argonne National Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Biotin_biosynthesis", "resourceHomeUrl": "http://seed-viewer.theseed.org/seedviewer.cgi", "institution": {"id": 1546, "name": "Argonne National Laboratory", "homeUrl": "https://www.anl.gov", "description": "Argonne is a multidisciplinary science and engineering research center, where talented scientists and engineers work together to answer the biggest questions facing humanity, from how to obtain affordable clean energy to protecting ourselves and our environment.", "rorId": "https://ror.org/05gvnxz63", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": true, "deprecationDate": "2019-10-08T08:49:23.021+0000"}], "sampleId": "Biotin_biosynthesis", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1548, "prefix": "seed.compound", "mirId": "MIR:00000553", "name": "SEED Compound", "pattern": "^cpd\\d+$", "description": "This cooperative effort, which includes Fellowship for Interpretation of Genomes (FIG), Argonne National Laboratory, and the University of Chicago, focuses on the development of the comparative genomics environment called the SEED. It is a framework to support comparative analysis and annotation of genomes, and the development of curated genomic data (annotation). Curation is performed at the level of subsystems by an expert annotator, across many genomes, and not on a gene by gene basis. This collection references subsystems.", "created": "2019-06-11T14:17:47.133+0000", "modified": "2019-06-11T14:17:47.133+0000", "resources": [{"id": 1549, "mirId": "MIR:00100730", "urlPattern": "http://modelseed.org/biochem/compounds/{$id}", "name": "SEED Compound at Argonne National Laboratory", "description": "SEED Compound at Argonne National Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "cpd15380", "resourceHomeUrl": "http://modelseed.org/", "institution": {"id": 1546, "name": "Argonne National Laboratory", "homeUrl": "https://www.anl.gov", "description": "Argonne is a multidisciplinary science and engineering research center, where talented scientists and engineers work together to answer the biggest questions facing humanity, from how to obtain affordable clean energy to protecting ourselves and our environment.", "rorId": "https://ror.org/05gvnxz63", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "cpd15380", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1550, "prefix": "bigg.model", "mirId": "MIR:00000554", "name": "BiGG Model", "pattern": "^[a-z_A-Z0-9]+$", "description": "BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. It more published genome-scale metabolic networks into a single database with a set of stardized identifiers called BiGG IDs. Genes in the BiGG models are mapped to NCBI genome annotations, and metabolites are linked to many external databases (KEGG, PubChem, and many more). This collection references individual models.", "created": "2019-06-11T14:17:47.362+0000", "modified": "2019-06-11T14:17:47.362+0000", "resources": [{"id": 1552, "mirId": "MIR:00100731", "urlPattern": "http://bigg.ucsd.edu/models/{$id}", "name": "BiGG Model at University of California", "description": "BiGG Model at University of California", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "iECABU_c1320", "resourceHomeUrl": "http://bigg.ucsd.edu/models", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "iECABU_c1320", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1553, "prefix": "bigg.compartment", "mirId": "MIR:00000555", "name": "BiGG Compartment", "pattern": "^[a-z_A-Z]+$", "description": "BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. It more published genome-scale metabolic networks into a single database with a set of stardized identifiers called BiGG IDs. Genes in the BiGG models are mapped to NCBI genome annotations, and metabolites are linked to many external databases (KEGG, PubChem, and many more). This collection references model compartments.", "created": "2019-06-11T14:17:47.621+0000", "modified": "2019-06-11T14:17:47.621+0000", "resources": [{"id": 1554, "mirId": "MIR:00100732", "urlPattern": "http://bigg.ucsd.edu/compartments/{$id}", "name": "BiGG Compartment at University of California", "description": "BiGG Compartment at University of California", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "c", "resourceHomeUrl": "http://bigg.ucsd.edu/compartments/", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "c", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1537, "prefix": "wikidata", "mirId": "MIR:00000549", "name": "Wikidata", "pattern": "^(Q|P)\\d+$", "description": "Wikidata is a collaboratively edited knowledge base operated by the Wikimedia Foundation. It is intended to provide a common source of certain types of data which can be used by Wikimedia projects such as Wikipedia. Wikidata functions as a document-oriented database, centred on individual items. Items represent topics, for which basic information is stored that identifies each topic.", "created": "2019-06-11T14:17:46.087+0000", "modified": "2020-11-30T14:15:44.647+0000", "resources": [{"id": 1538, "mirId": "MIR:00100726", "urlPattern": "http://www.wikidata.org/entity/{$id}", "name": "Wikidata at Wikimedia Foundation", "description": "Wikidata at Wikimedia Foundation", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q2207226", "resourceHomeUrl": "https://www.wikidata.org/", "institution": {"id": 1111, "name": "Wikimedia Foundation, San Francisco, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Q2207226", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1557, "prefix": "bigg.reaction", "mirId": "MIR:00000557", "name": "BiGG Reaction", "pattern": "^[a-z_A-Z0-9]+$", "description": "BiGG is a knowledgebase of Biochemically, Genetically and Genomically structured genome-scale metabolic network reconstructions. It more published genome-scale metabolic networks into a single database with a set of stardized identifiers called BiGG IDs. Genes in the BiGG models are mapped to NCBI genome annotations, and metabolites are linked to many external databases (KEGG, PubChem, and many more). This collection references reactions.", "created": "2019-06-11T14:17:48.059+0000", "modified": "2019-06-11T14:17:48.059+0000", "resources": [{"id": 1558, "mirId": "MIR:00100734", "urlPattern": "http://bigg.ucsd.edu/models/universal/reactions/{$id}", "name": "BiGG Reaction at University of California", "description": "BiGG Reaction at University of California", "official": false, "providerCode": "ucsd", "sampleId": "13GS", "resourceHomeUrl": "http://bigg.ucsd.edu/universal/reactions", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "13GS", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1561, "prefix": "umls", "mirId": "MIR:00000559", "name": "UMLS", "pattern": "^C\\d+$", "description": "The Unified Medical Language System is a repository of biomedical vocabularies. Vocabularies integrated in the UMLS Metathesaurus include the NCBI taxonomy, Gene Ontology, the Medical Subject Headings (MeSH), OMIM and the Digital Anatomist Symbolic Knowledge Base. UMLS concepts are not only inter-related, but may also be linked to external resources such as GenBank.", "created": "2019-06-11T14:17:48.502+0000", "modified": "2019-06-11T14:17:48.502+0000", "resources": [{"id": 1562, "mirId": "MIR:00100736", "urlPattern": "http://linkedlifedata.com/resource/umls/id/{$id}", "name": "Unified Medical Language System at LinkedLifeData", "description": "Unified Medical Language System at LinkedLifeData", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "C0021390", "resourceHomeUrl": "http://linkedlifedata.com/", "institution": {"id": 63, "name": "Linkedlifedata, Ontotext, Sofia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "BG", "countryName": "Bulgaria"}}, "location": {"countryCode": "BG", "countryName": "Bulgaria"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C0021390", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1567, "prefix": "mirtarbase", "mirId": "MIR:00000562", "name": "miRTarBase", "pattern": "^MIRT\\d{6}$", "description": "miRTarBase is a database of miRNA-target interactions (MTIs), collected manually from relevant literature, following Natural Language Processing of the text to identify research articles related to functional studies of miRNAs. Generally, the collected MTIs are validated experimentally by reporter assay, western blot, microarray and next-generation sequencing experiments.", "created": "2019-06-11T14:17:49.171+0000", "modified": "2019-06-11T14:17:49.171+0000", "resources": [{"id": 1569, "mirId": "MIR:00100739", "urlPattern": "http://mirtarbase.mbc.nctu.edu.tw/php/detail.php?mirtid={$id}", "name": "miRTarBase at National Chiao Tung University", "description": "miRTarBase at National Chiao Tung University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MIRT000002", "resourceHomeUrl": "http://mirtarbase.mbc.nctu.edu.tw/", "institution": {"id": 1568, "name": "Institute of Bioinformatics and Systems Biology, National Chiao Tung University, Hsinchu", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "TW", "countryName": "Taiwan, Province of China"}}, "location": {"countryCode": "TW", "countryName": "Taiwan, Province of China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MIRT000002", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1570, "prefix": "meddra", "mirId": "MIR:00000563", "name": "MedDRA", "pattern": "^\\d+$", "description": "The Medical Dictionary for Regulatory Activities (MedDRA) was developed by the International Council for Harmonisation of Technical Requirements for Registration of Pharmaceuticals for Human Use (ICH)to provide a standardised medical terminology to facilitate sharing of regulatory information internationally for medical products used by humans. It is used within regulatory processes, safety monitoring, as well as for marketing activities. Products covered by the scope of MedDRA include pharmaceuticals, biologics, vaccines and drug-device combination products. The MedDRA dictionary is organized by System Organ Class (SOC), divided into High-Level Group Terms (HLGT), High-Level Terms (HLT), Preferred Terms (PT) and finally into Lowest Level Terms (LLT).", "created": "2019-06-11T14:17:49.428+0000", "modified": "2019-06-11T14:17:49.428+0000", "resources": [{"id": 1571, "mirId": "MIR:00100740", "urlPattern": "http://purl.bioontology.org/ontology/MEDDRA/{$id}", "name": "MedDRA through BioPortal", "description": "MedDRA through BioPortal", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "10015919", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/MEDDRA", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "10015919", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1572, "prefix": "dashr", "mirId": "MIR:00000564", "name": "DASHR", "pattern": "^(hsa-(let|mir)-\\w+(-\\w+)?)|(piR-\\d+)|(chr\\w+.tRNA\\d+-\\w+)|(chr\\w+.tRNA\\d+-\\w+-tRF\\d)|((SNORD|SNORA|ACA|HBII|HBI|U)(-)?\\w+)|(HY\\d\\+(-L\\d+)?)|((LSU|SSU|5S)(-rRNA_Hsa)?(-L\\d+)?)$", "description": "DASHR reports the annotation, expression and evidence for specific RNA processing (cleavage specificity scores/entropy) of human sncRNA genes, precursor and mature sncRNA products across different human tissues and cell types. DASHR integrates information from multiple existing annotation resources for small non-coding RNAs, including microRNAs (miRNAs), Piwi-interacting (piRNAs), small nuclear (snRNAs), nucleolar (snoRNAs), cytoplasmic (scRNAs), transfer (tRNAs), tRNA fragments (tRFs), and ribosomal RNAs (rRNAs). These datasets were obtained from non-diseased human tissues and cell types and were generated for studying or profiling small non-coding RNAs. This collection references RNA records.", "created": "2019-06-11T14:17:49.634+0000", "modified": "2019-06-11T14:17:49.634+0000", "resources": [{"id": 1574, "mirId": "MIR:00100741", "urlPattern": "http://lisanwanglab.org/DASHR/entry/{$id}", "name": "DASHR at University of Pennsylvania", "description": "DASHR at University of Pennsylvania", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "hsa-mir-200a", "resourceHomeUrl": "http://lisanwanglab.org/DASHR/", "institution": {"id": 1573, "name": "Department of Pathology and Laboratory Medicine, University of Pennsylvania, Philadelphia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "hsa-mir-200a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1575, "prefix": "dashr.expression", "mirId": "MIR:00000565", "name": "DASHR expression", "pattern": "^(hsa-(let|mir)-\\w+(-\\w+)?)|(piR-\\d+)|(chr\\w+.tRNA\\d+-\\w+)|(chr\\w+.tRNA\\d+-\\w+-tRF\\d)|((SNORD|SNORA|ACA|HBII|HBI|U)(-)?\\w+)|(HY\\d\\+(-L\\d+)?)|((LSU|SSU|5S)(-rRNA_Hsa)?(-L\\d+)?)$", "description": "DASHR reports the annotation, expression and evidence for specific RNA processing (cleavage specificity scores/entropy) of human sncRNA genes, precursor and mature sncRNA products across different human tissues and cell types. DASHR integrates information from multiple existing annotation resources for small non-coding RNAs, including microRNAs (miRNAs), Piwi-interacting (piRNAs), small nuclear (snRNAs), nucleolar (snoRNAs), cytoplasmic (scRNAs), transfer (tRNAs), tRNA fragments (tRFs), and ribosomal RNAs (rRNAs). These datasets were obtained from non-diseased human tissues and cell types and were generated for studying or profiling small non-coding RNAs. This collection references RNA expression.", "created": "2019-06-11T14:17:49.866+0000", "modified": "2019-06-11T14:17:49.866+0000", "resources": [{"id": 1576, "mirId": "MIR:00100742", "urlPattern": "https://dashr1.lisanwanglab.org/entry/hsa-mir-200a#{$id}#exprPerTissueTable", "name": "DASHR expression at University of Pennsylvania", "description": "DASHR expression at University of Pennsylvania", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "hsa-mir-200a", "resourceHomeUrl": "https://dashr1.lisanwanglab.org/show-expression-table.php?start=0", "institution": {"id": 1573, "name": "Department of Pathology and Laboratory Medicine, University of Pennsylvania, Philadelphia", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "hsa-mir-200a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1577, "prefix": "splash", "mirId": "MIR:00000566", "name": "SPLASH", "pattern": "^splash\\d[A-Z-a-z0-9]-[A-Za-z0-9]+-[A-Za-z0-9]+$", "description": "The spectra hash code (SPLASH) is a unique and non-proprietary identifier for spectra, and is independent of how the spectra were acquired or processed. It can be easily calculated for a wide range of spectra, including Mass spectroscopy, infrared spectroscopy, ultraviolet and nuclear magnetic resonance.", "created": "2019-06-11T14:17:50.083+0000", "modified": "2019-06-11T14:17:50.083+0000", "resources": [{"id": 1579, "mirId": "MIR:00100746", "urlPattern": "http://mona.fiehnlab.ucdavis.edu/#/spectra/splash/{$id}", "name": "Mass Bank of North America (MoNA)", "description": "Mass Bank of North America (MoNA)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "splash10-0zq2000000-77302b0326a418630a84", "resourceHomeUrl": "http://mona.fiehnlab.ucdavis.edu/", "institution": {"id": 1578, "name": "University of Californai, Davis, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "splash10-0zq2000000-77302b0326a418630a84", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1563, "prefix": "mesh", "mirId": "MIR:00000560", "name": "MeSH", "pattern": "^(C|D)\\d{6,9}$", "description": "MeSH (Medical Subject Headings) is the National Library of Medicine's controlled vocabulary thesaurus. It consists of sets of terms naming descriptors in a hierarchical structure that permits searching at various levels of specificity. This thesaurus is used by NLM for indexing articles from biomedical journals, cataloguing of books, documents, etc.", "created": "2019-06-11T14:17:48.752+0000", "modified": "2020-04-21T17:40:51.334+0000", "resources": [{"id": 1564, "mirId": "MIR:00100737", "urlPattern": "http://id.nlm.nih.gov/mesh/{$id}", "name": "MeSH Linked Data at National Library of Medicine", "description": "MeSH Linked Data at National Library of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "C000100", "resourceHomeUrl": "http://id.nlm.nih.gov/mesh/", "institution": {"id": 792, "name": "U.S. National Library of Medicine, National Institute of Health, Maryland", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C000100", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1580, "prefix": "metanetx.chemical", "mirId": "MIR:00000567", "name": "MetaNetX chemical", "pattern": "^(MNXM\\d+|BIOMASS|WATER)$", "description": "MetaNetX/MNXref integrates various information from genome-scale metabolic network reconstructions such as information on reactions, metabolites and compartments. This information undergoes a reconciliation process to minimise for discrepancies between different data sources, and makes the data accessible under a common namespace. This collection references chemical or metabolic components.", "created": "2019-06-11T14:17:50.332+0000", "modified": "2021-02-26T09:36:59.253+0000", "resources": [{"id": 1582, "mirId": "MIR:00100748", "urlPattern": "https://www.metanetx.org/chem_info/{$id}", "name": "MetaNetX chemical at SIB Swiss Institute of Bioinformatics", "description": "MetaNetX chemical at SIB Swiss Institute of Bioinformatics", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MNXM1723", "resourceHomeUrl": "https://www.metanetx.org/", "institution": {"id": 1581, "name": "Vital-IT group, SIB Swiss Institute of Bioinformatics, Lausanne", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MNXM1723", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1583, "prefix": "metanetx.reaction", "mirId": "MIR:00000568", "name": "MetaNetX reaction", "pattern": "^(MNXR\\d+|EMPTY)$", "description": "MetaNetX/MNXref integrates various information from genome-scale metabolic network reconstructions such as information on reactions, metabolites and compartments. This information undergoes a reconciliation process to minimise for discrepancies between different data sources, and makes the data accessible under a common namespace. This collection references reactions.", "created": "2019-06-11T14:17:50.605+0000", "modified": "2021-02-26T09:43:13.847+0000", "resources": [{"id": 1584, "mirId": "MIR:00100749", "urlPattern": "https://www.metanetx.org/equa_info/{$id}", "name": "MetaNetX reaction at SIB Swiss Institute of Bioinformatics", "description": "MetaNetX reaction at SIB Swiss Institute of Bioinformatics", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MNXR101574", "resourceHomeUrl": "https://www.metanetx.org/", "institution": {"id": 1581, "name": "Vital-IT group, SIB Swiss Institute of Bioinformatics, Lausanne", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MNXR101574", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1565, "prefix": "emdb", "mirId": "MIR:00000561", "name": "Electron Microscopy Data Bank", "pattern": "^EMD-\\d{4,5}$", "description": "The Electron Microscopy Data Bank (EMDB) is a public repository for electron microscopy density maps of macromolecular complexes and subcellular structures. It covers a variety of techniques, including single-particle analysis, electron tomography, and electron (2D) crystallography. The EMDB map distribution format follows the CCP4 definition, which is widely recognized by software packages used by the structural biology community.", "created": "2019-06-11T14:17:48.947+0000", "modified": "2023-02-20T08:55:04.411+0000", "resources": [{"id": 1566, "mirId": "MIR:00100738", "urlPattern": "https://www.ebi.ac.uk/pdbe/entry/emdb/{$id}", "name": "EMDB at Protein Data Bank in Europe", "description": "EMDB at Protein Data Bank in Europe", "official": false, "providerCode": "ebi", "sampleId": "EMD-1001", "resourceHomeUrl": "https://www.ebi.ac.uk/pdbe/emdb/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EMD-1001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1587, "prefix": "unipathway.reaction", "mirId": "MIR:00000570", "name": "UniPathway Reaction", "pattern": "^UCR\\d{5}$", "description": "UniPathway is a manually curated resource of enzyme-catalyzed and spontaneous chemical reactions. It provides a hierarchical representation of metabolic pathways and a controlled vocabulary for pathway annotation in UniProtKB. UniPathway data are cross-linked to existing metabolic resources such as ChEBI/Rhea, KEGG and MetaCyc. This collection references individual reactions.", "created": "2019-06-11T14:17:51.017+0000", "modified": "2019-06-11T14:17:51.017+0000", "resources": [{"id": 1588, "mirId": "MIR:00100752", "urlPattern": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway/ucr?upid={$id}", "name": "UniPathway Reaction at Swiss Institute of Bioinformatics (SIB)", "description": "UniPathway Reaction at Swiss Institute of Bioinformatics (SIB)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "UCR00226", "resourceHomeUrl": "http://www.grenoble.prabi.fr/obiwarehouse/unipathway", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": true, "deprecationDate": "2019-10-01T12:11:20.049+0000"}], "sampleId": "UCR00226", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1589, "prefix": "hp", "mirId": "MIR:00000571", "name": "Human Phenotype Ontology", "pattern": "^HP:\\d{7}$", "description": "The Human Phenotype Ontology (HPO) aims to provide a standardized vocabulary of phenotypic abnormalities encountered in human disease. Each term in the HPO describes a phenotypic abnormality, such as atrial septal defect. The HPO is currently being developed using the medical literature, Orphanet, DECIPHER, and OMIM.", "created": "2019-06-11T14:17:51.237+0000", "modified": "2019-06-11T14:17:51.237+0000", "resources": [{"id": 1592, "mirId": "MIR:00100754", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/hp/terms?obo_id=HP:{$id}", "name": "Human Phenotype Ontology through OLS", "description": "Human Phenotype Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0000118", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/hp", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1591, "mirId": "MIR:00100753", "urlPattern": "https://hpo.jax.org/app/browse/term/HP:{$id}", "name": "Human Phenotype Ontology at Institute for Medical Genetics and Human Genetics", "description": "Human Phenotype Ontology at Institute for Medical Genetics and Human Genetics", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "0000118", "resourceHomeUrl": "http://human-phenotype-ontology.github.io/", "institution": {"id": 1590, "name": "Institute for Medical Genetics and Human Genetics, Charit\u00e9-Universit\u00e4tsmedizin, Berlin", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000118", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1593, "prefix": "sasbdb", "mirId": "MIR:00000572", "name": "SASBDB", "pattern": "^[Ss][Aa][Ss][A-Za-z0-9]{3}[0-9]$", "description": "Small Angle Scattering Biological Data Bank (SASBDB) is a curated repository for small angle X-ray scattering (SAXS) and neutron scattering (SANS) data and derived models. Small angle scattering (SAS) of X-ray and neutrons provides structural information on biological macromolecules in solution at a resolution of 1-2 nm. SASBDB provides freely accessible and downloadable experimental data, which are deposited together with the relevant experimental conditions, sample details, derived models and their fits to the data.", "created": "2019-06-11T14:17:51.650+0000", "modified": "2019-06-11T14:17:51.650+0000", "resources": [{"id": 1595, "mirId": "MIR:00100763", "urlPattern": "http://www.sasbdb.org/data/{$id}", "name": "SASBDB at European Molecular Biology Laboratory", "description": "SASBDB at European Molecular Biology Laboratory", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "SASDAX8", "resourceHomeUrl": "http://www.sasbdb.org/", "institution": {"id": 1594, "name": "European Molecular Biology Lab Hamburg Outstation", "homeUrl": "https://www.embl-hamburg.de", "description": "EMBL is an intergovernmental organisation specialising in basic research in the life sciences, funded by public research monies from more than 20 member states, including much of Europe and Israel, and two associate members, Argentina and Australia. EMBL is led by the Director General, currently Professor Edith Heard, appointed by the governing body, EMBL Council. The Council is comprised of representatives of all member and associate member states.\nActivities at EMBL Hamburg focus on state-of-the-art structural biology methods using synchrotron radiation. The unit is situated on campus of the German Synchrotron Research Centre (DESY), which hosts leading facilities for synchrotron radiation (PETRA-III) and free electron lasers (FLASH and XFEL, under construction).", "rorId": "https://ror.org/050589e39", "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SASDAX8", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1596, "prefix": "hgnc.genefamily", "mirId": "MIR:00000573", "name": "HGNC gene family", "pattern": "^\\d+$", "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. In addition, HGNC also provides a unique numerical ID to identify gene families, providing a display of curated hierarchical relationships between families.", "created": "2019-06-11T14:17:51.916+0000", "modified": "2019-06-11T14:17:51.916+0000", "resources": [{"id": 1597, "mirId": "MIR:00100765", "urlPattern": "https://www.genenames.org/cgi-bin/genefamilies/set/{$id}", "name": "HGNC gene family at HUGO Genome Nomenclature Committee", "description": "HGNC gene family at HUGO Genome Nomenclature Committee", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "141", "resourceHomeUrl": "https://www.genenames.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "141", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1598, "prefix": "mdm", "mirId": "MIR:00000574", "name": "MDM", "pattern": "^\\d+$", "description": "The MDM (Medical Data Models) Portal is a meta-data registry for creating, analysing, sharing and reusing medical forms. Electronic forms are central in numerous processes involving data, including the collection of data through electronic health records (EHRs), Electronic Data Capture (EDC), and as case report forms (CRFs) for clinical trials. The MDM Portal provides medical forms in numerous export formats, facilitating the sharing and reuse of medical data models and exchange between information systems.", "created": "2019-06-11T14:17:52.138+0000", "modified": "2019-06-11T14:17:52.138+0000", "resources": [{"id": 1600, "mirId": "MIR:00100766", "urlPattern": "https://medical-data-models.org/forms/{$id}", "name": "MDM at University of Muenster", "description": "MDM at University of Muenster", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4776", "resourceHomeUrl": "https://medical-data-models.org/", "institution": {"id": 1599, "name": "Institute of Medical Informatics, University of Muenster", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4776", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1601, "prefix": "probonto", "mirId": "MIR:00000575", "name": "ProbOnto", "pattern": "^PROB_c\\d+$", "description": "ProbOnto, is an ontology-based knowledge base of probability distributions, featuring uni- and multivariate distributions with their defining functions, characteristics, relationships and reparameterisation formulae. It can be used for annotation of models, facilitating the encoding of distribution-based models, related functions and quantities.", "created": "2019-06-11T14:17:52.483+0000", "modified": "2019-06-11T14:17:52.483+0000", "resources": [{"id": 1602, "mirId": "MIR:00100768", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/probonto/terms?short_form={$id}", "name": "ProbOnto through OLS", "description": "ProbOnto through OLS", "official": false, "providerCode": "ols", "sampleId": "PROB_c0000005", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/probonto", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PROB_c0000005", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1603, "prefix": "apid.interactions", "mirId": "MIR:00000576", "name": "APID Interactomes", "pattern": "^([A-N,R-Z][0-9]([A-Z][A-Z, 0-9][A-Z, 0-9][0-9]){1,2})|([O,P,Q][0-9][A-Z, 0-9][A-Z, 0-9][A-Z, 0-9][0-9])(\\.\\d+)?$", "description": "APID (Agile Protein Interactomes DataServer) provides information on the protein interactomes of numerous organisms, based on the integration of known experimentally validated protein-protein physical interactions (PPIs). Interactome data includes a report on quality levels and coverage over the proteomes for each organism included. APID integrates PPIs from primary databases of molecular interactions (BIND, BioGRID, DIP, HPRD, IntAct, MINT) and also from experimentally resolved 3D structures (PDB) where more than two distinct proteins have been identified. This collection references protein interactors, through a UniProt identifier.", "created": "2019-06-11T14:17:52.731+0000", "modified": "2019-06-11T14:17:52.731+0000", "resources": [{"id": 1605, "mirId": "MIR:00100769", "urlPattern": "http://cicblade.dep.usal.es:8080/APID/Interactions.action?protein={$id}", "name": "APID at Salamanca", "description": "APID at Salamanca", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "P01116", "resourceHomeUrl": "http://cicblade.dep.usal.es:8080/APID/", "institution": {"id": 1604, "name": "Cancer Research Center (CiC-IBMCC), Consejo Superior de Investigaciones Cient\u00edficas (CSIC) and Universidad de Salamanca (USAL), Salamanca", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "ES", "countryName": "Spain"}}, "location": {"countryCode": "ES", "countryName": "Spain"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P01116", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1606, "prefix": "storedb", "mirId": "MIR:00000577", "name": "STOREDB", "pattern": "^STOREDB:(STUDY|FILE|DATASET)\\d+$", "description": "STOREDB database is a repository for data used by the international radiobiology community, archiving and sharing primary data outputs from research on low dose radiation. It also provides a directory of bioresources and databases for radiobiology projects containing information and materials that investigators are willing to share. STORE supports the creation of a low dose radiation research commons.", "created": "2019-06-11T14:17:53.021+0000", "modified": "2019-06-11T14:17:53.021+0000", "resources": [{"id": 1608, "mirId": "MIR:00100771", "urlPattern": "https://www.storedb.org/?{$id}", "name": "STOREDB at University of Cambridge", "description": "STOREDB at University of Cambridge", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "STOREDB:STUDY1040", "resourceHomeUrl": "https://www.storedb.org/", "institution": {"id": 1607, "name": "University of Cambridge, Department of Physiology, Downing Street, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "STOREDB:STUDY1040", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1609, "prefix": "kegg", "mirId": "MIR:00000578", "name": "Kyoto Encyclopedia of Genes and Genomes", "pattern": "^([CHDEGTMKR]\\d+)|(\\w+:[\\w\\d\\.-]*)|([a-z]{3,5})|(\\w{2,4}\\d{5})$", "description": "Kyoto Encyclopedia of Genes and Genomes (KEGG) is a database resource for understanding high-level functions and utilities of the biological system, such as the cell, the organism and the ecosystem, from molecular-level information, especially large-scale molecular datasets generated by genome sequencing and other high-throughput experimental technologies.", "created": "2019-06-11T14:17:53.298+0000", "modified": "2019-06-11T14:17:53.298+0000", "resources": [{"id": 1610, "mirId": "MIR:00100773", "urlPattern": "http://www.kegg.jp/entry/{$id}", "name": "KEGG at Kyoto University Bioinformatics Center", "description": "KEGG at Kyoto University Bioinformatics Center", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "hsa00190", "resourceHomeUrl": "http://www.kegg.jp/", "institution": {"id": 15, "name": "Kyoto University Bioinformatics Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "hsa00190", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1611, "prefix": "planttfdb", "mirId": "MIR:00000579", "name": "Plant Transcription Factor Database", "pattern": "^[A-Z][a-z]{2}_([A-Za-z]{3}[0-9]{6})|([A-Za-z0-9\\._\\-#]*)$", "description": "The Plant TF database (PlantTFDB) systematically identifies transcription factors for plant species. It includes annotation for identified TFs, including information on expression, regulation, interaction, conserved elements, phenotype information. It also provides curated descriptions and cross-references to other life science databases, as well as identifying evolutionary relationship among identified factors.", "created": "2019-06-11T14:17:53.641+0000", "modified": "2019-06-11T14:17:53.641+0000", "resources": [{"id": 1613, "mirId": "MIR:00100772", "urlPattern": "http://planttfdb.cbi.pku.edu.cn/tf.php?uid={$id}", "name": "PlantTFDB at Peking University", "description": "PlantTFDB at Peking University", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Ath_AT1G01030.1", "resourceHomeUrl": "http://planttfdb.cbi.pku.edu.cn", "institution": {"id": 1612, "name": "Peking University", "homeUrl": "http://english.pku.edu.cn/", "description": "Peking University is a comprehensive and national key university. The campus, known as \"Yan Yuan\"\uff08the garden of Yan\uff09, is situated at Haidian District in the western suburb of Beijing, with a total area of 2,743,532 square metres (or 274 hectares). It stands near to the Yuanmingyuan Garden and the Summer Palace.\nPeking University is proud of its outstanding faculty, including 48 members of the Chinese Academy of Sciences (CAS), 9 members of the Chinese Academy of Engineering (CAE), and 21 members of the Third World Academy of Sciences (TWAS).", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Ath_AT1G01030.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1614, "prefix": "mp", "mirId": "MIR:00000580", "name": "Mammalian Phenotype Ontology", "pattern": "^MP:\\d{7}$", "description": "The Mammalian Phenotype Ontology (MP) classifies and organises phenotypic information related to the mouse and other mammalian species. This ontology has been applied to mouse phenotype descriptions in various databases allowing comparisons of data from diverse mammalian sources. It can facilitate in the identification of appropriate experimental disease models, and aid in the discovery of candidate disease genes and molecular signaling pathways.", "created": "2019-06-11T14:17:53.926+0000", "modified": "2019-06-11T14:17:53.926+0000", "resources": [{"id": 1615, "mirId": "MIR:00100774", "urlPattern": "http://www.informatics.jax.org/searches/Phat.cgi?id=MP:{$id}", "name": "Mammalian Phenotype Ontology at The Jackson Lab", "description": "Mammalian Phenotype Ontology at The Jackson Lab", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0005452", "resourceHomeUrl": "http://www.informatics.jax.org/", "institution": {"id": 1278, "name": "The Jackson Laboratory, Bar Harbor, Maine", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1616, "mirId": "MIR:00100775", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/mp/terms?obo_id=MP:{$id}", "name": "Mammalian Phenotype Ontology through OLS", "description": "Mammalian Phenotype Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0005452", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/mp/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1617, "mirId": "MIR:00100776", "urlPattern": "https://bioportal.bioontology.org/ontologies/MP/MP:{$id}", "name": "Mammalian Phenotype Ontology through BioPortal", "description": "Mammalian Phenotype Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "0005452", "resourceHomeUrl": "https://bioportal.bioontology.org/ontologies/MP", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0005452", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1618, "prefix": "worms", "mirId": "MIR:00000581", "name": "World Register of Marine Species", "pattern": "^\\d+$", "description": "The World Register of Marine Species (WoRMS) provides an authoritative and comprehensive list of names of marine organisms. It includes synonyms for valid taxonomic names allowing a more complete interpretation of taxonomic literature. The content of WoRMS is administered by taxonomic experts.", "created": "2019-06-11T14:17:54.476+0000", "modified": "2019-06-11T14:17:54.476+0000", "resources": [{"id": 1620, "mirId": "MIR:00100778", "urlPattern": "http://www.marinespecies.org/aphia.php?p=taxdetails&id={$id}", "name": "World Register of Marine Species", "description": "World Register of Marine Species", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "146421", "resourceHomeUrl": "http://www.marinespecies.org/", "institution": {"id": 1619, "name": "Flanders Marine Institute, Ostend", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "BE", "countryName": "Belgium"}}, "location": {"countryCode": "BE", "countryName": "Belgium"}, "deprecated": false, "deprecationDate": null}], "sampleId": "146421", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1621, "prefix": "multicellds.collection", "mirId": "MIR:00000582", "name": "MultiCellDS collection", "pattern": "^MCDS_C_[a-zA-Z0-9]{1,10}$", "description": "MultiCellDS is data standard for multicellular simulation, experimental, and clinical data. A collection groups one or more individual uniquely identified cell lines, snapshots, or collections. Primary uses are times series (collections of snapshots), patient cohorts (collections of cell lines), and studies (collections of time series collections).", "created": "2019-06-11T14:17:54.753+0000", "modified": "2019-06-11T14:17:54.753+0000", "resources": [{"id": 1623, "mirId": "MIR:00100779", "urlPattern": "http://multicellds.org/MultiCellDB/{$id}", "name": "MultiCellDScollection at Keck School of Medicine", "description": "MultiCellDScollection at Keck School of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MCDS_C_0000000001", "resourceHomeUrl": "http://multicellds.org/MultiCellDB.php", "institution": {"id": 1622, "name": "Center for Applied Molecular Medicine, Keck School of Medicine, University of Southern California, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MCDS_C_0000000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1624, "prefix": "multicellds.snapshot", "mirId": "MIR:00000583", "name": "MultiCellDS Digital snapshot", "pattern": "^MCDS_S_[a-zA-Z0-9]{1,10}$", "description": "MultiCellDS is data standard for multicellular simulation, experimental, and clinical data. A digital snapshot is a single-time output of the microenvironment (including basement membranes and the vascular network), any cells contained within, and essential metadata. Cells may include phenotypic data.", "created": "2019-06-11T14:17:55.012+0000", "modified": "2019-06-11T14:17:55.012+0000", "resources": [{"id": 1625, "mirId": "MIR:00100780", "urlPattern": "http://multicellds.org/MultiCellDB/{$id}", "name": "MultiCellDS snapshot at Keck School of Medicine", "description": "MultiCellDS snapshot at Keck School of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MCDS_S_0000000001", "resourceHomeUrl": "http://multicellds.org/MultiCellDB.php", "institution": {"id": 1622, "name": "Center for Applied Molecular Medicine, Keck School of Medicine, University of Southern California, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MCDS_S_0000000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1626, "prefix": "multicellds.cell_line", "mirId": "MIR:00000584", "name": "MultiCellDS Digital Cell Line", "pattern": "^MCDS_L_[a-zA-Z0-9]{1,10}$", "description": "MultiCellDS is data standard for multicellular simulation, experimental, and clinical data. A digital cell line is a hierarchical organization of quantitative phenotype data for a single biological cell line, including the microenvironmental context of the measurements and essential metadata.", "created": "2019-06-11T14:17:55.320+0000", "modified": "2019-06-11T14:17:55.320+0000", "resources": [{"id": 1627, "mirId": "MIR:00100781", "urlPattern": "http://multicellds.org/MultiCellDB/{$id}", "name": "MultiCellDS Digital Cell Line at Keck School of Medicine", "description": "MultiCellDS Digital Cell Line at Keck School of Medicine", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MCDS_L_0000000001", "resourceHomeUrl": "http://multicellds.org/MultiCellDB.php", "institution": {"id": 1622, "name": "Center for Applied Molecular Medicine, Keck School of Medicine, University of Southern California, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MCDS_L_0000000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1628, "prefix": "ecyano.entity", "mirId": "MIR:00000585", "name": "E-cyanobacterium entity", "pattern": "^\\d+$", "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction \u2014 as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references entities.", "created": "2019-06-11T14:17:55.541+0000", "modified": "2019-06-11T14:17:55.541+0000", "resources": [{"id": 1630, "mirId": "MIR:00100782", "urlPattern": "http://e-cyanobacterium.org/bcs/entity/{$id}/", "name": "e-cyanobacterium entity at Masaryk University Brno", "description": "e-cyanobacterium entity at Masaryk University Brno", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "23", "resourceHomeUrl": "http://www.e-cyanobacterium.org/bcs/entity/", "institution": {"id": 1629, "name": "Systems Biology Laboratory, Faculty of Informatics, Masaryk University Brno", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}}, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}, "deprecated": false, "deprecationDate": null}], "sampleId": "23", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1631, "prefix": "ecyano.model", "mirId": "MIR:00000586", "name": "E-cyanobacterium model", "pattern": "^\\d+$", "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction \u2014 as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references models.", "created": "2019-06-11T14:17:55.864+0000", "modified": "2019-06-11T14:17:55.864+0000", "resources": [{"id": 1632, "mirId": "MIR:00100783", "urlPattern": "http://e-cyanobacterium.org/models/model/{$id}/", "name": "e-cyanobacterium entity at Masaryk University Brno", "description": "e-cyanobacterium entity at Masaryk University Brno", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "26", "resourceHomeUrl": "http://e-cyanobacterium.org/models/", "institution": {"id": 1629, "name": "Systems Biology Laboratory, Faculty of Informatics, Masaryk University Brno", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}}, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}, "deprecated": false, "deprecationDate": null}], "sampleId": "26", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1633, "prefix": "ecyano.rule", "mirId": "MIR:00000587", "name": "E-cyanobacterium rule", "pattern": "^\\d+$", "description": "E-cyanobacterium.org is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction \u2014 as biochemical reaction networks or ordinary differential equations.It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references rules.", "created": "2019-06-11T14:17:56.089+0000", "modified": "2019-06-11T14:17:56.089+0000", "resources": [{"id": 1634, "mirId": "MIR:00100784", "urlPattern": "http://e-cyanobacterium.org/bcs/rule/{$id}/", "name": "e-cyanobacterium entity at Masaryk University Brno", "description": "e-cyanobacterium entity at Masaryk University Brno", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "56", "resourceHomeUrl": "http://www.e-cyanobacterium.org/bcs/rule/", "institution": {"id": 1629, "name": "Systems Biology Laboratory, Faculty of Informatics, Masaryk University Brno", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}}, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}, "deprecated": false, "deprecationDate": null}], "sampleId": "56", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1635, "prefix": "lincs.data", "mirId": "MIR:00000588", "name": "LINCS Data", "pattern": "^[EL]D[SG]-\\d+$", "description": "The Library of Network-Based Cellular Signatures (LINCS) Program aims to create a network-based understanding of biology by cataloguing changes in gene expression and other cellular processes that occur when cells are exposed to perturbing agents. The data is organized and available as datasets, each including experimental data, metadata and a description of the dataset and assay. The dataset group comprises datasets for the same experiment but with different data level results (data processed to a different level).", "created": "2019-06-11T14:17:56.343+0000", "modified": "2019-06-11T14:17:56.343+0000", "resources": [{"id": 1636, "mirId": "MIR:00100785", "urlPattern": "http://lincsportal.ccs.miami.edu/datasets/#/view/{$id}", "name": "LINCS Data at University of Miami", "description": "LINCS Data at University of Miami", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "LDS-1110", "resourceHomeUrl": "http://lincsportal.ccs.miami.edu/datasets/", "institution": {"id": 1526, "name": "University of Miami, BD2K-LINCS DCIC", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1637, "mirId": "MIR:00100856", "urlPattern": "https://www.omicsdi.org/dataset/lincs/{$id}", "name": "Lincs through OmicsDI", "description": "Lincs through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "LDS-1110", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LDS-1110", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1638, "prefix": "agricola", "mirId": "MIR:00000589", "name": "AGRICOLA", "pattern": "^\\d+$", "description": "AGRICOLA (AGRICultural OnLine Access) serves as the catalog and index to the collections of the National Agricultural Library, as well as a primary public source for world-wide access to agricultural information. The database covers materials in all formats and periods, including printed works from as far back as the 15th century.", "created": "2019-06-11T14:17:56.660+0000", "modified": "2019-06-11T14:17:56.660+0000", "resources": [{"id": 1640, "mirId": "MIR:00100789", "urlPattern": "http://ddr.nal.usda.gov/dspace/handle/10113/{$id}", "name": "AGRICOLA at National Agricultural Library", "description": "AGRICOLA at National Agricultural Library", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "50018", "resourceHomeUrl": "http://agricola.nal.usda.gov/", "institution": {"id": 1639, "name": "National Agricultural Library, United States Department of Agriculture", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "50018", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1641, "prefix": "ms", "mirId": "MIR:00000590", "name": "Mass Spectrometry Controlled Vocabulary", "pattern": "^MS:\\d{7}$", "description": "The PSI-Mass Spectrometry (MS) CV contains all the terms used in the PSI MS-related data standards. The CV contains a logical hierarchical structure to ensure ease of maintenance and the development of software that makes use of complex semantics. The CV contains terms required for a complete description of an MS analysis pipeline used in proteomics, including sample labeling, digestion enzymes, instrumentation parts and parameters, software used for identification and quantification of peptides/proteins and the parameters and scores used to determine their significance.", "created": "2019-06-11T14:17:56.919+0000", "modified": "2019-06-11T14:17:56.919+0000", "resources": [{"id": 1642, "mirId": "MIR:00100786", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ms/terms?obo_id=MS:{$id}", "name": "Mass Spectrometry Controlled Vocabulary through OLS", "description": "Mass Spectrometry Controlled Vocabulary through OLS", "official": false, "providerCode": "ols", "sampleId": "1000001", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ms", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1643, "mirId": "MIR:00100787", "urlPattern": "http://purl.bioontology.org/ontology/MS/MS:{$id}", "name": "Mass Spectrometry Controlled Vocabulary through BioPortal", "description": "Mass Spectrometry Controlled Vocabulary through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "1000001", "resourceHomeUrl": "https://bioportal.bioontology.org/ontologies/MS", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1000001", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1650, "prefix": "grid", "mirId": "MIR:00000593", "name": "GRID", "pattern": "^grid\\.[0-9]+\\.[a-f0-9]{1,2}$", "description": "International coverage of the world's leading research organisations, indexing 92% of funding allocated globally.", "created": "2019-06-11T14:17:57.806+0000", "modified": "2019-06-11T14:17:57.806+0000", "resources": [{"id": 1652, "mirId": "MIR:00100793", "urlPattern": "https://www.grid.ac/institutes/{$id}", "name": "GRID at Digital Science & Research Ltd.", "description": "GRID at Digital Science & Research Ltd.", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "grid.225360.0", "resourceHomeUrl": "https://www.grid.ac/", "institution": {"id": 1651, "name": "Digital Science &amp; Research Ltd, London", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "grid.225360.0", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1653, "prefix": "medgen", "mirId": "MIR:00000594", "name": "MedGen", "pattern": "^[CN]*\\d{4,7}$", "description": "MedGen is a portal for information about conditions and phenotypes related to Medical Genetics. Terms from multiple sources are aggregated into concepts, each of which is assigned a unique identifier and a preferred name and symbol. The core content of the record may include names, identifiers used by other databases, mode of inheritance, clinical features, and map location of the loci affecting the disorder.", "created": "2019-06-11T14:17:58.068+0000", "modified": "2019-06-11T14:17:58.068+0000", "resources": [{"id": 1654, "mirId": "MIR:00100794", "urlPattern": "https://www.ncbi.nlm.nih.gov/medgen/{$id}", "name": "MedGen at NCBI", "description": "MedGen at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "760050", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/medgen/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "760050", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1655, "prefix": "clinvar.submission", "mirId": "MIR:00000595", "name": "ClinVar Submission", "pattern": "^SCV\\d+(\\.\\d+)?$", "description": "ClinVar archives reports of relationships among medically important variants and phenotypes. It records human variation, interpretations of the relationship specific variations to human health, and supporting evidence for each interpretation. Each ClinVar record (RCV identifier) represents an aggregated view of interpretations of the same variation and condition from one or more submitters. Submissions for individual variation/phenotype combinations (SCV identifier) are also collected and made available separately. This collection references submissions, and is based on SCV accession.", "created": "2019-06-11T14:17:58.273+0000", "modified": "2019-06-11T14:17:58.273+0000", "resources": [{"id": 1656, "mirId": "MIR:00100795", "urlPattern": "http://www.ncbi.nlm.nih.gov/clinvar?term={$id}", "name": "ClinVar Submission at NCBI", "description": "ClinVar Submission at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "SCV000151292", "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/clinvar/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SCV000151292", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1657, "prefix": "clinvar", "mirId": "MIR:00000596", "name": "ClinVar Variant", "pattern": "^\\d+$", "description": "ClinVar archives reports of relationships among medically important variants and phenotypes. It records human variation, interpretations of the relationship specific variations to human health, and supporting evidence for each interpretation. Each ClinVar record (RCV identifier) represents an aggregated view of interpretations of the same variation and condition from one or more submitters. Submissions for individual variation/phenotype combinations (SCV identifier) are also collected and made available separately. This collection references the Variant identifier.", "created": "2019-06-11T14:17:58.490+0000", "modified": "2019-06-11T14:17:58.490+0000", "resources": [{"id": 1658, "mirId": "MIR:00100796", "urlPattern": "https://www.ncbi.nlm.nih.gov/clinvar/variation/{$id}", "name": "ClinVar Variant at NCBI", "description": "ClinVar Variant at NCBI", "official": false, "providerCode": "ncbi", "sampleId": "12345", "resourceHomeUrl": "http://www.ncbi.nlm.nih.gov/clinvar/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "12345", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1664, "prefix": "mir", "mirId": "MIR:00000599", "name": "Identifiers.org Registry", "pattern": "^MIR:\\d{8}$", "description": "The Identifiers.org registry contains registered namespace and provider prefixes with associated access URIs for a large number of high quality data collections. These prefixes are used in web resolution of compact identifiers of the form \u201cPREFIX:ACCESSION\u201d or \"PROVIDER/PREFIX:ACCESSION\u201d commonly used to specify bioinformatics and other data resources.", "created": "2019-06-11T14:17:59.221+0000", "modified": "2019-06-11T14:17:59.221+0000", "resources": [{"id": 1665, "mirId": "MIR:00100800", "urlPattern": "https://registry.identifiers.org/registry?query=MIR:{$id}", "name": "Identifiers.org Registry through EBI", "description": "Identifiers.org Registry through EBI", "official": false, "providerCode": "ebi", "sampleId": "00100037", "resourceHomeUrl": "https://registry.identifiers.org/registry", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00100037", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1669, "prefix": "cosmic", "mirId": "MIR:00000601", "name": "COSMIC Gene", "pattern": "^[A-Z0-9]+$", "description": "COSMIC is a comprehensive global resource for information on somatic mutations in human cancer, combining curation of the scientific literature with tumor resequencing data from the Cancer Genome Project at the Sanger Institute, U.K. This collection references genes.", "created": "2019-06-11T14:17:59.699+0000", "modified": "2019-06-11T14:17:59.699+0000", "resources": [{"id": 1670, "mirId": "MIR:00100802", "urlPattern": "http://cancer.sanger.ac.uk/cosmic/gene/overview?ln={$id}", "name": "COSMIC Gene at Sanger", "description": "COSMIC Gene at Sanger", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BRAF", "resourceHomeUrl": "http://cancer.sanger.ac.uk/cosmic/", "institution": {"id": 1393, "name": "Wellcome Trust Sanger Institute, Wellcome Trust Genome Campus, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BRAF", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1671, "prefix": "dbgap", "mirId": "MIR:00000602", "name": "dbGaP", "pattern": "^phs[0-9]{6}(.v\\d+.p\\d+)?$", "description": "The database of Genotypes and Phenotypes (dbGaP) archives and distributes the results of studies that have investigated the interaction of genotype and phenotype.", "created": "2019-06-11T14:17:59.890+0000", "modified": "2019-06-11T14:17:59.890+0000", "resources": [{"id": 1672, "mirId": "MIR:00100803", "urlPattern": "https://www.ncbi.nlm.nih.gov/projects/gap/cgi-bin/study.cgi?study_id={$id}", "name": "dbGaP through NCBI", "description": "dbGaP through NCBI", "official": true, "providerCode": "ncbi", "sampleId": "phs000768.v2.p1", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/projects/gap", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "phs000768.v2.p1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1673, "prefix": "iao", "mirId": "MIR:00000603", "name": "Information Artifact Ontology", "pattern": "^\\d{7}$", "description": "An ontology of information entities, originally driven by work by the Ontology of Biomedical Investigation (OBI) digital entity and realizable information entity branch.", "created": "2019-06-11T14:18:00.081+0000", "modified": "2019-06-11T14:18:00.081+0000", "resources": [{"id": 1675, "mirId": "MIR:00100804", "urlPattern": "http://purl.obolibrary.org/obo/IAO_{$id}", "name": "IAO through Ontobee", "description": "IAO through Ontobee", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0000030", "resourceHomeUrl": "http://www.ontobee.org/ontology/IAO", "institution": {"id": 1674, "name": "University of Pennsylvania", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000030", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1676, "prefix": "gdc", "mirId": "MIR:00000604", "name": "Genomic Data Commons Data Portal", "pattern": "^[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}$", "description": "The GDC Data Portal is a robust data-driven platform that allows cancer researchers and bioinformaticians to search and download cancer data for analysis.", "created": "2019-06-11T14:18:00.311+0000", "modified": "2019-06-11T14:18:00.311+0000", "resources": [{"id": 1678, "mirId": "MIR:00100805", "urlPattern": "https://portal.gdc.cancer.gov/cases/{$id}", "name": "Genomic Data Commons", "description": "Genomic Data Commons", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ae8c77fe-e6c8-44d5-8265-4a38c637bbef", "resourceHomeUrl": "https://gdc.cancer.gov", "institution": {"id": 1677, "name": "National Cancer Institute Genomic Data Commons, NIH", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ae8c77fe-e6c8-44d5-8265-4a38c637bbef", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1679, "prefix": "omit", "mirId": "MIR:00000605", "name": "OMIT", "pattern": "^\\d{7}$", "description": "The purpose of the OMIT ontology is to establish data exchange standards and common data elements in the microRNA (miR) domain. Biologists (cell biologists in particular) and bioinformaticians can make use of OMIT to leverage emerging semantic technologies in knowledge acquisition and discovery for more effective identification of important roles performed by miRs in humans' various diseases and biological processes (usually through miRs' respective target genes).", "created": "2019-06-11T14:18:00.566+0000", "modified": "2019-06-11T14:18:00.566+0000", "resources": [{"id": 1680, "mirId": "MIR:00100806", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/omit/terms?short_form=OMIT_{$id}", "name": "Ontology for miRNA Target (OMIT) through OLS", "description": "Ontology for miRNA Target (OMIT) through OLS", "official": false, "providerCode": "ols", "sampleId": "0005506", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/omit/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0005506", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1681, "prefix": "insdc.cds", "mirId": "MIR:00000606", "name": "INSDC CDS", "pattern": "^([A-Z]\\d{5}|[A-Z]{2}\\d{6}|[A-Z]{4}\\d{8}|[A-J][A-Z]{2}\\d{5})(\\.\\d+)?$", "description": "The coding sequence or protein identifiers as maintained in INSDC.", "created": "2019-06-11T14:18:00.782+0000", "modified": "2019-06-11T14:18:00.782+0000", "resources": [{"id": 1684, "mirId": "MIR:00100809", "urlPattern": "http://getentry.ddbj.nig.ac.jp/getentry/dad/{$id}", "name": "INSDC CDS through DDBJ", "description": "INSDC CDS through DDBJ", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AAA35559", "resourceHomeUrl": "http://getentry.ddbj.nig.ac.jp", "institution": {"id": 121, "name": "DNA Data Bank of Japan, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}, {"id": 1682, "mirId": "MIR:00100807", "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", "name": "INSDC CDS through ENA", "description": "INSDC CDS through ENA", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AAA35559", "resourceHomeUrl": "https://www.ebi.ac.uk/ena", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1683, "mirId": "MIR:00100808", "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}", "name": "INSDC CDS through NCBI", "description": "INSDC CDS through NCBI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AAA35559", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/protein/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AAA35559", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1688, "prefix": "glytoucan", "mirId": "MIR:00000608", "name": "GlyTouCan", "pattern": "^G[0-9]{5}[A-Z]{2}$", "description": "GlyTouCan is the single worldwide registry of glycan (carbohydrate sugar chain) data.", "created": "2019-06-11T14:18:01.543+0000", "modified": "2019-06-11T14:18:01.543+0000", "resources": [{"id": 1690, "mirId": "MIR:00100812", "urlPattern": "https://glytoucan.org/Structures/Glycans/{$id}", "name": "The Glycan Repository", "description": "The Glycan Repository", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "G00054MO", "resourceHomeUrl": "https://glytoucan.org", "institution": {"id": 1689, "name": "Soka University, Hachioji, Tokyo", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "G00054MO", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1696, "prefix": "d1id", "mirId": "MIR:00000611", "name": "DataONE", "pattern": "\\S+", "description": "DataONE provides infrastructure facilitating long-term access to scientific research data of relevance to the earth sciences.", "created": "2019-06-11T14:18:02.239+0000", "modified": "2019-06-11T14:18:02.239+0000", "resources": [{"id": 1698, "mirId": "MIR:00100815", "urlPattern": "https://cn.dataone.org/cn/v2/resolve/{{$id}}", "name": "DataONE", "description": "DataONE", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "00030692-0FE1-4A1B-955E-A2E55D659267", "resourceHomeUrl": "https://www.dataone.org", "institution": {"id": 1697, "name": "DataONE, Albuquerque, NM", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00030692-0FE1-4A1B-955E-A2E55D659267", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1702, "prefix": "mmp.ref", "mirId": "MIR:00000613", "name": "MarRef", "pattern": "^MMP\\d+.\\d+$", "description": "MarRef is a manually curated marine microbial reference genome database that contains completely sequenced genomes.", "created": "2019-06-11T14:18:02.696+0000", "modified": "2019-06-11T14:18:02.696+0000", "resources": [{"id": 1704, "mirId": "MIR:00100817", "urlPattern": "https://mmp.sfb.uit.no/databases/marref/#/records/{$id}", "name": "MarRef through SfB", "description": "MarRef through SfB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MMP3312982.2", "resourceHomeUrl": "https://mmp.sfb.uit.no/databases/marref/", "institution": {"id": 1703, "name": "Center for Bioinformatics (SfB), UiT The Arctic university of Norway", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NO", "countryName": "Norway"}}, "location": {"countryCode": "NO", "countryName": "Norway"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MMP3312982.2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1705, "prefix": "mmp.db", "mirId": "MIR:00000614", "name": "MarDB", "pattern": "^MMP\\d+.\\d+$", "description": "MarDB includes all sequenced marine microbial genomes regardless of level of completeness.", "created": "2019-06-11T14:18:02.934+0000", "modified": "2019-06-11T14:18:02.934+0000", "resources": [{"id": 1706, "mirId": "MIR:00100818", "urlPattern": "https://mmp.sfb.uit.no/databases/mardb/#/records/{$id}", "name": "MarDB through SfB", "description": "MarDB through SfB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MMP02954345.1", "resourceHomeUrl": "https://mmp.sfb.uit.no/databases/mardb/", "institution": {"id": 1703, "name": "Center for Bioinformatics (SfB), UiT The Arctic university of Norway", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NO", "countryName": "Norway"}}, "location": {"countryCode": "NO", "countryName": "Norway"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MMP02954345.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1707, "prefix": "mmp.cat", "mirId": "MIR:00000615", "name": "MarCat", "pattern": "^MMP\\d+.\\d+$", "description": "MarCat is a gene (protein) catalogue of uncultivable and cultivable marine genes and proteins derived from metagenomics samples.", "created": "2019-06-11T14:18:03.141+0000", "modified": "2019-06-11T14:18:03.141+0000", "resources": [{"id": 1708, "mirId": "MIR:00100819", "urlPattern": "https://mmp.sfb.uit.no/databases/marcat/#/records/{$id}", "name": "MarCat through SfB", "description": "MarCat through SfB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MMP743597.11", "resourceHomeUrl": "https://mmp.sfb.uit.no/databases/marcat/", "institution": {"id": 1703, "name": "Center for Bioinformatics (SfB), UiT The Arctic university of Norway", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NO", "countryName": "Norway"}}, "location": {"countryCode": "NO", "countryName": "Norway"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MMP743597.11", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1712, "prefix": "aop", "mirId": "MIR:00000617", "name": "AOPWiki", "pattern": "^\\d+$", "description": "International repository of Adverse Outcome Pathways.", "created": "2019-06-11T14:18:03.584+0000", "modified": "2019-06-11T14:18:03.584+0000", "resources": [{"id": 1714, "mirId": "MIR:00100821", "urlPattern": "https://aopwiki.org/aops/{$id}", "name": "AOPWiki", "description": "AOPWiki", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "98", "resourceHomeUrl": "https://aopwiki.org/", "institution": {"id": 1713, "name": "European Commision - DG Joint Research Centre and U.S Environmental Protection Agency", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "98", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1715, "prefix": "ngl", "mirId": "MIR:00000618", "name": "NASA GeneLab", "pattern": "^GLDS-\\d+$", "description": "NASA's GeneLab gathers spaceflight genomic data, RNA and protein expression, and metabolic profiles, interfaces with existing databases for expanded research, will offer tools to conduct data analysis, and is in the process of creating a place online where scientists, researchers, teachers and students can connect with their peers, share their results, and communicate with NASA.", "created": "2019-06-11T14:18:03.826+0000", "modified": "2019-06-11T14:18:03.826+0000", "resources": [{"id": 1717, "mirId": "MIR:00100822", "urlPattern": "https://genelab-data.ndc.nasa.gov/genelab/accession/{$id}", "name": "NASA GeneLab", "description": "NASA GeneLab", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "GLDS-141", "resourceHomeUrl": "https://genelab-data.ndc.nasa.gov/genelab/", "institution": {"id": 1716, "name": "NASA's Ames Research Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GLDS-141", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1699, "prefix": "cath", "mirId": "MIR:00000612", "name": "CATH Protein Structural Domain Superfamily", "pattern": "^[1-6]\\.[0-9]+\\.[0-9]+\\.[0-9]+$", "description": "CATH is a classification of protein structural domains. We group protein domains into superfamilies when there is sufficient evidence they have diverged from a common ancestor. CATH can be used to predict structural and functional information directly from protein sequence.", "created": "2019-06-11T14:18:02.470+0000", "modified": "2021-02-01T16:12:25.234+0000", "resources": [{"id": 1701, "mirId": "MIR:00100816", "urlPattern": "http://www.cathdb.info/cathnode/{$id}", "name": "CATH Node through UCL", "description": "CATH Node through UCL", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1.10.8.10", "resourceHomeUrl": "http://www.cathdb.info", "institution": {"id": 1700, "name": "University College London", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1.10.8.10", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1691, "prefix": "metacyc.compound", "mirId": "MIR:00000609", "name": "MetaCyc Compound", "pattern": "^[A-Za-z0-9+_.%-:]+$", "description": "MetaCyc is a curated database of experimentally elucidated metabolic pathways from all domains of life. MetaCyc contains 2526 pathways from 2844 different organisms. MetaCyc contains pathways involved in both primary and secondary metabolism, as well as associated metabolites, reactions, enzymes, and genes. The goal of MetaCyc is to catalog the universe of metabolism by storing a representative sample of each experimentally elucidated pathway.", "created": "2019-06-11T14:18:01.783+0000", "modified": "2021-04-17T19:53:03.023+0000", "resources": [{"id": 1693, "mirId": "MIR:00100813", "urlPattern": "https://metacyc.org/compound?orgid=META&id={$id}", "name": "MetaCyc Metabolic Pathway Database", "description": "MetaCyc Metabolic Pathway Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CPD-10330", "resourceHomeUrl": "https://metacyc.org", "institution": {"id": 1692, "name": "SRI International", "homeUrl": "https://www.sri.com/", "description": "SRI is an independent, nonprofit research center that works with clients to take the most advanced R&D from the laboratory to the marketplace.", "rorId": "https://ror.org/05s570m15", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CPD-10330", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1694, "prefix": "metacyc.reaction", "mirId": "MIR:00000610", "name": "MetaCyc Reaction", "pattern": "^[A-Za-z0-9+_.%-:]+$", "description": "MetaCyc is a curated database of experimentally elucidated metabolic pathways from all domains of life. MetaCyc contains 2526 pathways from 2844 different organisms. MetaCyc contains pathways involved in both primary and secondary metabolism, as well as associated metabolites, reactions, enzymes, and genes. The goal of MetaCyc is to catalog the universe of metabolism by storing a representative sample of each experimentally elucidated pathway.", "created": "2019-06-11T14:18:02.043+0000", "modified": "2021-04-17T19:55:01.284+0000", "resources": [{"id": 1695, "mirId": "MIR:00100814", "urlPattern": "https://metacyc.org/META/NEW-IMAGE?type=REACTION&object={$id}", "name": "MetaCyc Metabolic Pathway Database - Reaction", "description": "MetaCyc Metabolic Pathway Database - Reaction", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "RXN-14904", "resourceHomeUrl": "https://metacyc.org", "institution": {"id": 1692, "name": "SRI International", "homeUrl": "https://www.sri.com/", "description": "SRI is an independent, nonprofit research center that works with clients to take the most advanced R&D from the laboratory to the marketplace.", "rorId": "https://ror.org/05s570m15", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "RXN-14904", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1709, "prefix": "biotools", "mirId": "MIR:00000616", "name": "BioTools", "pattern": "^[-A-Za-z0-9\\_]*$", "description": "Tool and data services registry.", "created": "2019-06-11T14:18:03.353+0000", "modified": "2023-01-05T19:09:45.468+0000", "resources": [{"id": 1711, "mirId": "MIR:00100820", "urlPattern": "https://bio.tools/{$id}", "name": "BioTools", "description": "BioTools", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "uniprotkb", "resourceHomeUrl": "https://bio.tools/", "institution": {"id": 1710, "name": "Elixir-DK", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DK", "countryName": "Denmark"}}, "location": {"countryCode": "DK", "countryName": "Denmark"}, "deprecated": false, "deprecationDate": null}], "sampleId": "uniprotkb", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1662, "prefix": "cellosaurus", "mirId": "MIR:00000598", "name": "Cellosaurus", "pattern": "^CVCL_[A-Z0-9]{4}(\\.txt)?$", "description": "The Cellosaurus is a knowledge resource on cell lines. It attempts to describe all cell lines used in biomedical research. Its scope includes: Immortalized cell lines; naturally immortal cell lines (example: stem cell lines); finite life cell lines when those are distributed and used widely; vertebrate cell line with an emphasis on human, mouse and rat cell lines; and invertebrate (insects and ticks) cell lines. Its scope does not include primary cell lines (with the exception of the finite life cell lines described above) and plant cell lines.", "created": "2019-06-11T14:17:59.000+0000", "modified": "2023-01-09T15:31:03.506+0000", "resources": [{"id": 1663, "mirId": "MIR:00100799", "urlPattern": "https://www.cellosaurus.org/{$id}", "name": "Cellosaurus through SIB", "description": "Cellosaurus through SIB", "official": false, "providerCode": "sib", "sampleId": "CVCL_0030", "resourceHomeUrl": "https://www.cellosaurus.org/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CVCL_0030", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1718, "prefix": "erv", "mirId": "MIR:00000619", "name": "Human Endogenous Retrovirus Database", "pattern": "^[A-Za-z0-9\\-\\_]+$", "description": "Endogenous retroviruses (ERVs) are common in vertebrate genomes; a typical mammalian genome contains tens to hundreds of thousands of ERV elements. Most ERVs are evolutionarily old and have accumulated multiple mutations, playing important roles in physiology and disease processes. The Human Endogenous Retrovirus Database (hERV) is compiled from the human genome nucleotide sequences obtained from Human Genome Projects, and screens those sequences for hERVs, whilst continuously improving classification and characterization of retroviral families. It provides access to individual reconstructed HERV elements, their sequence, structure and features.", "created": "2019-06-11T14:18:04.072+0000", "modified": "2019-06-11T14:18:04.072+0000", "resources": [{"id": 1720, "mirId": "MIR:00100823", "urlPattern": "https://herv.img.cas.cz/s/{$id}", "name": "Human Endogenous Retrovirus Database", "description": "Human Endogenous Retrovirus Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "THE1B", "resourceHomeUrl": "https://herv.img.cas.cz/", "institution": {"id": 1719, "name": "Institute of Molecular Genetics, Academy of Sciences of the Czech Republic", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}}, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}, "deprecated": false, "deprecationDate": null}], "sampleId": "THE1B", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1721, "prefix": "napdi", "mirId": "MIR:00000620", "name": "Natural Product-Drug Interaction Research Data Repository", "pattern": "^[0-9]+$", "description": "The Natural Product-Drug Interaction Research Data Repository, a publicly accessible database where researchers can access scientific results, raw data, and recommended approaches to optimally assess the clinical significance of pharmacokinetic natural product-drug interactions (PK-NPDIs).", "created": "2019-06-11T14:18:04.316+0000", "modified": "2019-06-11T14:18:04.316+0000", "resources": [{"id": 1723, "mirId": "MIR:00100824", "urlPattern": "https://repo.napdi.org/study/{$id}", "name": "Natural Product-Drug Interaction Research Data Repository", "description": "Natural Product-Drug Interaction Research Data Repository", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "28", "resourceHomeUrl": "https://repo.napdi.org/", "institution": {"id": 1722, "name": "National Center for Complementary and Integrative Health, National Institutes of Health, Washington D.C.", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "28", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1724, "prefix": "arraymap", "mirId": "MIR:00000621", "name": "ArrayMap", "pattern": "^[\\w\\-:,]{3,64}$", "description": "arrayMap is a collection of pre-processed oncogenomic array data sets and CNA (somatic copy number aberrations) profiles. CNA are a type of mutation commonly found in cancer genomes. arrayMap data is assembled from public repositories and supplemented with additional sources, using custom curation pipelines. This information has been mapped to multiple editions of the reference human genome.", "created": "2019-06-11T14:18:04.557+0000", "modified": "2019-06-11T14:18:04.557+0000", "resources": [{"id": 1725, "mirId": "MIR:00100825", "urlPattern": "https://www.arraymap.org/pgx:{$id}", "name": "ArrayMap", "description": "ArrayMap", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "icdom:8500_3", "resourceHomeUrl": "https://www.arraymap.org", "institution": {"id": 1385, "name": "Institute of Molecular Life Sciences, University of Zurich, Zurich", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "icdom:8500_3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1726, "prefix": "begdb", "mirId": "MIR:00000622", "name": "Benchmark Energy & Geometry Database", "pattern": "^[0-9]+$", "description": "The Benchmark Energy & Geometry Database (BEGDB) collects results of highly accurate quantum mechanics (QM) calculations of molecular structures, energies and properties. These data can serve as benchmarks for testing and parameterization of other computational methods.", "created": "2019-06-11T14:18:04.748+0000", "modified": "2019-06-11T14:18:04.748+0000", "resources": [{"id": 1728, "mirId": "MIR:00100826", "urlPattern": "http://www.begdb.com/index.php?action=oneMolecule&state=show&id={$id}", "name": "Benchmark Energy & Geometry Database", "description": "Benchmark Energy & Geometry Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "4214", "resourceHomeUrl": "http://www.begdb.com", "institution": {"id": 1727, "name": "Institute of Organic Chemistry and Biochemistry, Academy of Sciences of the Czech Republic, Prague", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}}, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4214", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1732, "prefix": "sisu", "mirId": "MIR:00000624", "name": "SISu", "pattern": "^[0-9]+:[0-9]+$", "description": "The Sequencing Initiative Suomi (SISu) project is an international collaboration to harmonize and aggregate whole genome and exome sequence data from Finnish samples, providing data for researchers and clinicians. The SISu project allows for the search of variants to determine their attributes and occurrence in Finnish cohorts, and provides summary data on single nucleotide variants and indels from exomes, sequenced in disease-specific and population genetic studies.", "created": "2019-06-11T14:18:05.215+0000", "modified": "2019-06-11T14:18:05.215+0000", "resources": [{"id": 1734, "mirId": "MIR:00100828", "urlPattern": "http://search.sisuproject.fi/#/variant/{$id}", "name": "SISu", "description": "SISu", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "17:41223048", "resourceHomeUrl": "http://www.sisuproject.fi/", "institution": {"id": 1733, "name": "Sequencing Initiative Suomi project (SISu), Institute for Molecular Medicine Finland (FIMM), University of Helsinki, Helsinki", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FI", "countryName": "Finland"}}, "location": {"countryCode": "FI", "countryName": "Finland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "17:41223048", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1735, "prefix": "mzspec", "mirId": "MIR:00000625", "name": "Universal Spectrum Identifier", "pattern": "^mzspec:.+$", "description": "The Universal Spectrum Identifier (USI) is a compound identifier that provides an abstract path to refer to a single spectrum generated by a mass spectrometer, and potentially the ion that is thought to have produced it.", "created": "2019-06-11T14:18:05.468+0000", "modified": "2019-06-11T14:18:05.468+0000", "resources": [{"id": 1737, "mirId": "MIR:00100829", "urlPattern": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/ShowObservedSpectrum?usi=mzspec:{$id}", "name": "Universal Spectrum Identifier through Peptide Atlas", "description": "Universal Spectrum Identifier through Peptide Atlas", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PXD002255::ES_XP_Ubi_97H_HCD_349:scan:9617:LAEIYVNSSFYK/2", "resourceHomeUrl": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/ShowObservedSpectrum", "institution": {"id": 193, "name": "Institute for Systems Biology", "homeUrl": "https://isbscience.org/", "description": "ISB was created in 2000 as the first-ever institute dedicated to systems biology.", "rorId": "https://ror.org/02tpgw303", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 2394, "mirId": "MIR:00000771", "urlPattern": "http://proteomecentral.proteomexchange.org/usi/?usi=mzspec:{$id}", "name": "Institute for Systems Biology, Seattle, USA", "description": "Institute for Systems Biology (ISB), Seattle, USA is an independent research institute focusing on systems biology.", "official": true, "providerCode": "pc", "sampleId": "PXD000865:00603_F01_P004608_B00F_A00_R1:scan:14453:SSLLDVLAAR/2", "resourceHomeUrl": "http://proteomecentral.proteomexchange.org/", "institution": {"id": 193, "name": "Institute for Systems Biology", "homeUrl": "https://isbscience.org/", "description": "ISB was created in 2000 as the first-ever institute dedicated to systems biology.", "rorId": "https://ror.org/02tpgw303", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PXD002255::ES_XP_Ubi_97H_HCD_349:scan:9617:LAEIYVNSSFYK/2", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1738, "prefix": "crisprdb", "mirId": "MIR:00000626", "name": "CRISPRdb", "pattern": "^[0-9]+$", "description": "Repeated CRISPR (\"clustered regularly interspaced short palindromic repeats\") elements found in archaebacteria and eubacteria are believed to defend against viral infection, potentially targeting invading DNA for degradation. CRISPRdb is a database that stores information on CRISPRs that are automatically extracted from newly released genome sequence data.", "created": "2019-06-11T14:18:05.694+0000", "modified": "2019-06-11T14:18:05.694+0000", "resources": [{"id": 1740, "mirId": "MIR:00100830", "urlPattern": "http://crispr.i2bc.paris-saclay.fr/cgi-bin/crispr/SpecieProperties_db.cgi?Taxon_id[]={$id}", "name": "CRISPRdb", "description": "CRISPRdb", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "551115", "resourceHomeUrl": "http://crispr.i2bc.paris-saclay.fr/", "institution": {"id": 1739, "name": "Universit\u00e9 Paris-Sud, Institut de G\u00e9n\u00e9tique et Microbiologie, Orsay,", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "551115", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1741, "prefix": "gnpis", "mirId": "MIR:00000627", "name": "GnpIS", "pattern": "^[A-Za-z0-9]+$", "description": "GnpIS is an integrative information system focused on plants and fungal pests. It provides both genetic (e.g. genetic maps, quantitative trait loci, markers, single nucleotide polymorphisms, germplasms and genotypes) and genomic data (e.g. genomic sequences, physical maps, genome annotation and expression data) for species of agronomical interest.", "created": "2019-06-11T14:18:05.948+0000", "modified": "2019-06-11T14:18:05.948+0000", "resources": [{"id": 1743, "mirId": "MIR:00100831", "urlPattern": "https://urgi.versailles.inra.fr/gnpis/#result/term={$id}", "name": "GnpIS", "description": "GnpIS", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AY109603", "resourceHomeUrl": "https://urgi.versailles.inra.fr/gnpis/", "institution": {"id": 1742, "name": "URGI (Research Unit in Genomics-Info), INRA de Versailles, Route de Saint-Cyr, Versailles", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AY109603", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1744, "prefix": "licebase", "mirId": "MIR:00000628", "name": "LiceBase", "pattern": "^[A-Za-z0-9\\-\\/]+$", "description": "Sea lice (Lepeophtheirus salmonis and Caligus species) are the major pathogens of salmon, significantly impacting upon the global salmon farming industry. Lice control is primarily accomplished through chemotherapeutants, though emerging resistance necessitates the development of new treatment methods (biological agents, prophylactics and new drugs). LiceBase is a database for sea lice genomics, providing genome annotation of the Atlantic salmon louse Lepeophtheirus salmonis, a genome browser, and access to related high-thoughput genomics data. LiceBase also mines and stores data from related genome sequencing and functional genomics projects.", "created": "2019-06-11T14:18:06.185+0000", "modified": "2019-06-11T14:18:06.185+0000", "resources": [{"id": 1746, "mirId": "MIR:00100832", "urlPattern": "https://licebase.org/?q={$id}", "name": "LiceBase", "description": "LiceBase", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "EMLSAT00000003403", "resourceHomeUrl": "https://licebase.org", "institution": {"id": 1745, "name": "Sea Lice Research Centre (SLRC), University of Bergen", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "NO", "countryName": "Norway"}}, "location": {"countryCode": "NO", "countryName": "Norway"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EMLSAT00000003403", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1747, "prefix": "sugarbind", "mirId": "MIR:00000629", "name": "SugarBind", "pattern": "^[A-Za-z]+\\/[0-9]+$", "description": "The SugarBind Database captures knowledge of glycan binding of human pathogen lectins and adhesins, where each glycan-protein binding pair is associated with at least one published reference. It provides information on the pathogen agent, the lectin/adhesin involved, and the human glycan ligand. This collection provides information on ligands.", "created": "2019-06-11T14:18:06.412+0000", "modified": "2019-06-11T14:18:06.412+0000", "resources": [{"id": 1749, "mirId": "MIR:00100833", "urlPattern": "http://sugarbind.expasy.org/{$id}", "name": "SugarBind", "description": "SugarBind", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "lectins/172", "resourceHomeUrl": "http://sugarbind.expasy.org/", "institution": {"id": 1748, "name": "Proteome Informatics Group, SIB Swiss Institute of Bioinformatics, Geneva", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "lectins/172", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1750, "prefix": "rnacentral", "mirId": "MIR:00000630", "name": "RNAcentral", "pattern": "^URS[0-9A-F]{10}(\\_\\d+)?$", "description": "RNAcentral is a public resource that offers integrated access to a comprehensive and up-to-date set of non-coding RNA sequences provided by a collaborating group of Expert Databases.", "created": "2019-06-11T14:18:06.653+0000", "modified": "2019-06-11T14:18:06.653+0000", "resources": [{"id": 1751, "mirId": "MIR:00100834", "urlPattern": "https://rnacentral.org/rna/{$id}", "name": "RNAcentral through EMBL-EBI", "description": "RNAcentral through EMBL-EBI", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "URS0000759CF4", "resourceHomeUrl": "https://rnacentral.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "URS0000759CF4", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1752, "prefix": "microscope", "mirId": "MIR:00000631", "name": "MicroScope", "pattern": "^\\d+$", "description": "MicroScope is an integrative resource that supports systematic and efficient revision of microbial genome annotation, data management and comparative analysis.", "created": "2019-06-11T14:18:06.853+0000", "modified": "2019-06-11T14:18:06.853+0000", "resources": [{"id": 1754, "mirId": "MIR:00100836", "urlPattern": "http://www.genoscope.cns.fr/agc/microscope/mage/info.php?id={$id}", "name": "MicroScope", "description": "MicroScope", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "5601141", "resourceHomeUrl": "http://www.genoscope.cns.fr/agc/microscope", "institution": {"id": 1753, "name": "Universit\u00e9 \u00c9vry-Val-d'Essonne, CEA, Institut de G\u00e9nomique - Genoscope, Laboratoire d'Analyses Bioinformatiques pour la G\u00e9nomique et le M\u00e9tabolisme, Evry", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5601141", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1755, "prefix": "swissregulon", "mirId": "MIR:00000632", "name": "SwissRegulon", "pattern": "^[A-Za-z0-9]+$", "description": "A database of genome-wide annotations of regulatory sites. It contains annotations for 17 prokaryotes and 3 eukaryotes. The database frontend offers an intuitive interface showing genomic information in a graphical form.", "created": "2019-06-11T14:18:07.113+0000", "modified": "2019-06-11T14:18:07.113+0000", "resources": [{"id": 1756, "mirId": "MIR:00100837", "urlPattern": "http://swissregulon.unibas.ch/query/{$id}", "name": "SwissRegulon", "description": "SwissRegulon", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "AHR", "resourceHomeUrl": "http://swissregulon.unibas.ch", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AHR", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1757, "prefix": "validatordb", "mirId": "MIR:00000633", "name": "ValidatorDB", "pattern": "^[A-Za-z0-9\\/]+$", "description": "Database of validation results for ligands and non-standard residues in the Protein Data Bank.", "created": "2019-06-11T14:18:07.321+0000", "modified": "2019-06-11T14:18:07.321+0000", "resources": [{"id": 1759, "mirId": "MIR:00100838", "urlPattern": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/{$id}", "name": "ValidatorDB", "description": "ValidatorDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ByStructure/2h6o", "resourceHomeUrl": "https://webchem.ncbr.muni.cz/Platform/ValidatorDb/", "institution": {"id": 1758, "name": "Central European Institute of Technology", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}}, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ByStructure/2h6o", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1760, "prefix": "biominder", "mirId": "MIR:00000634", "name": "Bio-MINDER Tissue Database", "pattern": "^[a-z0-9\\-]+$", "description": "Database of the dielectric properties of biological tissues.", "created": "2019-06-11T14:18:07.548+0000", "modified": "2019-06-11T14:18:07.548+0000", "resources": [{"id": 1762, "mirId": "MIR:00100839", "urlPattern": "https://datalab.rwth-aachen.de/MINDER/resource/{$id}", "name": "Bio-MINDER Tissue Database", "description": "Bio-MINDER Tissue Database", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "aef4c195-9cf9-46db-a12a-7cfd1ff3eec3", "resourceHomeUrl": "https://datalab.rwth-aachen.de/MINDER", "institution": {"id": 1761, "name": "RWTH Aachen University / NUIG Galway", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IE", "countryName": "Ireland"}}, "location": {"countryCode": "IE", "countryName": "Ireland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "aef4c195-9cf9-46db-a12a-7cfd1ff3eec3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1763, "prefix": "neurovault.collection", "mirId": "MIR:00000635", "name": "NeuroVault Collection", "pattern": "^[1-9][0-9]*$", "description": "Neurovault is an online repository for statistical maps, parcellations and atlases of the brain. This collection references sets (collections) of images.", "created": "2019-06-11T14:18:07.777+0000", "modified": "2019-06-11T14:18:07.777+0000", "resources": [{"id": 1764, "mirId": "MIR:00100840", "urlPattern": "https://neurovault.org/collections/{$id}", "name": "NeuroVault Collection", "description": "NeuroVault Collection", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "3304", "resourceHomeUrl": "http://neurovault.org", "institution": {"id": 98, "name": "Stanford University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3304", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1765, "prefix": "vmhmetabolite", "mirId": "MIR:00000636", "name": "VMH metabolite", "pattern": "[a-zA-Z0-9_\\(\\_\\)\\[\\]]+", "description": "The Virtual Metabolic Human (VMH) is a resource that combines human and gut microbiota metabolism with nutrition and disease.", "created": "2019-06-11T14:18:07.981+0000", "modified": "2019-06-11T14:18:07.981+0000", "resources": [{"id": 1767, "mirId": "MIR:00100841", "urlPattern": "https://www.vmh.life/#metabolite/{$id}", "name": "VMH metabolite", "description": "VMH metabolite", "official": false, "providerCode": "NUI", "sampleId": "h2o", "resourceHomeUrl": "https://www.vmh.life/", "institution": {"id": 2496, "name": "National University of Ireland, Galway", "homeUrl": "http://www.nuigalway.ie/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03bea9k73' with Wikidata IDs [Q644478], and ISNI IDs [0000 0004 0488 0789]", "rorId": null, "location": {"countryCode": "IE", "countryName": "Ireland"}}, "location": {"countryCode": "IE", "countryName": "Ireland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "h2o", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1773, "prefix": "nmr", "mirId": "MIR:00000639", "name": "Nuclear Magnetic Resonance Controlled Vocabulary", "pattern": "^NMR:\\d+$", "description": "nmrCV is a controlled vocabulary to deliver standardized descriptors for the open mark-up language for NMR raw and spectrum data, sanctioned by the metabolomics standards initiative msi.", "created": "2019-06-11T14:18:08.710+0000", "modified": "2019-06-11T14:18:08.710+0000", "resources": [{"id": 1774, "mirId": "MIR:00100844", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/nmrcv/terms?short_form=NMR:{$id}", "name": "NMR through OLS", "description": "NMR through OLS", "official": false, "providerCode": "ols", "sampleId": "1000003", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/nmrcv", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1000003", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1775, "prefix": "vmhreaction", "mirId": "MIR:00000640", "name": "VMH reaction", "pattern": "[a-zA-Z0-9_\\(\\_\\)\\[\\]]+", "description": "The Virtual Metabolic Human (VMH) is a resource that combines human and gut microbiota metabolism with nutrition and disease.", "created": "2019-06-11T14:18:08.921+0000", "modified": "2019-06-11T14:18:08.921+0000", "resources": [{"id": 1776, "mirId": "MIR:00100845", "urlPattern": "https://www.vmh.life/#reaction/{$id}", "name": "VMH reaction", "description": "VMH reaction", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HEX1", "resourceHomeUrl": "https://www.vmh.life/", "institution": {"id": 2496, "name": "National University of Ireland, Galway", "homeUrl": "http://www.nuigalway.ie/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03bea9k73' with Wikidata IDs [Q644478], and ISNI IDs [0000 0004 0488 0789]", "rorId": null, "location": {"countryCode": "IE", "countryName": "Ireland"}}, "location": {"countryCode": "IE", "countryName": "Ireland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HEX1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1777, "prefix": "ascl", "mirId": "MIR:00000641", "name": "Astrophysics Source Code Library", "pattern": "^[0-9\\.]+$", "description": "The Astrophysics Source Code Library (ASCL) is a free online registry for software that have been used in research that has appeared in, or been submitted to, peer-reviewed publications. The ASCL is indexed by the SAO/NASA Astrophysics Data System (ADS) and Web of Science's Data Citation Index (WoS DCI), and is citable by using the unique ascl ID assigned to each code. The ascl ID can be used to link to the code entry by prefacing the number with ascl.net (i.e., ascl.net/1201.001).", "created": "2019-06-11T14:18:09.136+0000", "modified": "2019-06-11T14:18:09.136+0000", "resources": [{"id": 1779, "mirId": "MIR:00100846", "urlPattern": "http://ascl.net/{$id}", "name": "Astrophysics Source Code Library", "description": "Astrophysics Source Code Library", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1801.012", "resourceHomeUrl": "http://ascl.net/", "institution": {"id": 1778, "name": "Astrophysics Source Code Library", "homeUrl": "http://ascl.net/", "description": "The Astrophysics Source Code Library (ASCL), founded in 1999 by Robert Nemiroff and John Wallin, takes an active approach to sharing astrophysical source code.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1801.012", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1780, "prefix": "facebase", "mirId": "MIR:00000642", "name": "FaceBase Data Repository", "pattern": "^FB\\d{8}$", "description": "FaceBase is a collaborative NIDCR-funded consortium to generate data in support of advancing research into craniofacial development and malformation. It serves as a community resource by generating large datasets of a variety of types and making them available to the wider research community via this website. Practices emphasize a comprehensive and multidisciplinary approach to understanding the developmental processes that create the face. The data offered spotlights high-throughput genetic, molecular, biological, imaging and computational techniques. One of the missions of this consortium is to facilitate cooperation and collaboration between projects.", "created": "2019-06-11T14:18:09.365+0000", "modified": "2019-06-11T14:18:09.365+0000", "resources": [{"id": 1782, "mirId": "MIR:00100847", "urlPattern": "https://www.facebase.org/data/record/#1/isa:dataset/accession={$id}", "name": "FaceBase Data Repository", "description": "FaceBase Data Repository", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "FB00000917", "resourceHomeUrl": "https://www.facebase.org", "institution": {"id": 1781, "name": "University of Southern California", "homeUrl": "https://www.usc.edu/", "description": "The University of Southern California is a leading private research university located in Los Angeles \u2014 a global center for arts, technology and international business. It is home to the College of Letters, Arts and Sciences and 21 exceptional academic schools and units. USC\u2019s Health Sciences campus houses renowned specialized care and research in cancer, stem cell and regenerative medicine, orthopedics and sports medicine. The university is the largest private sector employer in the city of Los Angeles, responsible for $8 billion annually in economic activity in the region.", "rorId": "https://ror.org/03taz7m60", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "FB00000917", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1783, "prefix": "gudmap", "mirId": "MIR:00000643", "name": "GUDMAP", "pattern": "^[-0-9a-zA-Z]+(@[-0-9a-zA-Z]+)?$", "description": "The GenitoUrinary Development Molecular Anatomy Project (GUDMAP) is a consortium of laboratories working to provide the scientific and medical community with tools to facilitate research on the GenitoUrinary (GU) tract.", "created": "2019-06-11T14:18:09.598+0000", "modified": "2019-06-11T14:18:09.598+0000", "resources": [{"id": 1785, "mirId": "MIR:00100848", "urlPattern": "https://gudmap.org/id/{$id}", "name": "GUDMAP", "description": "GUDMAP", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q-2958", "resourceHomeUrl": "http://www.gudmap.org/", "institution": {"id": 1784, "name": "GenitoUrinary Development Molecular Anatomy Project (GUDMAP) Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Q-2958", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1786, "prefix": "eu89h", "mirId": "MIR:00000644", "name": "JRC Data Catalogue", "pattern": "^[a-z0-9\\-_]+$", "description": "The JRC Data Catalogue gives access to the multidisciplinary data produced and maintained by the Joint Research Centre, the European Commission's in-house science service providing independent scientific advice and support to policies of the European Union.", "created": "2019-06-11T14:18:09.859+0000", "modified": "2019-06-11T14:18:09.859+0000", "resources": [{"id": 1788, "mirId": "MIR:00100849", "urlPattern": "http://data.europa.eu/89h/{$id}", "name": "JRC Data Catalogue", "description": "JRC Data Catalogue", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "jrc-eurl-ecvam-chemagora", "resourceHomeUrl": "http://data.jrc.ec.europa.eu/", "institution": {"id": 1787, "name": "European Commission, Joint Research Centre (JRC)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "BE", "countryName": "Belgium"}}, "location": {"countryCode": "BE", "countryName": "Belgium"}, "deprecated": false, "deprecationDate": null}], "sampleId": "jrc-eurl-ecvam-chemagora", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1792, "prefix": "mw.study", "mirId": "MIR:00000646", "name": "Metabolomics Workbench Study", "pattern": "^ST[0-9]{6}$", "description": "Metabolomics Workbench stores metabolomics data for small and large studies on cells, tissues and organisms for the Metabolomics Consortium Data Repository and Coordinating Center (DRCC).", "created": "2019-06-11T14:18:10.316+0000", "modified": "2019-06-11T14:18:10.316+0000", "resources": [{"id": 1795, "mirId": "MIR:00100860", "urlPattern": "https://www.omicsdi.org/dataset/metabolomics_workbench/{$id}", "name": "Metabolomics Workbench Study through OmicsDI", "description": "Metabolomics Workbench Study through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "ST000900", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1794, "mirId": "MIR:00100859", "urlPattern": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Study&StudyID={$id}", "name": "Metabolomics Workbench Study", "description": "Metabolomics Workbench Study", "official": true, "providerCode": "ucsd", "sampleId": "ST000900", "resourceHomeUrl": "http://www.metabolomicsworkbench.org/", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ST000900", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1796, "prefix": "mw.project", "mirId": "MIR:00000647", "name": "Metabolomics Workbench Project", "pattern": "^PR[0-9]{6}$", "description": "Metabolomics Workbench stores metabolomics data for small and large studies on cells, tissues and organisms for the Metabolomics Consortium Data Repository and Coordinating Center (DRCC).", "created": "2019-06-11T14:18:10.677+0000", "modified": "2019-06-11T14:18:10.677+0000", "resources": [{"id": 1797, "mirId": "MIR:00100861", "urlPattern": "http://www.metabolomicsworkbench.org/data/DRCCMetadata.php?Mode=Project&ProjectID={$id}", "name": "Metabolomics Workbench Project", "description": "Metabolomics Workbench Project", "official": true, "providerCode": "ucsd", "sampleId": "PR000001", "resourceHomeUrl": "http://www.metabolomicsworkbench.org/", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PR000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1798, "prefix": "mex", "mirId": "MIR:00000648", "name": "Metabolome Express", "pattern": "^\\d+$", "description": "A public place to process, interpret and share GC/MS metabolomics datasets.", "created": "2019-06-11T14:18:10.861+0000", "modified": "2019-06-11T14:18:10.861+0000", "resources": [{"id": 1800, "mirId": "MIR:00100862", "urlPattern": "https://www.metabolome-express.org/datasetview.php?datasetid={$id}", "name": "Metabolome Express", "description": "Metabolome Express", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "36", "resourceHomeUrl": "https://www.metabolome-express.org/", "institution": {"id": 1799, "name": "Centre of Excellence in Plant Energy Biology", "homeUrl": "https://plantenergy.edu.au/", "description": "The Australian Research Council Centre of Excellence in Plant Energy Biology (PEB) is a cutting-edge research centre focused on better understanding the ways plants capture, convert and use energy in response to environmental change, with a view towards improved plant energy efficiency.", "rorId": "https://ror.org/01a1mq059", "location": {"countryCode": "AU", "countryName": "Australia"}}, "location": {"countryCode": "AU", "countryName": "Australia"}, "deprecated": false, "deprecationDate": null}, {"id": 1801, "mirId": "MIR:00100863", "urlPattern": "https://www.omicsdi.org/dataset/metabolome_express/MEX{$id}", "name": "Metabolome Express through OmicsDI", "description": "Metabolome Express through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "36", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "36", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1802, "prefix": "gpmdb", "mirId": "MIR:00000649", "name": "GPMDB", "pattern": "^GPM\\d+$", "description": "The Global Proteome Machine Database was constructed to utilize the information obtained by GPM servers to aid in the difficult process of validating peptide MS/MS spectra as well as protein coverage patterns.", "created": "2019-06-11T14:18:11.249+0000", "modified": "2019-06-11T14:18:11.249+0000", "resources": [{"id": 1804, "mirId": "MIR:00100864", "urlPattern": "http://gpmdb.thegpm.org/~/dblist_gpmnum/gpmnum={$id}", "name": "GPMDB", "description": "GPMDB", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "GPM32310002988", "resourceHomeUrl": "http://gpmdb.thegpm.org/", "institution": {"id": 1803, "name": "The Global Proteome Machine Organization", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}, {"id": 1805, "mirId": "MIR:00100865", "urlPattern": "https://www.omicsdi.org/dataset/gpmdb/{$id}", "name": "GPMDB through OmicsDI", "description": "GPMDB through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "GPM32310002988", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GPM32310002988", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1806, "prefix": "massive", "mirId": "MIR:00000650", "name": "MassIVE", "pattern": "^MSV\\d+$", "description": "MassIVE is a community resource developed by the NIH-funded Center for Computational Mass Spectrometry to promote the global, free exchange of mass spectrometry data.", "created": "2019-06-11T14:18:11.594+0000", "modified": "2019-06-11T14:18:11.594+0000", "resources": [{"id": 1807, "mirId": "MIR:00100866", "urlPattern": "https://massive.ucsd.edu/ProteoSAFe/QueryMSV?id={$id}", "name": "MassIVE", "description": "MassIVE", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MSV000082131", "resourceHomeUrl": "https://massive.ucsd.edu/ProteoSAFe/static/massive.jsp", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1808, "mirId": "MIR:00100867", "urlPattern": "https://www.omicsdi.org/dataset/massive/{$id}", "name": "MassIVE through OmicsDI", "description": "MassIVE through OmicsDI", "official": false, "providerCode": "omicsdi", "sampleId": "MSV000082131", "resourceHomeUrl": "https://www.omicsdi.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MSV000082131", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1809, "prefix": "fplx", "mirId": "MIR:00000651", "name": "FamPlex", "pattern": "^[a-zA-Z0-9][A-Za-z0-9_]+$", "description": "FamPlex is a collection of resources for grounding biological entities from text and describing their hierarchical relationships.", "created": "2019-06-11T14:18:11.924+0000", "modified": "2019-06-11T14:18:11.924+0000", "resources": [{"id": 1810, "mirId": "MIR:00100869", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100869/{$id}", "name": "FPLX through BioPortal", "description": "FPLX through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "RAS", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/FPLX/", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": true, "deprecationDate": "2021-05-10T19:46:22.120+0000"}, {"id": 2617, "mirId": "MIR:00000809", "urlPattern": "https://sorgerlab.github.io/famplex/{$id}", "name": "Sorger lab at Harvard Medical School", "description": "FamPlex is provided by the Sorger lab at Harvard Medical School.", "official": true, "providerCode": "sorgerlab", "sampleId": "ABL_family", "resourceHomeUrl": "https://sorgerlab.github.io/famplex", "institution": {"id": 2616, "name": "Harvard University", "homeUrl": "https://www.harvard.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03vek6s52' with Wikidata IDs [Q13371,Q5676556], and ISNI IDs [000000041936754X]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "RAS", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1811, "prefix": "aop.events", "mirId": "MIR:00000652", "name": "AOPWiki (Key Event)", "pattern": "^\\d+$", "description": "International repository of Adverse Outcome Pathways.", "created": "2019-06-11T14:18:12.154+0000", "modified": "2019-06-11T14:18:12.154+0000", "resources": [{"id": 1812, "mirId": "MIR:00100870", "urlPattern": "https://aopwiki.org/events/{$id}", "name": "AOPWiki (Key Event)", "description": "AOPWiki (Key Event)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "3", "resourceHomeUrl": "https://aopwiki.org/", "institution": {"id": 1713, "name": "European Commision - DG Joint Research Centre and U.S Environmental Protection Agency", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1813, "prefix": "aop.relationships", "mirId": "MIR:00000653", "name": "AOPWiki (Key Event Relationship)", "pattern": "^\\d+$", "description": "International repository of Adverse Outcome Pathways.", "created": "2019-06-11T14:18:12.357+0000", "modified": "2019-06-11T14:18:12.357+0000", "resources": [{"id": 1814, "mirId": "MIR:00100871", "urlPattern": "https://aopwiki.org/relationships/{$id}", "name": "AOPWiki (Key Event Relationship)", "description": "AOPWiki (Key Event Relationship)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "5", "resourceHomeUrl": "https://aopwiki.org/", "institution": {"id": 1713, "name": "European Commision - DG Joint Research Centre and U.S Environmental Protection Agency", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1815, "prefix": "aop.stressor", "mirId": "MIR:00000654", "name": "AOPWiki (Stressor)", "pattern": "^\\d+$", "description": "International repository of Adverse Outcome Pathways.", "created": "2019-06-11T14:18:12.557+0000", "modified": "2019-06-11T14:18:12.557+0000", "resources": [{"id": 1816, "mirId": "MIR:00100872", "urlPattern": "https://aopwiki.org/stressors/{$id}", "name": "AOPWiki (Stressor)", "description": "AOPWiki (Stressor)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "9", "resourceHomeUrl": "https://aopwiki.org/", "institution": {"id": 1713, "name": "European Commision - DG Joint Research Centre and U.S Environmental Protection Agency", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "9", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1820, "prefix": "dev.ga4ghdos", "mirId": "MIR:00000656", "name": "Development Data Object Service", "pattern": "^[a-zA-Z0-9\\-:#\\.]+$", "description": "Assists in resolving data across cloud resources.", "created": "2019-06-11T14:18:12.998+0000", "modified": "2019-06-11T14:18:12.998+0000", "resources": [{"id": 1822, "mirId": "MIR:00100874", "urlPattern": "https://dos-gdc.ucsc-cgp-dev.org/ga4gh/dos/v1/dataobjects/{$id}", "name": "Data Object Service", "description": "Data Object Service", "official": false, "providerCode": "ucsd", "sampleId": "23fa7b4b-9d68-429b-aece-658b11124bb3#2017-03-24T18:43:16.886826-05:00", "resourceHomeUrl": "http://github.com/ga4gh/data-object-service-schemas", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "23fa7b4b-9d68-429b-aece-658b11124bb3#2017-03-24T18:43:16.886826-05:00", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1823, "prefix": "complexportal", "mirId": "MIR:00000657", "name": "Complex Portal", "pattern": "^CPX-[0-9]+$", "description": "A database that describes manually curated macromolecular complexes and provides links to details about these complexes in other databases.", "created": "2019-06-11T14:18:13.254+0000", "modified": "2019-06-11T14:18:13.254+0000", "resources": [{"id": 1824, "mirId": "MIR:00100875", "urlPattern": "https://www.ebi.ac.uk/complexportal/complex/{$id}", "name": "Complex Portal", "description": "Complex Portal", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "CPX-2158", "resourceHomeUrl": "https://www.ebi.ac.uk/complexportal", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CPX-2158", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1825, "prefix": "comptox", "mirId": "MIR:00000658", "name": "CompTox Chemistry Dashboard", "pattern": "^DTXSID\\d+$", "description": "The Chemistry Dashboard is a part of a suite of databases and web applications developed by the US Environmental Protection Agency's Chemical Safety for Sustainability Research Program. These databases and apps support EPA's computational toxicology research efforts to develop innovative methods to change how chemicals are currently evaluated for potential health risks.", "created": "2019-06-11T14:18:13.452+0000", "modified": "2019-06-11T14:18:13.452+0000", "resources": [{"id": 1827, "mirId": "MIR:00100876", "urlPattern": "https://comptox.epa.gov/dashboard/{$id}", "name": "CompTox Chemistry Dashboard", "description": "CompTox Chemistry Dashboard", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "DTXSID2021028", "resourceHomeUrl": "https://comptox.epa.gov/dashboard", "institution": {"id": 1826, "name": "Environmental Protection Agency", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DTXSID2021028", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1828, "prefix": "rbk", "mirId": "MIR:00000659", "name": "Rebuilding a Kidney", "pattern": "^[-0-9a-zA-Z]+(@[-0-9a-zA-Z]+)?$", "description": "(Re)Building a Kidney is an NIDDK-funded consortium of research projects working to optimize approaches for the isolation, expansion, and differentiation of appropriate kidney cell types and their integration into complex structures that replicate human kidney function.", "created": "2019-06-11T14:18:13.721+0000", "modified": "2019-06-11T14:18:13.721+0000", "resources": [{"id": 1830, "mirId": "MIR:00100877", "urlPattern": "https://www.rebuildingakidney.org/id/{$id}", "name": "Rebuilding a Kidney", "description": "Rebuilding a Kidney", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Q-2958", "resourceHomeUrl": "https://www.rebuildingakidney.org/", "institution": {"id": 1829, "name": "National Institute Of Diabetes and Digestive and Kidney Diseases (NIDDK)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Q-2958", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1887, "prefix": "ligandbook", "mirId": "MIR:00000681", "name": "LigandBook", "pattern": "^[0-9]+$", "description": "Ligandbook is a public repository for force field parameters with a special emphasis on small molecules and known ligands of proteins. It acts as a warehouse for parameter files that are supplied by the community.", "created": "2019-06-11T14:18:19.416+0000", "modified": "2019-06-11T14:18:19.416+0000", "resources": [{"id": 1889, "mirId": "MIR:00100912", "urlPattern": "https://ligandbook.org/package/{$id}", "name": "LigandBook", "description": "LigandBook", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "785", "resourceHomeUrl": "https://ligandbook.org/", "institution": {"id": 1888, "name": "Institut de Chimie des Substances Naturelles", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "785", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1890, "prefix": "kaggle", "mirId": "MIR:00000682", "name": "Kaggle", "pattern": "^[0-9a-zA-Z\\-]+\\/[0-9a-zA-Z\\-]+$", "description": "Kaggle is a platform for sharing data, performing reproducible analyses, interactive data analysis tutorials, and machine learning competitions.", "created": "2019-06-11T14:18:19.662+0000", "modified": "2019-06-11T14:18:19.662+0000", "resources": [{"id": 1892, "mirId": "MIR:00100913", "urlPattern": "https://www.kaggle.com/{$id}", "name": "Kaggle", "description": "Kaggle", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "nasa/kepler-exoplanet-search-results", "resourceHomeUrl": "https://kaggle.com", "institution": {"id": 1891, "name": "Google LLC", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "nasa/kepler-exoplanet-search-results", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1893, "prefix": "idoo", "mirId": "MIR:00000683", "name": "Identifiers.org Ontology", "pattern": "^[0-9a-zA-Z]+$", "description": "Identifiers.org Ontology", "created": "2019-06-11T14:18:19.905+0000", "modified": "2019-06-11T14:18:19.905+0000", "resources": [{"id": 1894, "mirId": "MIR:00100914", "urlPattern": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology#{$id}", "name": "Identifiers.org Ontology", "description": "Identifiers.org Ontology", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "DataCollection", "resourceHomeUrl": "http://registry.api.hq.identifiers.org/semanticApi/getRegistryOntology", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DataCollection", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1817, "prefix": "swh", "mirId": "MIR:00000655", "name": "Software Heritage", "pattern": "^swh:[1-9]:(cnt|dir|rel|rev|snp):[0-9a-f]+(;(origin|visit|anchor|path|lines)=\\S+)*$", "description": "Software Heritage is the universal archive of software source code.", "created": "2019-06-11T14:18:12.760+0000", "modified": "2020-11-27T10:57:55.228+0000", "resources": [{"id": 1819, "mirId": "MIR:00100873", "urlPattern": "https://archive.softwareheritage.org/browse/swh:{$id}", "name": "Software Heritage", "description": "Software Heritage", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1:rev:309cf2674ee7a0749978cf8265ab91a60aea0f7d", "resourceHomeUrl": "https://archive.softwareheritage.org", "institution": {"id": 1818, "name": "INRIA", "homeUrl": "https://www.inria.fr/en", "description": "No description provided", "rorId": "https://ror.org/02kvxyf05", "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1:rev:309cf2674ee7a0749978cf8265ab91a60aea0f7d", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1831, "prefix": "oci", "mirId": "MIR:00000660", "name": "OCI", "pattern": "^[0-9]+-[0-9]+$", "description": "Each OCI (Open Citation Identifier) has a simple structure: oci:number-number, where \u201coci:\u201d is the identifier prefix, and is used to identify a citation as a first-class data entitiy - see https://opencitations.wordpress.com/2018/02/19/citations-as-first-class-data-entities-introduction/ for additional information.\r\n\r\nOCIs for citations stored within the OpenCitations Corpus are constructed by combining the OpenCitations Corpus local identifiers for the citing and cited bibliographic resources, separating them with a dash. For example, oci:2544384-7295288 is a valid OCI for the citation between two papers stored within the OpenCitations Corpus.\r\n\r\nOCIs can also be created for bibliographic resources described in an external bibliographic database, if they are similarly identified there by identifiers having a unique numerical part. For example, the OCI for the citation that exists between Wikidata resources Q27931310 and Q22252312 is oci:01027931310\u201301022252312.\r\n\r\nOCIs can also be created for bibliographic resources described in external bibliographic database such as Crossref or DataCite where they are identified by alphanumeric Digital Object Identifiers (DOIs), rather than purely numerical strings.", "created": "2019-06-11T14:18:13.968+0000", "modified": "2019-06-11T14:18:13.968+0000", "resources": [{"id": 1833, "mirId": "MIR:00100878", "urlPattern": "https://w3id.org/oc/oci/{$id}", "name": "OpenCitations", "description": "OpenCitations", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1-18", "resourceHomeUrl": "http://opencitations.net", "institution": {"id": 1832, "name": "University of Bologna", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1-18", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1834, "prefix": "foodon", "mirId": "MIR:00000661", "name": "FoodOn Food Ontology", "pattern": "^FOODON:[0-9]{8}$", "description": "FoodOn is a comprehensive and easily accessible global farm-to-fork ontology about food that accurately and consistently describes foods commonly known in cultures from around the world. It is a consortium-driven project built to interoperate with the The Open Biological and Biomedical Ontology Foundry library of ontologies.", "created": "2019-06-11T14:18:14.340+0000", "modified": "2019-06-11T14:18:14.340+0000", "resources": [{"id": 1835, "mirId": "MIR:00100879", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/foodon/terms?obo_id=FOODON:{$id}", "name": "FoodOn Food Ontology through OLS", "description": "FoodOn Food Ontology through OLS", "official": false, "providerCode": "ebi", "sampleId": "03307879", "resourceHomeUrl": "https://foodon.org", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "03307879", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1836, "prefix": "encode", "mirId": "MIR:00000662", "name": "ENCODE: Encyclopedia of DNA Elements", "pattern": "^ENC[A-Za-z]{2}[0-9]{3}[A-Za-z]{3}$", "description": "The ENCODE Consortium is integrating multiple technologies and approaches in a collective effort to discover and define the functional elements encoded in the human genome, including genes, transcripts, and transcriptional regulatory regions, together with their attendant chromatin states and DNA methylation patterns.", "created": "2019-06-11T14:18:14.565+0000", "modified": "2019-06-11T14:18:14.565+0000", "resources": [{"id": 1838, "mirId": "MIR:00100880", "urlPattern": "https://www.encodeproject.org/{$id}", "name": "ENCODE: Encyclopedia of DNA Elements", "description": "ENCODE: Encyclopedia of DNA Elements", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "ENCSR163RYW", "resourceHomeUrl": "www.encodeproject.org", "institution": {"id": 1837, "name": "ENCODE Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ENCSR163RYW", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1839, "prefix": "gtex", "mirId": "MIR:00000663", "name": "GTEx", "pattern": "^\\w.+$", "description": "The Genotype-Tissue Expression (GTEx) project aims to provide to the scientific community a resource with which to study human gene expression and regulation and its relationship to genetic variation.", "created": "2019-06-11T14:18:14.830+0000", "modified": "2019-06-11T14:18:14.830+0000", "resources": [{"id": 1841, "mirId": "MIR:00100881", "urlPattern": "https://www.gtexportal.org/home/gene/{$id}", "name": "The GTEx Project", "description": "The GTEx Project", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BRIP1", "resourceHomeUrl": "https://www.gtexportal.org", "institution": {"id": 1840, "name": "The Broad Institute of MIT and Harvard", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BRIP1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1842, "prefix": "ricenetdb.gene", "mirId": "MIR:00000664", "name": "RiceNetDB Gene", "pattern": "^LOC\\_Os\\d{1,2}g\\d{5}\\.\\d$", "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", "created": "2019-06-11T14:18:15.139+0000", "modified": "2019-06-11T14:18:15.139+0000", "resources": [{"id": 1844, "mirId": "MIR:00100882", "urlPattern": "http://bis.zju.edu.cn/ricenetdb/genedetails.php?ID={$id}", "name": "RiceNetDB", "description": "RiceNetDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LOC_Os01g49190.1", "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb/", "institution": {"id": 1843, "name": "College of Life Sciences, Zhejiang University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LOC_Os01g49190.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1845, "prefix": "ricenetdb.protein", "mirId": "MIR:00000665", "name": "RiceNetDB Protein", "pattern": "^LOC\\_Os\\d{1,2}g\\d{5}$", "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", "created": "2019-06-11T14:18:15.429+0000", "modified": "2019-06-11T14:18:15.429+0000", "resources": [{"id": 1846, "mirId": "MIR:00100883", "urlPattern": "http://bis.zju.edu.cn/ricenetdb/proteindetails.php?ID={$id}", "name": "RiceNetDB", "description": "RiceNetDB", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LOC_Os01g49190", "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb/", "institution": {"id": 1843, "name": "College of Life Sciences, Zhejiang University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LOC_Os01g49190", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1847, "prefix": "ricenetdb.compound", "mirId": "MIR:00000666", "name": "RiceNetDB Compound", "pattern": "^OSC\\d{4}$", "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", "created": "2019-06-11T14:18:15.639+0000", "modified": "2019-06-11T14:18:15.639+0000", "resources": [{"id": 1848, "mirId": "MIR:00100884", "urlPattern": "http://bis.zju.edu.cn/ricenetdb/compounddetails.php?ID={$id}", "name": "RiceNetDB Compound", "description": "RiceNetDB Compound", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "OSC1416", "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb", "institution": {"id": 1843, "name": "College of Life Sciences, Zhejiang University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "OSC1416", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1849, "prefix": "ricenetdb.reaction", "mirId": "MIR:00000667", "name": "RiceNetDB Reaction", "pattern": "^OSR\\d{4}$", "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", "created": "2019-06-11T14:18:15.856+0000", "modified": "2019-06-11T14:18:15.856+0000", "resources": [{"id": 1850, "mirId": "MIR:00100885", "urlPattern": "http://bis.zju.edu.cn/ricenetdb/reactiondetails.php?ID={$id}", "name": "RiceNetDB Reaction", "description": "RiceNetDB Reaction", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "OSR0818", "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb", "institution": {"id": 1843, "name": "College of Life Sciences, Zhejiang University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "OSR0818", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1851, "prefix": "ricenetdb.mirna", "mirId": "MIR:00000668", "name": "RiceNetDB miRNA", "pattern": "^osa-miR\\d{3,5}[a-z]{0,1}$", "description": "RiceNetDB is currently the most comprehensive regulatory database on Oryza Sativa based on genome annotation. It was displayed in three levels: GEM, PPIs and GRNs to facilitate biomolecular regulatory analysis and gene-metabolite mapping.", "created": "2019-06-11T14:18:16.076+0000", "modified": "2019-06-11T14:18:16.076+0000", "resources": [{"id": 1852, "mirId": "MIR:00100886", "urlPattern": "http://bis.zju.edu.cn/ricenetdb/miRNAdetails.php?ID={$id}", "name": "RiceNetDB miRNA", "description": "RiceNetDB miRNA", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "osa-miR446", "resourceHomeUrl": "http://bis.zju.edu.cn/ricenetdb", "institution": {"id": 1843, "name": "College of Life Sciences, Zhejiang University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "osa-miR446", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1853, "prefix": "oclc", "mirId": "MIR:00000669", "name": "Online Computer Library Center (OCLC) WorldCat", "pattern": "^[0-9]+$", "description": "The global library cooperative OCLC maintains WorldCat. WorldCat is the world's largest network of library content and services. WorldCat libraries are dedicated to providing access to their resources on the Web, where most people start their search for information.", "created": "2019-06-11T14:18:16.344+0000", "modified": "2019-06-11T14:18:16.344+0000", "resources": [{"id": 1855, "mirId": "MIR:00100887", "urlPattern": "https://www.worldcat.org/oclc/{$id}", "name": "Online Computer Library Center (OCLC) WorldCat", "description": "Online Computer Library Center (OCLC) WorldCat", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "634515043", "resourceHomeUrl": "https://www.oclc.org/en/about.html", "institution": {"id": 1854, "name": "Online Computer Library Center (OCLC), Dublin, Ohio", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "634515043", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1856, "prefix": "asin", "mirId": "MIR:00000670", "name": "Amazon Standard Identification Number (ASIN)", "pattern": "^[0-9]{10}$", "description": "Almost every product on our site has its own ASIN, a unique code we use to identify it. For books, the ASIN is the same as the ISBN number, but for all other products a new ASIN is created when the item is uploaded to our catalogue.", "created": "2019-06-11T14:18:16.611+0000", "modified": "2019-06-11T14:18:16.611+0000", "resources": [{"id": 1858, "mirId": "MIR:00100888", "urlPattern": "https://amzn.com/{$id}", "name": "Amazon Standard Identification Number (ASIN)", "description": "Amazon Standard Identification Number (ASIN)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0471491039", "resourceHomeUrl": "https://www.amazon.co.uk/gp/help/customer/display.html/277-3416785-8259466?ie=UTF8&nodeId=898182", "institution": {"id": 1857, "name": "Amazon", "homeUrl": "https://amazon.com", "description": "is an American multinational technology company based in Seattle, Washington, that focuses on e-commerce, cloud computing, digital streaming, and artificial intelligence", "rorId": "https://ror.org/04mv4n011", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0471491039", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1859, "prefix": "ga4ghdos", "mirId": "MIR:00000671", "name": "Data Object Service", "pattern": "^[a-zA-Z0-9\\-:#/\\.]+$", "description": "Assists in resolving data across cloud resources.", "created": "2019-06-11T14:18:16.879+0000", "modified": "2019-06-11T14:18:16.879+0000", "resources": [{"id": 1860, "mirId": "MIR:00100895", "urlPattern": "https://dataguids.org/ga4gh/dos/v1/dataobjects/{$id}", "name": "Data Object Service", "description": "Data Object Service", "official": false, "providerCode": "ucsd", "sampleId": "dg.4503/01b048d0-e128-4cb0-94e9-b2d2cab7563d", "resourceHomeUrl": "http://github.com/ga4gh/data-object-service-schemas", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "dg.4503/01b048d0-e128-4cb0-94e9-b2d2cab7563d", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1861, "prefix": "flowrepository", "mirId": "MIR:00000672", "name": "FlowRepository", "pattern": "^FR\\-FCM\\-\\w{4}$", "description": "FlowRepository is a database of flow cytometry experiments where you can query and download data collected and annotated according to the MIFlowCyt standard. It is primarily used as a data deposition place for experimental findings published in peer-reviewed journals in the flow cytometry field.", "created": "2019-06-11T14:18:17.129+0000", "modified": "2019-06-11T14:18:17.129+0000", "resources": [{"id": 1863, "mirId": "MIR:00100896", "urlPattern": "https://flowrepository.org/id/{$id}", "name": "FlowRepository", "description": "FlowRepository", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "FR-FCM-ZYGW", "resourceHomeUrl": "https://flowrepository.org/", "institution": {"id": 1862, "name": "Terry Fox Laboratory", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "FR-FCM-ZYGW", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1864, "prefix": "oid", "mirId": "MIR:00000673", "name": "OID Repository", "pattern": "^[\\d.]+$", "description": "OIDs provide a persistent identification of objects based on a hierarchical structure of Registration Authorities (RA), where each parent has an object identifier and allocates object identifiers to child nodes.", "created": "2019-06-11T14:18:17.389+0000", "modified": "2019-06-11T14:18:17.389+0000", "resources": [{"id": 1866, "mirId": "MIR:00100897", "urlPattern": "http://www.oid-info.com/cgi-bin/display?oid={$id}&submit=Display&action=display", "name": "OID Repository", "description": "OID Repository", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2.16.840", "resourceHomeUrl": "http://www.oid-info.com/introduction.htm", "institution": {"id": 1865, "name": "Orange SA", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2.16.840", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1867, "prefix": "hpscreg", "mirId": "MIR:00000674", "name": "Human Pluripotent Stem Cell Registry", "pattern": "^[A-Z]{2,6}(e|i)[A-Za-z0-9]{3}-[A-Z]{1,2}(-[A-Za-z0-9]{1,2})?$", "description": "hPSCreg is a freely accessible global registry for human pluripotent stem cell lines (hPSC-lines).", "created": "2019-06-11T14:18:17.630+0000", "modified": "2019-06-11T14:18:17.630+0000", "resources": [{"id": 1869, "mirId": "MIR:00100898", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100898/{$id}", "name": "Human Pluripotent Stem Cell Registry", "description": "Human Pluripotent Stem Cell Registry", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "BCRTi001-A", "resourceHomeUrl": "https://hpscreg.eu/", "institution": {"id": 1868, "name": "Charit\u00e9 Berlin", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": true, "deprecationDate": "2021-05-10T19:10:24.237+0000"}, {"id": 2630, "mirId": "MIR:00000810", "urlPattern": "https://hpscreg.eu/cell-line/{$id}", "name": "Fraunhofer Institute for Biomedical Engineering", "description": "Human Pluripotent Stem Cell Registry", "official": false, "providerCode": "ibmt", "sampleId": "BCRTi001-A", "resourceHomeUrl": "https://hpscreg.eu/", "institution": {"id": 2629, "name": "Fraunhofer Institute for Biomedical Engineering", "homeUrl": "https://www.ibmt.fraunhofer.de/en.html", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05tpsgh61' with Wikidata IDs [Q1167435], and ISNI IDs [0000 0004 0542 0741]", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "BCRTi001-A", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1870, "prefix": "addgene", "mirId": "MIR:00000675", "name": "Addgene Plasmid Repository", "pattern": "^[0-9]{5}(-[a-zA-Z0-9-]{0,7})?$|^[0-9]{10}$", "description": "Addgene is a non-profit plasmid repository. Addgene facilitates the exchange of genetic material between laboratories by offering plasmids and their associated cloning data to not-for-profit laboratories around the world.", "created": "2019-06-11T14:18:17.878+0000", "modified": "2019-06-11T14:18:17.878+0000", "resources": [{"id": 1872, "mirId": "MIR:00100899", "urlPattern": "http://addgene.org/{$id}", "name": "Addgene Plasmid Repository", "description": "Addgene Plasmid Repository", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "50943", "resourceHomeUrl": "http://addgene.org/", "institution": {"id": 1871, "name": "Addgene", "homeUrl": "https://www.addgene.org", "description": "Addgene is a global, nonprofit repository that was created to help scientists share plasmids. Plasmids are DNA-based research reagents commonly used in the life sciences. When scientists publish research papers, they deposit their associated plasmids at Addgene. Then, when other scientists read the publication, they have easy access to the plasmids needed to conduct future experiments.", "rorId": "https://ror.org/01nn1pw54", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "50943", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1873, "prefix": "bacdive", "mirId": "MIR:00000676", "name": "Bacterial Diversity Metadatabase", "pattern": "^[0-9]+$", "description": "BacDive\u2014the Bacterial Diversity Metadatabase merges detailed strain-linked information on the different aspects of bacterial and archaeal biodiversity.", "created": "2019-06-11T14:18:18.125+0000", "modified": "2019-06-11T14:18:18.125+0000", "resources": [{"id": 1875, "mirId": "MIR:00100900", "urlPattern": "https://bacdive.dsmz.de/strain/{$id}", "name": "Bacterial Diversity Metadatabase", "description": "Bacterial Diversity Metadatabase", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "131392", "resourceHomeUrl": "https://bacdive.dsmz.de/", "institution": {"id": 1874, "name": "Leibniz-Institut DSMZ-Deutsche Sammlung von Mikroorganismen und Zellkulturen", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "131392", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1876, "prefix": "ido", "mirId": "MIR:00000677", "name": "Infectious Disease Ontology", "pattern": "^[0-9]+$", "description": "Infectious Disease Ontology holds entities relevant to both biomedical and clinical aspects of most infectious diseases.", "created": "2019-06-11T14:18:18.372+0000", "modified": "2019-06-11T14:18:18.372+0000", "resources": [{"id": 1877, "mirId": "MIR:00100907", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/ido/terms?obo_id=IDO:{$id}", "name": "IDO through OLS", "description": "IDO through OLS", "official": false, "providerCode": "ols", "sampleId": "0000504", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/ido", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000504", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1878, "prefix": "gdsc", "mirId": "MIR:00000678", "name": "Genomics of Drug Sensitivity in Cancer", "pattern": "^[0-9]+$", "description": "The Genomics of Drug Sensitivity in Cancer (GDSC) database is designed to facilitate an increased understanding of the molecular features that influence drug response in cancer cells and which will enable the design of improved cancer therapies.", "created": "2019-06-11T14:18:18.593+0000", "modified": "2019-06-11T14:18:18.593+0000", "resources": [{"id": 1880, "mirId": "MIR:00100908", "urlPattern": "https://www.cancerrxgene.org/translation/Drug/{$id}", "name": "Genomics of Drug Sensitivity in Cancer", "description": "Genomics of Drug Sensitivity in Cancer", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "1242", "resourceHomeUrl": "https://www.cancerrxgene.org", "institution": {"id": 1879, "name": "Wellcome Sanger Institute and the Center for Molecular Therapeutics and Massachusetts General Hospital Cancer Center", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1242", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1895, "prefix": "isni", "mirId": "MIR:00000684", "name": "International Standard Name Identifier", "pattern": "^[0-9]{15}[0-9X]{1}$", "description": "ISNI is the ISO certified global standard number for identifying the millions of contributors to creative works and those active in their distribution, including researchers, inventors, writers, artists, visual creators, performers, producers, publishers, aggregators, and more. It is part of a family of international standard identifiers that includes identifiers of works, recordings, products and right holders in all repertoires, e.g. DOI, ISAN, ISBN, ISRC, ISSN, ISTC, and ISWC.\r\n\r\nThe mission of the ISNI International Authority (ISNI-IA) is to assign to the public name(s) of a researcher, inventor, writer, artist, performer, publisher, etc. a persistent unique identifying number in order to resolve the problem of name ambiguity in search and discovery; and diffuse each assigned ISNI across all repertoires in the global supply chain so that every published work can be unambiguously attributed to its creator wherever that work is described.", "created": "2019-06-11T14:18:20.121+0000", "modified": "2019-06-11T14:18:20.121+0000", "resources": [{"id": 1897, "mirId": "MIR:00100915", "urlPattern": "http://www.isni.org/isni/{$id}", "name": "International Standard Name Identifier", "description": "International Standard Name Identifier", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "000000012281955X", "resourceHomeUrl": "http://www.isni.org", "institution": {"id": 1896, "name": "ISNI International Authority", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000000012281955X", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1898, "prefix": "viaf", "mirId": "MIR:00000685", "name": "Virtual International Authority File", "pattern": "^\\d+$", "description": "The VIAF\u00ae (Virtual International Authority File) combines multiple name authority files into a single OCLC-hosted name authority service. The goal of the service is to lower the cost and increase the utility of library authority files by matching and linking widely-used authority files and making that information available on the Web.", "created": "2019-06-11T14:18:20.364+0000", "modified": "2019-06-11T14:18:20.364+0000", "resources": [{"id": 1900, "mirId": "MIR:00100916", "urlPattern": "http://viaf.org/viaf/{$id}", "name": "Virtual International Authority File", "description": "Virtual International Authority File", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "75121530", "resourceHomeUrl": "http://viaf.org", "institution": {"id": 1899, "name": "Online Computer Library Center, Incorporated, Dublin, Ohio", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "75121530", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1901, "prefix": "lei", "mirId": "MIR:00000686", "name": "Global LEI Index", "pattern": "^[0-9A-Z]{4}[0-9A-Z]{14}[0-9A-Z]{2}$", "description": "Established by the Financial Stability Board in June 2014, the Global Legal Entity Identifier Foundation (GLEIF) is tasked to support the implementation and use of the Legal Entity Identifier (LEI). The foundation is backed and overseen by the LEI Regulatory Oversight Committee, representing public authorities from around the globe that have come together to jointly drive forward transparency within the global financial markets. GLEIF is a supra-national not-for-profit organization headquartered in Basel, Switzerland.", "created": "2019-06-11T14:18:20.599+0000", "modified": "2019-06-11T14:18:20.599+0000", "resources": [{"id": 1903, "mirId": "MIR:00100917", "urlPattern": "https://www.gleif.org/lei/{$id}", "name": "Global LEI Index", "description": "Global LEI Index", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "HWUPKR0MPOU8FGXBT394", "resourceHomeUrl": "https://www.gleif.org/", "institution": {"id": 1902, "name": "Global Legal Entity Identifier Foundation, St. Alban-Vorstadt 5, 4052 Basel", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HWUPKR0MPOU8FGXBT394", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1904, "prefix": "spdx", "mirId": "MIR:00000687", "name": "SPDX License List", "pattern": "^[0-9A-Za-z\\-.]+$", "description": "The SPDX License List is a list of commonly found licenses and exceptions used in free and open source and other collaborative software or documentation. The purpose of the SPDX License List is to enable easy and efficient identification of such licenses and exceptions in an SPDX document, in source files or elsewhere. The SPDX License List includes a standardized short identifier, full name, vetted license text including matching guidelines markup as appropriate, and a canonical permanent URL for each license and exception.", "created": "2019-06-11T14:18:20.855+0000", "modified": "2019-06-11T14:18:20.855+0000", "resources": [{"id": 1906, "mirId": "MIR:00100918", "urlPattern": "https://spdx.org/licenses/{$id}", "name": "SPDX License List", "description": "SPDX License List", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "CC-BY-1.0", "resourceHomeUrl": "https://spdx.org", "institution": {"id": 1905, "name": "SPDX Workgroup a Linux Foundation Project", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CC-BY-1.0", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1907, "prefix": "sabiork.compound", "mirId": "MIR:00000688", "name": "SABIO-RK Compound", "pattern": "^\\d+$", "description": "SABIO-RK is a relational database system that contains information about biochemical reactions, their kinetic equations with their parameters, and the experimental conditions under which these parameters were measured. The compound data set provides information regarding the reactions in which a compound participates as substrate, product or modifier (e.g. inhibitor, cofactor), and links to further information.", "created": "2019-06-11T14:18:21.119+0000", "modified": "2019-06-11T14:18:21.119+0000", "resources": [{"id": 1908, "mirId": "MIR:00100919", "urlPattern": "http://sabiork.h-its.org/newSearch?q={$id}", "name": "SABIO-RK Compound", "description": "SABIO-RK Compound", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "75", "resourceHomeUrl": "http://sabiork.h-its.org/", "institution": {"id": 408, "name": "Heidelberg Institute for Theoretical Studies (HITS gGmbH)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "75", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1909, "prefix": "oryzabase.reference", "mirId": "MIR:00000689", "name": "Oryzabase", "pattern": "^\\d+$", "description": "The Oryzabase is a comprehensive rice science database established in 2000 by rice researcher's committee in Japan.", "created": "2019-06-11T14:18:21.361+0000", "modified": "2019-06-11T14:18:21.361+0000", "resources": [{"id": 1910, "mirId": "MIR:00100920", "urlPattern": "https://shigen.nig.ac.jp/rice/oryzabase/reference/detail/{$id}", "name": "Oryzabase", "description": "Oryzabase", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "42840", "resourceHomeUrl": "http://www.shigen.nig.ac.jp/rice/oryzabaseV4/", "institution": {"id": 1371, "name": "Genetic Strains Research Center, National Institute of Genetics, Mishima, Shizuoka", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "42840", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1911, "prefix": "peptideatlas.dataset", "mirId": "MIR:00000690", "name": "PeptideAtlas Dataset", "pattern": "^PASS\\d{5}$", "description": "Experiment details about PeptideAtlas entries. Each PASS entry provides direct access to the data files submitted to PeptideAtlas.", "created": "2019-06-11T14:18:21.571+0000", "modified": "2019-06-11T14:18:21.571+0000", "resources": [{"id": 1912, "mirId": "MIR:00100921", "urlPattern": "http://www.peptideatlas.org/PASS/{$id}", "name": "PeptideAtlas Dataset", "description": "PeptideAtlas Dataset", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "PASS01237", "resourceHomeUrl": "https://db.systemsbiology.net/sbeams/cgi/PeptideAtlas/PASS_Summary", "institution": {"id": 193, "name": "Institute for Systems Biology", "homeUrl": "https://isbscience.org/", "description": "ISB was created in 2000 as the first-ever institute dedicated to systems biology.", "rorId": "https://ror.org/02tpgw303", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PASS01237", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1913, "prefix": "did", "mirId": "MIR:00000691", "name": "Decentralized Identifiers (DIDs)", "pattern": "^did:[a-z0-9]+:[A-Za-z0-9.\\-:]+$", "description": "DIDs are an effort by the W3C Credentials Community Group and the wider Internet identity community to define identifiers that can be registered, updated, resolved, and revoked without any dependency on a central authority or intermediary.", "created": "2019-06-11T14:18:21.755+0000", "modified": "2019-06-11T14:18:21.755+0000", "resources": [{"id": 1915, "mirId": "MIR:00100922", "urlPattern": "https://uniresolver.io/#did:{$id}", "name": "Decentralized Identifiers (DIDs)", "description": "Decentralized Identifiers (DIDs)", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "sov:WRfXPg8dantKVubE3HX8pw", "resourceHomeUrl": "https://w3c-ccg.github.io/did-spec/", "institution": {"id": 1914, "name": "W3C Credentials Community Group", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "sov:WRfXPg8dantKVubE3HX8pw", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1916, "prefix": "seed.reaction", "mirId": "MIR:00000692", "name": "SEED Reactions", "pattern": "^rxn\\d+$", "description": "ModelSEED is a platform for creating genome-scale metabolic network reconstructions for microbes and plants. As part of the platform, a biochemistry database is managed that contains reactions unique to ModelSEED as well as reactions aggregated from other databases or from manually-curated genome-scale metabolic network reconstructions.", "created": "2019-06-11T14:18:21.981+0000", "modified": "2019-06-11T14:18:21.981+0000", "resources": [{"id": 1917, "mirId": "MIR:00100923", "urlPattern": "http://modelseed.org/biochem/reactions/{$id}", "name": "SEED Reactions", "description": "SEED Reactions", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "rxn00001", "resourceHomeUrl": "http://modelseed.org/biochem/reactions/", "institution": {"id": 1546, "name": "Argonne National Laboratory", "homeUrl": "https://www.anl.gov", "description": "Argonne is a multidisciplinary science and engineering research center, where talented scientists and engineers work together to answer the biggest questions facing humanity, from how to obtain affordable clean energy to protecting ourselves and our environment.", "rorId": "https://ror.org/05gvnxz63", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "rxn00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1918, "prefix": "occ", "mirId": "MIR:00000693", "name": "OpenCitations Corpus", "pattern": "^[a-z][a-z]/[0-9]+$", "description": "The OpenCitations Corpus is open repository of scholarly citation data made available under a Creative Commons public domain dedication (CC0), which provides accurate bibliographic references harvested from the scholarly literature that others may freely build upon, enhance and reuse for any purpose, without restriction under copyright or database law.", "created": "2019-06-11T14:18:22.186+0000", "modified": "2019-06-11T14:18:22.186+0000", "resources": [{"id": 1920, "mirId": "MIR:00100925", "urlPattern": "https://w3id.org/oc/corpus/{$id}", "name": "OpenCitations Corpus", "description": "OpenCitations Corpus", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "br/1", "resourceHomeUrl": "https://w3id.org/oc/corpus", "institution": {"id": 1919, "name": "OpenCitations", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "br/1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1923, "prefix": "cadsr", "mirId": "MIR:00000695", "name": "Cancer Data Standards Registry and Repository", "pattern": "^[0-9]*$", "description": "The US National Cancer Institute (NCI) maintains and administers data elements, forms, models, and components of these items in a metadata registry referred to as the Cancer Data Standards Registry and Repository, or caDSR.", "created": "2019-06-11T14:18:22.646+0000", "modified": "2019-06-11T14:18:22.646+0000", "resources": [{"id": 1925, "mirId": "MIR:00100928", "urlPattern": "https://cadsrapi.nci.nih.gov/cadsrapi4/GetXML?query=DataElement[@publicId={$id}]", "name": "Cancer Data Standards Registry and Repository", "description": "Cancer Data Standards Registry and Repository", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "3771992", "resourceHomeUrl": "https://wiki.nci.nih.gov/display/caDSR/caDSR+Wiki", "institution": {"id": 1924, "name": "National Cancer Institute, National Institutes of Health, Bethesda, MD", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3771992", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1942, "prefix": "erm", "mirId": "MIR:00000763", "name": "European Registry of Materials", "pattern": "^ERM[0-9]{8}$", "description": "The European Registry of Materials is a simple registry with the sole purpose to mint material identifiers to be used by research projects throughout the life cycle of their project.", "created": "2019-06-19T15:38:51.382+0000", "modified": "2019-06-19T15:38:51.382+0000", "resources": [{"id": 1943, "mirId": "MIR:00000711", "urlPattern": "https://nanocommons.github.io/identifiers/registry#{$id}", "name": "European Registry of Materials", "description": "The European Registry of Materials is a simple registry with the sole purpose to mint material identifiers to be used by research projects throughout the life cycle of their project.", "official": true, "providerCode": "erm", "sampleId": "ERM00000044", "resourceHomeUrl": "https://nanocommons.github.io/identifiers/", "institution": {"id": 283, "name": "Maastricht University", "homeUrl": "https://www.maastrichtuniversity.nl", "description": "Maastricht University (UM) is the most international university in the Netherlands and, with 18,000 students and 4,400 employees, is still growing. The university stands out for its innovative education model, international character and multidisciplinary approach to research and education.\nThanks to its high-quality research and study programmes as well as a strong focus on social engagement, UM has quickly built up a solid reputation. Today it is considered one of the best young universities in the world.", "rorId": "https://ror.org/02jz4aj89", "location": {"countryCode": "NL", "countryName": "Netherlands"}}, "location": {"countryCode": "NL", "countryName": "Netherlands"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ERM00000044", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1977, "prefix": "classyfire", "mirId": "MIR:00000770", "name": "ClassyFire", "pattern": "^C[0-9]{7}$", "description": "ClassyFire is a web-based application for automated structural classification of chemical entities. This application uses a rule-based approach that relies on a comprehensible, comprehensive, and computable chemical taxonomy. ClassyFire provides a hierarchical chemical classification of chemical entities (mostly small molecules and short peptide sequences), as well as a structure-based textual description, based on a chemical taxonomy named ChemOnt, which covers 4825 chemical classes of organic and inorganic compounds. Moreover, ClassyFire allows for text-based search via its web interface. It can be accessed via the web interface or via the ClassyFire API.", "created": "2019-09-05T11:46:36.162+0000", "modified": "2019-09-05T11:46:36.162+0000", "resources": [{"id": 1978, "mirId": "MIR:00000710", "urlPattern": "http://classyfire.wishartlab.com/tax_nodes/{$id}", "name": "The Wishart Research Group, University of Alberta, Edmonton, Alberta, Canada", "description": "Dr. David Wishart (PhD Yale, 1991) is a Professor in the Departments of Biological Sciences and Computing Science at the University of Alberta. He is also a senior research officer and the director of the Nano Life Science program at the NRC\u2019s National Institute for Nanotechnology (NINT). He has been with the University of Alberta since 1995. Dr. Wishart has active research programs in Ua Colour structural biology, nanobiology, synthetic biology, prion biology, bioinformatics and metabolomics. Some of his lab's most significant contributions have been in the area of protein chemical shift analysis and the prediction of protein structure.", "official": true, "providerCode": "classyfire", "sampleId": "C0004828", "resourceHomeUrl": "http://classyfire.wishartlab.com/", "institution": {"id": 1976, "name": "The Wishart Research Group, University of Alberta, Edmonton, Alberta, Canada", "homeUrl": "http://www.wishartlab.com/", "description": "Dr. David Wishart (PhD Yale, 1991) is a Professor in the Departments of Biological Sciences and Computing Science at the University of Alberta. He is also a senior research officer and the director of the Nano Life Science program at the NRC\u2019s National Institute for Nanotechnology (NINT). He has been with the University of Alberta since 1995. Dr. Wishart has active research programs in Ua Colour structural biology, nanobiology, synthetic biology, prion biology, bioinformatics and metabolomics. Some of his lab's most significant contributions have been in the area of protein chemical shift analysis and the prediction of protein structure.", "rorId": null, "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C0004828", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1921, "prefix": "biostudies", "mirId": "MIR:00000694", "name": "BioStudies database", "pattern": "^S-[A-Z]{4}[\\-\\_A-Z\\d]+$", "description": "The BioStudies database holds descriptions of biological studies, links to data from these studies in other databases at EMBL-EBI or outside, as well as data that do not fit in the structured archives at EMBL-EBI. The database can accept a wide range of types of studies described via a simple format. It also enables manuscript authors to submit supplementary information and link to it from the publication.", "created": "2019-06-11T14:18:22.448+0000", "modified": "2023-01-12T08:36:02.758+0000", "resources": [{"id": 1922, "mirId": "MIR:00100926", "urlPattern": "https://www.ebi.ac.uk/biostudies/studies/{$id}", "name": "BioStudies database", "description": "BioStudies database", "official": true, "providerCode": "ebi", "sampleId": "S-EPMC6266652", "resourceHomeUrl": "https://www.ebi.ac.uk/biostudies/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "S-EPMC6266652", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1989, "prefix": "ocid", "mirId": "MIR:00000738", "name": "Ontology Concept Identifiers", "pattern": "ocid:[0-9]{12}", "description": "'ocid' stands for \"Ontology Concept Identifiers\" and are 12 digit long integers covering IDs in topical ontologies from anatomy up to toxicology.", "created": "2019-09-10T09:27:59.693+0000", "modified": "2019-09-10T09:27:59.693+0000", "resources": [{"id": 2936, "mirId": "MIR:00000885", "urlPattern": "https://ocid.ontochem.com/prefname?ocid={$id}", "name": "Ontochem GmbH", "description": "We offer high performance and highly customizable text analysis and data mining products that can be tailored to meet the specific needs of every client. ", "official": true, "providerCode": "ontochem", "sampleId": "190000021540", "resourceHomeUrl": "https://ontochem.com/", "institution": {"id": 2935, "name": "Ontochem GmbH", "homeUrl": "https://ontochem.com/", "description": "We offer high performance and highly customizable text analysis and data mining products that can be tailored to meet the specific needs of every client. ", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}, {"id": 1990, "mirId": "MIR:00000706", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00000706/{$id}", "name": "SciWalker Open Data", "description": "SciWalker is an open access ontology based search tool for annotated data and extracted knowledge from scientific databases, patents and scientific documents.", "official": false, "providerCode": "oc", "sampleId": "190000021540", "resourceHomeUrl": "https://www.sciwalker.com", "institution": {"id": 1988, "name": "OntoChem GmbH", "homeUrl": "https://www.ontochem.com", "description": "OntoChem develops and uses ontologies and semantic NLP software to annotate, analyze, extract and predict knowledge from scientific databases, patents, scientific articles or general private documents.", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": true, "deprecationDate": "2021-10-17T10:39:01.622+0000"}], "sampleId": "190000021540", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1997, "prefix": "mmp.fun", "mirId": "MIR:00000729", "name": "MarFun", "pattern": "^MMP\\d+.\\d+$", "description": "MarFun is manually curated database for marine fungi which is a part of the MAR databases.", "created": "2019-09-10T10:50:49.547+0000", "modified": "2019-09-10T10:50:49.547+0000", "resources": [{"id": 1998, "mirId": "MIR:00000713", "urlPattern": "https://mmp.sfb.uit.no/databases/marfun/#/records/{$id}", "name": "MarFun through SfB", "description": "MarFun through SfB", "official": true, "providerCode": "mmp", "sampleId": "MMP3888430", "resourceHomeUrl": "https://mmp.sfb.uit.no/databases/marfun", "institution": {"id": 1996, "name": "Centre for bioinformatics (SfB), UiT The Arctic university of Norway", "homeUrl": "https://uit.no", "description": "The Centre for bioinformatics at UiT is a part of ELIXIR Norway dedicated to services.", "rorId": null, "location": {"countryCode": "NO", "countryName": "Norway"}}, "location": {"countryCode": "NO", "countryName": "Norway"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MMP3888430", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2003, "prefix": "ecyano.experiment", "mirId": "MIR:00000760", "name": "E-cyanobacterium Experimental Data", "pattern": "^\\d+$", "description": "E-cyanobacterium experiments is a repository of wet-lab experiments related to cyanobacteria. The emphasis is placed on annotation via mapping to local database of biological knowledge and mathematical models along with the complete experimental setup supporting the reproducibility of the experiments.", "created": "2019-09-10T12:51:24.637+0000", "modified": "2019-09-10T12:51:24.637+0000", "resources": [{"id": 2004, "mirId": "MIR:00000754", "urlPattern": "https://www.e-cyanobacterium.org/experiments-repository/?action=detail&id={$id}", "name": "E-cyanobacterium", "description": "E-cyanobacterium is a web-based platform for public sharing, annotation, analysis, and visualisation of dynamical models and wet-lab experiments related to cyanobacteria. It allows models to be represented at different levels of abstraction \u2014 as biochemical reaction networks or ordinary differential equations. It provides concise mappings of mathematical models to a formalised consortium-agreed biochemical description, with the aim of connecting the world of biological knowledge with benefits of mathematical description of dynamic processes. This collection references wet-lab experiments.", "official": true, "providerCode": "ecyano", "sampleId": "18", "resourceHomeUrl": "https://www.e-cyanobacterium.org/experiments-repository/", "institution": {"id": 1629, "name": "Systems Biology Laboratory, Faculty of Informatics, Masaryk University Brno", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}}, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}, "deprecated": false, "deprecationDate": null}], "sampleId": "18", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2022, "prefix": "dlxc", "mirId": "MIR:00000742", "name": "Circular double stranded DNA sequences composed", "pattern": "^[A-Z0-9]{6,7}$", "description": "DOULIX lab-tested standard biological parts, in this case, full length constructs.", "created": "2019-09-24T11:03:08.927+0000", "modified": "2019-09-24T11:03:08.927+0000", "resources": [{"id": 2023, "mirId": "MIR:00000734", "urlPattern": "https://doulix.com/constructs/{$id}/", "name": "Doulix DNA repository", "description": "Doulix DNA repository provides a FAIR-compliant database of DNA sequences for synthetic biology. Doulix allows user to retrieve, inspect and manipulate DNA sequences while ensuring data traceability and integrity.", "official": true, "providerCode": "dlxc", "sampleId": "M77F7JM", "resourceHomeUrl": "https://doulix.com", "institution": {"id": 2021, "name": "Double Helix Technologies (DOULIX)", "homeUrl": "https://doulix.com", "description": "Double Helix Technologies (DOULIX) is currently an operative unit of Explora Biotech (https://www.explora-biotech). ", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "M77F7JM", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2026, "prefix": "dlxb", "mirId": "MIR:00000747", "name": "Linear double stranded DNA sequences", "pattern": "^[A-Z0-9]{6,7}$", "description": "DOULIX lab-tested standard biological parts, in this case linear double stranded DNA sequences.", "created": "2019-10-01T11:40:36.666+0000", "modified": "2019-10-01T11:40:36.666+0000", "resources": [{"id": 2027, "mirId": "MIR:00000717", "urlPattern": "https://doulix.com/biomodules/{$id}/", "name": "Doulix DNA repository", "description": "Doulix DNA repository provides a FAIR-compliant database of DNA sequences for synthetic biology. Doulix allows user to retrieve, inspect and manipulate DNA sequences while ensuring data traceability and integrity.", "official": true, "providerCode": "dlxb", "sampleId": "6VDC956", "resourceHomeUrl": "https://doulix.com", "institution": {"id": 2025, "name": "Doulix Helix Technologies (DOULIX)", "homeUrl": "https://doulix.com", "description": "Double Helix Technologies (DOULIX) is currently an operative unit of Explora Biotech (https://www.explora-biotech.com). ", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "6VDC956", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1729, "prefix": "cameo", "mirId": "MIR:00000623", "name": "CAMEO", "pattern": "^[0-9\\-_]+$", "description": "The goal of the CAMEO (Continuous Automated Model EvaluatiOn) community project is to continuously evaluate the accuracy and reliability of protein structure prediction servers, offering scores on tertiary and quaternary structure prediction, model quality estimation, accessible surface area prediction, ligand binding site residue prediction and contact prediction services in a fully automated manner. These predictions are regularly compared against reference structures from PDB.", "created": "2019-06-11T14:18:04.976+0000", "modified": "2019-10-01T11:46:06.302+0000", "resources": [{"id": 1731, "mirId": "MIR:00100827", "urlPattern": "https://www.cameo3d.org/sp/targets/target/{$id}", "name": "CAMEO", "description": "CAMEO", "official": false, "providerCode": "sib", "sampleId": "2019-08-03_00000089_1", "resourceHomeUrl": "https://cameo3d.org", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2019-08-03_00000089_1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2013, "prefix": "nemo", "mirId": "MIR:00000744", "name": "Neuroscience Multi-Omic BRAIN Initiative Data", "pattern": "[a-z]{3}-[a-km-z0-9]{7}", "description": "This namespace is about Neuroscience Multi-Omic data, specially focused on that data generated from the BRAIN Initiative and related brain research projects.", "created": "2019-09-19T13:46:35.999+0000", "modified": "2019-10-02T08:18:15.555+0000", "resources": [{"id": 2014, "mirId": "MIR:00000790", "urlPattern": "https://assets.nemoarchive.org/{$id}", "name": "The NeMO Archive", "description": "The Neuroscience Multi-Omic Archive (NeMO Archive) is a data repository specifically focused on the storage and dissemination of omic data generated from the BRAIN Initiative and related brain research projects.", "official": true, "providerCode": "igs", "sampleId": "smp-m3w9hbe", "resourceHomeUrl": "https://www.nemoarchive.org", "institution": {"id": 2012, "name": "The Institute for Genome Sciences", "homeUrl": "http://www.igs.umaryland.edu", "description": "Formed in May 2007, the Institute for Genome Sciences (IGS) is part of the University of Maryland School of Medicine and is on the University of Maryland Baltimore campus. Members of the IGS team have helped revolutionize genomic discoveries in medicine, agriculture, environmental science and biodefense.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "smp-m3w9hbe", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2037, "prefix": "spp", "mirId": "MIR:00000726", "name": "Signaling Pathways Project", "pattern": "^10.\\w{4}/\\w{10}$", "description": "The Signaling Pathways Project is an integrated 'omics knowledgebase based upon public, manually curated transcriptomic and cistromic (ChIP-Seq) datasets involving genetic and small molecule manipulations of cellular receptors, enzymes and transcription factors. Our goal is to create a resource where scientists can routinely generate research hypotheses or validate bench data relevant to cellular signaling pathways.", "created": "2019-11-07T10:59:42.032+0000", "modified": "2019-11-07T10:59:42.032+0000", "resources": [{"id": 2038, "mirId": "MIR:00000730", "urlPattern": "https://www.signalingpathways.org/datasets/dataset.jsf?doi={$id}", "name": "Signaling Pathways Project", "description": "The Signaling Pathways Project is an integrated 'omics knowledgebase based upon public, manually curated transcriptomic and cistromic (ChIP-Seq) datasets involving genetic and small molecule manipulations of cellular receptors, enzymes and transcription factors. Our goal is to create a resource where scientists can routinely generate research hypotheses or validate bench data relevant to cellular signaling pathways.", "official": true, "providerCode": "spp", "sampleId": "10.1621/vwN2g2HaX3", "resourceHomeUrl": "https://www.signalingpathways.org/index.jsf", "institution": {"id": 485, "name": "Baylor College of Medicine", "homeUrl": "https://www.bcm.edu", "description": "Baylor College of Medicine is a health sciences university that creates knowledge and applies science and discoveries to further education, healthcare and community service locally and globally.", "rorId": "https://ror.org/02pttbw34", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "10.1621/vwN2g2HaX3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2055, "prefix": "bmrb", "mirId": "MIR:00000716", "name": "Biological Magnetic Resonance Data Bank", "pattern": "^(bmr|bmse|bmst)?[0-9]{1,6}$", "description": "BMRB collects, annotates, archives, and disseminates (worldwide in the public domain) the important spectral and quantitative data derived from NMR spectroscopic investigations of biological macromolecules and metabolites. The goal is to empower scientists in their analysis of the structure, dynamics, and chemistry of biological systems and to support further development of the field of biomolecular NMR spectroscopy.", "created": "2019-12-09T15:05:02.665+0000", "modified": "2019-12-09T15:05:02.665+0000", "resources": [{"id": 2056, "mirId": "MIR:00000735", "urlPattern": "http://rest.bmrb.wisc.edu/bmrb/{$id}/html", "name": "Biological Magnetic Resonance Data Bank", "description": "BMRB collects, annotates, archives, and disseminates (worldwide in the public domain) the important spectral and quantitative data derived from NMR spectroscopic investigations of biological macromolecules and metabolites. The goal is to empower scientists in their analysis of the structure, dynamics, and chemistry of biological systems and to support further development of the field of biomolecular NMR spectroscopy.", "official": true, "providerCode": "bmrb", "sampleId": "15000", "resourceHomeUrl": "http://www.bmrb.wisc.edu/", "institution": {"id": 2054, "name": "University of Wisconsin-Madison", "homeUrl": "https://www.wisc.edu/", "description": "The University of Wisconsin\u2013Madison is a public research university in Madison, Wisconsin. Founded when Wisconsin achieved statehood in 1848, UW\u2013Madison is the official state university of Wisconsin, and the flagship campus of the University of Wisconsin System.\nIt was the first public university established in Wisconsin and remains the oldest and largest public university in the state. It became a land-grant institution in 1866.\nThe 933-acre (378 ha) main campus, located on the shores of Lake Mendota, includes four National Historic Landmarks.\nThe University also owns and operates a historic 1,200-acre (486 ha) arboretum established in 1932, located 4 miles (6.4 km) south of the main campus.", "rorId": "https://ror.org/01y2jtd41", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "15000", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2061, "prefix": "disprot.region", "mirId": "MIR:00000745", "name": "DisProt region", "pattern": "^DP\\d{5}r\\d{3}$", "description": "DisProt is a database of intrisically disordered proteins and protein disordered regions, manually curated from literature.", "created": "2019-12-09T15:18:31.130+0000", "modified": "2019-12-09T15:18:31.130+0000", "resources": [{"id": 2062, "mirId": "MIR:00000756", "urlPattern": "https://www.disprot.org/{$id}", "name": "DisProt region", "description": "DisProt is a database of intrinsically disordered proteins and protein disordered regions, manually curated from literature.", "official": true, "providerCode": "disprot.region", "sampleId": "DP00086r013", "resourceHomeUrl": "https://www.disprot.org", "institution": {"id": 1769, "name": "University of Padua", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "DP00086r013", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2072, "prefix": "vegbank", "mirId": "MIR:00000723", "name": "VegBank", "pattern": "^VB\\.[A-Za-z][A-Za-z]\\..*$", "description": "VegBank is the vegetation plot database of the Ecological Society of America's Panel on Vegetation Classification. VegBank consists of three linked databases that contain (1) vegetation plot records, (2) vegetation types recognized in the U.S. National Vegetation Classification and other vegetation types submitted by users, and (3) all plant taxa recognized by ITIS/USDA as well as all other plant taxa recorded in plot records. Vegetation records, community types and plant taxa may be submitted to VegBank and may be subsequently searched, viewed, annotated, revised, interpreted, downloaded, and cited. ", "created": "2020-01-24T13:57:43.399+0000", "modified": "2020-01-24T13:57:43.399+0000", "resources": [{"id": 2073, "mirId": "MIR:00000751", "urlPattern": "http://vegbank.org/cite/{$id}", "name": "VegBank", "description": "VegBank is the vegetation plot database of the Ecological Society of America's Panel on Vegetation Classification.", "official": true, "providerCode": "vegbank", "sampleId": "VB.Ob.3736.GRSM125", "resourceHomeUrl": "http://vegbank.org/", "institution": {"id": 2071, "name": "National Center for Ecological Analysis and Synthesis", "homeUrl": "https://nceas.ucsb.edu/", "description": "NCEAS works to accelerate scientific discoveries that will enhance our understanding of the world and benefit people and nature, as well as to transform the scientific culture to be more open, efficient, and collaborative.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "VB.Ob.3736.GRSM125", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2085, "prefix": "minid.test", "mirId": "MIR:00000707", "name": "MINID Test", "pattern": "[A-Za-z0-9]+$", "description": "Minid are identifiers used to provide robust reference to intermediate data generated during the course of a research investigation. This is a prefix for referencing identifiers in the minid test namespace. ", "created": "2020-02-25T11:14:38.686+0000", "modified": "2020-02-28T10:24:36.137+0000", "resources": [{"id": 2086, "mirId": "MIR:00000724", "urlPattern": "https://hdl.handle.net/hdl:20.500.12633/{$id}", "name": "FAIR Research", "description": "FAIR Research is a collaboration of the Informatics Systems Research Division at the Information Sciences Institute of University of Southern California and the Computational Systems Division at the University of Chicago.", "official": true, "providerCode": "fair", "sampleId": "3SBPLMKKVEVR", "resourceHomeUrl": "https://fair-research.org", "institution": {"id": 1781, "name": "University of Southern California", "homeUrl": "https://www.usc.edu/", "description": "The University of Southern California is a leading private research university located in Los Angeles \u2014 a global center for arts, technology and international business. It is home to the College of Letters, Arts and Sciences and 21 exceptional academic schools and units. USC\u2019s Health Sciences campus houses renowned specialized care and research in cancer, stem cell and regenerative medicine, orthopedics and sports medicine. The university is the largest private sector employer in the city of Los Angeles, responsible for $8 billion annually in economic activity in the region.", "rorId": "https://ror.org/03taz7m60", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3SBPLMKKVEVR", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2108, "prefix": "idr", "mirId": "MIR:00000743", "name": "Image Data Resource", "pattern": "^[0-9]{4}$", "description": "Image Data Resource (IDR) is an online, public data repository that seeks to store, integrate and serve image datasets from published scientific studies. We have collected and are continuing to receive existing and newly created \u201creference image\" datasets that are valuable resources for a broad community of users, either because they will be frequently accessed and cited or because they can serve as a basis for re-analysis and the development of new computational tools.", "created": "2020-03-02T17:27:03.688+0000", "modified": "2020-03-02T17:27:03.688+0000", "resources": [{"id": 2109, "mirId": "MIR:00000705", "urlPattern": "https://idr.openmicroscopy.org/search/?query=Name:idr{$id}", "name": "Open Microscopy Environment", "description": "OME is a consortium of universities, research labs, industry and developers producing open-source software and format standards for microscopy data.", "official": true, "providerCode": "ome", "sampleId": "0001", "resourceHomeUrl": "https://idr.openmicroscopy.org", "institution": {"id": 2107, "name": "University of Dundee", "homeUrl": "https://www.dundee.ac.uk/", "description": "The University of Dundee is a public research university in Dundee, Scotland. Founded in 1881 the institution was, for most of its early existence, a constituent college of the University of St Andrews alongside United College and St Mary's College located in the town of St Andrews itself. Following significant expansion, the University of Dundee gained independent university status in 1967 while retaining much of its ancient heritage and governance structure.", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2096, "prefix": "transyt", "mirId": "MIR:00000736", "name": "TranSyT", "pattern": "T[A-Z]\\d{7}", "description": "The Transport Systems Tracker (TranSyT) is a tool to identify transport systems and the compounds carried across membranes.", "created": "2020-02-28T10:48:52.126+0000", "modified": "2020-03-03T05:45:40.200+0000", "resources": [{"id": 2097, "mirId": "MIR:00000731", "urlPattern": "https://transyt.bio.di.uminho.pt/reactions/{$id}", "name": "BIOSYSTEMS Research Group", "description": "The BIOSYSTEMS Research Group is a research group at CEB, using competences in systems biotechnology and bioengineering to foster the development of a knowledge-based bio-economy, leading to new added-value products and processes.", "official": true, "providerCode": "transyt", "sampleId": "TR0000001", "resourceHomeUrl": "https://www.bio.di.uminho.pt/", "institution": {"id": 2095, "name": "Centre of Biological Engineering", "homeUrl": "https://www.ceb.uminho.pt", "description": "The Centre of Biological Engineering (CEB), designated as \u201cExcellent\u201d by FCT, is a research unit located at University of Minho (ROR:037wpkx04) that develops its activities on interdisciplinary thrust areas covering molecular, cellular and process scales, corresponding to 4 thematic strands: Industrial, Food, Environmental, and Health Biotechnology and Bioengineering.", "rorId": null, "location": {"countryCode": "PT", "countryName": "Portugal"}}, "location": {"countryCode": "PT", "countryName": "Portugal"}, "deprecated": false, "deprecationDate": null}], "sampleId": "TR0000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1685, "prefix": "insdc.gca", "mirId": "MIR:00000607", "name": "Genome assembly database", "pattern": "^GC[AF]_[0-9]{9}\\.[0-9]+$", "description": "The genome assembly database contains detailed information about genome assemblies for eukaryota, bacteria and archaea. The scope of the genome collections database does not extend to viruses, viroids and bacteriophage.", "created": "2019-06-11T14:18:01.236+0000", "modified": "2020-03-31T12:32:16.941+0000", "resources": [{"id": 1686, "mirId": "MIR:00100810", "urlPattern": "https://www.ebi.ac.uk/ena/data/view/{$id}", "name": "Genome assembly database through ENA", "description": "Genome assembly database through ENA", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "GCA_000155495.1", "resourceHomeUrl": "https://www.ebi.ac.uk/ena/browse/genome-assembly-database", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1687, "mirId": "MIR:00100811", "urlPattern": "https://www.ncbi.nlm.nih.gov/assembly/{$id}", "name": "Genome assembly database NCBI", "description": "Genome assembly database NCBI", "official": false, "providerCode": "ncbi", "sampleId": "GCA_000155495.1", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/assembly/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GCA_000155495.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1539, "prefix": "slm", "mirId": "MIR:00000550", "name": "SwissLipids", "pattern": "^SLM:\\d+$", "description": "SwissLipids is a curated resource that provides information about known lipids, including lipid structure, metabolism, interactions, and subcellular and tissue localization. Information is curated from peer-reviewed literature and referenced using established ontologies, and provided with full provenance and evidence codes for curated assertions.", "created": "2019-06-11T14:17:46.314+0000", "modified": "2020-05-01T09:59:44.482+0000", "resources": [{"id": 1541, "mirId": "MIR:00100727", "urlPattern": "http://www.swisslipids.org/#/entity/SLM:{$id}/", "name": "SwissLipids at Swiss Institute of Bioinformatics", "description": "SwissLipids at Swiss Institute of Bioinformatics", "official": false, "providerCode": "sib", "sampleId": "000048885", "resourceHomeUrl": "http://www.swisslipids.org/#/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000048885", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 2222, "prefix": "vgnc", "mirId": "MIR:00000765", "name": "VGNC", "pattern": "^((VGNC|vgnc):)?\\d{1,9}$", "description": "The Vertebrate Gene Nomenclature Committee (VGNC) is an extension of the established HGNC (HUGO Gene Nomenclature Committee) project that names human genes. VGNC is responsible for assigning standardized names to genes in vertebrate species that currently lack a nomenclature committee.", "created": "2020-05-12T14:08:31.024+0000", "modified": "2020-05-12T14:08:31.024+0000", "resources": [{"id": 2223, "mirId": "MIR:00000752", "urlPattern": "https://vertebrate.genenames.org/data/gene-symbol-report/#!/vgnc_id/{$id}", "name": "VGNC", "description": "The Vertebrate Gene Nomenclature Committee (VGNC) is an extension of the established HGNC (HUGO Gene Nomenclature Committee) project that names human genes. VGNC is responsible for assigning standardized names to genes in vertebrate species that currently lack a nomenclature committee. ", "official": true, "providerCode": "vgnc", "sampleId": "VGNC:3792", "resourceHomeUrl": "https://vertebrate.genenames.org", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "VGNC:3792", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2248, "prefix": "datanator.metabolite", "mirId": "MIR:00000718", "name": "Datanator Metabolite", "pattern": "^[A-Z\\-]+$", "description": "Datanator is an integrated database of genomic and biochemical data designed to help investigators find data about specific molecules and reactions in specific organisms and specific environments for meta-analyses and mechanistic models. Datanator currently includes metabolite concentrations, RNA modifications and half-lives, protein abundances and modifications, and reaction kinetics integrated from several databases and numerous publications. The Datanator website and REST API provide tools for extracting clouds of data about specific molecules and reactions in specific organisms and specific environments, as well as data about similar molecules and reactions in taxonomically similar organisms.", "created": "2020-05-22T09:04:15.866+0000", "modified": "2020-05-22T09:04:15.866+0000", "resources": [{"id": 2249, "mirId": "MIR:00000772", "urlPattern": "https://www.datanator.info/metabolite/{$id}", "name": "Icahn School of Medicine at Mount Sinai", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", "official": true, "providerCode": "icahn", "sampleId": "OUYCCCASQSFEME-MRVPVSSYSA-N", "resourceHomeUrl": "https://datanator.info/", "institution": {"id": 2247, "name": "Icahn School of Medicine at Mount Sinai", "homeUrl": "https://icahn.mssm.edu/", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "OUYCCCASQSFEME-MRVPVSSYSA-N", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1559, "prefix": "rrid", "mirId": "MIR:00000558", "name": "RRID", "pattern": "^RRID:[a-zA-Z]+.+$", "description": "The Research Resource Identification Initiative provides RRIDs to 4 main classes of resources: Antibodies, Cell Lines, Model Organisms, and Databases / Software tools.: Antibodies, Model Organisms, and Databases / Software tools.\r\nThe initiative works with participating journals to intercept manuscripts in the publication process that use these resources, and allows publication authors to incorporate RRIDs within the methods sections. It also provides resolver services that access curated data from 10 data sources: the antibody registry (a curated catalog of antibodies), the SciCrunch registry (a curated catalog of software tools and databases), and model organism nomenclature authority databases (MGI, FlyBase, WormBase, RGD), as well as various stock centers. These RRIDs are aggregated and can be searched through SciCrunch.", "created": "2019-06-11T14:17:48.275+0000", "modified": "2020-03-11T14:52:15.242+0000", "resources": [{"id": 1560, "mirId": "MIR:00100735", "urlPattern": "https://scicrunch.org/resolver/RRID:{$id}", "name": "RRID at SciCrunch", "description": "RRID at SciCrunch", "official": false, "providerCode": "ucsd", "sampleId": "AB_262044", "resourceHomeUrl": "https://scicrunch.org/resolver", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AB_262044", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 447, "prefix": "pr", "mirId": "MIR:00000141", "name": "Protein Ontology", "pattern": "^PR:P?\\d+$", "description": "The PRotein Ontology (PRO) has been designed to describe the relationships of proteins and protein evolutionary classes, to delineate the multiple protein forms of a gene locus (ontology for protein forms), and to interconnect existing ontologies.", "created": "2019-06-11T14:16:11.083+0000", "modified": "2020-03-16T08:35:08.949+0000", "resources": [{"id": 448, "mirId": "MIR:00100184", "urlPattern": "https://proconsortium.org/app/entry/PR:{$id}", "name": "Protein Ontology at Georgetown", "description": "Protein Ontology at Georgetown", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "000000024", "resourceHomeUrl": "https://proconsortium.org/", "institution": {"id": 173, "name": "Georgetown University Medical Center, Washington", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 449, "mirId": "MIR:00100240", "urlPattern": "http://purl.bioontology.org/ontology/PR/PR:{$id}", "name": "Protein Ontology through BioPortal", "description": "Protein Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "000000024", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/PR", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 450, "mirId": "MIR:00100755", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/pr/terms?obo_id=PR:{$id}", "name": "Protein Ontology through OLS", "description": "Protein Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "000000024", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/pr", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000000024", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 2129, "prefix": "gold", "mirId": "MIR:00000733", "name": "Genomes OnLine Database (GOLD)", "pattern": "^[A-Z][a-z][0-9]+$", "description": "The Genomes OnLine Database (GOLD) catalogues genome and metagenome sequencing projects from around the world, along with their associated metadata. Information in GOLD is organized into four levels: Study, Biosample/Organism, Sequencing Project and Analysis Project.", "created": "2020-03-17T08:03:56.077+0000", "modified": "2020-03-17T08:03:56.077+0000", "resources": [{"id": 2130, "mirId": "MIR:00000757", "urlPattern": "https://gold.jgi.doe.gov/resolver?id={$id}", "name": "Genomes OnLine Database (GOLD)", "description": "The Genomes OnLine Database (GOLD) is a centralized resource for cataloguing genome and metagenome sequencing projects from around the world, along with their associated metadata. Information in GOLD is organized into four levels: Study, Biosample/Organism, Sequencing Project and Analysis Project. \nStudy is an umbrella Project that broadly defines the overall goal of a research proposal. It consists of sequencing projects along with corresponding organism or Biosample information as well as any analysis done on the sequencing projects.\nE.g., Gs0016050: Human Microbiome Project (HMP), Gs0000008: A Genomic Encyclopedia of Bacteria and Archaea (GEBA) study.\nBiosample is the description of the environment from where the DNA/RNA sample was collected. Currently GOLD Biosample entities are defined for all metagenome and metatranscriptomes projects, i.e. for non-isolate genomes. E.g., Gb0055733\nOrganism is an individual living thing. It can be a bacterium, plant, fungus etc. In GOLD, all isolate or single cell genome sequencing projects are associated with an organism. Additionally, GOLD Organisms are also created for genomes assembled from metagenome sequences(MAGs). E.g., Go0003442\nSequencing Project represents the procedures undertaken for generating sequencing output from an individual Organism or Biosample. An individual genome project may be composed of more than one sequencing reactions and/or sequencing technologies. A Sequencing Project may be an isolate genome, or a metagenome, transcriptome, or metatranscriptome etc.\nE.g., Gp0003442\nAnalysis Project represents the computational processing of sequencing data generated by a sequencing project. It describes how the assembly and annotation of a Sequencing Project were performed. \nE.g., Ga0027275", "official": true, "providerCode": "jgi", "sampleId": "Gs0000008", "resourceHomeUrl": "https://gold.jgi.doe.gov/", "institution": {"id": 2128, "name": "Joint Genome Institute", "homeUrl": "https://gold.jgi.doe.gov/", "description": "The mission of the U.S. Department of Energy (DOE) Joint Genome Institute (JGI), a DOE Office of Science User Facility of Lawrence Berkeley National Laboratory (Berkeley Lab) and part of the Biosciences Area, is to advance genomics in support of the DOE missions related to clean energy generation and environmental characterization and cleanup.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Gs0000008", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2140, "prefix": "nmrshiftdb2", "mirId": "MIR:00000748", "name": "NMR Shift Database", "pattern": "^[0-9]+$", "description": "NMR database for organic structures and their nuclear magnetic resonance (nmr) spectra. It allows for spectrum prediction (13C, 1H and other nuclei) as well as for searching spectra, structures and other properties.", "created": "2020-03-17T12:41:40.413+0000", "modified": "2020-03-17T12:43:18.460+0000", "resources": [{"id": 2141, "mirId": "MIR:00000719", "urlPattern": "https://nmrshiftdb.nmr.uni-koeln.de/molecule/{$id}", "name": "NMRShiftDB", "description": "NMR database (web database) for organic structures and their nuclear magnetic resonance (nmr) spectra. It allows for spectrum prediction (13C, 1H and other nuclei) as well as for searching spectra, structures and other properties. Last not least, it features peer-reviewed submission of datasets by its users. The NMRShiftDB software is open source, the data is published under an open content license.", "official": true, "providerCode": "uoc", "sampleId": "234", "resourceHomeUrl": "https://nmrshiftdb.nmr.uni-koeln.de", "institution": {"id": 2139, "name": "University of Cologne", "homeUrl": "https://www.portal.uni-koeln.de/uoc_home.html?&L=1", "description": "The University of Cologne is one of the oldest and largest universities in Europe. Due to its outstanding scientific achievements and the high quality and diversity of its degree programmes, it enjoys an excellent international reputation.", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "234", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1789, "prefix": "minid", "mirId": "MIR:00000645", "name": "Minimal Viable Identifier", "pattern": "^[A-Za-z0-9]+$", "description": "Minid are identifiers used to provide robust reference to intermediate data generated during the course of a research investigation.", "created": "2019-06-11T14:18:10.091+0000", "modified": "2020-03-20T09:37:38.029+0000", "resources": [{"id": 1791, "mirId": "MIR:00100850", "urlPattern": "https://hdl.handle.net/hdl:20.500.12582/{$id}", "name": "FAIR Research", "description": "FAIR Research is a collaboration of the Informatics Systems Research Division at the Information Sciences Institute of University of Southern California and the Computational Systems Division at the University of Chicago.", "official": false, "providerCode": "fair", "sampleId": "r8059v", "resourceHomeUrl": "https://fair-research.org", "institution": {"id": 1781, "name": "University of Southern California", "homeUrl": "https://www.usc.edu/", "description": "The University of Southern California is a leading private research university located in Los Angeles \u2014 a global center for arts, technology and international business. It is home to the College of Letters, Arts and Sciences and 21 exceptional academic schools and units. USC\u2019s Health Sciences campus houses renowned specialized care and research in cancer, stem cell and regenerative medicine, orthopedics and sports medicine. The university is the largest private sector employer in the city of Los Angeles, responsible for $8 billion annually in economic activity in the region.", "rorId": "https://ror.org/03taz7m60", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "b97957", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2152, "prefix": "snp2tfbs", "mirId": "MIR:00000766", "name": "SNP2TFBS", "pattern": "^rs[0-9]+$", "description": "SNP2TFBS is aimed at studying variations (SNPs/indels) that affect transcription factor binding (TFB) in the Human genome.", "created": "2020-03-20T12:58:53.045+0000", "modified": "2020-03-20T12:58:53.045+0000", "resources": [{"id": 2153, "mirId": "MIR:00000737", "urlPattern": "https://ccg.epfl.ch/cgi-bin/snp2tfbs/snpviewer_form_parser.cgi?snpid={$id}", "name": "SNP2TFBS", "description": "SNP2TFBS is a Web interface aimed at studying variations (SNPs/indels) that affect transcription factor binding (TFB) in the Human genome.", "official": true, "providerCode": "sib", "sampleId": "rs11603840", "resourceHomeUrl": "https://ccg.epfl.ch/snp2tfbs/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "rs11603840", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2160, "prefix": "biolink", "mirId": "MIR:00000782", "name": "BioLink Model", "pattern": "^\\S+$", "description": "A high level datamodel of biological entities (genes, diseases, phenotypes, pathways, individuals, substances, etc) and their associations.", "created": "2020-03-20T15:04:54.734+0000", "modified": "2020-03-20T15:04:54.734+0000", "resources": [{"id": 2161, "mirId": "MIR:00000778", "urlPattern": "https://w3id.org/biolink/vocab/{$id}", "name": "BioLink GitHub Organization", "description": "This resource is not backed by a physical institution. The resource is managed and deployed on GitHub, and is maintained by a broad community of develops", "official": true, "providerCode": "biolinkgithub", "sampleId": "Gene", "resourceHomeUrl": "https://biolink.github.io/biolink-model", "institution": {"id": 2159, "name": "BioLink GitHub Organization", "homeUrl": "https://biolink.github.io/biolink-model", "description": "This resource is not backed by a physical institution. The resource is managed and deployed on GitHub, and is maintained by a broad community of develops", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Gene", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2184, "prefix": "rapdb.transcript", "mirId": "MIR:00000762", "name": "RAP-DB Transcript", "pattern": "^Os\\S+t\\d{7}-\\d{2}$", "description": "Rice Annotation Project Database (RAP-DB) is a primary rice (Oryza sativa) annotation database established in 2004 upon the completion of the Oryza sativa ssp. japonica cv. Nipponbare genome sequencing by the International Rice Genome Sequencing Project. RAP-DB provides comprehensive resources (e.g. genome annotation, gene expression, DNA markers, genetic diversity, etc.) for biological and agricultural research communities. This collection provides transcript information in RAP-DB.", "created": "2020-03-24T06:40:28.546+0000", "modified": "2020-03-24T06:40:28.546+0000", "resources": [{"id": 2185, "mirId": "MIR:00000773", "urlPattern": "https://rapdb.dna.affrc.go.jp/viewer/gene_detail/irgsp1?name={$id}", "name": "RAP-DB", "description": "The Rice Annotation Project (RAP) was conceptualized in 2004 upon the completion of the Oryza sativa ssp. japonica cv. Nipponbare genome sequencing by the International Rice Genome Sequencing Project with the aim of providing the scientific community with an accurate and timely annotation of the rice genome sequence.", "official": true, "providerCode": "rapdb", "sampleId": "Os01t0883800-02", "resourceHomeUrl": "https://rapdb.dna.affrc.go.jp/", "institution": {"id": 2183, "name": "The National Agriculture and Food Research Organization (NARO)", "homeUrl": "http://www.naro.affrc.go.jp/english/index.html", "description": "The National Agriculture and Food Research Organization or NARO is the core institute in Japan for conducting research and development on agriculture and food.", "rorId": "https://ror.org/023v4bd62", "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Os01t0883800-02", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2187, "prefix": "rapdb.locus", "mirId": "MIR:00000702", "name": "RAP-DB Locus", "pattern": "^Os\\S+g\\d{7}$", "description": "Rice Annotation Project Database (RAP-DB) is a primary rice (Oryza sativa) annotation database established in 2004 upon the completion of the Oryza sativa ssp. japonica cv. Nipponbare genome sequencing by the International Rice Genome Sequencing Project. RAP-DB provides comprehensive resources (e.g. genome annotation, gene expression, DNA markers, genetic diversity, etc.) for biological and agricultural research communities. This collection provides locus information in RAP-DB.", "created": "2020-03-24T06:41:41.433+0000", "modified": "2020-03-24T06:41:41.433+0000", "resources": [{"id": 2188, "mirId": "MIR:00000741", "urlPattern": "https://rapdb.dna.affrc.go.jp/viewer/gbrowse_details/irgsp1?name={$id}", "name": "RAP-DB, Rice Annotation Project Database", "description": "The Rice Annotation Project (RAP) was conceptualized in 2004 upon the completion of the Oryza sativa ssp. japonica cv. Nipponbare genome sequencing by the International Rice Genome Sequencing Project with the aim of providing the scientific community with an accurate and timely annotation of the rice genome sequence.", "official": true, "providerCode": "rapdb", "sampleId": "Os01g0883800", "resourceHomeUrl": "https://rapdb.dna.affrc.go.jp/", "institution": {"id": 2183, "name": "The National Agriculture and Food Research Organization (NARO)", "homeUrl": "http://www.naro.affrc.go.jp/english/index.html", "description": "The National Agriculture and Food Research Organization or NARO is the core institute in Japan for conducting research and development on agriculture and food.", "rorId": "https://ror.org/023v4bd62", "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Os01g0883800", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2198, "prefix": "envipath", "mirId": "MIR:00000727", "name": "enviPath", "pattern": "^[\\w^_]{8}-[\\w^_]{4}-[\\w^_]{4}-[\\w^_]{4}-[\\w^_]{12}\\/[\\w-]+\\/[\\w^_]{8}-[\\w^_]{4}-[\\w^_]{4}-[\\w^_]{4}-[\\w^_]{12}$", "description": "enviPath is a database and prediction system for the microbial biotransformation of organic environmental contaminants. The database provides the possibility to store and view experimentally observed biotransformation pathways. The pathway prediction system provides different relative reasoning models to predict likely biotransformation pathways and products.", "created": "2020-03-24T07:50:16.285+0000", "modified": "2020-03-24T07:50:16.285+0000", "resources": [{"id": 2199, "mirId": "MIR:00000776", "urlPattern": "https://envipath.org/package/{$id}", "name": "enviPath", "description": "enviPath is a database and prediction system for the microbial biotransformation of organic environmental contaminants. The database provides the possibility to store and view experimentally observed biotransformation pathways. The pathway prediction system provides different relative reasoning models to predict likely biotransformation pathways and products.", "official": true, "providerCode": "envipathug", "sampleId": "32de3cf4-e3e6-4168-956e-32fa5ddb0ce1/compound/b545cabc-8c9e-4b20-8848-efa015b481ea", "resourceHomeUrl": "https://envipath.org/", "institution": {"id": 2197, "name": "enviPath UG & Co. KG", "homeUrl": "https://envipath.org/", "description": "We currently have no more details on this institution / organization, for more information, please see https://envipath.com/imprint/", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "32de3cf4-e3e6-4168-956e-32fa5ddb0ce1/compound/b545cabc-8c9e-4b20-8848-efa015b481ea", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1167, "prefix": "gold.meta", "mirId": "MIR:00000402", "name": "GOLD metadata", "pattern": "^Gm\\d+$", "description": "- DEPRECATION NOTE -\nPlease, keep in mind that this namespace has been superseeded by \u2018gold\u2019 prefix at https://registry.identifiers.org/registry/gold, and this namespace is kept here for support to already existing citations, new ones would need to use the pointed \u2018gold\u2019 namespace. \n\nThe GOLD (Genomes OnLine Database)is a resource for centralized monitoring of genome and metagenome projects worldwide. It stores information on complete and ongoing projects, along with their associated metadata. This collection references metadata associated with samples.", "created": "2019-06-11T14:17:12.564+0000", "modified": "2020-03-26T09:38:38.398+0000", "resources": [{"id": 1168, "mirId": "MIR:00100522", "urlPattern": "http://genomesonline.org/cgi-bin/GOLD/bin/GOLDCards.cgi?goldstamp={$id}", "name": "GOLD metadata at Department of Energy Joint Genome Institute", "description": "GOLD metadata at Department of Energy Joint Genome Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Gm00047", "resourceHomeUrl": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", "institution": {"id": 1165, "name": "Department of Energy Joint Genome Institute, Microbial Genomics and Metagenomics Program, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Gm00047", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1164, "prefix": "gold.genome", "mirId": "MIR:00000401", "name": "GOLD genome", "pattern": "^(Gi|Gc)\\d+$", "description": "- DEPRECATION NOTE -\nPlease, keep in mind that this namespace has been superseeded by \u2018gold\u2019 prefix at https://registry.identifiers.org/registry/gold, and this namespace is kept here for support to already existing citations, new ones would need to use the pointed \u2018gold\u2019 namespace.\n\nThe GOLD (Genomes OnLine Database)is a resource for centralised monitoring of genome and metagenome projects worldwide. It stores information on complete and ongoing projects, along with their associated metadata. This collection references the sequencing status of individual genomes.", "created": "2019-06-11T14:17:12.343+0000", "modified": "2020-03-26T09:37:26.767+0000", "resources": [{"id": 1166, "mirId": "MIR:00100521", "urlPattern": "http://www.genomesonline.org/cgi-bin/GOLD/GOLDCards.cgi?goldstamp={$id}", "name": "GOLD genome at Department of Energy Joint Genome Institute", "description": "GOLD genome at Department of Energy Joint Genome Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "Gi07796", "resourceHomeUrl": "http://www.genomesonline.org/cgi-bin/GOLD/index.cgi", "institution": {"id": 1165, "name": "Department of Energy Joint Genome Institute, Microbial Genomics and Metagenomics Program, California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Gi07796", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 794, "prefix": "knapsack", "mirId": "MIR:00000271", "name": "KNApSAcK", "pattern": "^C\\d{8}", "description": "KNApSAcK provides information on metabolites and the\ntaxonomic class with which they are associated.", "created": "2019-06-11T14:16:41.635+0000", "modified": "2020-04-22T09:28:07.963+0000", "resources": [{"id": 796, "mirId": "MIR:00100350", "urlPattern": "http://www.knapsackfamily.com/knapsack_core/information.php?word={$id}", "name": "KNApSAcK at NAIST", "description": "KNApSAcK at NAIST", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "C00000001", "resourceHomeUrl": "http://www.knapsackfamily.com/KNApSAcK/", "institution": {"id": 795, "name": "Nara Institute of Science and Technology", "homeUrl": "https://www.naist.jp/en/", "description": "Nara Institute of Science and Technology (NAIST) is a Japanese national university located in Kansai Science City, a border region between Nara, Osaka, and Kyoto. Founded in 1991, NAIST consisted of graduate schools in three integrated areas: information science, biological sciences, and materials science.", "rorId": "https://ror.org/05bhada84", "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "C00000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2215, "prefix": "pgs", "mirId": "MIR:00000753", "name": "Polygenic Score Catalog", "pattern": "^PGS[0-9]{6}$", "description": "The Polygenic Score (PGS) Catalog is an open database of PGS and the relevant metadata required for accurate application and evaluation.", "created": "2020-04-22T09:46:18.729+0000", "modified": "2020-04-22T09:46:18.729+0000", "resources": [{"id": 2216, "mirId": "MIR:00000755", "urlPattern": "https://www.pgscatalog.org/pgs/{$id}/", "name": "PGS Catalog", "description": "The Polygenic Score (PGS) Catalog is an open database of PGS and the relevant metadata required for accurate application and evaluation.\n\nDeveloped in collaboration with the NHGRI-EBI GWAS Catalog and Health Data Research UK/", "official": true, "providerCode": "pgs", "sampleId": "PGS000018", "resourceHomeUrl": "http://pgscatalog.org", "institution": {"id": 2214, "name": "University of Cambridge", "homeUrl": "https://www.cam.ac.uk/", "description": "The University of Cambridge is a collegiate public research university in Cambridge, United Kingdom. Founded in 1209 and granted a royal charter by King Henry III in 1231, Cambridge is the second-oldest university in the English-speaking world and the world's fourth-oldest surviving university.", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PGS000018", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 153, "prefix": "refseq", "mirId": "MIR:00000039", "name": "RefSeq", "pattern": "^(((WP|AC|AP|NC|NG|NM|NP|NR|NT|NW|XM|XP|XR|YP|ZP)_\\d+)|(NZ\\_[A-Z]{2,4}\\d+))(\\.\\d+)?$", "description": "The Reference Sequence (RefSeq) collection aims to provide a comprehensive, integrated, non-redundant set of sequences, including genomic DNA, transcript (RNA), and protein products.", "created": "2019-06-11T14:15:43.085+0000", "modified": "2023-01-04T19:52:50.191+0000", "resources": [{"id": 155, "mirId": "MIR:00100067", "urlPattern": "https://www.ncbi.nlm.nih.gov/protein/{$id}", "name": "The NCBI Reference Sequence database", "description": "The NCBI Reference Sequence database", "official": false, "providerCode": "ncbi", "sampleId": "NP_012345", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/projects/RefSeq/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "NP_012345", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2251, "prefix": "datanator.gene", "mirId": "MIR:00000720", "name": "Datanator Gene", "pattern": "^K[0-9]+$", "description": "Datanator is an integrated database of genomic and biochemical data designed to help investigators find data about specific molecules and reactions in specific organisms and specific environments for meta-analyses and mechanistic models. Datanator currently includes metabolite concentrations, RNA modifications and half-lives, protein abundances and modifications, and reaction kinetics integrated from several databases and numerous publications. The Datanator website and REST API provide tools for extracting clouds of data about specific molecules and reactions in specific organisms and specific environments, as well as data about similar molecules and reactions in taxonomically similar organisms.", "created": "2020-05-22T09:05:34.813+0000", "modified": "2020-05-22T09:05:34.813+0000", "resources": [{"id": 2252, "mirId": "MIR:00000740", "urlPattern": "https://www.datanator.info/gene/{$id}", "name": "Icahn School of Medicine at Mount Sinai", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", "official": true, "providerCode": "icahn", "sampleId": "K00973", "resourceHomeUrl": "https://datanator.info/", "institution": {"id": 2247, "name": "Icahn School of Medicine at Mount Sinai", "homeUrl": "https://icahn.mssm.edu/", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "K00973", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1078, "prefix": "lrg", "mirId": "MIR:00000376", "name": "Locus Reference Genomic", "pattern": "^LRG_\\d+$", "description": "A Locus Reference Genomic (LRG) is a manually curated record that contains stable genomic, transcript and protein reference sequences for reporting clinically relevant sequence variants. All LRGs are generated and maintained by the NCBI and EMBL-EBI.", "created": "2019-06-11T14:17:05.115+0000", "modified": "2020-05-22T10:35:39.544+0000", "resources": [{"id": 1082, "mirId": "MIR:00100627", "urlPattern": "http://www.ensembl.org/Homo_sapiens/LRG/Summary?lrg={$id}", "name": "Locus Reference Genomic through Ensembl", "description": "Locus Reference Genomic through Ensembl", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LRG_1", "resourceHomeUrl": "http://www.ensembl.org/", "institution": {"id": 1081, "name": "EnSembl, Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1083, "mirId": "MIR:00100629", "urlPattern": "http://asia.ensembl.org/Homo_sapiens/LRG/Summary?lrg={$id}", "name": "Locus Reference Genomic through Ensembl mirror (asia)", "description": "Locus Reference Genomic through Ensembl mirror (asia)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LRG_1", "resourceHomeUrl": "http://asia.ensembl.org/", "institution": {"id": 1081, "name": "EnSembl, Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "SG", "countryName": "Singapore"}, "deprecated": false, "deprecationDate": null}, {"id": 1084, "mirId": "MIR:00100630", "urlPattern": "http://uswest.ensembl.org/Homo_sapiens/LRG/Summary?lrg={$id}", "name": "Locus Reference Genomic through Ensembl mirror (US west)", "description": "Locus Reference Genomic through Ensembl mirror (US west)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LRG_1", "resourceHomeUrl": "http://uswest.ensembl.org/", "institution": {"id": 1081, "name": "EnSembl, Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1085, "mirId": "MIR:00100631", "urlPattern": "http://useast.ensembl.org/Homo_sapiens/LRG/Summary?lrg={$id}", "name": "Locus Reference Genomic through Ensembl mirror (US east)", "description": "Locus Reference Genomic through Ensembl mirror (US east)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LRG_1", "resourceHomeUrl": "http://useast.ensembl.org/", "institution": {"id": 1081, "name": "EnSembl, Sanger Institute and European Bioinformatics Institute, Hinxton, Cambridge", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1080, "mirId": "MIR:00100478", "urlPattern": "ftp://ftp.ebi.ac.uk/pub/databases/lrgex/{$id}.xml", "name": "Locus Reference Genomic", "description": "Locus Reference Genomic", "official": true, "providerCode": "ebi", "sampleId": "LRG_1", "resourceHomeUrl": "http://www.lrg-sequence.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LRG_1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 41, "prefix": "miriam.collection", "mirId": "MIR:00000008", "name": "MIRIAM Registry collection", "pattern": "^MIR:000\\d{5}$", "description": "MIRIAM Registry is an online resource created to catalogue collections (Gene Ontology, Taxonomy or PubMed are some examples) and the corresponding resources (physical locations) providing access to those data collections. The Registry provides unique and perennial URIs for each entity of those data collections.", "created": "2019-06-11T14:15:31.442+0000", "modified": "2020-06-04T11:17:21.456+0000", "resources": [{"id": 42, "mirId": "MIR:00100005", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100005/{$id}", "name": "MIRIAM Resources (data collection)", "description": "MIRIAM Resources (data collection)", "official": false, "providerCode": "ebi", "sampleId": "MIR:00000008", "resourceHomeUrl": "https://www.ebi.ac.uk/miriam/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": true, "deprecationDate": "2020-06-04T10:00:30.300+0000"}], "sampleId": "MIR:00000008", "namespaceEmbeddedInLui": false, "deprecated": true, "deprecationDate": "2020-06-04T11:17:21.453+0000"}, {"id": 567, "prefix": "xenbase", "mirId": "MIR:00000186", "name": "Xenbase", "pattern": "^XB\\-\\w+\\-\\d+$", "description": "Xenbase is the model organism database for Xenopus laevis and X. (Silurana) tropicalis. It contains genomic, development data and community information for Xenopus research. it includes gene expression patterns that incorporates image data from the literature, large scale screens and community submissions.", "created": "2019-06-11T14:16:21.651+0000", "modified": "2020-06-09T19:30:57.158+0000", "resources": [{"id": 569, "mirId": "MIR:00100232", "urlPattern": "https://www.xenbase.org/entry/{$id}", "name": "Xenbase at University of Calgary", "description": "Xenbase at University of Calgary", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "XB-GENE-922462", "resourceHomeUrl": "https://www.xenbase.org/", "institution": {"id": 568, "name": "University of Calgary", "homeUrl": "https://www.ucalgary.ca/", "description": "The University of Calgary is one of Canada\u2019s top comprehensive research universities, combining the best of university tradition with the city of Calgary\u2019s vibrant energy and diversity.", "rorId": "https://ror.org/03yjb2x39", "location": {"countryCode": "CA", "countryName": "Canada"}}, "location": {"countryCode": "CA", "countryName": "Canada"}, "deprecated": false, "deprecationDate": null}], "sampleId": "XB-GENE-922462", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2265, "prefix": "uniprot.chain", "mirId": "MIR:00000739", "name": "UniProt Chain", "pattern": "^PRO_[0-9]{10}$", "description": "This collection is a subset of UniProtKB that provides a means to reference the proteolytic cleavage products of a precursor protein.", "created": "2020-06-09T20:12:07.077+0000", "modified": "2020-06-26T08:48:10.292+0000", "resources": [{"id": 2266, "mirId": "MIR:00000728", "urlPattern": "http://purl.uniprot.org/annotation/{$id}", "name": "UniProt Chain through Universal Protein Resource", "description": "The UniProt Knowledgebase (UniProtKB) is a comprehensive resource for protein sequence and functional information with extensive cross-references to more than 120 external databases. This collection is a subset of UniProtKB that provides a means to reference the proteolytic cleavage products of a precursor protein.\n", "official": true, "providerCode": "upr", "sampleId": "PRO_0000016681", "resourceHomeUrl": "https://www.uniprot.org", "institution": {"id": 24, "name": "UniProt Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PRO_0000016681", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 350, "prefix": "mi", "mirId": "MIR:00000109", "name": "Molecular Interactions Ontology", "pattern": "^MI:\\d{4}$", "description": "The Molecular Interactions (MI) ontology forms a structured controlled vocabulary for the annotation of experiments concerned with protein-protein interactions. MI is developed by the HUPO Proteomics Standards Initiative.", "created": "2019-06-11T14:16:01.860+0000", "modified": "2020-06-26T10:17:31.752+0000", "resources": [{"id": 351, "mirId": "MIR:00100142", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/mi/terms?obo_id=MI:{$id}", "name": "Molecular Interactions Ontology through OLS", "description": "Molecular Interactions Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "0308", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/mi", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0308", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 2277, "prefix": "molmedb", "mirId": "MIR:00000768", "name": "MolMeDB", "pattern": "^[m,M]{2}[0-9]{5}[0-9]*$", "description": "MolMeDB is an open chemistry database about interactions of molecules with membranes. We collect information on how chemicals interact with individual membranes either from experiment or from simulations. ", "created": "2020-07-03T09:30:53.125+0000", "modified": "2020-07-03T09:30:53.125+0000", "resources": [{"id": 2278, "mirId": "MIR:00000749", "urlPattern": "https://molmedb.upol.cz/mol/{$id}", "name": "Palack\u00fd University, Olomouc", "description": "Palack\u00fd University Olomouc is a university with long-standing tradition. Founded in the 16th century, it is the oldest university in Moravia and the second-oldest university in the Czech Republic. Today it is a modern higher education facility with a wide range of study programmes and copious scientific and research activities. In 2019, more than 22 000 students studied in accredited study programmes, exchange programmes and lifelong learning programmes at eight faculties. Palack\u00fd University Olomouc is one of the very top Czech universities, and ranks among the best universities in the world, according to international rankings.", "official": true, "providerCode": "upol", "sampleId": "MM00040", "resourceHomeUrl": "http://www.upol.cz/en/", "institution": {"id": 2276, "name": "Palack\u00fd University, Olomouc", "homeUrl": "http://www.upol.cz/en/", "description": "Palack\u00fd University Olomouc is a university with long-standing tradition. Founded in the 16th century, it is the oldest university in Moravia and the second-oldest university in the Czech Republic. Today it is a modern higher education facility with a wide range of study programmes and copious scientific and research activities. In 2019, more than 22 000 students studied in accredited study programmes, exchange programmes and lifelong learning programmes at eight faculties. Palack\u00fd University Olomouc is one of the very top Czech universities, and ranks among the best universities in the world, according to international rankings.", "rorId": null, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}}, "location": {"countryCode": "CZ", "countryName": "Czech Republic"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MM00040", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2293, "prefix": "odam", "mirId": "MIR:00000722", "name": "Open Data for Access and Mining", "pattern": "^[A-Za-z0-9]+$", "description": "Experimental data table management software to make research data accessible and available for reuse with minimal effort on the part of the data provider. Designed to manage experimental data tables in an easy way for users, ODAM provides a model for structuring both data and metadata that facilitates data handling and analysis. It also encourages data dissemination according to FAIR principles by making the data interoperable and reusable by both humans and machines, allowing the dataset to be explored and then extracted in whole or in part as needed.", "created": "2020-07-08T15:12:19.317+0000", "modified": "2020-07-08T15:12:19.317+0000", "resources": [{"id": 2294, "mirId": "MIR:00000759", "urlPattern": "http://pmb-bordeaux.fr/getdata/json/{$id}/datapackage?links=1", "name": "INRA", "description": "Bordeaux Metabolome Facility provides equipments and expertise for the study of metabolome, lipidome and metabolic fluxes.", "official": true, "providerCode": "bmf", "sampleId": "frim1", "resourceHomeUrl": "https://metabolome.cgfb.u-bordeaux.fr/", "institution": {"id": 2292, "name": "National Research Institute for Agriculture, Food and Environment", "homeUrl": "https://www.inrae.fr/", "description": "INRAE is France's new National Research Institute for Agriculture, Food and Environment, created on January 1, 2020, It was formed by the merger of INRA, the National Institute for Agricultural Research, and IRSTEA, the National Research Institute of Science and Technology for the Environment and Agriculture.", "rorId": "https://ror.org/003vg9w96", "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "frim1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1468, "prefix": "hgnc.family", "mirId": "MIR:00000520", "name": "HGNC Family", "pattern": "^[A-Z0-9-]+(#[A-Z0-9-]+)?$", "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. In addition, HGNC also provides symbols for both structural and functional gene families. This collection refers to records using the HGNC family symbol.", "created": "2019-06-11T14:17:39.700+0000", "modified": "2020-07-16T06:11:33.736+0000", "resources": [{"id": 1469, "mirId": "MIR:00100671", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100671/{$id}", "name": "HGNC Family at HUGO Genome Nomenclature Committee", "description": "HGNC Family at HUGO Genome Nomenclature Committee", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "PADI", "resourceHomeUrl": "https://www.genenames.org/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": true, "deprecationDate": "2020-07-16T06:11:29.395+0000"}], "sampleId": "PADI", "namespaceEmbeddedInLui": false, "deprecated": true, "deprecationDate": "2020-07-16T06:11:33.734+0000"}, {"id": 2306, "prefix": "hgnc.genegroup", "mirId": "MIR:00000709", "name": "HGNC Gene Group", "pattern": "^\\d+$", "description": "The HGNC (HUGO Gene Nomenclature Committee) provides an approved gene name and symbol (short-form abbreviation) for each known human gene. All approved symbols are stored in the HGNC database, and each symbol is unique. In addition, HGNC also provides a unique numerical ID to identify gene families, providing a display of curated hierarchical relationships between families.", "created": "2020-07-16T06:20:43.698+0000", "modified": "2020-07-16T06:20:43.698+0000", "resources": [{"id": 2307, "mirId": "MIR:00000703", "urlPattern": "https://www.genenames.org/cgi-bin/genefamilies/set/{$id}", "name": "HGNC Gene Group at HUGO Genome Nomenclature Committee", "description": "HGNC Gene Group at HUGO Genome Nomenclature Committee", "official": true, "providerCode": "ebi", "sampleId": "141", "resourceHomeUrl": "https://www.genenames.org", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "141", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 689, "prefix": "doid", "mirId": "MIR:00000233", "name": "Human Disease Ontology", "pattern": "^DOID:\\d+$", "description": "The Disease Ontology has been developed as a standardized ontology for human disease with the purpose of providing the biomedical community with consistent, reusable and sustainable descriptions of human disease terms, phenotype characteristics and related medical vocabulary disease concepts.", "created": "2019-06-11T14:16:32.719+0000", "modified": "2020-07-20T14:34:20.285+0000", "resources": [{"id": 690, "mirId": "MIR:00100292", "urlPattern": "http://purl.bioontology.org/ontology/DOID/DOID:{$id}", "name": "Human Disease Ontology through BioPortal", "description": "Human Disease Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "11337", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/DOID", "institution": {"id": 571, "name": "National Center for Biomedical Ontology, Stanford University", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 693, "mirId": "MIR:00100297", "urlPattern": "http://disease-ontology.org/term/DOID:{$id}", "name": "Human Disease Ontology at Northwestern University", "description": "Human Disease Ontology at Northwestern University", "official": false, "providerCode": "hdo", "sampleId": "11337", "resourceHomeUrl": "http://disease-ontology.org/", "institution": {"id": 692, "name": "University of Maryland (Maryland) and Northwestern University (Illinois)", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 691, "mirId": "MIR:00100293", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/doid/terms?obo_id=DOID:{$id}", "name": "Human Disease Ontology through OLS", "description": "Human Disease Ontology through OLS", "official": true, "providerCode": "ols", "sampleId": "11337", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/doid", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "11337", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1292, "prefix": "go_ref", "mirId": "MIR:00000450", "name": "Gene Ontology Reference", "pattern": "^GO_REF:\\d{7}$", "description": "The GO reference collection is a set of abstracts that can be cited in the GO ontologies (e.g. as dbxrefs for term definitions) and annotation files (in the Reference column). It provides two types of reference; It can be used to provide details of why specific Evidence codes (see http://identifiers.org/eco/) are assigned, or to present abstract-style descriptions of \"GO content\" meetings at which substantial changes in the ontologies are discussed and made.", "created": "2019-06-11T14:17:23.452+0000", "modified": "2020-07-30T07:27:34.233+0000", "resources": [{"id": 1293, "mirId": "MIR:00100584", "urlPattern": "https://github.com/geneontology/go-site/blob/master/metadata/gorefs/goref-{$id}.md", "name": "Gene Ontology Reference at The Gene Ontology Consortium", "description": "Gene Ontology Reference at The Gene Ontology Consortium", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0000041", "resourceHomeUrl": "http://www.geneontology.org/cgi-bin/references.cgi", "institution": {"id": 89, "name": "The Gene Ontology Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000041", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1934, "prefix": "gcst", "mirId": "MIR:00000715", "name": "GWAS Catalog", "pattern": "^GCST\\d{6}\\d*$", "description": "The GWAS Catalog provides a consistent, searchable, visualisable and freely available database of published SNP-trait associations, which can be easily integrated with other resources, and is accessed by scientists, clinicians and other users worldwide.", "created": "2019-06-17T12:55:17.868+0000", "modified": "2020-09-23T11:03:41.882+0000", "resources": [{"id": 1935, "mirId": "MIR:00000775", "urlPattern": "https://www.ebi.ac.uk/gwas/studies/{$id}", "name": "European Bioinformatics Institute", "description": "The European Bioinformatics Institute (EMBL-EBI) helps scientists realise the potential of 'big data' in biology, exploiting complex information to make discoveries that benefit humankind.", "official": true, "providerCode": "ebi", "sampleId": "GCST000035", "resourceHomeUrl": "https://www.ebi.ac.uk", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GCST000035", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2370, "prefix": "pkdb", "mirId": "MIR:00000708", "name": "PK-DB", "pattern": "^PKDB[0-9]{5}$", "description": "PK-DB an open database for pharmacokinetics information from clinical trials as well as pre-clinical research. The focus of PK-DB is to provide high-quality pharmacokinetics data enriched with the required meta-information for computational modeling and data integration. ", "created": "2020-10-07T10:25:14.491+0000", "modified": "2020-10-07T10:25:14.491+0000", "resources": [{"id": 2371, "mirId": "MIR:00000714", "urlPattern": "https://pk-db.com/data/{$id}", "name": "Humboldt University of Berlin", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01hcx6992' with Wikidata IDs [Q152087], and ISNI IDs [0000 0001 2248 7639]", "official": true, "providerCode": "pkdb", "sampleId": "PKDB00198", "resourceHomeUrl": "https://www.hu-berlin.de/?set_language=en&cl=en", "institution": {"id": 2369, "name": "Humboldt University of Berlin", "homeUrl": "https://www.hu-berlin.de/?set_language=en&cl=en", "description": "Humboldt University of Berlin is a university in the central borough of Mitte in Berlin, Germany. It was established by Frederick William III on the initiative of Wilhelm von Humboldt, Johann Gottlieb Fichte and Friedrich Ernst Daniel Schleiermacher as the University of Berlin (Universit\u00e4t zu Berlin) in 1809, and opened in 1810.", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PKDB00198", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2377, "prefix": "morpheus", "mirId": "MIR:00000725", "name": "Morpheus model repository", "pattern": "^M[0-9]{4,}$", "description": "The Morpheus model repository is an open-access data resource to store, search and retrieve unpublished and published computational models of spatio-temporal and multicellular biological systems, encoded in the MorpheusML language and readily executable with the Morpheus software.\n", "created": "2020-10-07T10:43:05.918+0000", "modified": "2020-10-07T10:43:05.918+0000", "resources": [{"id": 2378, "mirId": "MIR:00000700", "urlPattern": "https://morpheus.gitlab.io/models/{$id}", "name": "Morpheus.lab", "description": "Morpheus.lab is affiliated with the Center for Information Services and High Performance Computing (ZIH)\nat Technische Universit\u00e4t Dresden, Germany. Morpheus.lab develops and maintains the open-source software Morpheus, the domain-specific language MorpheusML, online courses, a user forum and the model repository.", "official": true, "providerCode": "morpheus.lab", "sampleId": "M0001", "resourceHomeUrl": "https://morpheus.gitlab.io/", "institution": {"id": 2376, "name": "TU Dresden", "homeUrl": "https://tu-dresden.de/?set_language=en", "description": "The Technische Universit\u00e4t Dresden (TUD) is one of the largest \u201cTechnische Universit\u00e4ten\u201d in Germany and one of the leading and most dynamic universities in Germany. As a full-curriculum university with 17 faculties in five schools it offers a broad variety of 124 disciplines and covers a wide research spectrum. Its focuses Health Sciences, Biomedicine & Bioengineering, Information Technology & Microelectronics, Smart Materials & Structures, Energy, Mobility & Environment as well as Culture & Societal Change are considered exemplary in Germany and throughout Europe.", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "M0001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2384, "prefix": "glycopost", "mirId": "MIR:00000721", "name": "GlycoPOST", "pattern": "^GPST[0-9]{6}$", "description": "GlycoPOST is a mass spectrometry data repository for glycomics and glycoproteomics. Users can release their \"raw/processed\" data via this site with a unique identifier number for the paper publication. Submission conditions are in accordance with the Minimum Information Required for a Glycomics Experiment (MIRAGE) guidelines.", "created": "2020-10-08T09:25:59.424+0000", "modified": "2020-10-08T09:25:59.424+0000", "resources": [{"id": 2385, "mirId": "MIR:00000704", "urlPattern": "https://glycopost.glycosmos.org/entry/{$id}", "name": "Niigata University", "description": "Niigata University has a long institutional history, with origins going back some 150 years. Since its inauguration as a national university in 1949 under the new university system, it has played an important role in higher education and research in Japan. Over the years, it has grown into a large-scale comprehensive university offering bachelor's, master's, and doctoral degree programs under ten faculties and five graduate schools in a wide range of disciplines spanning the humanities, education, law, economics, science, engineering, agriculture, medicine, health sciences, and dentistry. With a student body of approximately 13,000 and 3,000 academic and administrative staff members, and as a research-oriented university, it boasts several world-leading research institutes, including the Brain Research Institute and the Research Institute for Natural Hazards and Disaster Recovery as well as a university hospital providing high-level medical care as an advanced treatment hospital for the region.", "official": true, "providerCode": "glycopost", "sampleId": "GPST000024", "resourceHomeUrl": "https://glycopost.glycosmos.org", "institution": {"id": 2383, "name": "Niigata University", "homeUrl": "https://www.niigata-u.ac.jp/", "description": "Niigata University has a long institutional history, with origins going back some 150 years. Since its inauguration as a national university in 1949 under the new university system, it has played an important role in higher education and research in Japan. Over the years, it has grown into a large-scale comprehensive university offering bachelor's, master's, and doctoral degree programs under ten faculties and five graduate schools in a wide range of disciplines spanning the humanities, education, law, economics, science, engineering, agriculture, medicine, health sciences, and dentistry. With a student body of approximately 13,000 and 3,000 academic and administrative staff members, and as a research-oriented university, it boasts several world-leading research institutes, including the Brain Research Institute and the Research Institute for Natural Hazards and Disaster Recovery as well as a university hospital providing high-level medical care as an advanced treatment hospital for the region.", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GPST000024", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1280, "prefix": "uberon", "mirId": "MIR:00000446", "name": "UBERON", "pattern": "^UBERON:\\d+$", "description": "Uberon is an integrated cross-species anatomy ontology representing a variety of entities classified according to traditional anatomical criteria such as structure, function and developmental lineage. The ontology includes comprehensive relationships to taxon-specific anatomical ontologies, allowing integration of functional, phenotype and expression data.", "created": "2019-06-11T14:17:22.433+0000", "modified": "2021-02-27T10:19:43.666+0000", "resources": [{"id": 1281, "mirId": "MIR:00100579", "urlPattern": "http://purl.bioontology.org/ontology/UBERON/UBERON:{$id}", "name": "UBERON through bioPortal", "description": "UBERON through bioPortal", "official": false, "providerCode": "bptl", "sampleId": "0008203", "resourceHomeUrl": "http://bioportal.bioontology.org/ontologies/UBERON", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 1282, "mirId": "MIR:00100580", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/uberon/terms?obo_id=UBERON:{$id}", "name": "UBERON through OLS", "description": "UBERON through OLS", "official": true, "providerCode": "ols", "sampleId": "0008203", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/uberon", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0008203", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 2524, "prefix": "ped.ensemble", "mirId": "MIR:00000795", "name": "Protein Ensemble Database ensemble", "pattern": "^PED\\d{5}e\\d{3}$", "description": "The Protein Ensemble Database is an open access database for the deposition of structural ensembles, including intrinsically disordered proteins.", "created": "2021-02-17T18:06:52.762+0000", "modified": "2021-02-17T18:06:52.762+0000", "resources": [{"id": 2525, "mirId": "MIR:00000791", "urlPattern": "https://proteinensemble.org/{$id}", "name": "PED - Protein Ensemble Database", "description": "The Protein Ensemble Database (PED) is an open access database for the deposition of structural ensembles, including intrinsically disordered proteins.", "official": true, "providerCode": "ped.ensemble", "sampleId": "PED00017e001", "resourceHomeUrl": "https://proteinensemble.org/", "institution": {"id": 1769, "name": "University of Padua", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PED00017e001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2527, "prefix": "repeatsdb.structure", "mirId": "MIR:00000764", "name": "RepeatsDB Structure", "pattern": "^[0-9][A-Za-z0-9]{3}[A-Za-z0-9][A-Za-z0-9]?[0-9]?[0-9]?$", "description": "RepeatsDB is a database of annotated tandem repeat protein structures. This collection references structural entries in the database.", "created": "2021-02-17T18:09:04.420+0000", "modified": "2021-02-17T18:09:04.420+0000", "resources": [{"id": 2528, "mirId": "MIR:00000780", "urlPattern": "https://repeatsdb.org/structure/{$id}", "name": "RepeatsDB", "description": "RepeatsDB is a database of annotated tandem repeat protein structures. This collection references structural entries in the database.", "official": true, "providerCode": "repeatsdb.structure", "sampleId": "2gc4E", "resourceHomeUrl": "https://repeatsdb.org/", "institution": {"id": 1769, "name": "University of Padua", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2gc4E", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2416, "prefix": "biosimulators", "mirId": "MIR:00000767", "name": "BioSimulators", "pattern": "[a-zA-Z0-9-_]+", "description": "BioSimulators is a registry of containerized simulation tools that support a common interface. The containers in BioSimulators support a range of modeling frameworks (e.g., logical, constraint-based, continuous kinetic, discrete kinetic), simulation algorithms (e.g., CVODE, FBA, SSA), and modeling formats (e.g., BGNL, SBML, SED-ML).", "created": "2020-10-22T01:16:20.744+0000", "modified": "2020-10-22T01:16:20.744+0000", "resources": [{"id": 2417, "mirId": "MIR:00000746", "urlPattern": "https://biosimulators.org/simulators/{$id}", "name": "BioSimulators", "description": "The BioSimulators project aims to make it easier for the research community to reuse biosimulation tools through standards and a registry of simulation tools.", "official": true, "providerCode": "icahn", "sampleId": "vcell", "resourceHomeUrl": "https://biosimulators.org/", "institution": {"id": 2247, "name": "Icahn School of Medicine at Mount Sinai", "homeUrl": "https://icahn.mssm.edu/", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "vcell", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2423, "prefix": "gsso", "mirId": "MIR:00000712", "name": "Gender, Sex, and Sexual Orientation (GSSO) Ontology", "pattern": "^GSSO:\\d{6}$", "description": "The Gender, Sex, and Sexual Orientation (GSSO) ontology is an interdisciplinary ontology connecting terms from biology, medicine, psychology, sociology, and gender studies, aiming to bridge gaps between linguistic variations inside and outside of the health care environment. A large focus of the ontology is its consideration of LGBTQIA+ terminology.", "created": "2020-11-05T10:42:17.722+0000", "modified": "2020-11-05T10:59:53.808+0000", "resources": [{"id": 2424, "mirId": "MIR:00000758", "urlPattern": "http://purl.obolibrary.org/obo/GSSO_{$id}", "name": "National Center for Biomedical Ontology (NCBO) BioPortal", "description": "One of the National Centers for Biomedical Computing, and is funded by the NIH. Among the goals of the NCBO are to provide tools for discovery and access of biomedical ontologies, which are a type of controlled vocabulary designed to allow the expression of complex relationships in machine-readable form.", "official": true, "providerCode": "bioportal", "sampleId": "002368", "resourceHomeUrl": "https://bioportal.bioontology.org/", "institution": {"id": 2422, "name": "University of Cincinnati", "homeUrl": "https://www.uc.edu/", "description": "UC is a public research university with an enrollment of more than 46,000 students and has been named \"Among the top tier of the Best National Universities,\" according to U.S. News & World Report.", "rorId": "https://ror.org/01e3m7079", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "002368", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1357, "prefix": "ligandbox", "mirId": "MIR:00000477", "name": "LigandBox", "pattern": "^(HTS|KSH)[0-9]{4}-[0-9]{8}|PDB_[0-9,A-Z]{2,3}|[CD][0-9]{5}$", "description": "LigandBox is a database of 3D compound structures. Compound information is collected from the catalogues of various commercial suppliers, with approved drugs and biochemical compounds taken from KEGG and PDB databases. Each chemical compound in the database has several 3D conformers with hydrogen atoms and atomic charges, which are ready to be docked into receptors using docking programs. Various physical properties, such as aqueous solubility (LogS) and carcinogenicity have also been calculated to characterize the ADME-Tox properties of the compounds.", "created": "2019-06-11T14:17:28.979+0000", "modified": "2020-11-20T10:55:30.526+0000", "resources": [{"id": 1359, "mirId": "MIR:00100612", "urlPattern": "http://www.mypresto5.com/ligandbox/cgi-bin/liginf.cgi?id={$id}", "name": "LigandBox at N2PC", "description": "LigandBox at N2PC", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "D00001", "resourceHomeUrl": "http://www.mypresto5.com/ligandbox/cgi-bin/index.cgi?LANG=en", "institution": {"id": 1358, "name": "Next generation Natural Products Chemistry", "homeUrl": "https://www.natprodchem.jp/", "description": "https://www.natprodchem.jp/files/english.pdf", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "D00001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1666, "prefix": "pgx", "mirId": "MIR:00000600", "name": "Progenetix", "pattern": "^\\w{3,15}[-_]\\w[\\w.-]{3,128}$", "description": "The Progenetix database provides an overview of mutation data in cancer, with a focus on copy number abnormalities (CNV / CNA), for all types of human malignancies. The resource contains genome profiles of more than 130'000 individual samples and represents about 700 cancer types, according to the NCIt \"neoplasm\" classification. Additionally to this genome profiles and associated metadata, the website present information about thousands of publications referring to cancer genome profiling experiments, and services for mapping cancer classifications and accessing supplementary data through its APIs.", "created": "2019-06-11T14:17:59.445+0000", "modified": "2020-11-25T15:01:33.103+0000", "resources": [{"id": 1668, "mirId": "MIR:00100801", "urlPattern": "https://progenetix.org/services/ids/{$id}", "name": "Progenetix", "description": "Progenetix", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "pgxbs-kftva5zv", "resourceHomeUrl": "https://progenetix.org/", "institution": {"id": 1667, "name": "University of Zurich", "homeUrl": "https://www.uzh.ch/en.html", "description": "No description available", "rorId": "https://ror.org/02crff812", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "pgxbs-kftva5zv", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2477, "prefix": "covid19", "mirId": "MIR:00000789", "name": "SARS-CoV-2", "pattern": "^\\w+_COVID19_[-\\w]+$", "description": "Curated contextual database gathering samples related to SARS-CoV-2 virus and covid-19 disease.", "created": "2020-12-14T12:49:56.333+0000", "modified": "2020-12-14T12:49:56.333+0000", "resources": [{"id": 2478, "mirId": "MIR:00000787", "urlPattern": "https://covid19.sfb.uit.no/api/records/{$id}", "name": "Elixir@UiT", "description": "Elixir@UiT is the local branch of ELIXIR-NO node based at UiT.", "official": true, "providerCode": "sfb", "sampleId": "SFB_COVID19_MW286762", "resourceHomeUrl": "https://covid19.sfb.uit.no", "institution": {"id": 2476, "name": "University of Troms\u00f8 - The Arctic University of Norway", "homeUrl": "https://uit.no/startsida", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/00wge5k78' with Wikidata IDs [Q279724], and ISNI IDs [0000000122595234]", "rorId": null, "location": {"countryCode": "NO", "countryName": "Norway"}}, "location": {"countryCode": "NO", "countryName": "Norway"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SFB_COVID19_MW286762", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2497, "prefix": "vmhgene", "mirId": "MIR:00000774", "name": "VMH Gene", "pattern": "^[0-9]+\\.[0-9]+", "description": "The Virtual Metabolic Human (VMH) is a resource that combines human and gut microbiota metabolism with nutrition and disease.", "created": "2021-02-01T15:47:59.756+0000", "modified": "2021-02-01T15:47:59.756+0000", "resources": [{"id": 2498, "mirId": "MIR:00000794", "urlPattern": "https://www.vmh.life/#gene/{$id}", "name": "VMH Gene", "description": "VMH Gene, provided by Thiele Group, NUI Galway. \nThe VMH database captures information on human and gut microbial metabolism and links this information to hundreds of diseases and nutritional data.", "official": true, "providerCode": "NUI", "sampleId": "8639.1", "resourceHomeUrl": "https://www.vmh.life/", "institution": {"id": 2496, "name": "National University of Ireland, Galway", "homeUrl": "http://www.nuigalway.ie/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03bea9k73' with Wikidata IDs [Q644478], and ISNI IDs [0000 0004 0488 0789]", "rorId": null, "location": {"countryCode": "IE", "countryName": "Ireland"}}, "location": {"countryCode": "IE", "countryName": "Ireland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "8639.1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1523, "prefix": "gwascentral.phenotype", "mirId": "MIR:00000543", "name": "GWAS Central Phenotype", "pattern": "^HGVPM\\d+$", "description": "GWAS Central (previously the Human Genome Variation database of Genotype-to-Phenotype information) is a database of summary level findings from genetic association studies, both large and small. It gathers datasets from public domain projects, and accepts direct data submission. It is based upon Marker information encompassing SNP and variant information from public databases, to which allele and genotype frequency data, and genetic association findings are additionally added. A Study (most generic level) contains one or more Experiments, one or more Sample Panels of test subjects, and one or more Phenotypes. This collection references a GWAS Central Phenotype.", "created": "2019-06-11T14:17:44.698+0000", "modified": "2021-02-01T16:43:30.697+0000", "resources": [{"id": 1524, "mirId": "MIR:00100720", "urlPattern": "https://www.gwascentral.org/phenotype/{$id}", "name": "GWAS Central Phenotype at University of Leicester", "description": "GWAS Central Phenotype at University of Leicester", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "HGVPM623", "resourceHomeUrl": "https://www.gwascentral.org/phenotypes", "institution": {"id": 1079, "name": "Department of Genetics, University of Leicester, Leicester", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "HGVPM623", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2518, "prefix": "clinvar.submitter", "mirId": "MIR:00000769", "name": "ClinVar Submitter", "pattern": "^\\d+$", "description": "ClinVar archives reports of relationships among medically important variants and phenotypes. It records human variation, interpretations of the relationship specific variations to human health, and supporting evidence for each interpretation. Each ClinVar record (RCV identifier) represents an aggregated view of interpretations of the same variation and condition from one or more submitters (Submitter IDs). Submissions for individual variation/phenotype combinations (SCV identifier) are also collected and made available separately. This collection references submitters (submitter ids) that submit the submissions (SCVs).", "created": "2021-02-17T17:56:14.329+0000", "modified": "2021-02-17T17:56:14.329+0000", "resources": [{"id": 2519, "mirId": "MIR:00000783", "urlPattern": "https://www.ncbi.nlm.nih.gov/clinvar/submitters/{$id}", "name": "ClinVar Submitter at NCBI", "description": "ClinVar Submitter ids are assigned by NCBI for all authorized submitters of clinvar submissions (SCVs)", "official": true, "providerCode": "ncbi", "sampleId": "26957", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/clinvar/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "26957", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2521, "prefix": "ped", "mirId": "MIR:00000777", "name": "Protein Ensemble Database", "pattern": "^PED\\d{5}$", "description": "The Protein Ensemble Database is an open access database for the deposition of structural ensembles, including intrinsically disordered proteins.", "created": "2021-02-17T18:02:05.160+0000", "modified": "2021-02-17T18:02:05.160+0000", "resources": [{"id": 2522, "mirId": "MIR:00000784", "urlPattern": "https://proteinensemble.org/{$id}", "name": "PED - Protein Ensemble Database", "description": "The Protein Ensemble Database (PED) is an open access database for the deposition of structural ensembles, including intrinsically disordered proteins.", "official": true, "providerCode": "ped", "sampleId": "PED00037", "resourceHomeUrl": "https://proteinensemble.org/", "institution": {"id": 1769, "name": "University of Padua", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PED00037", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2532, "prefix": "repeatsdb.protein", "mirId": "MIR:00000792", "name": "RepeatsDB Protein", "pattern": "^[OPQopq][0-9][A-Za-z0-9]{3}[0-9]|[A-Na-nR-Zr-z][0-9]([A-Za-z][A-Za-z0-9]{2}[0-9]){1,2}$", "description": "RepeatsDB is a database of annotated tandem repeat protein structures. This collection references protein entries in the database.", "created": "2021-02-17T18:11:07.592+0000", "modified": "2021-02-17T18:11:07.592+0000", "resources": [{"id": 2533, "mirId": "MIR:00000699", "urlPattern": "https://repeatsdb.org/protein/{$id}", "name": "RepeatsDB", "description": "RepeatsDB is a database of annotated tandem repeat protein structures. This collection references structural entries in the database.", "official": true, "providerCode": "", "sampleId": "P29894", "resourceHomeUrl": "https://repeatsdb.org/", "institution": {"id": 1769, "name": "University of Padua", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P29894", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2548, "prefix": "gateway", "mirId": "MIR:00000796", "name": "gateway", "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$", "description": "The Health Data Research Innovation Gateway (the 'Gateway') provides a common entry point to discover and enquire about access to UK health datasets for research and innovation. It provides detailed information about the datasets, which are held by members of the UK Health Data Research Alliance, such as a description, size of the population, and the legal basis for access.", "created": "2021-02-26T07:35:34.234+0000", "modified": "2021-02-26T07:35:34.234+0000", "resources": [{"id": 2549, "mirId": "MIR:00000697", "urlPattern": "https://web.www.healthdatagateway.org/dataset/{$id}", "name": "Health Data Research UK", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04rtjaj74' with no Wikidata information, and no ISNI information", "official": true, "providerCode": "hdruk", "sampleId": "fd8d0743-344a-4758-bb97-f8ad84a37357", "resourceHomeUrl": "https://www.hdruk.ac.uk", "institution": {"id": 2547, "name": "Health Data Research UK", "homeUrl": "https://www.hdruk.ac.uk", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04rtjaj74' with no Wikidata information, and no ISNI information", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "fd8d0743-344a-4758-bb97-f8ad84a37357", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1585, "prefix": "metanetx.compartment", "mirId": "MIR:00000569", "name": "MetaNetX compartment", "pattern": "^(MNX[CD]\\d+|BOUNDARY|IN|OUT)$", "description": "MetaNetX/MNXref integrates various information from genome-scale metabolic network reconstructions such as information on reactions, metabolites and compartments. This information undergoes a reconciliation process to minimise for discrepancies between different data sources, and makes the data accessible under a common namespace. This collection references cellular compartments.", "created": "2019-06-11T14:17:50.805+0000", "modified": "2021-02-26T09:49:03.051+0000", "resources": [{"id": 1586, "mirId": "MIR:00100750", "urlPattern": "https://www.metanetx.org/comp_info/{$id}", "name": "MetaNetX compartment at SIB Swiss Institute of Bioinformatics", "description": "MetaNetX compartment at SIB Swiss Institute of Bioinformatics", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "MNXC15", "resourceHomeUrl": "https://www.metanetx.org/", "institution": {"id": 1581, "name": "Vital-IT group, SIB Swiss Institute of Bioinformatics, Lausanne", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MNXC15", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2559, "prefix": "qtldb", "mirId": "MIR:00000798", "name": "Animal Genome QTL", "pattern": "^\\d+$", "description": "The Animal Quantitative Trait Loci (QTL) database (Animal QTLdb) is designed to house publicly all available QTL and single-nucleotide polymorphism/gene association data on livestock animal species. This collection is species-independent.", "created": "2021-02-26T10:27:01.032+0000", "modified": "2021-02-26T10:27:01.032+0000", "resources": [{"id": 2560, "mirId": "MIR:00000797", "urlPattern": "https://www.animalgenome.org/QTLdb/q?id=QTL_ID:{$id}", "name": "Animal QTL DB at Iowa State University", "description": "Animal QTL DB at Department of Animal Science and Center for Integrated Animal Genomics, Iowa State University", "official": true, "providerCode": "iastate", "sampleId": "4685", "resourceHomeUrl": "https://www.animalgenome.org/QTLdb", "institution": {"id": 2558, "name": "Iowa State University", "homeUrl": "https://www.iastate.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04rswrd78' with Wikidata IDs [Q1136919], and ISNI IDs [0000 0004 1936 7312]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4685", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2565, "prefix": "runbiosimulations", "mirId": "MIR:00000897", "name": "runBioSimulations", "pattern": "[0-9a-z]{24,24}", "description": "runBioSimulations is a platform for sharing simulation experiments and their results. runBioSimulations enables investigators to use a wide range of simulation tools to execute a wide range of simulations. runBioSimulations permanently saves the results of these simulations, and investigators can share results by sharing URLs similar to sharing URLs for files with DropBox and Google Drive.", "created": "2021-02-28T15:53:07.380+0000", "modified": "2021-02-28T15:53:07.380+0000", "resources": [{"id": 2566, "mirId": "MIR:00000898", "urlPattern": "https://run.biosimulations.org/simulations/{$id}", "name": "Icahn School of Medicine at Mount Sinai", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04a9tmd77' with Wikidata IDs [Q1950740], and ISNI IDs [0000 0001 0670 2351]", "official": true, "providerCode": "icahn", "sampleId": "5fde96bdc5f1aa9ff0cce18a", "resourceHomeUrl": "https://icahn.mssm.edu/", "institution": {"id": 2247, "name": "Icahn School of Medicine at Mount Sinai", "homeUrl": "https://icahn.mssm.edu/", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5fde96bdc5f1aa9ff0cce18a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2571, "prefix": "chembl", "mirId": "MIR:00000799", "name": "ChEMBL", "pattern": "^CHEMBL\\d+$", "description": "ChEMBL is a database of bioactive compounds, their quantitative properties and bioactivities (binding constants, pharmacology and ADMET, etc). The data is abstracted and curated from the primary scientific literature.", "created": "2021-02-28T16:13:04.331+0000", "modified": "2021-02-28T16:13:04.331+0000", "resources": [{"id": 2572, "mirId": "MIR:00000800", "urlPattern": "https://www.ebi.ac.uk/chembl/entity/{$id}", "name": "European Bioinformatics Institute", "description": "ChEMBL is a database of bioactive compounds, their quantitative properties and bioactivities (binding constants, pharmacology and ADMET, etc). The data is abstracted and curated from the primary scientific literature.", "official": true, "providerCode": "ebi", "sampleId": "CHEMBL4303805", "resourceHomeUrl": "https://www.ebi.ac.uk/chembl", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "CHEMBL4303805", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2585, "prefix": "ito", "mirId": "MIR:00000802", "name": "Intelligence Task Ontology", "pattern": "^.+$", "description": "The Intelligence Task Ontology (ITO) provides a comprehensive map of machine intelligence tasks, as well as broader human intelligence or hybrid human/machine intelligence tasks.", "created": "2021-03-15T19:37:56.820+0000", "modified": "2021-03-15T19:37:56.820+0000", "resources": [{"id": 2586, "mirId": "MIR:00000801", "urlPattern": "https://bioportal.bioontology.org/ontologies/ITO/?p=classes&conceptid=https://identifiers.org/ito:{$id}", "name": "BioPortal at National Center for Biomedical Ontology", "description": "BioPortal at National Center for Biomedical Ontology", "official": true, "providerCode": "ito", "sampleId": "ITO_01625", "resourceHomeUrl": "https://bioportal.bioontology.org/", "institution": {"id": 2584, "name": "Institute of Artificial Intelligence and Decision Support, Medical University of Vienna", "homeUrl": "https://www.meduniwien.ac.at/web/en/", "description": "The Institute of Artificial Intelligence and Decision Support at the Medical University of Vienna is dedicated to enabling scientific progress and good decision making by facilitating artificial intelligence technologies.", "rorId": null, "location": {"countryCode": "AT", "countryName": "Austria"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ITO_01625", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2589, "prefix": "odc.sci", "mirId": "MIR:00000804", "name": "Open Data Commons for Spinal Cord Injury", "pattern": "^[0-9]*$", "description": "The Open Data Commons for Spinal Cord Injury is a cloud-based community-driven repository to store, share, and publish spinal cord injury research data.", "created": "2021-03-15T19:43:45.400+0000", "modified": "2021-03-15T19:43:45.400+0000", "resources": [{"id": 2590, "mirId": "MIR:00000803", "urlPattern": "https://odc-sci.org/data/{$id}", "name": "Open Data Commons for Spinal Cord Injury", "description": "Open Data Commons for Spinal Cord Injury hosted on on SciCrunch.org", "official": true, "providerCode": "odc.sci", "sampleId": "602", "resourceHomeUrl": "https://odc-sci.org", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "602", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2594, "prefix": "igsn", "mirId": "MIR:00000806", "name": "International Geo Sample Number", "pattern": "^[A-Za-z]{2,4}[A-Za-z0-9.-]{1,71}$", "description": "IGSN is a globally unique and persistent identifier for material samples and specimens. IGSNs are obtained from IGSN e.V. Agents.", "created": "2021-03-15T19:52:42.073+0000", "modified": "2021-03-15T19:52:42.073+0000", "resources": [{"id": 2595, "mirId": "MIR:00000805", "urlPattern": "http://igsn.org/{$id}", "name": "SESAR, the System for Earth Sample Registration", "description": "SESAR is a community platform that operates a sample registry for researchers, institutions, and sample facilities to openly share information about their samples. SESAR provides tools to upload sample metadata and register samples with IGSN as a globally unique identifier to make them Findable, Accessible, Interoperable, and Reusable (FAIR). SESAR\u2019s services include providing access to the sample metadata catalog via the SESAR Catalog Search tool, maintaining sample metadata profiles, and distributing IGSN.\n \nSESAR is a project funded by the US National Science Foundation.", "official": true, "providerCode": "Not Applicable", "sampleId": "AU124", "resourceHomeUrl": "http://www.geosamples.org/", "institution": {"id": 2593, "name": "IGSN Implementation Organization e.V., Potsdam, Germany", "homeUrl": "https://www.igsn.org/", "description": "The IGSN e.V. is the implementation organization of the IGSN. It is an international, non-profit organization which operates a central registration system for IGSN. IGSN are globally unique and persistent identifiers for material samples. IGSN resolve to persistent landing pages, which are managed by the federated IGSN Agents.", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AU124", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2605, "prefix": "signor", "mirId": "MIR:00000808", "name": "SIGNOR", "pattern": "^SIGNOR\\-[A-Z]+\\d+$", "description": "SIGNOR, the SIGnaling Network Open Resource, organizes and stores in a structured format signaling information published in the scientific literature.", "created": "2021-04-12T18:19:18.033+0000", "modified": "2021-04-12T18:19:18.033+0000", "resources": [{"id": 2606, "mirId": "MIR:00000807", "urlPattern": "https://signor.uniroma2.it/relation_result.php?id={$id}", "name": "SIGNOR", "description": "SIGNOR, the SIGnaling Network Open Resource, organizes and stores in a structured format signaling information published in the scientific literature.", "official": true, "providerCode": "signor", "sampleId": "SIGNOR-C2", "resourceHomeUrl": "https://signor.uniroma2.it/", "institution": {"id": 2604, "name": "University of Rome Tor Vergata", "homeUrl": "http://web.uniroma2.it/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/02p77k626' with Wikidata IDs [Q1031803], and ISNI IDs [0000 0001 2300 0941]", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SIGNOR-C2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1644, "prefix": "envo", "mirId": "MIR:00000591", "name": "Environment Ontology", "pattern": "^ENVO:\\d{7,8}$", "description": "The Environment Ontology is a resource and research target for the semantically controlled description of environmental entities. The ontology's initial aim was the representation of the biomes, environmental features, and environmental materials pertinent to genomic and microbiome-related investigations.", "created": "2019-06-11T14:17:57.267+0000", "modified": "2021-04-17T20:07:01.902+0000", "resources": [{"id": 1645, "mirId": "MIR:00100790", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/envo/terms?obo_id=ENVO:{$id}", "name": "The Environment Ontology through OLS", "description": "The Environment Ontology through OLS", "official": false, "providerCode": "ols", "sampleId": "09200010", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/envo", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}, {"id": 1646, "mirId": "MIR:00100791", "urlPattern": "http://purl.bioontology.org/ontology/ENVO/ENVO:{$id}", "name": "The Environment Ontology through BioPortal", "description": "The Environment Ontology through BioPortal", "official": false, "providerCode": "bptl", "sampleId": "09200010", "resourceHomeUrl": "http://purl.bioontology.org/ontology/ENVO/", "institution": {"id": 5, "name": "National Center for Biomedical Ontology, Stanford", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "09200010", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 2647, "prefix": "ilx", "mirId": "MIR:00000814", "name": "InterLex", "pattern": "^[0-9]+$", "description": "InterLex is a dynamic lexicon, initially built on the foundation of NeuroLex (PMID: 24009581), of biomedical terms and common data elements designed to help improve the way that biomedical scientists communicate about their data, so that information systems can find data more easily and provide more powerful means of integrating data across distributed resources and datasets. InterLex allows for the association of data fields and data values to common data elements and terminologies enabling the crowdsourcing of data-terminology mappings within and across communities. InterLex provides a stable layer on top of the many other existing terminologies, lexicons, ontologies, and common data element collections and provides a set of inter-lexical and inter-data-lexical mappings. ", "created": "2021-05-22T16:59:04.850+0000", "modified": "2021-05-22T16:59:04.850+0000", "resources": [{"id": 2648, "mirId": "MIR:00000813", "urlPattern": "https://scicrunch.org/scicrunch/interlex/view/ilx_{$id}", "name": "FAIR Data Informatics Laboratory", "description": "The FAIR Data Informatics Lab at UCSD is a leader in developing and providing novel informatics infrastructure and tools for making data FAIR: Findable, Accessible, Interoperable and Reusable. ", "official": true, "providerCode": "ilx", "sampleId": "0101963", "resourceHomeUrl": "https://www.fdilab.org", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0101963", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2650, "prefix": "odc.tbi", "mirId": "MIR:00000816", "name": "Open Data Commons for Traumatic Brain Injury", "pattern": "^[0-9]*$", "description": "The Open Data Commons for Traumatic Brain Injury is a cloud-based community-driven repository to store, share, and publish traumatic brain injury research data.", "created": "2021-05-22T17:51:43.225+0000", "modified": "2021-05-22T17:51:43.225+0000", "resources": [{"id": 2651, "mirId": "MIR:00000815", "urlPattern": "https://odc-tbi.org/data/{$id}", "name": "Open Data Commons for Traumatic Brain Injury", "description": "Open Data Commons for Traumatic Brain Injury hosted on on SciCrunch.org", "official": true, "providerCode": "odc.tbi", "sampleId": "408", "resourceHomeUrl": "https://odc-tbi.org", "institution": {"id": 190, "name": "University of California, San Diego", "homeUrl": "https://ucsd.edu/", "description": "is a public research university in San Diego, California.\nEstablished in 1960 near the pre-existing Scripps Institution of Oceanography, UC San Diego is the seventh-oldest of the 10 University of California campuses and offers over 200 undergraduate and graduate degree programs, enrolling approximately 30,000 undergraduate and 8,500 graduate students.", "rorId": "https://ror.org/0168r3w48", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "408", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2665, "prefix": "ccdc", "mirId": "MIR:00000818", "name": "CCDC Number", "pattern": "^\\d{6,7}$", "description": "The Cambridge Crystallographic Data Centre (CCDC) develops and maintains the Cambridge Stuctural Database, the world's most comprehensive archive of small-molecule crystal structure data. A CCDC Number is a unique identifier assigned to a dataset deposited with the CCDC.", "created": "2021-05-30T10:05:35.955+0000", "modified": "2021-05-30T10:05:35.955+0000", "resources": [{"id": 2666, "mirId": "MIR:00000817", "urlPattern": "https://www.ccdc.cam.ac.uk/services/structures?pid=ccdc:{$id}&sid=IDORG", "name": "Cambridge Crystallographic Data Centre", "description": "The Cambridge Crystallographic Data Centre (CCDC) is dedicated to the advancement of chemistry and crystallography through the provision of high quality scientific data services and software. It compiles and disseminates the Cambridge Structural Database, a trusted and comprehensive collection of curated small molecule crystal structure data.", "official": true, "providerCode": "ccdc", "sampleId": "1829126", "resourceHomeUrl": "https://www.ccdc.cam.ac.uk/", "institution": {"id": 2664, "name": "Cambridge Crystallographic Data Centre", "homeUrl": "https://www.ccdc.cam.ac.uk/", "description": "The Cambridge Crystallographic Data Centre (CCDC) is dedicated to the advancement of chemistry and crystallography through the provision of high quality scientific data services and software. It compiles and disseminates the Cambridge Structural Database, a trusted and comprehensive collection of curated small molecule crystal structure data.", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1829126", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2668, "prefix": "csd", "mirId": "MIR:00000820", "name": "Cambridge Structural Database", "pattern": "^[A-Z]{6}(\\d{2})?$", "description": "The Cambridge Stuctural Database (CSD) is the world's most comprehensive collection of small-molecule crystal structures. Entries curated into the CSD are identified by a CSD Refcode.", "created": "2021-05-30T10:06:48.264+0000", "modified": "2021-05-30T10:06:48.264+0000", "resources": [{"id": 2669, "mirId": "MIR:00000819", "urlPattern": "https://www.ccdc.cam.ac.uk/services/structures?pid=csd:{$id}&sid=IDORG", "name": "Cambridge Crystallographic Data Centre", "description": "The Cambridge Crystallographic Data Centre (CCDC) is dedicated to the advancement of chemistry and crystallography through the provision of high quality scientific data services and software. It compiles and disseminates the Cambridge Structural Database, a trusted and comprehensive collection of curated small molecule crystal structure data.", "official": true, "providerCode": "csd", "sampleId": "PELNAW", "resourceHomeUrl": "https://www.ccdc.cam.ac.uk/", "institution": {"id": 2664, "name": "Cambridge Crystallographic Data Centre", "homeUrl": "https://www.ccdc.cam.ac.uk/", "description": "The Cambridge Crystallographic Data Centre (CCDC) is dedicated to the advancement of chemistry and crystallography through the provision of high quality scientific data services and software. It compiles and disseminates the Cambridge Structural Database, a trusted and comprehensive collection of curated small molecule crystal structure data.", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "PELNAW", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2677, "prefix": "geogeo", "mirId": "MIR:00000824", "name": "Geographical Entity Ontology", "pattern": "^GEO_[0-9]{9}$", "description": "An ontology and inventory of geopolitical entities such as nations and their components (states, provinces, districts, counties) and the actual physical territories over which they have jurisdiction. We thus distinguish and assign different identifiers to the US in \"The US declared war on Germany\" vs. the US in \"The plane entered US airspace\".", "created": "2021-05-30T10:17:36.624+0000", "modified": "2021-05-30T10:17:36.624+0000", "resources": [{"id": 2678, "mirId": "MIR:00000821", "urlPattern": "http://purl.obolibrary.org/obo/{$id}", "name": "University of Florida Biomedical Informatics Program", "description": "The biomedical informatics program at the University of Florida, hosted by both the UF Clinical and Translational Science Institute and the Department of Health Outcomes & Biomedical Informatics", "official": true, "providerCode": "obo", "sampleId": "GEO_000000021", "resourceHomeUrl": "https://github.com/ufbmi", "institution": {"id": 2676, "name": "University of Florida Biomedical Informatics Program", "homeUrl": "https://github.com/ufbmi", "description": "The biomedical informatics program at the University of Florida, hosted by both the UF Clinical and Translational Science Institute and the Department of Health Outcomes & Biomedical Informatics", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GEO_000000021", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 278, "prefix": "rhea", "mirId": "MIR:00000082", "name": "Rhea", "pattern": "^\\d{5}$", "description": " Rhea is an expert-curated knowledgebase of chemical and transport reactions of biological interest. Enzyme-catalyzed and spontaneously occurring reactions are curated from peer-reviewed literature and represented in a computationally tractable manner by using the ChEBI (Chemical Entities of Biological Interest) ontology to describe reaction participants.\n\nRhea covers the reactions described by the IUBMB Enzyme Nomenclature as well as many additional reactions and can be used for enzyme annotation, genome-scale metabolic modeling and omics-related analyses. Rhea is the standard for enzyme and transporter annotation in UniProtKB.", "created": "2019-06-11T14:15:55.126+0000", "modified": "2021-05-30T10:38:10.762+0000", "resources": [{"id": 280, "mirId": "MIR:00100113", "urlPattern": "https://registry.identifiers.org/deprecation/resources/MIR:00100113/{$id}", "name": "Rhea", "description": "Rhea", "official": true, "providerCode": "CURATOR_REVIEW", "sampleId": "10040", "resourceHomeUrl": "https://www.rhea-db.org/", "institution": {"id": 279, "name": "European Bioinformatics Institute and Swiss Institute of Bioinformatics", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": true, "deprecationDate": "2021-05-30T10:47:40.110+0000"}, {"id": 2683, "mirId": "MIR:00000827", "urlPattern": "https://www.rhea-db.org/rhea/{$id}", "name": "SIB Swiss Institute of Bioinformatics", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "official": false, "providerCode": "sib", "sampleId": "10040", "resourceHomeUrl": "https://www.rhea-db.org/", "institution": {"id": 1730, "name": "SIB Swiss Institute of Bioinformatics", "homeUrl": "https://www.sib.swiss", "description": "SIB provides bioinformatics services and resources for scientists and clinicians from academia and industry in Switzerland and worldwide.", "rorId": "https://ror.org/002n09z45", "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "12345", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2702, "prefix": "cellrepo", "mirId": "MIR:00000829", "name": "Cell Version Control Repository", "pattern": "^[0-9]+$", "description": "The Cell Version Control Repository is the single worldwide version control repository for engineered and natural cell lines", "created": "2021-06-24T15:54:23.109+0000", "modified": "2021-06-24T15:54:23.109+0000", "resources": [{"id": 2703, "mirId": "MIR:00000826", "urlPattern": "https://cellrepo.ico2s.org/repositories/{$id}", "name": "CellRepo", "description": "CellRepo is the single worldwide version control repository for engineered and natural cell lines", "official": true, "providerCode": "cellrepo", "sampleId": "82", "resourceHomeUrl": "https://cellrepo.ico2s.org/", "institution": {"id": 2701, "name": "Interdisciplinary Computing and Complex BioSystems (ICOS) Research Group, Newcastle University, Newcastle upon Tyne, UK", "homeUrl": "https://ico2s.org/", "description": "The mission of the ICOS group is to carry out ground breaking research at the interface of computing science and complex biological systems. We seek to create the next generation of algorithms that provide innovative solutions to problems arising in natural complex systems (e.g. in biology, chemistry, physics) as well as synthetic ones (e.g. in biological engineering, health care, software engineering) and derive new knowledge from them. To accomplish its mission, the group leverages its interdisciplinary expertise in Machine Intelligence, Complex Systems and Computational Biology and pursues collaborative activities with relevant stakeholders.", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "82", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2709, "prefix": "mlc", "mirId": "MIR:00000828", "name": "MLCommons Association", "pattern": "^[0-9a-zA-Z\\.\\-\\_]+$", "description": "MLCommons Association artifacts, including benchmark results, datasets, and saved models.", "created": "2021-06-24T16:02:06.844+0000", "modified": "2021-06-24T16:02:06.844+0000", "resources": [{"id": 2710, "mirId": "MIR:00000823", "urlPattern": "https://www.mlcommons.org/mlc-id/{$id}", "name": "MLCommons Association", "description": "The MLCommons Association is a non-profit founded to \"make ML better for everyone\" through benchmarks, public datasets, and best practices. The MLCommons board has representatives from Alibaba, Google, GraphCore, Facebook, Intel, Qualcomm, Myrtle.ai, NVIDIA, and a Harvard faculty member, and the organization has over 50 members consisting of companies and academics.", "official": true, "providerCode": "mlc", "sampleId": "0.7-123", "resourceHomeUrl": "https://mlcommons.org/en/", "institution": {"id": 2708, "name": "MLCommons Association", "homeUrl": "https://mlcommons.org/", "description": "The MLCommons Association is a non-profit founded to \"make ML better for everyone\" through benchmarks, public datasets, and best practices. The MLCommons board has representatives from Alibaba, Google, GraphCore, Facebook, Intel, Qualcomm, Myrtle.ai, NVIDIA, and a Harvard faculty member, and the organization has over 50 members consisting of companies and academics.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0.7-123", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2720, "prefix": "corrdb", "mirId": "MIR:00000831", "name": "CorrDB", "pattern": "^[0-9]+$", "description": "A genetic correlation is the proportion of shared variance between two traits that is due to genetic causes; a phenotypic correlation is the degree to which two traits co-vary among individuals in a population. In the genomics era, while gene expression, genetic association, and network analysis provide unprecedented means to decode the genetic basis of complex phenotypes, it is important to recognize the possible effects genetic progress in one trait can have on other traits. This database is designed to collect all published livestock genetic/phenotypic trait correlation data, aimed at facilitating genetic network analysis or systems biology studies.", "created": "2021-07-06T14:35:18.469+0000", "modified": "2021-07-06T14:35:18.469+0000", "resources": [{"id": 2721, "mirId": "MIR:00000825", "urlPattern": "https://www.animalgenome.org/CorrDB/q/?id=CorrID:{$id}", "name": "USA National Animal Genome Research Program", "description": "National Animal Genome Research Program, NAGRP Bioinformatics Coordination Project, supported by funding from the USDA-NRI (former CSREES), USA", "official": true, "providerCode": "CorrDB", "sampleId": "37232", "resourceHomeUrl": "https://www.animalgenome.org", "institution": {"id": 2558, "name": "Iowa State University", "homeUrl": "https://www.iastate.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04rswrd78' with Wikidata IDs [Q1136919], and ISNI IDs [0000 0004 1936 7312]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "37232", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2714, "prefix": "glyconavi", "mirId": "MIR:00000830", "name": "GlycoNAVI", "pattern": "^GN_[A-Za-z]*[_]*[A-Za-z0-9-:_]+$", "description": "GlycoNAVI is a website for carbohydrate research. It consists of the \"GlycoNAVI Database\" that provides information such as existence ratios and names of glycans, 3D structures of glycans and complex glycoconjugates, and the \"GlycoNAVI tools\" such as editing of 2D structures of glycans, glycan structure viewers, and conversion tools.", "created": "2021-06-28T19:11:39.342+0000", "modified": "2022-11-08T15:20:10.791+0000", "resources": [{"id": 2715, "mirId": "MIR:00000822", "urlPattern": "https://glyconavi.org/hub/?id={$id}", "name": "The Noguchi Institute", "description": "The Noguchi Institute is a research institute licensed as a public interest incorporated foundation. It conducts research and education related to glycans.", "official": true, "providerCode": "glyconavi", "sampleId": "GN_G03681DA", "resourceHomeUrl": "https://www.noguchi.or.jp/", "institution": {"id": 2713, "name": "The Noguchi Institute", "homeUrl": "https://www.noguchi.or.jp/", "description": "The Noguchi Institute is a research institute licensed as a public interest incorporated foundation. It conducts research and education related to glycans.", "rorId": null, "location": {"countryCode": "JP", "countryName": "Japan"}}, "location": {"countryCode": "JP", "countryName": "Japan"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GN_GlyTouCan_G03681DA", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2746, "prefix": "4dn", "mirId": "MIR:00000833", "name": "4D Nucleome", "pattern": "^4DN[A-Z]{2}[A-Z0-9]{7}$", "description": "The 4D Nucleome Data Portal hosts data generated by the 4DN Network and other reference nucleomics data sets. The 4D Nucleome Network aims to understand the principles underlying nuclear organization in space and time, the role nuclear organization plays in gene expression and cellular function, and how changes in nuclear organization affect normal development as well as various diseases.", "created": "2021-08-05T19:25:24.806+0000", "modified": "2021-08-05T19:25:24.806+0000", "resources": [{"id": 2747, "mirId": "MIR:00000832", "urlPattern": "https://data.4dnucleome.org/{$id}", "name": "4DN-DCIC (4D Nucleome Data Coordination and Integration Center)", "description": "4D Nucleome Data Coordination and Integration Center at the Department of Biomedical Informatics, Harvard Medical School", "official": true, "providerCode": "4dn", "sampleId": "4DNES265ETYQ", "resourceHomeUrl": "https://data.4dnucleome.org/", "institution": {"id": 2745, "name": "Harvard Medical School", "homeUrl": "https://hms.harvard.edu/", "description": "Since the School was established in 1782, faculty members have improved human health by innovating in their roles as physicians, mentors and scholars. They\u2019ve piloted educational models, developed new curricula to address emerging needs in health care, and produced thousands of leaders and compassionate caregivers who are shaping the fields of science and medicine throughout the world with their expertise and passion.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4DNES265ETYQ", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2751, "prefix": "civic.aid", "mirId": "MIR:00000835", "name": "CIViC Assertion", "pattern": "^[0-9]+$", "description": "A CIViC assertion classifies the clinical significance of a variant-disease relationship under recognized guidelines. The CIViC Assertion (AID) summarizes a collection of Evidence Items (EIDs) that covers predictive/therapeutic, diagnostic, prognostic or predisposing clinical information for a variant in a specific cancer context. CIViC currently has two main types of Assertions: those based on variants of primarily somatic origin (predictive/therapeutic, prognostic, and diagnostic) and those based on variants of primarily germline origin (predisposing). When the number and quality of Predictive, Prognostic, Diagnostic or Predisposing Evidence Items (EIDs) in CIViC sufficiently cover what is known for a particular variant and cancer type, then a corresponding assertion be created in CIViC.", "created": "2021-08-05T19:47:08.870+0000", "modified": "2021-08-05T19:47:08.870+0000", "resources": [{"id": 2752, "mirId": "MIR:00000834", "urlPattern": "https://civicdb.org/links/assertions/{$id}", "name": "Clinical Interpretation of Variants in Cancer (CIViC)", "description": "CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer.", "official": true, "providerCode": "civicdb", "sampleId": "3", "resourceHomeUrl": "https://civicdb.org/", "institution": {"id": 2750, "name": "Washington University in St. Louis", "homeUrl": "https://wustl.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01yc7t268' with Wikidata IDs [Q777403], and ISNI IDs [0000 0001 2355 7002]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2756, "prefix": "nmdc", "mirId": "MIR:00000837", "name": "National Microbiome Data Collaborative", "pattern": "^[A-Za-z0-9._~\\-\\:]+$", "description": "The National Microbiome Data Collaborative (NMDC) is an initiative to empower the research community to harness microbiome data exploration and discovery through a collaborative integrative data science ecosystem.", "created": "2021-08-05T19:51:36.087+0000", "modified": "2021-08-05T19:51:36.087+0000", "resources": [{"id": 2757, "mirId": "MIR:00000836", "urlPattern": "https://drs.microbiomedata.org/objects/{$id}", "name": "Lawrence Berkeley National Laboratory", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/02jbv0t02' with Wikidata IDs [Q1133630,Q4686229], and ISNI IDs [0000 0001 2231 4551]", "official": true, "providerCode": "nmdc", "sampleId": "6m4e-1vbv-03", "resourceHomeUrl": "https://ror.org/02jbv0t02", "institution": {"id": 2755, "name": "Lawrence Berkeley National Laboratory", "homeUrl": "https://ror.org/02jbv0t02", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/02jbv0t02' with Wikidata IDs [Q1133630,Q4686229], and ISNI IDs [0000 0001 2231 4551]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "6m4e-1vbv-03", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2784, "prefix": "civic.eid", "mirId": "MIR:00000839", "name": "CIViC Evidence", "pattern": "^[0-9]+$", "description": "Evidence Items are the central building block of the Clinical Interpretation of Variants in Cancer (CIViC) knowledgebase. The clinical Evidence Item is a piece of information that has been manually curated from trustable medical literature about a Variant or genomic \u2018event\u2019 that has implications in cancer Predisposition, Diagnosis (aka molecular classification), Prognosis, Predictive response to therapy, Oncogenicity or protein Function. For example, an Evidence Item might describe a line of evidence supporting the notion that tumors with a somatic BRAF V600 mutation generally respond well to the drug dabrafenib. A Variant may be a single nucleotide substitution, a small insertion or deletion, an RNA gene fusion, a chromosomal rearrangement, an RNA expression pattern (e.g. over-expression), etc. Each clinical Evidence statement corresponds to a single citable Source (a publication or conference abstract).", "created": "2021-08-08T09:28:56.816+0000", "modified": "2021-08-08T09:28:56.816+0000", "resources": [{"id": 2785, "mirId": "MIR:00000838", "urlPattern": "https://civicdb.org/links/evidence/{$id}", "name": "Clinical Interpretation of Variants in Cancer (CIViC)", "description": "CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer.", "official": true, "providerCode": "civicdb", "sampleId": "1199", "resourceHomeUrl": "https://civicdb.org/", "institution": {"id": 2750, "name": "Washington University in St. Louis", "homeUrl": "https://wustl.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01yc7t268' with Wikidata IDs [Q777403], and ISNI IDs [0000 0001 2355 7002]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1199", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2789, "prefix": "sedml.format", "mirId": "MIR:00000841", "name": "SED-ML data format", "pattern": "^[a-z]+(\\..*?)?$", "description": "Data format that can be used in conjunction with the Simulation Experimental Description Markup Language (SED-ML).", "created": "2021-08-08T09:33:59.109+0000", "modified": "2021-08-08T09:33:59.109+0000", "resources": [{"id": 2790, "mirId": "MIR:00000840", "urlPattern": "https://sed-ml.org/urns.html#format:{$id}", "name": "SED-ML Editors", "description": "Editorial board responsible for defining the Simulation Experimental Description Markup Language (SED-ML).", "official": true, "providerCode": "sedml", "sampleId": "csv", "resourceHomeUrl": "http://sed-ml.org/", "institution": {"id": 2788, "name": "SED-ML Editors", "homeUrl": "http://sed-ml.org/", "description": "Editorial board responsible for defining the Simulation Experimental Description Markup Language (SED-ML).", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "csv", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2792, "prefix": "sedml.language", "mirId": "MIR:00000843", "name": "SED-ML model format", "pattern": "^[a-z]+(\\..*?)?$", "description": "Model format that can be used in conjunction with the Simulation Experimental Description Markup Language (SED-ML).", "created": "2021-08-08T09:34:23.184+0000", "modified": "2021-08-08T09:34:23.184+0000", "resources": [{"id": 2793, "mirId": "MIR:00000842", "urlPattern": "https://sed-ml.org/urns.html#language:{$id}", "name": "SED-ML Editors", "description": "Editorial board responsible for defining the Simulation Experimental Description Markup Language (SED-ML).", "official": true, "providerCode": "sedml", "sampleId": "sbml.level-3.version-2", "resourceHomeUrl": "http://sed-ml.org/", "institution": {"id": 2788, "name": "SED-ML Editors", "homeUrl": "http://sed-ml.org/", "description": "Editorial board responsible for defining the Simulation Experimental Description Markup Language (SED-ML).", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "sbml.level-3.version-2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2796, "prefix": "pmr", "mirId": "MIR:00000845", "name": "Physiome Model Repository", "pattern": "^[a-z0-9]{32,32}$", "description": "Resource for the community to store, retrieve, search, reference, and reuse CellML models.", "created": "2021-08-08T09:39:33.533+0000", "modified": "2021-08-08T09:39:33.533+0000", "resources": [{"id": 2797, "mirId": "MIR:00000844", "urlPattern": "https://models.physiomeproject.org/exposure/{$id}", "name": "University of Auckland", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03b94tp07' with Wikidata IDs [Q492467], and ISNI IDs [0000 0004 0372 3343]", "official": true, "providerCode": "abi", "sampleId": "ebf69ca24298b28b2361e7d43eb52d6c", "resourceHomeUrl": "https://www.auckland.ac.nz/en.html", "institution": {"id": 2795, "name": "University of Auckland", "homeUrl": "https://www.auckland.ac.nz/en.html", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03b94tp07' with Wikidata IDs [Q492467], and ISNI IDs [0000 0004 0372 3343]", "rorId": null, "location": {"countryCode": "NZ", "countryName": "New Zealand"}}, "location": {"countryCode": "NZ", "countryName": "New Zealand"}, "deprecated": false, "deprecationDate": null}], "sampleId": "ebf69ca24298b28b2361e7d43eb52d6c", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2800, "prefix": "funderregistry", "mirId": "MIR:00000847", "name": "FunderRegistry", "pattern": "^\\d{9,9}$", "description": "The Funder Registry is an open registry of persistent identifiers for grant-giving organizations around the world.", "created": "2021-08-08T09:41:19.080+0000", "modified": "2021-08-08T09:41:19.080+0000", "resources": [{"id": 2801, "mirId": "MIR:00000846", "urlPattern": "http://data.crossref.org/fundingdata/funder/10.13039/{$id}", "name": "Crossref", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/02twcfp32' with Wikidata IDs [Q5188229], and ISNI IDs [0000 0004 0506 2673]", "official": true, "providerCode": "crossref", "sampleId": "100000001", "resourceHomeUrl": "https://www.crossref.org/", "institution": {"id": 2799, "name": "Crossref", "homeUrl": "https://www.crossref.org/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/02twcfp32' with Wikidata IDs [Q5188229], and ISNI IDs [0000 0004 0506 2673]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "100000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2804, "prefix": "linguist", "mirId": "MIR:00000849", "name": "Linguist", "pattern": "^[a-zA-Z0-9 +#'*]+$", "description": "Registry of programming languages for the Linguist program for detecting and highlighting programming languages.", "created": "2021-08-08T09:42:52.720+0000", "modified": "2021-08-08T09:42:52.720+0000", "resources": [{"id": 2805, "mirId": "MIR:00000848", "urlPattern": "https://raw.githubusercontent.com/github/linguist/master/lib/linguist/languages.yml#{$id}", "name": "GitHub, Inc.", "description": "GitHub, Inc. is a provider of Internet hosting for software development and version control using Git.", "official": true, "providerCode": "github", "sampleId": "Python", "resourceHomeUrl": "https://github.com/", "institution": {"id": 2803, "name": "GitHub, Inc.", "homeUrl": "https://github.com/", "description": "GitHub, Inc. is a provider of Internet hosting for software development and version control using Git.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Python", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2807, "prefix": "sio", "mirId": "MIR:00000851", "name": "Semanticscience Integrated Ontology", "pattern": "^SIO_\\d{6,6}$", "description": "The semanticscience integrated ontology (SIO) provides a simple, integrated upper level ontology (types, relations) for consistent knowledge representation across physical, processual and informational entities.", "created": "2021-08-08T09:47:01.408+0000", "modified": "2021-08-08T09:47:01.408+0000", "resources": [{"id": 2808, "mirId": "MIR:00000850", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/sio/terms?short_form={$id}", "name": "European Bioinformatics Institute", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "official": true, "providerCode": "ols", "sampleId": "SIO_000276", "resourceHomeUrl": "https://www.ebi.ac.uk", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "SIO_000276", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2810, "prefix": "github", "mirId": "MIR:00000853", "name": "github", "pattern": "^[a-zA-Z0-9-_]+/[a-zA-Z0-9-_]+$", "description": "GitHub is an online host of Git source code repositories.", "created": "2021-08-08T09:49:13.100+0000", "modified": "2021-08-08T09:49:13.100+0000", "resources": [{"id": 2811, "mirId": "MIR:00000852", "urlPattern": "https://github.com/{$id}", "name": "GitHub, Inc.", "description": "GitHub, Inc. is a provider of Internet hosting for software development and version control using Git.", "official": true, "providerCode": "github", "sampleId": "identifiers-org/registry", "resourceHomeUrl": "https://github.com/", "institution": {"id": 2803, "name": "GitHub, Inc.", "homeUrl": "https://github.com/", "description": "GitHub, Inc. is a provider of Internet hosting for software development and version control using Git.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "identifiers-org/registry", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2813, "prefix": "datanator.reaction", "mirId": "MIR:00000855", "name": "Datanator Reaction", "pattern": "^.*?--%3E.*?$", "description": "\tDatanator is an integrated database of genomic and biochemical data designed to help investigators find data about specific molecules and reactions in specific organisms and specific environments for meta-analyses and mechanistic models. Datanator currently includes metabolite concentrations, RNA modifications and half-lives, protein abundances and modifications, and reaction kinetics integrated from several databases and numerous publications. The Datanator website and REST API provide tools for extracting clouds of data about specific molecules and reactions in specific organisms and specific environments, as well as data about similar molecules and reactions in taxonomically similar organisms.", "created": "2021-08-08T09:56:43.759+0000", "modified": "2021-08-08T13:31:35.848+0000", "resources": [{"id": 2814, "mirId": "MIR:00000854", "urlPattern": "https://datanator.info/reaction/{$id}", "name": "Icahn School of Medicine at Mount Sinai", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04a9tmd77' with Wikidata IDs [Q1950740], and ISNI IDs [0000 0001 0670 2351]", "official": true, "providerCode": "datanator.reaction", "sampleId": "XLYOFNOQVPJJNP-UHFFFAOYSA-N,NBSCHQHZLSJFNQ-GASJEMHNSA-N--%3ENBIIXXVUZAFLBC-UHFFFAOYSA-N,WQZGKKKJIJFFOK-GASJEMHNSA-N", "resourceHomeUrl": "https://icahn.mssm.edu/", "institution": {"id": 2247, "name": "Icahn School of Medicine at Mount Sinai", "homeUrl": "https://icahn.mssm.edu/", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "XLYOFNOQVPJJNP-UHFFFAOYSA-N,NBSCHQHZLSJFNQ-GASJEMHNSA-N--%3ENBIIXXVUZAFLBC-UHFFFAOYSA-N,WQZGKKKJIJFFOK-GASJEMHNSA-N", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2844, "prefix": "identifiers.namespace", "mirId": "MIR:00000859", "name": "Identifiers.org namespace", "pattern": "^[a-z_\\.]+$", "description": "Identifiers.org is an established resolving system that enables the referencing of data for the scientific community, with a current focus on the Life Sciences domain.", "created": "2021-09-05T17:52:59.264+0000", "modified": "2021-09-05T17:52:59.264+0000", "resources": [{"id": 2845, "mirId": "MIR:00000858", "urlPattern": "https://registry.identifiers.org/registry/{$id}", "name": "European Bioinformatics Institute", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "official": true, "providerCode": "ebi", "sampleId": "pubmed", "resourceHomeUrl": "https://www.ebi.ac.uk", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "pubmed", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2821, "prefix": "dg.4dfc", "mirId": "MIR:00000857", "name": "NCI Data Commons Framework Services", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "created": "2021-08-09T15:20:17.184+0000", "modified": "2021-08-09T15:20:17.184+0000", "resources": [{"id": 2822, "mirId": "MIR:00000856", "urlPattern": "https://nci-crdc.datacommons.io/ga4gh/drs/v1/objects/{$id}", "name": "NCI Data Commons Framework Services", "description": "DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "official": true, "providerCode": "dg.4dfc", "sampleId": "81944ba1-81d0-436e-8552-33d77a27834b", "resourceHomeUrl": "https://nci-crdc.datacommons.io/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "81944ba1-81d0-436e-8552-33d77a27834b", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2848, "prefix": "re3data", "mirId": "MIR:00000861", "name": "re3data", "pattern": "^r3d\\d{9,9}$", "description": "Re3data is a global registry of research data repositories that covers research data repositories from different academic disciplines.", "created": "2021-09-05T17:53:47.458+0000", "modified": "2021-09-05T17:53:47.458+0000", "resources": [{"id": 2849, "mirId": "MIR:00000860", "urlPattern": "https://www.re3data.org/repository/{$id}", "name": "DataCite", "description": "DataCite is a leading global non-profit organisation that provides persistent identifiers (DOIs) for research data and other research outputs.", "official": true, "providerCode": "datacite", "sampleId": "r3d100010772", "resourceHomeUrl": "https://datacite.org", "institution": {"id": 2847, "name": "DataCite", "homeUrl": "https://datacite.org", "description": "DataCite is a leading global non-profit organisation that provides persistent identifiers (DOIs) for research data and other research outputs.", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "r3d100010772", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2852, "prefix": "pypi", "mirId": "MIR:00000863", "name": "PyPI", "pattern": "^[a-zA-Z_][a-zA-Z0-9\\-_]+$", "description": "The Python Package Index (PyPI) is a repository for Python packages.", "created": "2021-09-05T17:54:24.640+0000", "modified": "2021-09-05T17:54:24.640+0000", "resources": [{"id": 2853, "mirId": "MIR:00000862", "urlPattern": "https://pypi.org/project/{$id}/", "name": "Python Software Foundation", "description": "The Python Software Foundation (PSF) is a 501(c)(3) non-profit corporation that holds the intellectual property rights behind the Python programming language.", "official": true, "providerCode": "psf", "sampleId": "numpy", "resourceHomeUrl": "https://www.python.org/psf/", "institution": {"id": 2851, "name": "Python Software Foundation", "homeUrl": "https://www.python.org/psf/", "description": "The Python Software Foundation (PSF) is a 501(c)(3) non-profit corporation that holds the intellectual property rights behind the Python programming language.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "numpy", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2857, "prefix": "iedb", "mirId": "MIR:00000865", "name": "Immune Epitope Database (IEDB)", "pattern": "^[0-9]+$", "description": "The Immune Epitope Database (IEDB) is a freely available resource funded by NIAID. It catalogs experimental data on antibody and T cell epitopes studied in humans, non-human primates, and other animal species in the context of infectious disease, allergy, autoimmunity and transplantation. The IEDB also hosts tools to assist in the prediction and analysis of epitopes.", "created": "2021-09-05T17:58:19.858+0000", "modified": "2021-09-05T17:58:19.858+0000", "resources": [{"id": 2858, "mirId": "MIR:00000864", "urlPattern": "https://www.iedb.org/reference/{$id}", "name": "La Jolla Institute for Immunology", "description": "La Jolla Institute for Immunology is a non-profit\nresearch organization located in La Jolla, California. The Institute\nresearches immunology and immune system diseases. The institute was\nfounded in 1988. La Jolla Institute for Immunology is a collaborative\nresearch organization that has forged many partnerships within the\nresearch community in San Diego, across the United States, and abroad.", "official": true, "providerCode": "lji", "sampleId": "1038233", "resourceHomeUrl": "https://www.lji.org/", "institution": {"id": 2856, "name": "La Jolla Institute for Immunology", "homeUrl": "https://www.lji.org/", "description": "La Jolla Institute for Immunology is a non-profit\nresearch organization located in La Jolla, California. The Institute\nresearches immunology and immune system diseases. The institute was\nfounded in 1988. La Jolla Institute for Immunology is a collaborative\nresearch organization that has forged many partnerships within the\nresearch community in San Diego, across the United States, and abroad.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1038233", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2862, "prefix": "lgai.cede", "mirId": "MIR:00000867", "name": "LG Chemical Entity Detection Dataset (LGCEDe)", "pattern": "^LGCEDe-S-\\d{9}$", "description": "LG Chemical Entity Detection Dataset (LGCEDe) is only available open-dataset with molecular instance level annotations (i.e. atom-bond level position annotations within an image) for molecular structure images. This dataset was designed to encourage research on detection-based pipelines for Optical Chemical Structure Recognition (OCSR).", "created": "2021-09-05T18:01:14.906+0000", "modified": "2021-09-05T18:01:14.906+0000", "resources": [{"id": 2863, "mirId": "MIR:00000866", "urlPattern": "https://s3.us-east-2.amazonaws.com/lg.cede/{$id}", "name": "LG AI Research", "description": "LG AI Research is a subsidiary of the Korean Corporation LG. Mainly focuses on research related to Artificial Intelligence, Big data and data-driven applications to real-world problems.", "official": true, "providerCode": "lgai.cede", "sampleId": "LGCEDe-S-000002244", "resourceHomeUrl": "https://www.lgresearch.ai", "institution": {"id": 2861, "name": "LG AI Research", "homeUrl": "https://www.lgresearch.ai", "description": "LG AI Research is a subsidiary of the Korean Corporation LG. Mainly focuses on research related to Artificial Intelligence, Big data and data-driven applications to real-world problems.", "rorId": null, "location": {"countryCode": "KR", "countryName": "Korea, Republic of"}}, "location": {"countryCode": "KR", "countryName": "Korea, Republic of"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LGCEDe-S-000002244", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2881, "prefix": "dg.4503", "mirId": "MIR:00000869", "name": "BioData Catalyst", "pattern": "[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "Full implementation of the DRS 1.1 standard with support for persistent identifiers. Open source DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "created": "2021-09-29T19:10:32.057+0000", "modified": "2021-09-29T19:10:32.057+0000", "resources": [{"id": 2882, "mirId": "MIR:00000868", "urlPattern": "https://gen3.biodatacatalyst.nhlbi.nih.gov/ga4gh/drs/v1/objects/{$id}", "name": "BioData Catalyst", "description": "Full implementation of the DRS 1.1 standard with support for persistent identifiers. Open source DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "official": true, "providerCode": "dg.4503", "sampleId": "0000ffeb-36e0-4a29-b21d-84423bda979d", "resourceHomeUrl": "https://gen3.biodatacatalyst.nhlbi.nih.gov", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000ffeb-36e0-4a29-b21d-84423bda979d", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2884, "prefix": "dg.anv0", "mirId": "MIR:00000871", "name": "Anvil", "pattern": "[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}", "description": "DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "created": "2021-09-29T19:11:14.294+0000", "modified": "2021-09-29T19:11:14.294+0000", "resources": [{"id": 2885, "mirId": "MIR:00000870", "urlPattern": "https://gen3.theanvil.io/ga4gh/drs/v1/objects/{$id}", "name": "Anvil", "description": "DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "official": true, "providerCode": "dg.anv0", "sampleId": "00077f1c-c45a-47ba-8e6c-1bf6b6b43fce", "resourceHomeUrl": "https://gen3.theanvil.io", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00077f1c-c45a-47ba-8e6c-1bf6b6b43fce", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2892, "prefix": "dg.6vts", "mirId": "MIR:00000876", "name": "JCOIN", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "Full implementation of the DRS 1.1 standard with support for persistent identifiers. Open source DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "created": "2021-09-29T19:13:19.448+0000", "modified": "2021-09-29T19:13:19.448+0000", "resources": [{"id": 2893, "mirId": "MIR:00000875", "urlPattern": "https://jcoin.datacommons.io/ga4gh/drs/v1/objects/{$id}", "name": "JCOIN", "description": "Full implementation of the DRS 1.1 standard with support for persistent identifiers. Open source DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "official": true, "providerCode": "dg.6vts", "sampleId": "2afacf00-9a1d-4d80-8c32-69d3923d3913", "resourceHomeUrl": "https://jcoin.datacommons.io", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2afacf00-9a1d-4d80-8c32-69d3923d3913", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2896, "prefix": "uniref", "mirId": "MIR:00000878", "name": "UniRef", "pattern": "^UniRef(100|90|50)_([OPQ][0-9][A-Z0-9]{3}[0-9]|[A-NR-Z][0-9]([A-Z][A-Z0-9]{2}[0-9]){1,2}|UPI[A-F0-9]{10})$", "description": "The UniProt Reference Clusters (UniRef) provide clustered sets of sequences from the UniProt Knowledgebase (including isoforms) and selected UniParc records in order to obtain complete coverage of the sequence space at several resolutions while hiding redundant sequences (but not their descriptions) from view.", "created": "2021-09-29T19:13:56.614+0000", "modified": "2021-09-29T19:13:56.614+0000", "resources": [{"id": 2897, "mirId": "MIR:00000877", "urlPattern": "https://www.uniprot.org/uniref/{$id}", "name": "UniProt Consortium", "description": "UniProt is a collaboration between the European Bioinformatics Institute (EMBL-EBI), the SIB Swiss Institute of Bioinformatics and the Protein Information Resource (PIR)", "official": true, "providerCode": "uniref", "sampleId": "UniRef90_P00750", "resourceHomeUrl": "https://www.uniprot.org/", "institution": {"id": 24, "name": "UniProt Consortium", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "UniRef90_P00750", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2903, "prefix": "biosimulations", "mirId": "MIR:00000880", "name": "biosimulations", "pattern": "^[a-zA-Z0-9_-]{3,}$", "description": "BioSimulations is an open repository of simulation projects, including simulation experiments, their results, and data visualizations of their results. BioSimulations supports a broad range of model languages, modeling frameworks, simulation algorithms, and simulation software tools.", "created": "2021-10-11T12:50:59.916+0000", "modified": "2021-10-11T12:50:59.916+0000", "resources": [{"id": 2904, "mirId": "MIR:00000879", "urlPattern": "https://biosimulations.org/projects/{$id}", "name": "Icahn School of Medicine at Mount Sinai", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/04a9tmd77' with Wikidata IDs [Q1950740], and ISNI IDs [0000 0001 0670 2351]", "official": true, "providerCode": "icahn", "sampleId": "Yeast-cell-cycle-Irons-J-Theor-Biol-2009", "resourceHomeUrl": "https://icahn.mssm.edu/", "institution": {"id": 2247, "name": "Icahn School of Medicine at Mount Sinai", "homeUrl": "https://icahn.mssm.edu/", "description": "The Icahn School of Medicine at Mount Sinai is an international leader in medical and scientific training, biomedical research, and patient care. It is the medical school for the Mount Sinai Health System, which includes eight hospital campuses, and has more than 5,000 faculty and nearly 2,000 students, residents and fellows.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "Yeast-cell-cycle-Irons-J-Theor-Biol-2009", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2929, "prefix": "assembly", "mirId": "MIR:00000884", "name": "Assembly", "pattern": "^[a-zA-Z0-9_\\.]+$", "description": "A database providing information on the structure of assembled genomes, assembly names and other meta-data, statistical reports, and links to genomic sequence data.", "created": "2021-10-17T10:22:37.356+0000", "modified": "2021-10-17T10:22:37.356+0000", "resources": [{"id": 2930, "mirId": "MIR:00000883", "urlPattern": "https://www.ncbi.nlm.nih.gov/assembly/{$id}", "name": "National Center for Biotechnology Information", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "official": true, "providerCode": "ncbi", "sampleId": "GCF_000005845.2", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "GCF_000005845.2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2926, "prefix": "nucleotide", "mirId": "MIR:00000882", "name": "Nucleotide", "pattern": "^[a-zA-Z0-9_\\.]+$", "description": "The Nucleotide database is a collection of sequences from several sources, including GenBank, RefSeq, TPA and PDB. Genome, gene and transcript sequence data provide the foundation for biomedical research and discovery.", "created": "2021-10-17T10:21:25.826+0000", "modified": "2021-10-17T10:24:40.143+0000", "resources": [{"id": 2927, "mirId": "MIR:00000881", "urlPattern": "https://www.ncbi.nlm.nih.gov/nuccore/{$id}", "name": "National Center for Biotechnology Information", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "official": true, "providerCode": "ncbi", "sampleId": "880798137", "resourceHomeUrl": "https://www.ncbi.nlm.nih.gov/", "institution": {"id": 26, "name": "National Center for Biotechnology Information", "homeUrl": "https://www.ncbi.nlm.nih.gov/", "description": "The National Center for Biotechnology Information advances science and health by providing access to biomedical and genomic information.", "rorId": "https://ror.org/02meqm098", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "880798137", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2969, "prefix": "dg.f82a1a", "mirId": "MIR:00000887", "name": "Kids First", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "Full implementation of the DRS 1.1 standard with support for persistent identifiers. Open source DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "created": "2021-11-01T17:49:13.981+0000", "modified": "2021-11-01T17:49:13.981+0000", "resources": [{"id": 2970, "mirId": "MIR:00000886", "urlPattern": "https://data.kidsfirstdrc.org/ga4gh/drs/v1/objects/{$id}", "name": "Kids First", "description": "Full implementation of the DRS 1.1 standard with support for persistent identifiers. Open source DRS server that follows the Gen3 implementation. Gen3 is a GA4GH compliant open source platform for developing framework services and data commons. Data commons accelerate and democratize the process of scientific discovery, especially over large or complex datasets. Gen3 is maintained by the Center for Translational Data Science at the University of Chicago. https://gen3.org", "official": true, "providerCode": "dg.f82a1a", "sampleId": "00026f50-858a-446b-8ed9-b0e3ecd7b20e", "resourceHomeUrl": "https://kidsfirstdrc.org", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00026f50-858a-446b-8ed9-b0e3ecd7b20e", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2986, "prefix": "bbtp", "mirId": "MIR:00000889", "name": "Blue Brain Project Topological sampling Knowledge Graph", "pattern": "\\b[0-9a-f]{8}\\b-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-\\b[0-9a-f]{12}\\b", "description": "Input data and analysis results for the paper \"Topology of synaptic connectivity constrains neuronal stimulus representation, predicting two complementary coding strategies (https://www.biorxiv.org/content/10.1101/2020.11.02.363929v2 ).", "created": "2022-01-09T18:52:31.186+0000", "modified": "2022-01-09T18:52:31.186+0000", "resources": [{"id": 2987, "mirId": "MIR:00000888", "urlPattern": "https://bbp.epfl.ch/nexus/web/studios/public/topological-sampling/studios/data:{$id}", "name": "Blue Brain Project, EPFL", "description": "The goal of the Blue Brain Project is to build biologically detailed digital reconstructions and simulations of the mouse brain.", "official": true, "providerCode": "bbp", "sampleId": "f0ba2f3e-aa6f-4264-8d18-8ee65cf6f61a", "resourceHomeUrl": "https://portal.bluebrain.epfl.ch", "institution": {"id": 2985, "name": "Blue Brain Project, EPFL", "homeUrl": "https://portal.bluebrain.epfl.ch", "description": "The goal of the Blue Brain Project is to build biologically detailed digital reconstructions and simulations of the mouse brain.", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "f0ba2f3e-aa6f-4264-8d18-8ee65cf6f61a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2991, "prefix": "fcb", "mirId": "MIR:00000891", "name": "the FAIR Cookbook", "pattern": "^FCB\\d{3}", "description": "Created by researchers and data managers professionals, the FAIR Cookbook is an online resource for the Life Sciences with recipes that help you to make and keep data Findable, Accessible, Interoperable, and Reusable (FAIR).\n\n", "created": "2022-01-09T18:54:14.401+0000", "modified": "2022-01-09T18:54:14.401+0000", "resources": [{"id": 2992, "mirId": "MIR:00000890", "urlPattern": "https://w3id.org/faircookbook/{$id}", "name": "Permanent Identifiers for the Web", "description": "The purpose of this website is to provide a secure, permanent URL re-direction service for Web applications. This service is run by the W3C Permanent Identifier Community Group.\nWeb applications that deal with Linked Data often need to specify and use URLs that are very stable. They utilize services such as this one to ensure that applications using their URLs will always be re-directed to a working website. This website operates like a switchboard, connecting requests for information with the true location of the information on the Web. The switchboard can be reconfigured to point to a new location if the old location stops working.\n\n", "official": true, "providerCode": "fcb", "sampleId": "FCB005", "resourceHomeUrl": "https://w3id.org", "institution": {"id": 2990, "name": "University of Oxford", "homeUrl": "https://www.ox.ac.uk/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/052gg0110' with Wikidata IDs [Q34433,Q5260389,Q56612600,Q7529574,Q6786826,Q1095537], and ISNI IDs [0000 0004 1936 8948]", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "FCB005", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2995, "prefix": "vcell", "mirId": "MIR:00000893", "name": "VCell Published Models", "pattern": "^\\d{5,}$", "description": "Models developed with the Virtual Cell (VCell) software prorgam.", "created": "2022-01-09T18:57:18.476+0000", "modified": "2022-01-09T18:57:18.476+0000", "resources": [{"id": 2996, "mirId": "MIR:00000892", "urlPattern": "https://vcell.org/biomodel-{$id}", "name": "University of Connecticut Health Center", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/02kzs4y22' with Wikidata IDs [Q7895298], and ISNI IDs [0000000419370394]", "official": true, "providerCode": "uchc", "sampleId": "201022999", "resourceHomeUrl": "https://health.uconn.edu/", "institution": {"id": 2994, "name": "University of Connecticut Health Center", "homeUrl": "https://health.uconn.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/02kzs4y22' with Wikidata IDs [Q7895298], and ISNI IDs [0000000419370394]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "201022999", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2999, "prefix": "dg.5b0d", "mirId": "MIR:00000895", "name": "BloodPAC", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The Blood Profiling Atlas in Cancer (BloodPAC) supports the management, analysis and sharing of liquid biopsy data for the oncology research community and aims to accelerate discovery and development of therapies, diagnostic tests, and other technologies for cancer treatment and prevention. The data commons supports cross-project analyses by harmonizing data from different projects through the collaborative development of a data dictionary, providing an API for data queries and download, and providing a cloud-based analysis workspace with rich tools and resources.", "created": "2022-01-09T18:59:10.775+0000", "modified": "2022-01-09T18:59:10.775+0000", "resources": [{"id": 3000, "mirId": "MIR:00000894", "urlPattern": "https://data.bloodpac.org/ga4gh/drs/v1/objects/{$id}", "name": "BloodPAC", "description": "The Blood Profiling Atlas in Cancer (BloodPAC) supports the management, analysis and sharing of liquid biopsy data for the oncology research community and aims to accelerate discovery and development of therapies, diagnostic tests, and other technologies for cancer treatment and prevention. The data commons supports cross-project analyses by harmonizing data from different projects through the collaborative development of a data dictionary, providing an API for data queries and download, and providing a cloud-based analysis workspace with rich tools and resources.", "official": true, "providerCode": "dg.5b0d", "sampleId": "00000d53-99bc-4d3e-8ed7-6dc358baccb7", "resourceHomeUrl": "https://data.bloodpac.org/.", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00000d53-99bc-4d3e-8ed7-6dc358baccb7", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3009, "prefix": "bitbucket", "mirId": "MIR:00000899", "name": "Bitbucket", "pattern": "^[0-9A-Za-z-_\\.]+/[0-9A-Za-z-_\\.]+$", "description": "Bitbucket is a Git-based source code repository hosting service owned by Atlassian.", "created": "2022-01-09T19:35:12.259+0000", "modified": "2022-01-09T19:35:12.259+0000", "resources": [{"id": 3010, "mirId": "MIR:00000896", "urlPattern": "https://bitbucket.org/{$id}", "name": "Atlassian", "description": "Atlassian Corporation Plc is an Australian software company that develops products for software developers, project managers and other software development teams.", "official": true, "providerCode": "atlassian", "sampleId": "andreadega/systems-biology-compiler", "resourceHomeUrl": "https://www.atlassian.com/", "institution": {"id": 3008, "name": "Atlassian", "homeUrl": "https://www.atlassian.com/", "description": "Atlassian Corporation Plc is an Australian software company that develops products for software developers, project managers and other software development teams.", "rorId": "https://ror.org/00y7n3708", "location": {"countryCode": "AU", "countryName": "Australia"}}, "location": {"countryCode": "AU", "countryName": "Australia"}, "deprecated": false, "deprecationDate": null}], "sampleId": "andreadega/systems-biology-compiler", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3020, "prefix": "bbkg", "mirId": "MIR:00000903", "name": "Blue Brain Project Knowledge Graph", "pattern": "^[-\\w]+(?:\\/[-\\w]+)(?:\\/\\b[0-9a-f]{8}\\b-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-\\b[0-9a-f]{12}\\b)$", "description": "Blue Brain Project's published data as knowledge graphs and Web Studios.", "created": "2022-01-10T18:54:31.118+0000", "modified": "2022-01-10T18:54:31.118+0000", "resources": [{"id": 3021, "mirId": "MIR:00000902", "urlPattern": "https://bbp.epfl.ch/nexus/web/studios/public/{$id}", "name": "Blue Brain Project, EPFL", "description": "The goal of the Blue Brain Project is to build biologically detailed digital reconstructions and simulations of the mouse brain.", "official": true, "providerCode": "bbkg", "sampleId": "topological-sampling/studios/f0ba2f3e-aa6f-4264-8d18-8ee65cf6f61a", "resourceHomeUrl": "https://portal.bluebrain.epfl.ch", "institution": {"id": 2985, "name": "Blue Brain Project, EPFL", "homeUrl": "https://portal.bluebrain.epfl.ch", "description": "The goal of the Blue Brain Project is to build biologically detailed digital reconstructions and simulations of the mouse brain.", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "topological-sampling/studios/f0ba2f3e-aa6f-4264-8d18-8ee65cf6f61a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3146, "prefix": "dg.80b6", "mirId": "MIR:00000919", "name": "GenoMEL Data Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The GenoMEL data commons supports the management, analysis and sharing of next generation sequencing data for the GenoMEL research community and aims to accelerate opportunities for discovery of susceptibility genes for melanoma. The data commons supports cross-project analyses by harmonizing data from different projects through the development of a data dictionary and utilization of common workflows, providing an API for data queries, and providing a cloud-based analysis workspace with rich tools and resources.", "created": "2022-02-27T20:31:14.555+0000", "modified": "2022-02-27T20:31:14.555+0000", "resources": [{"id": 3147, "mirId": "MIR:00000918", "urlPattern": "https://genomel.bionimbus.org/ga4gh/drs/v1/objects/{$id}", "name": "GenoMEL Data Commons", "description": "The GenoMEL data commons supports the management, analysis and sharing of next generation sequencing data for the GenoMEL research community and aims to accelerate opportunities for discovery of susceptibility genes for melanoma. The data commons supports cross-project analyses by harmonizing data from different projects through the development of a data dictionary and utilization of common workflows, providing an API for data queries, and providing a cloud-based analysis workspace with rich tools and resources.", "official": true, "providerCode": "dg.80b6", "sampleId": "000e5d06-1326-4b6f-8d8a-95c63374c7c1", "resourceHomeUrl": "https://genomel.bionimbus.org/", "institution": {"id": 3145, "name": "Open Commons Consortium ", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000e5d06-1326-4b6f-8d8a-95c63374c7c1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3036, "prefix": "modeldb.concept", "mirId": "MIR:00000905", "name": "ModelDB concept", "pattern": "\\d+", "description": "Concept used by ModelDB, an accessible location for storing and efficiently retrieving computational neuroscience models.", "created": "2022-01-29T10:45:35.629+0000", "modified": "2022-01-29T10:45:35.629+0000", "resources": [{"id": 3037, "mirId": "MIR:00000904", "urlPattern": "https://senselab.med.yale.edu/ModelDB/ModelList?id={$id}", "name": "Yale University", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03v76x132' with Wikidata IDs [Q56612637,Q49112], and ISNI IDs [0000000419368710]", "official": true, "providerCode": "yale", "sampleId": "3639", "resourceHomeUrl": "https://www.yale.edu", "institution": {"id": 3035, "name": "Yale University", "homeUrl": "https://www.yale.edu", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03v76x132' with Wikidata IDs [Q56612637,Q49112], and ISNI IDs [0000000419368710]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3639", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3039, "prefix": "civic.gid", "mirId": "MIR:00000907", "name": "CIViC Gene", "pattern": "^[0-9]+$", "description": "A CIViC Gene Summary is created to provide a high-level overview of clinical relevance of cancer variants for the gene. Gene Summaries in CIViC focus on emphasizing the clinical relevance from a molecular perspective rather than describing the biological function of the gene unless necessary to contextualize its clinical relevance in cancer. Gene Summaries include relevant cancer subtypes, specific treatments for the gene\u2019s associated variants, pathway interactions, functional alterations caused by the variants in the gene, and normal/abnormal functions of the gene with associated roles in oncogenesis", "created": "2022-01-29T10:47:57.098+0000", "modified": "2022-01-29T10:47:57.098+0000", "resources": [{"id": 3040, "mirId": "MIR:00000906", "urlPattern": "https://civicdb.org/links/gene/{$id}", "name": "Clinical Interpretation of Variants in Cancer (CIViC)", "description": "CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer.", "official": true, "providerCode": "civicdb", "sampleId": "272", "resourceHomeUrl": "https://civicdb.org/", "institution": {"id": 2750, "name": "Washington University in St. Louis", "homeUrl": "https://wustl.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01yc7t268' with Wikidata IDs [Q777403], and ISNI IDs [0000 0001 2355 7002]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "272", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3042, "prefix": "civic.vid", "mirId": "MIR:00000909", "name": "CIViC Variant", "pattern": "^[0-9]+$", "description": "CIViC variants are usually genomic alterations, including single nucleotide variants (SNVs), insertion/deletion events (indels), copy number alterations (CNV\u2019s such as amplification or deletion), structural variants (SVs such as translocations and inversions), and other events that differ from the \u201cnormal\u201d genome. In some cases a CIViC variant may represent events of the transcriptome or proteome. For example, \u2018expression\u2019 or \u2018over-expression\u2019 is a valid variant. Regardless of the variant, it must have a Predictive, Prognostic, Predisposing, Diagnostic, Oncogenic, or Functional relevance that is clinical in nature to be entered in CIViC. i.e. There must be some rationale for why curation of this variant could ultimately aid clinical decision making.", "created": "2022-01-29T10:48:56.640+0000", "modified": "2022-01-29T10:48:56.640+0000", "resources": [{"id": 3043, "mirId": "MIR:00000908", "urlPattern": "https://civicdb.org/links/variant/{$id}", "name": "Clinical Interpretation of Variants in Cancer (CIViC)", "description": "CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer.", "official": true, "providerCode": "civicdb", "sampleId": "12", "resourceHomeUrl": "https://civicdb.org/", "institution": {"id": 2750, "name": "Washington University in St. Louis", "homeUrl": "https://wustl.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01yc7t268' with Wikidata IDs [Q777403], and ISNI IDs [0000 0001 2355 7002]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "12", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3013, "prefix": "gitlab", "mirId": "MIR:00000901", "name": "GitLab", "pattern": "^[0-9A-Za-z_][0-9A-Za-z-_()\\. ]*/[0-9A-Za-z_][0-9A-Za-z-_\\. ]*$", "description": "GitLab is The DevOps platform that empowers organizations to maximize the overall return on software development by delivering software faster and efficiently, while strengthening security and compliance. With GitLab, every team in your organization can collaboratively plan, build, secure, and deploy software to drive business outcomes faster with complete transparency, consistency and traceability.", "created": "2022-01-09T19:35:24.140+0000", "modified": "2022-01-29T17:48:48.838+0000", "resources": [{"id": 3014, "mirId": "MIR:00000900", "urlPattern": "https://gitlab.com/{$id}", "name": "GitLab B.V.", "description": "GitLab is an open core company which develops software for the software development lifecycle with 30 million estimated registered users and more than 1 million active license users, and has an active community of more than 2,500 contributors.", "official": true, "providerCode": "gitlab", "sampleId": "morpheus.lab/morpheus", "resourceHomeUrl": "https://gitlab.com/", "institution": {"id": 3012, "name": "GitLab B.V.", "homeUrl": "https://gitlab.com/", "description": "GitLab is an open core company which develops software for the software development lifecycle with 30 million estimated registered users and more than 1 million active license users, and has an active community of more than 2,500 contributors.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "morpheus.lab/morpheus", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3047, "prefix": "rism", "mirId": "MIR:00000911", "name": "RISM Online", "pattern": "^[a-z]+/[0-9]+$", "description": "RISM Online is a new service that will publish the bibliographic and authority data from the catalogue of the R\u00e9pertoire International des Sources Musicales project.", "created": "2022-01-29T10:51:36.384+0000", "modified": "2022-01-31T08:57:14.676+0000", "resources": [{"id": 3048, "mirId": "MIR:00000910", "urlPattern": "https://rism.online/{$id}", "name": "RISM Digital Center", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01kk1vy78' with no Wikidata information, and no ISNI information", "official": true, "providerCode": "rism", "sampleId": "people/11035", "resourceHomeUrl": "https://rism.digital/", "institution": {"id": 3046, "name": "RISM Digital Center", "homeUrl": "https://rism.digital/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01kk1vy78' with no Wikidata information, and no ISNI information", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "people/11035", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3067, "prefix": "crop2ml", "mirId": "MIR:00001015", "name": "CropMRepository", "pattern": "^[0-9]{9}$", "description": "CropMRespository is a database of soil and crop biophysical process models.", "created": "2022-02-01T17:20:51.953+0000", "modified": "2022-02-01T17:20:51.953+0000", "resources": [{"id": 3068, "mirId": "MIR:00001016", "urlPattern": "http://www.crop2ml.org/cropmdb/{$id}", "name": "Crop2ML model repository", "description": "CropMRespository is a database of soil and crop biophysical process models.", "official": true, "providerCode": "cropmdb", "sampleId": "000000001", "resourceHomeUrl": "http://www.crop2ml.org", "institution": {"id": 2292, "name": "National Research Institute for Agriculture, Food and Environment", "homeUrl": "https://www.inrae.fr/", "description": "INRAE is France's new National Research Institute for Agriculture, Food and Environment, created on January 1, 2020, It was formed by the merger of INRA, the National Institute for Agricultural Research, and IRSTEA, the National Research Institute of Science and Technology for the Environment and Agriculture.", "rorId": "https://ror.org/003vg9w96", "location": {"countryCode": "FR", "countryName": "France"}}, "location": {"countryCode": "FR", "countryName": "France"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000000001", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3135, "prefix": "dg.f738", "mirId": "MIR:00000916", "name": "VA Data Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The VA Data Commons supports the research and analysis of US military Veteran medical and genomic data and aims to accelerate scientific discovery and development of therapies, diagnostic tests, and other technologies for improving the lives of Veterans and beyond.", "created": "2022-02-27T20:29:04.474+0000", "modified": "2022-02-27T20:29:04.474+0000", "resources": [{"id": 3136, "mirId": "MIR:00001017", "urlPattern": "https://va.data-commons.org/ga4gh/drs/v1/objects/{$id}", "name": "VA Data Commons", "description": "The VA Data Commons supports the research and analysis of US military Veteran medical and genomic data and aims to accelerate scientific discovery and development of therapies, diagnostic tests, and other technologies for improving the lives of Veterans and beyond.", "official": true, "providerCode": "dg.F738/", "sampleId": "8d8e55d1-1774-4f8d-99d3-dccec73d191a", "resourceHomeUrl": "https://va.data-commons.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "8d8e55d1-1774-4f8d-99d3-dccec73d191a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3139, "prefix": "dg.nacd", "mirId": "MIR:00000917", "name": "https://accessclinicaldata.niaid.nih.gov/", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "AccessClinicalData@NIAID is a NIAID cloud-based, secure data platform that enables sharing of and access to reports and data sets from NIAID COVID-19 and other sponsored clinical trials for the basic and clinical research community.", "created": "2022-02-27T20:30:23.278+0000", "modified": "2022-02-27T20:30:23.278+0000", "resources": [{"id": 3140, "mirId": "MIR:00000999", "urlPattern": "https://accessclinicaldata.niaid.nih.gov/ga4gh/drs/v1/objects/{$id}", "name": "https://accessclinicaldata.niaid.nih.gov/", "description": "AccessClinicalData@NIAID is a NIAID cloud-based, secure data platform that enables sharing of and access to reports and data sets from NIAID COVID-19 and other sponsored clinical trials for the basic and clinical research community", "official": true, "providerCode": "dg.nacd", "sampleId": "2096a0d6-1846-4b98-9ba3-e4065d82111d", "resourceHomeUrl": "https://accessclinicaldata.niaid.nih.gov/", "institution": {"id": 3164, "name": " Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2096a0d6-1846-4b98-9ba3-e4065d82111d", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3142, "prefix": "dg.4825", "mirId": "MIR:00001019", "name": "ACCOuNT Data Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "This website provides a centralized, cloud-based discovery portal for African American pharmacogenomics data and aims to accelerate discovery of novel genetic variants in African Americans related to clinically actionable cardiovascular phenotypes.", "created": "2022-02-27T20:30:53.595+0000", "modified": "2022-02-27T20:30:53.595+0000", "resources": [{"id": 3143, "mirId": "MIR:00001013", "urlPattern": "https://acct.bionimbus.org/ga4gh/drs/v1/objects/{$id}", "name": "ACCOuNT Data Commons", "description": "This website provides a centralized, cloud-based discovery portal for African American pharmacogenomics data and aims to accelerate discovery of novel genetic variants in African Americans related to clinically actionable cardiovascular phenotypes.", "official": true, "providerCode": "dg.4825", "sampleId": "003a12b5-1002-4791-bf7f-0d6f71ebd67b", "resourceHomeUrl": "https://acct.bionimbus.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "003a12b5-1002-4791-bf7f-0d6f71ebd67b", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3149, "prefix": "dg.ea80", "mirId": "MIR:00001021", "name": "NIDDK IBD Genetics Consortium Portal", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The Inflammatory Bowel Disease Genetics Consortium Data Commons supports the management, analysis, and sharing of genetic data to support the vision and mission of the IBD genetics consortium.", "created": "2022-02-27T20:31:33.330+0000", "modified": "2022-02-27T20:31:33.330+0000", "resources": [{"id": 3150, "mirId": "MIR:00000920", "urlPattern": "https://ibdgc.datacommons.io/ga4gh/drs/v1/objects/{$id}", "name": "NIDDK IBD Genetics Consortium Portal", "description": "The Inflammatory Bowel Disease Genetics Consortium Data Commons supports the management, analysis, and sharing of genetic data to support the vision and mission of the IBD genetics consortium.", "official": true, "providerCode": "dg.EA80", "sampleId": "00083977-d4d7-4593-a216-2b9c931b8b03", "resourceHomeUrl": "https://ibdgc.datacommons.io/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00083977-d4d7-4593-a216-2b9c931b8b03", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3152, "prefix": "4503", "mirId": "MIR:00001020", "name": "BioData Catalyst", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "NHLBI BioData Catalyst supports the management, analysis and sharing of human disease data for the research community and aims to advance basic understanding of the genetic basis of complex traits and accelerate discovery and development of therapies, diagnostic tests, and other technologies for diseases like cancer. The data commons supports cross-project analyses by harmonizing data from different projects through the collaborative development of a data dictionary, providing an API for data queries and download, and providing a cloud-based analysis workspace with rich tools and resources.", "created": "2022-02-27T20:31:54.933+0000", "modified": "2022-02-27T20:31:54.933+0000", "resources": [{"id": 3153, "mirId": "MIR:00000921", "urlPattern": "https://gen3.biodatacatalyst.nhlbi.nih.gov/ga4gh/drs/v1/objects/{$id}", "name": "BioData Catalyst", "description": "NHLBI BioData Catalyst supports the management, analysis and sharing of human disease data for the research community and aims to advance basic understanding of the genetic basis of complex traits and accelerate discovery and development of therapies, diagnostic tests, and other technologies for diseases like cancer. The data commons supports cross-project analyses by harmonizing data from different projects through the collaborative development of a data dictionary, providing an API for data queries and download, and providing a cloud-based analysis workspace with rich tools and resources.", "official": true, "providerCode": "dg.4503", "sampleId": "3dab719c-1fa0-461b-a543-5f0e564a9be4", "resourceHomeUrl": "https://gen3.biodatacatalyst.nhlbi.nih.gov/", "institution": {"id": 3145, "name": "Open Commons Consortium ", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "3dab719c-1fa0-461b-a543-5f0e564a9be4", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3171, "prefix": "dg.md1r", "mirId": "MIR:00000932", "name": "MIDRC Data Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The Medical Imaging & Data Resource Center (MIDRC) Data Commons supports the management, analysis and sharing of medical imaging data for the improvement of patient outcomes.", "created": "2022-02-27T20:33:39.208+0000", "modified": "2022-02-27T20:33:39.208+0000", "resources": [{"id": 3172, "mirId": "MIR:00000931", "urlPattern": "https://data.midrc.org/ga4gh/drs/v1/objects/{$id}", "name": "MIDRC Data Commons", "description": "The Medical Imaging & Data Resource Center (MIDRC) Data Commons supports the management, analysis and sharing of medical imaging data for the improvement of patient outcomes.", "official": true, "providerCode": "dg.MD1R", "sampleId": "000007c3-356a-4d59-a6c0-0ee920b60305", "resourceHomeUrl": "https://data.midrc.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000007c3-356a-4d59-a6c0-0ee920b60305", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3196, "prefix": "pmr.workspace", "mirId": "MIR:00000948", "name": "Physiome Model Repository workspace", "pattern": "^[a-zA-Z0-9_\\-]+(/.*?)?$", "description": "Workspace (Git repository) for modeling projects managed by the Physiome Model Repository", "created": "2022-02-27T20:41:50.311+0000", "modified": "2022-02-27T20:41:50.311+0000", "resources": [{"id": 3197, "mirId": "MIR:00000947", "urlPattern": "https://models.physiomeproject.org/workspace/{$id}", "name": "University of Auckland", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03b94tp07' with Wikidata IDs [Q492467], and ISNI IDs [0000 0004 0372 3343]", "official": true, "providerCode": "abi", "sampleId": "modularmassactionprimer", "resourceHomeUrl": "https://www.auckland.ac.nz/en.html", "institution": {"id": 2795, "name": "University of Auckland", "homeUrl": "https://www.auckland.ac.nz/en.html", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03b94tp07' with Wikidata IDs [Q492467], and ISNI IDs [0000 0004 0372 3343]", "rorId": null, "location": {"countryCode": "NZ", "countryName": "New Zealand"}}, "location": {"countryCode": "NZ", "countryName": "New Zealand"}, "deprecated": false, "deprecationDate": null}], "sampleId": "modularmassactionprimer", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3155, "prefix": "dg.373f", "mirId": "MIR:00000922", "name": "The AnVIL", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The AnVIL supports the management, analysis and sharing of human disease data for the research community and aims to advance basic understanding of the genetic basis of complex traits and accelerate discovery and development of therapies, diagnostic tests, and other technologies for diseases like cancer. The data commons supports cross-project analyses by harmonizing data from different projects through the collaborative development of a data dictionary, providing an API for data queries and download, and providing a cloud-based analysis workspace with rich tools and resources.", "created": "2022-02-27T20:32:23.416+0000", "modified": "2022-02-27T20:32:23.416+0000", "resources": [{"id": 3156, "mirId": "MIR:00000913", "urlPattern": "https://gen3.theanvil.io/ga4gh/drs/v1/objects/{$id}", "name": "The AnVIL", "description": "The AnVIL supports the management, analysis and sharing of human disease data for the research community and aims to advance basic understanding of the genetic basis of complex traits and accelerate discovery and development of therapies, diagnostic tests, and other technologies for diseases like cancer. The data commons supports cross-project analyses by harmonizing data from different projects through the collaborative development of a data dictionary, providing an API for data queries and download, and providing a cloud-based analysis workspace with rich tools and resources.", "official": true, "providerCode": "dg.373F", "sampleId": "6f2f1d6c-c5b5-4171-8b5f-9b1ac8c8a8ca", "resourceHomeUrl": "https://gen3.theanvil.io/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "6f2f1d6c-c5b5-4171-8b5f-9b1ac8c8a8ca", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3158, "prefix": "dg.7c5b", "mirId": "MIR:00000925", "name": "Environmental Data Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "This website provides a centralized, cloud-based portal for the open redistribution and analysis of environmental datasets and satellite imagery from OCC stakeholders like NASA and NOAA and aims to support the earth science research community as well as human assisted disaster relief.", "created": "2022-02-27T20:32:37.384+0000", "modified": "2022-02-27T20:32:37.384+0000", "resources": [{"id": 3159, "mirId": "MIR:00000923", "urlPattern": "https://portal.occ-data.org/loginga4gh/drs/v1/objects/{$id}", "name": "Environmental Data Commons", "description": "This website provides a centralized, cloud-based portal for the open redistribution and analysis of environmental datasets and satellite imagery from OCC stakeholders like NASA and NOAA and aims to support the earth science research community as well as human assisted disaster relief.", "official": true, "providerCode": "dg.7C5B", "sampleId": "00000014-990c-48f2-b0a8-fbb533860512", "resourceHomeUrl": "https://portal.occ-data.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00000014-990c-48f2-b0a8-fbb533860512", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3161, "prefix": "f82a1a", "mirId": "MIR:00000926", "name": "Kids First Data Catalog", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The Kids First Data Catalog supports the Kids First Data Resource Center by providing a digital object services that allow interoperability between data commons, including authentication and authorization for controlled access data.", "created": "2022-02-27T20:32:53.923+0000", "modified": "2022-02-27T20:32:53.923+0000", "resources": [{"id": 3162, "mirId": "MIR:00000924", "urlPattern": "https://data.kidsfirstdrc.org/ga4gh/drs/v1/objects/{$id}", "name": "Kids First Data Catalog", "description": "The Kids First Data Catalog supports the Kids First Data Resource Center by providing a digital object services that allow interoperability between data commons, including authentication and authorization for controlled access data.", "official": true, "providerCode": "dg.F82A1A", "sampleId": "0000324e-e2d9-4ccd-b25b-2d16c8a87b28", "resourceHomeUrl": "https://data.kidsfirstdrc.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000324e-e2d9-4ccd-b25b-2d16c8a87b28", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3165, "prefix": "dg.712c", "mirId": "MIR:00000928", "name": "NHLBI BioData Catalyst", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "NHLBI BioData Catalyst supports the management, analysis and sharing of human disease data for the research community and aims to advance basic understanding of the genetic basis of complex traits and accelerate discovery and development of therapies, diagnostic tests, and other technologies for diseases like cancer. The data commons supports cross-project analyses by harmonizing data from different projects through the collaborative development of a data dictionary, providing an API for data queries and download, and providing a cloud-based analysis workspace with rich tools and resources.\n", "created": "2022-02-27T20:33:06.143+0000", "modified": "2022-02-27T20:33:06.143+0000", "resources": [{"id": 3166, "mirId": "MIR:00000927", "urlPattern": "https://staging.gen3.biodatacatalyst.nhlbi.nih.gov/ga4gh/drs/v1/objects/{$id}", "name": "NHLBI BioData Catalyst", "description": "NHLBI BioData Catalyst supports the management, analysis and sharing of human disease data for the research community and aims to advance basic understanding of the genetic basis of complex traits and accelerate discovery and development of therapies, diagnostic tests, and other technologies for diseases like cancer. The data commons supports cross-project analyses by harmonizing data from different projects through the collaborative development of a data dictionary, providing an API for data queries and download, and providing a cloud-based analysis workspace with rich tools and resources.\n", "official": true, "providerCode": "dg.712C", "sampleId": "0129cb63-1cc7-4151-b119-5e3ba3a8eb07", "resourceHomeUrl": "https://staging.gen3.biodatacatalyst.nhlbi.nih.gov/", "institution": {"id": 3164, "name": " Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0129cb63-1cc7-4151-b119-5e3ba3a8eb07", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3168, "prefix": "dg.63d5", "mirId": "MIR:00001026", "name": "Chicago Pandemic Response Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "Chicago Pandemic Response Commons known as CCC is the first regional data commons launched under the Pandemic Response Commons Consortium. Born out of a consortium of Chicago-area civic and healthcare organizations with support from several technology partners, the PRC represents a persistent data resource for the research community engaging with COVID-19.", "created": "2022-02-27T20:33:18.862+0000", "modified": "2022-02-27T20:33:18.862+0000", "resources": [{"id": 3169, "mirId": "MIR:00000929", "urlPattern": "https://chicagoland.pandemicresponsecommons.org/ga4gh/drs/v1/objects/{$id}", "name": "Chicago Pandemic Response Commons", "description": "Chicago Pandemic Response Commons known as CCC is the first regional data commons launched under the Pandemic Response Commons Consortium. Born out of a consortium of Chicago-area civic and healthcare organizations with support from several technology partners, the PRC represents a persistent data resource for the research community engaging with COVID-19.", "official": true, "providerCode": "dg.63D5", "sampleId": "00002b0f-0adf-4015-b2b7-b38f9337044a", "resourceHomeUrl": "https://chicagoland.pandemicresponsecommons.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "00002b0f-0adf-4015-b2b7-b38f9337044a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3174, "prefix": "6vts", "mirId": "MIR:00000934", "name": "JCOIN Portal", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The Helping to End Addiction Long-termSM Initiative, or NIH HEAL InitiativeSM, will support the Justice Community Opioid Innovation Network (JCOIN) to study approaches to increase high-quality care for people with opioid misuse and OUD in justice settings. JCOIN will test strategies to expand effective treatment and care in partnership with local and state justice systems and community-based treatment providers.", "created": "2022-02-27T20:34:03.581+0000", "modified": "2022-02-27T20:34:03.581+0000", "resources": [{"id": 3175, "mirId": "MIR:00000933", "urlPattern": "https://jcoin.datacommons.io/ga4gh/drs/v1/objects/{$id}", "name": "JCOIN Portal", "description": "The Helping to End Addiction Long-termSM Initiative, or NIH HEAL InitiativeSM, will support the Justice Community Opioid Innovation Network (JCOIN) to study approaches to increase high-quality care for people with opioid misuse and OUD in justice settings. JCOIN will test strategies to expand effective treatment and care in partnership with local and state justice systems and community-based treatment providers.", "official": true, "providerCode": "dg.6VTS", "sampleId": "005bf193-fa93-44c0-9b2b-9b039f94d692", "resourceHomeUrl": "https://jcoin.datacommons.io/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "005bf193-fa93-44c0-9b2b-9b039f94d692", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3177, "prefix": "dg.nci35", "mirId": "MIR:00000936", "name": "NCI Data Commons Framework Services", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The vision of DCFS is to make it easier to develop, operate, and interoperate data commons, data clouds, knowledge bases, and other resources for managing, analyzing, and sharing research data that can be part of a large data commons ecosystem.", "created": "2022-02-27T20:37:35.848+0000", "modified": "2022-02-27T20:37:35.848+0000", "resources": [{"id": 3178, "mirId": "MIR:00000935", "urlPattern": "https://nci-crdc.datacommons.io/login/ga4gh/drs/v1/objects/{$id}", "name": "NCI Data Commons Framework Services", "description": "The vision of DCFS is to make it easier to develop, operate, and interoperate data commons, data clouds, knowledge bases, and other resources for managing, analyzing, and sharing research data that can be part of a large data commons ecosystem.", "official": true, "providerCode": "dg.NCI35", "sampleId": "81944ba1-81d0-436e-8552-33d77a27834b", "resourceHomeUrl": "https://nci-crdc.datacommons.io/login", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "81944ba1-81d0-436e-8552-33d77a27834b", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3180, "prefix": "dg.vp07", "mirId": "MIR:00000938", "name": "Veterans Precision Oncology Data Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The Veterans Data Commons supports the management, analysis and sharing of veteran oncologic data for the research community and aims to accelerate discovery and development of therapies, diagnostic tests, and other technologies for precision oncology.", "created": "2022-02-27T20:37:55.926+0000", "modified": "2022-02-27T20:37:55.926+0000", "resources": [{"id": 3181, "mirId": "MIR:00000937", "urlPattern": "https://vpodc.data-commons.org/ga4gh/drs/v1/objects/{$id}", "name": "Veterans Precision Oncology Data Commons", "description": "The Veterans Data Commons supports the management, analysis and sharing of veteran oncologic data for the research community and aims to accelerate discovery and development of therapies, diagnostic tests, and other technologies for precision oncology.", "official": true, "providerCode": "dg.VP07", "sampleId": "000bf826-73ba-4685-aa6c-3e0971a2f260", "resourceHomeUrl": "https://vpodc.data-commons.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000bf826-73ba-4685-aa6c-3e0971a2f260", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3183, "prefix": "dg.c78ne", "mirId": "MIR:00000940", "name": "Canine Data Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "This website analyzes and shares genomic architecture of modern dog breeds and runs analysis for canine cancer to create clean, easy to navigate visualizations for data-driven discovery for canine cancer.", "created": "2022-02-27T20:38:48.115+0000", "modified": "2022-02-27T20:38:48.115+0000", "resources": [{"id": 3184, "mirId": "MIR:00000939", "urlPattern": "https://caninedc.org/ga4gh/drs/v1/objects/{$id}", "name": "Canine Data Commons", "description": "This website analyzes and shares genomic architecture of modern dog breeds and runs analysis for canine cancer to create clean, easy to navigate visualizations for data-driven discovery for canine cancer.", "official": true, "providerCode": "dg.C78ne", "sampleId": "0002346e-5ee7-45fb-8c92-8333f8e13854", "resourceHomeUrl": "https://caninedc.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0002346e-5ee7-45fb-8c92-8333f8e13854", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3186, "prefix": "dg.h34l", "mirId": "MIR:00000942", "name": "The HEAL platform", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The HEAL Platform is a cloud-based and multifunctional web interface that provides a secure environment for discovery and analysis of NIH HEAL results and data. It is designed to serve users with a variety of objectives, backgrounds, and specialties.\n\nThe HEAL Platform represents a dynamic Data Ecosystem that aggregates and hosts data from multiple resources to make data discovery and access easy for users.\n\nThe platform provides a way to search and query over study metadata and diverse data types, generated by different projects and organizations and stored across multiple secure repositories.\n\nThe HEAL platform also offers a secure and cost-effective cloud-computing environment for data analysis, empowering collaborative research and development of new analytical tools. New workflows and results of analyses can be shared with the HEAL community to enable collaborative, high-impact publications that address the opioid crisis.", "created": "2022-02-27T20:39:04.388+0000", "modified": "2022-02-27T20:39:04.388+0000", "resources": [{"id": 3187, "mirId": "MIR:00000941", "urlPattern": "https://healdata.org/ga4gh/drs/v1/objects/{$id}", "name": "The HEAL Platform", "description": "The HEAL Platform is a cloud-based and multifunctional web interface that provides a secure environment for discovery and analysis of NIH HEAL results and data. It is designed to serve users with a variety of objectives, backgrounds, and specialties.\n\nThe HEAL Platform represents a dynamic Data Ecosystem that aggregates and hosts data from multiple resources to make data discovery and access easy for users.\n\nThe platform provides a way to search and query over study metadata and diverse data types, generated by different projects and organizations and stored across multiple secure repositories.\n\nThe HEAL platform also offers a secure and cost-effective cloud-computing environment for data analysis, empowering collaborative research and development of new analytical tools. New workflows and results of analyses can be shared with the HEAL community to enable collaborative, high-impact publications that address the opioid crisis.", "official": true, "providerCode": "dg.h34L", "sampleId": "022911d6-af91-4b02-8f96-9107c77c98b8", "resourceHomeUrl": "https://healdata.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "022911d6-af91-4b02-8f96-9107c77c98b8", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3189, "prefix": "dg.h35l", "mirId": "MIR:00000944", "name": "HEAL Data Platform", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "This website supports the management, analysis and sharing of data for the research community and aims to accelerate discovery and development of therapies, diagnostic tests, and other technologies.", "created": "2022-02-27T20:40:41.328+0000", "modified": "2022-02-27T20:40:41.328+0000", "resources": [{"id": 3190, "mirId": "MIR:00000943", "urlPattern": "https://externaldata.healdata.org/ga4gh/drs/v1/objects/{$id}", "name": "HEAL Data Platform", "description": "This website supports the management, analysis and sharing of data for the research community and aims to accelerate discovery and development of therapies, diagnostic tests, and other technologies.", "official": true, "providerCode": "dg.h34L", "sampleId": "007e4996-c902-49a0-8fe8-b363f1d3fb23", "resourceHomeUrl": "https://externaldata.healdata.org/", "institution": {"id": 2820, "name": "Open Commons Consortium", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "007e4996-c902-49a0-8fe8-b363f1d3fb23", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3193, "prefix": "dg.um33r90", "mirId": "MIR:00000946", "name": "UMCCR AGHA Data Commons", "pattern": "[0-9a-fA-F]{8}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{4}\\-[0-9a-fA-F]{12}", "description": "The UMCCR AGHA Data Commons supports the management, analysis and sharing of data for the research community.", "created": "2022-02-27T20:40:56.446+0000", "modified": "2022-02-27T20:40:56.446+0000", "resources": [{"id": 3194, "mirId": "MIR:00000945", "urlPattern": "https://gen3.agha.umccr.org/ga4gh/drs/v1/objects/{$id}", "name": "UMCCR AGHA Data Commons", "description": "The UMCCR AGHA Data Commons supports the management, analysis and sharing of data for the research community.", "official": true, "providerCode": "dg.UM33R90", "sampleId": "0aa770b4-66b3-4009-9f02-852236b0544f", "resourceHomeUrl": "https://gen3.agha.umccr.org/", "institution": {"id": 3192, "name": " Open Commons Consortium ", "homeUrl": "https://www.occ-data.org/", "description": "The Open Commons Consortium (OCC) manages and operates cloud computing, data commons, and data ecosystems to advance scientific, medical, health care and environmental research for human and societal impact.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0aa770b4-66b3-4009-9f02-852236b0544f", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3203, "prefix": "ps", "mirId": "MIR:00000951", "name": "Pennsieve", "pattern": "N:package:[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}", "description": "Pennsieve is a publicly accessible Scientific Data Management and publication platform. The platform supports data curation, sharing and publishing complex scientific datasets with a focus on integration between graph-based metadata and file-archival. The platform provides a \"peer\"-reviewed publication mechanism and public datasets are available through its Discover Web Application and APIs. ", "created": "2022-03-15T08:27:12.699+0000", "modified": "2022-03-15T08:27:12.699+0000", "resources": [{"id": 3204, "mirId": "MIR:00000950", "urlPattern": "https://discover.pennsieve.io/package/{$id}", "name": "Pennsieve Discover", "description": "Pennsieve Discover is a public repository for scientific datasets and specializes in FAIR distribution of public datasets that combine large files and graph based metadata records. ", "official": true, "providerCode": "ps", "sampleId": "N:package:e3243db3-7986-488e-9a10-c7a0bfdcfe8a", "resourceHomeUrl": "https://discover.pennsieve.io", "institution": {"id": 1674, "name": "University of Pennsylvania", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "N:package:e3243db3-7986-488e-9a10-c7a0bfdcfe8a", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2638, "prefix": "icdc", "mirId": "MIR:00000812", "name": "Integrated Canine Data Commons", "pattern": "^\\d{6}$", "description": "The Integrated Canine Data Commons is one of several repositories within the NCI Cancer Research Data Commons (CRDC), a cloud-based data science infrastructure that provides secure access to a large, comprehensive, and expanding collection of cancer research data. The ICDC was established to further research on human cancers by enabling comparative analysis with canine cancer.", "created": "2021-05-10T19:40:34.200+0000", "modified": "2022-03-31T16:55:06.915+0000", "resources": [{"id": 2639, "mirId": "MIR:00000811", "urlPattern": "https://caninecommons.cancer.gov/#/study/{$id}", "name": "Integrated Canine Data Commons", "description": "Integrated Canine Data Commons at National Cancer Institute (USA)", "official": true, "providerCode": "icdc", "sampleId": "000009", "resourceHomeUrl": "https://caninecommons.cancer.gov/#/", "institution": {"id": 2637, "name": "National Cancer Institute", "homeUrl": "https://www.cancer.gov/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/040gcmg81' with Wikidata IDs [Q664846], and ISNI IDs [0000 0004 1936 8075]", "rorId": "https://ror.org/040gcmg81", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000009", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 361, "prefix": "pdb-ccd", "mirId": "MIR:00000113", "name": "Chemical Component Dictionary", "pattern": "^\\w{1,3}$", "description": "The Chemical Component Dictionary is as an external reference file describing all residue and small molecule components found in Protein Data Bank entries. It contains detailed chemical descriptions for standard and modified amino acids/nucleotides, small molecule ligands, and solvent molecules. Each chemical definition includes descriptions of chemical properties such as stereochemical assignments, aromatic bond assignments, idealized coordinates, chemical descriptors (SMILES & InChI), and systematic chemical names.", "created": "2019-06-11T14:16:03.054+0000", "modified": "2022-05-18T15:48:21.884+0000", "resources": [{"id": 362, "mirId": "MIR:00100146", "urlPattern": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/chemicalCompound/show/{$id}", "name": "Protein Data Bank Chemical Component Dictionary at EBI", "description": "Protein Data Bank Chemical Component Dictionary at EBI", "official": false, "providerCode": "ebi", "sampleId": "AB0", "resourceHomeUrl": "https://www.ebi.ac.uk/pdbe-srv/pdbechem/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AB0", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3252, "prefix": "civic.sid", "mirId": "MIR:00000953", "name": "CIViC Source", "pattern": "^[0-9]+$", "description": "In CIViC, each Evidence Item must be associated with a Source Type and Source ID, which link the Evidence Item to the original source of information supporting clinical claims. Currently, CIViC accepts publications indexed on PubMed OR abstracts published through the American Society of Clinical Oncology (ASCO). Each such source entered into CIViC is assigned a unique identifier and expert curators can curate guidance that assists future curators in the interpretation of information from this source.", "created": "2022-08-08T18:32:17.171+0000", "modified": "2022-08-08T18:32:17.171+0000", "resources": [{"id": 3253, "mirId": "MIR:00000952", "urlPattern": "https://civicdb.org/links/sources/{$id}", "name": "Clinical Interpretation of Variants in Cancer (CIViC)", "description": "CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer.", "official": true, "providerCode": "civicdb", "sampleId": "62", "resourceHomeUrl": "https://civicdb.org/", "institution": {"id": 2750, "name": "Washington University in St. Louis", "homeUrl": "https://wustl.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01yc7t268' with Wikidata IDs [Q777403], and ISNI IDs [0000 0001 2355 7002]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "62", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3255, "prefix": "civic.tid", "mirId": "MIR:00000955", "name": "CIViC Therapy", "pattern": "^[0-9]+$", "description": "Therapies (often drugs) in CIViC are associated with Predictive Evidence Types, which describe sensitivity, resistance or adverse response to therapies when a given variant is present. The Therapy field may also be used to describe more general treatment types and regimes, such as FOLFOX or Radiation, as long as the literature derived Evidence Item makes a scientific association between the Therapy (treatment type) and the presence of the variant.", "created": "2022-08-08T18:33:25.710+0000", "modified": "2022-08-08T18:33:25.710+0000", "resources": [{"id": 3256, "mirId": "MIR:00000954", "urlPattern": "https://civicdb.org/links/drugs/{$id}", "name": "Clinical Interpretation of Variants in Cancer (CIViC)", "description": "CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer.", "official": true, "providerCode": "civicdb", "sampleId": "14", "resourceHomeUrl": "https://civicdb.org/", "institution": {"id": 2750, "name": "Washington University in St. Louis", "homeUrl": "https://wustl.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01yc7t268' with Wikidata IDs [Q777403], and ISNI IDs [0000 0001 2355 7002]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "14", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3258, "prefix": "civic.did", "mirId": "MIR:00000957", "name": "CIViC Disease", "pattern": "^[0-9]+$", "description": "Within the CIViC database, the disease should be the cancer or cancer subtype that is a result of the described variant. The disease selected should be as specific as possible should reflect the disease type used in the source that supports the evidence statement.", "created": "2022-08-08T18:34:15.882+0000", "modified": "2022-08-08T18:34:15.882+0000", "resources": [{"id": 3259, "mirId": "MIR:00000956", "urlPattern": "https://civicdb.org/links/diseases/{$id}", "name": "Clinical Interpretation of Variants in Cancer (CIViC)", "description": "CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer.https://civicdb.org/\n", "official": true, "providerCode": "civicdb", "sampleId": "46", "resourceHomeUrl": "https://civicdb.org/", "institution": {"id": 2750, "name": "Washington University in St. Louis", "homeUrl": "https://wustl.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01yc7t268' with Wikidata IDs [Q777403], and ISNI IDs [0000 0001 2355 7002]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "46", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3263, "prefix": "metatlas", "mirId": "MIR:00000959", "name": "Metabolic Atlas", "pattern": "^MA[MR]\\d{5}[a-z]?$", "description": "Metabolic Atlas facilitates metabolic modelling by presenting open source genome-scale metabolic models for easy browsing and analysis.", "created": "2022-08-08T18:36:40.981+0000", "modified": "2022-08-08T18:36:40.981+0000", "resources": [{"id": 3264, "mirId": "MIR:00000958", "urlPattern": "https://metabolicatlas.org/identifier/MetabolicAtlas/{$id}", "name": "Metabolic Atlas", "description": "Metabolic Atlas is a web platform integrating open-source genome scale metabolic models (GEMs) for easy browsing and analysis. The goal is to collect curated GEMs, and to bring these models closer to FAIR principles. The website provides visualisations and comparisons of the GEMs, and links to resources, algorithms, other databases, and more general software applications.", "official": true, "providerCode": "metatlas", "sampleId": "MAR01234", "resourceHomeUrl": "https://metabolicatlas.org", "institution": {"id": 3262, "name": "National Bioinformatics Infrastructure Sweden", "homeUrl": "https://nbis.se", "description": "NBIS (National Bioinformatics Infrastructure Sweden) is a distributed national research infrastructure supported by the Swedish Research Council (Vetenskapsr\u00e5det), Science for Life Laboratory, all major Swedish universities and the Knut and Alice Wallenberg Foundation, providing state-of-the-art bioinformatics to the Swedish life science researchers community. NBIS is also the Swedish contact point to the European infrastructure for biological information ELIXIR.\n\nPresent NBIS staff has expertise in protein bioinformatics, mass spectrometry (MS), next generation sequencing (NGS), large-scale data handling and integration, metagenomics, systems biology, biostatistics and RNAseq.\n\nNBIS is predominantly offering bioinformatics support in various projects, depending on the user needs. In the projects, the NBIS persons are working close to the research group, and they spend part of their time to teach the users in order to propagate the bioinformatics knowledge. Furthermore, NBIS provides infrastructure and tools for bioinformatics analyses in order to facilitate these analyses for the users.\n\nNBIS forms the bioinformatics platform at the Science for Life Laboratory.", "rorId": null, "location": {"countryCode": "SE", "countryName": "Sweden"}}, "location": {"countryCode": "SE", "countryName": "Sweden"}, "deprecated": false, "deprecationDate": null}], "sampleId": "MAR01234", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 2168, "prefix": "dandi", "mirId": "MIR:00000786", "name": "DANDI: Distributed Archives for Neurophysiology Data Integration", "pattern": "^\\d{6}(\\/\\d+\\.\\d+\\.\\d+)?$", "description": "DANDI works with BICCN and other BRAIN Initiative awardees to curate data using community data standards such as NWB and BIDS, and to make data and software for cellular neurophysiology FAIR (Findable, Accessible, Interoperable, and Reusable).\nDANDI references electrical and optical cellular neurophysiology recordings and associated MRI and/or optical imaging data.\nThese data will help scientists uncover and understand cellular level mechanisms of brain function. Scientists will study the formation of neural networks, how cells and networks enable functions such as learning and memory, and how these functions are disrupted in neurological disorders.", "created": "2020-03-24T05:11:19.658+0000", "modified": "2021-10-18T12:32:14.264+0000", "resources": [{"id": 2169, "mirId": "MIR:00000750", "urlPattern": "https://dandiarchive.org/dandiset/{$id}", "name": "DANDI: Distributed Archives for Neurophysiology Data Integration", "description": "DANDI is a Web platform for scientists to share, collaborate, and process data from cellular neurophysiology experiments. DANDI works with BICCN and other BRAIN Initiative awardees to curate data using community data standards such as NWB and BIDS, and to make data and software for cellular neurophysiology FAIR (Findable, Accessible, Interoperable, and Reusable). DANDI will store electrical and optical cellular neurophysiology recordings and associated MRI and/or optical imaging data. DANDI will provide: 1) A cloud platform for neurophysiology data storage for the purposes of collaboration and dissemination of data; 2) Easy to use tools for neurophysiology data submission, visualization, and access in the archive; and 3) Standardized applications for data ingestion, visualization and processing, which facilitate adoption of NWB and other standards. These data will help scientists uncover and understand cellular level mechanisms of brain function. Scientists will study the formation of neural networks, how cells and networks enable functions such as learning and memory, and how these functions are disrupted in neurological disorders.", "official": true, "providerCode": "dandi", "sampleId": "000017", "resourceHomeUrl": "https://dandiarchive.org/", "institution": {"id": 2167, "name": "Massachusetts Institute of Technology", "homeUrl": "http://web.mit.edu/", "description": "Founded to accelerate the nation\u2019s industrial revolution, MIT is profoundly American. With ingenuity and drive, our graduates have invented fundamental technologies, launched new industries, and created millions of American jobs. At the same time, and without the slightest sense of contradiction, MIT is profoundly global(opens in new window). Our community gains tremendous strength as a magnet for talent from around the world. Through teaching, research, and innovation, MIT\u2019s exceptional community pursues its mission of service to the nation and the world.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "000017", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3271, "prefix": "ror", "mirId": "MIR:00000961", "name": "ROR", "pattern": "^0[a-hj-km-np-tv-z|0-9]{6}[0-9]{2}$", "description": "ROR (Research Organization Registry) is a global, community-led registry\nof open persistent identifiers for research organizations. ROR is jointly\noperated by California Digital Library, Crossref, and Datacite.", "created": "2022-08-15T19:28:35.707+0000", "modified": "2022-08-18T13:14:34.725+0000", "resources": [{"id": 3272, "mirId": "MIR:00001056", "urlPattern": "https://ror.org/{$id}", "name": "ROR", "description": "ROR (Research Organization Registry) is a global, community-led registry of open persistent identifiers for research organizations. ", "official": true, "providerCode": "ror", "sampleId": "03yrm5c26", "resourceHomeUrl": "https://ror.org", "institution": {"id": 3270, "name": "California Digital Library", "homeUrl": "https://www.cdlib.org/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03yrm5c26' with Wikidata IDs [Q5020447], and ISNI IDs [0000 0001 1957 5136]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "03yrm5c26", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3292, "prefix": "clb", "mirId": "MIR:00000964", "name": "ChecklistBank", "pattern": "^[0-9]+(LR)?$", "description": "ChecklistBank is an index and repository for taxonomic and nomenclatural datasets", "created": "2022-11-03T14:17:05.019+0000", "modified": "2022-11-03T14:17:05.019+0000", "resources": [{"id": 3293, "mirId": "MIR:00000963", "urlPattern": "https://www.checklistbank.org/dataset/{$id}", "name": "ChecklistBank", "description": "ChecklistBank at GBIF. Codeveloped with the Catalogue of Life", "official": true, "providerCode": "clb", "sampleId": "1010", "resourceHomeUrl": "https://www.checklistbank.org", "institution": {"id": 3291, "name": "Global Biodiversity Information Facility", "homeUrl": "https://www.gbif.org/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05fjyn938' with Wikidata IDs [Q1531570], and no ISNI information", "rorId": null, "location": {"countryCode": "DK", "countryName": "Denmark"}}, "location": {"countryCode": "DK", "countryName": "Denmark"}, "deprecated": false, "deprecationDate": null}], "sampleId": "1010", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3298, "prefix": "drugcentral", "mirId": "MIR:00000966", "name": "DrugCentral", "pattern": "^[0-9]+$", "description": "DrugCentral (http://drugcentral.org) is an open-access online drug compendium. DrugCentral integrates structure, bioactivity, regulatory, pharmacologic actions and indications for active pharmaceutical ingredients approved by FDA and other regulatory agencies. Monitoring of regulatory agencies for new drugs approvals ensures the resource is up-to-date. DrugCentral integrates content for active ingredients with pharmaceutical formulations, indexing drugs and drug label annotations, complementing similar resources available online. Its complementarity with other online resources is facilitated by cross referencing to external resources. At the molecular level, DrugCentral bridges drug-target interactions with pharmacological action and indications. The integration with FDA drug labels enables text mining applications for drug adverse events and clinical trial information. Chemical structure overlap between DrugCentral and five online drug resources, and the overlap between DrugCentral FDA-approved drugs and their presence in four different chemical collections, are discussed. DrugCentral can be accessed via the web application or downloaded in relational database format.", "created": "2022-11-04T09:54:32.976+0000", "modified": "2022-11-04T09:54:32.976+0000", "resources": [{"id": 3299, "mirId": "MIR:00000965", "urlPattern": "https://drugcentral.org/drugcard/{$id}", "name": "University of New Mexico", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05fs6jp91' with Wikidata IDs [Q1190812], and ISNI IDs [0000 0001 2188 8502]", "official": true, "providerCode": "drugcentral", "sampleId": "257", "resourceHomeUrl": "http://www.unm.edu/", "institution": {"id": 3297, "name": "University of New Mexico", "homeUrl": "http://www.unm.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05fs6jp91' with Wikidata IDs [Q1190812], and ISNI IDs [0000 0001 2188 8502]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "257", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3307, "prefix": "skm", "mirId": "MIR:00000968", "name": "Stress Knowledge Map", "pattern": "^rx[0-9]{5}$", "description": "Stress Knowledge Map (SKM, available at https://skm.nib.si) is a knowledge graph resulting from the integration of dispersed published information on plant molecular responses to biotic and abiotic stressors. ", "created": "2022-11-04T12:17:30.200+0000", "modified": "2022-11-04T12:17:30.200+0000", "resources": [{"id": 3308, "mirId": "MIR:00000967", "urlPattern": "https://skm.nib.si/api/pss/reactions?reaction_id={$id}&return_field=summary", "name": "National Institute of Biology", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03s5t0r17' with no Wikidata information, and ISNI IDs [0000 0004 0637 0790]", "official": true, "providerCode": "skm", "sampleId": "rx00408", "resourceHomeUrl": "http://www.nib.si/eng/", "institution": {"id": 3306, "name": "National Institute of Biology", "homeUrl": "http://www.nib.si/eng/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/03s5t0r17' with no Wikidata information, and ISNI IDs [0000 0004 0637 0790]", "rorId": null, "location": {"countryCode": "SI", "countryName": "Slovenia"}}, "location": {"countryCode": "SI", "countryName": "Slovenia"}, "deprecated": false, "deprecationDate": null}], "sampleId": "rx00408", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3311, "prefix": "col", "mirId": "MIR:00000969", "name": "Catalogue of Life", "pattern": "^[23456789BCDFGHJKLMNPQRSTVWXYZ]{1,6}$", "description": "Identifier of a taxon or synonym in the Catalogue of Life", "created": "2022-11-04T13:50:22.141+0000", "modified": "2022-11-04T13:50:22.141+0000", "resources": [{"id": 3312, "mirId": "MIR:00000970", "urlPattern": "https://www.checklistbank.org/dataset/3LR/taxon/{$id}", "name": "ChecklistBank", "description": "ChecklistBank, an index and repository for taxonomic data, hosted at GBIF\n", "official": true, "providerCode": "clb", "sampleId": "4QHKG", "resourceHomeUrl": "https://www.checklistbank.org", "institution": {"id": 3291, "name": "Global Biodiversity Information Facility", "homeUrl": "https://www.gbif.org/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05fjyn938' with Wikidata IDs [Q1531570], and no ISNI information", "rorId": null, "location": {"countryCode": "DK", "countryName": "Denmark"}}, "location": {"countryCode": "DK", "countryName": "Denmark"}, "deprecated": false, "deprecationDate": null}, {"id": 3328, "mirId": "MIR:00000971", "urlPattern": "https://www.catalogueoflife.org/data/taxon/{$id}", "name": "Catalogue of Life (COL)", "description": "The Catalogue of Life website providing a view onto the latest release of the COL Checklist.", "official": false, "providerCode": "col", "sampleId": "4QHKG", "resourceHomeUrl": "https://www.catalogueoflife.org", "institution": {"id": 3291, "name": "Global Biodiversity Information Facility", "homeUrl": "https://www.gbif.org/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05fjyn938' with Wikidata IDs [Q1531570], and no ISNI information", "rorId": null, "location": {"countryCode": "DK", "countryName": "Denmark"}}, "location": {"countryCode": "DK", "countryName": "Denmark"}, "deprecated": false, "deprecationDate": null}], "sampleId": "4QHKG", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3355, "prefix": "sciflection", "mirId": "MIR:00000973", "name": "Sciflection", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$", "description": "Sciflection is a public repository for experiments and associated spectra, usually uploaded from Electronic Lab Notebooks, shared under FAIR conditions", "created": "2022-11-29T12:03:56.649+0000", "modified": "2022-11-29T12:03:56.649+0000", "resources": [{"id": 3356, "mirId": "MIR:00000972", "urlPattern": "https://sciflection.com/{$id}", "name": "Sciformation Consulting GmbH", "description": "Sciformation develops scientific software and integrated lab management solutions, comprising of chemical & hazardous material inventory, electronic lab notebook, analytical data management, literature, device databases and ordering systems. The high level of integration helps to gather comprehensive data describing the experiments, i.e. which batches or machinery was employed.", "official": true, "providerCode": "sciformation", "sampleId": "5ede4273-b26c-4ea4-adb7-3ce294ab3397", "resourceHomeUrl": "https://sciformation.com/sciflection.html", "institution": {"id": 3354, "name": "Sciformation Consulting GmbH", "homeUrl": "http://sciformation.com", "description": "Sciformation develops scientific software and integrated lab management solutions, comprising of chemical & hazardous material inventory, electronic lab notebook, analytical data management, literature, device databases and ordering systems. The high level of integration helps to gather comprehensive data describing the experiments, i.e. which batches or machinery was employed.", "rorId": null, "location": {"countryCode": "DE", "countryName": "Germany"}}, "location": {"countryCode": "DE", "countryName": "Germany"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5ede4273-b26c-4ea4-adb7-3ce294ab3397", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 765, "prefix": "combine.specifications", "mirId": "MIR:00000258", "name": "COMBINE specifications", "pattern": "^\\w+(\\-|\\.|\\w)*$", "description": "The 'COmputational Modeling in BIology' NEtwork (COMBINE) is an initiative to coordinate the development of the various community standards and formats for computational models, initially in Systems Biology and related fields. This collection pertains to specifications of the standard formats developed by the Computational Modeling in Biology Network.", "created": "2019-06-11T14:16:39.210+0000", "modified": "2023-01-04T15:31:16.641+0000", "resources": [{"id": 766, "mirId": "MIR:00100329", "urlPattern": "https://github.com/combine-org/combine-specifications/blob/main/specifications/{$id}.md", "name": "COMBINE at EBI", "description": "COMBINE at EBI", "official": false, "providerCode": "ebi", "sampleId": "sed-ml.level-1.version-1", "resourceHomeUrl": "https://co.mbine.org/standards/", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "sed-ml.level-1.version-1", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1217, "prefix": "panther.pthcmp", "mirId": "MIR:00000422", "name": "PANTHER Pathway Component", "pattern": "^[GPUCS]\\d{5}$", "description": "The PANTHER (Protein ANalysis THrough Evolutionary Relationships) Classification System is a resource that classifies genes by their functions, using published scientific experimental evidence and evolutionary relationships to predict function even in the absence of direct experimental evidence. The PANTHER Pathway Component collection references specific classes of molecules that play the same mechanistic role within a pathway, across species. Pathway\r\ncomponents may be proteins, genes/DNA, RNA, or simple molecules. Where the identified component is a protein, DNA, or transcribed RNA, it is associated with protein sequences in the PANTHER protein family trees through manual curation.", "created": "2019-06-11T14:17:16.858+0000", "modified": "2023-01-04T16:32:41.267+0000", "resources": [{"id": 1218, "mirId": "MIR:00100545", "urlPattern": "http://www.pantherdb.org/pathway/pathCatDetail.do?clsAccession={$id}", "name": "PANTHER Pathway Component at USC (Los Angeles)", "description": "PANTHER Pathway Component at USC (Los Angeles)", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "P00266", "resourceHomeUrl": "http://www.pantherdb.org/", "institution": {"id": 94, "name": "Keck School of Medicine, University of Southern California", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "P00266", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 341, "prefix": "genedb", "mirId": "MIR:00000106", "name": "GeneDB", "pattern": "^[\\w\\d\\.-]*$", "description": "GeneDB is a genome database for prokaryotic and eukaryotic organisms and provides a portal through which data generated by the \"Pathogen Genomics\" group at the Wellcome Trust Sanger Institute and other collaborating sequencing centres can be accessed.", "created": "2019-06-11T14:16:00.951+0000", "modified": "2023-01-05T20:09:01.371+0000", "resources": [{"id": 343, "mirId": "MIR:00100139", "urlPattern": "https://www.genedb.org/gene/{$id}", "name": "GeneDB at Sanger Institute", "description": "GeneDB at Sanger Institute", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "LinJ.20.0070", "resourceHomeUrl": "https://www.genedb.org/", "institution": {"id": 342, "name": "Pathogen Genomics, Sanger Institute and European Bioinformatics Institute", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "LinJ.20.0070", "namespaceEmbeddedInLui": false, "deprecated": true, "deprecationDate": "2023-01-05T20:09:01.370+0000"}, {"id": 220, "prefix": "mge", "mirId": "MIR:00000063", "name": "Aclame", "pattern": "^mge:\\d+$", "description": "ACLAME is a database dedicated to the collection and classification of mobile genetic elements (MGEs) from various sources, comprising all known phage genomes, plasmids and transposons.", "created": "2019-06-11T14:15:49.786+0000", "modified": "2023-01-10T13:18:19.511+0000", "resources": [{"id": 222, "mirId": "MIR:00100091", "urlPattern": "http://aclame.ulb.ac.be/perl/Aclame/Genomes/mge_view.cgi?view=info&id=mge:{$id}", "name": "Aclame database of mobile genetic elements", "description": "Aclame database of mobile genetic elements", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "2", "resourceHomeUrl": "http://aclame.ulb.ac.be/", "institution": {"id": 221, "name": "Service de Conformation de Macromol\u00e9cules Biologiques et de Bioinformatique, Universit\u00e9 Libre de Bruxelles", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "BE", "countryName": "Belgium"}}, "location": {"countryCode": "BE", "countryName": "Belgium"}, "deprecated": false, "deprecationDate": null}], "sampleId": "2", "namespaceEmbeddedInLui": true, "deprecated": true, "deprecationDate": "2023-01-10T13:18:19.506+0000"}, {"id": 2484, "prefix": "oma.hog", "mirId": "MIR:00000785", "name": "OMA HOGs", "pattern": "^HOG:[0-9]{7}(\\.[0-9a-z.]+)?(_[0-9]+)?$", "description": "Hierarchical orthologous groups predicted by OMA (Orthologous MAtrix) database. Hierarchical orthologous groups are sets of genes that have started diverging from a single common ancestor gene at a certain taxonomic level of reference. ", "created": "2020-12-14T12:57:54.560+0000", "modified": "2023-01-10T16:04:39.504+0000", "resources": [{"id": 2485, "mirId": "MIR:00000761", "urlPattern": "https://omabrowser.org/oma/hog/resolve/HOG:{$id}/", "name": "ETH Zurich", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05a28rw58' with Wikidata IDs [Q11942], and ISNI IDs [0000 0001 2156 2780]", "official": true, "providerCode": "oma", "sampleId": "HOG:0459895", "resourceHomeUrl": "https://omabrowser.org", "institution": {"id": 2483, "name": "ETH Zurich", "homeUrl": "https://ethz.ch/en.html", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/05a28rw58' with Wikidata IDs [Q11942], and ISNI IDs [0000 0001 2156 2780]", "rorId": null, "location": {"countryCode": "CH", "countryName": "Switzerland"}}, "location": {"countryCode": "CH", "countryName": "Switzerland"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0459895", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 1437, "prefix": "gro", "mirId": "MIR:00000508", "name": "Gramene Growth Stage Ontology", "pattern": "^GRO:\\d+$", "description": "Gramene is a comparative genome mapping database for grasses and crop plants. It combines a semi-automatically generated database of cereal genomic and expressed sequence tag sequences, genetic maps, map relations, quantitative trait loci (QTL), and publications, with a curated database of mutants (genes and alleles), molecular markers, and proteins. This collection refers to growth stage ontology information in Gramene.", "created": "2019-06-11T14:17:36.384+0000", "modified": "2023-01-10T16:08:16.467+0000", "resources": [{"id": 1438, "mirId": "MIR:00100649", "urlPattern": "http://www.gramene.org/db/ontology/search?id=GRO:{$id}", "name": "Gramene Growth Stage Ontology at Cold Spring Harbor", "description": "Gramene Growth Stage Ontology at Cold Spring Harbor", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "0007133", "resourceHomeUrl": "http://www.gramene.org/", "institution": {"id": 556, "name": "Cold Spring Harbor Laboratory, New York", "homeUrl": "CURATOR_REVIEW", "description": "CURATOR_REVIEW", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0007133", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 3369, "prefix": "tair.name", "mirId": "MIR:00000976", "name": "TAIR gene name", "pattern": "^AT.G[0-9]{5}$", "description": "The Arabidopsis Information Resource (TAIR) maintains a database of genetic and molecular biology data for the model higher plant Arabidopsis thaliana. The name of a Locus is unique and used by TAIR, TIGR, and MIPS.", "created": "2023-01-12T10:08:07.976+0000", "modified": "2023-01-12T10:08:07.976+0000", "resources": [{"id": 3370, "mirId": "MIR:00000975", "urlPattern": "https://www.arabidopsis.org/servlets/TairObject?type=locus&name={$id}", "name": "TAIR", "description": "The Arabidopsis Information Resource (TAIR) collects information and maintains a database of genetic and molecular biology data for Arabidopsis thaliana, a widely used model plant.", "official": true, "providerCode": "tair", "sampleId": "AT5G05330", "resourceHomeUrl": "https://www.arabidopsis.org/index.jsp", "institution": {"id": 3367, "name": "Phoenix Bioinformatics", "homeUrl": "https://www.phoenixbioinformatics.org/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/0018yg518' with no Wikidata information, and ISNI IDs [0000 0004 4665 2899]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "AT5G05330", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3380, "prefix": "civic.vgid", "mirId": "MIR:00000979", "name": "CIViC Variant Group", "pattern": "^[0-9]+$", "description": "Variant Groups in CIViC provide user-defined grouping of Variants within and between genes based on unifying characteristics. CIViC curators are required to define a cohesive rationale for grouping these variants together, summarize their relevance to cancer diagnosis, prognosis or treatment and highlight any treatments or cancers of particular relevance", "created": "2023-01-23T09:52:20.012+0000", "modified": "2023-01-23T09:52:20.012+0000", "resources": [{"id": 3381, "mirId": "MIR:00000978", "urlPattern": "https://civicdb.org/links/variant_group/{$id}", "name": "Clinical Interpretation of Variants in Cancer (CIViC)", "description": "CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer.", "official": true, "providerCode": "civicdb", "sampleId": "16", "resourceHomeUrl": "https://civicdb.org/", "institution": {"id": 2750, "name": "Washington University in St. Louis", "homeUrl": "https://wustl.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01yc7t268' with Wikidata IDs [Q777403], and ISNI IDs [0000 0001 2355 7002]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "16", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3383, "prefix": "civic.mpid", "mirId": "MIR:00000981", "name": "CIViC Molecular Profile", "pattern": "^[0-9]+$", "description": "CIViC Molecular Profiles are combinations of one or more CIViC variants. Most Molecular Profiles are \u201cSimple\u201d Molecular Profiles comprised of a single variant. In most cases, these can be considered equivalent to the CIViC concept of a Variant. However, increasingly clinical significance must be considered in the context of multiple variants simultaneously. Complex Molecular Profiles in CIViC allow for curation of such variant combinations. Regardless of the nature of the Molecular Profile (Simple or Complex), it must have a Predictive, Prognostic, Predisposing, Diagnostic, Oncogenic, or Functional clinical relevance to be entered in CIViC.", "created": "2023-01-23T09:53:23.139+0000", "modified": "2023-01-23T09:53:23.139+0000", "resources": [{"id": 3384, "mirId": "MIR:00000980", "urlPattern": "https://civicdb.org/links/molecular_profile/{$id}", "name": "Clinical Interpretation of Variants in Cancer (CIViC)", "description": "CIViC is an open access, open source, community-driven web resource for Clinical Interpretation of Variants in Cancer.", "official": true, "providerCode": "civicdb", "sampleId": "559", "resourceHomeUrl": "https://civicdb.org/", "institution": {"id": 2750, "name": "Washington University in St. Louis", "homeUrl": "https://wustl.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/01yc7t268' with Wikidata IDs [Q777403], and ISNI IDs [0000 0001 2355 7002]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "559", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3391, "prefix": "clo", "mirId": "MIR:00000983", "name": "Cell Line Ontology", "pattern": "^\\d{7}$", "description": "The Cell Line Ontology is a community-based ontology of cell lines. The CLO is developed to unify publicly available cell line entry data from multiple sources to a standardized logically defined format based on consensus design patterns.", "created": "2023-01-23T10:14:16.128+0000", "modified": "2023-01-23T10:14:16.128+0000", "resources": [{"id": 3392, "mirId": "MIR:00000982", "urlPattern": "https://www.ebi.ac.uk/ols/ontologies/clo/terms?short_form=CLO_{$id}", "name": "CLO through OLS", "description": "Cell Line Ontology (CLO) through OLS. The Ontology Lookup Service (OLS) is a repository for biomedical ontologies that aims to provide a single point of access to the latest ontology versions. You can browse the ontologies through the website as well as programmatically via the OLS API. OLS is developed and maintained by the Samples, Phenotypes, and Ontologies Team at EMBL-EBI.", "official": true, "providerCode": "ols", "sampleId": "0000091", "resourceHomeUrl": "https://www.ebi.ac.uk/ols/ontologies/clo", "institution": {"id": 3390, "name": "University of Michigan\u2013Ann Arbor", "homeUrl": "https://www.umich.edu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/00jmfr291' with Wikidata IDs [Q230492], and ISNI IDs [0000 0000 8683 7370]", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}, {"id": 3398, "mirId": "MIR:00000984", "urlPattern": "https://bioportal.bioontology.org/ontologies/CLO/?p=classes&conceptid=http://purl.obolibrary.org/obo/CLO_{$id}", "name": "Center for Biomedical Informatics Research, Stanford", "description": "Our vision is that all biomedical knowledge and data are disseminated on the Internet using principled ontologies in such a way that the knowledge and data are semantically interoperable and useful for furthering biomedical science and clinical care. Our mission is to create software and support services for the application of principled ontologies in biomedical science and clinical care, ranging from tools for application developers to software for end-users.", "official": false, "providerCode": "bioportal", "sampleId": "0000091", "resourceHomeUrl": "https://bioportal.bioontology.org", "institution": {"id": 3397, "name": "Center for Biomedical Informatics Research, Stanford", "homeUrl": "https://bioportal.bioontology.org", "description": "Our vision is that all biomedical knowledge and data are disseminated on the Internet using principled ontologies in such a way that the knowledge and data are semantically interoperable and useful for furthering biomedical science and clinical care. Our mission is to create software and support services for the application of principled ontologies in biomedical science and clinical care, ranging from tools for application developers to software for end-users.", "rorId": null, "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "0000091", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3404, "prefix": "empiar", "mirId": "MIR:00000986", "name": "EMPIAR", "pattern": "EMPIAR-\\d{5,}", "description": "EMPIAR, the Electron Microscopy Public Image Archive, is a public resource for raw images underpinning 3D cryo-EM maps and tomograms (themselves archived in EMDB). EMPIAR also accommodates 3D datasets obtained with volume EM techniques and soft and hard X-ray tomography.", "created": "2023-01-25T11:52:06.260+0000", "modified": "2023-01-25T11:52:06.260+0000", "resources": [{"id": 3405, "mirId": "MIR:00000985", "urlPattern": "https://www.ebi.ac.uk/empiar/{$id}", "name": "European Bioinformatics Institute", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "official": true, "providerCode": "empiar", "sampleId": "EMPIAR-10002", "resourceHomeUrl": "https://www.ebi.ac.uk", "institution": {"id": 2, "name": "European Bioinformatics Institute", "homeUrl": "https://www.ebi.ac.uk", "description": "At EMBL-EBI, we make the world\u2019s public biological data freely available to the scientific community via a range of services and tools, perform basic research and provide professional training in bioinformatics. \nWe are part of the European Molecular Biology Laboratory (EMBL), an international, innovative and interdisciplinary research organisation funded by 26 member states and two associate member states.", "rorId": "https://ror.org/02catss52", "location": {"countryCode": "GB", "countryName": "United Kingdom"}}, "location": {"countryCode": "GB", "countryName": "United Kingdom"}, "deprecated": false, "deprecationDate": null}], "sampleId": "EMPIAR-10002", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 1647, "prefix": "ark", "mirId": "MIR:00000592", "name": "Archival Resource Key (ARK)", "pattern": "^(ark\\:)/*[0-9A-Za-z]+(?:/[\\w/.=*+@\\$-]*)?(?:\\?.*)?$", "description": "Archival Resource Keys (ARKs) serve as persistent identifiers, or stable, trusted references for information objects. Among other things, they aim to be web addresses (URLs) that don\u2019t return 404 Page Not Found errors. The ARK Alliance is an open global community supporting the ARK infrastructure on behalf of research and scholarship. End users, especially researchers, rely on ARKs for long term access to the global scientific and cultural record. Since 2001 some 8.2 billion ARKs have been created by over 1000 organizations \u2014 libraries, data centers, archives, museums, publishers, government agencies, and vendors. They identify anything digital, physical, or abstract. ARKs are open, mainstream, non-paywalled, decentralized persistent identifiers that can be created by an organization as soon as it is registered with a NAAN (Name Assigning Authority Number). Once registered, an ARK organization can create unlimited numbers of ARKs and publicize them via the n2t.net global resolver or via their own local resolver.", "created": "2019-06-11T14:17:57.583+0000", "modified": "2023-01-31T08:16:22.071+0000", "resources": [{"id": 1649, "mirId": "MIR:00100792", "urlPattern": "http://n2t.net/ark:{$id}", "name": "Archival Resource Key (ARK)", "description": "ARKs via the Name-to-Thing (n2t.net) resolver.", "official": false, "providerCode": "CURATOR_REVIEW", "sampleId": "/53355/cl010066723", "resourceHomeUrl": "https://arks.org", "institution": {"id": 1648, "name": "California Digital Library, University of California Office of the President", "homeUrl": "https://cdlib.org/", "description": "The CDL was founded by the University of California in 1997 to take advantage of emerging technologies that were transforming the way digital information was being published and accessed. Since then, in collaboration with the UC libraries and other partners, we assembled one of the world\u2019s largest digital research libraries and changed the ways that faculty, students, and researchers discover and access information.", "rorId": "https://ror.org/03yrm5c26", "location": {"countryCode": "US", "countryName": "United States"}}, "location": {"countryCode": "US", "countryName": "United States"}, "deprecated": false, "deprecationDate": null}], "sampleId": "/53355/cl010066723", "namespaceEmbeddedInLui": true, "deprecated": false, "deprecationDate": null}, {"id": 3429, "prefix": "nlfff", "mirId": "MIR:00000988", "name": "NLFFF Database", "pattern": "^[0-9]+$", "description": "Nonlinear Force-Free Field Three-Dimensional Magnetic Fields Data of Solar Active Regions Database", "created": "2023-02-03T09:47:17.713+0000", "modified": "2023-02-03T09:47:17.713+0000", "resources": [{"id": 3430, "mirId": "MIR:00000987", "urlPattern": "http://database.deepsolar.space:18080/dbs/nlfff/{$id}", "name": "Deepsolar Laboratory", "description": "State Key Laboratory of Space Weather, National Space Science Center, Chinese Academy of Sciences, Beijing, 100190, China", "official": true, "providerCode": "deeps", "sampleId": "345201101230312003", "resourceHomeUrl": "https://nlfff.dataset.deepsolar.space/en/", "institution": {"id": 3428, "name": "Deepsolar Laboratory", "homeUrl": "http://www.deepsolar.space", "description": "State Key Laboratory of Space Weather, National Space Science Center, Chinese Academy of Sciences, Beijing, 100190, China", "rorId": null, "location": {"countryCode": "CN", "countryName": "China"}}, "location": {"countryCode": "CN", "countryName": "China"}, "deprecated": false, "deprecationDate": null}], "sampleId": "345201101230312003", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3467, "prefix": "utrdb", "mirId": "MIR:00000993", "name": "UTRdb", "pattern": "([3-5][A-Z])\\w+[^A-Z][0-9]", "description": "A curated database of 5' and 3' untranslated sequences of eukaryotic mRNAs. In the current update, the UTR entries are organized in a gene-centric structure to better visualize and retrieve 5' and 3'UTR variants generated by alternative initiation and termination of transcription and alternative splicing. Experimentally validated miRNA targets and conserved sequence elements are also annotated. The integration of UTRdb with genomic data has allowed the implementation of an efficient annotation system and a powerful retrieval resource for the selection and extraction of specific UTR subsets. ", "created": "2023-02-23T11:08:58.437+0000", "modified": "2023-02-23T11:21:10.786+0000", "resources": [{"id": 3468, "mirId": "MIR:00000992", "urlPattern": "https://utrdb.cloud.ba.infn.it/cgi-bin/utrdb/utrdb?e={$id}", "name": "University of Bari Aldo Moro", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/027ynra39' with Wikidata IDs [Q1236136], and ISNI IDs [0000 0001 0120 3326]", "official": true, "providerCode": "uniba", "sampleId": "5UTR_107_ENST00000517291.2", "resourceHomeUrl": "https://utrdb.cloud.ba.infn.it/utrdb/index_107.html", "institution": {"id": 3466, "name": "University of Bari Aldo Moro", "homeUrl": "https://www.uniba.it/en", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/027ynra39' with Wikidata IDs [Q1236136], and ISNI IDs [0000 0001 0120 3326]", "rorId": null, "location": {"countryCode": "IT", "countryName": "Italy"}}, "location": {"countryCode": "IT", "countryName": "Italy"}, "deprecated": false, "deprecationDate": null}], "sampleId": "5UTR_107_ENST00000517291.2", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}, {"id": 3472, "prefix": "biokc", "mirId": "MIR:00000995", "name": "BioKC", "pattern": "bkc[0-9]*", "description": "BioKC (Biological Knowledge Curation), is a web-based collaborative platform for the curation and annotation of biomedical knowledge following the standard data model from Systems Biology Markup Language (SBML).", "created": "2023-03-01T11:40:49.456+0000", "modified": "2023-03-01T11:40:49.456+0000", "resources": [{"id": 3473, "mirId": "MIR:00000994", "urlPattern": "https://biokb.lcsb.uni.lu/fact/{$id}", "name": "Luxembourg Centre for Systems Biomedicine", "description": "The LCSB is accelerating biomedical research by closing the link between systems biology and medical research. Collaboration between biologists, medical doctors, computer scientists, physicists, engineers and mathematicians is offering new insights in complex systems like cells, organs, and organisms. These insights are essential for understanding principal mechanisms of disease pathogenesis and for developing new tools in diagnostics and therapy.", "official": true, "providerCode": "bkc", "sampleId": "bkc640", "resourceHomeUrl": "https://wwwen.uni.lu/lcsb", "institution": {"id": 3471, "name": "University of Luxembourg", "homeUrl": "https://wwwen.uni.lu/", "description": "Organization information obtained from ROR API using ROR ID 'https://ror.org/036x5ad56' with Wikidata IDs [Q59668], and ISNI IDs [0000 0001 2295 9843]", "rorId": null, "location": {"countryCode": "LU", "countryName": "Luxembourg"}}, "location": {"countryCode": "LU", "countryName": "Luxembourg"}, "deprecated": false, "deprecationDate": null}], "sampleId": "bkc640", "namespaceEmbeddedInLui": false, "deprecated": false, "deprecationDate": null}]}} \ No newline at end of file diff --git a/static/images/hexagon_color_bs.png b/static/images/hexagon_color_bs.png new file mode 100644 index 00000000..bc478962 Binary files /dev/null and b/static/images/hexagon_color_bs.png differ diff --git a/templates/bioschemas.html b/templates/bioschemas.html index 797b0fa6..22ce4362 100644 --- a/templates/bioschemas.html +++ b/templates/bioschemas.html @@ -1,4 +1,6 @@ -{% extends "layout.html" %} + + +{% extends "layout.html" %} {% block nav %} {% include 'nav.html' %} @@ -8,13 +10,13 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
\ No newline at end of file diff --git a/templates/inspect.html b/templates/inspect.html index f342ef48..3db9a35d 100644 --- a/templates/inspect.html +++ b/templates/inspect.html @@ -1,9 +1,13 @@ -{% extends "layout.html" %} + + +{% extends "layout.html" %} {% block nav %} {% include 'nav.html' %} {% endblock %} + + {% block body %} @@ -437,48 +441,49 @@ }); socket.on('done_check_shape', function (data) { - console.log(data); - var valid_html = ""; - $.each(data, function (key, value) { - var resource = key - var type = data[key]['type'] - var profile = data[key]['ref_profile'] - var conforms = data[key]['conforms'] - valid_html += '
' - valid_html += '
has type ' + type + '

' - valid_html += '

should be conform to profile ' + profile + '


' - - if (conforms == true) { - valid_html += '

has a valid Bioschemas profile

' - } else { - valid_html += '
' - valid_html += '
' - valid_html += '' - valid_html += '' - valid_html += '' - $.each(data[key]['errors'], function (index, item) { - var row = ''; - row += ''; - valid_html += row + ''; - }); - valid_html += '
Required missing properties
' + item + ' must be provided
' - valid_html += '
' - valid_html += '' - valid_html += '' - valid_html += '' - $.each(data[key]['warnings'], function (index, item) { - var row = ''; - row += ''; - valid_html += row + ''; - }); - valid_html += '
Improvements
' + item + ' should be provided
' - valid_html += '
' - } - valid_html += '
' + console.log("Bioschemas profiles validated"); + validation_report_gen(data, "dynamic"); + // var valid_html = ""; + // $.each(data, function (key, value) { + // var resource = key + // var type = data[key]['type'] + // var profile = data[key]['ref_profile'] + // var conforms = data[key]['conforms'] + // valid_html += '
' + // valid_html += '
has type ' + type + '

' + // valid_html += '

should be conform to profile ' + profile + '


' + + // if (conforms == true) { + // valid_html += '

has a valid Bioschemas profile

' + // } else { + // valid_html += '
' + // valid_html += '
' + // valid_html += '' + // valid_html += '' + // valid_html += '' + // $.each(data[key]['errors'], function (index, item) { + // var row = ''; + // row += ''; + // valid_html += row + ''; + // }); + // valid_html += '
Required missing properties
' + item + ' must be provided
' + // valid_html += '
' + // valid_html += '' + // valid_html += '' + // valid_html += '' + // $.each(data[key]['warnings'], function (index, item) { + // var row = ''; + // row += ''; + // valid_html += row + ''; + // }); + // valid_html += '
Improvements
' + item + ' should be provided
' + // valid_html += '
' + // } + // valid_html += '
' - }); - $('#block_valid').html(valid_html); + // }); + // $('#block_valid').html(valid_html); // annot table // var rows = ''; @@ -626,6 +631,9 @@
--> + + +

Step 1: fetch RDF metadata from the resource URL

@@ -691,6 +699,7 @@

Step 2: Enrich Graph

+ @@ -780,6 +789,10 @@

Step 3: Metadata quality checks

+ {% block test %} + {% include 'bioschemas_report.html' %} + {% endblock %} +
diff --git a/templates/layout.html b/templates/layout.html index 55e635a7..54cc2dd7 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -9,6 +9,7 @@ +